Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/hotspot/share/ci/ciClassList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ friend class ciObjectFactory; \
// Any more access must be given explicitly.
#define CI_PACKAGE_ACCESS_TO \
friend class ciObjectFactory; \
friend class VMStructs; \
friend class ciCallSite; \
friend class ciConstantPoolCache; \
friend class ciField; \
Expand Down
14 changes: 14 additions & 0 deletions src/hotspot/share/runtime/vmStructs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,14 @@
static_field(VMRegImpl, regName[0], const char*) \
static_field(VMRegImpl, stack0, VMReg) \
\
/******************************************************************************************/ \
/* CI (NOTE: these CI fields are retained in VMStructs for the benefit of external tools, */ \
/* to ease their migration to a future alternative.) */ \
/******************************************************************************************/ \
\
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops just a missing close ), but yes other than that I think we're done 8-)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, fixed in d7c4db0

nonstatic_field(CompilerThread, _env, ciEnv*) \
nonstatic_field(ciEnv, _task, CompileTask*) \
\
/************/ \
/* Monitors */ \
/************/ \
Expand Down Expand Up @@ -1148,6 +1156,12 @@
declare_toplevel_type(BasicLock) \
declare_toplevel_type(BasicObjectLock) \
\
/*********************/ \
/* CI */ \
/*********************/ \
\
declare_toplevel_type(ciEnv) \
\
/********************/ \
/* -XX flags */ \
/********************/ \
Expand Down