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