1 /*
   2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "ci/ciField.hpp"
  27 #include "ci/ciInstance.hpp"
  28 #include "ci/ciMethodData.hpp"
  29 #include "ci/ciObjArrayKlass.hpp"
  30 #include "ci/ciSymbol.hpp"
  31 #include "classfile/compactHashtable.hpp"
  32 #include "classfile/dictionary.hpp"
  33 #include "classfile/javaClasses.hpp"
  34 #include "classfile/stringTable.hpp"
  35 #include "classfile/symbolTable.hpp"
  36 #include "classfile/systemDictionary.hpp"
  37 #include "code/codeBlob.hpp"
  38 #include "code/codeCache.hpp"
  39 #include "code/compressedStream.hpp"
  40 #include "code/location.hpp"
  41 #include "code/nmethod.hpp"
  42 #include "code/pcDesc.hpp"
  43 #include "code/stubs.hpp"
  44 #include "code/vmreg.hpp"
  45 #include "compiler/compileBroker.hpp"
  46 #include "compiler/oopMap.hpp"
  47 #include "gc/shared/vmStructs_gc.hpp"
  48 #include "interpreter/bytecodeInterpreter.hpp"
  49 #include "interpreter/bytecodes.hpp"
  50 #include "interpreter/interpreter.hpp"
  51 #include "memory/allocation.hpp"
  52 #include "memory/allocation.inline.hpp"
  53 #include "memory/heap.hpp"
  54 #include "memory/metachunk.hpp"
  55 #include "memory/padded.hpp"
  56 #include "memory/referenceType.hpp"
  57 #include "memory/universe.hpp"
  58 #include "memory/virtualspace.hpp"
  59 #include "memory/filemap.hpp"
  60 #include "oops/array.hpp"
  61 #include "oops/arrayKlass.hpp"
  62 #include "oops/arrayOop.hpp"
  63 #include "oops/compiledICHolder.hpp"
  64 #include "oops/constMethod.hpp"
  65 #include "oops/constantPool.hpp"
  66 #include "oops/cpCache.hpp"
  67 #include "oops/instanceClassLoaderKlass.hpp"
  68 #include "oops/instanceKlass.hpp"
  69 #include "oops/instanceMirrorKlass.hpp"
  70 #include "oops/instanceOop.hpp"
  71 #include "oops/klass.hpp"
  72 #include "oops/markOop.hpp"
  73 #include "oops/method.hpp"
  74 #include "oops/methodCounters.hpp"
  75 #include "oops/methodData.hpp"
  76 #include "oops/objArrayKlass.hpp"
  77 #include "oops/objArrayOop.hpp"
  78 #include "oops/oop.inline.hpp"
  79 #include "oops/oopHandle.hpp"
  80 #include "oops/symbol.hpp"
  81 #include "oops/typeArrayKlass.hpp"
  82 #include "oops/typeArrayOop.hpp"
  83 #include "prims/jvmtiAgentThread.hpp"
  84 #include "runtime/arguments.hpp"
  85 #include "runtime/deoptimization.hpp"
  86 #include "runtime/globals.hpp"
  87 #include "runtime/java.hpp"
  88 #include "runtime/javaCalls.hpp"
  89 #include "runtime/os.hpp"
  90 #include "runtime/perfMemory.hpp"
  91 #include "runtime/serviceThread.hpp"
  92 #include "runtime/sharedRuntime.hpp"
  93 #include "runtime/stubRoutines.hpp"
  94 #include "runtime/thread.inline.hpp"
  95 #include "runtime/vframeArray.hpp"
  96 #include "runtime/vmStructs.hpp"
  97 #include "utilities/globalDefinitions.hpp"
  98 #include "utilities/hashtable.hpp"
  99 #include "utilities/macros.hpp"
 100 
 101 #include CPU_HEADER(vmStructs)
 102 #include OS_HEADER(vmStructs)
 103 #include OS_CPU_HEADER(vmStructs)
 104 
 105 #if INCLUDE_JVMCI
 106 # include "jvmci/vmStructs_jvmci.hpp"
 107 #endif
 108 
 109 #if INCLUDE_TRACE
 110 #include "runtime/vmStructs_trace.hpp"
 111 #endif
 112 
 113 #ifdef COMPILER2
 114 #include "opto/addnode.hpp"
 115 #include "opto/block.hpp"
 116 #include "opto/callnode.hpp"
 117 #include "opto/castnode.hpp"
 118 #include "opto/cfgnode.hpp"
 119 #include "opto/chaitin.hpp"
 120 #include "opto/convertnode.hpp"
 121 #include "opto/divnode.hpp"
 122 #include "opto/intrinsicnode.hpp"
 123 #include "opto/locknode.hpp"
 124 #include "opto/loopnode.hpp"
 125 #include "opto/machnode.hpp"
 126 #include "opto/matcher.hpp"
 127 #include "opto/mathexactnode.hpp"
 128 #include "opto/movenode.hpp"
 129 #include "opto/mulnode.hpp"
 130 #include "opto/narrowptrnode.hpp"
 131 #include "opto/opaquenode.hpp"
 132 #include "opto/optoreg.hpp"
 133 #include "opto/parse.hpp"
 134 #include "opto/phaseX.hpp"
 135 #include "opto/regalloc.hpp"
 136 #include "opto/rootnode.hpp"
 137 #include "opto/subnode.hpp"
 138 #include "opto/vectornode.hpp"
 139 #endif // COMPILER2
 140 
 141 // Note: the cross-product of (c1, c2, product, nonproduct, ...),
 142 // (nonstatic, static), and (unchecked, checked) has not been taken.
 143 // Only the macros currently needed have been defined.
 144 
 145 // A field whose type is not checked is given a null string as the
 146 // type name, indicating an "opaque" type to the serviceability agent.
 147 
 148 // NOTE: there is an interdependency between this file and
 149 // HotSpotTypeDataBase.java, which parses the type strings.
 150 
 151 #ifndef REG_COUNT
 152   #define REG_COUNT 0
 153 #endif
 154 
 155 #if INCLUDE_JVMTI
 156   #define JVMTI_STRUCTS(static_field) \
 157     static_field(JvmtiExport,                     _can_access_local_variables,                  bool)                                  \
 158     static_field(JvmtiExport,                     _can_hotswap_or_post_breakpoint,              bool)                                  \
 159     static_field(JvmtiExport,                     _can_post_on_exceptions,                      bool)                                  \
 160     static_field(JvmtiExport,                     _can_walk_any_space,                          bool)
 161 #else
 162   #define JVMTI_STRUCTS(static_field)
 163 #endif // INCLUDE_JVMTI
 164 
 165 typedef HashtableEntry<intptr_t, mtInternal>  IntptrHashtableEntry;
 166 typedef Hashtable<intptr_t, mtInternal>       IntptrHashtable;
 167 typedef Hashtable<Symbol*, mtSymbol>          SymbolHashtable;
 168 typedef HashtableEntry<Symbol*, mtClass>      SymbolHashtableEntry;
 169 typedef Hashtable<oop, mtSymbol>              StringHashtable;
 170 typedef Hashtable<InstanceKlass*, mtClass>       KlassHashtable;
 171 typedef HashtableEntry<InstanceKlass*, mtClass>  KlassHashtableEntry;
 172 typedef CompactHashtable<Symbol*, char>       SymbolCompactHashTable;
 173 typedef RehashableHashtable<Symbol*, mtSymbol>   RehashableSymbolHashtable;
 174 
 175 typedef PaddedEnd<ObjectMonitor>              PaddedObjectMonitor;
 176 
 177 //--------------------------------------------------------------------------------
 178 // VM_STRUCTS
 179 //
 180 // This list enumerates all of the fields the serviceability agent
 181 // needs to know about. Be sure to see also the type table below this one.
 182 // NOTE that there are platform-specific additions to this table in
 183 // vmStructs_<os>_<cpu>.hpp.
 184 
 185 #define VM_STRUCTS(nonstatic_field,                                                                                                  \
 186                    static_field,                                                                                                     \
 187                    static_ptr_volatile_field,                                                                                        \
 188                    unchecked_nonstatic_field,                                                                                        \
 189                    volatile_nonstatic_field,                                                                                         \
 190                    nonproduct_nonstatic_field,                                                                                       \
 191                    c1_nonstatic_field,                                                                                               \
 192                    c2_nonstatic_field,                                                                                               \
 193                    unchecked_c1_static_field,                                                                                        \
 194                    unchecked_c2_static_field)                                                                                        \
 195                                                                                                                                      \
 196   /*************/                                                                                                                    \
 197   /* GC fields */                                                                                                                    \
 198   /*************/                                                                                                                    \
 199                                                                                                                                      \
 200   VM_STRUCTS_GC(nonstatic_field,                                                                                                     \
 201                 volatile_nonstatic_field,                                                                                            \
 202                 static_field,                                                                                                        \
 203                 unchecked_nonstatic_field)                                                                                           \
 204                                                                                                                                      \
 205   /******************************************************************/                                                               \
 206   /* OopDesc and Klass hierarchies (NOTE: MethodData* incomplete)   */                                                               \
 207   /******************************************************************/                                                               \
 208                                                                                                                                      \
 209   volatile_nonstatic_field(oopDesc,            _mark,                                         markOop)                               \
 210   volatile_nonstatic_field(oopDesc,            _metadata._klass,                              Klass*)                                \
 211   volatile_nonstatic_field(oopDesc,            _metadata._compressed_klass,                   narrowKlass)                           \
 212   static_field(BarrierSet,                     _barrier_set,                                  BarrierSet*)                           \
 213   nonstatic_field(ArrayKlass,                  _dimension,                                    int)                                   \
 214   volatile_nonstatic_field(ArrayKlass,         _higher_dimension,                             Klass*)                                \
 215   volatile_nonstatic_field(ArrayKlass,         _lower_dimension,                              Klass*)                                \
 216   nonstatic_field(CompiledICHolder,            _holder_metadata,                              Metadata*)                             \
 217   nonstatic_field(CompiledICHolder,            _holder_klass,                                 Klass*)                                \
 218   nonstatic_field(ConstantPool,                _tags,                                         Array<u1>*)                            \
 219   nonstatic_field(ConstantPool,                _cache,                                        ConstantPoolCache*)                    \
 220   nonstatic_field(ConstantPool,                _pool_holder,                                  InstanceKlass*)                        \
 221   nonstatic_field(ConstantPool,                _operands,                                     Array<u2>*)                            \
 222   nonstatic_field(ConstantPool,                _resolved_klasses,                             Array<Klass*>*)                        \
 223   nonstatic_field(ConstantPool,                _length,                                       int)                                   \
 224   nonstatic_field(ConstantPoolCache,           _resolved_references,                          OopHandle)                             \
 225   nonstatic_field(ConstantPoolCache,           _reference_map,                                Array<u2>*)                            \
 226   nonstatic_field(ConstantPoolCache,           _length,                                       int)                                   \
 227   nonstatic_field(ConstantPoolCache,           _constant_pool,                                ConstantPool*)                         \
 228   volatile_nonstatic_field(InstanceKlass,      _array_klasses,                                Klass*)                                \
 229   nonstatic_field(InstanceKlass,               _methods,                                      Array<Method*>*)                       \
 230   nonstatic_field(InstanceKlass,               _default_methods,                              Array<Method*>*)                       \
 231   nonstatic_field(InstanceKlass,               _local_interfaces,                             Array<Klass*>*)                        \
 232   nonstatic_field(InstanceKlass,               _transitive_interfaces,                        Array<Klass*>*)                        \
 233   nonstatic_field(InstanceKlass,               _fields,                                       Array<u2>*)                            \
 234   nonstatic_field(InstanceKlass,               _java_fields_count,                            u2)                                    \
 235   nonstatic_field(InstanceKlass,               _constants,                                    ConstantPool*)                         \
 236   nonstatic_field(InstanceKlass,               _source_file_name_index,                       u2)                                    \
 237   nonstatic_field(InstanceKlass,               _source_debug_extension,                       const char*)                           \
 238   nonstatic_field(InstanceKlass,               _inner_classes,                                Array<jushort>*)                       \
 239   nonstatic_field(InstanceKlass,               _nonstatic_field_size,                         int)                                   \
 240   nonstatic_field(InstanceKlass,               _static_field_size,                            int)                                   \
 241   nonstatic_field(InstanceKlass,               _static_oop_field_count,                       u2)                                    \
 242   nonstatic_field(InstanceKlass,               _nonstatic_oop_map_size,                       int)                                   \
 243   nonstatic_field(InstanceKlass,               _is_marked_dependent,                          bool)                                  \
 244   nonstatic_field(InstanceKlass,               _misc_flags,                                   u2)                                    \
 245   nonstatic_field(InstanceKlass,               _minor_version,                                u2)                                    \
 246   nonstatic_field(InstanceKlass,               _major_version,                                u2)                                    \
 247   nonstatic_field(InstanceKlass,               _init_state,                                   u1)                                    \
 248   nonstatic_field(InstanceKlass,               _init_thread,                                  Thread*)                               \
 249   nonstatic_field(InstanceKlass,               _itable_len,                                   int)                                   \
 250   nonstatic_field(InstanceKlass,               _reference_type,                               u1)                                    \
 251   volatile_nonstatic_field(InstanceKlass,      _oop_map_cache,                                OopMapCache*)                          \
 252   nonstatic_field(InstanceKlass,               _jni_ids,                                      JNIid*)                                \
 253   nonstatic_field(InstanceKlass,               _osr_nmethods_head,                            nmethod*)                              \
 254   JVMTI_ONLY(nonstatic_field(InstanceKlass,    _breakpoints,                                  BreakpointInfo*))                      \
 255   nonstatic_field(InstanceKlass,               _generic_signature_index,                      u2)                                    \
 256   volatile_nonstatic_field(InstanceKlass,      _methods_jmethod_ids,                          jmethodID*)                            \
 257   volatile_nonstatic_field(InstanceKlass,      _idnum_allocated_count,                        u2)                                    \
 258   nonstatic_field(InstanceKlass,               _annotations,                                  Annotations*)                          \
 259   nonstatic_field(InstanceKlass,               _method_ordering,                              Array<int>*)                           \
 260   nonstatic_field(InstanceKlass,               _default_vtable_indices,                       Array<int>*)                           \
 261   nonstatic_field(Klass,                       _super_check_offset,                           juint)                                 \
 262   nonstatic_field(Klass,                       _secondary_super_cache,                        Klass*)                                \
 263   nonstatic_field(Klass,                       _secondary_supers,                             Array<Klass*>*)                        \
 264   nonstatic_field(Klass,                       _primary_supers[0],                            Klass*)                                \
 265   nonstatic_field(Klass,                       _java_mirror,                                  OopHandle)                             \
 266   nonstatic_field(Klass,                       _modifier_flags,                               jint)                                  \
 267   nonstatic_field(Klass,                       _super,                                        Klass*)                                \
 268   nonstatic_field(Klass,                       _subklass,                                     Klass*)                                \
 269   nonstatic_field(Klass,                       _layout_helper,                                jint)                                  \
 270   nonstatic_field(Klass,                       _name,                                         Symbol*)                               \
 271   nonstatic_field(Klass,                       _access_flags,                                 AccessFlags)                           \
 272   nonstatic_field(Klass,                       _prototype_header,                             markOop)                               \
 273   nonstatic_field(Klass,                       _next_sibling,                                 Klass*)                                \
 274   nonstatic_field(Klass,                       _next_link,                                    Klass*)                                \
 275   nonstatic_field(Klass,                       _vtable_len,                                   int)                                   \
 276   nonstatic_field(Klass,                       _class_loader_data,                            ClassLoaderData*)                      \
 277   nonstatic_field(vtableEntry,                 _method,                                       Method*)                               \
 278   nonstatic_field(MethodData,                  _size,                                         int)                                   \
 279   nonstatic_field(MethodData,                  _method,                                       Method*)                               \
 280   nonstatic_field(MethodData,                  _data_size,                                    int)                                   \
 281   nonstatic_field(MethodData,                  _data[0],                                      intptr_t)                              \
 282   nonstatic_field(MethodData,                  _parameters_type_data_di,                      int)                                   \
 283   nonstatic_field(MethodData,                  _nof_decompiles,                               uint)                                  \
 284   nonstatic_field(MethodData,                  _nof_overflow_recompiles,                      uint)                                  \
 285   nonstatic_field(MethodData,                  _nof_overflow_traps,                           uint)                                  \
 286   nonstatic_field(MethodData,                  _trap_hist._array[0],                          u1)                                    \
 287   nonstatic_field(MethodData,                  _eflags,                                       intx)                                  \
 288   nonstatic_field(MethodData,                  _arg_local,                                    intx)                                  \
 289   nonstatic_field(MethodData,                  _arg_stack,                                    intx)                                  \
 290   nonstatic_field(MethodData,                  _arg_returned,                                 intx)                                  \
 291   nonstatic_field(MethodData,                  _tenure_traps,                                 uint)                                  \
 292   nonstatic_field(MethodData,                  _invoke_mask,                                  int)                                   \
 293   nonstatic_field(MethodData,                  _backedge_mask,                                int)                                   \
 294   nonstatic_field(DataLayout,                  _header._struct._tag,                          u1)                                    \
 295   nonstatic_field(DataLayout,                  _header._struct._flags,                        u1)                                    \
 296   nonstatic_field(DataLayout,                  _header._struct._bci,                          u2)                                    \
 297   nonstatic_field(DataLayout,                  _cells[0],                                     intptr_t)                              \
 298   nonstatic_field(MethodCounters,              _nmethod_age,                                  int)                                   \
 299   nonstatic_field(MethodCounters,              _interpreter_invocation_limit,                 int)                                   \
 300   nonstatic_field(MethodCounters,              _interpreter_backward_branch_limit,            int)                                   \
 301   nonstatic_field(MethodCounters,              _interpreter_profile_limit,                    int)                                   \
 302   nonstatic_field(MethodCounters,              _invoke_mask,                                  int)                                   \
 303   nonstatic_field(MethodCounters,              _backedge_mask,                                int)                                   \
 304   COMPILER2_OR_JVMCI_PRESENT(nonstatic_field(MethodCounters, _interpreter_invocation_count,   int))                                  \
 305   COMPILER2_OR_JVMCI_PRESENT(nonstatic_field(MethodCounters, _interpreter_throwout_count,     u2))                                   \
 306   JVMTI_ONLY(nonstatic_field(MethodCounters,   _number_of_breakpoints,                        u2))                                   \
 307   nonstatic_field(MethodCounters,              _invocation_counter,                           InvocationCounter)                     \
 308   nonstatic_field(MethodCounters,              _backedge_counter,                             InvocationCounter)                     \
 309   nonstatic_field(Method,                      _constMethod,                                  ConstMethod*)                          \
 310   nonstatic_field(Method,                      _method_data,                                  MethodData*)                           \
 311   nonstatic_field(Method,                      _method_counters,                              MethodCounters*)                       \
 312   nonstatic_field(Method,                      _access_flags,                                 AccessFlags)                           \
 313   nonstatic_field(Method,                      _vtable_index,                                 int)                                   \
 314   nonstatic_field(Method,                      _intrinsic_id,                                 u2)                                    \
 315   nonstatic_field(Method,                      _flags,                                        u2)                                    \
 316   nonproduct_nonstatic_field(Method,           _compiled_invocation_count,                    int)                                   \
 317   volatile_nonstatic_field(Method,             _code,                                         CompiledMethod*)                       \
 318   nonstatic_field(Method,                      _i2i_entry,                                    address)                               \
 319   volatile_nonstatic_field(Method,             _from_compiled_entry,                          address)                               \
 320   volatile_nonstatic_field(Method,             _from_interpreted_entry,                       address)                               \
 321   volatile_nonstatic_field(ConstMethod,        _fingerprint,                                  uint64_t)                              \
 322   nonstatic_field(ConstMethod,                 _constants,                                    ConstantPool*)                         \
 323   nonstatic_field(ConstMethod,                 _stackmap_data,                                Array<u1>*)                            \
 324   nonstatic_field(ConstMethod,                 _constMethod_size,                             int)                                   \
 325   nonstatic_field(ConstMethod,                 _flags,                                        u2)                                    \
 326   nonstatic_field(ConstMethod,                 _code_size,                                    u2)                                    \
 327   nonstatic_field(ConstMethod,                 _name_index,                                   u2)                                    \
 328   nonstatic_field(ConstMethod,                 _signature_index,                              u2)                                    \
 329   nonstatic_field(ConstMethod,                 _method_idnum,                                 u2)                                    \
 330   nonstatic_field(ConstMethod,                 _max_stack,                                    u2)                                    \
 331   nonstatic_field(ConstMethod,                 _max_locals,                                   u2)                                    \
 332   nonstatic_field(ConstMethod,                 _size_of_parameters,                           u2)                                    \
 333   nonstatic_field(ObjArrayKlass,               _element_klass,                                Klass*)                                \
 334   nonstatic_field(ObjArrayKlass,               _bottom_klass,                                 Klass*)                                \
 335   volatile_nonstatic_field(Symbol,             _refcount,                                     short)                                 \
 336   nonstatic_field(Symbol,                      _identity_hash,                                short)                                 \
 337   nonstatic_field(Symbol,                      _length,                                       unsigned short)                        \
 338   unchecked_nonstatic_field(Symbol,            _body,                                         sizeof(jbyte)) /* NOTE: no type */     \
 339   nonstatic_field(Symbol,                      _body[0],                                      jbyte)                                 \
 340   nonstatic_field(TypeArrayKlass,              _max_length,                                   jint)                                  \
 341                                                                                                                                      \
 342   /***********************/                                                                                                          \
 343   /* Constant Pool Cache */                                                                                                          \
 344   /***********************/                                                                                                          \
 345                                                                                                                                      \
 346   volatile_nonstatic_field(ConstantPoolCacheEntry,      _indices,                             intx)                                  \
 347   volatile_nonstatic_field(ConstantPoolCacheEntry,      _f1,                                  Metadata*)                             \
 348   volatile_nonstatic_field(ConstantPoolCacheEntry,      _f2,                                  intx)                                  \
 349   volatile_nonstatic_field(ConstantPoolCacheEntry,      _flags,                               intx)                                  \
 350                                                                                                                                      \
 351   /********************************/                                                                                                 \
 352   /* MethodOop-related structures */                                                                                                 \
 353   /********************************/                                                                                                 \
 354                                                                                                                                      \
 355   nonstatic_field(CheckedExceptionElement,     class_cp_index,                                u2)                                    \
 356   nonstatic_field(LocalVariableTableElement,   start_bci,                                     u2)                                    \
 357   nonstatic_field(LocalVariableTableElement,   length,                                        u2)                                    \
 358   nonstatic_field(LocalVariableTableElement,   name_cp_index,                                 u2)                                    \
 359   nonstatic_field(LocalVariableTableElement,   descriptor_cp_index,                           u2)                                    \
 360   nonstatic_field(LocalVariableTableElement,   signature_cp_index,                            u2)                                    \
 361   nonstatic_field(LocalVariableTableElement,   slot,                                          u2)                                    \
 362   nonstatic_field(ExceptionTableElement,       start_pc,                                      u2)                                    \
 363   nonstatic_field(ExceptionTableElement,       end_pc,                                        u2)                                    \
 364   nonstatic_field(ExceptionTableElement,       handler_pc,                                    u2)                                    \
 365   nonstatic_field(ExceptionTableElement,       catch_type_index,                              u2)                                    \
 366   JVMTI_ONLY(nonstatic_field(BreakpointInfo,   _orig_bytecode,                                Bytecodes::Code))                      \
 367   JVMTI_ONLY(nonstatic_field(BreakpointInfo,   _bci,                                          int))                                  \
 368   JVMTI_ONLY(nonstatic_field(BreakpointInfo,   _name_index,                                   u2))                                   \
 369   JVMTI_ONLY(nonstatic_field(BreakpointInfo,   _signature_index,                              u2))                                   \
 370   JVMTI_ONLY(nonstatic_field(BreakpointInfo,   _next,                                         BreakpointInfo*))                      \
 371   /***********/                                                                                                                      \
 372   /* JNI IDs */                                                                                                                      \
 373   /***********/                                                                                                                      \
 374                                                                                                                                      \
 375   nonstatic_field(JNIid,                       _holder,                                       Klass*)                                \
 376   nonstatic_field(JNIid,                       _next,                                         JNIid*)                                \
 377   nonstatic_field(JNIid,                       _offset,                                       int)                                   \
 378   /************/                                                                                                                     \
 379   /* Universe */                                                                                                                     \
 380   /************/                                                                                                                     \
 381                                                                                                                                      \
 382      static_field(Universe,                    _boolArrayKlassObj,                            Klass*)                                \
 383      static_field(Universe,                    _byteArrayKlassObj,                            Klass*)                                \
 384      static_field(Universe,                    _charArrayKlassObj,                            Klass*)                                \
 385      static_field(Universe,                    _intArrayKlassObj,                             Klass*)                                \
 386      static_field(Universe,                    _shortArrayKlassObj,                           Klass*)                                \
 387      static_field(Universe,                    _longArrayKlassObj,                            Klass*)                                \
 388      static_field(Universe,                    _singleArrayKlassObj,                          Klass*)                                \
 389      static_field(Universe,                    _doubleArrayKlassObj,                          Klass*)                                \
 390      static_field(Universe,                    _mirrors[0],                                   oop)                                   \
 391      static_field(Universe,                    _main_thread_group,                            oop)                                   \
 392      static_field(Universe,                    _system_thread_group,                          oop)                                   \
 393      static_field(Universe,                    _the_empty_class_klass_array,                  objArrayOop)                           \
 394      static_field(Universe,                    _null_ptr_exception_instance,                  oop)                                   \
 395      static_field(Universe,                    _arithmetic_exception_instance,                oop)                                   \
 396      static_field(Universe,                    _vm_exception,                                 oop)                                   \
 397      static_field(Universe,                    _collectedHeap,                                CollectedHeap*)                        \
 398      static_field(Universe,                    _base_vtable_size,                             int)                                   \
 399      static_field(Universe,                    _bootstrapping,                                bool)                                  \
 400      static_field(Universe,                    _fully_initialized,                            bool)                                  \
 401      static_field(Universe,                    _verify_count,                                 int)                                   \
 402      static_field(Universe,                    _verify_oop_mask,                              uintptr_t)                             \
 403      static_field(Universe,                    _verify_oop_bits,                              uintptr_t)                             \
 404      static_field(Universe,                    _non_oop_bits,                                 intptr_t)                              \
 405      static_field(Universe,                    _narrow_oop._base,                             address)                               \
 406      static_field(Universe,                    _narrow_oop._shift,                            int)                                   \
 407      static_field(Universe,                    _narrow_oop._use_implicit_null_checks,         bool)                                  \
 408      static_field(Universe,                    _narrow_klass._base,                           address)                               \
 409      static_field(Universe,                    _narrow_klass._shift,                          int)                                   \
 410                                                                                                                                      \
 411   /******/                                                                                                                           \
 412   /* os */                                                                                                                           \
 413   /******/                                                                                                                           \
 414                                                                                                                                      \
 415      static_field(os,                          _polling_page,                                 address)                               \
 416                                                                                                                                      \
 417   /**********/                                                                                                                       \
 418   /* Memory */                                                                                                                       \
 419   /**********/                                                                                                                       \
 420                                                                                                                                      \
 421   nonstatic_field(ThreadLocalAllocBuffer,      _start,                                        HeapWord*)                             \
 422   nonstatic_field(ThreadLocalAllocBuffer,      _top,                                          HeapWord*)                             \
 423   nonstatic_field(ThreadLocalAllocBuffer,      _end,                                          HeapWord*)                             \
 424   nonstatic_field(ThreadLocalAllocBuffer,      _pf_top,                                       HeapWord*)                             \
 425   nonstatic_field(ThreadLocalAllocBuffer,      _desired_size,                                 size_t)                                \
 426   nonstatic_field(ThreadLocalAllocBuffer,      _refill_waste_limit,                           size_t)                                \
 427      static_field(ThreadLocalAllocBuffer,      _reserve_for_allocation_prefetch,              int)                                   \
 428      static_field(ThreadLocalAllocBuffer,      _target_refills,                               unsigned)                              \
 429   nonstatic_field(ThreadLocalAllocBuffer,      _number_of_refills,                            unsigned)                              \
 430   nonstatic_field(ThreadLocalAllocBuffer,      _fast_refill_waste,                            unsigned)                              \
 431   nonstatic_field(ThreadLocalAllocBuffer,      _slow_refill_waste,                            unsigned)                              \
 432   nonstatic_field(ThreadLocalAllocBuffer,      _gc_waste,                                     unsigned)                              \
 433   nonstatic_field(ThreadLocalAllocBuffer,      _slow_allocations,                             unsigned)                              \
 434   nonstatic_field(VirtualSpace,                _low_boundary,                                 char*)                                 \
 435   nonstatic_field(VirtualSpace,                _high_boundary,                                char*)                                 \
 436   nonstatic_field(VirtualSpace,                _low,                                          char*)                                 \
 437   nonstatic_field(VirtualSpace,                _high,                                         char*)                                 \
 438   nonstatic_field(VirtualSpace,                _lower_high,                                   char*)                                 \
 439   nonstatic_field(VirtualSpace,                _middle_high,                                  char*)                                 \
 440   nonstatic_field(VirtualSpace,                _upper_high,                                   char*)                                 \
 441                                                                                                                                      \
 442   /************************/                                                                                                         \
 443   /* PerfMemory - jvmstat */                                                                                                         \
 444   /************************/                                                                                                         \
 445                                                                                                                                      \
 446   nonstatic_field(PerfDataPrologue,            magic,                                         jint)                                  \
 447   nonstatic_field(PerfDataPrologue,            byte_order,                                    jbyte)                                 \
 448   nonstatic_field(PerfDataPrologue,            major_version,                                 jbyte)                                 \
 449   nonstatic_field(PerfDataPrologue,            minor_version,                                 jbyte)                                 \
 450   nonstatic_field(PerfDataPrologue,            accessible,                                    jbyte)                                 \
 451   nonstatic_field(PerfDataPrologue,            used,                                          jint)                                  \
 452   nonstatic_field(PerfDataPrologue,            overflow,                                      jint)                                  \
 453   nonstatic_field(PerfDataPrologue,            mod_time_stamp,                                jlong)                                 \
 454   nonstatic_field(PerfDataPrologue,            entry_offset,                                  jint)                                  \
 455   nonstatic_field(PerfDataPrologue,            num_entries,                                   jint)                                  \
 456                                                                                                                                      \
 457   nonstatic_field(PerfDataEntry,               entry_length,                                  jint)                                  \
 458   nonstatic_field(PerfDataEntry,               name_offset,                                   jint)                                  \
 459   nonstatic_field(PerfDataEntry,               vector_length,                                 jint)                                  \
 460   nonstatic_field(PerfDataEntry,               data_type,                                     jbyte)                                 \
 461   nonstatic_field(PerfDataEntry,               flags,                                         jbyte)                                 \
 462   nonstatic_field(PerfDataEntry,               data_units,                                    jbyte)                                 \
 463   nonstatic_field(PerfDataEntry,               data_variability,                              jbyte)                                 \
 464   nonstatic_field(PerfDataEntry,               data_offset,                                   jint)                                  \
 465                                                                                                                                      \
 466      static_field(PerfMemory,                  _start,                                        char*)                                 \
 467      static_field(PerfMemory,                  _end,                                          char*)                                 \
 468      static_field(PerfMemory,                  _top,                                          char*)                                 \
 469      static_field(PerfMemory,                  _capacity,                                     size_t)                                \
 470      static_field(PerfMemory,                  _prologue,                                     PerfDataPrologue*)                     \
 471      static_field(PerfMemory,                  _initialized,                                  int)                                   \
 472                                                                                                                                      \
 473   /***************/                                                                                                                  \
 474   /* SymbolTable */                                                                                                                  \
 475   /***************/                                                                                                                  \
 476                                                                                                                                      \
 477      static_field(SymbolTable,                 _the_table,                                    SymbolTable*)                          \
 478      static_field(SymbolTable,                 _shared_table,                                 SymbolCompactHashTable)                \
 479      static_field(RehashableSymbolHashtable,   _seed,                                         juint)                                 \
 480                                                                                                                                      \
 481   /***************/                                                                                                                  \
 482   /* StringTable */                                                                                                                  \
 483   /***************/                                                                                                                  \
 484                                                                                                                                      \
 485      static_field(StringTable,                 _the_table,                                    StringTable*)                          \
 486                                                                                                                                      \
 487   /********************/                                                                                                             \
 488   /* CompactHashTable */                                                                                                             \
 489   /********************/                                                                                                             \
 490                                                                                                                                      \
 491   nonstatic_field(SymbolCompactHashTable,      _base_address,                                 address)                               \
 492   nonstatic_field(SymbolCompactHashTable,      _entry_count,                                  u4)                                    \
 493   nonstatic_field(SymbolCompactHashTable,      _bucket_count,                                 u4)                                    \
 494   nonstatic_field(SymbolCompactHashTable,      _buckets,                                      u4*)                                   \
 495   nonstatic_field(SymbolCompactHashTable,      _entries,                                      u4*)                                   \
 496                                                                                                                                      \
 497   /********************/                                                                                                             \
 498   /* SystemDictionary */                                                                                                             \
 499   /********************/                                                                                                             \
 500                                                                                                                                      \
 501      static_field(SystemDictionary,            _shared_dictionary,                            Dictionary*)                           \
 502      static_field(SystemDictionary,            _system_loader_lock_obj,                       oop)                                   \
 503      static_field(SystemDictionary,            WK_KLASS(Object_klass),                        InstanceKlass*)                        \
 504      static_field(SystemDictionary,            WK_KLASS(String_klass),                        InstanceKlass*)                        \
 505      static_field(SystemDictionary,            WK_KLASS(Class_klass),                         InstanceKlass*)                        \
 506      static_field(SystemDictionary,            WK_KLASS(ClassLoader_klass),                   InstanceKlass*)                        \
 507      static_field(SystemDictionary,            WK_KLASS(System_klass),                        InstanceKlass*)                        \
 508      static_field(SystemDictionary,            WK_KLASS(Thread_klass),                        InstanceKlass*)                        \
 509      static_field(SystemDictionary,            WK_KLASS(ThreadGroup_klass),                   InstanceKlass*)                        \
 510      static_field(SystemDictionary,            WK_KLASS(MethodHandle_klass),                  InstanceKlass*)                        \
 511      static_field(SystemDictionary,            _java_system_loader,                           oop)                                   \
 512                                                                                                                                      \
 513   /*************/                                                                                                                    \
 514   /* vmSymbols */                                                                                                                    \
 515   /*************/                                                                                                                    \
 516                                                                                                                                      \
 517      static_field(vmSymbols,                   _symbols[0],                                   Symbol*)                               \
 518                                                                                                                                      \
 519   /*******************/                                                                                                              \
 520   /* HashtableBucket */                                                                                                              \
 521   /*******************/                                                                                                              \
 522                                                                                                                                      \
 523   nonstatic_field(HashtableBucket<mtInternal>, _entry,                                        BasicHashtableEntry<mtInternal>*)      \
 524                                                                                                                                      \
 525   /******************/                                                                                                               \
 526   /* HashtableEntry */                                                                                                               \
 527   /******************/                                                                                                               \
 528                                                                                                                                      \
 529   nonstatic_field(BasicHashtableEntry<mtInternal>, _next,                                     BasicHashtableEntry<mtInternal>*)      \
 530   nonstatic_field(BasicHashtableEntry<mtInternal>, _hash,                                     unsigned int)                          \
 531   nonstatic_field(IntptrHashtableEntry,            _literal,                                  intptr_t)                              \
 532                                                                                                                                      \
 533   /*************/                                                                                                                    \
 534   /* Hashtable */                                                                                                                    \
 535   /*************/                                                                                                                    \
 536                                                                                                                                      \
 537   nonstatic_field(BasicHashtable<mtInternal>,  _table_size,                                   int)                                   \
 538   nonstatic_field(BasicHashtable<mtInternal>,  _buckets,                                      HashtableBucket<mtInternal>*)          \
 539   volatile_nonstatic_field(BasicHashtable<mtInternal>,  _free_list,                           BasicHashtableEntry<mtInternal>*)      \
 540   nonstatic_field(BasicHashtable<mtInternal>,  _first_free_entry,                             char*)                                 \
 541   nonstatic_field(BasicHashtable<mtInternal>,  _end_block,                                    char*)                                 \
 542   nonstatic_field(BasicHashtable<mtInternal>,  _entry_size,                                   int)                                   \
 543                                                                                                                                      \
 544   /*******************/                                                                                                              \
 545   /* ClassLoaderData */                                                                                                              \
 546   /*******************/                                                                                                              \
 547   nonstatic_field(ClassLoaderData,             _class_loader,                                 OopHandle)                             \
 548   nonstatic_field(ClassLoaderData,             _next,                                         ClassLoaderData*)                      \
 549   volatile_nonstatic_field(ClassLoaderData,    _klasses,                                      Klass*)                                \
 550   nonstatic_field(ClassLoaderData,             _is_anonymous,                                 bool)                                  \
 551   volatile_nonstatic_field(ClassLoaderData,    _dictionary,                                   Dictionary*)                           \
 552                                                                                                                                      \
 553      static_field(ClassLoaderDataGraph,        _head,                                         ClassLoaderData*)                      \
 554                                                                                                                                      \
 555   /**********/                                                                                                                       \
 556   /* Arrays */                                                                                                                       \
 557   /**********/                                                                                                                       \
 558                                                                                                                                      \
 559   nonstatic_field(Array<Klass*>,               _length,                                       int)                                   \
 560   nonstatic_field(Array<Klass*>,               _data[0],                                      Klass*)                                \
 561                                                                                                                                      \
 562   /*******************/                                                                                                              \
 563   /* GrowableArrays  */                                                                                                              \
 564   /*******************/                                                                                                              \
 565                                                                                                                                      \
 566   nonstatic_field(GenericGrowableArray,        _len,                                          int)                                   \
 567   nonstatic_field(GenericGrowableArray,        _max,                                          int)                                   \
 568   nonstatic_field(GenericGrowableArray,        _arena,                                        Arena*)                                \
 569   nonstatic_field(GrowableArray<int>,          _data,                                         int*)                                  \
 570                                                                                                                                      \
 571   /********************************/                                                                                                 \
 572   /* CodeCache (NOTE: incomplete) */                                                                                                 \
 573   /********************************/                                                                                                 \
 574                                                                                                                                      \
 575      static_field(CodeCache,                   _heaps,                                        GrowableArray<CodeHeap*>*)             \
 576      static_field(CodeCache,                   _low_bound,                                    address)                               \
 577      static_field(CodeCache,                   _high_bound,                                   address)                               \
 578      static_field(CodeCache,                   _scavenge_root_nmethods,                       nmethod*)                              \
 579                                                                                                                                      \
 580   /*******************************/                                                                                                  \
 581   /* CodeHeap (NOTE: incomplete) */                                                                                                  \
 582   /*******************************/                                                                                                  \
 583                                                                                                                                      \
 584   nonstatic_field(CodeHeap,                    _memory,                                       VirtualSpace)                          \
 585   nonstatic_field(CodeHeap,                    _segmap,                                       VirtualSpace)                          \
 586   nonstatic_field(CodeHeap,                    _log2_segment_size,                            int)                                   \
 587   nonstatic_field(HeapBlock,                   _header,                                       HeapBlock::Header)                     \
 588   nonstatic_field(HeapBlock::Header,           _length,                                       size_t)                                \
 589   nonstatic_field(HeapBlock::Header,           _used,                                         bool)                                  \
 590                                                                                                                                      \
 591   /**********************************/                                                                                               \
 592   /* Interpreter (NOTE: incomplete) */                                                                                               \
 593   /**********************************/                                                                                               \
 594                                                                                                                                      \
 595      static_field(AbstractInterpreter,         _code,                                         StubQueue*)                            \
 596                                                                                                                                      \
 597   /****************************/                                                                                                     \
 598   /* Stubs (NOTE: incomplete) */                                                                                                     \
 599   /****************************/                                                                                                     \
 600                                                                                                                                      \
 601   nonstatic_field(StubQueue,                   _stub_buffer,                                  address)                               \
 602   nonstatic_field(StubQueue,                   _buffer_limit,                                 int)                                   \
 603   nonstatic_field(StubQueue,                   _queue_begin,                                  int)                                   \
 604   nonstatic_field(StubQueue,                   _queue_end,                                    int)                                   \
 605   nonstatic_field(StubQueue,                   _number_of_stubs,                              int)                                   \
 606   nonstatic_field(InterpreterCodelet,          _size,                                         int)                                   \
 607   nonstatic_field(InterpreterCodelet,          _description,                                  const char*)                           \
 608   nonstatic_field(InterpreterCodelet,          _bytecode,                                     Bytecodes::Code)                       \
 609                                                                                                                                      \
 610   /***********************************/                                                                                              \
 611   /* StubRoutines (NOTE: incomplete) */                                                                                              \
 612   /***********************************/                                                                                              \
 613                                                                                                                                      \
 614      static_field(StubRoutines,                _verify_oop_count,                             jint)                                  \
 615      static_field(StubRoutines,                _call_stub_return_address,                     address)                               \
 616      static_field(StubRoutines,                _aescrypt_encryptBlock,                        address)                               \
 617      static_field(StubRoutines,                _aescrypt_decryptBlock,                        address)                               \
 618      static_field(StubRoutines,                _cipherBlockChaining_encryptAESCrypt,          address)                               \
 619      static_field(StubRoutines,                _cipherBlockChaining_decryptAESCrypt,          address)                               \
 620      static_field(StubRoutines,                _counterMode_AESCrypt,                         address)                               \
 621      static_field(StubRoutines,                _ghash_processBlocks,                          address)                               \
 622      static_field(StubRoutines,                _updateBytesCRC32,                             address)                               \
 623      static_field(StubRoutines,                _crc_table_adr,                                address)                               \
 624      static_field(StubRoutines,                _crc32c_table_addr,                            address)                               \
 625      static_field(StubRoutines,                _updateBytesCRC32C,                            address)                               \
 626      static_field(StubRoutines,                _multiplyToLen,                                address)                               \
 627      static_field(StubRoutines,                _squareToLen,                                  address)                               \
 628      static_field(StubRoutines,                _mulAdd,                                       address)                               \
 629      static_field(StubRoutines,                _dexp,                                         address)                               \
 630      static_field(StubRoutines,                _dlog,                                         address)                               \
 631      static_field(StubRoutines,                _dlog10,                                       address)                               \
 632      static_field(StubRoutines,                _dpow,                                         address)                               \
 633      static_field(StubRoutines,                _dsin,                                         address)                               \
 634      static_field(StubRoutines,                _dcos,                                         address)                               \
 635      static_field(StubRoutines,                _dtan,                                         address)                               \
 636      static_field(StubRoutines,                _vectorizedMismatch,                           address)                               \
 637      static_field(StubRoutines,                _jbyte_arraycopy,                              address)                               \
 638      static_field(StubRoutines,                _jshort_arraycopy,                             address)                               \
 639      static_field(StubRoutines,                _jint_arraycopy,                               address)                               \
 640      static_field(StubRoutines,                _jlong_arraycopy,                              address)                               \
 641      static_field(StubRoutines,                _oop_arraycopy,                                address)                               \
 642      static_field(StubRoutines,                _oop_arraycopy_uninit,                         address)                               \
 643      static_field(StubRoutines,                _jbyte_disjoint_arraycopy,                     address)                               \
 644      static_field(StubRoutines,                _jshort_disjoint_arraycopy,                    address)                               \
 645      static_field(StubRoutines,                _jint_disjoint_arraycopy,                      address)                               \
 646      static_field(StubRoutines,                _jlong_disjoint_arraycopy,                     address)                               \
 647      static_field(StubRoutines,                _oop_disjoint_arraycopy,                       address)                               \
 648      static_field(StubRoutines,                _oop_disjoint_arraycopy_uninit,                address)                               \
 649      static_field(StubRoutines,                _arrayof_jbyte_arraycopy,                      address)                               \
 650      static_field(StubRoutines,                _arrayof_jshort_arraycopy,                     address)                               \
 651      static_field(StubRoutines,                _arrayof_jint_arraycopy,                       address)                               \
 652      static_field(StubRoutines,                _arrayof_jlong_arraycopy,                      address)                               \
 653      static_field(StubRoutines,                _arrayof_oop_arraycopy,                        address)                               \
 654      static_field(StubRoutines,                _arrayof_oop_arraycopy_uninit,                 address)                               \
 655      static_field(StubRoutines,                _arrayof_jbyte_disjoint_arraycopy,             address)                               \
 656      static_field(StubRoutines,                _arrayof_jshort_disjoint_arraycopy,            address)                               \
 657      static_field(StubRoutines,                _arrayof_jint_disjoint_arraycopy,              address)                               \
 658      static_field(StubRoutines,                _arrayof_jlong_disjoint_arraycopy,             address)                               \
 659      static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy,               address)                               \
 660      static_field(StubRoutines,                _arrayof_oop_disjoint_arraycopy_uninit,        address)                               \
 661      static_field(StubRoutines,                _checkcast_arraycopy,                          address)                               \
 662      static_field(StubRoutines,                _checkcast_arraycopy_uninit,                   address)                               \
 663      static_field(StubRoutines,                _unsafe_arraycopy,                             address)                               \
 664      static_field(StubRoutines,                _generic_arraycopy,                            address)                               \
 665                                                                                                                                      \
 666   /*****************/                                                                                                                \
 667   /* SharedRuntime */                                                                                                                \
 668   /*****************/                                                                                                                \
 669                                                                                                                                      \
 670      static_field(SharedRuntime,               _wrong_method_blob,                            RuntimeStub*)                          \
 671      static_field(SharedRuntime,               _ic_miss_blob,                                 RuntimeStub*)                          \
 672      static_field(SharedRuntime,               _deopt_blob,                                   DeoptimizationBlob*)                   \
 673                                                                                                                                      \
 674   /***************************************/                                                                                          \
 675   /* PcDesc and other compiled code info */                                                                                          \
 676   /***************************************/                                                                                          \
 677                                                                                                                                      \
 678   nonstatic_field(PcDesc,                      _pc_offset,                                    int)                                   \
 679   nonstatic_field(PcDesc,                      _scope_decode_offset,                          int)                                   \
 680   nonstatic_field(PcDesc,                      _obj_decode_offset,                            int)                                   \
 681   nonstatic_field(PcDesc,                      _flags,                                        int)                                   \
 682                                                                                                                                      \
 683   /***************************************************/                                                                              \
 684   /* CodeBlobs (NOTE: incomplete, but only a little) */                                                                              \
 685   /***************************************************/                                                                              \
 686                                                                                                                                      \
 687   nonstatic_field(CodeBlob,                 _name,                                   const char*)                                    \
 688   nonstatic_field(CodeBlob,                 _size,                                   int)                                            \
 689   nonstatic_field(CodeBlob,                 _header_size,                            int)                                            \
 690   nonstatic_field(CodeBlob,                 _frame_complete_offset,                  int)                                            \
 691   nonstatic_field(CodeBlob,                 _data_offset,                            int)                                            \
 692   nonstatic_field(CodeBlob,                 _frame_size,                             int)                                            \
 693   nonstatic_field(CodeBlob,                 _oop_maps,                               ImmutableOopMapSet*)                            \
 694   nonstatic_field(CodeBlob,                 _code_begin,                             address)                                        \
 695   nonstatic_field(CodeBlob,                 _code_end,                               address)                                        \
 696   nonstatic_field(CodeBlob,                 _content_begin,                          address)                                        \
 697   nonstatic_field(CodeBlob,                 _data_end,                               address)                                        \
 698                                                                                                                                      \
 699   nonstatic_field(DeoptimizationBlob,          _unpack_offset,                                int)                                   \
 700                                                                                                                                      \
 701   nonstatic_field(RuntimeStub,                 _caller_must_gc_arguments,                     bool)                                  \
 702                                                                                                                                      \
 703   /********************************************************/                                                                         \
 704   /* CompiledMethod (NOTE: incomplete, but only a little) */                                                                         \
 705   /********************************************************/                                                                         \
 706                                                                                                                                      \
 707   nonstatic_field(CompiledMethod,                     _method,                                       Method*)                        \
 708   volatile_nonstatic_field(CompiledMethod,            _exception_cache,                              ExceptionCache*)                \
 709   nonstatic_field(CompiledMethod,                     _scopes_data_begin,                            address)                        \
 710   nonstatic_field(CompiledMethod,                     _deopt_handler_begin,                          address)                        \
 711   nonstatic_field(CompiledMethod,                     _deopt_mh_handler_begin,                       address)                        \
 712                                                                                                                                      \
 713   /**************************************************/                                                                               \
 714   /* NMethods (NOTE: incomplete, but only a little) */                                                                               \
 715   /**************************************************/                                                                               \
 716                                                                                                                                      \
 717   nonstatic_field(nmethod,                     _entry_bci,                                    int)                                   \
 718   nonstatic_field(nmethod,                     _osr_link,                                     nmethod*)                              \
 719   nonstatic_field(nmethod,                     _scavenge_root_link,                           nmethod*)                              \
 720   nonstatic_field(nmethod,                     _scavenge_root_state,                          jbyte)                                 \
 721   nonstatic_field(nmethod,                     _state,                                        volatile signed char)                         \
 722   nonstatic_field(nmethod,                     _exception_offset,                             int)                                   \
 723   nonstatic_field(nmethod,                     _orig_pc_offset,                               int)                                   \
 724   nonstatic_field(nmethod,                     _stub_offset,                                  int)                                   \
 725   nonstatic_field(nmethod,                     _consts_offset,                                int)                                   \
 726   nonstatic_field(nmethod,                     _oops_offset,                                  int)                                   \
 727   nonstatic_field(nmethod,                     _metadata_offset,                              int)                                   \
 728   nonstatic_field(nmethod,                     _scopes_pcs_offset,                            int)                                   \
 729   nonstatic_field(nmethod,                     _dependencies_offset,                          int)                                   \
 730   nonstatic_field(nmethod,                     _handler_table_offset,                         int)                                   \
 731   nonstatic_field(nmethod,                     _nul_chk_table_offset,                         int)                                   \
 732   nonstatic_field(nmethod,                     _nmethod_end_offset,                           int)                                   \
 733   nonstatic_field(nmethod,                     _entry_point,                                  address)                               \
 734   nonstatic_field(nmethod,                     _verified_entry_point,                         address)                               \
 735   nonstatic_field(nmethod,                     _osr_entry_point,                              address)                               \
 736   volatile_nonstatic_field(nmethod,            _lock_count,                                   jint)                                  \
 737   volatile_nonstatic_field(nmethod,            _stack_traversal_mark,                         long)                                  \
 738   nonstatic_field(nmethod,                     _compile_id,                                   int)                                   \
 739   nonstatic_field(nmethod,                     _comp_level,                                   int)                                   \
 740                                                                                                                                      \
 741   unchecked_c2_static_field(Deoptimization,    _trap_reason_name,                             void*)                                 \
 742                                                                                                                                      \
 743   nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame,                    int)                                   \
 744   nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment,                            int)                                   \
 745   nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames,                             int)                                   \
 746   nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes,                            int)                                   \
 747   nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind,                                  int)                                   \
 748   nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes,                                  intptr_t*)                             \
 749   nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs,                                    address*)                              \
 750   nonstatic_field(Deoptimization::UnrollBlock, _register_block,                               intptr_t*)                             \
 751   nonstatic_field(Deoptimization::UnrollBlock, _return_type,                                  BasicType)                             \
 752   nonstatic_field(Deoptimization::UnrollBlock, _initial_info,                                 intptr_t)                              \
 753   nonstatic_field(Deoptimization::UnrollBlock, _caller_actual_parameters,                     int)                                   \
 754                                                                                                                                      \
 755   /********************************/                                                                                                 \
 756   /* JavaCalls (NOTE: incomplete) */                                                                                                 \
 757   /********************************/                                                                                                 \
 758                                                                                                                                      \
 759   nonstatic_field(JavaCallWrapper,             _anchor,                                       JavaFrameAnchor)                       \
 760   /********************************/                                                                                                 \
 761   /* JavaFrameAnchor (NOTE: incomplete) */                                                                                           \
 762   /********************************/                                                                                                 \
 763   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_sp,                                 intptr_t*)                             \
 764   volatile_nonstatic_field(JavaFrameAnchor,    _last_Java_pc,                                 address)                               \
 765                                                                                                                                      \
 766   /******************************/                                                                                                   \
 767   /* Threads (NOTE: incomplete) */                                                                                                   \
 768   /******************************/                                                                                                   \
 769                                                                                                                                      \
 770      static_field(Threads,                     _thread_list,                                  JavaThread*)                           \
 771      static_field(Threads,                     _number_of_threads,                            int)                                   \
 772      static_field(Threads,                     _number_of_non_daemon_threads,                 int)                                   \
 773      static_field(Threads,                     _return_code,                                  int)                                   \
 774                                                                                                                                      \
 775   nonstatic_field(ThreadShadow,                _pending_exception,                            oop)                                   \
 776   nonstatic_field(ThreadShadow,                _exception_file,                               const char*)                           \
 777   nonstatic_field(ThreadShadow,                _exception_line,                               int)                                   \
 778   volatile_nonstatic_field(Thread,             _suspend_flags,                                uint32_t)                              \
 779   nonstatic_field(Thread,                      _active_handles,                               JNIHandleBlock*)                       \
 780   nonstatic_field(Thread,                      _tlab,                                         ThreadLocalAllocBuffer)                \
 781   nonstatic_field(Thread,                      _allocated_bytes,                              jlong)                                 \
 782   nonstatic_field(Thread,                      _current_pending_monitor,                      ObjectMonitor*)                        \
 783   nonstatic_field(Thread,                      _current_pending_monitor_is_from_java,         bool)                                  \
 784   nonstatic_field(Thread,                      _current_waiting_monitor,                      ObjectMonitor*)                        \
 785   nonstatic_field(NamedThread,                 _name,                                         char*)                                 \
 786   nonstatic_field(NamedThread,                 _processed_thread,                             JavaThread*)                           \
 787   nonstatic_field(JavaThread,                  _next,                                         JavaThread*)                           \
 788   nonstatic_field(JavaThread,                  _threadObj,                                    oop)                                   \
 789   nonstatic_field(JavaThread,                  _anchor,                                       JavaFrameAnchor)                       \
 790   nonstatic_field(JavaThread,                  _vm_result,                                    oop)                                   \
 791   nonstatic_field(JavaThread,                  _vm_result_2,                                  Metadata*)                             \
 792   nonstatic_field(JavaThread,                  _pending_async_exception,                      oop)                                   \
 793   volatile_nonstatic_field(JavaThread,         _exception_oop,                                oop)                                   \
 794   volatile_nonstatic_field(JavaThread,         _exception_pc,                                 address)                               \
 795   volatile_nonstatic_field(JavaThread,         _is_method_handle_return,                      int)                                   \
 796   nonstatic_field(JavaThread,                  _special_runtime_exit_condition,               JavaThread::AsyncRequests)             \
 797   nonstatic_field(JavaThread,                  _saved_exception_pc,                           address)                               \
 798   volatile_nonstatic_field(JavaThread,         _thread_state,                                 JavaThreadState)                       \
 799   nonstatic_field(JavaThread,                  _osthread,                                     OSThread*)                             \
 800   nonstatic_field(JavaThread,                  _stack_base,                                   address)                               \
 801   nonstatic_field(JavaThread,                  _stack_size,                                   size_t)                                \
 802   nonstatic_field(JavaThread,                  _vframe_array_head,                            vframeArray*)                          \
 803   nonstatic_field(JavaThread,                  _vframe_array_last,                            vframeArray*)                          \
 804   volatile_nonstatic_field(JavaThread,         _terminated,                                   JavaThread::TerminatedTypes)           \
 805   nonstatic_field(Thread,                      _resource_area,                                ResourceArea*)                         \
 806   nonstatic_field(CompilerThread,              _env,                                          ciEnv*)                                \
 807                                                                                                                                      \
 808   /************/                                                                                                                     \
 809   /* OSThread */                                                                                                                     \
 810   /************/                                                                                                                     \
 811                                                                                                                                      \
 812   volatile_nonstatic_field(OSThread,           _interrupted,                                  jint)                                  \
 813   volatile_nonstatic_field(OSThread,           _state,                                        ThreadState)                           \
 814                                                                                                                                      \
 815   /************************/                                                                                                         \
 816   /* OopMap and OopMapSet */                                                                                                         \
 817   /************************/                                                                                                         \
 818                                                                                                                                      \
 819   nonstatic_field(OopMap,                      _pc_offset,                                    int)                                   \
 820   nonstatic_field(OopMap,                      _omv_count,                                    int)                                   \
 821   nonstatic_field(OopMap,                      _write_stream,                                 CompressedWriteStream*)                \
 822   nonstatic_field(OopMapSet,                   _om_count,                                     int)                                   \
 823   nonstatic_field(OopMapSet,                   _om_size,                                      int)                                   \
 824   nonstatic_field(OopMapSet,                   _om_data,                                      OopMap**)                              \
 825                                                                                                                                      \
 826   nonstatic_field(ImmutableOopMapSet,          _count,                                        int)                                   \
 827   nonstatic_field(ImmutableOopMapSet,          _size,                                         int)                                   \
 828                                                                                                                                      \
 829   nonstatic_field(ImmutableOopMapPair,         _pc_offset,                                    int)                                   \
 830   nonstatic_field(ImmutableOopMapPair,         _oopmap_offset,                                int)                                   \
 831                                                                                                                                      \
 832   nonstatic_field(ImmutableOopMap,             _count,                                        int)                                   \
 833                                                                                                                                      \
 834   /*********************************/                                                                                                \
 835   /* JNIHandles and JNIHandleBlock */                                                                                                \
 836   /*********************************/                                                                                                \
 837   static_field(JNIHandles,                     _global_handles,                               OopStorage*)                           \
 838   static_field(JNIHandles,                     _weak_global_handles,                          OopStorage*)                           \
 839   unchecked_nonstatic_field(JNIHandleBlock,    _handles,       JNIHandleBlock::block_size_in_oops * sizeof(Oop)) /* Note: no type */ \
 840   nonstatic_field(JNIHandleBlock,              _top,                                          int)                                   \
 841   nonstatic_field(JNIHandleBlock,              _next,                                         JNIHandleBlock*)                       \
 842                                                                                                                                      \
 843   /********************/                                                                                                             \
 844   /* CompressedStream */                                                                                                             \
 845   /********************/                                                                                                             \
 846                                                                                                                                      \
 847   nonstatic_field(CompressedStream,            _buffer,                                       u_char*)                               \
 848   nonstatic_field(CompressedStream,            _position,                                     int)                                   \
 849                                                                                                                                      \
 850   /*********************************/                                                                                                \
 851   /* VMRegImpl (NOTE: incomplete) */                                                                                                 \
 852   /*********************************/                                                                                                \
 853                                                                                                                                      \
 854      static_field(VMRegImpl,                   regName[0],                                    const char*)                           \
 855      static_field(VMRegImpl,                   stack0,                                        VMReg)                                 \
 856                                                                                                                                      \
 857   /*******************************/                                                                                                  \
 858   /* Runtime1 (NOTE: incomplete) */                                                                                                  \
 859   /*******************************/                                                                                                  \
 860                                                                                                                                      \
 861   unchecked_c1_static_field(Runtime1,          _blobs,                                 sizeof(Runtime1::_blobs)) /* NOTE: no type */ \
 862                                                                                                                                      \
 863   /**************/                                                                                                                   \
 864   /* CI */                                                                                                                           \
 865   /************/                                                                                                                     \
 866                                                                                                                                      \
 867   nonstatic_field(ciEnv,                       _system_dictionary_modification_counter,       int)                                   \
 868   nonstatic_field(ciEnv,                       _compiler_data,                                void*)                                 \
 869   nonstatic_field(ciEnv,                       _failure_reason,                               const char*)                           \
 870   nonstatic_field(ciEnv,                       _factory,                                      ciObjectFactory*)                      \
 871   nonstatic_field(ciEnv,                       _dependencies,                                 Dependencies*)                         \
 872   nonstatic_field(ciEnv,                       _task,                                         CompileTask*)                          \
 873   nonstatic_field(ciEnv,                       _arena,                                        Arena*)                                \
 874                                                                                                                                      \
 875   nonstatic_field(ciBaseObject,                _ident,                                        uint)                                  \
 876                                                                                                                                      \
 877   nonstatic_field(ciObject,                    _handle,                                       jobject)                               \
 878   nonstatic_field(ciObject,                    _klass,                                        ciKlass*)                              \
 879                                                                                                                                      \
 880   nonstatic_field(ciMetadata,                  _metadata,                                     Metadata*)                             \
 881                                                                                                                                      \
 882   nonstatic_field(ciSymbol,                    _symbol,                                       Symbol*)                               \
 883                                                                                                                                      \
 884   nonstatic_field(ciType,                      _basic_type,                                   BasicType)                             \
 885                                                                                                                                      \
 886   nonstatic_field(ciKlass,                     _name,                                         ciSymbol*)                             \
 887                                                                                                                                      \
 888   nonstatic_field(ciArrayKlass,                _dimension,                                    jint)                                  \
 889                                                                                                                                      \
 890   nonstatic_field(ciObjArrayKlass,             _element_klass,                                ciKlass*)                              \
 891   nonstatic_field(ciObjArrayKlass,             _base_element_klass,                           ciKlass*)                              \
 892                                                                                                                                      \
 893   nonstatic_field(ciInstanceKlass,             _init_state,                                   InstanceKlass::ClassState)             \
 894   nonstatic_field(ciInstanceKlass,             _is_shared,                                    bool)                                  \
 895                                                                                                                                      \
 896   nonstatic_field(ciMethod,                    _interpreter_invocation_count,                 int)                                   \
 897   nonstatic_field(ciMethod,                    _interpreter_throwout_count,                   int)                                   \
 898   nonstatic_field(ciMethod,                    _instructions_size,                            int)                                   \
 899                                                                                                                                      \
 900   nonstatic_field(ciMethodData,                _data_size,                                    int)                                   \
 901   nonstatic_field(ciMethodData,                _state,                                        u_char)                                \
 902   nonstatic_field(ciMethodData,                _extra_data_size,                              int)                                   \
 903   nonstatic_field(ciMethodData,                _data,                                         intptr_t*)                             \
 904   nonstatic_field(ciMethodData,                _hint_di,                                      int)                                   \
 905   nonstatic_field(ciMethodData,                _eflags,                                       intx)                                  \
 906   nonstatic_field(ciMethodData,                _arg_local,                                    intx)                                  \
 907   nonstatic_field(ciMethodData,                _arg_stack,                                    intx)                                  \
 908   nonstatic_field(ciMethodData,                _arg_returned,                                 intx)                                  \
 909   nonstatic_field(ciMethodData,                _current_mileage,                              int)                                   \
 910   nonstatic_field(ciMethodData,                _orig,                                         MethodData)                            \
 911                                                                                                                                      \
 912   nonstatic_field(ciField,                     _holder,                                       ciInstanceKlass*)                      \
 913   nonstatic_field(ciField,                     _name,                                         ciSymbol*)                             \
 914   nonstatic_field(ciField,                     _signature,                                    ciSymbol*)                             \
 915   nonstatic_field(ciField,                     _offset,                                       int)                                   \
 916   nonstatic_field(ciField,                     _is_constant,                                  bool)                                  \
 917   nonstatic_field(ciField,                     _constant_value,                               ciConstant)                            \
 918                                                                                                                                      \
 919   nonstatic_field(ciObjectFactory,             _ci_metadata,                                  GrowableArray<ciMetadata*>*)           \
 920   nonstatic_field(ciObjectFactory,             _symbols,                                      GrowableArray<ciSymbol*>*)             \
 921   nonstatic_field(ciObjectFactory,             _unloaded_methods,                             GrowableArray<ciMethod*>*)             \
 922                                                                                                                                      \
 923   nonstatic_field(ciConstant,                  _type,                                         BasicType)                             \
 924   nonstatic_field(ciConstant,                  _value._int,                                   jint)                                  \
 925   nonstatic_field(ciConstant,                  _value._long,                                  jlong)                                 \
 926   nonstatic_field(ciConstant,                  _value._float,                                 jfloat)                                \
 927   nonstatic_field(ciConstant,                  _value._double,                                jdouble)                               \
 928   nonstatic_field(ciConstant,                  _value._object,                                ciObject*)                             \
 929                                                                                                                                      \
 930   /************/                                                                                                                     \
 931   /* Monitors */                                                                                                                     \
 932   /************/                                                                                                                     \
 933                                                                                                                                      \
 934   volatile_nonstatic_field(ObjectMonitor,      _header,                                       markOop)                               \
 935   unchecked_nonstatic_field(ObjectMonitor,     _object,                                       sizeof(void *)) /* NOTE: no type */    \
 936   unchecked_nonstatic_field(ObjectMonitor,     _owner,                                        sizeof(void *)) /* NOTE: no type */    \
 937   volatile_nonstatic_field(ObjectMonitor,      _count,                                        jint)                                  \
 938   volatile_nonstatic_field(ObjectMonitor,      _waiters,                                      jint)                                  \
 939   volatile_nonstatic_field(ObjectMonitor,      _recursions,                                   intptr_t)                              \
 940   nonstatic_field(ObjectMonitor,               FreeNext,                                      ObjectMonitor*)                        \
 941   volatile_nonstatic_field(BasicLock,          _displaced_header,                             markOop)                               \
 942   nonstatic_field(BasicObjectLock,             _lock,                                         BasicLock)                             \
 943   nonstatic_field(BasicObjectLock,             _obj,                                          oop)                                   \
 944   static_ptr_volatile_field(ObjectSynchronizer, gBlockList,                                   PaddedObjectMonitor*)                  \
 945                                                                                                                                      \
 946   /*********************/                                                                                                            \
 947   /* Matcher (C2 only) */                                                                                                            \
 948   /*********************/                                                                                                            \
 949                                                                                                                                      \
 950   unchecked_c2_static_field(Matcher,           _regEncode,                          sizeof(Matcher::_regEncode)) /* NOTE: no type */ \
 951                                                                                                                                      \
 952   c2_nonstatic_field(Node,                     _in,                                           Node**)                                \
 953   c2_nonstatic_field(Node,                     _out,                                          Node**)                                \
 954   c2_nonstatic_field(Node,                     _cnt,                                          node_idx_t)                            \
 955   c2_nonstatic_field(Node,                     _max,                                          node_idx_t)                            \
 956   c2_nonstatic_field(Node,                     _outcnt,                                       node_idx_t)                            \
 957   c2_nonstatic_field(Node,                     _outmax,                                       node_idx_t)                            \
 958   c2_nonstatic_field(Node,                     _idx,                                          const node_idx_t)                      \
 959   c2_nonstatic_field(Node,                     _class_id,                                     jushort)                               \
 960   c2_nonstatic_field(Node,                     _flags,                                        jushort)                               \
 961                                                                                                                                      \
 962   c2_nonstatic_field(Compile,                  _root,                                         RootNode*)                             \
 963   c2_nonstatic_field(Compile,                  _unique,                                       uint)                                  \
 964   c2_nonstatic_field(Compile,                  _entry_bci,                                    int)                                   \
 965   c2_nonstatic_field(Compile,                  _top,                                          Node*)                                 \
 966   c2_nonstatic_field(Compile,                  _cfg,                                          PhaseCFG*)                             \
 967   c2_nonstatic_field(Compile,                  _regalloc,                                     PhaseRegAlloc*)                        \
 968   c2_nonstatic_field(Compile,                  _method,                                       ciMethod*)                             \
 969   c2_nonstatic_field(Compile,                  _compile_id,                                   const int)                             \
 970   c2_nonstatic_field(Compile,                  _save_argument_registers,                      const bool)                            \
 971   c2_nonstatic_field(Compile,                  _subsume_loads,                                const bool)                            \
 972   c2_nonstatic_field(Compile,                  _do_escape_analysis,                           const bool)                            \
 973   c2_nonstatic_field(Compile,                  _eliminate_boxing,                             const bool)                            \
 974   c2_nonstatic_field(Compile,                  _ilt,                                          InlineTree*)                           \
 975                                                                                                                                      \
 976   c2_nonstatic_field(InlineTree,               _caller_jvms,                                  JVMState*)                             \
 977   c2_nonstatic_field(InlineTree,               _method,                                       ciMethod*)                             \
 978   c2_nonstatic_field(InlineTree,               _caller_tree,                                  InlineTree*)                           \
 979   c2_nonstatic_field(InlineTree,               _subtrees,                                     GrowableArray<InlineTree*>)            \
 980                                                                                                                                      \
 981   c2_nonstatic_field(OptoRegPair,              _first,                                        short)                                 \
 982   c2_nonstatic_field(OptoRegPair,              _second,                                       short)                                 \
 983                                                                                                                                      \
 984   c2_nonstatic_field(JVMState,                 _caller,                                       JVMState*)                             \
 985   c2_nonstatic_field(JVMState,                 _depth,                                        uint)                                  \
 986   c2_nonstatic_field(JVMState,                 _locoff,                                       uint)                                  \
 987   c2_nonstatic_field(JVMState,                 _stkoff,                                       uint)                                  \
 988   c2_nonstatic_field(JVMState,                 _monoff,                                       uint)                                  \
 989   c2_nonstatic_field(JVMState,                 _scloff,                                       uint)                                  \
 990   c2_nonstatic_field(JVMState,                 _endoff,                                       uint)                                  \
 991   c2_nonstatic_field(JVMState,                 _sp,                                           uint)                                  \
 992   c2_nonstatic_field(JVMState,                 _bci,                                          int)                                   \
 993   c2_nonstatic_field(JVMState,                 _method,                                       ciMethod*)                             \
 994   c2_nonstatic_field(JVMState,                 _map,                                          SafePointNode*)                        \
 995                                                                                                                                      \
 996   c2_nonstatic_field(SafePointNode,            _jvms,                                         JVMState* const)                       \
 997                                                                                                                                      \
 998   c2_nonstatic_field(MachSafePointNode,        _jvms,                                         JVMState*)                             \
 999   c2_nonstatic_field(MachSafePointNode,        _jvmadj,                                       uint)                                  \
