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