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