< prev index next >

src/hotspot/share/runtime/vmStructs.cpp

Print this page
@@ -27,10 +27,11 @@
  #include "classfile/classLoaderDataGraph.hpp"
  #include "classfile/javaClasses.hpp"
  #include "classfile/javaThreadStatus.hpp"
  #include "classfile/vmClasses.hpp"
  #include "classfile/vmSymbols.hpp"
+ #include "code/aotCodeCache.hpp"
  #include "code/codeBlob.hpp"
  #include "code/codeCache.hpp"
  #include "code/compiledIC.hpp"
  #include "code/compressedStream.hpp"
  #include "code/location.hpp"

@@ -553,10 +554,11 @@
    nonstatic_field(nmethod,                     _osr_entry_point,                              address)                               \
    nonstatic_field(nmethod,                     _immutable_data,                               address)                               \
    nonstatic_field(nmethod,                     _immutable_data_size,                          int)                                   \
    nonstatic_field(nmethod,                     _compile_id,                                   int)                                   \
    nonstatic_field(nmethod,                     _comp_level,                                   CompLevel)                             \
+   nonstatic_field(nmethod,                     _aot_code_entry,                               AOTCodeEntry*)                         \
    volatile_nonstatic_field(nmethod,            _exception_cache,                              ExceptionCache*)                       \
                                                                                                                                       \
    nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,                    int)                                   \
    nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                            int)                                   \
    nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                             int)                                   \

@@ -1102,10 +1104,11 @@
    declare_toplevel_type(PcDescCache)                                      \
    declare_toplevel_type(Dependencies)                                     \
    declare_toplevel_type(CompileTask)                                      \
    declare_toplevel_type(Deoptimization)                                   \
    declare_toplevel_type(Deoptimization::UnrollBlock)                      \
+   declare_toplevel_type(AOTCodeEntry)                                     \
                                                                            \
    /************************/                                              \
    /* ImmutableOopMap      */                                              \
    /************************/                                              \
                                                                            \
< prev index next >