1000                                                                                                                                      \
1001   c2_nonstatic_field(MachIfNode,               _prob,                                         jfloat)                                \
1002   c2_nonstatic_field(MachIfNode,               _fcnt,                                         jfloat)                                \
1003                                                                                                                                      \
1004   c2_nonstatic_field(CallNode,                 _entry_point,                                  address)                               \
1005                                                                                                                                      \
1006   c2_nonstatic_field(CallJavaNode,             _method,                                       ciMethod*)                             \
1007                                                                                                                                      \
1008   c2_nonstatic_field(CallRuntimeNode,          _name,                                         const char*)                           \
1009                                                                                                                                      \
1010   c2_nonstatic_field(CallStaticJavaNode,       _name,                                         const char*)                           \
1011                                                                                                                                      \
1012   c2_nonstatic_field(MachCallJavaNode,         _method,                                       ciMethod*)                             \
1013   c2_nonstatic_field(MachCallJavaNode,         _bci,                                          int)                                   \
1014                                                                                                                                      \
1015   c2_nonstatic_field(MachCallStaticJavaNode,   _name,                                         const char*)                           \
1016                                                                                                                                      \
1017   c2_nonstatic_field(MachCallRuntimeNode,      _name,                                         const char*)                           \
1018                                                                                                                                      \
1019   c2_nonstatic_field(PhaseCFG,                 _number_of_blocks,                             uint)                                  \
1020   c2_nonstatic_field(PhaseCFG,                 _blocks,                                       Block_List)                            \
1021   c2_nonstatic_field(PhaseCFG,                 _node_to_block_mapping,                        Block_Array)                           \
1022   c2_nonstatic_field(PhaseCFG,                 _root_block,                                   Block*)                                \
1023                                                                                                                                      \
1024   c2_nonstatic_field(PhaseRegAlloc,            _node_regs,                                    OptoRegPair*)                          \
1025   c2_nonstatic_field(PhaseRegAlloc,            _node_regs_max_index,                          uint)                                  \
1026   c2_nonstatic_field(PhaseRegAlloc,            _framesize,                                    uint)                                  \
1027   c2_nonstatic_field(PhaseRegAlloc,            _max_reg,                                      OptoReg::Name)                         \
1028                                                                                                                                      \
1029   c2_nonstatic_field(PhaseChaitin,             _trip_cnt,                                     int)                                   \
1030   c2_nonstatic_field(PhaseChaitin,             _alternate,                                    int)                                   \
1031   c2_nonstatic_field(PhaseChaitin,             _lo_degree,                                    uint)                                  \
1032   c2_nonstatic_field(PhaseChaitin,             _lo_stk_degree,                                uint)                                  \
1033   c2_nonstatic_field(PhaseChaitin,             _hi_degree,                                    uint)                                  \
1034   c2_nonstatic_field(PhaseChaitin,             _simplified,                                   uint)                                  \
1035                                                                                                                                      \
1036   c2_nonstatic_field(Block,                    _nodes,                                        Node_List)                             \
1037   c2_nonstatic_field(Block,                    _succs,                                        Block_Array)                           \
1038   c2_nonstatic_field(Block,                    _num_succs,                                    uint)                                  \
1039   c2_nonstatic_field(Block,                    _pre_order,                                    uint)                                  \
1040   c2_nonstatic_field(Block,                    _dom_depth,                                    uint)                                  \
1041   c2_nonstatic_field(Block,                    _idom,                                         Block*)                                \
1042   c2_nonstatic_field(Block,                    _freq,                                         jdouble)                               \
1043                                                                                                                                      \
1044   c2_nonstatic_field(CFGElement,               _freq,                                         jdouble)                               \
1045                                                                                                                                      \
1046   c2_nonstatic_field(Block_List,               _cnt,                                          uint)                                  \
1047                                                                                                                                      \
1048   c2_nonstatic_field(Block_Array,              _size,                                         uint)                                  \
1049   c2_nonstatic_field(Block_Array,              _blocks,                                       Block**)                               \
1050   c2_nonstatic_field(Block_Array,              _arena,                                        Arena*)                                \
1051                                                                                                                                      \
1052   c2_nonstatic_field(Node_List,                _cnt,                                          uint)                                  \
1053                                                                                                                                      \
1054   c2_nonstatic_field(Node_Array,               _max,                                          uint)                                  \
1055   c2_nonstatic_field(Node_Array,               _nodes,                                        Node**)                                \
1056   c2_nonstatic_field(Node_Array,               _a,                                            Arena*)                                \
1057                                                                                                                                      \
1058                                                                                                                                      \
1059   /*********************/                                                                                                            \
1060   /* -XX flags         */                                                                                                            \
1061   /*********************/                                                                                                            \
1062                                                                                                                                      \
1063   nonstatic_field(Flag,                        _type,                                         const char*)                           \
1064   nonstatic_field(Flag,                        _name,                                         const char*)                           \
1065   unchecked_nonstatic_field(Flag,              _addr,                                         sizeof(void*)) /* NOTE: no type */     \
1066   nonstatic_field(Flag,                        _flags,                                        Flag::Flags)                           \
1067      static_field(Flag,                        flags,                                         Flag*)                                 \
1068      static_field(Flag,                        numFlags,                                      size_t)                                \
1069                                                                                                                                      \
1070   /*************************/                                                                                                        \
1071   /* JDK / VM version info */                                                                                                        \
1072   /*************************/                                                                                                        \
1073                                                                                                                                      \
1074      static_field(Abstract_VM_Version,         _s_vm_release,                                 const char*)                           \
1075      static_field(Abstract_VM_Version,         _s_internal_vm_info_string,                    const char*)                           \
1076      static_field(Abstract_VM_Version,         _features,                                     uint64_t)                              \
1077      static_field(Abstract_VM_Version,         _features_string,                              const char*)                           \
1078      static_field(Abstract_VM_Version,         _vm_major_version,                             int)                                   \
1079      static_field(Abstract_VM_Version,         _vm_minor_version,                             int)                                   \
1080      static_field(Abstract_VM_Version,         _vm_security_version,                          int)                                   \
1081      static_field(Abstract_VM_Version,         _vm_build_number,                              int)                                   \
1082                                                                                                                                      \
1083      static_field(JDK_Version,                 _current,                                      JDK_Version)                           \
1084   nonstatic_field(JDK_Version,                 _major,                                        unsigned char)                         \
1085                                                                                                                                      \
1086   /*************************/                                                                                                        \
1087   /* JVMTI */                                                                                                                        \
1088   /*************************/                                                                                                        \
1089                                                                                                                                      \
1090   JVMTI_STRUCTS(static_field)                                                                                                        \
1091                                                                                                                                      \
1092   /*************/                                                                                                                    \
1093   /* Arguments */                                                                                                                    \
1094   /*************/                                                                                                                    \
1095                                                                                                                                      \
1096      static_field(Arguments,                   _jvm_flags_array,                              char**)                                \
1097      static_field(Arguments,                   _num_jvm_flags,                                int)                                   \
1098      static_field(Arguments,                   _jvm_args_array,                               char**)                                \
1099      static_field(Arguments,                   _num_jvm_args,                                 int)                                   \
1100      static_field(Arguments,                   _java_command,                                 char*)                                 \
1101                                                                                                                                      \
1102   /************/                                                                                                                     \
1103   /* Array<T> */                                                                                                                     \
1104   /************/                                                                                                                     \
1105                                                                                                                                      \
1106   nonstatic_field(Array<int>,                  _length,                                       int)                                   \
1107   unchecked_nonstatic_field(Array<int>,        _data,                                         sizeof(int))                           \
1108   unchecked_nonstatic_field(Array<u1>,         _data,                                         sizeof(u1))                            \
1109   unchecked_nonstatic_field(Array<u2>,         _data,                                         sizeof(u2))                            \
1110   unchecked_nonstatic_field(Array<Method*>,    _data,                                         sizeof(Method*))                       \
1111   unchecked_nonstatic_field(Array<Klass*>,     _data,                                         sizeof(Klass*))                        \
1112                                                                                                                                      \
1113   /*********************************/                                                                                                \
1114   /* java_lang_Class fields        */                                                                                                \
1115   /*********************************/                                                                                                \
1116                                                                                                                                      \
1117      static_field(java_lang_Class,             _klass_offset,                                 int)                                   \
1118      static_field(java_lang_Class,             _array_klass_offset,                           int)                                   \
1119      static_field(java_lang_Class,             _oop_size_offset,                              int)                                   \
1120      static_field(java_lang_Class,             _static_oop_field_count_offset,                int)                                   \
1121                                                                                                                                      \
1122   /********************************************/                                                                                     \
1123   /* FileMapInfo fields (CDS archive related) */                                                                                     \
1124   /********************************************/                                                                                     \
1125                                                                                                                                      \
1126   nonstatic_field(FileMapInfo,                 _header,                                       FileMapInfo::FileMapHeader*)           \
1127      static_field(FileMapInfo,                 _current_info,                                 FileMapInfo*)                          \
1128   nonstatic_field(FileMapInfo::FileMapHeader,  _space[0],                                     FileMapInfo::FileMapHeader::space_info)\
1129   nonstatic_field(FileMapInfo::FileMapHeader::space_info, _addr._base,                        char*)                                 \
1130   nonstatic_field(FileMapInfo::FileMapHeader::space_info, _used,                              size_t)                                \
1131                                                                                                                                      \
1132   /******************/                                                                                                               \
1133   /* VMError fields */                                                                                                               \
1134   /******************/                                                                                                               \
1135                                                                                                                                      \
1136      static_field(VMError,                     _thread,                                       Thread*)                               \
1137                                                                                                                                      \
1138   /************************/                                                                                                         \
1139   /* Miscellaneous fields */                                                                                                         \
1140   /************************/                                                                                                         \
1141                                                                                                                                      \
1142   nonstatic_field(CompileTask,                 _method,                                       Method*)                               \
1143   nonstatic_field(CompileTask,                 _osr_bci,                                      int)                                   \
1144   nonstatic_field(CompileTask,                 _comp_level,                                   int)                                   \
1145   nonstatic_field(CompileTask,                 _compile_id,                                   uint)                                  \
1146   nonstatic_field(CompileTask,                 _num_inlined_bytecodes,                        int)                                   \
1147   nonstatic_field(CompileTask,                 _next,                                         CompileTask*)                          \
1148   nonstatic_field(CompileTask,                 _prev,                                         CompileTask*)                          \
1149                                                                                                                                      \
1150   nonstatic_field(vframeArray,                 _next,                                         vframeArray*)                          \
1151   nonstatic_field(vframeArray,                 _original,                                     frame)                                 \
1152   nonstatic_field(vframeArray,                 _caller,                                       frame)                                 \
1153   nonstatic_field(vframeArray,                 _frames,                                       int)                                   \
1154                                                                                                                                      \
1155   nonstatic_field(vframeArrayElement,          _frame,                                        frame)                                 \
1156   nonstatic_field(vframeArrayElement,          _bci,                                          int)                                   \
1157   nonstatic_field(vframeArrayElement,          _method,                                       Method*)                               \
1158                                                                                                                                      \
1159   nonstatic_field(AccessFlags,                 _flags,                                        jint)                                  \
1160   nonstatic_field(elapsedTimer,                _counter,                                      jlong)                                 \
1161   nonstatic_field(elapsedTimer,                _active,                                       bool)                                  \
1162   nonstatic_field(InvocationCounter,           _counter,                                      unsigned int)
1163 
1164 //--------------------------------------------------------------------------------
1165 // VM_TYPES
1166 //
1167 // This list must enumerate at least all of the types in the above
1168 // list. For the types in the above list, the entry below must have
1169 // exactly the same spacing since string comparisons are done in the
1170 // code which verifies the consistency of these tables (in the debug
1171 // build).
1172 //
1173 // In addition to the above types, this list is required to enumerate
1174 // the JNI's java types, which are used to indicate the size of Java
1175 // fields in this VM to the SA. Further, oop types are currently
1176 // distinguished by name (i.e., ends with "oop") over in the SA.
1177 //
1178 // The declare_toplevel_type macro should be used to declare types
1179 // which do not have a superclass.
1180 //
1181 // The declare_integer_type and declare_unsigned_integer_type macros
1182 // are required in order to properly identify C integer types over in
1183 // the SA. They should be used for any type which is otherwise opaque
1184 // and which it is necessary to coerce into an integer value. This
1185 // includes, for example, the type uintptr_t. Note that while they
1186 // will properly identify the type's size regardless of the platform,
1187 // since it is does not seem possible to deduce or check signedness at
1188 // compile time using the pointer comparison tricks, it is currently
1189 // required that the given types have the same signedness across all
1190 // platforms.
1191 //
1192 // NOTE that there are platform-specific additions to this table in
1193 // vmStructs_<os>_<cpu>.hpp.
1194 
1195 #define VM_TYPES(declare_type,                                            \
1196                  declare_toplevel_type,                                   \
1197                  declare_oop_type,                                        \
1198                  declare_integer_type,                                    \
1199                  declare_unsigned_integer_type,                           \
1200                  declare_c1_toplevel_type,                                \
1201                  declare_c2_type,                                         \
1202                  declare_c2_toplevel_type)                                \
1203                                                                           \
1204   /*************************************************************/         \
1205   /* Java primitive types -- required by the SA implementation */         \
1206   /* in order to determine the size of Java fields in this VM  */         \
1207   /* (the implementation looks up these names specifically)    */         \
1208   /* NOTE: since we fetch these sizes from the remote VM, we   */         \
1209   /* have a bootstrapping sequence during which it is not      */         \
1210   /* valid to fetch Java values from the remote process, only  */         \
1211   /* C integer values (of known size). NOTE also that we do    */         \
1212   /* NOT include "Java unsigned" types like juint here; since  */         \
1213   /* Java does not have unsigned primitive types, those can    */         \
1214   /* not be mapped directly and are considered to be C integer */         \
1215   /* types in this system (see the "other types" section,      */         \
1216   /* below.)                                                   */         \
1217   /*************************************************************/         \
1218                                                                           \
1219   declare_toplevel_type(jboolean)                                         \
1220   declare_toplevel_type(jbyte)                                            \
1221   declare_toplevel_type(jchar)                                            \
1222   declare_toplevel_type(jdouble)                                          \
1223   declare_toplevel_type(jfloat)                                           \
1224   declare_toplevel_type(jint)                                             \
1225   declare_toplevel_type(jlong)                                            \
1226   declare_toplevel_type(jshort)                                           \
1227                                                                           \
1228   /*********************************************************************/ \
1229   /* C integer types. User-defined typedefs (like "size_t" or          */ \
1230   /* "intptr_t") are guaranteed to be present with the same names over */ \
1231   /* in the SA's type database. Names like "unsigned short" are not    */ \
1232   /* guaranteed to be visible through the SA's type database lookup    */ \
1233   /* mechanism, though they will have a Type object created for them   */ \
1234   /* and are valid types for Fields.                                   */ \
1235   /*********************************************************************/ \
1236   declare_integer_type(bool)                                              \
1237   declare_integer_type(short)                                             \
1238   declare_integer_type(int)                                               \
1239   declare_integer_type(long)                                              \
1240   declare_integer_type(char)                                              \
1241   declare_integer_type(volatile signed char)                              \
1242   declare_unsigned_integer_type(unsigned char)                            \
1243   declare_unsigned_integer_type(u_char)                                   \
1244   declare_unsigned_integer_type(unsigned int)                             \
1245   declare_unsigned_integer_type(uint)                                     \
1246   declare_unsigned_integer_type(unsigned short)                           \
1247   declare_unsigned_integer_type(jushort)                                  \
1248   declare_unsigned_integer_type(unsigned long)                            \
1249   /* The compiler thinks this is a different type than */                 \
1250   /* unsigned short on Win32 */                                           \
1251   declare_unsigned_integer_type(u1)                                       \
1252   declare_unsigned_integer_type(u2)                                       \
1253   declare_unsigned_integer_type(u4)                                       \
1254   declare_unsigned_integer_type(u8)                                       \
1255   declare_unsigned_integer_type(unsigned)                                 \
1256                                                                           \
1257   /*****************************/                                         \
1258   /* C primitive pointer types */                                         \
1259   /*****************************/                                         \
1260                                                                           \
1261   declare_toplevel_type(void*)                                            \
1262   declare_toplevel_type(int*)                                             \
1263   declare_toplevel_type(char*)                                            \
1264   declare_toplevel_type(char**)                                           \
1265   declare_toplevel_type(u_char*)                                          \
1266   declare_toplevel_type(unsigned char*)                                   \
1267   declare_toplevel_type(volatile unsigned char*)                          \
1268                                                                           \
1269   /*******************************************************************/   \
1270   /* Types which it will be handy to have available over in the SA   */   \
1271   /* in order to do platform-independent address -> integer coercion */   \
1272   /* (note: these will be looked up by name)                         */   \
1273   /*******************************************************************/   \
1274                                                                           \
1275   declare_unsigned_integer_type(size_t)                                   \
1276   declare_integer_type(ssize_t)                                           \
1277   declare_integer_type(intx)                                              \
1278   declare_integer_type(intptr_t)                                          \
1279   declare_unsigned_integer_type(uintx)                                    \
1280   declare_unsigned_integer_type(uintptr_t)                                \
1281   declare_unsigned_integer_type(uint32_t)                                 \
1282   declare_unsigned_integer_type(uint64_t)                                 \
1283                                                                           \
1284   /******************************************/                            \
1285   /* OopDesc hierarchy (NOTE: some missing) */                            \
1286   /******************************************/                            \
1287                                                                           \
1288   declare_toplevel_type(oopDesc)                                          \
1289     declare_type(arrayOopDesc, oopDesc)                                   \
1290       declare_type(objArrayOopDesc, arrayOopDesc)                         \
1291     declare_type(instanceOopDesc, oopDesc)                                \
1292     declare_type(markOopDesc, oopDesc)                                    \
1293                                                                           \
1294   /**************************************************/                    \
1295   /* MetadataOopDesc hierarchy (NOTE: some missing) */                    \
1296   /**************************************************/                    \
1297                                                                           \
1298   declare_toplevel_type(CompiledICHolder)                                 \
1299   declare_toplevel_type(MetaspaceObj)                                     \
1300     declare_type(Metadata, MetaspaceObj)                                  \
1301     declare_type(Klass, Metadata)                                         \
1302            declare_type(ArrayKlass, Klass)                                \
1303            declare_type(ObjArrayKlass, ArrayKlass)                        \
1304            declare_type(TypeArrayKlass, ArrayKlass)                       \
1305       declare_type(InstanceKlass, Klass)                                  \
1306         declare_type(InstanceClassLoaderKlass, InstanceKlass)             \
1307         declare_type(InstanceMirrorKlass, InstanceKlass)                  \
1308         declare_type(InstanceRefKlass, InstanceKlass)                     \
1309     declare_type(ConstantPool, Metadata)                                  \
1310     declare_type(ConstantPoolCache, MetaspaceObj)                         \
1311     declare_type(MethodData, Metadata)                                    \
1312     declare_type(Method, Metadata)                                        \
1313     declare_type(MethodCounters, MetaspaceObj)                            \
1314     declare_type(ConstMethod, MetaspaceObj)                               \
1315                                                                           \
1316   declare_toplevel_type(narrowKlass)                                      \
1317                                                                           \
1318   declare_toplevel_type(vtableEntry)                                      \
1319                                                                           \
1320            declare_toplevel_type(Symbol)                                  \
1321            declare_toplevel_type(Symbol*)                                 \
1322   declare_toplevel_type(volatile Metadata*)                               \
1323                                                                           \
1324   declare_toplevel_type(DataLayout)                                       \
1325                                                                           \
1326   /********/                                                              \
1327   /* Oops */                                                              \
1328   /********/                                                              \
1329                                                                           \
1330   declare_oop_type(markOop)                                               \
1331   declare_oop_type(objArrayOop)                                           \
1332   declare_oop_type(oop)                                                   \
1333   declare_oop_type(narrowOop)                                             \
1334   declare_oop_type(typeArrayOop)                                          \
1335   declare_oop_type(OopHandle)                                             \
1336                                                                           \
1337   /*************************************/                                 \
1338   /* MethodOop-related data structures */                                 \
1339   /*************************************/                                 \
1340                                                                           \
1341   declare_toplevel_type(CheckedExceptionElement)                          \
1342   declare_toplevel_type(LocalVariableTableElement)                        \
1343   declare_toplevel_type(ExceptionTableElement)                            \
1344   declare_toplevel_type(MethodParametersElement)                          \
1345                                                                           \
1346   declare_toplevel_type(ClassLoaderData)                                  \
1347   declare_toplevel_type(ClassLoaderDataGraph)                             \
1348                                                                           \
1349   /************************/                                              \
1350   /* PerfMemory - jvmstat */                                              \
1351   /************************/                                              \
1352                                                                           \
1353   declare_toplevel_type(PerfDataPrologue)                                 \
1354   declare_toplevel_type(PerfDataPrologue*)                                \
1355   declare_toplevel_type(PerfDataEntry)                                    \
1356   declare_toplevel_type(PerfMemory)                                       \
1357   declare_type(PerfData, CHeapObj<mtInternal>)                            \
1358                                                                           \
1359   /*********************************/                                     \
1360   /* SymbolTable, SystemDictionary */                                     \
1361   /*********************************/                                     \
1362                                                                           \
1363   declare_toplevel_type(BasicHashtable<mtInternal>)                       \
1364     declare_type(IntptrHashtable, BasicHashtable<mtInternal>)             \
1365   declare_toplevel_type(BasicHashtable<mtSymbol>)                         \
1366     declare_type(RehashableSymbolHashtable, BasicHashtable<mtSymbol>)     \
1367   declare_type(SymbolTable, SymbolHashtable)                              \
1368   declare_type(StringTable, StringHashtable)                              \
1369     declare_type(Dictionary, KlassHashtable)                              \
1370   declare_toplevel_type(BasicHashtableEntry<mtInternal>)                  \
1371   declare_type(IntptrHashtableEntry, BasicHashtableEntry<mtInternal>)     \
1372     declare_type(DictionaryEntry, KlassHashtableEntry)                    \
1373   declare_toplevel_type(HashtableBucket<mtInternal>)                      \
1374   declare_toplevel_type(SystemDictionary)                                 \
1375   declare_toplevel_type(vmSymbols)                                        \
1376                                                                           \
1377   declare_toplevel_type(GenericGrowableArray)                             \
1378   declare_toplevel_type(GrowableArray<int>)                               \
1379   declare_toplevel_type(Arena)                                            \
1380     declare_type(ResourceArea, Arena)                                     \
1381                                                                           \
1382   declare_toplevel_type(SymbolCompactHashTable)                           \
1383                                                                           \
1384   /***********************************************************/           \
1385   /* Thread hierarchy (needed for run-time type information) */           \
1386   /***********************************************************/           \
1387                                                                           \
1388   declare_toplevel_type(Threads)                                          \
1389   declare_toplevel_type(ThreadShadow)                                     \
1390            declare_type(Thread, ThreadShadow)                             \
1391            declare_type(NamedThread, Thread)                              \
1392            declare_type(WatcherThread, Thread)                            \
1393            declare_type(JavaThread, Thread)                               \
1394            declare_type(JvmtiAgentThread, JavaThread)                     \
1395            declare_type(ServiceThread, JavaThread)                        \
1396   declare_type(CompilerThread, JavaThread)                                \
1397   declare_type(CodeCacheSweeperThread, JavaThread)                        \
1398   declare_toplevel_type(OSThread)                                         \
1399   declare_toplevel_type(JavaFrameAnchor)                                  \
1400                                                                           \
1401   /***************/                                                       \
1402   /* Interpreter */                                                       \
1403   /***************/                                                       \
1404                                                                           \
1405   declare_toplevel_type(AbstractInterpreter)                              \
1406                                                                           \
1407   /*********/                                                             \
1408   /* Stubs */                                                             \
1409   /*********/                                                             \
1410                                                                           \
1411   declare_toplevel_type(StubQueue)                                        \
1412   declare_toplevel_type(StubRoutines)                                     \
1413   declare_toplevel_type(Stub)                                             \
1414            declare_type(InterpreterCodelet, Stub)                         \
1415                                                                           \
1416   /*************/                                                         \
1417   /* JavaCalls */                                                         \
1418   /*************/                                                         \
1419                                                                           \
1420   declare_toplevel_type(JavaCallWrapper)                                  \
1421                                                                           \
1422   /*************/                                                         \
1423   /* CodeCache */                                                         \
1424   /*************/                                                         \
1425                                                                           \
1426   declare_toplevel_type(CodeCache)                                        \
1427                                                                           \
1428   /************/                                                          \
1429   /* CodeHeap */                                                          \
1430   /************/                                                          \
1431                                                                           \
1432   declare_toplevel_type(CodeHeap)                                         \
1433   declare_toplevel_type(CodeHeap*)                                        \
1434   declare_toplevel_type(HeapBlock)                                        \
1435   declare_toplevel_type(HeapBlock::Header)                                \
1436            declare_type(FreeBlock, HeapBlock)                             \
1437                                                                           \
1438   /*************************************************************/         \
1439   /* CodeBlob hierarchy (needed for run-time type information) */         \
1440   /*************************************************************/         \
1441                                                                           \
1442   declare_toplevel_type(SharedRuntime)                                    \
1443                                                                           \
1444   declare_toplevel_type(CodeBlob)                                         \
1445   declare_type(RuntimeBlob,             CodeBlob)                        \
1446   declare_type(BufferBlob,               RuntimeBlob)                    \
1447   declare_type(AdapterBlob,              BufferBlob)                      \
1448   declare_type(MethodHandlesAdapterBlob, BufferBlob)                      \
1449   declare_type(CompiledMethod,           CodeBlob)                        \
1450   declare_type(nmethod,                  CompiledMethod)                  \
1451   declare_type(RuntimeStub,              RuntimeBlob)                    \
1452   declare_type(SingletonBlob,            RuntimeBlob)                    \
1453   declare_type(SafepointBlob,            SingletonBlob)                   \
1454   declare_type(DeoptimizationBlob,       SingletonBlob)                   \
1455   declare_c2_type(ExceptionBlob,         SingletonBlob)                   \
1456   declare_c2_type(UncommonTrapBlob,      RuntimeBlob)                     \
1457                                                                           \
1458   /***************************************/                               \
1459   /* PcDesc and other compiled code info */                               \
1460   /***************************************/                               \
1461                                                                           \
1462   declare_toplevel_type(PcDesc)                                           \
1463   declare_toplevel_type(ExceptionCache)                                   \
1464   declare_toplevel_type(PcDescCache)                                      \
1465   declare_toplevel_type(Dependencies)                                     \
1466   declare_toplevel_type(CompileTask)                                      \
1467   declare_toplevel_type(Deoptimization)                                   \
1468   declare_toplevel_type(Deoptimization::UnrollBlock)                      \
1469                                                                           \
1470   /************************/                                              \
1471   /* OopMap and OopMapSet */                                              \
1472   /************************/                                              \
1473                                                                           \
1474   declare_toplevel_type(OopMap)                                           \
1475   declare_toplevel_type(OopMapSet)                                        \
1476   declare_toplevel_type(ImmutableOopMapSet)                               \
1477   declare_toplevel_type(ImmutableOopMapPair)                              \
1478   declare_toplevel_type(ImmutableOopMap)                                  \
1479                                                                           \
1480   /********************/                                                  \
1481   /* CompressedStream */                                                  \
1482   /********************/                                                  \
1483                                                                           \
1484   declare_toplevel_type(CompressedStream)                                 \
1485                                                                           \
1486   /**************/                                                        \
1487   /* VMRegImpl  */                                                        \
1488   /**************/                                                        \
1489                                                                           \
1490   declare_toplevel_type(VMRegImpl)                                        \
1491                                                                           \
1492   /*********************************/                                     \
1493   /* JNIHandles and JNIHandleBlock */                                     \
1494   /*********************************/                                     \
1495                                                                           \
1496   declare_toplevel_type(JNIHandles)                                       \
1497   declare_toplevel_type(JNIHandleBlock)                                   \
1498   declare_toplevel_type(jobject)                                          \
1499                                                                           \
1500   /**************/                                                        \
1501   /* OopStorage */                                                        \
1502   /**************/                                                        \
1503                                                                           \
1504   declare_toplevel_type(OopStorage)                                       \
1505                                                                           \
1506   /**********************/                                                \
1507   /* Runtime1 (C1 only) */                                                \
1508   /**********************/                                                \
1509                                                                           \
1510   declare_c1_toplevel_type(Runtime1)                                      \
1511                                                                           \
1512   /************/                                                          \
1513   /* Monitors */                                                          \
1514   /************/                                                          \
1515                                                                           \
1516   declare_toplevel_type(ObjectMonitor)                                    \
1517   declare_toplevel_type(PaddedObjectMonitor)                              \
1518   declare_toplevel_type(ObjectSynchronizer)                               \
1519   declare_toplevel_type(BasicLock)                                        \
1520   declare_toplevel_type(BasicObjectLock)                                  \
1521                                                                           \
1522   /*********************/                                                 \
1523   /* Matcher (C2 only) */                                                 \
1524   /*********************/                                                 \
1525                                                                           \
1526   declare_c2_toplevel_type(Matcher)                                       \
1527   declare_c2_toplevel_type(Compile)                                       \
1528   declare_c2_toplevel_type(InlineTree)                                    \
1529   declare_c2_toplevel_type(OptoRegPair)                                   \
1530   declare_c2_toplevel_type(JVMState)                                      \
1531   declare_c2_toplevel_type(Phase)                                         \
1532     declare_c2_type(PhaseCFG, Phase)                                      \
1533     declare_c2_type(PhaseRegAlloc, Phase)                                 \
1534     declare_c2_type(PhaseChaitin, PhaseRegAlloc)                          \
1535   declare_c2_toplevel_type(CFGElement)                                    \
1536     declare_c2_type(Block, CFGElement)                                    \
1537   declare_c2_toplevel_type(Block_Array)                                   \
1538     declare_c2_type(Block_List, Block_Array)                              \
1539   declare_c2_toplevel_type(Node_Array)                                    \
1540   declare_c2_type(Node_List, Node_Array)                                  \
1541   declare_c2_type(Unique_Node_List, Node_List)                            \
1542   declare_c2_toplevel_type(Node)                                          \
1543   declare_c2_type(AddNode, Node)                                          \
1544   declare_c2_type(AddINode, AddNode)                                      \
1545   declare_c2_type(AddLNode, AddNode)                                      \
1546   declare_c2_type(AddFNode, AddNode)                                      \
1547   declare_c2_type(AddDNode, AddNode)                                      \
1548   declare_c2_type(AddPNode, Node)                                         \
1549   declare_c2_type(OrINode, AddNode)                                       \
1550   declare_c2_type(OrLNode, AddNode)                                       \
1551   declare_c2_type(XorINode, AddNode)                                      \
1552   declare_c2_type(XorLNode, AddNode)                                      \
1553   declare_c2_type(MaxNode, AddNode)                                       \
1554   declare_c2_type(MaxINode, MaxNode)                                      \
1555   declare_c2_type(MinINode, MaxNode)                                      \
1556   declare_c2_type(StartNode, MultiNode)                                   \
1557   declare_c2_type(StartOSRNode, StartNode)                                \
1558   declare_c2_type(ParmNode, ProjNode)                                     \
1559   declare_c2_type(ReturnNode, Node)                                       \
1560   declare_c2_type(RethrowNode, Node)                                      \
1561   declare_c2_type(TailCallNode, ReturnNode)                               \
1562   declare_c2_type(TailJumpNode, ReturnNode)                               \
1563   declare_c2_type(SafePointNode, MultiNode)                               \
1564   declare_c2_type(CallNode, SafePointNode)                                \
1565   declare_c2_type(CallJavaNode, CallNode)                                 \
1566   declare_c2_type(CallStaticJavaNode, CallJavaNode)                       \
1567   declare_c2_type(CallDynamicJavaNode, CallJavaNode)                      \
1568   declare_c2_type(CallRuntimeNode, CallNode)                              \
1569   declare_c2_type(CallLeafNode, CallRuntimeNode)                          \
1570   declare_c2_type(CallLeafNoFPNode, CallLeafNode)                         \
1571   declare_c2_type(AllocateNode, CallNode)                                 \
1572   declare_c2_type(AllocateArrayNode, AllocateNode)                        \
1573   declare_c2_type(LockNode, AbstractLockNode)                             \
1574   declare_c2_type(UnlockNode, AbstractLockNode)                           \
1575   declare_c2_type(FastLockNode, CmpNode)                                  \
1576   declare_c2_type(FastUnlockNode, CmpNode)                                \
1577   declare_c2_type(RegionNode, Node)                                       \
1578   declare_c2_type(JProjNode, ProjNode)                                    \
1579   declare_c2_type(PhiNode, TypeNode)                                      \
1580   declare_c2_type(GotoNode, Node)                                         \
1581   declare_c2_type(CProjNode, ProjNode)                                    \
1582   declare_c2_type(MultiBranchNode, MultiNode)                             \
1583   declare_c2_type(IfNode, MultiBranchNode)                                \
1584   declare_c2_type(IfTrueNode, CProjNode)                                  \
1585   declare_c2_type(IfFalseNode, CProjNode)                                 \
1586   declare_c2_type(PCTableNode, MultiBranchNode)                           \
1587   declare_c2_type(JumpNode, PCTableNode)                                  \
1588   declare_c2_type(JumpProjNode, JProjNode)                                \
1589   declare_c2_type(CatchNode, PCTableNode)                                 \
1590   declare_c2_type(CatchProjNode, CProjNode)                               \
1591   declare_c2_type(CreateExNode, TypeNode)                                 \
1592   declare_c2_type(ClearArrayNode, Node)                                   \
1593   declare_c2_type(NeverBranchNode, MultiBranchNode)                       \
1594   declare_c2_type(ConNode, TypeNode)                                      \
1595   declare_c2_type(ConINode, ConNode)                                      \
1596   declare_c2_type(ConPNode, ConNode)                                      \
1597   declare_c2_type(ConNNode, ConNode)                                      \
1598   declare_c2_type(ConLNode, ConNode)                                      \
1599   declare_c2_type(ConFNode, ConNode)                                      \
1600   declare_c2_type(ConDNode, ConNode)                                      \
1601   declare_c2_type(BinaryNode, Node)                                       \
1602   declare_c2_type(CMoveNode, TypeNode)                                    \
1603   declare_c2_type(CMoveDNode, CMoveNode)                                  \
1604   declare_c2_type(CMoveFNode, CMoveNode)                                  \
1605   declare_c2_type(CMoveINode, CMoveNode)                                  \
1606   declare_c2_type(CMoveLNode, CMoveNode)                                  \
1607   declare_c2_type(CMovePNode, CMoveNode)                                  \
1608   declare_c2_type(CMoveNNode, CMoveNode)                                  \
1609   declare_c2_type(EncodePNode, TypeNode)                                  \
1610   declare_c2_type(DecodeNNode, TypeNode)                                  \
1611   declare_c2_type(EncodePKlassNode, TypeNode)                             \
1612   declare_c2_type(DecodeNKlassNode, TypeNode)                             \
1613   declare_c2_type(ConstraintCastNode, TypeNode)                           \
1614   declare_c2_type(CastIINode, ConstraintCastNode)                         \
1615   declare_c2_type(CastPPNode, ConstraintCastNode)                         \
1616   declare_c2_type(CheckCastPPNode, TypeNode)                              \
1617   declare_c2_type(Conv2BNode, Node)                                       \
1618   declare_c2_type(ConvD2FNode, Node)                                      \
1619   declare_c2_type(ConvD2INode, Node)                                      \
1620   declare_c2_type(ConvD2LNode, Node)                                      \
1621   declare_c2_type(ConvF2DNode, Node)                                      \
1622   declare_c2_type(ConvF2INode, Node)                                      \
1623   declare_c2_type(ConvF2LNode, Node)                                      \
1624   declare_c2_type(ConvI2DNode, Node)                                      \
1625   declare_c2_type(ConvI2FNode, Node)                                      \
1626   declare_c2_type(ConvI2LNode, TypeNode)                                  \
1627   declare_c2_type(ConvL2DNode, Node)                                      \
1628   declare_c2_type(ConvL2FNode, Node)                                      \
1629   declare_c2_type(ConvL2INode, Node)                                      \
1630   declare_c2_type(CastX2PNode, Node)                                      \
1631   declare_c2_type(CastP2XNode, Node)                                      \
1632   declare_c2_type(SetVectMaskINode, Node)                                 \
1633   declare_c2_type(MemBarNode, MultiNode)                                  \
1634   declare_c2_type(MemBarAcquireNode, MemBarNode)                          \
1635   declare_c2_type(MemBarReleaseNode, MemBarNode)                          \
1636   declare_c2_type(LoadFenceNode, MemBarNode)                              \
1637   declare_c2_type(StoreFenceNode, MemBarNode)                             \
1638   declare_c2_type(MemBarVolatileNode, MemBarNode)                         \
1639   declare_c2_type(MemBarCPUOrderNode, MemBarNode)                         \
1640   declare_c2_type(OnSpinWaitNode, MemBarNode)                             \
1641   declare_c2_type(InitializeNode, MemBarNode)                             \
1642   declare_c2_type(ThreadLocalNode, Node)                                  \
1643   declare_c2_type(Opaque1Node, Node)                                      \
1644   declare_c2_type(Opaque2Node, Node)                                      \
1645   declare_c2_type(PartialSubtypeCheckNode, Node)                          \
1646   declare_c2_type(MoveI2FNode, Node)                                      \
1647   declare_c2_type(MoveL2DNode, Node)                                      \
1648   declare_c2_type(MoveF2INode, Node)                                      \
1649   declare_c2_type(MoveD2LNode, Node)                                      \
1650   declare_c2_type(DivINode, Node)                                         \
1651   declare_c2_type(DivLNode, Node)                                         \
1652   declare_c2_type(DivFNode, Node)                                         \
1653   declare_c2_type(DivDNode, Node)                                         \
1654   declare_c2_type(ModINode, Node)                                         \
1655   declare_c2_type(ModLNode, Node)                                         \
1656   declare_c2_type(ModFNode, Node)                                         \
1657   declare_c2_type(ModDNode, Node)                                         \
1658   declare_c2_type(DivModNode, MultiNode)                                  \
1659   declare_c2_type(DivModINode, DivModNode)                                \
1660   declare_c2_type(DivModLNode, DivModNode)                                \
1661   declare_c2_type(BoxLockNode, Node)                                      \
1662   declare_c2_type(LoopNode, RegionNode)                                   \
1663   declare_c2_type(CountedLoopNode, LoopNode)                              \
1664   declare_c2_type(CountedLoopEndNode, IfNode)                             \
1665   declare_c2_type(MachNode, Node)                                         \
1666   declare_c2_type(MachIdealNode, MachNode)                                \
1667   declare_c2_type(MachTypeNode, MachNode)                                 \
1668   declare_c2_type(MachBreakpointNode, MachIdealNode)                      \
1669   declare_c2_type(MachUEPNode, MachIdealNode)                             \
1670   declare_c2_type(MachPrologNode, MachIdealNode)                          \
1671   declare_c2_type(MachEpilogNode, MachIdealNode)                          \
1672   declare_c2_type(MachNopNode, MachIdealNode)                             \
1673   declare_c2_type(MachSpillCopyNode, MachIdealNode)                       \
1674   declare_c2_type(MachNullCheckNode, MachIdealNode)                       \
1675   declare_c2_type(MachProjNode, ProjNode)                                 \
1676   declare_c2_type(MachIfNode, MachNode)                                   \
1677   declare_c2_type(MachFastLockNode, MachNode)                             \
1678   declare_c2_type(MachReturnNode, MachNode)                               \
1679   declare_c2_type(MachSafePointNode, MachReturnNode)                      \
1680   declare_c2_type(MachCallNode, MachSafePointNode)                        \
1681   declare_c2_type(MachCallJavaNode, MachCallNode)                         \
1682   declare_c2_type(MachCallStaticJavaNode, MachCallJavaNode)               \
1683   declare_c2_type(MachCallDynamicJavaNode, MachCallJavaNode)              \
1684   declare_c2_type(MachCallRuntimeNode, MachCallNode)                      \
1685   declare_c2_type(MachHaltNode, MachReturnNode)                           \
1686   declare_c2_type(MachTempNode, MachNode)                                 \
1687   declare_c2_type(MemNode, Node)                                          \
1688   declare_c2_type(MergeMemNode, Node)                                     \
1689   declare_c2_type(LoadNode, MemNode)                                      \
1690   declare_c2_type(LoadBNode, LoadNode)                                    \
1691   declare_c2_type(LoadUSNode, LoadNode)                                   \
1692   declare_c2_type(LoadINode, LoadNode)                                    \
1693   declare_c2_type(LoadRangeNode, LoadINode)                               \
1694   declare_c2_type(LoadLNode, LoadNode)                                    \
1695   declare_c2_type(LoadL_unalignedNode, LoadLNode)                         \
1696   declare_c2_type(LoadFNode, LoadNode)                                    \
1697   declare_c2_type(LoadDNode, LoadNode)                                    \
1698   declare_c2_type(LoadD_unalignedNode, LoadDNode)                         \
1699   declare_c2_type(LoadPNode, LoadNode)                                    \
1700   declare_c2_type(LoadNNode, LoadNode)                                    \
1701   declare_c2_type(LoadKlassNode, LoadPNode)                               \
1702   declare_c2_type(LoadNKlassNode, LoadNNode)                              \
1703   declare_c2_type(LoadSNode, LoadNode)                                    \
1704   declare_c2_type(StoreNode, MemNode)                                     \
1705   declare_c2_type(StoreBNode, StoreNode)                                  \
1706   declare_c2_type(StoreCNode, StoreNode)                                  \
1707   declare_c2_type(StoreINode, StoreNode)                                  \
1708   declare_c2_type(StoreLNode, StoreNode)                                  \
1709   declare_c2_type(StoreFNode, StoreNode)                                  \
1710   declare_c2_type(StoreDNode, StoreNode)                                  \
1711   declare_c2_type(StorePNode, StoreNode)                                  \
1712   declare_c2_type(StoreNNode, StoreNode)                                  \
1713   declare_c2_type(StoreNKlassNode, StoreNode)                             \
1714   declare_c2_type(StoreCMNode, StoreNode)                                 \
1715   declare_c2_type(LoadPLockedNode, LoadPNode)                             \
1716   declare_c2_type(SCMemProjNode, ProjNode)                                \
1717   declare_c2_type(LoadStoreNode, Node)                                    \
1718   declare_c2_type(StorePConditionalNode, LoadStoreNode)                   \
1719   declare_c2_type(StoreLConditionalNode, LoadStoreNode)                   \
1720   declare_c2_type(CompareAndSwapNode, LoadStoreConditionalNode)           \
1721   declare_c2_type(CompareAndSwapBNode, CompareAndSwapNode)                \
1722   declare_c2_type(CompareAndSwapSNode, CompareAndSwapNode)                \
1723   declare_c2_type(CompareAndSwapLNode, CompareAndSwapNode)                \
1724   declare_c2_type(CompareAndSwapINode, CompareAndSwapNode)                \
1725   declare_c2_type(CompareAndSwapPNode, CompareAndSwapNode)                \
1726   declare_c2_type(CompareAndSwapNNode, CompareAndSwapNode)                \
1727   declare_c2_type(WeakCompareAndSwapBNode, CompareAndSwapNode)            \
1728   declare_c2_type(WeakCompareAndSwapSNode, CompareAndSwapNode)            \
1729   declare_c2_type(WeakCompareAndSwapLNode, CompareAndSwapNode)            \
1730   declare_c2_type(WeakCompareAndSwapINode, CompareAndSwapNode)            \
1731   declare_c2_type(WeakCompareAndSwapPNode, CompareAndSwapNode)            \
1732   declare_c2_type(WeakCompareAndSwapNNode, CompareAndSwapNode)            \
1733   declare_c2_type(CompareAndExchangeNode, LoadStoreNode)                  \
1734   declare_c2_type(CompareAndExchangeBNode, CompareAndExchangeNode)        \
1735   declare_c2_type(CompareAndExchangeSNode, CompareAndExchangeNode)        \
1736   declare_c2_type(CompareAndExchangeLNode, CompareAndExchangeNode)        \
1737   declare_c2_type(CompareAndExchangeINode, CompareAndExchangeNode)        \
1738   declare_c2_type(CompareAndExchangePNode, CompareAndExchangeNode)        \
1739   declare_c2_type(CompareAndExchangeNNode, CompareAndExchangeNode)        \
1740   declare_c2_type(MulNode, Node)                                          \
1741   declare_c2_type(MulINode, MulNode)                                      \
1742   declare_c2_type(MulLNode, MulNode)                                      \
1743   declare_c2_type(MulFNode, MulNode)                                      \
1744   declare_c2_type(MulDNode, MulNode)                                      \
1745   declare_c2_type(MulHiLNode, Node)                                       \
1746   declare_c2_type(AndINode, MulINode)                                     \
1747   declare_c2_type(AndLNode, MulLNode)                                     \
1748   declare_c2_type(LShiftINode, Node)                                      \
1749   declare_c2_type(LShiftLNode, Node)                                      \
1750   declare_c2_type(RShiftINode, Node)                                      \
1751   declare_c2_type(RShiftLNode, Node)                                      \
1752   declare_c2_type(URShiftINode, Node)                                     \
1753   declare_c2_type(URShiftLNode, Node)                                     \
1754   declare_c2_type(MultiNode, Node)                                        \
1755   declare_c2_type(ProjNode, Node)                                         \
1756   declare_c2_type(TypeNode, Node)                                         \
1757   declare_c2_type(NodeHash, StackObj)                                     \
1758   declare_c2_type(RootNode, LoopNode)                                     \
1759   declare_c2_type(HaltNode, Node)                                         \
1760   declare_c2_type(SubNode, Node)                                          \
1761   declare_c2_type(SubINode, SubNode)                                      \
1762   declare_c2_type(SubLNode, SubNode)                                      \
1763   declare_c2_type(SubFPNode, SubNode)                                     \
1764   declare_c2_type(SubFNode, SubFPNode)                                    \
1765   declare_c2_type(SubDNode, SubFPNode)                                    \
1766   declare_c2_type(CmpNode, SubNode)                                       \
1767   declare_c2_type(CmpINode, CmpNode)                                      \
1768   declare_c2_type(CmpUNode, CmpNode)                                      \
1769   declare_c2_type(CmpPNode, CmpNode)                                      \
1770   declare_c2_type(CmpNNode, CmpNode)                                      \
1771   declare_c2_type(CmpLNode, CmpNode)                                      \
1772   declare_c2_type(CmpULNode, CmpNode)                                     \
1773   declare_c2_type(CmpL3Node, CmpLNode)                                    \
1774   declare_c2_type(CmpFNode, CmpNode)                                      \
1775   declare_c2_type(CmpF3Node, CmpFNode)                                    \
1776   declare_c2_type(CmpDNode, CmpNode)                                      \
1777   declare_c2_type(CmpD3Node, CmpDNode)                                    \
1778   declare_c2_type(BoolNode, Node)                                         \
1779   declare_c2_type(AbsNode, Node)                                          \
1780   declare_c2_type(AbsINode, AbsNode)                                      \
1781   declare_c2_type(AbsFNode, AbsNode)                                      \
1782   declare_c2_type(AbsDNode, AbsNode)                                      \
1783   declare_c2_type(CmpLTMaskNode, Node)                                    \
1784   declare_c2_type(NegNode, Node)                                          \
1785   declare_c2_type(NegFNode, NegNode)                                      \
1786   declare_c2_type(NegDNode, NegNode)                                      \
1787   declare_c2_type(AtanDNode, Node)                                        \
1788   declare_c2_type(SqrtFNode, Node)                                        \
1789   declare_c2_type(SqrtDNode, Node)                                        \
1790   declare_c2_type(ReverseBytesINode, Node)                                \
1791   declare_c2_type(ReverseBytesLNode, Node)                                \
1792   declare_c2_type(ReductionNode, Node)                                    \
1793   declare_c2_type(VectorNode, Node)                                       \
1794   declare_c2_type(AddVBNode, VectorNode)                                  \
1795   declare_c2_type(AddVSNode, VectorNode)                                  \
1796   declare_c2_type(AddVINode, VectorNode)                                  \
1797   declare_c2_type(AddReductionVINode, ReductionNode)                      \
1798   declare_c2_type(AddVLNode, VectorNode)                                  \
1799   declare_c2_type(AddReductionVLNode, ReductionNode)                      \
1800   declare_c2_type(AddVFNode, VectorNode)                                  \
1801   declare_c2_type(AddReductionVFNode, ReductionNode)                      \
1802   declare_c2_type(AddVDNode, VectorNode)                                  \
1803   declare_c2_type(AddReductionVDNode, ReductionNode)                      \
1804   declare_c2_type(SubVBNode, VectorNode)                                  \
1805   declare_c2_type(SubVSNode, VectorNode)                                  \
1806   declare_c2_type(SubVINode, VectorNode)                                  \
1807   declare_c2_type(SubVLNode, VectorNode)                                  \
1808   declare_c2_type(SubVFNode, VectorNode)                                  \
1809   declare_c2_type(SubVDNode, VectorNode)                                  \
1810   declare_c2_type(MulVSNode, VectorNode)                                  \
1811   declare_c2_type(MulVLNode, VectorNode)                                  \
1812   declare_c2_type(MulReductionVLNode, ReductionNode)                      \
1813   declare_c2_type(MulVINode, VectorNode)                                  \
1814   declare_c2_type(MulReductionVINode, ReductionNode)                      \
1815   declare_c2_type(MulVFNode, VectorNode)                                  \
1816   declare_c2_type(MulReductionVFNode, ReductionNode)                      \
1817   declare_c2_type(MulVDNode, VectorNode)                                  \
1818   declare_c2_type(FmaVDNode, VectorNode)                                  \
1819   declare_c2_type(FmaVFNode, VectorNode)                                  \
1820   declare_c2_type(CMoveVFNode, VectorNode)                                \
1821   declare_c2_type(CMoveVDNode, VectorNode)                                \
1822   declare_c2_type(MulReductionVDNode, ReductionNode)                      \
1823   declare_c2_type(DivVFNode, VectorNode)                                  \
1824   declare_c2_type(DivVDNode, VectorNode)                                  \
1825   declare_c2_type(PopCountVINode, VectorNode)                             \
1826   declare_c2_type(LShiftVBNode, VectorNode)                               \
1827   declare_c2_type(LShiftVSNode, VectorNode)                               \
1828   declare_c2_type(LShiftVINode, VectorNode)                               \
1829   declare_c2_type(LShiftVLNode, VectorNode)                               \
1830   declare_c2_type(RShiftVBNode, VectorNode)                               \
1831   declare_c2_type(RShiftVSNode, VectorNode)                               \
1832   declare_c2_type(RShiftVINode, VectorNode)                               \
1833   declare_c2_type(RShiftVLNode, VectorNode)                               \
1834   declare_c2_type(URShiftVBNode, VectorNode)                              \
1835   declare_c2_type(URShiftVSNode, VectorNode)                              \
1836   declare_c2_type(URShiftVINode, VectorNode)                              \
1837   declare_c2_type(URShiftVLNode, VectorNode)                              \
1838   declare_c2_type(AndVNode, VectorNode)                                   \
1839   declare_c2_type(OrVNode, VectorNode)                                    \
1840   declare_c2_type(XorVNode, VectorNode)                                   \
1841   declare_c2_type(LoadVectorNode, LoadNode)                               \
1842   declare_c2_type(StoreVectorNode, StoreNode)                             \
1843   declare_c2_type(ReplicateBNode, VectorNode)                             \
1844   declare_c2_type(ReplicateSNode, VectorNode)                             \
1845   declare_c2_type(ReplicateINode, VectorNode)                             \
1846   declare_c2_type(ReplicateLNode, VectorNode)                             \
1847   declare_c2_type(ReplicateFNode, VectorNode)                             \
1848   declare_c2_type(ReplicateDNode, VectorNode)                             \
1849   declare_c2_type(PackNode, VectorNode)                                   \
1850   declare_c2_type(PackBNode, PackNode)                                    \
1851   declare_c2_type(PackSNode, PackNode)                                    \
1852   declare_c2_type(PackINode, PackNode)                                    \
1853   declare_c2_type(PackLNode, PackNode)                                    \
1854   declare_c2_type(PackFNode, PackNode)                                    \
1855   declare_c2_type(PackDNode, PackNode)                                    \
1856   declare_c2_type(Pack2LNode, PackNode)                                   \
1857   declare_c2_type(Pack2DNode, PackNode)                                   \
1858   declare_c2_type(ExtractNode, Node)                                      \
1859   declare_c2_type(ExtractBNode, ExtractNode)                              \
1860   declare_c2_type(ExtractUBNode, ExtractNode)                             \
1861   declare_c2_type(ExtractCNode, ExtractNode)                              \
1862   declare_c2_type(ExtractSNode, ExtractNode)                              \
1863   declare_c2_type(ExtractINode, ExtractNode)                              \
1864   declare_c2_type(ExtractLNode, ExtractNode)                              \
1865   declare_c2_type(ExtractFNode, ExtractNode)                              \
1866   declare_c2_type(ExtractDNode, ExtractNode)                              \
1867   declare_c2_type(OverflowNode, CmpNode)                                  \
1868   declare_c2_type(OverflowINode, OverflowNode)                            \
1869   declare_c2_type(OverflowAddINode, OverflowINode)                        \
1870   declare_c2_type(OverflowSubINode, OverflowINode)                        \
1871   declare_c2_type(OverflowMulINode, OverflowINode)                        \
1872   declare_c2_type(OverflowLNode, OverflowNode)                            \
1873   declare_c2_type(OverflowAddLNode, OverflowLNode)                        \
1874   declare_c2_type(OverflowSubLNode, OverflowLNode)                        \
1875   declare_c2_type(OverflowMulLNode, OverflowLNode)                        \
1876   declare_c2_type(FmaDNode, Node)                                         \
1877   declare_c2_type(FmaFNode, Node)                                         \
1878                                                                           \
1879   /*********************/                                                 \
1880   /* Adapter Blob Entries */                                              \
1881   /*********************/                                                 \
1882   declare_toplevel_type(AdapterHandlerEntry)                              \
1883   declare_toplevel_type(AdapterHandlerEntry*)                             \
1884                                                                           \
1885   /*********************/                                                 \
1886   /* CI */                                                                \
1887   /*********************/                                                 \
1888   declare_toplevel_type(ciEnv)                                            \
1889   declare_toplevel_type(ciObjectFactory)                                  \
1890   declare_toplevel_type(ciConstant)                                       \
1891   declare_toplevel_type(ciField)                                          \
1892   declare_toplevel_type(ciSymbol)                                         \
1893   declare_toplevel_type(ciBaseObject)                                     \
1894   declare_type(ciObject, ciBaseObject)                                    \
1895   declare_type(ciInstance, ciObject)                                      \
1896   declare_type(ciMetadata, ciBaseObject)                                  \
1897   declare_type(ciMethod, ciMetadata)                                      \
1898   declare_type(ciMethodData, ciMetadata)                                  \
1899   declare_type(ciType, ciMetadata)                                        \
1900   declare_type(ciKlass, ciType)                                           \
1901   declare_type(ciInstanceKlass, ciKlass)                                  \
1902   declare_type(ciArrayKlass, ciKlass)                                     \
1903   declare_type(ciTypeArrayKlass, ciArrayKlass)                            \
1904   declare_type(ciObjArrayKlass, ciArrayKlass)                             \
1905                                                                           \
1906   /********************/                                                  \
1907   /* -XX flags        */                                                  \
1908   /********************/                                                  \
1909                                                                           \
1910   declare_toplevel_type(Flag)                                             \
1911   declare_toplevel_type(Flag*)                                            \
1912                                                                           \
1913   /********************/                                                  \
1914   /* JVMTI            */                                                  \
1915   /********************/                                                  \
1916                                                                           \
1917   declare_toplevel_type(JvmtiExport)                                      \
1918                                                                           \
1919   /********************/                                                  \
1920   /* JDK/VM version   */                                                  \
1921   /********************/                                                  \
1922                                                                           \
1923   declare_toplevel_type(Abstract_VM_Version)                              \
1924   declare_toplevel_type(JDK_Version)                                      \
1925                                                                           \
1926   /*************/                                                         \
1927   /* Arguments */                                                         \
1928   /*************/                                                         \
1929                                                                           \
1930   declare_toplevel_type(Arguments)                                        \
1931                                                                           \
1932   /***********/                                                           \
1933   /* VMError */                                                           \
1934   /***********/                                                           \
1935                                                                           \
1936   declare_toplevel_type(VMError)                                          \
1937                                                                           \
1938   /***************/                                                       \
1939   /* Other types */                                                       \
1940   /***************/                                                       \
1941                                                                           \
1942   /* all enum types */                                                    \
1943                                                                           \
1944    declare_integer_type(Bytecodes::Code)                                  \
1945    declare_integer_type(Generation::Name)                                 \
1946    declare_integer_type(InstanceKlass::ClassState)                        \
1947    declare_integer_type(JavaThreadState)                                  \
1948    declare_integer_type(ThreadState)                                      \
1949    declare_integer_type(Location::Type)                                   \
1950    declare_integer_type(Location::Where)                                  \
1951    declare_integer_type(Flag::Flags)                                      \
1952    COMPILER2_PRESENT(declare_integer_type(OptoReg::Name))                 \
1953                                                                           \
1954    declare_toplevel_type(CHeapObj<mtInternal>)                            \
1955             declare_type(Array<int>, MetaspaceObj)                        \
1956             declare_type(Array<u1>, MetaspaceObj)                         \
1957             declare_type(Array<u2>, MetaspaceObj)                         \
1958             declare_type(Array<Klass*>, MetaspaceObj)                     \
1959             declare_type(Array<Method*>, MetaspaceObj)                    \
1960                                                                           \
1961    declare_toplevel_type(BitMap)                                          \
1962             declare_type(BitMapView, BitMap)                              \
1963                                                                           \
1964    declare_integer_type(AccessFlags)  /* FIXME: wrong type (not integer) */\
1965   declare_toplevel_type(address)      /* FIXME: should this be an integer type? */\
1966    declare_integer_type(BasicType)   /* FIXME: wrong type (not integer) */\
1967   declare_toplevel_type(BreakpointInfo)                                   \
1968   declare_toplevel_type(BreakpointInfo*)                                  \
1969   declare_toplevel_type(CodeBlob*)                                        \
1970   declare_toplevel_type(RuntimeBlob*)                                     \
1971   declare_toplevel_type(CompressedWriteStream*)                           \
1972   declare_toplevel_type(ConstantPoolCacheEntry)                           \
1973   declare_toplevel_type(elapsedTimer)                                     \
1974   declare_toplevel_type(frame)                                            \
1975   declare_toplevel_type(intptr_t*)                                        \
1976    declare_unsigned_integer_type(InvocationCounter) /* FIXME: wrong type (not integer) */ \
1977   declare_toplevel_type(JavaThread*)                                      \
1978   declare_toplevel_type(java_lang_Class)                                  \
1979   declare_integer_type(JavaThread::AsyncRequests)                         \
1980   declare_integer_type(JavaThread::TerminatedTypes)                       \
1981   declare_toplevel_type(jbyte*)                                           \
1982   declare_toplevel_type(jbyte**)                                          \
1983   declare_toplevel_type(jint*)                                            \
1984   declare_toplevel_type(jniIdMapBase*)                                    \
1985   declare_unsigned_integer_type(juint)                                    \
1986   declare_unsigned_integer_type(julong)                                   \
1987   declare_toplevel_type(JNIHandleBlock*)                                  \
1988   declare_toplevel_type(JNIid)                                            \
1989   declare_toplevel_type(JNIid*)                                           \
1990   declare_toplevel_type(jmethodID*)                                       \
1991   declare_toplevel_type(Mutex*)                                           \
1992   declare_toplevel_type(nmethod*)                                         \
1993   COMPILER2_PRESENT(declare_unsigned_integer_type(node_idx_t))            \
1994   declare_toplevel_type(ObjectMonitor*)                                   \
1995   declare_toplevel_type(PaddedObjectMonitor*)                             \
1996   declare_toplevel_type(oop*)                                             \
1997   declare_toplevel_type(OopMap**)                                         \
1998   declare_toplevel_type(OopMapCache*)                                     \
1999   declare_toplevel_type(OopMapSet*)                                       \
2000   declare_toplevel_type(VMReg)                                            \
2001   declare_toplevel_type(OSThread*)                                        \
2002    declare_integer_type(ReferenceType)                                    \
2003   declare_toplevel_type(StubQueue*)                                       \
2004   declare_toplevel_type(Thread*)                                          \
2005   declare_toplevel_type(Universe)                                         \
2006   declare_toplevel_type(os)                                               \
2007   declare_toplevel_type(vframeArray)                                      \
2008   declare_toplevel_type(vframeArrayElement)                               \
2009   declare_toplevel_type(Annotations*)                                     \
2010   declare_type(OopMapValue, StackObj)                                     \
2011   declare_type(FileMapInfo, CHeapObj<mtInternal>)                         \
2012   declare_type(FileMapInfo::FileMapHeaderBase, CHeapObj<mtClass>)         \
2013   declare_type(FileMapInfo::FileMapHeader, FileMapInfo::FileMapHeaderBase)\
2014   declare_toplevel_type(FileMapInfo::FileMapHeader::space_info)           \
2015                                                                           \
2016   /************/                                                          \
2017   /* GC types */                                                          \
2018   /************/                                                          \
2019                                                                           \
2020   VM_TYPES_GC(declare_type,                                               \
2021               declare_toplevel_type,                                      \
2022               declare_integer_type)
2023 
2024 //--------------------------------------------------------------------------------
2025 // VM_INT_CONSTANTS
2026 //
2027 // This table contains integer constants required over in the
2028 // serviceability agent. The "declare_constant" macro is used for all
2029 // enums, etc., while "declare_preprocessor_constant" must be used for
2030 // all #defined constants.
2031 
2032 #define VM_INT_CONSTANTS(declare_constant,                                \
2033                          declare_constant_with_value,                     \
2034                          declare_preprocessor_constant,                   \
2035                          declare_c1_constant,                             \
2036                          declare_c2_constant,                             \
2037                          declare_c2_preprocessor_constant)                \
2038                                                                           \
2039   /****************/                                                      \
2040   /* GC constants */                                                      \
2041   /****************/                                                      \
2042                                                                           \
2043   VM_INT_CONSTANTS_GC(declare_constant,                                   \
2044                       declare_constant_with_value)                        \
2045                                                                           \
2046   /******************/                                                    \
2047   /* Useful globals */                                                    \
2048   /******************/                                                    \
2049                                                                           \
2050   declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0))     \
2051                                                                           \
2052   /**************/                                                        \
2053   /* Stack bias */                                                        \
2054   /**************/                                                        \
2055                                                                           \
2056   declare_preprocessor_constant("STACK_BIAS", STACK_BIAS)                 \
2057                                                                           \
2058   /****************/                                                      \
2059   /* Object sizes */                                                      \
2060   /****************/                                                      \
2061                                                                           \
2062   declare_constant(oopSize)                                               \
2063   declare_constant(LogBytesPerWord)                                       \
2064   declare_constant(BytesPerWord)                                          \
2065   declare_constant(BytesPerLong)                                          \
2066                                                                           \
2067   declare_constant(LogKlassAlignmentInBytes)                              \
2068                                                                           \
2069   declare_constant(HeapWordSize)                                          \
2070   declare_constant(LogHeapWordSize)                                       \
2071                                                                           \
2072                                                                           \
2073   /************************/                                              \
2074   /* PerfMemory - jvmstat */                                              \
2075   /************************/                                              \
2076                                                                           \
2077   declare_preprocessor_constant("PERFDATA_MAJOR_VERSION", PERFDATA_MAJOR_VERSION) \
2078   declare_preprocessor_constant("PERFDATA_MINOR_VERSION", PERFDATA_MINOR_VERSION) \
2079   declare_preprocessor_constant("PERFDATA_BIG_ENDIAN", PERFDATA_BIG_ENDIAN)       \
2080   declare_preprocessor_constant("PERFDATA_LITTLE_ENDIAN", PERFDATA_LITTLE_ENDIAN) \
2081                                                                           \
2082                                                                           \
2083   /************************************************************/          \
2084   /* HotSpot specific JVM_ACC constants from global anon enum */          \
2085   /************************************************************/          \
2086                                                                           \
2087   declare_constant(JVM_ACC_WRITTEN_FLAGS)                                 \
2088   declare_constant(JVM_ACC_MONITOR_MATCH)                                 \
2089   declare_constant(JVM_ACC_HAS_MONITOR_BYTECODES)                         \
2090   declare_constant(JVM_ACC_HAS_LOOPS)                                     \
2091   declare_constant(JVM_ACC_LOOPS_FLAG_INIT)                               \
2092   declare_constant(JVM_ACC_QUEUED)                                        \
2093   declare_constant(JVM_ACC_NOT_C2_OSR_COMPILABLE)                         \
2094   declare_constant(JVM_ACC_HAS_LINE_NUMBER_TABLE)                         \
2095   declare_constant(JVM_ACC_HAS_CHECKED_EXCEPTIONS)                        \
2096   declare_constant(JVM_ACC_HAS_JSRS)                                      \
2097   declare_constant(JVM_ACC_IS_OLD)                                        \
2098   declare_constant(JVM_ACC_IS_OBSOLETE)                                   \
2099   declare_constant(JVM_ACC_IS_PREFIXED_NATIVE)                            \
2100   declare_constant(JVM_ACC_HAS_MIRANDA_METHODS)                           \
2101   declare_constant(JVM_ACC_HAS_VANILLA_CONSTRUCTOR)                       \
2102   declare_constant(JVM_ACC_HAS_FINALIZER)                                 \
2103   declare_constant(JVM_ACC_IS_CLONEABLE_FAST)                             \
2104   declare_constant(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE)                      \
2105   declare_constant(JVM_ACC_PROMOTED_FLAGS)                                \
2106   declare_constant(JVM_ACC_FIELD_ACCESS_WATCHED)                          \
2107   declare_constant(JVM_ACC_FIELD_MODIFICATION_WATCHED)                    \
2108   declare_constant(JVM_ACC_FIELD_INTERNAL)                                \
2109   declare_constant(JVM_ACC_FIELD_STABLE)                                  \
2110   declare_constant(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE)                   \
2111                                                                           \
2112   declare_constant(JVM_CONSTANT_Utf8)                                     \
2113   declare_constant(JVM_CONSTANT_Unicode)                                  \
2114   declare_constant(JVM_CONSTANT_Integer)                                  \
2115   declare_constant(JVM_CONSTANT_Float)                                    \
2116   declare_constant(JVM_CONSTANT_Long)                                     \
2117   declare_constant(JVM_CONSTANT_Double)                                   \
2118   declare_constant(JVM_CONSTANT_Class)                                    \
2119   declare_constant(JVM_CONSTANT_String)                                   \
2120   declare_constant(JVM_CONSTANT_Fieldref)                                 \
2121   declare_constant(JVM_CONSTANT_Methodref)                                \
2122   declare_constant(JVM_CONSTANT_InterfaceMethodref)                       \
2123   declare_constant(JVM_CONSTANT_NameAndType)                              \
2124   declare_constant(JVM_CONSTANT_MethodHandle)                             \
2125   declare_constant(JVM_CONSTANT_MethodType)                               \
2126   declare_constant(JVM_CONSTANT_Dynamic)                                  \
2127   declare_constant(JVM_CONSTANT_InvokeDynamic)                            \
2128   declare_constant(JVM_CONSTANT_ExternalMax)                              \
2129                                                                           \
2130   declare_constant(JVM_CONSTANT_Invalid)                                  \
2131   declare_constant(JVM_CONSTANT_InternalMin)                              \
2132   declare_constant(JVM_CONSTANT_UnresolvedClass)                          \
2133   declare_constant(JVM_CONSTANT_ClassIndex)                               \
2134   declare_constant(JVM_CONSTANT_StringIndex)                              \
2135   declare_constant(JVM_CONSTANT_UnresolvedClassInError)                   \
2136   declare_constant(JVM_CONSTANT_MethodHandleInError)                      \
2137   declare_constant(JVM_CONSTANT_MethodTypeInError)                        \
2138   declare_constant(JVM_CONSTANT_DynamicInError)                           \
2139   declare_constant(JVM_CONSTANT_InternalMax)                              \
2140                                                                           \
2141   /*****************************/                                         \
2142   /* Thread::SuspendFlags enum */                                         \
2143   /*****************************/                                         \
2144                                                                           \
2145   declare_constant(Thread::_external_suspend)                             \
2146   declare_constant(Thread::_ext_suspended)                                \
2147   declare_constant(Thread::_has_async_exception)                          \
2148                                                                           \
2149   /*******************/                                                   \
2150   /* JavaThreadState */                                                   \
2151   /*******************/                                                   \
2152                                                                           \
2153   declare_constant(_thread_uninitialized)                                 \
2154   declare_constant(_thread_new)                                           \
2155   declare_constant(_thread_new_trans)                                     \
2156   declare_constant(_thread_in_native)                                     \
2157   declare_constant(_thread_in_native_trans)                               \
2158   declare_constant(_thread_in_vm)                                         \
2159   declare_constant(_thread_in_vm_trans)                                   \
2160   declare_constant(_thread_in_Java)                                       \
2161   declare_constant(_thread_in_Java_trans)                                 \
2162   declare_constant(_thread_blocked)                                       \
2163   declare_constant(_thread_blocked_trans)                                 \
2164   declare_constant(JavaThread::_not_terminated)                           \
2165   declare_constant(JavaThread::_thread_exiting)                           \
2166                                                                           \
2167   /*******************/                                                   \
2168   /* JavaThreadState */                                                   \
2169   /*******************/                                                   \
2170                                                                           \
2171   declare_constant(ALLOCATED)                                             \
2172   declare_constant(INITIALIZED)                                           \
2173   declare_constant(RUNNABLE)                                              \
2174   declare_constant(MONITOR_WAIT)                                          \
2175   declare_constant(CONDVAR_WAIT)                                          \
2176   declare_constant(OBJECT_WAIT)                                           \
2177   declare_constant(BREAKPOINTED)                                          \
2178   declare_constant(SLEEPING)                                              \
2179   declare_constant(ZOMBIE)                                                \
2180                                                                           \
2181   /******************************/                                        \
2182   /* Klass misc. enum constants */                                        \
2183   /******************************/                                        \
2184                                                                           \
2185   declare_constant(Klass::_primary_super_limit)                           \
2186   declare_constant(Klass::_lh_neutral_value)                              \
2187   declare_constant(Klass::_lh_instance_slow_path_bit)                     \
2188   declare_constant(Klass::_lh_log2_element_size_shift)                    \
2189   declare_constant(Klass::_lh_log2_element_size_mask)                     \
2190   declare_constant(Klass::_lh_element_type_shift)                         \
2191   declare_constant(Klass::_lh_element_type_mask)                          \
2192   declare_constant(Klass::_lh_header_size_shift)                          \
2193   declare_constant(Klass::_lh_header_size_mask)                           \
2194   declare_constant(Klass::_lh_array_tag_shift)                            \
2195   declare_constant(Klass::_lh_array_tag_type_value)                       \
2196   declare_constant(Klass::_lh_array_tag_obj_value)                        \
2197                                                                           \
2198   /********************************/                                      \
2199   /* ConstMethod anon-enum */                                             \
2200   /********************************/                                      \
2201                                                                           \
2202   declare_constant(Method::_caller_sensitive)                             \
2203   declare_constant(Method::_force_inline)                                 \
2204   declare_constant(Method::_dont_inline)                                  \
2205   declare_constant(Method::_hidden)                                       \
2206                                                                           \
2207   declare_constant(Method::nonvirtual_vtable_index)                       \
2208                                                                           \
2209   declare_constant(Method::extra_stack_entries_for_jsr292)                \
2210                                                                           \
2211   declare_constant(ConstMethod::_has_linenumber_table)                    \
2212   declare_constant(ConstMethod::_has_checked_exceptions)                  \
2213   declare_constant(ConstMethod::_has_localvariable_table)                 \
2214   declare_constant(ConstMethod::_has_exception_table)                     \
2215   declare_constant(ConstMethod::_has_generic_signature)                   \
2216   declare_constant(ConstMethod::_has_method_parameters)                   \
2217   declare_constant(ConstMethod::_has_method_annotations)                  \
2218   declare_constant(ConstMethod::_has_parameter_annotations)               \
2219   declare_constant(ConstMethod::_has_default_annotations)                 \
2220   declare_constant(ConstMethod::_has_type_annotations)                    \
2221                                                                           \
2222   /**************/                                                        \
2223   /* DataLayout */                                                        \
2224   /**************/                                                        \
2225                                                                           \
2226   declare_constant(DataLayout::cell_size)                                 \
2227   declare_constant(DataLayout::no_tag)                                    \
2228   declare_constant(DataLayout::bit_data_tag)                              \
2229   declare_constant(DataLayout::counter_data_tag)                          \
2230   declare_constant(DataLayout::jump_data_tag)                             \
2231   declare_constant(DataLayout::receiver_type_data_tag)                    \
2232   declare_constant(DataLayout::virtual_call_data_tag)                     \
2233   declare_constant(DataLayout::ret_data_tag)                              \
2234   declare_constant(DataLayout::branch_data_tag)                           \
2235   declare_constant(DataLayout::multi_branch_data_tag)                     \
2236   declare_constant(DataLayout::arg_info_data_tag)                         \
2237   declare_constant(DataLayout::call_type_data_tag)                        \
2238   declare_constant(DataLayout::virtual_call_type_data_tag)                \
2239   declare_constant(DataLayout::parameters_type_data_tag)                  \
2240   declare_constant(DataLayout::speculative_trap_data_tag)                 \
2241                                                                           \
2242   /*************************************/                                 \
2243   /* InstanceKlass enum                */                                 \
2244   /*************************************/                                 \
2245                                                                           \
2246                                                                           \
2247   /*************************************/                                 \
2248   /* FieldInfo FieldOffset enum        */                                 \
2249   /*************************************/                                 \
2250                                                                           \
2251   declare_constant(FieldInfo::access_flags_offset)                        \
2252   declare_constant(FieldInfo::name_index_offset)                          \
2253   declare_constant(FieldInfo::signature_index_offset)                     \
2254   declare_constant(FieldInfo::initval_index_offset)                       \
2255   declare_constant(FieldInfo::low_packed_offset)                          \
2256   declare_constant(FieldInfo::high_packed_offset)                         \
2257   declare_constant(FieldInfo::field_slots)                                \
2258                                                                           \
2259   /*************************************/                                 \
2260   /* FieldInfo tag constants           */                                 \
2261   /*************************************/                                 \
2262                                                                           \
2263   declare_preprocessor_constant("FIELDINFO_TAG_SIZE", FIELDINFO_TAG_SIZE) \
2264   declare_preprocessor_constant("FIELDINFO_TAG_MASK", FIELDINFO_TAG_MASK) \
2265   declare_preprocessor_constant("FIELDINFO_TAG_OFFSET", FIELDINFO_TAG_OFFSET) \
2266                                                                           \
2267   /************************************************/                      \
2268   /* InstanceKlass InnerClassAttributeOffset enum */                      \
2269   /************************************************/                      \
2270                                                                           \
2271   declare_constant(InstanceKlass::inner_class_inner_class_info_offset)    \
2272   declare_constant(InstanceKlass::inner_class_outer_class_info_offset)    \
2273   declare_constant(InstanceKlass::inner_class_inner_name_offset)          \
2274   declare_constant(InstanceKlass::inner_class_access_flags_offset)        \
2275   declare_constant(InstanceKlass::inner_class_next_offset)                \
2276                                                                           \
2277   /*****************************************************/                 \
2278   /* InstanceKlass EnclosingMethodAttributeOffset enum */                 \
2279   /*****************************************************/                 \
2280                                                                           \
2281   declare_constant(InstanceKlass::enclosing_method_attribute_size)        \
2282                                                                           \
2283   /*********************************/                                     \
2284   /* InstanceKlass ClassState enum */                                     \
2285   /*********************************/                                     \
2286                                                                           \
2287   declare_constant(InstanceKlass::allocated)                              \
2288   declare_constant(InstanceKlass::loaded)                                 \
2289   declare_constant(InstanceKlass::linked)                                 \
2290   declare_constant(InstanceKlass::being_initialized)                      \
2291   declare_constant(InstanceKlass::fully_initialized)                      \
2292   declare_constant(InstanceKlass::initialization_error)                   \
2293                                                                           \
2294   /***************************************/                               \
2295   /* InstanceKlass enums for _misc_flags */                               \
2296   /***************************************/                               \
2297                                                                           \
2298   declare_constant(InstanceKlass::_misc_rewritten)                        \
2299   declare_constant(InstanceKlass::_misc_has_nonstatic_fields)             \
2300   declare_constant(InstanceKlass::_misc_should_verify_class)              \
2301   declare_constant(InstanceKlass::_misc_is_anonymous)                     \
2302   declare_constant(InstanceKlass::_misc_is_contended)                     \
2303   declare_constant(InstanceKlass::_misc_has_nonstatic_concrete_methods)   \
2304   declare_constant(InstanceKlass::_misc_declares_nonstatic_concrete_methods)\
2305   declare_constant(InstanceKlass::_misc_has_been_redefined)               \
2306   declare_constant(InstanceKlass::_misc_has_passed_fingerprint_check)     \
2307   declare_constant(InstanceKlass::_misc_is_scratch_class)                 \
2308   declare_constant(InstanceKlass::_misc_is_shared_boot_class)             \
2309   declare_constant(InstanceKlass::_misc_is_shared_platform_class)         \
2310   declare_constant(InstanceKlass::_misc_is_shared_app_class)              \
2311                                                                           \
2312   /*********************************/                                     \
2313   /* Symbol* - symbol max length */                                       \
2314   /*********************************/                                     \
2315                                                                           \
2316   declare_constant(Symbol::max_symbol_length)                             \
2317                                                                           \
2318   /***********************************************/                       \
2319   /* ConstantPool* layout enum for InvokeDynamic */                       \
2320   /***********************************************/                       \
2321                                                                           \
2322   declare_constant(ConstantPool::_indy_bsm_offset)                        \
2323   declare_constant(ConstantPool::_indy_argc_offset)                       \
2324   declare_constant(ConstantPool::_indy_argv_offset)                       \
2325   declare_constant(ConstantPool::CPCACHE_INDEX_TAG)                       \
2326                                                                           \
2327   /********************************/                                      \
2328   /* ConstantPoolCacheEntry enums */                                      \
2329   /********************************/                                      \
2330                                                                           \
2331   declare_constant(ConstantPoolCacheEntry::is_volatile_shift)             \
2332   declare_constant(ConstantPoolCacheEntry::is_final_shift)                \
2333   declare_constant(ConstantPoolCacheEntry::is_forced_virtual_shift)       \
2334   declare_constant(ConstantPoolCacheEntry::is_vfinal_shift)               \
2335   declare_constant(ConstantPoolCacheEntry::is_field_entry_shift)          \
2336   declare_constant(ConstantPoolCacheEntry::tos_state_shift)               \
2337                                                                           \
2338   /***************************************/                               \
2339   /* java_lang_Thread::ThreadStatus enum */                               \
2340   /***************************************/                               \
2341                                                                           \
2342   declare_constant(java_lang_Thread::NEW)                                 \
2343   declare_constant(java_lang_Thread::RUNNABLE)                            \
2344   declare_constant(java_lang_Thread::SLEEPING)                            \
2345   declare_constant(java_lang_Thread::IN_OBJECT_WAIT)                      \
2346   declare_constant(java_lang_Thread::IN_OBJECT_WAIT_TIMED)                \
2347   declare_constant(java_lang_Thread::PARKED)                              \
2348   declare_constant(java_lang_Thread::PARKED_TIMED)                        \
2349   declare_constant(java_lang_Thread::BLOCKED_ON_MONITOR_ENTER)            \
2350   declare_constant(java_lang_Thread::TERMINATED)                          \
2351                                                                           \
2352   /******************************/                                        \
2353   /* Debug info                 */                                        \
2354   /******************************/                                        \
2355                                                                           \
2356   declare_constant(Location::OFFSET_MASK)                                 \
2357   declare_constant(Location::OFFSET_SHIFT)                                \
2358   declare_constant(Location::TYPE_MASK)                                   \
2359   declare_constant(Location::TYPE_SHIFT)                                  \
2360   declare_constant(Location::WHERE_MASK)                                  \
2361   declare_constant(Location::WHERE_SHIFT)                                 \
2362                                                                           \
2363   /* constants from Location::Type enum  */                               \
2364                                                                           \
2365   declare_constant(Location::normal)                                      \
2366   declare_constant(Location::oop)                                         \
2367   declare_constant(Location::narrowoop)                                   \
2368   declare_constant(Location::int_in_long)                                 \
2369   declare_constant(Location::lng)                                         \
2370   declare_constant(Location::float_in_dbl)                                \
2371   declare_constant(Location::dbl)                                         \
2372   declare_constant(Location::addr)                                        \
2373   declare_constant(Location::invalid)                                     \
2374                                                                           \
2375   /* constants from Location::Where enum */                               \
2376                                                                           \
2377   declare_constant(Location::on_stack)                                    \
2378   declare_constant(Location::in_register)                                 \
2379                                                                           \
2380   declare_constant(Deoptimization::Reason_many)                           \
2381   declare_constant(Deoptimization::Reason_none)                           \
2382   declare_constant(Deoptimization::Reason_null_check)                     \
2383   declare_constant(Deoptimization::Reason_null_assert)                    \
2384   declare_constant(Deoptimization::Reason_range_check)                    \
2385   declare_constant(Deoptimization::Reason_class_check)                    \
2386   declare_constant(Deoptimization::Reason_array_check)                    \
2387   declare_constant(Deoptimization::Reason_intrinsic)                      \
2388   declare_constant(Deoptimization::Reason_bimorphic)                      \
2389   declare_constant(Deoptimization::Reason_unloaded)                       \
2390   declare_constant(Deoptimization::Reason_uninitialized)                  \
2391   declare_constant(Deoptimization::Reason_unreached)                      \
2392   declare_constant(Deoptimization::Reason_unhandled)                      \
2393   declare_constant(Deoptimization::Reason_constraint)                     \
2394   declare_constant(Deoptimization::Reason_div0_check)                     \
2395   declare_constant(Deoptimization::Reason_age)                            \
2396   declare_constant(Deoptimization::Reason_predicate)                      \
2397   declare_constant(Deoptimization::Reason_loop_limit_check)               \
2398   declare_constant(Deoptimization::Reason_speculate_class_check)          \
2399   declare_constant(Deoptimization::Reason_speculate_null_check)           \
2400   declare_constant(Deoptimization::Reason_speculate_null_assert)          \
2401   declare_constant(Deoptimization::Reason_rtm_state_change)               \
2402   declare_constant(Deoptimization::Reason_unstable_if)                    \
2403   declare_constant(Deoptimization::Reason_unstable_fused_if)              \
2404   NOT_ZERO(JVMCI_ONLY(declare_constant(Deoptimization::Reason_aliasing)))                       \
2405   NOT_ZERO(JVMCI_ONLY(declare_constant(Deoptimization::Reason_transfer_to_interpreter)))        \
2406   NOT_ZERO(JVMCI_ONLY(declare_constant(Deoptimization::Reason_not_compiled_exception_handler))) \
2407   NOT_ZERO(JVMCI_ONLY(declare_constant(Deoptimization::Reason_unresolved)))                     \
2408   NOT_ZERO(JVMCI_ONLY(declare_constant(Deoptimization::Reason_jsr_mismatch)))                   \
2409   declare_constant(Deoptimization::Reason_tenured)                        \
2410   declare_constant(Deoptimization::Reason_LIMIT)                          \
2411   declare_constant(Deoptimization::Reason_RECORDED_LIMIT)                 \
2412                                                                           \
2413   declare_constant(Deoptimization::Action_none)                           \
2414   declare_constant(Deoptimization::Action_maybe_recompile)                \
2415   declare_constant(Deoptimization::Action_reinterpret)                    \
2416   declare_constant(Deoptimization::Action_make_not_entrant)               \
2417   declare_constant(Deoptimization::Action_make_not_compilable)            \
2418   declare_constant(Deoptimization::Action_LIMIT)                          \
2419                                                                           \
2420   /***************************************************/                   \
2421   /* DEFAULT_CACHE_LINE_SIZE (globalDefinitions.hpp) */                   \
2422   /***************************************************/                   \
2423                                                                           \
2424   declare_preprocessor_constant("DEFAULT_CACHE_LINE_SIZE", DEFAULT_CACHE_LINE_SIZE) \
2425                                                                           \
2426   declare_constant(Deoptimization::Unpack_deopt)                          \
2427   declare_constant(Deoptimization::Unpack_exception)                      \
2428   declare_constant(Deoptimization::Unpack_uncommon_trap)                  \
2429   declare_constant(Deoptimization::Unpack_reexecute)                      \
2430                                                                           \
2431   declare_constant(Deoptimization::_action_bits)                          \
2432   declare_constant(Deoptimization::_reason_bits)                          \
2433   declare_constant(Deoptimization::_debug_id_bits)                        \
2434   declare_constant(Deoptimization::_action_shift)                         \
2435   declare_constant(Deoptimization::_reason_shift)                         \
2436   declare_constant(Deoptimization::_debug_id_shift)                       \
2437                                                                           \
2438   /******************************************/                            \
2439   /* BasicType enum (globalDefinitions.hpp) */                            \
2440   /******************************************/                            \
2441                                                                           \
2442   declare_constant(T_BOOLEAN)                                             \
2443   declare_constant(T_CHAR)                                                \
2444   declare_constant(T_FLOAT)                                               \
2445   declare_constant(T_DOUBLE)                                              \
2446   declare_constant(T_BYTE)                                                \
2447   declare_constant(T_SHORT)                                               \
2448   declare_constant(T_INT)                                                 \
2449   declare_constant(T_LONG)                                                \
2450   declare_constant(T_OBJECT)                                              \
2451   declare_constant(T_ARRAY)                                               \
2452   declare_constant(T_VOID)                                                \
2453   declare_constant(T_ADDRESS)                                             \
2454   declare_constant(T_NARROWOOP)                                           \
2455   declare_constant(T_METADATA)                                            \
2456   declare_constant(T_NARROWKLASS)                                         \
2457   declare_constant(T_CONFLICT)                                            \
2458   declare_constant(T_ILLEGAL)                                             \
2459                                                                           \
2460   /**********************************************/                        \
2461   /* BasicTypeSize enum (globalDefinitions.hpp) */                        \
2462   /**********************************************/                        \
2463                                                                           \
2464   declare_constant(T_BOOLEAN_size)                                        \
2465   declare_constant(T_CHAR_size)                                           \
2466   declare_constant(T_FLOAT_size)                                          \
2467   declare_constant(T_DOUBLE_size)                                         \
2468   declare_constant(T_BYTE_size)                                           \
2469   declare_constant(T_SHORT_size)                                          \
2470   declare_constant(T_INT_size)                                            \
2471   declare_constant(T_LONG_size)                                           \
2472   declare_constant(T_OBJECT_size)                                         \
2473   declare_constant(T_ARRAY_size)                                          \
2474   declare_constant(T_NARROWOOP_size)                                      \
2475   declare_constant(T_NARROWKLASS_size)                                    \
2476   declare_constant(T_VOID_size)                                           \
2477                                                                           \
2478   /*********************/                                                 \
2479   /* Matcher (C2 only) */                                                 \
2480   /*********************/                                                 \
2481                                                                           \
2482   declare_c2_preprocessor_constant("Matcher::interpreter_frame_pointer_reg", Matcher::interpreter_frame_pointer_reg()) \
2483                                                                           \
2484   /*********************************************/                         \
2485   /* MethodCompilation (globalDefinitions.hpp) */                         \
2486   /*********************************************/                         \
2487                                                                           \
2488   declare_constant(InvocationEntryBci)                                    \
2489                                                                           \
2490   /*************/                                                         \
2491   /* CompLevel */                                                         \
2492   /*************/                                                         \
2493                                                                           \
2494   declare_constant(CompLevel_any)                                         \
2495   declare_constant(CompLevel_all)                                         \
2496   declare_constant(CompLevel_none)                                        \
2497   declare_constant(CompLevel_simple)                                      \
2498   declare_constant(CompLevel_limited_profile)                             \
2499   declare_constant(CompLevel_full_profile)                                \
2500   declare_constant(CompLevel_full_optimization)                           \
2501   declare_constant(CompLevel_aot)                                         \
2502                                                                           \
2503   /***************/                                                       \
2504   /* OopMapValue */                                                       \
2505   /***************/                                                       \
2506                                                                           \
2507   declare_constant(OopMapValue::type_bits)                                \
2508   declare_constant(OopMapValue::register_bits)                            \
2509   declare_constant(OopMapValue::type_shift)                               \
2510   declare_constant(OopMapValue::register_shift)                           \
2511   declare_constant(OopMapValue::type_mask)                                \
2512   declare_constant(OopMapValue::type_mask_in_place)                       \
2513   declare_constant(OopMapValue::register_mask)                            \
2514   declare_constant(OopMapValue::register_mask_in_place)                   \
2515   declare_constant(OopMapValue::unused_value)                             \
2516   declare_constant(OopMapValue::oop_value)                                \
2517   declare_constant(OopMapValue::narrowoop_value)                          \
2518   declare_constant(OopMapValue::callee_saved_value)                       \
2519   declare_constant(OopMapValue::derived_oop_value)                        \
2520                                                                           \
2521   /******************/                                                    \
2522   /* JNIHandleBlock */                                                    \
2523   /******************/                                                    \
2524                                                                           \
2525   declare_constant(JNIHandleBlock::block_size_in_oops)                    \
2526                                                                           \
2527   /**********************/                                                \
2528   /* ObjectSynchronizer */                                                \
2529   /**********************/                                                \
2530                                                                           \
2531   declare_constant(ObjectSynchronizer::_BLOCKSIZE)                        \
2532                                                                           \
2533   /**********************/                                                \
2534   /* PcDesc             */                                                \
2535   /**********************/                                                \
2536                                                                           \
2537   declare_constant(PcDesc::PCDESC_reexecute)                              \
2538   declare_constant(PcDesc::PCDESC_is_method_handle_invoke)                \
2539   declare_constant(PcDesc::PCDESC_return_oop)                             \
2540                                                                           \
2541   /**********************/                                                \
2542   /* frame              */                                                \
2543   /**********************/                                                \
2544   NOT_ZERO(PPC64_ONLY(declare_constant(frame::entry_frame_locals_size)))  \
2545                                                                           \
2546   NOT_ZERO(X86_ONLY(declare_constant(frame::entry_frame_call_wrapper_offset)))      \
2547   declare_constant(frame::pc_return_offset)                               \
2548                                                                           \
2549   /*************/                                                         \
2550   /* vmSymbols */                                                         \
2551   /*************/                                                         \
2552                                                                           \
2553   declare_constant(vmSymbols::FIRST_SID)                                  \
2554   declare_constant(vmSymbols::SID_LIMIT)                                  \
2555                                                                           \
2556   /****************/                                                      \
2557   /* vmIntrinsics */                                                      \
2558   /****************/                                                      \
2559                                                                           \
2560   declare_constant(vmIntrinsics::_invokeBasic)                            \
2561   declare_constant(vmIntrinsics::_linkToVirtual)                          \
2562   declare_constant(vmIntrinsics::_linkToStatic)                           \
2563   declare_constant(vmIntrinsics::_linkToSpecial)                          \
2564   declare_constant(vmIntrinsics::_linkToInterface)                        \
2565                                                                           \
2566   /********************************/                                      \
2567   /* Calling convention constants */                                      \
2568   /********************************/                                      \
2569                                                                           \
2570   declare_constant(RegisterImpl::number_of_registers)                     \
2571   declare_constant(ConcreteRegisterImpl::number_of_registers)             \
2572   declare_preprocessor_constant("REG_COUNT", REG_COUNT)                \
2573   declare_c2_preprocessor_constant("SAVED_ON_ENTRY_REG_COUNT", SAVED_ON_ENTRY_REG_COUNT) \
2574   declare_c2_preprocessor_constant("C_SAVED_ON_ENTRY_REG_COUNT", C_SAVED_ON_ENTRY_REG_COUNT) \
2575                                                                           \
2576   /************/                                                          \
2577   /* PerfData */                                                          \
2578   /************/                                                          \
2579                                                                           \
2580   /***********************/                                               \
2581   /* PerfData Units enum */                                               \
2582   /***********************/                                               \
2583                                                                           \
2584   declare_constant(PerfData::U_None)                                      \
2585   declare_constant(PerfData::U_Bytes)                                     \
2586   declare_constant(PerfData::U_Ticks)                                     \
2587   declare_constant(PerfData::U_Events)                                    \
2588   declare_constant(PerfData::U_String)                                    \
2589   declare_constant(PerfData::U_Hertz)                                     \
2590                                                                           \
2591   /****************/                                                      \
2592   /* JVMCI */                                                             \
2593   /****************/                                                      \
2594                                                                           \
2595   declare_preprocessor_constant("INCLUDE_JVMCI", INCLUDE_JVMCI)           \
2596                                                                           \
2597   /****************/                                                      \
2598   /*  VMRegImpl   */                                                      \
2599   /****************/                                                      \
2600   declare_constant(VMRegImpl::stack_slot_size)
2601 
2602 //--------------------------------------------------------------------------------
2603 // VM_LONG_CONSTANTS
2604 //
2605 // This table contains long constants required over in the
2606 // serviceability agent. The "declare_constant" macro is used for all
2607 // enums, etc., while "declare_preprocessor_constant" must be used for
2608 // all #defined constants.
2609 
2610 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \
2611                                                                           \
2612   /*********************/                                                 \
2613   /* MarkOop constants */                                                 \
2614   /*********************/                                                 \
2615                                                                           \
2616   /* Note: some of these are declared as long constants just for */       \
2617   /* consistency. The mask constants are the only ones requiring */       \
2618   /* 64 bits (on 64-bit platforms). */                                    \
2619                                                                           \
2620   declare_constant(markOopDesc::age_bits)                                 \
2621   declare_constant(markOopDesc::lock_bits)                                \
2622   declare_constant(markOopDesc::biased_lock_bits)                         \
2623   declare_constant(markOopDesc::max_hash_bits)                            \
2624   declare_constant(markOopDesc::hash_bits)                                \
2625                                                                           \
2626   declare_constant(markOopDesc::lock_shift)                               \
2627   declare_constant(markOopDesc::biased_lock_shift)                        \
2628   declare_constant(markOopDesc::age_shift)                                \
2629   declare_constant(markOopDesc::hash_shift)                               \
2630                                                                           \
2631   declare_constant(markOopDesc::lock_mask)                                \
2632   declare_constant(markOopDesc::lock_mask_in_place)                       \
2633   declare_constant(markOopDesc::biased_lock_mask)                         \
2634   declare_constant(markOopDesc::biased_lock_mask_in_place)                \
2635   declare_constant(markOopDesc::biased_lock_bit_in_place)                 \
2636   declare_constant(markOopDesc::age_mask)                                 \
2637   declare_constant(markOopDesc::age_mask_in_place)                        \
2638   declare_constant(markOopDesc::epoch_mask)                               \
2639   declare_constant(markOopDesc::epoch_mask_in_place)                      \
2640   declare_constant(markOopDesc::hash_mask)                                \
2641   declare_constant(markOopDesc::hash_mask_in_place)                       \
2642   declare_constant(markOopDesc::biased_lock_alignment)                    \
2643                                                                           \
2644   declare_constant(markOopDesc::locked_value)                             \
2645   declare_constant(markOopDesc::unlocked_value)                           \
2646   declare_constant(markOopDesc::monitor_value)                            \
2647   declare_constant(markOopDesc::marked_value)                             \
2648   declare_constant(markOopDesc::biased_lock_pattern)                      \
2649                                                                           \
2650   declare_constant(markOopDesc::no_hash)                                  \
2651   declare_constant(markOopDesc::no_hash_in_place)                         \
2652   declare_constant(markOopDesc::no_lock_in_place)                         \
2653   declare_constant(markOopDesc::max_age)                                  \
2654                                                                           \
2655   /* Constants in markOop used by CMS. */                                 \
2656   declare_constant(markOopDesc::cms_shift)                                \
2657   declare_constant(markOopDesc::cms_mask)                                 \
2658   declare_constant(markOopDesc::size_shift)                               \
2659                                                                           \
2660   /* InvocationCounter constants */                                       \
2661   declare_constant(InvocationCounter::count_increment)                    \
2662   declare_constant(InvocationCounter::count_shift)
2663 
2664 
2665 //--------------------------------------------------------------------------------
2666 //
2667 
2668 // Generate and check a nonstatic field in non-product builds
2669 #ifndef PRODUCT
2670 # define GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2671 # define CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)    CHECK_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2672 # define ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT(a, b, c)          ENSURE_FIELD_TYPE_PRESENT(a, b, c)
2673 # define GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2674 # define CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)    CHECK_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2675 # define ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT(a, b, c)          ENSURE_FIELD_TYPE_PRESENT(a, b, c)
2676 #else
2677 # define GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2678 # define CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2679 # define ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT(a, b, c)
2680 # define GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2681 # define CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2682 # define ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT(a, b, c)
2683 #endif /* PRODUCT */
2684 
2685 // Generate and check a nonstatic field in C1 builds
2686 #ifdef COMPILER1
2687 # define GENERATE_C1_NONSTATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2688 # define CHECK_C1_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)    CHECK_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2689 # define ENSURE_C1_FIELD_TYPE_PRESENT(a, b, c)          ENSURE_FIELD_TYPE_PRESENT(a, b, c)
2690 #else
2691 # define GENERATE_C1_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2692 # define CHECK_C1_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2693 # define ENSURE_C1_FIELD_TYPE_PRESENT(a, b, c)
2694 #endif /* COMPILER1 */
2695 // Generate and check a nonstatic field in C2 builds
2696 #ifdef COMPILER2
2697 # define GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2698 # define CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)    CHECK_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2699 # define ENSURE_C2_FIELD_TYPE_PRESENT(a, b, c)          ENSURE_FIELD_TYPE_PRESENT(a, b, c)
2700 #else
2701 # define GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2702 # define CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY(a, b, c)
2703 # define ENSURE_C2_FIELD_TYPE_PRESENT(a, b, c)
2704 #endif /* COMPILER2 */
2705 
2706 // Generate but do not check a static field in C1 builds
2707 #ifdef COMPILER1
2708 # define GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c)
2709 #else
2710 # define GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c)
2711 #endif /* COMPILER1 */
2712 
2713 // Generate but do not check a static field in C2 builds
2714 #ifdef COMPILER2
2715 # define GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c) GENERATE_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c)
2716 #else
2717 # define GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY(a, b, c)
2718 #endif /* COMPILER2 */
2719 
2720 //--------------------------------------------------------------------------------
2721 // VMTypeEntry build-specific macros
2722 //
2723 
2724 #ifdef COMPILER1
2725 # define GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY(a)               GENERATE_TOPLEVEL_VM_TYPE_ENTRY(a)
2726 # define CHECK_C1_TOPLEVEL_VM_TYPE_ENTRY(a)
2727 #else
2728 # define GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY(a)
2729 # define CHECK_C1_TOPLEVEL_VM_TYPE_ENTRY(a)
2730 #endif /* COMPILER1 */
2731 
2732 #ifdef COMPILER2
2733 # define GENERATE_C2_VM_TYPE_ENTRY(a, b)                     GENERATE_VM_TYPE_ENTRY(a, b)
2734 # define CHECK_C2_VM_TYPE_ENTRY(a, b)                        CHECK_VM_TYPE_ENTRY(a, b)
2735 # define GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY(a)               GENERATE_TOPLEVEL_VM_TYPE_ENTRY(a)
2736 # define CHECK_C2_TOPLEVEL_VM_TYPE_ENTRY(a)
2737 #else
2738 # define GENERATE_C2_VM_TYPE_ENTRY(a, b)
2739 # define CHECK_C2_VM_TYPE_ENTRY(a, b)
2740 # define GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY(a)
2741 # define CHECK_C2_TOPLEVEL_VM_TYPE_ENTRY(a)
2742 #endif /* COMPILER2 */
2743 
2744 
2745 //--------------------------------------------------------------------------------
2746 // VMIntConstantEntry build-specific macros
2747 //
2748 
2749 // Generate an int constant for a C1 build
2750 #ifdef COMPILER1
2751 # define GENERATE_C1_VM_INT_CONSTANT_ENTRY(name)  GENERATE_VM_INT_CONSTANT_ENTRY(name)
2752 #else
2753 # define GENERATE_C1_VM_INT_CONSTANT_ENTRY(name)
2754 #endif /* COMPILER1 */
2755 
2756 // Generate an int constant for a C2 build
2757 #ifdef COMPILER2
2758 # define GENERATE_C2_VM_INT_CONSTANT_ENTRY(name)                      GENERATE_VM_INT_CONSTANT_ENTRY(name)
2759 # define GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY(name, value)  GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY(name, value)
2760 #else
2761 # define GENERATE_C2_VM_INT_CONSTANT_ENTRY(name)
2762 # define GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY(name, value)
2763 #endif /* COMPILER1 */
2764 
2765 
2766 //--------------------------------------------------------------------------------
2767 // VMLongConstantEntry build-specific macros
2768 //
2769 
2770 // Generate a long constant for a C1 build
2771 #ifdef COMPILER1
2772 # define GENERATE_C1_VM_LONG_CONSTANT_ENTRY(name)  GENERATE_VM_LONG_CONSTANT_ENTRY(name)
2773 #else
2774 # define GENERATE_C1_VM_LONG_CONSTANT_ENTRY(name)
2775 #endif /* COMPILER1 */
2776 
2777 // Generate a long constant for a C2 build
2778 #ifdef COMPILER2
2779 # define GENERATE_C2_VM_LONG_CONSTANT_ENTRY(name)                     GENERATE_VM_LONG_CONSTANT_ENTRY(name)
2780 # define GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY(name, value) GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY(name, value)
2781 #else
2782 # define GENERATE_C2_VM_LONG_CONSTANT_ENTRY(name)
2783 # define GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY(name, value)
2784 #endif /* COMPILER1 */
2785 
2786 
2787 //
2788 // Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries
2789 //
2790 
2791 // These initializers are allowed to access private fields in classes
2792 // as long as class VMStructs is a friend
2793 VMStructEntry VMStructs::localHotSpotVMStructs[] = {
2794 
2795   VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2796              GENERATE_STATIC_VM_STRUCT_ENTRY,
2797              GENERATE_STATIC_PTR_VOLATILE_VM_STRUCT_ENTRY,
2798              GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
2799              GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2800              GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2801              GENERATE_C1_NONSTATIC_VM_STRUCT_ENTRY,
2802              GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
2803              GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
2804              GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
2805 
2806 #if INCLUDE_TRACE
2807   VM_STRUCTS_TRACE(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2808                    GENERATE_STATIC_VM_STRUCT_ENTRY)
2809 #endif
2810 
2811   VM_STRUCTS_OS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2812                 GENERATE_STATIC_VM_STRUCT_ENTRY,
2813                 GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
2814                 GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2815                 GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2816                 GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
2817                 GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
2818                 GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
2819 
2820   VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2821                  GENERATE_STATIC_VM_STRUCT_ENTRY,
2822                  GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
2823                  GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2824                  GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2825                  GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
2826                  GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
2827                  GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
2828 
2829   VM_STRUCTS_OS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2830                     GENERATE_STATIC_VM_STRUCT_ENTRY,
2831                     GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY,
2832                     GENERATE_NONSTATIC_VM_STRUCT_ENTRY,
2833                     GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2834                     GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY,
2835                     GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY,
2836                     GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY)
2837 
2838   GENERATE_VM_STRUCT_LAST_ENTRY()
2839 };
2840 
2841 size_t VMStructs::localHotSpotVMStructsLength() {
2842   return sizeof(localHotSpotVMStructs) / sizeof(VMStructEntry);
2843 }
2844 
2845 VMTypeEntry VMStructs::localHotSpotVMTypes[] = {
2846 
2847   VM_TYPES(GENERATE_VM_TYPE_ENTRY,
2848            GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
2849            GENERATE_OOP_VM_TYPE_ENTRY,
2850            GENERATE_INTEGER_VM_TYPE_ENTRY,
2851            GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
2852            GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
2853            GENERATE_C2_VM_TYPE_ENTRY,
2854            GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
2855 
2856 #if INCLUDE_TRACE
2857   VM_TYPES_TRACE(GENERATE_VM_TYPE_ENTRY,
2858               GENERATE_TOPLEVEL_VM_TYPE_ENTRY)
2859 #endif
2860 
2861   VM_TYPES_OS(GENERATE_VM_TYPE_ENTRY,
2862               GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
2863               GENERATE_OOP_VM_TYPE_ENTRY,
2864               GENERATE_INTEGER_VM_TYPE_ENTRY,
2865               GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
2866               GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
2867               GENERATE_C2_VM_TYPE_ENTRY,
2868               GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
2869 
2870   VM_TYPES_CPU(GENERATE_VM_TYPE_ENTRY,
2871                GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
2872                GENERATE_OOP_VM_TYPE_ENTRY,
2873                GENERATE_INTEGER_VM_TYPE_ENTRY,
2874                GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
2875                GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
2876                GENERATE_C2_VM_TYPE_ENTRY,
2877                GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
2878 
2879   VM_TYPES_OS_CPU(GENERATE_VM_TYPE_ENTRY,
2880                   GENERATE_TOPLEVEL_VM_TYPE_ENTRY,
2881                   GENERATE_OOP_VM_TYPE_ENTRY,
2882                   GENERATE_INTEGER_VM_TYPE_ENTRY,
2883                   GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY,
2884                   GENERATE_C1_TOPLEVEL_VM_TYPE_ENTRY,
2885                   GENERATE_C2_VM_TYPE_ENTRY,
2886                   GENERATE_C2_TOPLEVEL_VM_TYPE_ENTRY)
2887 
2888   GENERATE_VM_TYPE_LAST_ENTRY()
2889 };
2890 
2891 size_t VMStructs::localHotSpotVMTypesLength() {
2892   return sizeof(localHotSpotVMTypes) / sizeof(VMTypeEntry);
2893 }
2894 
2895 VMIntConstantEntry VMStructs::localHotSpotVMIntConstants[] = {
2896 
2897   VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY,
2898                    GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY,
2899                    GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
2900                    GENERATE_C1_VM_INT_CONSTANT_ENTRY,
2901                    GENERATE_C2_VM_INT_CONSTANT_ENTRY,
2902                    GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
2903 
2904 #if INCLUDE_TRACE
2905   VM_INT_CONSTANTS_TRACE(GENERATE_VM_INT_CONSTANT_ENTRY)
2906 #endif
2907 
2908   VM_INT_CONSTANTS_OS(GENERATE_VM_INT_CONSTANT_ENTRY,
2909                       GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
2910                       GENERATE_C1_VM_INT_CONSTANT_ENTRY,
2911                       GENERATE_C2_VM_INT_CONSTANT_ENTRY,
2912                       GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
2913 
2914   VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
2915                        GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
2916                        GENERATE_C1_VM_INT_CONSTANT_ENTRY,
2917                        GENERATE_C2_VM_INT_CONSTANT_ENTRY,
2918                        GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
2919 
2920   VM_INT_CONSTANTS_OS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY,
2921                           GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY,
2922                           GENERATE_C1_VM_INT_CONSTANT_ENTRY,
2923                           GENERATE_C2_VM_INT_CONSTANT_ENTRY,
2924                           GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY)
2925 
2926   GENERATE_VM_INT_CONSTANT_LAST_ENTRY()
2927 };
2928 
2929 size_t VMStructs::localHotSpotVMIntConstantsLength() {
2930   return sizeof(localHotSpotVMIntConstants) / sizeof(VMIntConstantEntry);
2931 }
2932 
2933 VMLongConstantEntry VMStructs::localHotSpotVMLongConstants[] = {
2934 
2935   VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY,
2936                     GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
2937                     GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
2938                     GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
2939                     GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
2940 
2941   VM_LONG_CONSTANTS_OS(GENERATE_VM_LONG_CONSTANT_ENTRY,
2942                        GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
2943                        GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
2944                        GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
2945                        GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
2946 
2947   VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
2948                         GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
2949                         GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
2950                         GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
2951                         GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
2952 
2953   VM_LONG_CONSTANTS_OS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY,
2954                            GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY,
2955                            GENERATE_C1_VM_LONG_CONSTANT_ENTRY,
2956                            GENERATE_C2_VM_LONG_CONSTANT_ENTRY,
2957                            GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY)
2958 
2959   GENERATE_VM_LONG_CONSTANT_LAST_ENTRY()
2960 };
2961 
2962 size_t VMStructs::localHotSpotVMLongConstantsLength() {
2963   return sizeof(localHotSpotVMLongConstants) / sizeof(VMLongConstantEntry);
2964 }
2965 
2966 // This is used both to check the types of referenced fields and, in
2967 // debug builds, to ensure that all of the field types are present.
2968 void
2969 VMStructs::init() {
2970   VM_STRUCTS(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
2971              CHECK_STATIC_VM_STRUCT_ENTRY,
2972              CHECK_STATIC_PTR_VOLATILE_VM_STRUCT_ENTRY,
2973              CHECK_NO_OP,
2974              CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY,
2975              CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2976              CHECK_C1_NONSTATIC_VM_STRUCT_ENTRY,
2977              CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY,
2978              CHECK_NO_OP,
2979              CHECK_NO_OP);
2980 
2981 #if INCLUDE_TRACE
2982   VM_STRUCTS_TRACE(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
2983                    CHECK_STATIC_VM_STRUCT_ENTRY);
2984 #endif
2985 
2986   VM_STRUCTS_CPU(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
2987                  CHECK_STATIC_VM_STRUCT_ENTRY,
2988                  CHECK_NO_OP,
2989                  CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY,
2990                  CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
2991                  CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY,
2992                  CHECK_NO_OP,
2993                  CHECK_NO_OP);
2994 
2995   VM_STRUCTS_OS_CPU(CHECK_NONSTATIC_VM_STRUCT_ENTRY,
2996                     CHECK_STATIC_VM_STRUCT_ENTRY,
2997                     CHECK_NO_OP,
2998                     CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY,
2999                     CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY,
3000                     CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY,
3001                     CHECK_NO_OP,
3002                     CHECK_NO_OP);
3003 
3004   VM_TYPES(CHECK_VM_TYPE_ENTRY,
3005            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3006            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3007            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3008            CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3009            CHECK_C1_TOPLEVEL_VM_TYPE_ENTRY,
3010            CHECK_C2_VM_TYPE_ENTRY,
3011            CHECK_C2_TOPLEVEL_VM_TYPE_ENTRY);
3012 
3013 #if INCLUDE_TRACE
3014   VM_TYPES_TRACE(CHECK_VM_TYPE_ENTRY,
3015               CHECK_SINGLE_ARG_VM_TYPE_NO_OP);
3016 #endif
3017 
3018   VM_TYPES_CPU(CHECK_VM_TYPE_ENTRY,
3019                CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3020                CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3021                CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3022                CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3023                CHECK_C1_TOPLEVEL_VM_TYPE_ENTRY,
3024                CHECK_C2_VM_TYPE_ENTRY,
3025                CHECK_C2_TOPLEVEL_VM_TYPE_ENTRY);
3026 
3027   VM_TYPES_OS_CPU(CHECK_VM_TYPE_ENTRY,
3028                   CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3029                   CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3030                   CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3031                   CHECK_SINGLE_ARG_VM_TYPE_NO_OP,
3032                   CHECK_C1_TOPLEVEL_VM_TYPE_ENTRY,
3033                   CHECK_C2_VM_TYPE_ENTRY,
3034                   CHECK_C2_TOPLEVEL_VM_TYPE_ENTRY);
3035 
3036   //
3037   // Split VM_STRUCTS() invocation into two parts to allow MS VC++ 6.0
3038   // to build with the source mounted over SNC3.2. Symptom was that
3039   // debug build failed with an internal compiler error. Has been seen
3040   // mounting sources from Solaris 2.6 and 2.7 hosts, but so far not
3041   // 2.8 hosts. Appears to occur because line is too long.
3042   //
3043   // If an assertion failure is triggered here it means that an entry
3044   // in VMStructs::localHotSpotVMStructs[] was not found in
3045   // VMStructs::localHotSpotVMTypes[]. (The assertion itself had to be
3046   // made less descriptive because of this above bug -- see the
3047   // definition of ENSURE_FIELD_TYPE_PRESENT.)
3048   //
3049   // NOTE: taken out because this was just not working on everyone's
3050   // Solstice NFS setup. If everyone switches to local workspaces on
3051   // Win32, we can put this back in.
3052 #ifndef _WINDOWS
3053   debug_only(VM_STRUCTS(ENSURE_FIELD_TYPE_PRESENT,
3054                         CHECK_NO_OP,
3055                         CHECK_NO_OP,
3056                         CHECK_NO_OP,
3057                         CHECK_NO_OP,
3058                         CHECK_NO_OP,
3059                         CHECK_NO_OP,
3060                         CHECK_NO_OP,
3061                         CHECK_NO_OP,
3062                         CHECK_NO_OP));
3063   debug_only(VM_STRUCTS(CHECK_NO_OP,
3064                         ENSURE_FIELD_TYPE_PRESENT,
3065                         ENSURE_FIELD_TYPE_PRESENT,
3066                         CHECK_NO_OP,
3067                         ENSURE_FIELD_TYPE_PRESENT,
3068                         ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT,
3069                         ENSURE_C1_FIELD_TYPE_PRESENT,
3070                         ENSURE_C2_FIELD_TYPE_PRESENT,
3071                         CHECK_NO_OP,
3072                         CHECK_NO_OP));
3073 
3074 #if INCLUDE_TRACE
3075   debug_only(VM_STRUCTS_TRACE(ENSURE_FIELD_TYPE_PRESENT,
3076                            ENSURE_FIELD_TYPE_PRESENT));
3077 #endif
3078 
3079   debug_only(VM_STRUCTS_CPU(ENSURE_FIELD_TYPE_PRESENT,
3080                             ENSURE_FIELD_TYPE_PRESENT,
3081                             CHECK_NO_OP,
3082                             ENSURE_FIELD_TYPE_PRESENT,
3083                             ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT,
3084                             ENSURE_C2_FIELD_TYPE_PRESENT,
3085                             CHECK_NO_OP,
3086                             CHECK_NO_OP));
3087   debug_only(VM_STRUCTS_OS_CPU(ENSURE_FIELD_TYPE_PRESENT,
3088                                ENSURE_FIELD_TYPE_PRESENT,
3089                                CHECK_NO_OP,
3090                                ENSURE_FIELD_TYPE_PRESENT,
3091                                ENSURE_NONPRODUCT_FIELD_TYPE_PRESENT,
3092                                ENSURE_C2_FIELD_TYPE_PRESENT,
3093                                CHECK_NO_OP,
3094                                CHECK_NO_OP));
3095 #endif
3096 }
3097 
3098 extern "C" {
3099 
3100 #define STRIDE(array) ((char*)&array[1] - (char*)&array[0])
3101 
3102 JNIEXPORT VMStructEntry* gHotSpotVMStructs = VMStructs::localHotSpotVMStructs;
3103 JNIEXPORT uint64_t gHotSpotVMStructEntryTypeNameOffset = offset_of(VMStructEntry, typeName);
3104 JNIEXPORT uint64_t gHotSpotVMStructEntryFieldNameOffset = offset_of(VMStructEntry, fieldName);
3105 JNIEXPORT uint64_t gHotSpotVMStructEntryTypeStringOffset = offset_of(VMStructEntry, typeString);
3106 JNIEXPORT uint64_t gHotSpotVMStructEntryIsStaticOffset = offset_of(VMStructEntry, isStatic);
3107 JNIEXPORT uint64_t gHotSpotVMStructEntryOffsetOffset = offset_of(VMStructEntry, offset);
3108 JNIEXPORT uint64_t gHotSpotVMStructEntryAddressOffset = offset_of(VMStructEntry, address);
3109 JNIEXPORT uint64_t gHotSpotVMStructEntryArrayStride = STRIDE(gHotSpotVMStructs);
3110 
3111 JNIEXPORT VMTypeEntry* gHotSpotVMTypes = VMStructs::localHotSpotVMTypes;
3112 JNIEXPORT uint64_t gHotSpotVMTypeEntryTypeNameOffset = offset_of(VMTypeEntry, typeName);
3113 JNIEXPORT uint64_t gHotSpotVMTypeEntrySuperclassNameOffset = offset_of(VMTypeEntry, superclassName);
3114 JNIEXPORT uint64_t gHotSpotVMTypeEntryIsOopTypeOffset = offset_of(VMTypeEntry, isOopType);
3115 JNIEXPORT uint64_t gHotSpotVMTypeEntryIsIntegerTypeOffset = offset_of(VMTypeEntry, isIntegerType);
3116 JNIEXPORT uint64_t gHotSpotVMTypeEntryIsUnsignedOffset = offset_of(VMTypeEntry, isUnsigned);
3117 JNIEXPORT uint64_t gHotSpotVMTypeEntrySizeOffset = offset_of(VMTypeEntry, size);
3118 JNIEXPORT uint64_t gHotSpotVMTypeEntryArrayStride = STRIDE(gHotSpotVMTypes);
3119 
3120 JNIEXPORT VMIntConstantEntry* gHotSpotVMIntConstants = VMStructs::localHotSpotVMIntConstants;
3121 JNIEXPORT uint64_t gHotSpotVMIntConstantEntryNameOffset = offset_of(VMIntConstantEntry, name);
3122 JNIEXPORT uint64_t gHotSpotVMIntConstantEntryValueOffset = offset_of(VMIntConstantEntry, value);
3123 JNIEXPORT uint64_t gHotSpotVMIntConstantEntryArrayStride = STRIDE(gHotSpotVMIntConstants);
3124 
3125 JNIEXPORT VMLongConstantEntry* gHotSpotVMLongConstants = VMStructs::localHotSpotVMLongConstants;
3126 JNIEXPORT uint64_t gHotSpotVMLongConstantEntryNameOffset = offset_of(VMLongConstantEntry, name);
3127 JNIEXPORT uint64_t gHotSpotVMLongConstantEntryValueOffset = offset_of(VMLongConstantEntry, value);
3128 JNIEXPORT uint64_t gHotSpotVMLongConstantEntryArrayStride = STRIDE(gHotSpotVMLongConstants);
3129 }
3130 
3131 #ifdef ASSERT
3132 static int recursiveFindType(VMTypeEntry* origtypes, const char* typeName, bool isRecurse) {
3133   {
3134     VMTypeEntry* types = origtypes;
3135     while (types->typeName != NULL) {
3136       if (strcmp(typeName, types->typeName) == 0) {
3137         // Found it
3138         return 1;
3139       }
3140       ++types;
3141     }
3142   }
3143   // Search for the base type by peeling off const and *
3144   size_t len = strlen(typeName);
3145   if (typeName[len-1] == '*') {
3146     char * s = NEW_C_HEAP_ARRAY(char, len, mtInternal);
3147     strncpy(s, typeName, len - 1);
3148     s[len-1] = '\0';
3149     // tty->print_cr("checking \"%s\" for \"%s\"", s, typeName);
3150     if (recursiveFindType(origtypes, s, true) == 1) {
3151       FREE_C_HEAP_ARRAY(char, s);
3152       return 1;
3153     }
3154     FREE_C_HEAP_ARRAY(char, s);
3155   }
3156   const char* start = NULL;
3157   if (strstr(typeName, "GrowableArray<") == typeName) {
3158     start = typeName + strlen("GrowableArray<");
3159   } else if (strstr(typeName, "Array<") == typeName) {
3160     start = typeName + strlen("Array<");
3161   }
3162   if (start != NULL) {
3163     const char * end = strrchr(typeName, '>');
3164     int len = end - start + 1;
3165     char * s = NEW_C_HEAP_ARRAY(char, len, mtInternal);
3166     strncpy(s, start, len - 1);
3167     s[len-1] = '\0';
3168     // tty->print_cr("checking \"%s\" for \"%s\"", s, typeName);
3169     if (recursiveFindType(origtypes, s, true) == 1) {
3170       FREE_C_HEAP_ARRAY(char, s);
3171       return 1;
3172     }
3173     FREE_C_HEAP_ARRAY(char, s);
3174   }
3175   if (strstr(typeName, "const ") == typeName) {
3176     const char * s = typeName + strlen("const ");
3177     // tty->print_cr("checking \"%s\" for \"%s\"", s, typeName);
3178     if (recursiveFindType(origtypes, s, true) == 1) {
3179       return 1;
3180     }
3181   }
3182   if (strstr(typeName, " const") == typeName + len - 6) {
3183     char * s = os::strdup_check_oom(typeName);
3184     s[len - 6] = '\0';
3185     // tty->print_cr("checking \"%s\" for \"%s\"", s, typeName);
3186     if (recursiveFindType(origtypes, s, true) == 1) {
3187       os::free(s);
3188       return 1;
3189     }
3190     os::free(s);
3191   }
3192   if (!isRecurse) {
3193     tty->print_cr("type \"%s\" not found", typeName);
3194   }
3195   return 0;
3196 }
3197 
3198 
3199 int
3200 VMStructs::findType(const char* typeName) {
3201   VMTypeEntry* types = gHotSpotVMTypes;
3202 
3203   return recursiveFindType(types, typeName, false);
3204 }
3205 #endif
3206 
3207 void vmStructs_init() {
3208   debug_only(VMStructs::init());
3209 }