1 /* 2 * Copyright (c) 2015, 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 "code/codeCache.hpp" 27 #include "compiler/compileBroker.hpp" 28 #include "gc/shared/collectedHeap.hpp" 29 #include "jvmci/jvmciCodeInstaller.hpp" 30 #include "jvmci/jvmciCompilerToVM.hpp" 31 #include "jvmci/jvmciRuntime.hpp" 32 #include "jvmci/vmStructs_jvmci.hpp" 33 #include "oops/klassVtable.hpp" 34 #include "oops/objArrayKlass.hpp" 35 #include "runtime/deoptimization.hpp" 36 #include "runtime/flags/jvmFlag.hpp" 37 #include "runtime/osThread.hpp" 38 #include "runtime/sharedRuntime.hpp" 39 #include "runtime/stubRoutines.hpp" 40 #include "runtime/vm_version.hpp" 41 #if INCLUDE_G1GC 42 #include "gc/g1/g1CardTable.hpp" 43 #include "gc/g1/heapRegion.hpp" 44 #include "gc/g1/g1ThreadLocalData.hpp" 45 #endif 46 47 #define VM_STRUCTS(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field) \ 48 static_field(CompilerToVM::Data, Klass_vtable_start_offset, int) \ 49 static_field(CompilerToVM::Data, Klass_vtable_length_offset, int) \ 50 \ 51 static_field(CompilerToVM::Data, Method_extra_stack_entries, int) \ 52 \ 53 static_field(CompilerToVM::Data, SharedRuntime_ic_miss_stub, address) \ 54 static_field(CompilerToVM::Data, SharedRuntime_handle_wrong_method_stub, address) \ 55 static_field(CompilerToVM::Data, SharedRuntime_deopt_blob_unpack, address) \ 56 static_field(CompilerToVM::Data, SharedRuntime_deopt_blob_unpack_with_exception_in_tls, \ 57 address) \ 58 static_field(CompilerToVM::Data, SharedRuntime_deopt_blob_uncommon_trap, address) \ 59 \ 60 static_field(CompilerToVM::Data, ThreadLocalAllocBuffer_alignment_reserve, size_t) \ 61 \ 62 static_field(CompilerToVM::Data, Universe_collectedHeap, CollectedHeap*) \ 63 static_field(CompilerToVM::Data, Universe_base_vtable_size, int) \ 64 static_field(CompilerToVM::Data, Universe_narrow_oop_base, address) \ 65 static_field(CompilerToVM::Data, Universe_narrow_oop_shift, int) \ 66 static_field(CompilerToVM::Data, Universe_narrow_klass_base, address) \ 67 static_field(CompilerToVM::Data, Universe_narrow_klass_shift, int) \ 68 static_field(CompilerToVM::Data, Universe_non_oop_bits, void*) \ 69 static_field(CompilerToVM::Data, Universe_verify_oop_mask, uintptr_t) \ 70 static_field(CompilerToVM::Data, Universe_verify_oop_bits, uintptr_t) \ 71 \ 72 static_field(CompilerToVM::Data, _supports_inline_contig_alloc, bool) \ 73 static_field(CompilerToVM::Data, _heap_end_addr, HeapWord**) \ 74 static_field(CompilerToVM::Data, _heap_top_addr, HeapWord* volatile*) \ 75 \ 76 static_field(CompilerToVM::Data, _max_oop_map_stack_offset, int) \ 77 static_field(CompilerToVM::Data, _fields_annotations_base_offset, int) \ 78 \ 79 static_field(CompilerToVM::Data, cardtable_start_address, CardTable::CardValue*) \ 80 static_field(CompilerToVM::Data, cardtable_shift, int) \ 81 \ 82 static_field(CompilerToVM::Data, vm_page_size, size_t) \ 83 \ 84 static_field(CompilerToVM::Data, sizeof_vtableEntry, int) \ 85 static_field(CompilerToVM::Data, sizeof_ExceptionTableElement, int) \ 86 static_field(CompilerToVM::Data, sizeof_LocalVariableTableElement, int) \ 87 static_field(CompilerToVM::Data, sizeof_ConstantPool, int) \ 88 static_field(CompilerToVM::Data, sizeof_narrowKlass, int) \ 89 static_field(CompilerToVM::Data, sizeof_arrayOopDesc, int) \ 90 static_field(CompilerToVM::Data, sizeof_BasicLock, int) \ 91 \ 92 static_field(CompilerToVM::Data, dsin, address) \ 93 static_field(CompilerToVM::Data, dcos, address) \ 94 static_field(CompilerToVM::Data, dtan, address) \ 95 static_field(CompilerToVM::Data, dexp, address) \ 96 static_field(CompilerToVM::Data, dlog, address) \ 97 static_field(CompilerToVM::Data, dlog10, address) \ 98 static_field(CompilerToVM::Data, dpow, address) \ 99 \ 100 static_field(CompilerToVM::Data, symbol_init, address) \ 101 static_field(CompilerToVM::Data, symbol_clinit, address) \ 102 \ 103 static_field(CompilerToVM::Data, data_section_item_alignment, int) \ 104 \ 105 static_field(Abstract_VM_Version, _features, uint64_t) \ 106 \ 107 nonstatic_field(Annotations, _fields_annotations, Array<AnnotationArray*>*) \ 108 \ 109 nonstatic_field(Array<int>, _length, int) \ 110 unchecked_nonstatic_field(Array<u1>, _data, sizeof(u1)) \ 111 unchecked_nonstatic_field(Array<u2>, _data, sizeof(u2)) \ 112 nonstatic_field(Array<Klass*>, _length, int) \ 113 nonstatic_field(Array<Klass*>, _data[0], Klass*) \ 114 \ 115 volatile_nonstatic_field(BasicLock, _displaced_header, markWord) \ 116 \ 117 static_field(CodeCache, _low_bound, address) \ 118 static_field(CodeCache, _high_bound, address) \ 119 \ 120 nonstatic_field(CollectedHeap, _total_collections, unsigned int) \ 121 \ 122 nonstatic_field(CompileTask, _num_inlined_bytecodes, int) \ 123 \ 124 nonstatic_field(ConstantPool, _tags, Array<u1>*) \ 125 nonstatic_field(ConstantPool, _pool_holder, InstanceKlass*) \ 126 nonstatic_field(ConstantPool, _length, int) \ 127 nonstatic_field(ConstantPool, _flags, u2) \ 128 nonstatic_field(ConstantPool, _source_file_name_index, u2) \ 129 \ 130 nonstatic_field(ConstMethod, _constants, ConstantPool*) \ 131 nonstatic_field(ConstMethod, _flags, u2) \ 132 nonstatic_field(ConstMethod, _code_size, u2) \ 133 nonstatic_field(ConstMethod, _name_index, u2) \ 134 nonstatic_field(ConstMethod, _signature_index, u2) \ 135 nonstatic_field(ConstMethod, _method_idnum, u2) \ 136 nonstatic_field(ConstMethod, _max_stack, u2) \ 137 nonstatic_field(ConstMethod, _max_locals, u2) \ 138 \ 139 nonstatic_field(DataLayout, _header._struct._tag, u1) \ 140 nonstatic_field(DataLayout, _header._struct._flags, u1) \ 141 nonstatic_field(DataLayout, _header._struct._bci, u2) \ 142 nonstatic_field(DataLayout, _header._struct._traps, u4) \ 143 nonstatic_field(DataLayout, _cells[0], intptr_t) \ 144 \ 145 nonstatic_field(Deoptimization::UnrollBlock, _size_of_deoptimized_frame, int) \ 146 nonstatic_field(Deoptimization::UnrollBlock, _caller_adjustment, int) \ 147 nonstatic_field(Deoptimization::UnrollBlock, _number_of_frames, int) \ 148 nonstatic_field(Deoptimization::UnrollBlock, _total_frame_sizes, int) \ 149 nonstatic_field(Deoptimization::UnrollBlock, _frame_sizes, intptr_t*) \ 150 nonstatic_field(Deoptimization::UnrollBlock, _frame_pcs, address*) \ 151 nonstatic_field(Deoptimization::UnrollBlock, _initial_info, intptr_t) \ 152 nonstatic_field(Deoptimization::UnrollBlock, _unpack_kind, int) \ 153 \ 154 nonstatic_field(ExceptionTableElement, start_pc, u2) \ 155 nonstatic_field(ExceptionTableElement, end_pc, u2) \ 156 nonstatic_field(ExceptionTableElement, handler_pc, u2) \ 157 nonstatic_field(ExceptionTableElement, catch_type_index, u2) \ 158 \ 159 nonstatic_field(InstanceKlass, _fields, Array<u2>*) \ 160 nonstatic_field(InstanceKlass, _constants, ConstantPool*) \ 161 volatile_nonstatic_field(InstanceKlass, _init_state, InstanceKlass::ClassState) \ 162 volatile_nonstatic_field(InstanceKlass, _init_thread, JavaThread*) \ 163 nonstatic_field(InstanceKlass, _misc_flags._flags, u2) \ 164 nonstatic_field(InstanceKlass, _annotations, Annotations*) \ 165 \ 166 volatile_nonstatic_field(JavaFrameAnchor, _last_Java_sp, intptr_t*) \ 167 volatile_nonstatic_field(JavaFrameAnchor, _last_Java_pc, address) \ 168 \ 169 nonstatic_field(JVMCICompileState, _jvmti_can_hotswap_or_post_breakpoint, jbyte) \ 170 nonstatic_field(JVMCICompileState, _jvmti_can_access_local_variables, jbyte) \ 171 nonstatic_field(JVMCICompileState, _jvmti_can_post_on_exceptions, jbyte) \ 172 nonstatic_field(JVMCICompileState, _jvmti_can_pop_frame, jbyte) \ 173 nonstatic_field(JVMCICompileState, _compilation_ticks, jint) \ 174 \ 175 nonstatic_field(JavaThread, _threadObj, OopHandle) \ 176 nonstatic_field(JavaThread, _vthread, OopHandle) \ 177 nonstatic_field(JavaThread, _scopedValueCache, OopHandle) \ 178 nonstatic_field(JavaThread, _anchor, JavaFrameAnchor) \ 179 nonstatic_field(JavaThread, _vm_result, oop) \ 180 nonstatic_field(JavaThread, _stack_overflow_state._stack_overflow_limit, address) \ 181 volatile_nonstatic_field(JavaThread, _exception_oop, oop) \ 182 volatile_nonstatic_field(JavaThread, _exception_pc, address) \ 183 volatile_nonstatic_field(JavaThread, _is_method_handle_return, int) \ 184 volatile_nonstatic_field(JavaThread, _doing_unsafe_access, bool) \ 185 nonstatic_field(JavaThread, _osthread, OSThread*) \ 186 nonstatic_field(JavaThread, _pending_deoptimization, int) \ 187 nonstatic_field(JavaThread, _pending_failed_speculation, jlong) \ 188 nonstatic_field(JavaThread, _pending_transfer_to_interpreter, bool) \ 189 nonstatic_field(JavaThread, _jvmci_counters, jlong*) \ 190 nonstatic_field(JavaThread, _jvmci_reserved0, jlong) \ 191 nonstatic_field(JavaThread, _jvmci_reserved1, jlong) \ 192 nonstatic_field(JavaThread, _jvmci_reserved_oop0, oop) \ 193 nonstatic_field(JavaThread, _should_post_on_exceptions_flag, int) \ 194 nonstatic_field(JavaThread, _jni_environment, JNIEnv) \ 195 nonstatic_field(JavaThread, _poll_data, SafepointMechanism::ThreadData) \ 196 nonstatic_field(JavaThread, _stack_overflow_state._reserved_stack_activation, address) \ 197 nonstatic_field(JavaThread, _held_monitor_count, int64_t) \ 198 \ 199 static_field(java_lang_Class, _klass_offset, int) \ 200 static_field(java_lang_Class, _array_klass_offset, int) \ 201 \ 202 nonstatic_field(InvocationCounter, _counter, unsigned int) \ 203 \ 204 nonstatic_field(Klass, _secondary_super_cache, Klass*) \ 205 nonstatic_field(Klass, _secondary_supers, Array<Klass*>*) \ 206 nonstatic_field(Klass, _super, Klass*) \ 207 nonstatic_field(Klass, _super_check_offset, juint) \ 208 volatile_nonstatic_field(Klass, _subklass, Klass*) \ 209 nonstatic_field(Klass, _layout_helper, jint) \ 210 nonstatic_field(Klass, _name, Symbol*) \ 211 volatile_nonstatic_field(Klass, _next_sibling, Klass*) \ 212 nonstatic_field(Klass, _java_mirror, OopHandle) \ 213 nonstatic_field(Klass, _modifier_flags, jint) \ 214 nonstatic_field(Klass, _access_flags, AccessFlags) \ 215 nonstatic_field(Klass, _class_loader_data, ClassLoaderData*) \ 216 \ 217 nonstatic_field(LocalVariableTableElement, start_bci, u2) \ 218 nonstatic_field(LocalVariableTableElement, length, u2) \ 219 nonstatic_field(LocalVariableTableElement, name_cp_index, u2) \ 220 nonstatic_field(LocalVariableTableElement, descriptor_cp_index, u2) \ 221 nonstatic_field(LocalVariableTableElement, signature_cp_index, u2) \ 222 nonstatic_field(LocalVariableTableElement, slot, u2) \ 223 \ 224 nonstatic_field(Method, _constMethod, ConstMethod*) \ 225 nonstatic_field(Method, _method_data, MethodData*) \ 226 nonstatic_field(Method, _method_counters, MethodCounters*) \ 227 nonstatic_field(Method, _access_flags, AccessFlags) \ 228 nonstatic_field(Method, _vtable_index, int) \ 229 nonstatic_field(Method, _intrinsic_id, u2) \ 230 nonstatic_field(Method, _flags, u2) \ 231 volatile_nonstatic_field(Method, _code, CompiledMethod*) \ 232 volatile_nonstatic_field(Method, _from_compiled_entry, address) \ 233 \ 234 nonstatic_field(MethodCounters, _invoke_mask, int) \ 235 nonstatic_field(MethodCounters, _backedge_mask, int) \ 236 nonstatic_field(MethodCounters, _interpreter_throwout_count, u2) \ 237 JVMTI_ONLY(nonstatic_field(MethodCounters, _number_of_breakpoints, u2)) \ 238 nonstatic_field(MethodCounters, _invocation_counter, InvocationCounter) \ 239 nonstatic_field(MethodCounters, _backedge_counter, InvocationCounter) \ 240 \ 241 nonstatic_field(MethodData, _size, int) \ 242 nonstatic_field(MethodData, _method, Method*) \ 243 nonstatic_field(MethodData, _data_size, int) \ 244 nonstatic_field(MethodData, _data[0], intptr_t) \ 245 nonstatic_field(MethodData, _parameters_type_data_di, int) \ 246 nonstatic_field(MethodData, _compiler_counters._nof_decompiles, uint) \ 247 nonstatic_field(MethodData, _compiler_counters._nof_overflow_recompiles, uint) \ 248 nonstatic_field(MethodData, _compiler_counters._nof_overflow_traps, uint) \ 249 nonstatic_field(MethodData, _compiler_counters._trap_hist._array[0], u1) \ 250 nonstatic_field(MethodData, _eflags, intx) \ 251 nonstatic_field(MethodData, _arg_local, intx) \ 252 nonstatic_field(MethodData, _arg_stack, intx) \ 253 nonstatic_field(MethodData, _arg_returned, intx) \ 254 nonstatic_field(MethodData, _tenure_traps, uint) \ 255 nonstatic_field(MethodData, _invoke_mask, int) \ 256 nonstatic_field(MethodData, _backedge_mask, int) \ 257 nonstatic_field(MethodData, _jvmci_ir_size, int) \ 258 \ 259 nonstatic_field(nmethod, _verified_entry_point, address) \ 260 nonstatic_field(nmethod, _comp_level, CompLevel) \ 261 \ 262 nonstatic_field(ObjArrayKlass, _element_klass, Klass*) \ 263 \ 264 unchecked_nonstatic_field(ObjectMonitor, _owner, sizeof(void *)) /* NOTE: no type */ \ 265 volatile_nonstatic_field(ObjectMonitor, _recursions, intptr_t) \ 266 volatile_nonstatic_field(ObjectMonitor, _cxq, ObjectWaiter*) \ 267 volatile_nonstatic_field(ObjectMonitor, _EntryList, ObjectWaiter*) \ 268 volatile_nonstatic_field(ObjectMonitor, _succ, JavaThread*) \ 269 \ 270 volatile_nonstatic_field(oopDesc, _mark, markWord) \ 271 volatile_nonstatic_field(oopDesc, _metadata._klass, Klass*) \ 272 \ 273 static_field(StubRoutines, _verify_oop_count, jint) \ 274 \ 275 static_field(StubRoutines, _throw_delayed_StackOverflowError_entry, address) \ 276 \ 277 static_field(StubRoutines, _jbyte_arraycopy, address) \ 278 static_field(StubRoutines, _jshort_arraycopy, address) \ 279 static_field(StubRoutines, _jint_arraycopy, address) \ 280 static_field(StubRoutines, _jlong_arraycopy, address) \ 281 static_field(StubRoutines, _oop_arraycopy, address) \ 282 static_field(StubRoutines, _oop_arraycopy_uninit, address) \ 283 static_field(StubRoutines, _jbyte_disjoint_arraycopy, address) \ 284 static_field(StubRoutines, _jshort_disjoint_arraycopy, address) \ 285 static_field(StubRoutines, _jint_disjoint_arraycopy, address) \ 286 static_field(StubRoutines, _jlong_disjoint_arraycopy, address) \ 287 static_field(StubRoutines, _oop_disjoint_arraycopy, address) \ 288 static_field(StubRoutines, _oop_disjoint_arraycopy_uninit, address) \ 289 static_field(StubRoutines, _arrayof_jbyte_arraycopy, address) \ 290 static_field(StubRoutines, _arrayof_jshort_arraycopy, address) \ 291 static_field(StubRoutines, _arrayof_jint_arraycopy, address) \ 292 static_field(StubRoutines, _arrayof_jlong_arraycopy, address) \ 293 static_field(StubRoutines, _arrayof_oop_arraycopy, address) \ 294 static_field(StubRoutines, _arrayof_oop_arraycopy_uninit, address) \ 295 static_field(StubRoutines, _arrayof_jbyte_disjoint_arraycopy, address) \ 296 static_field(StubRoutines, _arrayof_jshort_disjoint_arraycopy, address) \ 297 static_field(StubRoutines, _arrayof_jint_disjoint_arraycopy, address) \ 298 static_field(StubRoutines, _arrayof_jlong_disjoint_arraycopy, address) \ 299 static_field(StubRoutines, _arrayof_oop_disjoint_arraycopy, address) \ 300 static_field(StubRoutines, _arrayof_oop_disjoint_arraycopy_uninit, address) \ 301 static_field(StubRoutines, _checkcast_arraycopy, address) \ 302 static_field(StubRoutines, _checkcast_arraycopy_uninit, address) \ 303 static_field(StubRoutines, _unsafe_arraycopy, address) \ 304 static_field(StubRoutines, _generic_arraycopy, address) \ 305 \ 306 static_field(StubRoutines, _aescrypt_encryptBlock, address) \ 307 static_field(StubRoutines, _aescrypt_decryptBlock, address) \ 308 static_field(StubRoutines, _cipherBlockChaining_encryptAESCrypt, address) \ 309 static_field(StubRoutines, _cipherBlockChaining_decryptAESCrypt, address) \ 310 static_field(StubRoutines, _electronicCodeBook_encryptAESCrypt, address) \ 311 static_field(StubRoutines, _electronicCodeBook_decryptAESCrypt, address) \ 312 static_field(StubRoutines, _counterMode_AESCrypt, address) \ 313 static_field(StubRoutines, _galoisCounterMode_AESCrypt, address) \ 314 static_field(StubRoutines, _base64_encodeBlock, address) \ 315 static_field(StubRoutines, _base64_decodeBlock, address) \ 316 static_field(StubRoutines, _ghash_processBlocks, address) \ 317 static_field(StubRoutines, _md5_implCompress, address) \ 318 static_field(StubRoutines, _md5_implCompressMB, address) \ 319 static_field(StubRoutines, _chacha20Block, address) \ 320 static_field(StubRoutines, _sha1_implCompress, address) \ 321 static_field(StubRoutines, _sha1_implCompressMB, address) \ 322 static_field(StubRoutines, _sha256_implCompress, address) \ 323 static_field(StubRoutines, _sha256_implCompressMB, address) \ 324 static_field(StubRoutines, _sha512_implCompress, address) \ 325 static_field(StubRoutines, _sha512_implCompressMB, address) \ 326 static_field(StubRoutines, _sha3_implCompress, address) \ 327 static_field(StubRoutines, _sha3_implCompressMB, address) \ 328 static_field(StubRoutines, _updateBytesCRC32, address) \ 329 static_field(StubRoutines, _crc_table_adr, address) \ 330 static_field(StubRoutines, _crc32c_table_addr, address) \ 331 static_field(StubRoutines, _updateBytesCRC32C, address) \ 332 static_field(StubRoutines, _updateBytesAdler32, address) \ 333 static_field(StubRoutines, _multiplyToLen, address) \ 334 static_field(StubRoutines, _squareToLen, address) \ 335 static_field(StubRoutines, _mulAdd, address) \ 336 static_field(StubRoutines, _montgomeryMultiply, address) \ 337 static_field(StubRoutines, _montgomerySquare, address) \ 338 static_field(StubRoutines, _vectorizedMismatch, address) \ 339 static_field(StubRoutines, _bigIntegerRightShiftWorker, address) \ 340 static_field(StubRoutines, _bigIntegerLeftShiftWorker, address) \ 341 static_field(StubRoutines, _cont_thaw, address) \ 342 \ 343 nonstatic_field(Thread, _tlab, ThreadLocalAllocBuffer) \ 344 nonstatic_field(Thread, _allocated_bytes, jlong) \ 345 \ 346 nonstatic_field(ThreadLocalAllocBuffer, _start, HeapWord*) \ 347 nonstatic_field(ThreadLocalAllocBuffer, _top, HeapWord*) \ 348 nonstatic_field(ThreadLocalAllocBuffer, _end, HeapWord*) \ 349 nonstatic_field(ThreadLocalAllocBuffer, _pf_top, HeapWord*) \ 350 nonstatic_field(ThreadLocalAllocBuffer, _desired_size, size_t) \ 351 nonstatic_field(ThreadLocalAllocBuffer, _refill_waste_limit, size_t) \ 352 nonstatic_field(ThreadLocalAllocBuffer, _number_of_refills, unsigned) \ 353 nonstatic_field(ThreadLocalAllocBuffer, _slow_allocations, unsigned) \ 354 \ 355 nonstatic_field(SafepointMechanism::ThreadData, _polling_word, volatile uintptr_t) \ 356 nonstatic_field(SafepointMechanism::ThreadData, _polling_page, volatile uintptr_t) \ 357 \ 358 nonstatic_field(ThreadShadow, _pending_exception, oop) \ 359 \ 360 static_field(Symbol, _vm_symbols[0], Symbol*) \ 361 \ 362 nonstatic_field(vtableEntry, _method, Method*) \ 363 364 #define VM_TYPES(declare_type, declare_toplevel_type, declare_integer_type, declare_unsigned_integer_type) \ 365 declare_integer_type(bool) \ 366 declare_unsigned_integer_type(size_t) \ 367 declare_integer_type(intx) \ 368 declare_unsigned_integer_type(uintx) \ 369 declare_integer_type(CompLevel) \ 370 \ 371 declare_toplevel_type(BasicLock) \ 372 declare_toplevel_type(CompilerToVM) \ 373 declare_toplevel_type(ExceptionTableElement) \ 374 declare_toplevel_type(JVMFlag) \ 375 declare_toplevel_type(JVMFlag*) \ 376 declare_toplevel_type(InvocationCounter) \ 377 declare_toplevel_type(JVMCICompileState) \ 378 declare_toplevel_type(JVMCIEnv) \ 379 declare_toplevel_type(LocalVariableTableElement) \ 380 declare_toplevel_type(narrowKlass) \ 381 declare_toplevel_type(ObjectWaiter) \ 382 declare_toplevel_type(Symbol*) \ 383 declare_toplevel_type(vtableEntry) \ 384 \ 385 declare_toplevel_type(oopDesc) \ 386 declare_type(arrayOopDesc, oopDesc) \ 387 \ 388 declare_toplevel_type(MetaspaceObj) \ 389 declare_type(Metadata, MetaspaceObj) \ 390 declare_type(Klass, Metadata) \ 391 declare_type(InstanceKlass, Klass) \ 392 declare_type(ConstantPool, Metadata) \ 393 394 #define VM_INT_CONSTANTS(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \ 395 declare_preprocessor_constant("ASSERT", DEBUG_ONLY(1) NOT_DEBUG(0)) \ 396 declare_preprocessor_constant("FIELDINFO_TAG_SIZE", FIELDINFO_TAG_SIZE) \ 397 \ 398 declare_constant(CompLevel_none) \ 399 declare_constant(CompLevel_simple) \ 400 declare_constant(CompLevel_limited_profile) \ 401 declare_constant(CompLevel_full_profile) \ 402 declare_constant(CompLevel_full_optimization) \ 403 declare_constant(HeapWordSize) \ 404 declare_constant(InvocationEntryBci) \ 405 declare_constant(LogKlassAlignmentInBytes) \ 406 declare_constant(JVMCINMethodData::SPECULATION_LENGTH_BITS) \ 407 \ 408 declare_constant(JVM_ACC_WRITTEN_FLAGS) \ 409 declare_constant(JVM_ACC_MONITOR_MATCH) \ 410 declare_constant(JVM_ACC_HAS_MONITOR_BYTECODES) \ 411 declare_constant(JVM_ACC_HAS_FINALIZER) \ 412 declare_constant(JVM_ACC_IS_CLONEABLE_FAST) \ 413 declare_constant(JVM_ACC_IS_HIDDEN_CLASS) \ 414 declare_constant(JVM_ACC_FIELD_INTERNAL) \ 415 declare_constant(JVM_ACC_FIELD_STABLE) \ 416 declare_constant(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE) \ 417 declare_constant(JVM_ACC_IS_VALUE_BASED_CLASS) \ 418 declare_preprocessor_constant("JVM_ACC_VARARGS", JVM_ACC_VARARGS) \ 419 declare_preprocessor_constant("JVM_ACC_BRIDGE", JVM_ACC_BRIDGE) \ 420 declare_preprocessor_constant("JVM_ACC_ANNOTATION", JVM_ACC_ANNOTATION) \ 421 declare_preprocessor_constant("JVM_ACC_ENUM", JVM_ACC_ENUM) \ 422 declare_preprocessor_constant("JVM_ACC_SYNTHETIC", JVM_ACC_SYNTHETIC) \ 423 declare_preprocessor_constant("JVM_ACC_INTERFACE", JVM_ACC_INTERFACE) \ 424 declare_preprocessor_constant("JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE", JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE) \ 425 \ 426 declare_constant(JVM_CONSTANT_Utf8) \ 427 declare_constant(JVM_CONSTANT_Unicode) \ 428 declare_constant(JVM_CONSTANT_Integer) \ 429 declare_constant(JVM_CONSTANT_Float) \ 430 declare_constant(JVM_CONSTANT_Long) \ 431 declare_constant(JVM_CONSTANT_Double) \ 432 declare_constant(JVM_CONSTANT_Class) \ 433 declare_constant(JVM_CONSTANT_String) \ 434 declare_constant(JVM_CONSTANT_Fieldref) \ 435 declare_constant(JVM_CONSTANT_Methodref) \ 436 declare_constant(JVM_CONSTANT_InterfaceMethodref) \ 437 declare_constant(JVM_CONSTANT_NameAndType) \ 438 declare_constant(JVM_CONSTANT_MethodHandle) \ 439 declare_constant(JVM_CONSTANT_MethodType) \ 440 declare_constant(JVM_CONSTANT_InvokeDynamic) \ 441 declare_constant(JVM_CONSTANT_Dynamic) \ 442 declare_constant(JVM_CONSTANT_Module) \ 443 declare_constant(JVM_CONSTANT_Package) \ 444 declare_constant(JVM_CONSTANT_ExternalMax) \ 445 \ 446 declare_constant(JVM_CONSTANT_Invalid) \ 447 declare_constant(JVM_CONSTANT_InternalMin) \ 448 declare_constant(JVM_CONSTANT_UnresolvedClass) \ 449 declare_constant(JVM_CONSTANT_ClassIndex) \ 450 declare_constant(JVM_CONSTANT_StringIndex) \ 451 declare_constant(JVM_CONSTANT_UnresolvedClassInError) \ 452 declare_constant(JVM_CONSTANT_MethodHandleInError) \ 453 declare_constant(JVM_CONSTANT_MethodTypeInError) \ 454 declare_constant(JVM_CONSTANT_DynamicInError) \ 455 declare_constant(JVM_CONSTANT_InternalMax) \ 456 \ 457 declare_constant(ArrayData::array_len_off_set) \ 458 declare_constant(ArrayData::array_start_off_set) \ 459 \ 460 declare_constant(BitData::exception_seen_flag) \ 461 declare_constant(BitData::null_seen_flag) \ 462 declare_constant(BranchData::not_taken_off_set) \ 463 \ 464 declare_constant_with_value("CardTable::dirty_card", CardTable::dirty_card_val()) \ 465 \ 466 declare_constant(CodeInstaller::VERIFIED_ENTRY) \ 467 declare_constant(CodeInstaller::UNVERIFIED_ENTRY) \ 468 declare_constant(CodeInstaller::OSR_ENTRY) \ 469 declare_constant(CodeInstaller::EXCEPTION_HANDLER_ENTRY) \ 470 declare_constant(CodeInstaller::DEOPT_HANDLER_ENTRY) \ 471 declare_constant(CodeInstaller::FRAME_COMPLETE) \ 472 declare_constant(CodeInstaller::INVOKEINTERFACE) \ 473 declare_constant(CodeInstaller::INVOKEVIRTUAL) \ 474 declare_constant(CodeInstaller::INVOKESTATIC) \ 475 declare_constant(CodeInstaller::INVOKESPECIAL) \ 476 declare_constant(CodeInstaller::INLINE_INVOKE) \ 477 declare_constant(CodeInstaller::POLL_NEAR) \ 478 declare_constant(CodeInstaller::POLL_RETURN_NEAR) \ 479 declare_constant(CodeInstaller::POLL_FAR) \ 480 declare_constant(CodeInstaller::POLL_RETURN_FAR) \ 481 declare_constant(CodeInstaller::CARD_TABLE_SHIFT) \ 482 declare_constant(CodeInstaller::CARD_TABLE_ADDRESS) \ 483 declare_constant(CodeInstaller::HEAP_TOP_ADDRESS) \ 484 declare_constant(CodeInstaller::HEAP_END_ADDRESS) \ 485 declare_constant(CodeInstaller::NARROW_KLASS_BASE_ADDRESS) \ 486 declare_constant(CodeInstaller::NARROW_OOP_BASE_ADDRESS) \ 487 declare_constant(CodeInstaller::CRC_TABLE_ADDRESS) \ 488 declare_constant(CodeInstaller::LOG_OF_HEAP_REGION_GRAIN_BYTES) \ 489 declare_constant(CodeInstaller::INLINE_CONTIGUOUS_ALLOCATION_SUPPORTED) \ 490 declare_constant(CodeInstaller::DEOPT_MH_HANDLER_ENTRY) \ 491 declare_constant(CodeInstaller::VERIFY_OOP_COUNT_ADDRESS) \ 492 declare_constant(CodeInstaller::VERIFY_OOPS) \ 493 declare_constant(CodeInstaller::VERIFY_OOP_BITS) \ 494 declare_constant(CodeInstaller::VERIFY_OOP_MASK) \ 495 declare_constant(CodeInstaller::INVOKE_INVALID) \ 496 \ 497 declare_constant(CodeInstaller::ILLEGAL) \ 498 declare_constant(CodeInstaller::REGISTER_PRIMITIVE) \ 499 declare_constant(CodeInstaller::REGISTER_OOP) \ 500 declare_constant(CodeInstaller::REGISTER_NARROW_OOP) \ 501 declare_constant(CodeInstaller::STACK_SLOT_PRIMITIVE) \ 502 declare_constant(CodeInstaller::STACK_SLOT_OOP) \ 503 declare_constant(CodeInstaller::STACK_SLOT_NARROW_OOP) \ 504 declare_constant(CodeInstaller::VIRTUAL_OBJECT_ID) \ 505 declare_constant(CodeInstaller::VIRTUAL_OBJECT_ID2) \ 506 declare_constant(CodeInstaller::NULL_CONSTANT) \ 507 declare_constant(CodeInstaller::RAW_CONSTANT) \ 508 declare_constant(CodeInstaller::PRIMITIVE_0) \ 509 declare_constant(CodeInstaller::PRIMITIVE4) \ 510 declare_constant(CodeInstaller::PRIMITIVE8) \ 511 declare_constant(CodeInstaller::JOBJECT) \ 512 declare_constant(CodeInstaller::OBJECT_ID) \ 513 declare_constant(CodeInstaller::OBJECT_ID2) \ 514 \ 515 declare_constant(CodeInstaller::NO_FINALIZABLE_SUBCLASS) \ 516 declare_constant(CodeInstaller::CONCRETE_SUBTYPE) \ 517 declare_constant(CodeInstaller::LEAF_TYPE) \ 518 declare_constant(CodeInstaller::CONCRETE_METHOD) \ 519 declare_constant(CodeInstaller::CALLSITE_TARGET_VALUE) \ 520 \ 521 declare_constant(CodeInstaller::PATCH_OBJECT_ID) \ 522 declare_constant(CodeInstaller::PATCH_OBJECT_ID2) \ 523 declare_constant(CodeInstaller::PATCH_NARROW_OBJECT_ID) \ 524 declare_constant(CodeInstaller::PATCH_NARROW_OBJECT_ID2) \ 525 declare_constant(CodeInstaller::PATCH_JOBJECT) \ 526 declare_constant(CodeInstaller::PATCH_NARROW_JOBJECT) \ 527 declare_constant(CodeInstaller::PATCH_KLASS) \ 528 declare_constant(CodeInstaller::PATCH_NARROW_KLASS) \ 529 declare_constant(CodeInstaller::PATCH_METHOD) \ 530 declare_constant(CodeInstaller::PATCH_DATA_SECTION_REFERENCE) \ 531 \ 532 declare_constant(CodeInstaller::SITE_CALL) \ 533 declare_constant(CodeInstaller::SITE_FOREIGN_CALL) \ 534 declare_constant(CodeInstaller::SITE_FOREIGN_CALL_NO_DEBUG_INFO) \ 535 declare_constant(CodeInstaller::SITE_SAFEPOINT) \ 536 declare_constant(CodeInstaller::SITE_INFOPOINT) \ 537 declare_constant(CodeInstaller::SITE_IMPLICIT_EXCEPTION) \ 538 declare_constant(CodeInstaller::SITE_IMPLICIT_EXCEPTION_DISPATCH) \ 539 declare_constant(CodeInstaller::SITE_MARK) \ 540 declare_constant(CodeInstaller::SITE_DATA_PATCH) \ 541 declare_constant(CodeInstaller::SITE_EXCEPTION_HANDLER) \ 542 \ 543 declare_constant(CodeInstaller::DI_HAS_REFERENCE_MAP) \ 544 declare_constant(CodeInstaller::DI_HAS_CALLEE_SAVE_INFO) \ 545 declare_constant(CodeInstaller::DI_HAS_FRAMES) \ 546 \ 547 declare_constant(CodeInstaller::DIF_HAS_LOCALS) \ 548 declare_constant(CodeInstaller::DIF_HAS_STACK) \ 549 declare_constant(CodeInstaller::DIF_HAS_LOCKS) \ 550 declare_constant(CodeInstaller::DIF_DURING_CALL) \ 551 declare_constant(CodeInstaller::DIF_RETHROW_EXCEPTION) \ 552 \ 553 declare_constant(CodeInstaller::HCC_IS_NMETHOD) \ 554 declare_constant(CodeInstaller::HCC_HAS_ASSUMPTIONS) \ 555 declare_constant(CodeInstaller::HCC_HAS_METHODS) \ 556 declare_constant(CodeInstaller::HCC_HAS_DEOPT_RESCUE_SLOT) \ 557 declare_constant(CodeInstaller::HCC_HAS_COMMENTS) \ 558 \ 559 declare_constant(CodeInstaller::NO_REGISTER) \ 560 \ 561 declare_constant(CollectedHeap::None) \ 562 declare_constant(CollectedHeap::Serial) \ 563 declare_constant(CollectedHeap::Parallel) \ 564 declare_constant(CollectedHeap::G1) \ 565 declare_constant(CollectedHeap::Epsilon) \ 566 declare_constant(CollectedHeap::Z) \ 567 declare_constant(CollectedHeap::Shenandoah) \ 568 \ 569 declare_constant(vmIntrinsics::FIRST_MH_SIG_POLY) \ 570 declare_constant(vmIntrinsics::LAST_MH_SIG_POLY) \ 571 declare_constant(vmIntrinsics::_invokeGeneric) \ 572 declare_constant(vmIntrinsics::_compiledLambdaForm) \ 573 \ 574 declare_constant(ConstantPool::CPCACHE_INDEX_TAG) \ 575 declare_constant(ConstantPool::_has_dynamic_constant) \ 576 \ 577 declare_constant(ConstMethod::_has_linenumber_table) \ 578 declare_constant(ConstMethod::_has_localvariable_table) \ 579 declare_constant(ConstMethod::_has_exception_table) \ 580 declare_constant(ConstMethod::_has_method_annotations) \ 581 declare_constant(ConstMethod::_has_parameter_annotations) \ 582 \ 583 declare_constant(CounterData::count_off) \ 584 \ 585 declare_constant(DataLayout::cell_size) \ 586 declare_constant(DataLayout::no_tag) \ 587 declare_constant(DataLayout::bit_data_tag) \ 588 declare_constant(DataLayout::counter_data_tag) \ 589 declare_constant(DataLayout::jump_data_tag) \ 590 declare_constant(DataLayout::receiver_type_data_tag) \ 591 declare_constant(DataLayout::virtual_call_data_tag) \ 592 declare_constant(DataLayout::ret_data_tag) \ 593 declare_constant(DataLayout::branch_data_tag) \ 594 declare_constant(DataLayout::multi_branch_data_tag) \ 595 declare_constant(DataLayout::arg_info_data_tag) \ 596 declare_constant(DataLayout::call_type_data_tag) \ 597 declare_constant(DataLayout::virtual_call_type_data_tag) \ 598 declare_constant(DataLayout::parameters_type_data_tag) \ 599 declare_constant(DataLayout::speculative_trap_data_tag) \ 600 \ 601 declare_constant(Deoptimization::Unpack_deopt) \ 602 declare_constant(Deoptimization::Unpack_exception) \ 603 declare_constant(Deoptimization::Unpack_uncommon_trap) \ 604 declare_constant(Deoptimization::Unpack_reexecute) \ 605 \ 606 declare_constant(Deoptimization::_action_bits) \ 607 declare_constant(Deoptimization::_reason_bits) \ 608 declare_constant(Deoptimization::_debug_id_bits) \ 609 declare_constant(Deoptimization::_action_shift) \ 610 declare_constant(Deoptimization::_reason_shift) \ 611 declare_constant(Deoptimization::_debug_id_shift) \ 612 \ 613 declare_constant(Deoptimization::Action_none) \ 614 declare_constant(Deoptimization::Action_maybe_recompile) \ 615 declare_constant(Deoptimization::Action_reinterpret) \ 616 declare_constant(Deoptimization::Action_make_not_entrant) \ 617 declare_constant(Deoptimization::Action_make_not_compilable) \ 618 \ 619 declare_constant(Deoptimization::Reason_none) \ 620 declare_constant(Deoptimization::Reason_null_check) \ 621 declare_constant(Deoptimization::Reason_range_check) \ 622 declare_constant(Deoptimization::Reason_class_check) \ 623 declare_constant(Deoptimization::Reason_array_check) \ 624 declare_constant(Deoptimization::Reason_unreached0) \ 625 declare_constant(Deoptimization::Reason_constraint) \ 626 declare_constant(Deoptimization::Reason_div0_check) \ 627 declare_constant(Deoptimization::Reason_loop_limit_check) \ 628 declare_constant(Deoptimization::Reason_type_checked_inlining) \ 629 declare_constant(Deoptimization::Reason_optimized_type_check) \ 630 declare_constant(Deoptimization::Reason_aliasing) \ 631 declare_constant(Deoptimization::Reason_transfer_to_interpreter) \ 632 declare_constant(Deoptimization::Reason_not_compiled_exception_handler) \ 633 declare_constant(Deoptimization::Reason_unresolved) \ 634 declare_constant(Deoptimization::Reason_jsr_mismatch) \ 635 declare_constant(Deoptimization::Reason_TRAP_HISTORY_LENGTH) \ 636 declare_constant(Deoptimization::_support_large_access_byte_array_virtualization) \ 637 \ 638 declare_constant(FieldInfo::access_flags_offset) \ 639 declare_constant(FieldInfo::name_index_offset) \ 640 declare_constant(FieldInfo::signature_index_offset) \ 641 declare_constant(FieldInfo::initval_index_offset) \ 642 declare_constant(FieldInfo::low_packed_offset) \ 643 declare_constant(FieldInfo::high_packed_offset) \ 644 declare_constant(FieldInfo::field_slots) \ 645 \ 646 declare_constant(InstanceKlass::linked) \ 647 declare_constant(InstanceKlass::being_initialized) \ 648 declare_constant(InstanceKlass::fully_initialized) \ 649 \ 650 /*********************************/ \ 651 /* InstanceKlass _misc_flags */ \ 652 /*********************************/ \ 653 \ 654 declare_constant(InstanceKlassFlags::_misc_has_nonstatic_concrete_methods) \ 655 declare_constant(InstanceKlassFlags::_misc_declares_nonstatic_concrete_methods) \ 656 \ 657 declare_constant(JumpData::taken_off_set) \ 658 declare_constant(JumpData::displacement_off_set) \ 659 \ 660 declare_preprocessor_constant("JVMCI::ok", JVMCI::ok) \ 661 declare_preprocessor_constant("JVMCI::dependencies_failed", JVMCI::dependencies_failed) \ 662 declare_preprocessor_constant("JVMCI::cache_full", JVMCI::cache_full) \ 663 declare_preprocessor_constant("JVMCI::code_too_large", JVMCI::code_too_large) \ 664 declare_preprocessor_constant("JVMCI::nmethod_reclaimed", JVMCI::nmethod_reclaimed) \ 665 declare_preprocessor_constant("JVMCI::first_permanent_bailout", JVMCI::first_permanent_bailout) \ 666 \ 667 declare_constant(JVMCIRuntime::none) \ 668 declare_constant(JVMCIRuntime::by_holder) \ 669 declare_constant(JVMCIRuntime::by_full_signature) \ 670 \ 671 declare_constant(Klass::_lh_neutral_value) \ 672 declare_constant(Klass::_lh_instance_slow_path_bit) \ 673 declare_constant(Klass::_lh_log2_element_size_shift) \ 674 declare_constant(Klass::_lh_log2_element_size_mask) \ 675 declare_constant(Klass::_lh_element_type_shift) \ 676 declare_constant(Klass::_lh_element_type_mask) \ 677 declare_constant(Klass::_lh_header_size_shift) \ 678 declare_constant(Klass::_lh_header_size_mask) \ 679 declare_constant(Klass::_lh_array_tag_shift) \ 680 declare_constant(Klass::_lh_array_tag_type_value) \ 681 declare_constant(Klass::_lh_array_tag_obj_value) \ 682 \ 683 declare_constant(markWord::no_hash) \ 684 \ 685 declare_constant(Method::_caller_sensitive) \ 686 declare_constant(Method::_force_inline) \ 687 declare_constant(Method::_dont_inline) \ 688 declare_constant(Method::_hidden) \ 689 declare_constant(Method::_intrinsic_candidate) \ 690 declare_constant(Method::_reserved_stack_access) \ 691 declare_constant(Method::_changes_current_thread) \ 692 \ 693 declare_constant(Method::nonvirtual_vtable_index) \ 694 declare_constant(Method::invalid_vtable_index) \ 695 \ 696 declare_constant(MultiBranchData::per_case_cell_count) \ 697 \ 698 declare_constant(ReceiverTypeData::nonprofiled_count_off_set) \ 699 declare_constant(ReceiverTypeData::receiver_type_row_cell_count) \ 700 declare_constant(ReceiverTypeData::receiver0_offset) \ 701 declare_constant(ReceiverTypeData::count0_offset) \ 702 \ 703 declare_constant(vmIntrinsics::_invokeBasic) \ 704 declare_constant(vmIntrinsics::_linkToVirtual) \ 705 declare_constant(vmIntrinsics::_linkToStatic) \ 706 declare_constant(vmIntrinsics::_linkToSpecial) \ 707 declare_constant(vmIntrinsics::_linkToInterface) \ 708 \ 709 declare_constant(vmSymbols::FIRST_SID) \ 710 declare_constant(vmSymbols::SID_LIMIT) \ 711 712 #define VM_LONG_CONSTANTS(declare_constant, declare_preprocessor_constant) \ 713 declare_constant(InvocationCounter::count_increment) \ 714 declare_constant(InvocationCounter::count_shift) \ 715 \ 716 declare_constant(markWord::hash_shift) \ 717 declare_constant(markWord::monitor_value) \ 718 \ 719 declare_constant(markWord::age_mask_in_place) \ 720 declare_constant(markWord::hash_mask) \ 721 declare_constant(markWord::hash_mask_in_place) \ 722 \ 723 declare_constant(markWord::unlocked_value) \ 724 \ 725 declare_constant(markWord::no_hash_in_place) \ 726 declare_constant(markWord::no_lock_in_place) \ 727 728 #define VM_ADDRESSES(declare_address, declare_preprocessor_address, declare_function) \ 729 declare_function(SharedRuntime::register_finalizer) \ 730 declare_function(SharedRuntime::exception_handler_for_return_address) \ 731 declare_function(SharedRuntime::OSR_migration_end) \ 732 declare_function(SharedRuntime::enable_stack_reserved_zone) \ 733 declare_function(SharedRuntime::frem) \ 734 declare_function(SharedRuntime::drem) \ 735 \ 736 declare_function(os::dll_load) \ 737 declare_function(os::dll_lookup) \ 738 declare_function(os::javaTimeMillis) \ 739 declare_function(os::javaTimeNanos) \ 740 \ 741 declare_function(Deoptimization::fetch_unroll_info) \ 742 declare_function(Deoptimization::uncommon_trap) \ 743 declare_function(Deoptimization::unpack_frames) \ 744 \ 745 declare_function(JVMCIRuntime::new_instance) \ 746 declare_function(JVMCIRuntime::new_array) \ 747 declare_function(JVMCIRuntime::new_multi_array) \ 748 declare_function(JVMCIRuntime::dynamic_new_array) \ 749 declare_function(JVMCIRuntime::dynamic_new_instance) \ 750 \ 751 declare_function(JVMCIRuntime::new_instance_or_null) \ 752 declare_function(JVMCIRuntime::new_array_or_null) \ 753 declare_function(JVMCIRuntime::new_multi_array_or_null) \ 754 declare_function(JVMCIRuntime::dynamic_new_array_or_null) \ 755 declare_function(JVMCIRuntime::dynamic_new_instance_or_null) \ 756 \ 757 declare_function(JVMCIRuntime::invoke_static_method_one_arg) \ 758 \ 759 declare_function(JVMCIRuntime::vm_message) \ 760 declare_function(JVMCIRuntime::identity_hash_code) \ 761 declare_function(JVMCIRuntime::exception_handler_for_pc) \ 762 declare_function(JVMCIRuntime::monitorenter) \ 763 declare_function(JVMCIRuntime::monitorexit) \ 764 declare_function(JVMCIRuntime::object_notify) \ 765 declare_function(JVMCIRuntime::object_notifyAll) \ 766 declare_function(JVMCIRuntime::throw_and_post_jvmti_exception) \ 767 declare_function(JVMCIRuntime::throw_klass_external_name_exception) \ 768 declare_function(JVMCIRuntime::throw_class_cast_exception) \ 769 declare_function(JVMCIRuntime::log_primitive) \ 770 declare_function(JVMCIRuntime::log_object) \ 771 declare_function(JVMCIRuntime::log_printf) \ 772 declare_function(JVMCIRuntime::vm_error) \ 773 declare_function(JVMCIRuntime::load_and_clear_exception) \ 774 G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_pre)) \ 775 G1GC_ONLY(declare_function(JVMCIRuntime::write_barrier_post)) \ 776 declare_function(JVMCIRuntime::validate_object) \ 777 \ 778 declare_function(JVMCIRuntime::test_deoptimize_call_int) 779 780 781 #if INCLUDE_G1GC 782 783 #define VM_STRUCTS_JVMCI_G1GC(nonstatic_field, static_field) \ 784 static_field(HeapRegion, LogOfHRGrainBytes, int) 785 786 #define VM_INT_CONSTANTS_JVMCI_G1GC(declare_constant, declare_constant_with_value, declare_preprocessor_constant) \ 787 declare_constant_with_value("G1CardTable::g1_young_gen", G1CardTable::g1_young_card_val()) \ 788 declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_active_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_active_offset())) \ 789 declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_index_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_index_offset())) \ 790 declare_constant_with_value("G1ThreadLocalData::satb_mark_queue_buffer_offset", in_bytes(G1ThreadLocalData::satb_mark_queue_buffer_offset())) \ 791 declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_index_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_index_offset())) \ 792 declare_constant_with_value("G1ThreadLocalData::dirty_card_queue_buffer_offset", in_bytes(G1ThreadLocalData::dirty_card_queue_buffer_offset())) 793 794 #endif // INCLUDE_G1GC 795 796 797 #ifdef LINUX 798 799 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \ 800 declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT) 801 802 #endif 803 804 805 #ifdef BSD 806 807 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) \ 808 declare_preprocessor_address("RTLD_DEFAULT", RTLD_DEFAULT) 809 810 #endif 811 812 #ifdef AARCH64 813 814 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field) \ 815 static_field(VM_Version, _zva_length, int) \ 816 static_field(StubRoutines::aarch64, _count_positives, address) \ 817 static_field(StubRoutines::aarch64, _count_positives_long, address) \ 818 static_field(VM_Version, _rop_protection, bool) \ 819 volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*) 820 821 #define DECLARE_INT_CPU_FEATURE_CONSTANT(id, name, bit) GENERATE_VM_INT_CONSTANT_ENTRY(VM_Version::CPU_##id) 822 #define VM_INT_CPU_FEATURE_CONSTANTS CPU_FEATURE_FLAGS(DECLARE_INT_CPU_FEATURE_CONSTANT) 823 824 #endif 825 826 #ifdef X86 827 828 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field) \ 829 volatile_nonstatic_field(JavaFrameAnchor, _last_Java_fp, intptr_t*) \ 830 static_field(VM_Version, _has_intel_jcc_erratum, bool) 831 832 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) \ 833 LP64_ONLY(declare_constant(frame::arg_reg_save_area_bytes)) \ 834 declare_constant(frame::interpreter_frame_sender_sp_offset) \ 835 declare_constant(frame::interpreter_frame_last_sp_offset) 836 837 #define DECLARE_LONG_CPU_FEATURE_CONSTANT(id, name, bit) GENERATE_VM_LONG_CONSTANT_ENTRY(VM_Version::CPU_##id) 838 #define VM_LONG_CPU_FEATURE_CONSTANTS CPU_FEATURE_FLAGS(DECLARE_LONG_CPU_FEATURE_CONSTANT) 839 840 #endif 841 842 /* 843 * Dummy defines for architectures that don't use these. 844 */ 845 #ifndef VM_STRUCTS_CPU 846 #define VM_STRUCTS_CPU(nonstatic_field, static_field, unchecked_nonstatic_field, volatile_nonstatic_field, nonproduct_nonstatic_field, c2_nonstatic_field, unchecked_c1_static_field, unchecked_c2_static_field) 847 #endif 848 849 #ifndef VM_INT_CONSTANTS_CPU 850 #define VM_INT_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) 851 #endif 852 853 #ifndef VM_LONG_CONSTANTS_CPU 854 #define VM_LONG_CONSTANTS_CPU(declare_constant, declare_preprocessor_constant, declare_c1_constant, declare_c2_constant, declare_c2_preprocessor_constant) 855 #endif 856 857 #ifndef VM_ADDRESSES_OS 858 #define VM_ADDRESSES_OS(declare_address, declare_preprocessor_address, declare_function) 859 #endif 860 861 // 862 // Instantiation of VMStructEntries, VMTypeEntries and VMIntConstantEntries 863 // 864 865 // These initializers are allowed to access private fields in classes 866 // as long as class VMStructs is a friend 867 VMStructEntry JVMCIVMStructs::localHotSpotVMStructs[] = { 868 VM_STRUCTS(GENERATE_NONSTATIC_VM_STRUCT_ENTRY, 869 GENERATE_STATIC_VM_STRUCT_ENTRY, 870 GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY, 871 GENERATE_NONSTATIC_VM_STRUCT_ENTRY) 872 873 VM_STRUCTS_CPU(GENERATE_NONSTATIC_VM_STRUCT_ENTRY, 874 GENERATE_STATIC_VM_STRUCT_ENTRY, 875 GENERATE_UNCHECKED_NONSTATIC_VM_STRUCT_ENTRY, 876 GENERATE_NONSTATIC_VM_STRUCT_ENTRY, 877 GENERATE_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY, 878 GENERATE_C2_NONSTATIC_VM_STRUCT_ENTRY, 879 GENERATE_C1_UNCHECKED_STATIC_VM_STRUCT_ENTRY, 880 GENERATE_C2_UNCHECKED_STATIC_VM_STRUCT_ENTRY) 881 882 #if INCLUDE_G1GC 883 VM_STRUCTS_JVMCI_G1GC(GENERATE_NONSTATIC_VM_STRUCT_ENTRY, 884 GENERATE_STATIC_VM_STRUCT_ENTRY) 885 #endif 886 887 GENERATE_VM_STRUCT_LAST_ENTRY() 888 }; 889 890 VMTypeEntry JVMCIVMStructs::localHotSpotVMTypes[] = { 891 VM_TYPES(GENERATE_VM_TYPE_ENTRY, 892 GENERATE_TOPLEVEL_VM_TYPE_ENTRY, 893 GENERATE_INTEGER_VM_TYPE_ENTRY, 894 GENERATE_UNSIGNED_INTEGER_VM_TYPE_ENTRY) 895 896 GENERATE_VM_TYPE_LAST_ENTRY() 897 }; 898 899 VMIntConstantEntry JVMCIVMStructs::localHotSpotVMIntConstants[] = { 900 VM_INT_CONSTANTS(GENERATE_VM_INT_CONSTANT_ENTRY, 901 GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY, 902 GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY) 903 904 VM_INT_CONSTANTS_CPU(GENERATE_VM_INT_CONSTANT_ENTRY, 905 GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY, 906 GENERATE_C1_VM_INT_CONSTANT_ENTRY, 907 GENERATE_C2_VM_INT_CONSTANT_ENTRY, 908 GENERATE_C2_PREPROCESSOR_VM_INT_CONSTANT_ENTRY) 909 910 #if INCLUDE_G1GC 911 VM_INT_CONSTANTS_JVMCI_G1GC(GENERATE_VM_INT_CONSTANT_ENTRY, 912 GENERATE_VM_INT_CONSTANT_WITH_VALUE_ENTRY, 913 GENERATE_PREPROCESSOR_VM_INT_CONSTANT_ENTRY) 914 #endif 915 #ifdef VM_INT_CPU_FEATURE_CONSTANTS 916 VM_INT_CPU_FEATURE_CONSTANTS 917 #endif 918 GENERATE_VM_INT_CONSTANT_LAST_ENTRY() 919 }; 920 921 VMLongConstantEntry JVMCIVMStructs::localHotSpotVMLongConstants[] = { 922 VM_LONG_CONSTANTS(GENERATE_VM_LONG_CONSTANT_ENTRY, 923 GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY) 924 925 VM_LONG_CONSTANTS_CPU(GENERATE_VM_LONG_CONSTANT_ENTRY, 926 GENERATE_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY, 927 GENERATE_C1_VM_LONG_CONSTANT_ENTRY, 928 GENERATE_C2_VM_LONG_CONSTANT_ENTRY, 929 GENERATE_C2_PREPROCESSOR_VM_LONG_CONSTANT_ENTRY) 930 #ifdef VM_LONG_CPU_FEATURE_CONSTANTS 931 VM_LONG_CPU_FEATURE_CONSTANTS 932 #endif 933 GENERATE_VM_LONG_CONSTANT_LAST_ENTRY() 934 }; 935 #undef DECLARE_CPU_FEATURE_FLAG 936 937 VMAddressEntry JVMCIVMStructs::localHotSpotVMAddresses[] = { 938 VM_ADDRESSES(GENERATE_VM_ADDRESS_ENTRY, 939 GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY, 940 GENERATE_VM_FUNCTION_ENTRY) 941 VM_ADDRESSES_OS(GENERATE_VM_ADDRESS_ENTRY, 942 GENERATE_PREPROCESSOR_VM_ADDRESS_ENTRY, 943 GENERATE_VM_FUNCTION_ENTRY) 944 945 GENERATE_VM_ADDRESS_LAST_ENTRY() 946 }; 947 948 int JVMCIVMStructs::localHotSpotVMStructs_count() { 949 // Ignore sentinel entry at the end 950 return (sizeof(localHotSpotVMStructs) / sizeof(VMStructEntry)) - 1; 951 } 952 int JVMCIVMStructs::localHotSpotVMTypes_count() { 953 // Ignore sentinel entry at the end 954 return (sizeof(localHotSpotVMTypes) / sizeof(VMTypeEntry)) - 1; 955 } 956 int JVMCIVMStructs::localHotSpotVMIntConstants_count() { 957 // Ignore sentinel entry at the end 958 return (sizeof(localHotSpotVMIntConstants) / sizeof(VMIntConstantEntry)) - 1; 959 } 960 int JVMCIVMStructs::localHotSpotVMLongConstants_count() { 961 // Ignore sentinel entry at the end 962 return (sizeof(localHotSpotVMLongConstants) / sizeof(VMLongConstantEntry)) - 1; 963 } 964 int JVMCIVMStructs::localHotSpotVMAddresses_count() { 965 // Ignore sentinel entry at the end 966 return (sizeof(localHotSpotVMAddresses) / sizeof(VMAddressEntry)) - 1; 967 } 968 969 extern "C" { 970 JNIEXPORT VMStructEntry* jvmciHotSpotVMStructs = JVMCIVMStructs::localHotSpotVMStructs; 971 JNIEXPORT VMTypeEntry* jvmciHotSpotVMTypes = JVMCIVMStructs::localHotSpotVMTypes; 972 JNIEXPORT VMIntConstantEntry* jvmciHotSpotVMIntConstants = JVMCIVMStructs::localHotSpotVMIntConstants; 973 JNIEXPORT VMLongConstantEntry* jvmciHotSpotVMLongConstants = JVMCIVMStructs::localHotSpotVMLongConstants; 974 JNIEXPORT VMAddressEntry* jvmciHotSpotVMAddresses = JVMCIVMStructs::localHotSpotVMAddresses; 975 } 976 977 #ifdef ASSERT 978 // This is used both to check the types of referenced fields and 979 // to ensure that all of the field types are present. 980 void JVMCIVMStructs::init() { 981 VM_STRUCTS(CHECK_NONSTATIC_VM_STRUCT_ENTRY, 982 CHECK_STATIC_VM_STRUCT_ENTRY, 983 CHECK_NO_OP, 984 CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY); 985 986 987 VM_STRUCTS_CPU(CHECK_NONSTATIC_VM_STRUCT_ENTRY, 988 CHECK_STATIC_VM_STRUCT_ENTRY, 989 CHECK_NO_OP, 990 CHECK_VOLATILE_NONSTATIC_VM_STRUCT_ENTRY, 991 CHECK_NONPRODUCT_NONSTATIC_VM_STRUCT_ENTRY, 992 CHECK_C2_NONSTATIC_VM_STRUCT_ENTRY, 993 CHECK_NO_OP, 994 CHECK_NO_OP); 995 996 #if INCLUDE_G1GC 997 VM_STRUCTS_JVMCI_G1GC(CHECK_NONSTATIC_VM_STRUCT_ENTRY, 998 CHECK_STATIC_VM_STRUCT_ENTRY) 999 #endif 1000 1001 VM_TYPES(CHECK_VM_TYPE_ENTRY, 1002 CHECK_SINGLE_ARG_VM_TYPE_NO_OP, 1003 CHECK_SINGLE_ARG_VM_TYPE_NO_OP, 1004 CHECK_SINGLE_ARG_VM_TYPE_NO_OP); 1005 } 1006 1007 void jvmci_vmStructs_init() { 1008 JVMCIVMStructs::init(); 1009 } 1010 #endif // ASSERT