1 /* 2 * Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * This code is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 only, as 7 * published by the Free Software Foundation. 8 * 9 * This code is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * version 2 for more details (a copy is included in the LICENSE file that 13 * accompanied this code). 14 * 15 * You should have received a copy of the GNU General Public License version 16 * 2 along with this work; if not, write to the Free Software Foundation, 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 */ 23 24 #include "precompiled.hpp" 25 #include "classfile/classLoaderData.inline.hpp" 26 #include "classfile/javaClasses.inline.hpp" 27 #include "classfile/stringTable.hpp" 28 #include "classfile/symbolTable.hpp" 29 #include "classfile/systemDictionary.hpp" 30 #include "classfile/vmClasses.hpp" 31 #include "code/scopeDesc.hpp" 32 #include "compiler/compileBroker.hpp" 33 #include "compiler/compilerEvent.hpp" 34 #include "compiler/compilerOracle.hpp" 35 #include "compiler/disassembler.hpp" 36 #include "compiler/oopMap.hpp" 37 #include "interpreter/bytecodeStream.hpp" 38 #include "interpreter/linkResolver.hpp" 39 #include "interpreter/oopMapCache.hpp" 40 #include "jfr/jfrEvents.hpp" 41 #include "jvmci/jvmciCodeInstaller.hpp" 42 #include "jvmci/jvmciCompilerToVM.hpp" 43 #include "jvmci/jvmciRuntime.hpp" 44 #include "logging/log.hpp" 45 #include "logging/logTag.hpp" 46 #include "memory/oopFactory.hpp" 47 #include "memory/universe.hpp" 48 #include "oops/constantPool.inline.hpp" 49 #include "oops/instanceKlass.inline.hpp" 50 #include "oops/instanceMirrorKlass.hpp" 51 #include "oops/method.inline.hpp" 52 #include "oops/objArrayKlass.inline.hpp" 53 #include "oops/typeArrayOop.inline.hpp" 54 #include "prims/jvmtiExport.hpp" 55 #include "prims/methodHandles.hpp" 56 #include "prims/nativeLookup.hpp" 57 #include "runtime/arguments.hpp" 58 #include "runtime/atomic.hpp" 59 #include "runtime/deoptimization.hpp" 60 #include "runtime/fieldDescriptor.inline.hpp" 61 #include "runtime/frame.inline.hpp" 62 #include "runtime/globals_extension.hpp" 63 #include "runtime/interfaceSupport.inline.hpp" 64 #include "runtime/jniHandles.inline.hpp" 65 #include "runtime/keepStackGCProcessed.hpp" 66 #include "runtime/reflection.hpp" 67 #include "runtime/stackFrameStream.inline.hpp" 68 #include "runtime/timerTrace.hpp" 69 #include "runtime/vframe.inline.hpp" 70 #include "runtime/vframe_hp.hpp" 71 #if INCLUDE_JFR 72 #include "jfr/jfr.hpp" 73 #endif 74 75 JVMCIKlassHandle::JVMCIKlassHandle(Thread* thread, Klass* klass) { 76 _thread = thread; 77 _klass = klass; 78 if (klass != nullptr) { 79 _holder = Handle(_thread, klass->klass_holder()); 80 } 81 } 82 83 JVMCIKlassHandle& JVMCIKlassHandle::operator=(Klass* klass) { 84 _klass = klass; 85 if (klass != nullptr) { 86 _holder = Handle(_thread, klass->klass_holder()); 87 } 88 return *this; 89 } 90 91 static void requireInHotSpot(const char* caller, JVMCI_TRAPS) { 92 if (!JVMCIENV->is_hotspot()) { 93 JVMCI_THROW_MSG(IllegalStateException, err_msg("Cannot call %s from JVMCI shared library", caller)); 94 } 95 } 96 97 static void requireNotInHotSpot(const char* caller, JVMCI_TRAPS) { 98 if (JVMCIENV->is_hotspot()) { 99 JVMCI_THROW_MSG(IllegalStateException, err_msg("Cannot call %s from HotSpot", caller)); 100 } 101 } 102 103 class JVMCITraceMark : public StackObj { 104 const char* _msg; 105 public: 106 JVMCITraceMark(const char* msg) { 107 _msg = msg; 108 JVMCI_event_2("Enter %s", _msg); 109 } 110 ~JVMCITraceMark() { 111 JVMCI_event_2(" Exit %s", _msg); 112 } 113 }; 114 115 class JavaArgumentUnboxer : public SignatureIterator { 116 protected: 117 JavaCallArguments* _jca; 118 arrayOop _args; 119 int _index; 120 121 Handle next_arg(BasicType expectedType); 122 123 public: 124 JavaArgumentUnboxer(Symbol* signature, 125 JavaCallArguments* jca, 126 arrayOop args, 127 bool is_static) 128 : SignatureIterator(signature) 129 { 130 this->_return_type = T_ILLEGAL; 131 _jca = jca; 132 _index = 0; 133 _args = args; 134 if (!is_static) { 135 _jca->push_oop(next_arg(T_OBJECT)); 136 } 137 do_parameters_on(this); 138 assert(_index == args->length(), "arg count mismatch with signature"); 139 } 140 141 private: 142 friend class SignatureIterator; // so do_parameters_on can call do_type 143 void do_type(BasicType type) { 144 if (is_reference_type(type)) { 145 _jca->push_oop(next_arg(T_OBJECT)); 146 return; 147 } 148 Handle arg = next_arg(type); 149 int box_offset = java_lang_boxing_object::value_offset(type); 150 switch (type) { 151 case T_BOOLEAN: _jca->push_int(arg->bool_field(box_offset)); break; 152 case T_CHAR: _jca->push_int(arg->char_field(box_offset)); break; 153 case T_SHORT: _jca->push_int(arg->short_field(box_offset)); break; 154 case T_BYTE: _jca->push_int(arg->byte_field(box_offset)); break; 155 case T_INT: _jca->push_int(arg->int_field(box_offset)); break; 156 case T_LONG: _jca->push_long(arg->long_field(box_offset)); break; 157 case T_FLOAT: _jca->push_float(arg->float_field(box_offset)); break; 158 case T_DOUBLE: _jca->push_double(arg->double_field(box_offset)); break; 159 default: ShouldNotReachHere(); 160 } 161 } 162 }; 163 164 Handle JavaArgumentUnboxer::next_arg(BasicType expectedType) { 165 assert(_index < _args->length(), "out of bounds"); 166 oop arg=((objArrayOop) (_args))->obj_at(_index++); 167 assert(expectedType == T_OBJECT || java_lang_boxing_object::is_instance(arg, expectedType), "arg type mismatch"); 168 return Handle(Thread::current(), arg); 169 } 170 171 // Bring the JVMCI compiler thread into the VM state. 172 #define JVMCI_VM_ENTRY_MARK \ 173 MACOS_AARCH64_ONLY(ThreadWXEnable __wx(WXWrite, thread)); \ 174 ThreadInVMfromNative __tiv(thread); \ 175 HandleMarkCleaner __hm(thread); \ 176 JavaThread* THREAD = thread; \ 177 debug_only(VMNativeEntryWrapper __vew;) 178 179 // Native method block that transitions current thread to '_thread_in_vm'. 180 // Note: CompilerThreadCanCallJava must precede JVMCIENV_FROM_JNI so that 181 // the translation of an uncaught exception in the JVMCIEnv does not make 182 // a Java call when __is_hotspot == false. 183 #define C2V_BLOCK(result_type, name, signature) \ 184 JVMCI_VM_ENTRY_MARK; \ 185 ResourceMark rm; \ 186 bool __is_hotspot = env == thread->jni_environment(); \ 187 bool __block_can_call_java = __is_hotspot || !thread->is_Compiler_thread() || CompilerThread::cast(thread)->can_call_java(); \ 188 CompilerThreadCanCallJava ccj(thread, __block_can_call_java); \ 189 JVMCIENV_FROM_JNI(JVMCI::compilation_tick(thread), env); \ 190 191 // Entry to native method implementation that transitions 192 // current thread to '_thread_in_vm'. 193 #define C2V_VMENTRY(result_type, name, signature) \ 194 result_type JNICALL c2v_ ## name signature { \ 195 JavaThread* thread = JavaThread::current_or_null(); \ 196 if (thread == nullptr) { \ 197 env->ThrowNew(JNIJVMCI::InternalError::clazz(), \ 198 err_msg("Cannot call into HotSpot from JVMCI shared library without attaching current thread")); \ 199 return; \ 200 } \ 201 C2V_BLOCK(result_type, name, signature) \ 202 JVMCITraceMark jtm("CompilerToVM::" #name); 203 204 #define C2V_VMENTRY_(result_type, name, signature, result) \ 205 result_type JNICALL c2v_ ## name signature { \ 206 JavaThread* thread = JavaThread::current_or_null(); \ 207 if (thread == nullptr) { \ 208 env->ThrowNew(JNIJVMCI::InternalError::clazz(), \ 209 err_msg("Cannot call into HotSpot from JVMCI shared library without attaching current thread")); \ 210 return result; \ 211 } \ 212 C2V_BLOCK(result_type, name, signature) \ 213 JVMCITraceMark jtm("CompilerToVM::" #name); 214 215 #define C2V_VMENTRY_NULL(result_type, name, signature) C2V_VMENTRY_(result_type, name, signature, nullptr) 216 #define C2V_VMENTRY_0(result_type, name, signature) C2V_VMENTRY_(result_type, name, signature, 0) 217 218 // Entry to native method implementation that does not transition 219 // current thread to '_thread_in_vm'. 220 #define C2V_VMENTRY_PREFIX(result_type, name, signature) \ 221 result_type JNICALL c2v_ ## name signature { \ 222 JavaThread* thread = JavaThread::current_or_null(); 223 224 #define C2V_END } 225 226 #define JNI_THROW(caller, name, msg) do { \ 227 jint __throw_res = env->ThrowNew(JNIJVMCI::name::clazz(), msg); \ 228 if (__throw_res != JNI_OK) { \ 229 JVMCI_event_1("Throwing " #name " in " caller " returned %d", __throw_res); \ 230 } \ 231 return; \ 232 } while (0); 233 234 #define JNI_THROW_(caller, name, msg, result) do { \ 235 jint __throw_res = env->ThrowNew(JNIJVMCI::name::clazz(), msg); \ 236 if (__throw_res != JNI_OK) { \ 237 JVMCI_event_1("Throwing " #name " in " caller " returned %d", __throw_res); \ 238 } \ 239 return result; \ 240 } while (0) 241 242 jobjectArray readConfiguration0(JNIEnv *env, JVMCI_TRAPS); 243 244 C2V_VMENTRY_NULL(jobjectArray, readConfiguration, (JNIEnv* env)) 245 jobjectArray config = readConfiguration0(env, JVMCI_CHECK_NULL); 246 return config; 247 } 248 249 C2V_VMENTRY_NULL(jobject, getFlagValue, (JNIEnv* env, jobject c2vm, jobject name_handle)) 250 #define RETURN_BOXED_LONG(value) jvalue p; p.j = (jlong) (value); JVMCIObject box = JVMCIENV->create_box(T_LONG, &p, JVMCI_CHECK_NULL); return box.as_jobject(); 251 #define RETURN_BOXED_DOUBLE(value) jvalue p; p.d = (jdouble) (value); JVMCIObject box = JVMCIENV->create_box(T_DOUBLE, &p, JVMCI_CHECK_NULL); return box.as_jobject(); 252 JVMCIObject name = JVMCIENV->wrap(name_handle); 253 if (name.is_null()) { 254 JVMCI_THROW_NULL(NullPointerException); 255 } 256 const char* cstring = JVMCIENV->as_utf8_string(name); 257 const JVMFlag* flag = JVMFlag::find_declared_flag(cstring); 258 if (flag == nullptr) { 259 return c2vm; 260 } 261 if (flag->is_bool()) { 262 jvalue prim; 263 prim.z = flag->get_bool(); 264 JVMCIObject box = JVMCIENV->create_box(T_BOOLEAN, &prim, JVMCI_CHECK_NULL); 265 return JVMCIENV->get_jobject(box); 266 } else if (flag->is_ccstr()) { 267 JVMCIObject value = JVMCIENV->create_string(flag->get_ccstr(), JVMCI_CHECK_NULL); 268 return JVMCIENV->get_jobject(value); 269 } else if (flag->is_intx()) { 270 RETURN_BOXED_LONG(flag->get_intx()); 271 } else if (flag->is_int()) { 272 RETURN_BOXED_LONG(flag->get_int()); 273 } else if (flag->is_uint()) { 274 RETURN_BOXED_LONG(flag->get_uint()); 275 } else if (flag->is_uint64_t()) { 276 RETURN_BOXED_LONG(flag->get_uint64_t()); 277 } else if (flag->is_size_t()) { 278 RETURN_BOXED_LONG(flag->get_size_t()); 279 } else if (flag->is_uintx()) { 280 RETURN_BOXED_LONG(flag->get_uintx()); 281 } else if (flag->is_double()) { 282 RETURN_BOXED_DOUBLE(flag->get_double()); 283 } else { 284 JVMCI_ERROR_NULL("VM flag %s has unsupported type %s", flag->name(), flag->type_string()); 285 } 286 #undef RETURN_BOXED_LONG 287 #undef RETURN_BOXED_DOUBLE 288 C2V_END 289 290 // Macros for argument pairs representing a wrapper object and its wrapped VM pointer 291 #define ARGUMENT_PAIR(name) jobject name ## _obj, jlong name ## _pointer 292 #define UNPACK_PAIR(type, name) ((type*) name ## _pointer) 293 294 C2V_VMENTRY_NULL(jbyteArray, getBytecode, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 295 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 296 297 int code_size = method->code_size(); 298 jbyte* reconstituted_code = NEW_RESOURCE_ARRAY(jbyte, code_size); 299 300 guarantee(method->method_holder()->is_rewritten(), "Method's holder should be rewritten"); 301 // iterate over all bytecodes and replace non-Java bytecodes 302 303 for (BytecodeStream s(method); s.next() != Bytecodes::_illegal; ) { 304 Bytecodes::Code code = s.code(); 305 Bytecodes::Code raw_code = s.raw_code(); 306 int bci = s.bci(); 307 int len = s.instruction_size(); 308 309 // Restore original byte code. 310 reconstituted_code[bci] = (jbyte) (s.is_wide()? Bytecodes::_wide : code); 311 if (len > 1) { 312 memcpy(reconstituted_code + (bci + 1), s.bcp()+1, len-1); 313 } 314 315 if (len > 1) { 316 // Restore the big-endian constant pool indexes. 317 // Cf. Rewriter::scan_method 318 switch (code) { 319 case Bytecodes::_getstatic: 320 case Bytecodes::_putstatic: 321 case Bytecodes::_getfield: 322 case Bytecodes::_putfield: 323 case Bytecodes::_invokevirtual: 324 case Bytecodes::_invokespecial: 325 case Bytecodes::_invokestatic: 326 case Bytecodes::_invokeinterface: 327 case Bytecodes::_invokehandle: { 328 int cp_index = Bytes::get_native_u2((address) reconstituted_code + (bci + 1)); 329 Bytes::put_Java_u2((address) reconstituted_code + (bci + 1), (u2) cp_index); 330 break; 331 } 332 333 case Bytecodes::_invokedynamic: { 334 int cp_index = Bytes::get_native_u4((address) reconstituted_code + (bci + 1)); 335 Bytes::put_Java_u4((address) reconstituted_code + (bci + 1), (u4) cp_index); 336 break; 337 } 338 339 default: 340 break; 341 } 342 343 // Not all ldc byte code are rewritten. 344 switch (raw_code) { 345 case Bytecodes::_fast_aldc: { 346 int cpc_index = reconstituted_code[bci + 1] & 0xff; 347 int cp_index = method->constants()->object_to_cp_index(cpc_index); 348 assert(cp_index < method->constants()->length(), "sanity check"); 349 reconstituted_code[bci + 1] = (jbyte) cp_index; 350 break; 351 } 352 353 case Bytecodes::_fast_aldc_w: { 354 int cpc_index = Bytes::get_native_u2((address) reconstituted_code + (bci + 1)); 355 int cp_index = method->constants()->object_to_cp_index(cpc_index); 356 assert(cp_index < method->constants()->length(), "sanity check"); 357 Bytes::put_Java_u2((address) reconstituted_code + (bci + 1), (u2) cp_index); 358 break; 359 } 360 361 default: 362 break; 363 } 364 } 365 } 366 367 JVMCIPrimitiveArray result = JVMCIENV->new_byteArray(code_size, JVMCI_CHECK_NULL); 368 JVMCIENV->copy_bytes_from(reconstituted_code, result, 0, code_size); 369 return JVMCIENV->get_jbyteArray(result); 370 C2V_END 371 372 C2V_VMENTRY_0(jint, getExceptionTableLength, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 373 Method* method = UNPACK_PAIR(Method, method); 374 return method->exception_table_length(); 375 C2V_END 376 377 C2V_VMENTRY_0(jlong, getExceptionTableStart, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 378 Method* method = UNPACK_PAIR(Method, method); 379 if (method->exception_table_length() == 0) { 380 return 0L; 381 } 382 return (jlong) (address) method->exception_table_start(); 383 C2V_END 384 385 C2V_VMENTRY_NULL(jobject, asResolvedJavaMethod, (JNIEnv* env, jobject, jobject executable_handle)) 386 requireInHotSpot("asResolvedJavaMethod", JVMCI_CHECK_NULL); 387 oop executable = JNIHandles::resolve(executable_handle); 388 oop mirror = nullptr; 389 int slot = 0; 390 391 if (executable->klass() == vmClasses::reflect_Constructor_klass()) { 392 mirror = java_lang_reflect_Constructor::clazz(executable); 393 slot = java_lang_reflect_Constructor::slot(executable); 394 } else { 395 assert(executable->klass() == vmClasses::reflect_Method_klass(), "wrong type"); 396 mirror = java_lang_reflect_Method::clazz(executable); 397 slot = java_lang_reflect_Method::slot(executable); 398 } 399 Klass* holder = java_lang_Class::as_Klass(mirror); 400 methodHandle method (THREAD, InstanceKlass::cast(holder)->method_with_idnum(slot)); 401 JVMCIObject result = JVMCIENV->get_jvmci_method(method, JVMCI_CHECK_NULL); 402 return JVMCIENV->get_jobject(result); 403 } 404 405 C2V_VMENTRY_PREFIX(jboolean, updateCompilerThreadCanCallJava, (JNIEnv* env, jobject, jboolean newState)) 406 return CompilerThreadCanCallJava::update(thread, newState) != nullptr; 407 C2V_END 408 409 410 C2V_VMENTRY_NULL(jobject, getResolvedJavaMethod, (JNIEnv* env, jobject, jobject base, jlong offset)) 411 Method* method = nullptr; 412 JVMCIObject base_object = JVMCIENV->wrap(base); 413 if (base_object.is_null()) { 414 method = *((Method**)(offset)); 415 } else { 416 Handle obj = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL); 417 if (obj->is_a(vmClasses::ResolvedMethodName_klass())) { 418 method = (Method*) (intptr_t) obj->long_field(offset); 419 } else { 420 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected type: %s", obj->klass()->external_name())); 421 } 422 } 423 if (method == nullptr) { 424 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected type: %s", JVMCIENV->klass_name(base_object))); 425 } 426 assert (method->is_method(), "invalid read"); 427 JVMCIObject result = JVMCIENV->get_jvmci_method(methodHandle(THREAD, method), JVMCI_CHECK_NULL); 428 return JVMCIENV->get_jobject(result); 429 } 430 431 C2V_VMENTRY_NULL(jobject, getConstantPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass_or_method), jboolean is_klass)) 432 ConstantPool* cp = nullptr; 433 if (UNPACK_PAIR(address, klass_or_method) == nullptr) { 434 JVMCI_THROW_NULL(NullPointerException); 435 } 436 if (!is_klass) { 437 cp = (UNPACK_PAIR(Method, klass_or_method))->constMethod()->constants(); 438 } else { 439 cp = InstanceKlass::cast(UNPACK_PAIR(Klass, klass_or_method))->constants(); 440 } 441 442 JVMCIObject result = JVMCIENV->get_jvmci_constant_pool(constantPoolHandle(THREAD, cp), JVMCI_CHECK_NULL); 443 return JVMCIENV->get_jobject(result); 444 } 445 446 C2V_VMENTRY_NULL(jobject, getResolvedJavaType0, (JNIEnv* env, jobject, jobject base, jlong offset, jboolean compressed)) 447 JVMCIObject base_object = JVMCIENV->wrap(base); 448 if (base_object.is_null()) { 449 JVMCI_THROW_MSG_NULL(NullPointerException, "base object is null"); 450 } 451 452 const char* base_desc = nullptr; 453 JVMCIKlassHandle klass(THREAD); 454 if (offset == oopDesc::klass_offset_in_bytes()) { 455 if (JVMCIENV->isa_HotSpotObjectConstantImpl(base_object)) { 456 Handle base_oop = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL); 457 klass = base_oop->klass(); 458 } else { 459 goto unexpected; 460 } 461 } else if (!compressed) { 462 if (JVMCIENV->isa_HotSpotConstantPool(base_object)) { 463 ConstantPool* cp = JVMCIENV->asConstantPool(base_object); 464 if (offset == in_bytes(ConstantPool::pool_holder_offset())) { 465 klass = cp->pool_holder(); 466 } else { 467 base_desc = FormatBufferResource("[constant pool for %s]", cp->pool_holder()->signature_name()); 468 goto unexpected; 469 } 470 } else if (JVMCIENV->isa_HotSpotResolvedObjectTypeImpl(base_object)) { 471 Klass* base_klass = JVMCIENV->asKlass(base_object); 472 if (offset == in_bytes(Klass::subklass_offset())) { 473 klass = base_klass->subklass(); 474 } else if (offset == in_bytes(Klass::super_offset())) { 475 klass = base_klass->super(); 476 } else if (offset == in_bytes(Klass::next_sibling_offset())) { 477 klass = base_klass->next_sibling(); 478 } else if (offset == in_bytes(ObjArrayKlass::element_klass_offset()) && base_klass->is_objArray_klass()) { 479 klass = ObjArrayKlass::cast(base_klass)->element_klass(); 480 } else if (offset >= in_bytes(Klass::primary_supers_offset()) && 481 offset < in_bytes(Klass::primary_supers_offset()) + (int) (sizeof(Klass*) * Klass::primary_super_limit()) && 482 offset % sizeof(Klass*) == 0) { 483 // Offset is within the primary supers array 484 int index = (int) ((offset - in_bytes(Klass::primary_supers_offset())) / sizeof(Klass*)); 485 klass = base_klass->primary_super_of_depth(index); 486 } else { 487 base_desc = FormatBufferResource("[%s]", base_klass->signature_name()); 488 goto unexpected; 489 } 490 } else if (JVMCIENV->isa_HotSpotObjectConstantImpl(base_object)) { 491 Handle base_oop = JVMCIENV->asConstant(base_object, JVMCI_CHECK_NULL); 492 if (base_oop->is_a(vmClasses::Class_klass())) { 493 if (offset == java_lang_Class::klass_offset()) { 494 klass = java_lang_Class::as_Klass(base_oop()); 495 } else if (offset == java_lang_Class::array_klass_offset()) { 496 klass = java_lang_Class::array_klass_acquire(base_oop()); 497 } else { 498 base_desc = FormatBufferResource("[Class=%s]", java_lang_Class::as_Klass(base_oop())->signature_name()); 499 goto unexpected; 500 } 501 } else { 502 if (!base_oop.is_null()) { 503 base_desc = FormatBufferResource("[%s]", base_oop()->klass()->signature_name()); 504 } 505 goto unexpected; 506 } 507 } else if (JVMCIENV->isa_HotSpotMethodData(base_object)) { 508 jlong base_address = (intptr_t) JVMCIENV->asMethodData(base_object); 509 klass = *((Klass**) (intptr_t) (base_address + offset)); 510 if (klass == nullptr || !klass->is_loader_alive()) { 511 // Klasses in methodData might be concurrently unloading so return null in that case. 512 return nullptr; 513 } 514 } else { 515 goto unexpected; 516 } 517 } else { 518 goto unexpected; 519 } 520 521 { 522 if (klass == nullptr) { 523 return nullptr; 524 } 525 JVMCIObject result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL); 526 return JVMCIENV->get_jobject(result); 527 } 528 529 unexpected: 530 JVMCI_THROW_MSG_NULL(IllegalArgumentException, 531 err_msg("Unexpected arguments: %s%s " JLONG_FORMAT " %s", 532 JVMCIENV->klass_name(base_object), base_desc == nullptr ? "" : base_desc, 533 offset, compressed ? "true" : "false")); 534 } 535 536 C2V_VMENTRY_NULL(jobject, findUniqueConcreteMethod, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), ARGUMENT_PAIR(method))) 537 methodHandle method (THREAD, UNPACK_PAIR(Method, method)); 538 InstanceKlass* holder = InstanceKlass::cast(UNPACK_PAIR(Klass, klass)); 539 if (holder->is_interface()) { 540 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Interface %s should be handled in Java code", holder->external_name())); 541 } 542 if (method->can_be_statically_bound()) { 543 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Effectively static method %s.%s should be handled in Java code", method->method_holder()->external_name(), method->external_name())); 544 } 545 546 methodHandle ucm; 547 { 548 MutexLocker locker(Compile_lock); 549 ucm = methodHandle(THREAD, Dependencies::find_unique_concrete_method(holder, method())); 550 } 551 JVMCIObject result = JVMCIENV->get_jvmci_method(ucm, JVMCI_CHECK_NULL); 552 return JVMCIENV->get_jobject(result); 553 C2V_END 554 555 C2V_VMENTRY_NULL(jobject, getImplementor, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 556 Klass* klass = UNPACK_PAIR(Klass, klass); 557 if (!klass->is_interface()) { 558 THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(), 559 err_msg("Expected interface type, got %s", klass->external_name())); 560 } 561 InstanceKlass* iklass = InstanceKlass::cast(klass); 562 JVMCIKlassHandle handle(THREAD, iklass->implementor()); 563 JVMCIObject implementor = JVMCIENV->get_jvmci_type(handle, JVMCI_CHECK_NULL); 564 return JVMCIENV->get_jobject(implementor); 565 C2V_END 566 567 C2V_VMENTRY_0(jboolean, methodIsIgnoredBySecurityStackWalk,(JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 568 Method* method = UNPACK_PAIR(Method, method); 569 return method->is_ignored_by_security_stack_walk(); 570 C2V_END 571 572 C2V_VMENTRY_0(jboolean, isCompilable,(JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 573 Method* method = UNPACK_PAIR(Method, method); 574 // Skip redefined methods 575 if (method->is_old()) { 576 return false; 577 } 578 return !method->is_not_compilable(CompLevel_full_optimization); 579 C2V_END 580 581 C2V_VMENTRY_0(jboolean, hasNeverInlineDirective,(JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 582 methodHandle method (THREAD, UNPACK_PAIR(Method, method)); 583 return !Inline || CompilerOracle::should_not_inline(method) || method->dont_inline(); 584 C2V_END 585 586 C2V_VMENTRY_0(jboolean, shouldInlineMethod,(JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 587 methodHandle method (THREAD, UNPACK_PAIR(Method, method)); 588 return CompilerOracle::should_inline(method) || method->force_inline(); 589 C2V_END 590 591 C2V_VMENTRY_NULL(jobject, lookupType, (JNIEnv* env, jobject, jstring jname, ARGUMENT_PAIR(accessing_klass), jint accessing_klass_loader, jboolean resolve)) 592 CompilerThreadCanCallJava canCallJava(thread, resolve); // Resolution requires Java calls 593 JVMCIObject name = JVMCIENV->wrap(jname); 594 const char* str = JVMCIENV->as_utf8_string(name); 595 TempNewSymbol class_name = SymbolTable::new_symbol(str); 596 597 if (class_name->utf8_length() <= 1) { 598 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Primitive type %s should be handled in Java code", str)); 599 } 600 601 #ifdef ASSERT 602 const char* val = Arguments::PropertyList_get_value(Arguments::system_properties(), "test.jvmci.lookupTypeException"); 603 if (val != nullptr) { 604 if (strstr(val, "<trace>") != nullptr) { 605 tty->print_cr("CompilerToVM.lookupType: %s", str); 606 } else if (strstr(str, val) != nullptr) { 607 THROW_MSG_NULL(vmSymbols::java_lang_Exception(), 608 err_msg("lookupTypeException: %s", str)); 609 } 610 } 611 #endif 612 613 JVMCIKlassHandle resolved_klass(THREAD); 614 Klass* accessing_klass = UNPACK_PAIR(Klass, accessing_klass); 615 Handle class_loader; 616 Handle protection_domain; 617 if (accessing_klass != nullptr) { 618 class_loader = Handle(THREAD, accessing_klass->class_loader()); 619 protection_domain = Handle(THREAD, accessing_klass->protection_domain()); 620 } else { 621 switch (accessing_klass_loader) { 622 case 0: break; // class_loader is already null, the boot loader 623 case 1: class_loader = Handle(THREAD, SystemDictionary::java_platform_loader()); break; 624 case 2: class_loader = Handle(THREAD, SystemDictionary::java_system_loader()); break; 625 default: 626 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Illegal class loader value: %d", accessing_klass_loader)); 627 } 628 JVMCIENV->runtime()->initialize(JVMCI_CHECK_NULL); 629 } 630 631 if (resolve) { 632 resolved_klass = SystemDictionary::resolve_or_fail(class_name, class_loader, protection_domain, true, CHECK_NULL); 633 } else { 634 if (Signature::has_envelope(class_name)) { 635 // This is a name from a signature. Strip off the trimmings. 636 // Call recursive to keep scope of strippedsym. 637 TempNewSymbol strippedsym = Signature::strip_envelope(class_name); 638 resolved_klass = SystemDictionary::find_instance_klass(THREAD, strippedsym, 639 class_loader, 640 protection_domain); 641 } else if (Signature::is_array(class_name)) { 642 SignatureStream ss(class_name, false); 643 int ndim = ss.skip_array_prefix(); 644 if (ss.type() == T_OBJECT) { 645 Symbol* strippedsym = ss.as_symbol(); 646 resolved_klass = SystemDictionary::find_instance_klass(THREAD, strippedsym, 647 class_loader, 648 protection_domain); 649 if (!resolved_klass.is_null()) { 650 resolved_klass = resolved_klass->array_klass(ndim, CHECK_NULL); 651 } 652 } else { 653 resolved_klass = Universe::typeArrayKlass(ss.type())->array_klass(ndim, CHECK_NULL); 654 } 655 } else { 656 resolved_klass = SystemDictionary::find_instance_klass(THREAD, class_name, 657 class_loader, 658 protection_domain); 659 } 660 } 661 JVMCIObject result = JVMCIENV->get_jvmci_type(resolved_klass, JVMCI_CHECK_NULL); 662 return JVMCIENV->get_jobject(result); 663 C2V_END 664 665 C2V_VMENTRY_NULL(jobject, getArrayType, (JNIEnv* env, jobject, jchar type_char, ARGUMENT_PAIR(klass))) 666 JVMCIKlassHandle array_klass(THREAD); 667 Klass* klass = UNPACK_PAIR(Klass, klass); 668 if (klass == nullptr) { 669 BasicType type = JVMCIENV->typeCharToBasicType(type_char, JVMCI_CHECK_NULL); 670 if (type == T_VOID) { 671 return nullptr; 672 } 673 array_klass = Universe::typeArrayKlass(type); 674 if (array_klass == nullptr) { 675 JVMCI_THROW_MSG_NULL(InternalError, err_msg("No array klass for primitive type %s", type2name(type))); 676 } 677 } else { 678 array_klass = klass->array_klass(CHECK_NULL); 679 } 680 JVMCIObject result = JVMCIENV->get_jvmci_type(array_klass, JVMCI_CHECK_NULL); 681 return JVMCIENV->get_jobject(result); 682 C2V_END 683 684 C2V_VMENTRY_NULL(jobject, lookupClass, (JNIEnv* env, jobject, jclass mirror)) 685 requireInHotSpot("lookupClass", JVMCI_CHECK_NULL); 686 if (mirror == nullptr) { 687 return nullptr; 688 } 689 JVMCIKlassHandle klass(THREAD); 690 klass = java_lang_Class::as_Klass(JNIHandles::resolve(mirror)); 691 if (klass == nullptr) { 692 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "Primitive classes are unsupported"); 693 } 694 JVMCIObject result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL); 695 return JVMCIENV->get_jobject(result); 696 C2V_END 697 698 C2V_VMENTRY_NULL(jobject, lookupJClass, (JNIEnv* env, jobject, jlong jclass_value)) 699 if (jclass_value == 0L) { 700 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "jclass must not be zero"); 701 } 702 jclass mirror = reinterpret_cast<jclass>(jclass_value); 703 // Since the jclass_value is passed as a jlong, we perform additional checks to prevent the caller from accidentally 704 // sending a value that is not a JNI handle. 705 if (JNIHandles::handle_type(thread, mirror) == JNIInvalidRefType) { 706 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "jclass is not a valid JNI reference"); 707 } 708 oop obj = JNIHandles::resolve(mirror); 709 if (!java_lang_Class::is_instance(obj)) { 710 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "jclass must be a reference to the Class object"); 711 } 712 JVMCIKlassHandle klass(THREAD, java_lang_Class::as_Klass(obj)); 713 JVMCIObject result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL); 714 return JVMCIENV->get_jobject(result); 715 C2V_END 716 717 C2V_VMENTRY_0(jlong, getJObjectValue, (JNIEnv* env, jobject, jobject constant_jobject)) 718 requireNotInHotSpot("getJObjectValue", JVMCI_CHECK_0); 719 // Ensure that current JNI handle scope is not the top-most JNIHandleBlock as handles 720 // in that scope are only released when the thread exits. 721 if (!THREAD->has_last_Java_frame() && THREAD->active_handles()->pop_frame_link() == nullptr) { 722 JVMCI_THROW_MSG_0(IllegalStateException, err_msg("Cannot call getJObjectValue without Java frame anchor or a pushed JNI handle block")); 723 } 724 JVMCIObject constant = JVMCIENV->wrap(constant_jobject); 725 Handle constant_value = JVMCIENV->asConstant(constant, JVMCI_CHECK_0); 726 jobject jni_handle = JNIHandles::make_local(THREAD, constant_value()); 727 return reinterpret_cast<jlong>(jni_handle); 728 C2V_END 729 730 C2V_VMENTRY_NULL(jobject, getUncachedStringInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index)) 731 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 732 constantTag tag = cp->tag_at(index); 733 if (!tag.is_string()) { 734 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected constant pool tag at index %d: %d", index, tag.value())); 735 } 736 oop obj = cp->uncached_string_at(index, CHECK_NULL); 737 return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(obj)); 738 C2V_END 739 740 C2V_VMENTRY_NULL(jobject, lookupConstantInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint cp_index, bool resolve)) 741 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 742 oop obj; 743 if (!resolve) { 744 bool found_it; 745 obj = cp->find_cached_constant_at(cp_index, found_it, CHECK_NULL); 746 if (!found_it) { 747 return nullptr; 748 } 749 } else { 750 obj = cp->resolve_possibly_cached_constant_at(cp_index, CHECK_NULL); 751 } 752 constantTag tag = cp->tag_at(cp_index); 753 if (tag.is_dynamic_constant()) { 754 if (obj == nullptr) { 755 return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_NULL_POINTER()); 756 } 757 BasicType bt = Signature::basic_type(cp->uncached_signature_ref_at(cp_index)); 758 if (!is_reference_type(bt)) { 759 if (!is_java_primitive(bt)) { 760 return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_ILLEGAL()); 761 } 762 763 // Convert standard box (e.g. java.lang.Integer) to JVMCI box (e.g. jdk.vm.ci.meta.PrimitiveConstant) 764 jvalue value; 765 jlong raw_value; 766 jchar type_char; 767 BasicType bt2 = java_lang_boxing_object::get_value(obj, &value); 768 assert(bt2 == bt, ""); 769 switch (bt2) { 770 case T_LONG: type_char = 'J'; raw_value = value.j; break; 771 case T_DOUBLE: type_char = 'D'; raw_value = value.j; break; 772 case T_FLOAT: type_char = 'F'; raw_value = value.i; break; 773 case T_INT: type_char = 'I'; raw_value = value.i; break; 774 case T_SHORT: type_char = 'S'; raw_value = value.s; break; 775 case T_BYTE: type_char = 'B'; raw_value = value.b; break; 776 case T_CHAR: type_char = 'C'; raw_value = value.c; break; 777 case T_BOOLEAN: type_char = 'Z'; raw_value = value.z; break; 778 default: return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_ILLEGAL()); 779 } 780 781 JVMCIObject result = JVMCIENV->call_JavaConstant_forPrimitive(type_char, raw_value, JVMCI_CHECK_NULL); 782 return JVMCIENV->get_jobject(result); 783 } 784 } 785 #ifdef ASSERT 786 // Support for testing an OOME raised in a context where the current thread cannot call Java 787 // 1. Put -Dtest.jvmci.oome_in_lookupConstantInPool=<trace> on the command line to 788 // discover possible values for step 2. 789 // Example output: 790 // 791 // CompilerToVM.lookupConstantInPool: "Overflow: String length out of range"{0x00000007ffeb2960} 792 // CompilerToVM.lookupConstantInPool: "null"{0x00000007ffebdfe8} 793 // CompilerToVM.lookupConstantInPool: "Maximum lock count exceeded"{0x00000007ffec4f90} 794 // CompilerToVM.lookupConstantInPool: "Negative length"{0x00000007ffec4468} 795 // 796 // 2. Choose a value shown in step 1. 797 // Example: -Dtest.jvmci.oome_in_lookupConstantInPool=Negative 798 const char* val = Arguments::PropertyList_get_value(Arguments::system_properties(), "test.jvmci.oome_in_lookupConstantInPool"); 799 if (val != nullptr) { 800 const char* str = obj->print_value_string(); 801 if (strstr(val, "<trace>") != nullptr) { 802 tty->print_cr("CompilerToVM.lookupConstantInPool: %s", str); 803 } else if (strstr(str, val) != nullptr) { 804 Handle garbage; 805 while (true) { 806 // Trigger an OutOfMemoryError 807 objArrayOop next = oopFactory::new_objectArray(0x7FFFFFFF, CHECK_NULL); 808 next->obj_at_put(0, garbage()); 809 garbage = Handle(THREAD, next); 810 } 811 } 812 } 813 #endif 814 return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(obj)); 815 C2V_END 816 817 C2V_VMENTRY_NULL(jobjectArray, resolveBootstrapMethod, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index)) 818 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 819 constantTag tag = cp->tag_at(index); 820 bool is_indy = tag.is_invoke_dynamic(); 821 bool is_condy = tag.is_dynamic_constant(); 822 if (!(is_condy || is_indy)) { 823 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Unexpected constant pool tag at index %d: %d", index, tag.value())); 824 } 825 // Get the indy entry based on CP index 826 int indy_index = -1; 827 if (is_indy) { 828 for (int i = 0; i < cp->resolved_indy_entries_length(); i++) { 829 if (cp->resolved_indy_entry_at(i)->constant_pool_index() == index) { 830 indy_index = i; 831 } 832 } 833 } 834 // Resolve the bootstrap specifier, its name, type, and static arguments 835 BootstrapInfo bootstrap_specifier(cp, index, indy_index); 836 Handle bsm = bootstrap_specifier.resolve_bsm(CHECK_NULL); 837 838 // call java.lang.invoke.MethodHandle::asFixedArity() -> MethodHandle 839 // to get a DirectMethodHandle from which we can then extract a Method* 840 JavaValue result(T_OBJECT); 841 JavaCalls::call_virtual(&result, 842 bsm, 843 vmClasses::MethodHandle_klass(), 844 vmSymbols::asFixedArity_name(), 845 vmSymbols::asFixedArity_signature(), 846 CHECK_NULL); 847 bsm = Handle(THREAD, result.get_oop()); 848 849 // Check assumption about getting a DirectMethodHandle 850 if (!java_lang_invoke_DirectMethodHandle::is_instance(bsm())) { 851 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Unexpected MethodHandle subclass: %s", bsm->klass()->external_name())); 852 } 853 // Create return array describing the bootstrap method invocation (BSMI) 854 JVMCIObjectArray bsmi = JVMCIENV->new_Object_array(4, JVMCI_CHECK_NULL); 855 856 // Extract Method* and wrap it in a ResolvedJavaMethod 857 Handle member = Handle(THREAD, java_lang_invoke_DirectMethodHandle::member(bsm())); 858 JVMCIObject bsmi_method = JVMCIENV->get_jvmci_method(methodHandle(THREAD, java_lang_invoke_MemberName::vmtarget(member())), JVMCI_CHECK_NULL); 859 JVMCIENV->put_object_at(bsmi, 0, bsmi_method); 860 861 JVMCIObject bsmi_name = JVMCIENV->create_string(bootstrap_specifier.name(), JVMCI_CHECK_NULL); 862 JVMCIENV->put_object_at(bsmi, 1, bsmi_name); 863 864 Handle type_arg = bootstrap_specifier.type_arg(); 865 JVMCIObject bsmi_type = JVMCIENV->get_object_constant(type_arg()); 866 JVMCIENV->put_object_at(bsmi, 2, bsmi_type); 867 868 Handle arg_values = bootstrap_specifier.arg_values(); 869 if (arg_values.not_null()) { 870 if (!arg_values->is_array()) { 871 JVMCIENV->put_object_at(bsmi, 3, JVMCIENV->get_object_constant(arg_values())); 872 } else if (arg_values->is_objArray()) { 873 objArrayHandle args_array = objArrayHandle(THREAD, (objArrayOop) arg_values()); 874 int len = args_array->length(); 875 JVMCIObjectArray arguments = JVMCIENV->new_JavaConstant_array(len, JVMCI_CHECK_NULL); 876 JVMCIENV->put_object_at(bsmi, 3, arguments); 877 for (int i = 0; i < len; i++) { 878 oop x = args_array->obj_at(i); 879 if (x != nullptr) { 880 JVMCIENV->put_object_at(arguments, i, JVMCIENV->get_object_constant(x)); 881 } else { 882 JVMCIENV->put_object_at(arguments, i, JVMCIENV->get_JavaConstant_NULL_POINTER()); 883 } 884 } 885 } else if (arg_values->is_typeArray()) { 886 typeArrayHandle bsci = typeArrayHandle(THREAD, (typeArrayOop) arg_values()); 887 JVMCIPrimitiveArray arguments = JVMCIENV->new_intArray(bsci->length(), JVMCI_CHECK_NULL); 888 JVMCIENV->put_object_at(bsmi, 3, arguments); 889 for (int i = 0; i < bsci->length(); i++) { 890 JVMCIENV->put_int_at(arguments, i, bsci->int_at(i)); 891 } 892 } 893 } 894 return JVMCIENV->get_jobjectArray(bsmi); 895 C2V_END 896 897 C2V_VMENTRY_0(jint, bootstrapArgumentIndexAt, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint cpi, jint index)) 898 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 899 return cp->bootstrap_argument_index_at(cpi, index); 900 C2V_END 901 902 C2V_VMENTRY_0(jint, lookupNameAndTypeRefIndexInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index, jint opcode)) 903 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 904 return cp->name_and_type_ref_index_at(index, (Bytecodes::Code)opcode); 905 C2V_END 906 907 C2V_VMENTRY_NULL(jobject, lookupNameInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint which, jint opcode)) 908 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 909 JVMCIObject sym = JVMCIENV->create_string(cp->name_ref_at(which, (Bytecodes::Code)opcode), JVMCI_CHECK_NULL); 910 return JVMCIENV->get_jobject(sym); 911 C2V_END 912 913 C2V_VMENTRY_NULL(jobject, lookupSignatureInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint which, jint opcode)) 914 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 915 JVMCIObject sym = JVMCIENV->create_string(cp->signature_ref_at(which, (Bytecodes::Code)opcode), JVMCI_CHECK_NULL); 916 return JVMCIENV->get_jobject(sym); 917 C2V_END 918 919 C2V_VMENTRY_0(jint, lookupKlassRefIndexInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index, jint opcode)) 920 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 921 return cp->klass_ref_index_at(index, (Bytecodes::Code)opcode); 922 C2V_END 923 924 C2V_VMENTRY_NULL(jobject, resolveTypeInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index)) 925 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 926 Klass* klass = cp->klass_at(index, CHECK_NULL); 927 JVMCIKlassHandle resolved_klass(THREAD, klass); 928 if (resolved_klass->is_instance_klass()) { 929 InstanceKlass::cast(resolved_klass())->link_class(CHECK_NULL); 930 if (!InstanceKlass::cast(resolved_klass())->is_linked()) { 931 // link_class() should not return here if there is an issue. 932 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Class %s must be linked", resolved_klass()->external_name())); 933 } 934 } 935 JVMCIObject klassObject = JVMCIENV->get_jvmci_type(resolved_klass, JVMCI_CHECK_NULL); 936 return JVMCIENV->get_jobject(klassObject); 937 C2V_END 938 939 C2V_VMENTRY_NULL(jobject, lookupKlassInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index)) 940 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 941 Klass* loading_klass = cp->pool_holder(); 942 bool is_accessible = false; 943 JVMCIKlassHandle klass(THREAD, JVMCIRuntime::get_klass_by_index(cp, index, is_accessible, loading_klass)); 944 Symbol* symbol = nullptr; 945 if (klass.is_null()) { 946 constantTag tag = cp->tag_at(index); 947 if (tag.is_klass()) { 948 // The klass has been inserted into the constant pool 949 // very recently. 950 klass = cp->resolved_klass_at(index); 951 } else if (tag.is_symbol()) { 952 symbol = cp->symbol_at(index); 953 } else { 954 if (!tag.is_unresolved_klass()) { 955 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Expected %d at index %d, got %d", JVM_CONSTANT_UnresolvedClassInError, index, tag.value())); 956 } 957 symbol = cp->klass_name_at(index); 958 } 959 } 960 JVMCIObject result; 961 if (!klass.is_null()) { 962 result = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL); 963 } else { 964 result = JVMCIENV->create_string(symbol, JVMCI_CHECK_NULL); 965 } 966 return JVMCIENV->get_jobject(result); 967 C2V_END 968 969 C2V_VMENTRY_NULL(jobject, lookupAppendixInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint which, jint opcode)) 970 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 971 oop appendix_oop = ConstantPool::appendix_at_if_loaded(cp, which, Bytecodes::Code(opcode)); 972 return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(appendix_oop)); 973 C2V_END 974 975 C2V_VMENTRY_NULL(jobject, lookupMethodInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index, jbyte opcode, ARGUMENT_PAIR(caller))) 976 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 977 methodHandle caller(THREAD, UNPACK_PAIR(Method, caller)); 978 InstanceKlass* pool_holder = cp->pool_holder(); 979 Bytecodes::Code bc = (Bytecodes::Code) (((int) opcode) & 0xFF); 980 methodHandle method(THREAD, JVMCIRuntime::get_method_by_index(cp, index, bc, pool_holder)); 981 JFR_ONLY(if (method.not_null()) Jfr::on_resolution(caller(), method(), CHECK_NULL);) 982 JVMCIObject result = JVMCIENV->get_jvmci_method(method, JVMCI_CHECK_NULL); 983 return JVMCIENV->get_jobject(result); 984 C2V_END 985 986 C2V_VMENTRY_NULL(jobject, resolveFieldInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index, ARGUMENT_PAIR(method), jbyte opcode, jintArray info_handle)) 987 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 988 Bytecodes::Code code = (Bytecodes::Code)(((int) opcode) & 0xFF); 989 fieldDescriptor fd; 990 methodHandle mh(THREAD, UNPACK_PAIR(Method, method)); 991 992 Bytecodes::Code bc = (Bytecodes::Code) (((int) opcode) & 0xFF); 993 int holder_index = cp->klass_ref_index_at(index, bc); 994 if (!cp->tag_at(holder_index).is_klass() && !THREAD->can_call_java()) { 995 // If the holder is not resolved in the constant pool and the current 996 // thread cannot call Java, return null. This avoids a Java call 997 // in LinkInfo to load the holder. 998 Symbol* klass_name = cp->klass_ref_at_noresolve(index, bc); 999 return nullptr; 1000 } 1001 1002 LinkInfo link_info(cp, index, mh, code, CHECK_NULL); 1003 LinkResolver::resolve_field(fd, link_info, Bytecodes::java_code(code), false, CHECK_NULL); 1004 JVMCIPrimitiveArray info = JVMCIENV->wrap(info_handle); 1005 if (info.is_null() || JVMCIENV->get_length(info) != 4) { 1006 JVMCI_ERROR_NULL("info must not be null and have a length of 4"); 1007 } 1008 JVMCIENV->put_int_at(info, 0, fd.access_flags().as_int()); 1009 JVMCIENV->put_int_at(info, 1, fd.offset()); 1010 JVMCIENV->put_int_at(info, 2, fd.index()); 1011 JVMCIENV->put_int_at(info, 3, fd.field_flags().as_uint()); 1012 JVMCIKlassHandle handle(THREAD, fd.field_holder()); 1013 JVMCIObject field_holder = JVMCIENV->get_jvmci_type(handle, JVMCI_CHECK_NULL); 1014 return JVMCIENV->get_jobject(field_holder); 1015 C2V_END 1016 1017 C2V_VMENTRY_0(jint, getVtableIndexForInterfaceMethod, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), ARGUMENT_PAIR(method))) 1018 Klass* klass = UNPACK_PAIR(Klass, klass); 1019 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1020 InstanceKlass* holder = method->method_holder(); 1021 if (klass->is_interface()) { 1022 JVMCI_THROW_MSG_0(InternalError, err_msg("Interface %s should be handled in Java code", klass->external_name())); 1023 } 1024 if (!holder->is_interface()) { 1025 JVMCI_THROW_MSG_0(InternalError, err_msg("Method %s is not held by an interface, this case should be handled in Java code", method->name_and_sig_as_C_string())); 1026 } 1027 if (!klass->is_instance_klass()) { 1028 JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s must be instance klass", klass->external_name())); 1029 } 1030 if (!InstanceKlass::cast(klass)->is_linked()) { 1031 JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s must be linked", klass->external_name())); 1032 } 1033 if (!klass->is_subtype_of(holder)) { 1034 JVMCI_THROW_MSG_0(InternalError, err_msg("Class %s does not implement interface %s", klass->external_name(), holder->external_name())); 1035 } 1036 return LinkResolver::vtable_index_of_interface_method(klass, method); 1037 C2V_END 1038 1039 C2V_VMENTRY_NULL(jobject, resolveMethod, (JNIEnv* env, jobject, ARGUMENT_PAIR(receiver), ARGUMENT_PAIR(method), ARGUMENT_PAIR(caller))) 1040 Klass* recv_klass = UNPACK_PAIR(Klass, receiver); 1041 Klass* caller_klass = UNPACK_PAIR(Klass, caller); 1042 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1043 1044 Klass* resolved = method->method_holder(); 1045 Symbol* h_name = method->name(); 1046 Symbol* h_signature = method->signature(); 1047 1048 if (MethodHandles::is_signature_polymorphic_method(method())) { 1049 // Signature polymorphic methods are already resolved, JVMCI just returns null in this case. 1050 return nullptr; 1051 } 1052 1053 if (method->name() == vmSymbols::clone_name() && 1054 resolved == vmClasses::Object_klass() && 1055 recv_klass->is_array_klass()) { 1056 // Resolution of the clone method on arrays always returns Object.clone even though that method 1057 // has protected access. There's some trickery in the access checking to make this all work out 1058 // so it's necessary to pass in the array class as the resolved class to properly trigger this. 1059 // Otherwise it's impossible to resolve the array clone methods through JVMCI. See 1060 // LinkResolver::check_method_accessability for the matching logic. 1061 resolved = recv_klass; 1062 } 1063 1064 LinkInfo link_info(resolved, h_name, h_signature, caller_klass); 1065 Method* m = nullptr; 1066 // Only do exact lookup if receiver klass has been linked. Otherwise, 1067 // the vtable has not been setup, and the LinkResolver will fail. 1068 if (recv_klass->is_array_klass() || 1069 (InstanceKlass::cast(recv_klass)->is_linked() && !recv_klass->is_interface())) { 1070 if (resolved->is_interface()) { 1071 m = LinkResolver::resolve_interface_call_or_null(recv_klass, link_info); 1072 } else { 1073 m = LinkResolver::resolve_virtual_call_or_null(recv_klass, link_info); 1074 } 1075 } 1076 1077 if (m == nullptr) { 1078 // Return null if there was a problem with lookup (uninitialized class, etc.) 1079 return nullptr; 1080 } 1081 1082 JVMCIObject result = JVMCIENV->get_jvmci_method(methodHandle(THREAD, m), JVMCI_CHECK_NULL); 1083 return JVMCIENV->get_jobject(result); 1084 C2V_END 1085 1086 C2V_VMENTRY_0(jboolean, hasFinalizableSubclass,(JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 1087 Klass* klass = UNPACK_PAIR(Klass, klass); 1088 assert(klass != nullptr, "method must not be called for primitive types"); 1089 if (!klass->is_instance_klass()) { 1090 return false; 1091 } 1092 InstanceKlass* iklass = InstanceKlass::cast(klass); 1093 return Dependencies::find_finalizable_subclass(iklass) != nullptr; 1094 C2V_END 1095 1096 C2V_VMENTRY_NULL(jobject, getClassInitializer, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 1097 Klass* klass = UNPACK_PAIR(Klass, klass); 1098 if (!klass->is_instance_klass()) { 1099 return nullptr; 1100 } 1101 InstanceKlass* iklass = InstanceKlass::cast(klass); 1102 methodHandle clinit(THREAD, iklass->class_initializer()); 1103 JVMCIObject result = JVMCIENV->get_jvmci_method(clinit, JVMCI_CHECK_NULL); 1104 return JVMCIENV->get_jobject(result); 1105 C2V_END 1106 1107 C2V_VMENTRY_0(jlong, getMaxCallTargetOffset, (JNIEnv* env, jobject, jlong addr)) 1108 address target_addr = (address) addr; 1109 if (target_addr != nullptr) { 1110 int64_t off_low = (int64_t)target_addr - ((int64_t)CodeCache::low_bound() + sizeof(int)); 1111 int64_t off_high = (int64_t)target_addr - ((int64_t)CodeCache::high_bound() + sizeof(int)); 1112 return MAX2(ABS(off_low), ABS(off_high)); 1113 } 1114 return -1; 1115 C2V_END 1116 1117 C2V_VMENTRY(void, setNotInlinableOrCompilable,(JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 1118 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1119 method->set_is_not_c1_compilable(); 1120 method->set_is_not_c2_compilable(); 1121 method->set_dont_inline(true); 1122 C2V_END 1123 1124 C2V_VMENTRY_0(jint, getInstallCodeFlags, (JNIEnv *env, jobject)) 1125 int flags = 0; 1126 #ifndef PRODUCT 1127 flags |= 0x0001; // VM will install block comments 1128 flags |= 0x0004; // Enable HotSpotJVMCIRuntime.Option.CodeSerializationTypeInfo if not explicitly set 1129 #endif 1130 if (JvmtiExport::can_hotswap_or_post_breakpoint()) { 1131 // VM needs to track method dependencies 1132 flags |= 0x0002; 1133 } 1134 return flags; 1135 C2V_END 1136 1137 C2V_VMENTRY_0(jint, installCode0, (JNIEnv *env, jobject, 1138 jlong compiled_code_buffer, 1139 jlong serialization_ns, 1140 bool with_type_info, 1141 jobject compiled_code, 1142 jobjectArray object_pool, 1143 jobject installed_code, 1144 jlong failed_speculations_address, 1145 jbyteArray speculations_obj)) 1146 HandleMark hm(THREAD); 1147 JNIHandleMark jni_hm(thread); 1148 1149 JVMCIObject compiled_code_handle = JVMCIENV->wrap(compiled_code); 1150 objArrayHandle object_pool_handle(thread, JVMCIENV->is_hotspot() ? (objArrayOop) JNIHandles::resolve(object_pool) : nullptr); 1151 1152 CodeBlob* cb = nullptr; 1153 JVMCIObject installed_code_handle = JVMCIENV->wrap(installed_code); 1154 JVMCIPrimitiveArray speculations_handle = JVMCIENV->wrap(speculations_obj); 1155 1156 int speculations_len = JVMCIENV->get_length(speculations_handle); 1157 char* speculations = NEW_RESOURCE_ARRAY(char, speculations_len); 1158 JVMCIENV->copy_bytes_to(speculations_handle, (jbyte*) speculations, 0, speculations_len); 1159 1160 JVMCICompiler* compiler = JVMCICompiler::instance(true, CHECK_JNI_ERR); 1161 JVMCICompiler::CodeInstallStats* stats = compiler->code_install_stats(!thread->is_Compiler_thread()); 1162 elapsedTimer *timer = stats->timer(); 1163 timer->add_nanoseconds(serialization_ns); 1164 TraceTime install_time("installCode", timer); 1165 1166 CodeInstaller installer(JVMCIENV); 1167 JVMCINMethodHandle nmethod_handle(THREAD); 1168 1169 JVMCI::CodeInstallResult result = installer.install(compiler, 1170 compiled_code_buffer, 1171 with_type_info, 1172 compiled_code_handle, 1173 object_pool_handle, 1174 cb, 1175 nmethod_handle, 1176 installed_code_handle, 1177 (FailedSpeculation**)(address) failed_speculations_address, 1178 speculations, 1179 speculations_len, 1180 JVMCI_CHECK_0); 1181 1182 if (PrintCodeCacheOnCompilation) { 1183 stringStream s; 1184 // Dump code cache into a buffer before locking the tty, 1185 { 1186 MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); 1187 CodeCache::print_summary(&s, false); 1188 } 1189 ttyLocker ttyl; 1190 tty->print_raw_cr(s.freeze()); 1191 } 1192 1193 if (result != JVMCI::ok) { 1194 assert(cb == nullptr, "should be"); 1195 } else { 1196 stats->on_install(cb); 1197 if (installed_code_handle.is_non_null()) { 1198 if (cb->is_nmethod()) { 1199 assert(JVMCIENV->isa_HotSpotNmethod(installed_code_handle), "wrong type"); 1200 // Clear the link to an old nmethod first 1201 JVMCIObject nmethod_mirror = installed_code_handle; 1202 JVMCIENV->invalidate_nmethod_mirror(nmethod_mirror, true, JVMCI_CHECK_0); 1203 } else { 1204 assert(JVMCIENV->isa_InstalledCode(installed_code_handle), "wrong type"); 1205 } 1206 // Initialize the link to the new code blob 1207 JVMCIENV->initialize_installed_code(installed_code_handle, cb, JVMCI_CHECK_0); 1208 } 1209 } 1210 return result; 1211 C2V_END 1212 1213 C2V_VMENTRY(void, resetCompilationStatistics, (JNIEnv* env, jobject)) 1214 JVMCICompiler* compiler = JVMCICompiler::instance(true, CHECK); 1215 CompilerStatistics* stats = compiler->stats(); 1216 stats->_standard.reset(); 1217 stats->_osr.reset(); 1218 C2V_END 1219 1220 C2V_VMENTRY_NULL(jobject, disassembleCodeBlob, (JNIEnv* env, jobject, jobject installedCode)) 1221 HandleMark hm(THREAD); 1222 1223 if (installedCode == nullptr) { 1224 JVMCI_THROW_MSG_NULL(NullPointerException, "installedCode is null"); 1225 } 1226 1227 JVMCIObject installedCodeObject = JVMCIENV->wrap(installedCode); 1228 CodeBlob* cb = JVMCIENV->get_code_blob(installedCodeObject); 1229 if (cb == nullptr) { 1230 return nullptr; 1231 } 1232 1233 // We don't want the stringStream buffer to resize during disassembly as it 1234 // uses scoped resource memory. If a nested function called during disassembly uses 1235 // a ResourceMark and the buffer expands within the scope of the mark, 1236 // the buffer becomes garbage when that scope is exited. Experience shows that 1237 // the disassembled code is typically about 10x the code size so a fixed buffer 1238 // sized to 20x code size plus a fixed amount for header info should be sufficient. 1239 int bufferSize = cb->code_size() * 20 + 1024; 1240 char* buffer = NEW_RESOURCE_ARRAY(char, bufferSize); 1241 stringStream st(buffer, bufferSize); 1242 Disassembler::decode(cb, &st); 1243 if (st.size() <= 0) { 1244 return nullptr; 1245 } 1246 1247 JVMCIObject result = JVMCIENV->create_string(st.as_string(), JVMCI_CHECK_NULL); 1248 return JVMCIENV->get_jobject(result); 1249 C2V_END 1250 1251 C2V_VMENTRY_NULL(jobject, getStackTraceElement, (JNIEnv* env, jobject, ARGUMENT_PAIR(method), int bci)) 1252 HandleMark hm(THREAD); 1253 1254 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1255 JVMCIObject element = JVMCIENV->new_StackTraceElement(method, bci, JVMCI_CHECK_NULL); 1256 return JVMCIENV->get_jobject(element); 1257 C2V_END 1258 1259 C2V_VMENTRY_NULL(jobject, executeHotSpotNmethod, (JNIEnv* env, jobject, jobject args, jobject hs_nmethod)) 1260 // The incoming arguments array would have to contain JavaConstants instead of regular objects 1261 // and the return value would have to be wrapped as a JavaConstant. 1262 requireInHotSpot("executeHotSpotNmethod", JVMCI_CHECK_NULL); 1263 1264 HandleMark hm(THREAD); 1265 1266 JVMCIObject nmethod_mirror = JVMCIENV->wrap(hs_nmethod); 1267 methodHandle mh; 1268 { 1269 // Reduce the scope of JVMCINMethodHandle so that it isn't alive across the Java call. Once the 1270 // nmethod has been validated and the method is fetched from the nmethod it's fine for the 1271 // nmethod to be reclaimed if necessary. 1272 JVMCINMethodHandle nmethod_handle(THREAD); 1273 nmethod* nm = JVMCIENV->get_nmethod(nmethod_mirror, nmethod_handle); 1274 if (nm == nullptr || !nm->is_in_use()) { 1275 JVMCI_THROW_NULL(InvalidInstalledCodeException); 1276 } 1277 methodHandle nmh(THREAD, nm->method()); 1278 mh = nmh; 1279 } 1280 Symbol* signature = mh->signature(); 1281 JavaCallArguments jca(mh->size_of_parameters()); 1282 1283 JavaArgumentUnboxer jap(signature, &jca, (arrayOop) JNIHandles::resolve(args), mh->is_static()); 1284 JavaValue result(jap.return_type()); 1285 jca.set_alternative_target(Handle(THREAD, JNIHandles::resolve(nmethod_mirror.as_jobject()))); 1286 JavaCalls::call(&result, mh, &jca, CHECK_NULL); 1287 1288 if (jap.return_type() == T_VOID) { 1289 return nullptr; 1290 } else if (is_reference_type(jap.return_type())) { 1291 return JNIHandles::make_local(THREAD, result.get_oop()); 1292 } else { 1293 jvalue *value = (jvalue *) result.get_value_addr(); 1294 // Narrow the value down if required (Important on big endian machines) 1295 switch (jap.return_type()) { 1296 case T_BOOLEAN: 1297 value->z = (jboolean) value->i; 1298 break; 1299 case T_BYTE: 1300 value->b = (jbyte) value->i; 1301 break; 1302 case T_CHAR: 1303 value->c = (jchar) value->i; 1304 break; 1305 case T_SHORT: 1306 value->s = (jshort) value->i; 1307 break; 1308 default: 1309 break; 1310 } 1311 JVMCIObject o = JVMCIENV->create_box(jap.return_type(), value, JVMCI_CHECK_NULL); 1312 return JVMCIENV->get_jobject(o); 1313 } 1314 C2V_END 1315 1316 C2V_VMENTRY_NULL(jlongArray, getLineNumberTable, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 1317 Method* method = UNPACK_PAIR(Method, method); 1318 if (!method->has_linenumber_table()) { 1319 return nullptr; 1320 } 1321 u2 num_entries = 0; 1322 CompressedLineNumberReadStream streamForSize(method->compressed_linenumber_table()); 1323 while (streamForSize.read_pair()) { 1324 num_entries++; 1325 } 1326 1327 CompressedLineNumberReadStream stream(method->compressed_linenumber_table()); 1328 JVMCIPrimitiveArray result = JVMCIENV->new_longArray(2 * num_entries, JVMCI_CHECK_NULL); 1329 1330 int i = 0; 1331 jlong value; 1332 while (stream.read_pair()) { 1333 value = ((jlong) stream.bci()); 1334 JVMCIENV->put_long_at(result, i, value); 1335 value = ((jlong) stream.line()); 1336 JVMCIENV->put_long_at(result, i + 1, value); 1337 i += 2; 1338 } 1339 1340 return (jlongArray) JVMCIENV->get_jobject(result); 1341 C2V_END 1342 1343 C2V_VMENTRY_0(jlong, getLocalVariableTableStart, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 1344 Method* method = UNPACK_PAIR(Method, method); 1345 if (!method->has_localvariable_table()) { 1346 return 0; 1347 } 1348 return (jlong) (address) method->localvariable_table_start(); 1349 C2V_END 1350 1351 C2V_VMENTRY_0(jint, getLocalVariableTableLength, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 1352 Method* method = UNPACK_PAIR(Method, method); 1353 return method->localvariable_table_length(); 1354 C2V_END 1355 1356 static MethodData* get_profiling_method_data(const methodHandle& method, TRAPS) { 1357 MethodData* method_data = method->method_data(); 1358 if (method_data == nullptr) { 1359 method->build_profiling_method_data(method, CHECK_NULL); 1360 method_data = method->method_data(); 1361 if (method_data == nullptr) { 1362 THROW_MSG_NULL(vmSymbols::java_lang_OutOfMemoryError(), "cannot allocate MethodData") 1363 } 1364 } 1365 return method_data; 1366 } 1367 1368 C2V_VMENTRY(void, reprofile, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 1369 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1370 MethodCounters* mcs = method->method_counters(); 1371 if (mcs != nullptr) { 1372 mcs->clear_counters(); 1373 } 1374 NOT_PRODUCT(method->set_compiled_invocation_count(0)); 1375 1376 nmethod* code = method->code(); 1377 if (code != nullptr) { 1378 code->make_not_entrant(); 1379 } 1380 1381 MethodData* method_data = method->method_data(); 1382 if (method_data == nullptr) { 1383 method_data = get_profiling_method_data(method, CHECK); 1384 } else { 1385 method_data->initialize(); 1386 } 1387 C2V_END 1388 1389 1390 C2V_VMENTRY(void, invalidateHotSpotNmethod, (JNIEnv* env, jobject, jobject hs_nmethod, jboolean deoptimize)) 1391 JVMCIObject nmethod_mirror = JVMCIENV->wrap(hs_nmethod); 1392 JVMCIENV->invalidate_nmethod_mirror(nmethod_mirror, deoptimize, JVMCI_CHECK); 1393 C2V_END 1394 1395 C2V_VMENTRY_NULL(jlongArray, collectCounters, (JNIEnv* env, jobject)) 1396 // Returns a zero length array if counters aren't enabled 1397 JVMCIPrimitiveArray array = JVMCIENV->new_longArray(JVMCICounterSize, JVMCI_CHECK_NULL); 1398 if (JVMCICounterSize > 0) { 1399 jlong* temp_array = NEW_RESOURCE_ARRAY(jlong, JVMCICounterSize); 1400 JavaThread::collect_counters(temp_array, JVMCICounterSize); 1401 JVMCIENV->copy_longs_from(temp_array, array, 0, JVMCICounterSize); 1402 } 1403 return (jlongArray) JVMCIENV->get_jobject(array); 1404 C2V_END 1405 1406 C2V_VMENTRY_0(jint, getCountersSize, (JNIEnv* env, jobject)) 1407 return (jint) JVMCICounterSize; 1408 C2V_END 1409 1410 C2V_VMENTRY_0(jboolean, setCountersSize, (JNIEnv* env, jobject, jint new_size)) 1411 return JavaThread::resize_all_jvmci_counters(new_size); 1412 C2V_END 1413 1414 C2V_VMENTRY_0(jint, allocateCompileId, (JNIEnv* env, jobject, ARGUMENT_PAIR(method), int entry_bci)) 1415 HandleMark hm(THREAD); 1416 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 1417 if (method.is_null()) { 1418 JVMCI_THROW_0(NullPointerException); 1419 } 1420 if (entry_bci >= method->code_size() || entry_bci < -1) { 1421 JVMCI_THROW_MSG_0(IllegalArgumentException, err_msg("Unexpected bci %d", entry_bci)); 1422 } 1423 return CompileBroker::assign_compile_id_unlocked(THREAD, method, entry_bci); 1424 C2V_END 1425 1426 1427 C2V_VMENTRY_0(jboolean, isMature, (JNIEnv* env, jobject, jlong method_data_pointer)) 1428 MethodData* mdo = (MethodData*) method_data_pointer; 1429 return mdo != nullptr && mdo->is_mature(); 1430 C2V_END 1431 1432 C2V_VMENTRY_0(jboolean, hasCompiledCodeForOSR, (JNIEnv* env, jobject, ARGUMENT_PAIR(method), int entry_bci, int comp_level)) 1433 Method* method = UNPACK_PAIR(Method, method); 1434 return method->lookup_osr_nmethod_for(entry_bci, comp_level, true) != nullptr; 1435 C2V_END 1436 1437 C2V_VMENTRY_NULL(jobject, getSymbol, (JNIEnv* env, jobject, jlong symbol)) 1438 JVMCIObject sym = JVMCIENV->create_string((Symbol*)(address)symbol, JVMCI_CHECK_NULL); 1439 return JVMCIENV->get_jobject(sym); 1440 C2V_END 1441 1442 C2V_VMENTRY_NULL(jobject, getSignatureName, (JNIEnv* env, jobject, jlong klass_pointer)) 1443 Klass* klass = UNPACK_PAIR(Klass, klass); 1444 JVMCIObject signature = JVMCIENV->create_string(klass->signature_name(), JVMCI_CHECK_NULL); 1445 return JVMCIENV->get_jobject(signature); 1446 C2V_END 1447 1448 /* 1449 * Used by matches() to convert a ResolvedJavaMethod[] to an array of Method*. 1450 */ 1451 static GrowableArray<Method*>* init_resolved_methods(jobjectArray methods, JVMCIEnv* JVMCIENV) { 1452 objArrayOop methods_oop = (objArrayOop) JNIHandles::resolve(methods); 1453 GrowableArray<Method*>* resolved_methods = new GrowableArray<Method*>(methods_oop->length()); 1454 for (int i = 0; i < methods_oop->length(); i++) { 1455 oop resolved = methods_oop->obj_at(i); 1456 Method* resolved_method = nullptr; 1457 if (resolved->klass() == HotSpotJVMCI::HotSpotResolvedJavaMethodImpl::klass()) { 1458 resolved_method = HotSpotJVMCI::asMethod(JVMCIENV, resolved); 1459 } 1460 resolved_methods->append(resolved_method); 1461 } 1462 return resolved_methods; 1463 } 1464 1465 /* 1466 * Used by c2v_iterateFrames to check if `method` matches one of the ResolvedJavaMethods in the `methods` array. 1467 * The ResolvedJavaMethod[] array is converted to a Method* array that is then cached in the resolved_methods_ref in/out parameter. 1468 * In case of a match, the matching ResolvedJavaMethod is returned in matched_jvmci_method_ref. 1469 */ 1470 static bool matches(jobjectArray methods, Method* method, GrowableArray<Method*>** resolved_methods_ref, Handle* matched_jvmci_method_ref, Thread* THREAD, JVMCIEnv* JVMCIENV) { 1471 GrowableArray<Method*>* resolved_methods = *resolved_methods_ref; 1472 if (resolved_methods == nullptr) { 1473 resolved_methods = init_resolved_methods(methods, JVMCIENV); 1474 *resolved_methods_ref = resolved_methods; 1475 } 1476 assert(method != nullptr, "method should not be null"); 1477 assert(resolved_methods->length() == ((objArrayOop) JNIHandles::resolve(methods))->length(), "arrays must have the same length"); 1478 for (int i = 0; i < resolved_methods->length(); i++) { 1479 Method* m = resolved_methods->at(i); 1480 if (m == method) { 1481 *matched_jvmci_method_ref = Handle(THREAD, ((objArrayOop) JNIHandles::resolve(methods))->obj_at(i)); 1482 return true; 1483 } 1484 } 1485 return false; 1486 } 1487 1488 /* 1489 * Resolves an interface call to a concrete method handle. 1490 */ 1491 static methodHandle resolve_interface_call(Klass* spec_klass, Symbol* name, Symbol* signature, JavaCallArguments* args, TRAPS) { 1492 CallInfo callinfo; 1493 Handle receiver = args->receiver(); 1494 Klass* recvrKlass = receiver.is_null() ? (Klass*)nullptr : receiver->klass(); 1495 LinkInfo link_info(spec_klass, name, signature); 1496 LinkResolver::resolve_interface_call( 1497 callinfo, receiver, recvrKlass, link_info, true, CHECK_(methodHandle())); 1498 methodHandle method(THREAD, callinfo.selected_method()); 1499 assert(method.not_null(), "should have thrown exception"); 1500 return method; 1501 } 1502 1503 /* 1504 * Used by c2v_iterateFrames to make a new vframeStream at the given compiled frame id (stack pointer) and vframe id. 1505 */ 1506 static void resync_vframestream_to_compiled_frame(vframeStream& vfst, intptr_t* stack_pointer, int vframe_id, JavaThread* thread, TRAPS) { 1507 vfst = vframeStream(thread); 1508 while (vfst.frame_id() != stack_pointer && !vfst.at_end()) { 1509 vfst.next(); 1510 } 1511 if (vfst.frame_id() != stack_pointer) { 1512 THROW_MSG(vmSymbols::java_lang_IllegalStateException(), "stack frame not found after deopt") 1513 } 1514 if (vfst.is_interpreted_frame()) { 1515 THROW_MSG(vmSymbols::java_lang_IllegalStateException(), "compiled stack frame expected") 1516 } 1517 while (vfst.vframe_id() != vframe_id) { 1518 if (vfst.at_end()) { 1519 THROW_MSG(vmSymbols::java_lang_IllegalStateException(), "vframe not found after deopt") 1520 } 1521 vfst.next(); 1522 assert(!vfst.is_interpreted_frame(), "Wrong frame type"); 1523 } 1524 } 1525 1526 /* 1527 * Used by c2v_iterateFrames. Returns an array of any unallocated scope objects or null if none. 1528 */ 1529 static GrowableArray<ScopeValue*>* get_unallocated_objects_or_null(GrowableArray<ScopeValue*>* scope_objects) { 1530 GrowableArray<ScopeValue*>* unallocated = nullptr; 1531 for (int i = 0; i < scope_objects->length(); i++) { 1532 ObjectValue* sv = (ObjectValue*) scope_objects->at(i); 1533 if (sv->value().is_null()) { 1534 if (unallocated == nullptr) { 1535 unallocated = new GrowableArray<ScopeValue*>(scope_objects->length()); 1536 } 1537 unallocated->append(sv); 1538 } 1539 } 1540 return unallocated; 1541 } 1542 1543 C2V_VMENTRY_NULL(jobject, iterateFrames, (JNIEnv* env, jobject compilerToVM, jobjectArray initial_methods, jobjectArray match_methods, jint initialSkip, jobject visitor_handle)) 1544 1545 if (!thread->has_last_Java_frame()) { 1546 return nullptr; 1547 } 1548 Handle visitor(THREAD, JNIHandles::resolve_non_null(visitor_handle)); 1549 KeepStackGCProcessedMark keep_stack(THREAD); 1550 1551 requireInHotSpot("iterateFrames", JVMCI_CHECK_NULL); 1552 1553 HotSpotJVMCI::HotSpotStackFrameReference::klass()->initialize(CHECK_NULL); 1554 1555 vframeStream vfst(thread); 1556 jobjectArray methods = initial_methods; 1557 methodHandle visitor_method; 1558 GrowableArray<Method*>* resolved_methods = nullptr; 1559 1560 while (!vfst.at_end()) { // frame loop 1561 bool realloc_called = false; 1562 intptr_t* frame_id = vfst.frame_id(); 1563 1564 // Previous compiledVFrame of this frame; use with at_scope() to reuse scope object pool. 1565 compiledVFrame* prev_cvf = nullptr; 1566 1567 for (; !vfst.at_end() && vfst.frame_id() == frame_id; vfst.next()) { // vframe loop 1568 int frame_number = 0; 1569 Method *method = vfst.method(); 1570 int bci = vfst.bci(); 1571 1572 Handle matched_jvmci_method; 1573 if (methods == nullptr || matches(methods, method, &resolved_methods, &matched_jvmci_method, THREAD, JVMCIENV)) { 1574 if (initialSkip > 0) { 1575 initialSkip--; 1576 continue; 1577 } 1578 javaVFrame* vf; 1579 if (prev_cvf != nullptr && prev_cvf->frame_pointer()->id() == frame_id) { 1580 assert(prev_cvf->is_compiled_frame(), "expected compiled Java frame"); 1581 vf = prev_cvf->at_scope(vfst.decode_offset(), vfst.vframe_id()); 1582 } else { 1583 vf = vfst.asJavaVFrame(); 1584 } 1585 1586 StackValueCollection* locals = nullptr; 1587 typeArrayHandle localIsVirtual_h; 1588 if (vf->is_compiled_frame()) { 1589 // compiled method frame 1590 compiledVFrame* cvf = compiledVFrame::cast(vf); 1591 1592 ScopeDesc* scope = cvf->scope(); 1593 // native wrappers do not have a scope 1594 if (scope != nullptr && scope->objects() != nullptr) { 1595 prev_cvf = cvf; 1596 1597 GrowableArray<ScopeValue*>* objects = nullptr; 1598 if (!realloc_called) { 1599 objects = scope->objects(); 1600 } else { 1601 // some object might already have been re-allocated, only reallocate the non-allocated ones 1602 objects = get_unallocated_objects_or_null(scope->objects()); 1603 } 1604 1605 if (objects != nullptr) { 1606 RegisterMap reg_map(vf->register_map()); 1607 bool realloc_failures = Deoptimization::realloc_objects(thread, vf->frame_pointer(), ®_map, objects, CHECK_NULL); 1608 Deoptimization::reassign_fields(vf->frame_pointer(), ®_map, objects, realloc_failures, false); 1609 realloc_called = true; 1610 } 1611 1612 GrowableArray<ScopeValue*>* local_values = scope->locals(); 1613 for (int i = 0; i < local_values->length(); i++) { 1614 ScopeValue* value = local_values->at(i); 1615 assert(!value->is_object_merge(), "Should not be."); 1616 if (value->is_object()) { 1617 if (localIsVirtual_h.is_null()) { 1618 typeArrayOop array_oop = oopFactory::new_boolArray(local_values->length(), CHECK_NULL); 1619 localIsVirtual_h = typeArrayHandle(THREAD, array_oop); 1620 } 1621 localIsVirtual_h->bool_at_put(i, true); 1622 } 1623 } 1624 } 1625 1626 locals = cvf->locals(); 1627 frame_number = cvf->vframe_id(); 1628 } else { 1629 // interpreted method frame 1630 interpretedVFrame* ivf = interpretedVFrame::cast(vf); 1631 1632 locals = ivf->locals(); 1633 } 1634 assert(bci == vf->bci(), "wrong bci"); 1635 assert(method == vf->method(), "wrong method"); 1636 1637 Handle frame_reference = HotSpotJVMCI::HotSpotStackFrameReference::klass()->allocate_instance_handle(CHECK_NULL); 1638 HotSpotJVMCI::HotSpotStackFrameReference::set_bci(JVMCIENV, frame_reference(), bci); 1639 if (matched_jvmci_method.is_null()) { 1640 methodHandle mh(THREAD, method); 1641 JVMCIObject jvmci_method = JVMCIENV->get_jvmci_method(mh, JVMCI_CHECK_NULL); 1642 matched_jvmci_method = Handle(THREAD, JNIHandles::resolve(jvmci_method.as_jobject())); 1643 } 1644 HotSpotJVMCI::HotSpotStackFrameReference::set_method(JVMCIENV, frame_reference(), matched_jvmci_method()); 1645 HotSpotJVMCI::HotSpotStackFrameReference::set_localIsVirtual(JVMCIENV, frame_reference(), localIsVirtual_h()); 1646 1647 HotSpotJVMCI::HotSpotStackFrameReference::set_compilerToVM(JVMCIENV, frame_reference(), JNIHandles::resolve(compilerToVM)); 1648 HotSpotJVMCI::HotSpotStackFrameReference::set_stackPointer(JVMCIENV, frame_reference(), (jlong) frame_id); 1649 HotSpotJVMCI::HotSpotStackFrameReference::set_frameNumber(JVMCIENV, frame_reference(), frame_number); 1650 1651 // initialize the locals array 1652 objArrayOop array_oop = oopFactory::new_objectArray(locals->size(), CHECK_NULL); 1653 objArrayHandle array(THREAD, array_oop); 1654 for (int i = 0; i < locals->size(); i++) { 1655 StackValue* var = locals->at(i); 1656 if (var->type() == T_OBJECT) { 1657 array->obj_at_put(i, locals->at(i)->get_obj()()); 1658 } 1659 } 1660 HotSpotJVMCI::HotSpotStackFrameReference::set_locals(JVMCIENV, frame_reference(), array()); 1661 HotSpotJVMCI::HotSpotStackFrameReference::set_objectsMaterialized(JVMCIENV, frame_reference(), JNI_FALSE); 1662 1663 JavaValue result(T_OBJECT); 1664 JavaCallArguments args(visitor); 1665 if (visitor_method.is_null()) { 1666 visitor_method = resolve_interface_call(HotSpotJVMCI::InspectedFrameVisitor::klass(), vmSymbols::visitFrame_name(), vmSymbols::visitFrame_signature(), &args, CHECK_NULL); 1667 } 1668 1669 args.push_oop(frame_reference); 1670 JavaCalls::call(&result, visitor_method, &args, CHECK_NULL); 1671 if (result.get_oop() != nullptr) { 1672 return JNIHandles::make_local(thread, result.get_oop()); 1673 } 1674 if (methods == initial_methods) { 1675 methods = match_methods; 1676 if (resolved_methods != nullptr && JNIHandles::resolve(match_methods) != JNIHandles::resolve(initial_methods)) { 1677 resolved_methods = nullptr; 1678 } 1679 } 1680 assert(initialSkip == 0, "There should be no match before initialSkip == 0"); 1681 if (HotSpotJVMCI::HotSpotStackFrameReference::objectsMaterialized(JVMCIENV, frame_reference()) == JNI_TRUE) { 1682 // the frame has been deoptimized, we need to re-synchronize the frame and vframe 1683 prev_cvf = nullptr; 1684 intptr_t* stack_pointer = (intptr_t*) HotSpotJVMCI::HotSpotStackFrameReference::stackPointer(JVMCIENV, frame_reference()); 1685 resync_vframestream_to_compiled_frame(vfst, stack_pointer, frame_number, thread, CHECK_NULL); 1686 } 1687 } 1688 } // end of vframe loop 1689 } // end of frame loop 1690 1691 // the end was reached without finding a matching method 1692 return nullptr; 1693 C2V_END 1694 1695 C2V_VMENTRY_0(int, decodeIndyIndexToCPIndex, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint indy_index, jboolean resolve)) 1696 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 1697 CallInfo callInfo; 1698 if (resolve) { 1699 LinkResolver::resolve_invoke(callInfo, Handle(), cp, indy_index, Bytecodes::_invokedynamic, CHECK_0); 1700 cp->cache()->set_dynamic_call(callInfo, indy_index); 1701 } 1702 return cp->resolved_indy_entry_at(indy_index)->constant_pool_index(); 1703 C2V_END 1704 1705 C2V_VMENTRY_0(int, decodeFieldIndexToCPIndex, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint field_index)) 1706 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 1707 if (field_index < 0 || field_index >= cp->resolved_field_entries_length()) { 1708 JVMCI_THROW_MSG_0(IllegalStateException, err_msg("invalid field index %d", field_index)); 1709 } 1710 return cp->resolved_field_entry_at(field_index)->constant_pool_index(); 1711 C2V_END 1712 1713 C2V_VMENTRY_0(int, decodeMethodIndexToCPIndex, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint method_index)) 1714 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 1715 if (method_index < 0 || method_index >= cp->resolved_method_entries_length()) { 1716 JVMCI_THROW_MSG_0(IllegalStateException, err_msg("invalid method index %d", method_index)); 1717 } 1718 return cp->resolved_method_entry_at(method_index)->constant_pool_index(); 1719 C2V_END 1720 1721 C2V_VMENTRY(void, resolveInvokeHandleInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index)) 1722 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 1723 Klass* holder = cp->klass_ref_at(index, Bytecodes::_invokehandle, CHECK); 1724 Symbol* name = cp->name_ref_at(index, Bytecodes::_invokehandle); 1725 if (MethodHandles::is_signature_polymorphic_name(holder, name)) { 1726 CallInfo callInfo; 1727 LinkResolver::resolve_invoke(callInfo, Handle(), cp, index, Bytecodes::_invokehandle, CHECK); 1728 cp->cache()->set_method_handle(index, callInfo); 1729 } 1730 C2V_END 1731 1732 C2V_VMENTRY_0(jint, isResolvedInvokeHandleInPool, (JNIEnv* env, jobject, ARGUMENT_PAIR(cp), jint index, jint opcode)) 1733 constantPoolHandle cp(THREAD, UNPACK_PAIR(ConstantPool, cp)); 1734 ResolvedMethodEntry* entry = cp->cache()->resolved_method_entry_at(index); 1735 if (entry->is_resolved(Bytecodes::_invokehandle)) { 1736 // MethodHandle.invoke* --> LambdaForm? 1737 ResourceMark rm; 1738 1739 LinkInfo link_info(cp, index, Bytecodes::_invokehandle, CATCH); 1740 1741 Klass* resolved_klass = link_info.resolved_klass(); 1742 1743 Symbol* name_sym = cp->name_ref_at(index, Bytecodes::_invokehandle); 1744 1745 vmassert(MethodHandles::is_method_handle_invoke_name(resolved_klass, name_sym), "!"); 1746 vmassert(MethodHandles::is_signature_polymorphic_name(resolved_klass, name_sym), "!"); 1747 1748 methodHandle adapter_method(THREAD, entry->method()); 1749 1750 methodHandle resolved_method(adapter_method); 1751 1752 // Can we treat it as a regular invokevirtual? 1753 if (resolved_method->method_holder() == resolved_klass && resolved_method->name() == name_sym) { 1754 vmassert(!resolved_method->is_static(),"!"); 1755 vmassert(MethodHandles::is_signature_polymorphic_method(resolved_method()),"!"); 1756 vmassert(!MethodHandles::is_signature_polymorphic_static(resolved_method->intrinsic_id()), "!"); 1757 vmassert(cp->cache()->appendix_if_resolved(entry) == nullptr, "!"); 1758 1759 methodHandle m(THREAD, LinkResolver::linktime_resolve_virtual_method_or_null(link_info)); 1760 vmassert(m == resolved_method, "!!"); 1761 return -1; 1762 } 1763 1764 return Bytecodes::_invokevirtual; 1765 } 1766 if ((Bytecodes::Code)opcode == Bytecodes::_invokedynamic) { 1767 if (cp->resolved_indy_entry_at(index)->is_resolved()) { 1768 return Bytecodes::_invokedynamic; 1769 } 1770 } 1771 return -1; 1772 C2V_END 1773 1774 1775 C2V_VMENTRY_NULL(jobject, getSignaturePolymorphicHolders, (JNIEnv* env, jobject)) 1776 JVMCIObjectArray holders = JVMCIENV->new_String_array(2, JVMCI_CHECK_NULL); 1777 JVMCIObject mh = JVMCIENV->create_string("Ljava/lang/invoke/MethodHandle;", JVMCI_CHECK_NULL); 1778 JVMCIObject vh = JVMCIENV->create_string("Ljava/lang/invoke/VarHandle;", JVMCI_CHECK_NULL); 1779 JVMCIENV->put_object_at(holders, 0, mh); 1780 JVMCIENV->put_object_at(holders, 1, vh); 1781 return JVMCIENV->get_jobject(holders); 1782 C2V_END 1783 1784 C2V_VMENTRY_0(jboolean, shouldDebugNonSafepoints, (JNIEnv* env, jobject)) 1785 //see compute_recording_non_safepoints in debugInfroRec.cpp 1786 if (JvmtiExport::should_post_compiled_method_load() && FLAG_IS_DEFAULT(DebugNonSafepoints)) { 1787 return true; 1788 } 1789 return DebugNonSafepoints; 1790 C2V_END 1791 1792 // public native void materializeVirtualObjects(HotSpotStackFrameReference stackFrame, boolean invalidate); 1793 C2V_VMENTRY(void, materializeVirtualObjects, (JNIEnv* env, jobject, jobject _hs_frame, bool invalidate)) 1794 JVMCIObject hs_frame = JVMCIENV->wrap(_hs_frame); 1795 if (hs_frame.is_null()) { 1796 JVMCI_THROW_MSG(NullPointerException, "stack frame is null"); 1797 } 1798 1799 requireInHotSpot("materializeVirtualObjects", JVMCI_CHECK); 1800 1801 JVMCIENV->HotSpotStackFrameReference_initialize(JVMCI_CHECK); 1802 1803 // look for the given stack frame 1804 StackFrameStream fst(thread, false /* update */, true /* process_frames */); 1805 intptr_t* stack_pointer = (intptr_t*) JVMCIENV->get_HotSpotStackFrameReference_stackPointer(hs_frame); 1806 while (fst.current()->id() != stack_pointer && !fst.is_done()) { 1807 fst.next(); 1808 } 1809 if (fst.current()->id() != stack_pointer) { 1810 JVMCI_THROW_MSG(IllegalStateException, "stack frame not found"); 1811 } 1812 1813 if (invalidate) { 1814 if (!fst.current()->is_compiled_frame()) { 1815 JVMCI_THROW_MSG(IllegalStateException, "compiled stack frame expected"); 1816 } 1817 fst.current()->cb()->as_nmethod()->make_not_entrant(); 1818 } 1819 Deoptimization::deoptimize(thread, *fst.current(), Deoptimization::Reason_none); 1820 // look for the frame again as it has been updated by deopt (pc, deopt state...) 1821 StackFrameStream fstAfterDeopt(thread, true /* update */, true /* process_frames */); 1822 while (fstAfterDeopt.current()->id() != stack_pointer && !fstAfterDeopt.is_done()) { 1823 fstAfterDeopt.next(); 1824 } 1825 if (fstAfterDeopt.current()->id() != stack_pointer) { 1826 JVMCI_THROW_MSG(IllegalStateException, "stack frame not found after deopt"); 1827 } 1828 1829 vframe* vf = vframe::new_vframe(fstAfterDeopt.current(), fstAfterDeopt.register_map(), thread); 1830 if (!vf->is_compiled_frame()) { 1831 JVMCI_THROW_MSG(IllegalStateException, "compiled stack frame expected"); 1832 } 1833 1834 GrowableArray<compiledVFrame*>* virtualFrames = new GrowableArray<compiledVFrame*>(10); 1835 while (true) { 1836 assert(vf->is_compiled_frame(), "Wrong frame type"); 1837 virtualFrames->push(compiledVFrame::cast(vf)); 1838 if (vf->is_top()) { 1839 break; 1840 } 1841 vf = vf->sender(); 1842 } 1843 1844 int last_frame_number = JVMCIENV->get_HotSpotStackFrameReference_frameNumber(hs_frame); 1845 if (last_frame_number >= virtualFrames->length()) { 1846 JVMCI_THROW_MSG(IllegalStateException, "invalid frame number"); 1847 } 1848 1849 // Reallocate the non-escaping objects and restore their fields. 1850 assert (virtualFrames->at(last_frame_number)->scope() != nullptr,"invalid scope"); 1851 GrowableArray<ScopeValue*>* objects = virtualFrames->at(last_frame_number)->scope()->objects(); 1852 1853 if (objects == nullptr) { 1854 // no objects to materialize 1855 return; 1856 } 1857 1858 bool realloc_failures = Deoptimization::realloc_objects(thread, fstAfterDeopt.current(), fstAfterDeopt.register_map(), objects, CHECK); 1859 Deoptimization::reassign_fields(fstAfterDeopt.current(), fstAfterDeopt.register_map(), objects, realloc_failures, false); 1860 1861 for (int frame_index = 0; frame_index < virtualFrames->length(); frame_index++) { 1862 compiledVFrame* cvf = virtualFrames->at(frame_index); 1863 1864 GrowableArray<ScopeValue*>* scopedValues = cvf->scope()->locals(); 1865 StackValueCollection* locals = cvf->locals(); 1866 if (locals != nullptr) { 1867 for (int i2 = 0; i2 < locals->size(); i2++) { 1868 StackValue* var = locals->at(i2); 1869 assert(!scopedValues->at(i2)->is_object_merge(), "Should not be."); 1870 if (var->type() == T_OBJECT && scopedValues->at(i2)->is_object()) { 1871 jvalue val; 1872 val.l = cast_from_oop<jobject>(locals->at(i2)->get_obj()()); 1873 cvf->update_local(T_OBJECT, i2, val); 1874 } 1875 } 1876 } 1877 1878 GrowableArray<ScopeValue*>* scopeExpressions = cvf->scope()->expressions(); 1879 StackValueCollection* expressions = cvf->expressions(); 1880 if (expressions != nullptr) { 1881 for (int i2 = 0; i2 < expressions->size(); i2++) { 1882 StackValue* var = expressions->at(i2); 1883 assert(!scopeExpressions->at(i2)->is_object_merge(), "Should not be."); 1884 if (var->type() == T_OBJECT && scopeExpressions->at(i2)->is_object()) { 1885 jvalue val; 1886 val.l = cast_from_oop<jobject>(expressions->at(i2)->get_obj()()); 1887 cvf->update_stack(T_OBJECT, i2, val); 1888 } 1889 } 1890 } 1891 1892 GrowableArray<MonitorValue*>* scopeMonitors = cvf->scope()->monitors(); 1893 GrowableArray<MonitorInfo*>* monitors = cvf->monitors(); 1894 if (monitors != nullptr) { 1895 for (int i2 = 0; i2 < monitors->length(); i2++) { 1896 cvf->update_monitor(i2, monitors->at(i2)); 1897 } 1898 } 1899 } 1900 1901 // all locals are materialized by now 1902 JVMCIENV->set_HotSpotStackFrameReference_localIsVirtual(hs_frame, nullptr); 1903 // update the locals array 1904 JVMCIObjectArray array = JVMCIENV->get_HotSpotStackFrameReference_locals(hs_frame); 1905 StackValueCollection* locals = virtualFrames->at(last_frame_number)->locals(); 1906 for (int i = 0; i < locals->size(); i++) { 1907 StackValue* var = locals->at(i); 1908 if (var->type() == T_OBJECT) { 1909 JVMCIENV->put_object_at(array, i, HotSpotJVMCI::wrap(locals->at(i)->get_obj()())); 1910 } 1911 } 1912 HotSpotJVMCI::HotSpotStackFrameReference::set_objectsMaterialized(JVMCIENV, hs_frame, JNI_TRUE); 1913 C2V_END 1914 1915 // Use of tty does not require the current thread to be attached to the VM 1916 // so no need for a full C2V_VMENTRY transition. 1917 C2V_VMENTRY_PREFIX(void, writeDebugOutput, (JNIEnv* env, jobject, jlong buffer, jint length, bool flush)) 1918 if (length <= 8) { 1919 tty->write((char*) &buffer, length); 1920 } else { 1921 tty->write((char*) buffer, length); 1922 } 1923 if (flush) { 1924 tty->flush(); 1925 } 1926 C2V_END 1927 1928 // Use of tty does not require the current thread to be attached to the VM 1929 // so no need for a full C2V_VMENTRY transition. 1930 C2V_VMENTRY_PREFIX(void, flushDebugOutput, (JNIEnv* env, jobject)) 1931 tty->flush(); 1932 C2V_END 1933 1934 C2V_VMENTRY_0(jint, methodDataProfileDataSize, (JNIEnv* env, jobject, jlong method_data_pointer, jint position)) 1935 MethodData* mdo = (MethodData*) method_data_pointer; 1936 ProfileData* profile_data = mdo->data_at(position); 1937 if (mdo->is_valid(profile_data)) { 1938 return profile_data->size_in_bytes(); 1939 } 1940 // Java code should never directly access the extra data section 1941 JVMCI_THROW_MSG_0(IllegalArgumentException, err_msg("Invalid profile data position %d", position)); 1942 C2V_END 1943 1944 C2V_VMENTRY_0(jint, methodDataExceptionSeen, (JNIEnv* env, jobject, jlong method_data_pointer, jint bci)) 1945 MethodData* mdo = (MethodData*) method_data_pointer; 1946 1947 // Lock to read ProfileData, and ensure lock is not broken by a safepoint 1948 MutexLocker mu(mdo->extra_data_lock(), Mutex::_no_safepoint_check_flag); 1949 1950 DataLayout* data = mdo->extra_data_base(); 1951 DataLayout* end = mdo->args_data_limit(); 1952 for (;; data = mdo->next_extra(data)) { 1953 assert(data < end, "moved past end of extra data"); 1954 int tag = data->tag(); 1955 switch(tag) { 1956 case DataLayout::bit_data_tag: { 1957 BitData* bit_data = (BitData*) data->data_in(); 1958 if (bit_data->bci() == bci) { 1959 return bit_data->exception_seen() ? 1 : 0; 1960 } 1961 break; 1962 } 1963 case DataLayout::no_tag: 1964 // There is a free slot so return false since a BitData would have been allocated to record 1965 // true if it had been seen. 1966 return 0; 1967 case DataLayout::arg_info_data_tag: 1968 // The bci wasn't found and there are no free slots to record a trap for this location, so always 1969 // return unknown. 1970 return -1; 1971 } 1972 } 1973 ShouldNotReachHere(); 1974 return -1; 1975 C2V_END 1976 1977 C2V_VMENTRY_NULL(jobject, getInterfaces, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 1978 Klass* klass = UNPACK_PAIR(Klass, klass); 1979 if (klass == nullptr) { 1980 JVMCI_THROW_NULL(NullPointerException); 1981 } 1982 1983 if (!klass->is_instance_klass()) { 1984 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Class %s must be instance klass", klass->external_name())); 1985 } 1986 InstanceKlass* iklass = InstanceKlass::cast(klass); 1987 1988 // Regular instance klass, fill in all local interfaces 1989 int size = iklass->local_interfaces()->length(); 1990 JVMCIObjectArray interfaces = JVMCIENV->new_HotSpotResolvedObjectTypeImpl_array(size, JVMCI_CHECK_NULL); 1991 for (int index = 0; index < size; index++) { 1992 JVMCIKlassHandle klass(THREAD); 1993 Klass* k = iklass->local_interfaces()->at(index); 1994 klass = k; 1995 JVMCIObject type = JVMCIENV->get_jvmci_type(klass, JVMCI_CHECK_NULL); 1996 JVMCIENV->put_object_at(interfaces, index, type); 1997 } 1998 return JVMCIENV->get_jobject(interfaces); 1999 C2V_END 2000 2001 C2V_VMENTRY_NULL(jobject, getComponentType, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2002 Klass* klass = UNPACK_PAIR(Klass, klass); 2003 if (klass == nullptr) { 2004 JVMCI_THROW_NULL(NullPointerException); 2005 } 2006 2007 if (!klass->is_array_klass()) { 2008 return nullptr; 2009 } 2010 oop mirror = klass->java_mirror(); 2011 oop component_mirror = java_lang_Class::component_mirror(mirror); 2012 if (component_mirror == nullptr) { 2013 JVMCI_THROW_MSG_NULL(NullPointerException, 2014 err_msg("Component mirror for array class %s is null", klass->external_name())) 2015 } 2016 2017 Klass* component_klass = java_lang_Class::as_Klass(component_mirror); 2018 if (component_klass != nullptr) { 2019 JVMCIKlassHandle klass_handle(THREAD, component_klass); 2020 JVMCIObject result = JVMCIENV->get_jvmci_type(klass_handle, JVMCI_CHECK_NULL); 2021 return JVMCIENV->get_jobject(result); 2022 } 2023 BasicType type = java_lang_Class::primitive_type(component_mirror); 2024 JVMCIObject result = JVMCIENV->get_jvmci_primitive_type(type); 2025 return JVMCIENV->get_jobject(result); 2026 C2V_END 2027 2028 C2V_VMENTRY(void, ensureInitialized, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2029 Klass* klass = UNPACK_PAIR(Klass, klass); 2030 if (klass == nullptr) { 2031 JVMCI_THROW(NullPointerException); 2032 } 2033 if (klass->should_be_initialized()) { 2034 InstanceKlass* k = InstanceKlass::cast(klass); 2035 k->initialize(CHECK); 2036 } 2037 C2V_END 2038 2039 C2V_VMENTRY(void, ensureLinked, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2040 CompilerThreadCanCallJava canCallJava(thread, true); // Linking requires Java calls 2041 Klass* klass = UNPACK_PAIR(Klass, klass); 2042 if (klass == nullptr) { 2043 JVMCI_THROW(NullPointerException); 2044 } 2045 if (klass->is_instance_klass()) { 2046 InstanceKlass* k = InstanceKlass::cast(klass); 2047 k->link_class(CHECK); 2048 } 2049 C2V_END 2050 2051 C2V_VMENTRY_0(jint, interpreterFrameSize, (JNIEnv* env, jobject, jobject bytecode_frame_handle)) 2052 if (bytecode_frame_handle == nullptr) { 2053 JVMCI_THROW_0(NullPointerException); 2054 } 2055 2056 JVMCIObject top_bytecode_frame = JVMCIENV->wrap(bytecode_frame_handle); 2057 JVMCIObject bytecode_frame = top_bytecode_frame; 2058 int size = 0; 2059 int callee_parameters = 0; 2060 int callee_locals = 0; 2061 Method* method = JVMCIENV->asMethod(JVMCIENV->get_BytecodePosition_method(bytecode_frame)); 2062 int extra_args = method->max_stack() - JVMCIENV->get_BytecodeFrame_numStack(bytecode_frame); 2063 2064 while (bytecode_frame.is_non_null()) { 2065 int locks = JVMCIENV->get_BytecodeFrame_numLocks(bytecode_frame); 2066 int temps = JVMCIENV->get_BytecodeFrame_numStack(bytecode_frame); 2067 bool is_top_frame = (JVMCIENV->equals(bytecode_frame, top_bytecode_frame)); 2068 Method* method = JVMCIENV->asMethod(JVMCIENV->get_BytecodePosition_method(bytecode_frame)); 2069 2070 int frame_size = BytesPerWord * Interpreter::size_activation(method->max_stack(), 2071 temps + callee_parameters, 2072 extra_args, 2073 locks, 2074 callee_parameters, 2075 callee_locals, 2076 is_top_frame); 2077 size += frame_size; 2078 2079 callee_parameters = method->size_of_parameters(); 2080 callee_locals = method->max_locals(); 2081 extra_args = 0; 2082 bytecode_frame = JVMCIENV->get_BytecodePosition_caller(bytecode_frame); 2083 } 2084 return size + Deoptimization::last_frame_adjust(0, callee_locals) * BytesPerWord; 2085 C2V_END 2086 2087 C2V_VMENTRY(void, compileToBytecode, (JNIEnv* env, jobject, jobject lambda_form_handle)) 2088 Handle lambda_form = JVMCIENV->asConstant(JVMCIENV->wrap(lambda_form_handle), JVMCI_CHECK); 2089 if (lambda_form->is_a(vmClasses::LambdaForm_klass())) { 2090 TempNewSymbol compileToBytecode = SymbolTable::new_symbol("compileToBytecode"); 2091 JavaValue result(T_VOID); 2092 JavaCalls::call_special(&result, lambda_form, vmClasses::LambdaForm_klass(), compileToBytecode, vmSymbols::void_method_signature(), CHECK); 2093 } else { 2094 JVMCI_THROW_MSG(IllegalArgumentException, 2095 err_msg("Unexpected type: %s", lambda_form->klass()->external_name())) 2096 } 2097 C2V_END 2098 2099 C2V_VMENTRY_0(jint, getIdentityHashCode, (JNIEnv* env, jobject, jobject object)) 2100 Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0); 2101 return obj->identity_hash(); 2102 C2V_END 2103 2104 C2V_VMENTRY_0(jboolean, isInternedString, (JNIEnv* env, jobject, jobject object)) 2105 Handle str = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0); 2106 if (!java_lang_String::is_instance(str())) { 2107 return false; 2108 } 2109 int len; 2110 jchar* name = java_lang_String::as_unicode_string(str(), len, CHECK_false); 2111 return (StringTable::lookup(name, len) != nullptr); 2112 C2V_END 2113 2114 2115 C2V_VMENTRY_NULL(jobject, unboxPrimitive, (JNIEnv* env, jobject, jobject object)) 2116 if (object == nullptr) { 2117 JVMCI_THROW_NULL(NullPointerException); 2118 } 2119 Handle box = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL); 2120 BasicType type = java_lang_boxing_object::basic_type(box()); 2121 jvalue result; 2122 if (java_lang_boxing_object::get_value(box(), &result) == T_ILLEGAL) { 2123 return nullptr; 2124 } 2125 JVMCIObject boxResult = JVMCIENV->create_box(type, &result, JVMCI_CHECK_NULL); 2126 return JVMCIENV->get_jobject(boxResult); 2127 C2V_END 2128 2129 C2V_VMENTRY_NULL(jobject, boxPrimitive, (JNIEnv* env, jobject, jobject object)) 2130 if (object == nullptr) { 2131 JVMCI_THROW_NULL(NullPointerException); 2132 } 2133 JVMCIObject box = JVMCIENV->wrap(object); 2134 BasicType type = JVMCIENV->get_box_type(box); 2135 if (type == T_ILLEGAL) { 2136 return nullptr; 2137 } 2138 jvalue value = JVMCIENV->get_boxed_value(type, box); 2139 JavaValue box_result(T_OBJECT); 2140 JavaCallArguments jargs; 2141 Klass* box_klass = nullptr; 2142 Symbol* box_signature = nullptr; 2143 #define BOX_CASE(bt, v, argtype, name) \ 2144 case bt: \ 2145 jargs.push_##argtype(value.v); \ 2146 box_klass = vmClasses::name##_klass(); \ 2147 box_signature = vmSymbols::name##_valueOf_signature(); \ 2148 break 2149 2150 switch (type) { 2151 BOX_CASE(T_BOOLEAN, z, int, Boolean); 2152 BOX_CASE(T_BYTE, b, int, Byte); 2153 BOX_CASE(T_CHAR, c, int, Character); 2154 BOX_CASE(T_SHORT, s, int, Short); 2155 BOX_CASE(T_INT, i, int, Integer); 2156 BOX_CASE(T_LONG, j, long, Long); 2157 BOX_CASE(T_FLOAT, f, float, Float); 2158 BOX_CASE(T_DOUBLE, d, double, Double); 2159 default: 2160 ShouldNotReachHere(); 2161 } 2162 #undef BOX_CASE 2163 2164 JavaCalls::call_static(&box_result, 2165 box_klass, 2166 vmSymbols::valueOf_name(), 2167 box_signature, &jargs, CHECK_NULL); 2168 oop hotspot_box = box_result.get_oop(); 2169 JVMCIObject result = JVMCIENV->get_object_constant(hotspot_box, false); 2170 return JVMCIENV->get_jobject(result); 2171 C2V_END 2172 2173 C2V_VMENTRY_NULL(jobjectArray, getDeclaredConstructors, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2174 Klass* klass = UNPACK_PAIR(Klass, klass); 2175 if (klass == nullptr) { 2176 JVMCI_THROW_NULL(NullPointerException); 2177 } 2178 if (!klass->is_instance_klass()) { 2179 JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(0, JVMCI_CHECK_NULL); 2180 return JVMCIENV->get_jobjectArray(methods); 2181 } 2182 2183 InstanceKlass* iklass = InstanceKlass::cast(klass); 2184 GrowableArray<Method*> constructors_array; 2185 for (int i = 0; i < iklass->methods()->length(); i++) { 2186 Method* m = iklass->methods()->at(i); 2187 if (m->is_object_initializer()) { 2188 constructors_array.append(m); 2189 } 2190 } 2191 JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(constructors_array.length(), JVMCI_CHECK_NULL); 2192 for (int i = 0; i < constructors_array.length(); i++) { 2193 methodHandle ctor(THREAD, constructors_array.at(i)); 2194 JVMCIObject method = JVMCIENV->get_jvmci_method(ctor, JVMCI_CHECK_NULL); 2195 JVMCIENV->put_object_at(methods, i, method); 2196 } 2197 return JVMCIENV->get_jobjectArray(methods); 2198 C2V_END 2199 2200 C2V_VMENTRY_NULL(jobjectArray, getDeclaredMethods, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2201 Klass* klass = UNPACK_PAIR(Klass, klass); 2202 if (klass == nullptr) { 2203 JVMCI_THROW_NULL(NullPointerException); 2204 } 2205 if (!klass->is_instance_klass()) { 2206 JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(0, JVMCI_CHECK_NULL); 2207 return JVMCIENV->get_jobjectArray(methods); 2208 } 2209 2210 InstanceKlass* iklass = InstanceKlass::cast(klass); 2211 GrowableArray<Method*> methods_array; 2212 for (int i = 0; i < iklass->methods()->length(); i++) { 2213 Method* m = iklass->methods()->at(i); 2214 if (!m->is_object_initializer() && !m->is_static_initializer() && !m->is_overpass()) { 2215 methods_array.append(m); 2216 } 2217 } 2218 JVMCIObjectArray methods = JVMCIENV->new_ResolvedJavaMethod_array(methods_array.length(), JVMCI_CHECK_NULL); 2219 for (int i = 0; i < methods_array.length(); i++) { 2220 methodHandle mh(THREAD, methods_array.at(i)); 2221 JVMCIObject method = JVMCIENV->get_jvmci_method(mh, JVMCI_CHECK_NULL); 2222 JVMCIENV->put_object_at(methods, i, method); 2223 } 2224 return JVMCIENV->get_jobjectArray(methods); 2225 C2V_END 2226 2227 C2V_VMENTRY_NULL(jobjectArray, getDeclaredFieldsInfo, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2228 Klass* klass = UNPACK_PAIR(Klass, klass); 2229 if (klass == nullptr) { 2230 JVMCI_THROW_NULL(NullPointerException); 2231 } 2232 if (!klass->is_instance_klass()) { 2233 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "not an InstanceKlass"); 2234 } 2235 InstanceKlass* iklass = InstanceKlass::cast(klass); 2236 int java_fields, injected_fields; 2237 GrowableArray<FieldInfo>* fields = FieldInfoStream::create_FieldInfoArray(iklass->fieldinfo_stream(), &java_fields, &injected_fields); 2238 JVMCIObjectArray array = JVMCIENV->new_FieldInfo_array(fields->length(), JVMCIENV); 2239 for (int i = 0; i < fields->length(); i++) { 2240 JVMCIObject field_info = JVMCIENV->new_FieldInfo(fields->adr_at(i), JVMCI_CHECK_NULL); 2241 JVMCIENV->put_object_at(array, i, field_info); 2242 } 2243 return array.as_jobject(); 2244 C2V_END 2245 2246 static jobject read_field_value(Handle obj, long displacement, jchar type_char, bool is_static, Thread* THREAD, JVMCIEnv* JVMCIENV) { 2247 2248 BasicType basic_type = JVMCIENV->typeCharToBasicType(type_char, JVMCI_CHECK_NULL); 2249 int basic_type_elemsize = type2aelembytes(basic_type); 2250 if (displacement < 0 || ((size_t) displacement + basic_type_elemsize > HeapWordSize * obj->size())) { 2251 // Reading outside of the object bounds 2252 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "reading outside object bounds"); 2253 } 2254 2255 // Perform basic sanity checks on the read. Primitive reads are permitted to read outside the 2256 // bounds of their fields but object reads must map exactly onto the underlying oop slot. 2257 bool aligned = (displacement % basic_type_elemsize) == 0; 2258 if (!aligned) { 2259 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "read is unaligned"); 2260 } 2261 if (basic_type == T_OBJECT) { 2262 if (obj->is_objArray()) { 2263 if (displacement < arrayOopDesc::base_offset_in_bytes(T_OBJECT)) { 2264 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "reading from array header"); 2265 } 2266 if (displacement + heapOopSize > arrayOopDesc::base_offset_in_bytes(T_OBJECT) + arrayOop(obj())->length() * heapOopSize) { 2267 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "reading after last array element"); 2268 } 2269 if (((displacement - arrayOopDesc::base_offset_in_bytes(T_OBJECT)) % heapOopSize) != 0) { 2270 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "misaligned object read from array"); 2271 } 2272 } else if (obj->is_instance()) { 2273 InstanceKlass* klass = InstanceKlass::cast(is_static ? java_lang_Class::as_Klass(obj()) : obj->klass()); 2274 fieldDescriptor fd; 2275 if (!klass->find_field_from_offset(displacement, is_static, &fd)) { 2276 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Can't find field at displacement %d in object of type %s", (int) displacement, klass->external_name())); 2277 } 2278 if (fd.field_type() != T_OBJECT && fd.field_type() != T_ARRAY) { 2279 JVMCI_THROW_MSG_NULL(IllegalArgumentException, err_msg("Field at displacement %d in object of type %s is %s but expected %s", (int) displacement, 2280 klass->external_name(), type2name(fd.field_type()), type2name(basic_type))); 2281 } 2282 } else if (obj->is_typeArray()) { 2283 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "Can't read objects from primitive array"); 2284 } else { 2285 ShouldNotReachHere(); 2286 } 2287 } else { 2288 if (obj->is_objArray()) { 2289 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "Reading primitive from object array"); 2290 } else if (obj->is_typeArray()) { 2291 if (displacement < arrayOopDesc::base_offset_in_bytes(ArrayKlass::cast(obj->klass())->element_type())) { 2292 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "reading from array header"); 2293 } 2294 } 2295 } 2296 2297 jlong value = 0; 2298 2299 // Treat all reads as volatile for simplicity as this function can be used 2300 // both for reading Java fields declared as volatile as well as for constant 2301 // folding Unsafe.get* methods with volatile semantics. 2302 2303 switch (basic_type) { 2304 case T_BOOLEAN: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jboolean>(displacement)); break; 2305 case T_BYTE: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jbyte>(displacement)); break; 2306 case T_SHORT: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jshort>(displacement)); break; 2307 case T_CHAR: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jchar>(displacement)); break; 2308 case T_FLOAT: 2309 case T_INT: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jint>(displacement)); break; 2310 case T_DOUBLE: 2311 case T_LONG: value = HeapAccess<MO_SEQ_CST>::load(obj->field_addr<jlong>(displacement)); break; 2312 2313 case T_OBJECT: { 2314 if (displacement == java_lang_Class::component_mirror_offset() && java_lang_Class::is_instance(obj()) && 2315 (java_lang_Class::as_Klass(obj()) == nullptr || !java_lang_Class::as_Klass(obj())->is_array_klass())) { 2316 // Class.componentType for non-array classes can transiently contain an int[] that's 2317 // used for locking so always return null to mimic Class.getComponentType() 2318 return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_NULL_POINTER()); 2319 } 2320 2321 // Perform the read including any barriers required to make the reference strongly reachable 2322 // since it will be wrapped as a JavaConstant. 2323 oop value = obj->obj_field_access<MO_SEQ_CST | ON_UNKNOWN_OOP_REF>(displacement); 2324 2325 if (value == nullptr) { 2326 return JVMCIENV->get_jobject(JVMCIENV->get_JavaConstant_NULL_POINTER()); 2327 } else { 2328 if (value != nullptr && !oopDesc::is_oop(value)) { 2329 // Throw an exception to improve debuggability. This check isn't totally reliable because 2330 // is_oop doesn't try to be completety safe but for most invalid values it provides a good 2331 // enough answer. It possible to crash in the is_oop call but that just means the crash happens 2332 // closer to where things went wrong. 2333 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Read bad oop " INTPTR_FORMAT " at offset " JLONG_FORMAT " in object " INTPTR_FORMAT " of type %s", 2334 p2i(value), displacement, p2i(obj()), obj->klass()->external_name())); 2335 } 2336 2337 JVMCIObject result = JVMCIENV->get_object_constant(value); 2338 return JVMCIENV->get_jobject(result); 2339 } 2340 } 2341 2342 default: 2343 ShouldNotReachHere(); 2344 } 2345 JVMCIObject result = JVMCIENV->call_JavaConstant_forPrimitive(type_char, value, JVMCI_CHECK_NULL); 2346 return JVMCIENV->get_jobject(result); 2347 } 2348 2349 C2V_VMENTRY_NULL(jobject, readStaticFieldValue, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), long displacement, jchar type_char)) 2350 Klass* klass = UNPACK_PAIR(Klass, klass); 2351 Handle obj(THREAD, klass->java_mirror()); 2352 return read_field_value(obj, displacement, type_char, true, THREAD, JVMCIENV); 2353 C2V_END 2354 2355 C2V_VMENTRY_NULL(jobject, readFieldValue, (JNIEnv* env, jobject, jobject object, ARGUMENT_PAIR(expected_type), long displacement, jchar type_char)) 2356 if (object == nullptr) { 2357 JVMCI_THROW_NULL(NullPointerException); 2358 } 2359 2360 // asConstant will throw an NPE if a constant contains null 2361 Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL); 2362 2363 Klass* expected_klass = UNPACK_PAIR(Klass, expected_type); 2364 if (expected_klass != nullptr) { 2365 InstanceKlass* expected_iklass = InstanceKlass::cast(expected_klass); 2366 if (!obj->is_a(expected_iklass)) { 2367 // Not of the expected type 2368 return nullptr; 2369 } 2370 } 2371 bool is_static = expected_klass == nullptr && java_lang_Class::is_instance(obj()) && displacement >= InstanceMirrorKlass::offset_of_static_fields(); 2372 return read_field_value(obj, displacement, type_char, is_static, THREAD, JVMCIENV); 2373 C2V_END 2374 2375 C2V_VMENTRY_0(jboolean, isInstance, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), jobject object)) 2376 Klass* klass = UNPACK_PAIR(Klass, klass); 2377 if (object == nullptr || klass == nullptr) { 2378 JVMCI_THROW_0(NullPointerException); 2379 } 2380 Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_0); 2381 return obj->is_a(klass); 2382 C2V_END 2383 2384 C2V_VMENTRY_0(jboolean, isAssignableFrom, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), ARGUMENT_PAIR(subklass))) 2385 Klass* klass = UNPACK_PAIR(Klass, klass); 2386 Klass* subklass = UNPACK_PAIR(Klass, subklass); 2387 if (klass == nullptr || subklass == nullptr) { 2388 JVMCI_THROW_0(NullPointerException); 2389 } 2390 return subklass->is_subtype_of(klass); 2391 C2V_END 2392 2393 C2V_VMENTRY_0(jboolean, isTrustedForIntrinsics, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2394 Klass* klass = UNPACK_PAIR(Klass, klass); 2395 if (klass == nullptr) { 2396 JVMCI_THROW_0(NullPointerException); 2397 } 2398 InstanceKlass* ik = InstanceKlass::cast(klass); 2399 if (ik->class_loader_data()->is_boot_class_loader_data() || ik->class_loader_data()->is_platform_class_loader_data()) { 2400 return true; 2401 } 2402 return false; 2403 C2V_END 2404 2405 C2V_VMENTRY_NULL(jobject, asJavaType, (JNIEnv* env, jobject, jobject object)) 2406 if (object == nullptr) { 2407 JVMCI_THROW_NULL(NullPointerException); 2408 } 2409 Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL); 2410 if (java_lang_Class::is_instance(obj())) { 2411 if (java_lang_Class::is_primitive(obj())) { 2412 JVMCIObject type = JVMCIENV->get_jvmci_primitive_type(java_lang_Class::primitive_type(obj())); 2413 return JVMCIENV->get_jobject(type); 2414 } 2415 Klass* klass = java_lang_Class::as_Klass(obj()); 2416 JVMCIKlassHandle klass_handle(THREAD); 2417 klass_handle = klass; 2418 JVMCIObject type = JVMCIENV->get_jvmci_type(klass_handle, JVMCI_CHECK_NULL); 2419 return JVMCIENV->get_jobject(type); 2420 } 2421 return nullptr; 2422 C2V_END 2423 2424 2425 C2V_VMENTRY_NULL(jobject, asString, (JNIEnv* env, jobject, jobject object)) 2426 if (object == nullptr) { 2427 JVMCI_THROW_NULL(NullPointerException); 2428 } 2429 Handle obj = JVMCIENV->asConstant(JVMCIENV->wrap(object), JVMCI_CHECK_NULL); 2430 const char* str = java_lang_String::as_utf8_string(obj()); 2431 JVMCIObject result = JVMCIENV->create_string(str, JVMCI_CHECK_NULL); 2432 return JVMCIENV->get_jobject(result); 2433 C2V_END 2434 2435 2436 C2V_VMENTRY_0(jboolean, equals, (JNIEnv* env, jobject, jobject x, jlong xHandle, jobject y, jlong yHandle)) 2437 if (x == nullptr || y == nullptr) { 2438 JVMCI_THROW_0(NullPointerException); 2439 } 2440 return JVMCIENV->resolve_oop_handle(xHandle) == JVMCIENV->resolve_oop_handle(yHandle); 2441 C2V_END 2442 2443 C2V_VMENTRY_NULL(jobject, getJavaMirror, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass))) 2444 Klass* klass = UNPACK_PAIR(Klass, klass); 2445 if (klass == nullptr) { 2446 JVMCI_THROW_NULL(NullPointerException); 2447 } 2448 Handle mirror(THREAD, klass->java_mirror()); 2449 JVMCIObject result = JVMCIENV->get_object_constant(mirror()); 2450 return JVMCIENV->get_jobject(result); 2451 C2V_END 2452 2453 2454 C2V_VMENTRY_0(jint, getArrayLength, (JNIEnv* env, jobject, jobject x)) 2455 if (x == nullptr) { 2456 JVMCI_THROW_0(NullPointerException); 2457 } 2458 Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_0); 2459 if (xobj->klass()->is_array_klass()) { 2460 return arrayOop(xobj())->length(); 2461 } 2462 return -1; 2463 C2V_END 2464 2465 2466 C2V_VMENTRY_NULL(jobject, readArrayElement, (JNIEnv* env, jobject, jobject x, int index)) 2467 if (x == nullptr) { 2468 JVMCI_THROW_NULL(NullPointerException); 2469 } 2470 Handle xobj = JVMCIENV->asConstant(JVMCIENV->wrap(x), JVMCI_CHECK_NULL); 2471 if (xobj->klass()->is_array_klass()) { 2472 arrayOop array = arrayOop(xobj()); 2473 BasicType element_type = ArrayKlass::cast(array->klass())->element_type(); 2474 if (index < 0 || index >= array->length()) { 2475 return nullptr; 2476 } 2477 JVMCIObject result; 2478 2479 if (element_type == T_OBJECT) { 2480 result = JVMCIENV->get_object_constant(objArrayOop(xobj())->obj_at(index)); 2481 if (result.is_null()) { 2482 result = JVMCIENV->get_JavaConstant_NULL_POINTER(); 2483 } 2484 } else { 2485 jvalue value; 2486 switch (element_type) { 2487 case T_DOUBLE: value.d = typeArrayOop(xobj())->double_at(index); break; 2488 case T_FLOAT: value.f = typeArrayOop(xobj())->float_at(index); break; 2489 case T_LONG: value.j = typeArrayOop(xobj())->long_at(index); break; 2490 case T_INT: value.i = typeArrayOop(xobj())->int_at(index); break; 2491 case T_SHORT: value.s = typeArrayOop(xobj())->short_at(index); break; 2492 case T_CHAR: value.c = typeArrayOop(xobj())->char_at(index); break; 2493 case T_BYTE: value.b = typeArrayOop(xobj())->byte_at(index); break; 2494 case T_BOOLEAN: value.z = typeArrayOop(xobj())->byte_at(index) & 1; break; 2495 default: ShouldNotReachHere(); 2496 } 2497 result = JVMCIENV->create_box(element_type, &value, JVMCI_CHECK_NULL); 2498 } 2499 assert(!result.is_null(), "must have a value"); 2500 return JVMCIENV->get_jobject(result); 2501 } 2502 return nullptr;; 2503 C2V_END 2504 2505 2506 C2V_VMENTRY_0(jint, arrayBaseOffset, (JNIEnv* env, jobject, jchar type_char)) 2507 BasicType type = JVMCIENV->typeCharToBasicType(type_char, JVMCI_CHECK_0); 2508 return arrayOopDesc::base_offset_in_bytes(type); 2509 C2V_END 2510 2511 C2V_VMENTRY_0(jint, arrayIndexScale, (JNIEnv* env, jobject, jchar type_char)) 2512 BasicType type = JVMCIENV->typeCharToBasicType(type_char, JVMCI_CHECK_0); 2513 return type2aelembytes(type); 2514 C2V_END 2515 2516 C2V_VMENTRY(void, clearOopHandle, (JNIEnv* env, jobject, jlong oop_handle)) 2517 if (oop_handle == 0L) { 2518 JVMCI_THROW(NullPointerException); 2519 } 2520 // Assert before nulling out, for better debugging. 2521 assert(JVMCIRuntime::is_oop_handle(oop_handle), "precondition"); 2522 oop* oop_ptr = (oop*) oop_handle; 2523 NativeAccess<>::oop_store(oop_ptr, (oop) nullptr); 2524 C2V_END 2525 2526 C2V_VMENTRY(void, releaseClearedOopHandles, (JNIEnv* env, jobject)) 2527 JVMCIENV->runtime()->release_cleared_oop_handles(); 2528 C2V_END 2529 2530 static void requireJVMCINativeLibrary(JVMCI_TRAPS) { 2531 if (!UseJVMCINativeLibrary) { 2532 JVMCI_THROW_MSG(UnsupportedOperationException, "JVMCI shared library is not enabled (requires -XX:+UseJVMCINativeLibrary)"); 2533 } 2534 } 2535 2536 C2V_VMENTRY_NULL(jlongArray, registerNativeMethods, (JNIEnv* env, jobject, jclass mirror)) 2537 requireJVMCINativeLibrary(JVMCI_CHECK_NULL); 2538 requireInHotSpot("registerNativeMethods", JVMCI_CHECK_NULL); 2539 char* sl_path; 2540 void* sl_handle; 2541 JVMCIRuntime* runtime; 2542 { 2543 // Ensure the JVMCI shared library runtime is initialized. 2544 PEER_JVMCIENV_FROM_THREAD(THREAD, false); 2545 PEER_JVMCIENV->check_init(JVMCI_CHECK_NULL); 2546 2547 HandleMark hm(THREAD); 2548 runtime = JVMCI::compiler_runtime(thread); 2549 if (PEER_JVMCIENV->has_pending_exception()) { 2550 PEER_JVMCIENV->describe_pending_exception(tty); 2551 } 2552 sl_handle = JVMCI::get_shared_library(sl_path, false); 2553 if (sl_handle == nullptr) { 2554 JVMCI_THROW_MSG_NULL(InternalError, err_msg("Error initializing JVMCI runtime %d", runtime->id())); 2555 } 2556 } 2557 2558 if (mirror == nullptr) { 2559 JVMCI_THROW_NULL(NullPointerException); 2560 } 2561 Klass* klass = java_lang_Class::as_Klass(JNIHandles::resolve(mirror)); 2562 if (klass == nullptr || !klass->is_instance_klass()) { 2563 JVMCI_THROW_MSG_NULL(IllegalArgumentException, "clazz is for primitive type"); 2564 } 2565 2566 InstanceKlass* iklass = InstanceKlass::cast(klass); 2567 for (int i = 0; i < iklass->methods()->length(); i++) { 2568 methodHandle method(THREAD, iklass->methods()->at(i)); 2569 if (method->is_native()) { 2570 2571 // Compute argument size 2572 int args_size = 1 // JNIEnv 2573 + (method->is_static() ? 1 : 0) // class for static methods 2574 + method->size_of_parameters(); // actual parameters 2575 2576 // 1) Try JNI short style 2577 stringStream st; 2578 char* pure_name = NativeLookup::pure_jni_name(method); 2579 guarantee(pure_name != nullptr, "Illegal native method name encountered"); 2580 os::print_jni_name_prefix_on(&st, args_size); 2581 st.print_raw(pure_name); 2582 os::print_jni_name_suffix_on(&st, args_size); 2583 char* jni_name = st.as_string(); 2584 2585 address entry = (address) os::dll_lookup(sl_handle, jni_name); 2586 if (entry == nullptr) { 2587 // 2) Try JNI long style 2588 st.reset(); 2589 char* long_name = NativeLookup::long_jni_name(method); 2590 guarantee(long_name != nullptr, "Illegal native method name encountered"); 2591 os::print_jni_name_prefix_on(&st, args_size); 2592 st.print_raw(pure_name); 2593 st.print_raw(long_name); 2594 os::print_jni_name_suffix_on(&st, args_size); 2595 char* jni_long_name = st.as_string(); 2596 entry = (address) os::dll_lookup(sl_handle, jni_long_name); 2597 if (entry == nullptr) { 2598 JVMCI_THROW_MSG_NULL(UnsatisfiedLinkError, err_msg("%s [neither %s nor %s exist in %s]", 2599 method->name_and_sig_as_C_string(), 2600 jni_name, jni_long_name, sl_path)); 2601 } 2602 } 2603 2604 if (method->has_native_function() && entry != method->native_function()) { 2605 JVMCI_THROW_MSG_NULL(UnsatisfiedLinkError, err_msg("%s [cannot re-link from " PTR_FORMAT " to " PTR_FORMAT "]", 2606 method->name_and_sig_as_C_string(), p2i(method->native_function()), p2i(entry))); 2607 } 2608 method->set_native_function(entry, Method::native_bind_event_is_interesting); 2609 log_debug(jni, resolve)("[Dynamic-linking native method %s.%s ... JNI] @ " PTR_FORMAT, 2610 method->method_holder()->external_name(), 2611 method->name()->as_C_string(), 2612 p2i((void*) entry)); 2613 } 2614 } 2615 2616 typeArrayOop info_oop = oopFactory::new_longArray(4, CHECK_NULL); 2617 jlongArray info = (jlongArray) JNIHandles::make_local(THREAD, info_oop); 2618 runtime->init_JavaVM_info(info, JVMCI_CHECK_NULL); 2619 return info; 2620 C2V_END 2621 2622 C2V_VMENTRY_PREFIX(jboolean, isCurrentThreadAttached, (JNIEnv* env, jobject c2vm)) 2623 if (thread == nullptr || thread->libjvmci_runtime() == nullptr) { 2624 // Called from unattached JVMCI shared library thread 2625 return false; 2626 } 2627 if (thread->jni_environment() == env) { 2628 C2V_BLOCK(jboolean, isCurrentThreadAttached, (JNIEnv* env, jobject)) 2629 JVMCITraceMark jtm("isCurrentThreadAttached"); 2630 requireJVMCINativeLibrary(JVMCI_CHECK_0); 2631 JVMCIRuntime* runtime = thread->libjvmci_runtime(); 2632 if (runtime == nullptr || !runtime->has_shared_library_javavm()) { 2633 JVMCI_THROW_MSG_0(IllegalStateException, "Require JVMCI shared library JavaVM to be initialized in isCurrentThreadAttached"); 2634 } 2635 JNIEnv* peerEnv; 2636 return runtime->GetEnv(thread, (void**) &peerEnv, JNI_VERSION_1_2) == JNI_OK; 2637 } 2638 return true; 2639 C2V_END 2640 2641 C2V_VMENTRY_PREFIX(jlong, getCurrentJavaThread, (JNIEnv* env, jobject c2vm)) 2642 if (thread == nullptr) { 2643 // Called from unattached JVMCI shared library thread 2644 return 0L; 2645 } 2646 return (jlong) p2i(thread); 2647 C2V_END 2648 2649 // Attaches a thread started in a JVMCI shared library to a JavaThread and JVMCI runtime. 2650 static void attachSharedLibraryThread(JNIEnv* env, jbyteArray name, jboolean as_daemon) { 2651 JavaVM* javaVM = nullptr; 2652 jint res = env->GetJavaVM(&javaVM); 2653 if (res != JNI_OK) { 2654 JNI_THROW("attachSharedLibraryThread", InternalError, err_msg("Error getting shared library JavaVM from shared library JNIEnv: %d", res)); 2655 } 2656 extern struct JavaVM_ main_vm; 2657 JNIEnv* hotspotEnv; 2658 2659 int name_len = env->GetArrayLength(name); 2660 char name_buf[64]; // Cannot use Resource heap as it requires a current thread 2661 int to_copy = MIN2(name_len, (int) sizeof(name_buf) - 1); 2662 env->GetByteArrayRegion(name, 0, to_copy, (jbyte*) name_buf); 2663 name_buf[to_copy] = '\0'; 2664 JavaVMAttachArgs attach_args; 2665 attach_args.version = JNI_VERSION_1_2; 2666 attach_args.name = name_buf; 2667 attach_args.group = nullptr; 2668 res = as_daemon ? main_vm.AttachCurrentThreadAsDaemon((void**)&hotspotEnv, &attach_args) : 2669 main_vm.AttachCurrentThread((void**)&hotspotEnv, &attach_args); 2670 if (res != JNI_OK) { 2671 JNI_THROW("attachSharedLibraryThread", InternalError, err_msg("Trying to attach thread returned %d", res)); 2672 } 2673 JavaThread* thread = JavaThread::thread_from_jni_environment(hotspotEnv); 2674 const char* attach_error; 2675 { 2676 // Transition to VM 2677 JVMCI_VM_ENTRY_MARK 2678 attach_error = JVMCIRuntime::attach_shared_library_thread(thread, javaVM); 2679 // Transition back to Native 2680 } 2681 if (attach_error != nullptr) { 2682 JNI_THROW("attachCurrentThread", InternalError, attach_error); 2683 } 2684 } 2685 2686 C2V_VMENTRY_PREFIX(jboolean, attachCurrentThread, (JNIEnv* env, jobject c2vm, jbyteArray name, jboolean as_daemon, jlongArray javaVM_info)) 2687 if (thread == nullptr) { 2688 attachSharedLibraryThread(env, name, as_daemon); 2689 return true; 2690 } 2691 if (thread->jni_environment() == env) { 2692 // Called from HotSpot 2693 C2V_BLOCK(jboolean, attachCurrentThread, (JNIEnv* env, jobject, jboolean)) 2694 JVMCITraceMark jtm("attachCurrentThread"); 2695 requireJVMCINativeLibrary(JVMCI_CHECK_0); 2696 2697 JVMCIRuntime* runtime = JVMCI::compiler_runtime(thread); 2698 JNIEnv* peerJNIEnv; 2699 if (runtime->has_shared_library_javavm()) { 2700 if (runtime->GetEnv(thread, (void**)&peerJNIEnv, JNI_VERSION_1_2) == JNI_OK) { 2701 // Already attached 2702 runtime->init_JavaVM_info(javaVM_info, JVMCI_CHECK_0); 2703 return false; 2704 } 2705 } 2706 2707 { 2708 // Ensure the JVMCI shared library runtime is initialized. 2709 PEER_JVMCIENV_FROM_THREAD(THREAD, false); 2710 PEER_JVMCIENV->check_init(JVMCI_CHECK_0); 2711 2712 HandleMark hm(thread); 2713 JVMCIObject receiver = runtime->get_HotSpotJVMCIRuntime(PEER_JVMCIENV); 2714 if (PEER_JVMCIENV->has_pending_exception()) { 2715 PEER_JVMCIENV->describe_pending_exception(tty); 2716 } 2717 char* sl_path; 2718 if (JVMCI::get_shared_library(sl_path, false) == nullptr) { 2719 JVMCI_THROW_MSG_0(InternalError, "Error initializing JVMCI runtime"); 2720 } 2721 } 2722 2723 JavaVMAttachArgs attach_args; 2724 attach_args.version = JNI_VERSION_1_2; 2725 attach_args.name = const_cast<char*>(thread->name()); 2726 attach_args.group = nullptr; 2727 if (runtime->GetEnv(thread, (void**) &peerJNIEnv, JNI_VERSION_1_2) == JNI_OK) { 2728 return false; 2729 } 2730 jint res = as_daemon ? runtime->AttachCurrentThreadAsDaemon(thread, (void**) &peerJNIEnv, &attach_args) : 2731 runtime->AttachCurrentThread(thread, (void**) &peerJNIEnv, &attach_args); 2732 2733 if (res == JNI_OK) { 2734 guarantee(peerJNIEnv != nullptr, "must be"); 2735 runtime->init_JavaVM_info(javaVM_info, JVMCI_CHECK_0); 2736 JVMCI_event_1("attached to JavaVM[%d] for JVMCI runtime %d", runtime->get_shared_library_javavm_id(), runtime->id()); 2737 return true; 2738 } 2739 JVMCI_THROW_MSG_0(InternalError, err_msg("Error %d while attaching %s", res, attach_args.name)); 2740 } 2741 // Called from JVMCI shared library 2742 return false; 2743 C2V_END 2744 2745 C2V_VMENTRY_PREFIX(jboolean, detachCurrentThread, (JNIEnv* env, jobject c2vm, jboolean release)) 2746 if (thread == nullptr) { 2747 // Called from unattached JVMCI shared library thread 2748 JNI_THROW_("detachCurrentThread", IllegalStateException, "Cannot detach non-attached thread", false); 2749 } 2750 if (thread->jni_environment() == env) { 2751 // Called from HotSpot 2752 C2V_BLOCK(void, detachCurrentThread, (JNIEnv* env, jobject)) 2753 JVMCITraceMark jtm("detachCurrentThread"); 2754 requireJVMCINativeLibrary(JVMCI_CHECK_0); 2755 requireInHotSpot("detachCurrentThread", JVMCI_CHECK_0); 2756 JVMCIRuntime* runtime = thread->libjvmci_runtime(); 2757 if (runtime == nullptr || !runtime->has_shared_library_javavm()) { 2758 JVMCI_THROW_MSG_0(IllegalStateException, "Require JVMCI shared library JavaVM to be initialized in detachCurrentThread"); 2759 } 2760 JNIEnv* peerEnv; 2761 2762 if (runtime->GetEnv(thread, (void**) &peerEnv, JNI_VERSION_1_2) != JNI_OK) { 2763 JVMCI_THROW_MSG_0(IllegalStateException, err_msg("Cannot detach non-attached thread: %s", thread->name())); 2764 } 2765 jint res = runtime->DetachCurrentThread(thread); 2766 if (res != JNI_OK) { 2767 JVMCI_THROW_MSG_0(InternalError, err_msg("Error %d while attaching %s", res, thread->name())); 2768 } 2769 JVMCI_event_1("detached from JavaVM[%d] for JVMCI runtime %d", 2770 runtime->get_shared_library_javavm_id(), runtime->id()); 2771 if (release) { 2772 return runtime->detach_thread(thread, "user thread detach"); 2773 } 2774 } else { 2775 // Called from attached JVMCI shared library thread 2776 if (release) { 2777 JNI_THROW_("detachCurrentThread", InternalError, "JVMCI shared library thread cannot release JVMCI shared library JavaVM", false); 2778 } 2779 JVMCIRuntime* runtime = thread->libjvmci_runtime(); 2780 if (runtime == nullptr) { 2781 JNI_THROW_("detachCurrentThread", InternalError, "JVMCI shared library thread should have a JVMCI runtime", false); 2782 } 2783 { 2784 // Transition to VM 2785 C2V_BLOCK(jboolean, detachCurrentThread, (JNIEnv* env, jobject)) 2786 // Cannot destroy shared library JavaVM as we're about to return to it. 2787 runtime->detach_thread(thread, "shared library thread detach", false); 2788 JVMCI_event_1("detaching JVMCI shared library thread from HotSpot JavaVM"); 2789 // Transition back to Native 2790 } 2791 extern struct JavaVM_ main_vm; 2792 jint res = main_vm.DetachCurrentThread(); 2793 if (res != JNI_OK) { 2794 JNI_THROW_("detachCurrentThread", InternalError, "Cannot detach non-attached thread", false); 2795 } 2796 } 2797 return false; 2798 C2V_END 2799 2800 C2V_VMENTRY_0(jlong, translate, (JNIEnv* env, jobject, jobject obj_handle, jboolean callPostTranslation)) 2801 requireJVMCINativeLibrary(JVMCI_CHECK_0); 2802 if (obj_handle == nullptr) { 2803 return 0L; 2804 } 2805 PEER_JVMCIENV_FROM_THREAD(THREAD, !JVMCIENV->is_hotspot()); 2806 CompilerThreadCanCallJava canCallJava(thread, PEER_JVMCIENV->is_hotspot()); 2807 PEER_JVMCIENV->check_init(JVMCI_CHECK_0); 2808 2809 JVMCIEnv* thisEnv = JVMCIENV; 2810 JVMCIObject obj = thisEnv->wrap(obj_handle); 2811 JVMCIObject result; 2812 if (thisEnv->isa_HotSpotResolvedJavaMethodImpl(obj)) { 2813 methodHandle method(THREAD, thisEnv->asMethod(obj)); 2814 result = PEER_JVMCIENV->get_jvmci_method(method, JVMCI_CHECK_0); 2815 } else if (thisEnv->isa_HotSpotResolvedObjectTypeImpl(obj)) { 2816 Klass* klass = thisEnv->asKlass(obj); 2817 JVMCIKlassHandle klass_handle(THREAD); 2818 klass_handle = klass; 2819 result = PEER_JVMCIENV->get_jvmci_type(klass_handle, JVMCI_CHECK_0); 2820 } else if (thisEnv->isa_HotSpotResolvedPrimitiveType(obj)) { 2821 BasicType type = JVMCIENV->kindToBasicType(JVMCIENV->get_HotSpotResolvedPrimitiveType_kind(obj), JVMCI_CHECK_0); 2822 result = PEER_JVMCIENV->get_jvmci_primitive_type(type); 2823 } else if (thisEnv->isa_IndirectHotSpotObjectConstantImpl(obj) || 2824 thisEnv->isa_DirectHotSpotObjectConstantImpl(obj)) { 2825 Handle constant = thisEnv->asConstant(obj, JVMCI_CHECK_0); 2826 result = PEER_JVMCIENV->get_object_constant(constant()); 2827 } else if (thisEnv->isa_HotSpotNmethod(obj)) { 2828 if (PEER_JVMCIENV->is_hotspot()) { 2829 JVMCINMethodHandle nmethod_handle(THREAD); 2830 nmethod* nm = JVMCIENV->get_nmethod(obj, nmethod_handle); 2831 if (nm != nullptr) { 2832 JVMCINMethodData* data = nm->jvmci_nmethod_data(); 2833 if (data != nullptr) { 2834 // Only the mirror in the HotSpot heap is accessible 2835 // through JVMCINMethodData 2836 oop nmethod_mirror = data->get_nmethod_mirror(nm, /* phantom_ref */ true); 2837 if (nmethod_mirror != nullptr) { 2838 result = HotSpotJVMCI::wrap(nmethod_mirror); 2839 } 2840 } 2841 } 2842 } 2843 2844 if (result.is_null()) { 2845 JVMCIObject methodObject = thisEnv->get_HotSpotNmethod_method(obj); 2846 methodHandle mh(THREAD, thisEnv->asMethod(methodObject)); 2847 jboolean isDefault = thisEnv->get_HotSpotNmethod_isDefault(obj); 2848 jlong compileIdSnapshot = thisEnv->get_HotSpotNmethod_compileIdSnapshot(obj); 2849 JVMCIObject name_string = thisEnv->get_InstalledCode_name(obj); 2850 const char* cstring = name_string.is_null() ? nullptr : thisEnv->as_utf8_string(name_string); 2851 // Create a new HotSpotNmethod instance in the peer runtime 2852 result = PEER_JVMCIENV->new_HotSpotNmethod(mh, cstring, isDefault, compileIdSnapshot, JVMCI_CHECK_0); 2853 JVMCINMethodHandle nmethod_handle(THREAD); 2854 nmethod* nm = JVMCIENV->get_nmethod(obj, nmethod_handle); 2855 if (result.is_null()) { 2856 // exception occurred (e.g. OOME) creating a new HotSpotNmethod 2857 } else if (nm == nullptr) { 2858 // nmethod must have been unloaded 2859 } else { 2860 // Link the new HotSpotNmethod to the nmethod 2861 PEER_JVMCIENV->initialize_installed_code(result, nm, JVMCI_CHECK_0); 2862 // Only non-default HotSpotNmethod instances in the HotSpot heap are tracked directly by the runtime. 2863 if (!isDefault && PEER_JVMCIENV->is_hotspot()) { 2864 JVMCINMethodData* data = nm->jvmci_nmethod_data(); 2865 if (data == nullptr) { 2866 JVMCI_THROW_MSG_0(IllegalArgumentException, "Missing HotSpotNmethod data"); 2867 } 2868 if (data->get_nmethod_mirror(nm, /* phantom_ref */ false) != nullptr) { 2869 JVMCI_THROW_MSG_0(IllegalArgumentException, "Cannot overwrite existing HotSpotNmethod mirror for nmethod"); 2870 } 2871 oop nmethod_mirror = HotSpotJVMCI::resolve(result); 2872 data->set_nmethod_mirror(nm, nmethod_mirror); 2873 } 2874 } 2875 } 2876 } else { 2877 JVMCI_THROW_MSG_0(IllegalArgumentException, 2878 err_msg("Cannot translate object of type: %s", thisEnv->klass_name(obj))); 2879 } 2880 if (callPostTranslation) { 2881 PEER_JVMCIENV->call_HotSpotJVMCIRuntime_postTranslation(result, JVMCI_CHECK_0); 2882 } 2883 // Propagate any exception that occurred while creating the translated object 2884 if (PEER_JVMCIENV->transfer_pending_exception(thread, thisEnv)) { 2885 return 0L; 2886 } 2887 return (jlong) PEER_JVMCIENV->make_global(result).as_jobject(); 2888 C2V_END 2889 2890 C2V_VMENTRY_NULL(jobject, unhand, (JNIEnv* env, jobject, jlong obj_handle)) 2891 requireJVMCINativeLibrary(JVMCI_CHECK_NULL); 2892 if (obj_handle == 0L) { 2893 return nullptr; 2894 } 2895 jobject global_handle = (jobject) obj_handle; 2896 JVMCIObject global_handle_obj = JVMCIENV->wrap(global_handle); 2897 jobject result = JVMCIENV->make_local(global_handle_obj).as_jobject(); 2898 2899 JVMCIENV->destroy_global(global_handle_obj); 2900 return result; 2901 C2V_END 2902 2903 C2V_VMENTRY(void, updateHotSpotNmethod, (JNIEnv* env, jobject, jobject code_handle)) 2904 JVMCIObject code = JVMCIENV->wrap(code_handle); 2905 // Execute this operation for the side effect of updating the InstalledCode state 2906 JVMCINMethodHandle nmethod_handle(THREAD); 2907 JVMCIENV->get_nmethod(code, nmethod_handle); 2908 C2V_END 2909 2910 C2V_VMENTRY_NULL(jbyteArray, getCode, (JNIEnv* env, jobject, jobject code_handle)) 2911 JVMCIObject code = JVMCIENV->wrap(code_handle); 2912 CodeBlob* cb = JVMCIENV->get_code_blob(code); 2913 if (cb == nullptr) { 2914 return nullptr; 2915 } 2916 // Make a resource copy of code before the allocation causes a safepoint 2917 int code_size = cb->code_size(); 2918 jbyte* code_bytes = NEW_RESOURCE_ARRAY(jbyte, code_size); 2919 memcpy(code_bytes, (jbyte*) cb->code_begin(), code_size); 2920 2921 JVMCIPrimitiveArray result = JVMCIENV->new_byteArray(code_size, JVMCI_CHECK_NULL); 2922 JVMCIENV->copy_bytes_from(code_bytes, result, 0, code_size); 2923 return JVMCIENV->get_jbyteArray(result); 2924 C2V_END 2925 2926 C2V_VMENTRY_NULL(jobject, asReflectionExecutable, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 2927 requireInHotSpot("asReflectionExecutable", JVMCI_CHECK_NULL); 2928 methodHandle m(THREAD, UNPACK_PAIR(Method, method)); 2929 oop executable; 2930 if (m->is_object_initializer()) { 2931 executable = Reflection::new_constructor(m, CHECK_NULL); 2932 } else if (m->is_static_initializer()) { 2933 JVMCI_THROW_MSG_NULL(IllegalArgumentException, 2934 "Cannot create java.lang.reflect.Method for class initializer"); 2935 } else { 2936 executable = Reflection::new_method(m, false, CHECK_NULL); 2937 } 2938 return JNIHandles::make_local(THREAD, executable); 2939 C2V_END 2940 2941 static InstanceKlass* check_field(Klass* klass, jint index, JVMCI_TRAPS) { 2942 if (!klass->is_instance_klass()) { 2943 JVMCI_THROW_MSG_NULL(IllegalArgumentException, 2944 err_msg("Expected non-primitive type, got %s", klass->external_name())); 2945 } 2946 InstanceKlass* iklass = InstanceKlass::cast(klass); 2947 if (index < 0 || index > iklass->total_fields_count()) { 2948 JVMCI_THROW_MSG_NULL(IllegalArgumentException, 2949 err_msg("Field index %d out of bounds for %s", index, klass->external_name())); 2950 } 2951 return iklass; 2952 } 2953 2954 C2V_VMENTRY_NULL(jobject, asReflectionField, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), jint index)) 2955 requireInHotSpot("asReflectionField", JVMCI_CHECK_NULL); 2956 Klass* klass = UNPACK_PAIR(Klass, klass); 2957 InstanceKlass* iklass = check_field(klass, index, JVMCIENV); 2958 fieldDescriptor fd(iklass, index); 2959 oop reflected = Reflection::new_field(&fd, CHECK_NULL); 2960 return JNIHandles::make_local(THREAD, reflected); 2961 C2V_END 2962 2963 static jbyteArray get_encoded_annotation_data(InstanceKlass* holder, AnnotationArray* annotations_array, bool for_class, 2964 jint filter_length, jlong filter_klass_pointers, 2965 JavaThread* THREAD, JVMCIEnv* JVMCIENV) { 2966 // Get a ConstantPool object for annotation parsing 2967 Handle jcp = reflect_ConstantPool::create(CHECK_NULL); 2968 reflect_ConstantPool::set_cp(jcp(), holder->constants()); 2969 2970 // load VMSupport 2971 Symbol* klass = vmSymbols::jdk_internal_vm_VMSupport(); 2972 Klass* k = SystemDictionary::resolve_or_fail(klass, true, CHECK_NULL); 2973 2974 InstanceKlass* vm_support = InstanceKlass::cast(k); 2975 if (vm_support->should_be_initialized()) { 2976 vm_support->initialize(CHECK_NULL); 2977 } 2978 2979 typeArrayOop annotations_oop = Annotations::make_java_array(annotations_array, CHECK_NULL); 2980 typeArrayHandle annotations = typeArrayHandle(THREAD, annotations_oop); 2981 2982 InstanceKlass** filter = filter_length == 1 ? 2983 (InstanceKlass**) &filter_klass_pointers: 2984 (InstanceKlass**) filter_klass_pointers; 2985 objArrayOop filter_oop = oopFactory::new_objArray(vmClasses::Class_klass(), filter_length, CHECK_NULL); 2986 objArrayHandle filter_classes(THREAD, filter_oop); 2987 for (int i = 0; i < filter_length; i++) { 2988 filter_classes->obj_at_put(i, filter[i]->java_mirror()); 2989 } 2990 2991 // invoke VMSupport.encodeAnnotations 2992 JavaValue result(T_OBJECT); 2993 JavaCallArguments args; 2994 args.push_oop(annotations); 2995 args.push_oop(Handle(THREAD, holder->java_mirror())); 2996 args.push_oop(jcp); 2997 args.push_int(for_class); 2998 args.push_oop(filter_classes); 2999 Symbol* signature = vmSymbols::encodeAnnotations_signature(); 3000 JavaCalls::call_static(&result, 3001 vm_support, 3002 vmSymbols::encodeAnnotations_name(), 3003 signature, 3004 &args, 3005 CHECK_NULL); 3006 3007 oop res = result.get_oop(); 3008 if (JVMCIENV->is_hotspot()) { 3009 return (jbyteArray) JNIHandles::make_local(THREAD, res); 3010 } 3011 3012 typeArrayOop ba = typeArrayOop(res); 3013 int ba_len = ba->length(); 3014 jbyte* ba_buf = NEW_RESOURCE_ARRAY_IN_THREAD_RETURN_NULL(THREAD, jbyte, ba_len); 3015 if (ba_buf == nullptr) { 3016 JVMCI_THROW_MSG_NULL(InternalError, 3017 err_msg("could not allocate %d bytes", ba_len)); 3018 3019 } 3020 memcpy(ba_buf, ba->byte_at_addr(0), ba_len); 3021 JVMCIPrimitiveArray ba_dest = JVMCIENV->new_byteArray(ba_len, JVMCI_CHECK_NULL); 3022 JVMCIENV->copy_bytes_from(ba_buf, ba_dest, 0, ba_len); 3023 return JVMCIENV->get_jbyteArray(ba_dest); 3024 } 3025 3026 C2V_VMENTRY_NULL(jbyteArray, getEncodedClassAnnotationData, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), 3027 jobject filter, jint filter_length, jlong filter_klass_pointers)) 3028 CompilerThreadCanCallJava canCallJava(thread, true); // Requires Java support 3029 InstanceKlass* holder = InstanceKlass::cast(UNPACK_PAIR(Klass, klass)); 3030 return get_encoded_annotation_data(holder, holder->class_annotations(), true, filter_length, filter_klass_pointers, THREAD, JVMCIENV); 3031 C2V_END 3032 3033 C2V_VMENTRY_NULL(jbyteArray, getEncodedExecutableAnnotationData, (JNIEnv* env, jobject, ARGUMENT_PAIR(method), 3034 jobject filter, jint filter_length, jlong filter_klass_pointers)) 3035 CompilerThreadCanCallJava canCallJava(thread, true); // Requires Java support 3036 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 3037 return get_encoded_annotation_data(method->method_holder(), method->annotations(), false, filter_length, filter_klass_pointers, THREAD, JVMCIENV); 3038 C2V_END 3039 3040 C2V_VMENTRY_NULL(jbyteArray, getEncodedFieldAnnotationData, (JNIEnv* env, jobject, ARGUMENT_PAIR(klass), jint index, 3041 jobject filter, jint filter_length, jlong filter_klass_pointers)) 3042 CompilerThreadCanCallJava canCallJava(thread, true); // Requires Java support 3043 InstanceKlass* holder = check_field(InstanceKlass::cast(UNPACK_PAIR(Klass, klass)), index, JVMCIENV); 3044 fieldDescriptor fd(holder, index); 3045 return get_encoded_annotation_data(holder, fd.annotations(), false, filter_length, filter_klass_pointers, THREAD, JVMCIENV); 3046 C2V_END 3047 3048 C2V_VMENTRY_NULL(jobjectArray, getFailedSpeculations, (JNIEnv* env, jobject, jlong failed_speculations_address, jobjectArray current)) 3049 FailedSpeculation* head = *((FailedSpeculation**)(address) failed_speculations_address); 3050 int result_length = 0; 3051 for (FailedSpeculation* fs = head; fs != nullptr; fs = fs->next()) { 3052 result_length++; 3053 } 3054 int current_length = 0; 3055 JVMCIObjectArray current_array = nullptr; 3056 if (current != nullptr) { 3057 current_array = JVMCIENV->wrap(current); 3058 current_length = JVMCIENV->get_length(current_array); 3059 if (current_length == result_length) { 3060 // No new failures 3061 return current; 3062 } 3063 } 3064 JVMCIObjectArray result = JVMCIENV->new_byte_array_array(result_length, JVMCI_CHECK_NULL); 3065 int result_index = 0; 3066 for (FailedSpeculation* fs = head; result_index < result_length; fs = fs->next()) { 3067 assert(fs != nullptr, "npe"); 3068 JVMCIPrimitiveArray entry; 3069 if (result_index < current_length) { 3070 entry = (JVMCIPrimitiveArray) JVMCIENV->get_object_at(current_array, result_index); 3071 } else { 3072 entry = JVMCIENV->new_byteArray(fs->data_len(), JVMCI_CHECK_NULL); 3073 JVMCIENV->copy_bytes_from((jbyte*) fs->data(), entry, 0, fs->data_len()); 3074 } 3075 JVMCIENV->put_object_at(result, result_index++, entry); 3076 } 3077 return JVMCIENV->get_jobjectArray(result); 3078 C2V_END 3079 3080 C2V_VMENTRY_0(jlong, getFailedSpeculationsAddress, (JNIEnv* env, jobject, ARGUMENT_PAIR(method))) 3081 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 3082 MethodData* method_data = get_profiling_method_data(method, CHECK_0); 3083 return (jlong) method_data->get_failed_speculations_address(); 3084 C2V_END 3085 3086 C2V_VMENTRY(void, releaseFailedSpeculations, (JNIEnv* env, jobject, jlong failed_speculations_address)) 3087 FailedSpeculation::free_failed_speculations((FailedSpeculation**)(address) failed_speculations_address); 3088 C2V_END 3089 3090 C2V_VMENTRY_0(jboolean, addFailedSpeculation, (JNIEnv* env, jobject, jlong failed_speculations_address, jbyteArray speculation_obj)) 3091 JVMCIPrimitiveArray speculation_handle = JVMCIENV->wrap(speculation_obj); 3092 int speculation_len = JVMCIENV->get_length(speculation_handle); 3093 char* speculation = NEW_RESOURCE_ARRAY(char, speculation_len); 3094 JVMCIENV->copy_bytes_to(speculation_handle, (jbyte*) speculation, 0, speculation_len); 3095 return FailedSpeculation::add_failed_speculation(nullptr, (FailedSpeculation**)(address) failed_speculations_address, (address) speculation, speculation_len); 3096 C2V_END 3097 3098 C2V_VMENTRY(void, callSystemExit, (JNIEnv* env, jobject, jint status)) 3099 if (!JVMCIENV->is_hotspot()) { 3100 // It's generally not safe to call Java code before the module system is initialized 3101 if (!Universe::is_module_initialized()) { 3102 JVMCI_event_1("callSystemExit(%d) before Universe::is_module_initialized() -> direct VM exit", status); 3103 vm_exit_during_initialization(); 3104 } 3105 } 3106 CompilerThreadCanCallJava canCallJava(thread, true); 3107 JavaValue result(T_VOID); 3108 JavaCallArguments jargs(1); 3109 jargs.push_int(status); 3110 JavaCalls::call_static(&result, 3111 vmClasses::System_klass(), 3112 vmSymbols::exit_method_name(), 3113 vmSymbols::int_void_signature(), 3114 &jargs, 3115 CHECK); 3116 C2V_END 3117 3118 C2V_VMENTRY_0(jlong, ticksNow, (JNIEnv* env, jobject)) 3119 return CompilerEvent::ticksNow(); 3120 C2V_END 3121 3122 C2V_VMENTRY_0(jint, registerCompilerPhase, (JNIEnv* env, jobject, jstring jphase_name)) 3123 #if INCLUDE_JFR 3124 JVMCIObject phase_name = JVMCIENV->wrap(jphase_name); 3125 const char *name = JVMCIENV->as_utf8_string(phase_name); 3126 return CompilerEvent::PhaseEvent::get_phase_id(name, true, true, true); 3127 #else 3128 return -1; 3129 #endif // !INCLUDE_JFR 3130 C2V_END 3131 3132 C2V_VMENTRY(void, notifyCompilerPhaseEvent, (JNIEnv* env, jobject, jlong startTime, jint phase, jint compileId, jint level)) 3133 EventCompilerPhase event(UNTIMED); 3134 if (event.should_commit()) { 3135 CompilerEvent::PhaseEvent::post(event, startTime, phase, compileId, level); 3136 } 3137 C2V_END 3138 3139 C2V_VMENTRY(void, notifyCompilerInliningEvent, (JNIEnv* env, jobject, jint compileId, ARGUMENT_PAIR(caller), ARGUMENT_PAIR(callee), jboolean succeeded, jstring jmessage, jint bci)) 3140 EventCompilerInlining event; 3141 if (event.should_commit()) { 3142 Method* caller = UNPACK_PAIR(Method, caller); 3143 Method* callee = UNPACK_PAIR(Method, callee); 3144 JVMCIObject message = JVMCIENV->wrap(jmessage); 3145 CompilerEvent::InlineEvent::post(event, compileId, caller, callee, succeeded, JVMCIENV->as_utf8_string(message), bci); 3146 } 3147 C2V_END 3148 3149 C2V_VMENTRY(void, setThreadLocalObject, (JNIEnv* env, jobject, jint id, jobject value)) 3150 requireInHotSpot("setThreadLocalObject", JVMCI_CHECK); 3151 if (id == 0) { 3152 thread->set_jvmci_reserved_oop0(JNIHandles::resolve(value)); 3153 return; 3154 } 3155 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), 3156 err_msg("%d is not a valid thread local id", id)); 3157 C2V_END 3158 3159 C2V_VMENTRY_NULL(jobject, getThreadLocalObject, (JNIEnv* env, jobject, jint id)) 3160 requireInHotSpot("getThreadLocalObject", JVMCI_CHECK_NULL); 3161 if (id == 0) { 3162 return JNIHandles::make_local(thread->get_jvmci_reserved_oop0()); 3163 } 3164 THROW_MSG_NULL(vmSymbols::java_lang_IllegalArgumentException(), 3165 err_msg("%d is not a valid thread local id", id)); 3166 C2V_END 3167 3168 C2V_VMENTRY(void, setThreadLocalLong, (JNIEnv* env, jobject, jint id, jlong value)) 3169 requireInHotSpot("setThreadLocalLong", JVMCI_CHECK); 3170 if (id == 0) { 3171 thread->set_jvmci_reserved0(value); 3172 } else if (id == 1) { 3173 thread->set_jvmci_reserved1(value); 3174 } else { 3175 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), 3176 err_msg("%d is not a valid thread local id", id)); 3177 } 3178 C2V_END 3179 3180 C2V_VMENTRY_0(jlong, getThreadLocalLong, (JNIEnv* env, jobject, jint id)) 3181 requireInHotSpot("getThreadLocalLong", JVMCI_CHECK_0); 3182 if (id == 0) { 3183 return thread->get_jvmci_reserved0(); 3184 } else if (id == 1) { 3185 return thread->get_jvmci_reserved1(); 3186 } else { 3187 THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), 3188 err_msg("%d is not a valid thread local id", id)); 3189 } 3190 C2V_END 3191 3192 C2V_VMENTRY(void, getOopMapAt, (JNIEnv* env, jobject, ARGUMENT_PAIR(method), 3193 jint bci, jlongArray oop_map_handle)) 3194 methodHandle method(THREAD, UNPACK_PAIR(Method, method)); 3195 if (bci < 0 || bci >= method->code_size()) { 3196 JVMCI_THROW_MSG(IllegalArgumentException, 3197 err_msg("bci %d is out of bounds [0 .. %d)", bci, method->code_size())); 3198 } 3199 InterpreterOopMap mask; 3200 OopMapCache::compute_one_oop_map(method, bci, &mask); 3201 if (!mask.has_valid_mask()) { 3202 JVMCI_THROW_MSG(IllegalArgumentException, err_msg("bci %d is not valid", bci)); 3203 } 3204 if (mask.number_of_entries() == 0) { 3205 return; 3206 } 3207 3208 int nslots = method->max_locals() + method->max_stack(); 3209 int nwords = ((nslots - 1) / 64) + 1; 3210 JVMCIPrimitiveArray oop_map = JVMCIENV->wrap(oop_map_handle); 3211 int oop_map_len = JVMCIENV->get_length(oop_map); 3212 if (nwords > oop_map_len) { 3213 JVMCI_THROW_MSG(IllegalArgumentException, 3214 err_msg("oop map too short: %d > %d", nwords, oop_map_len)); 3215 } 3216 3217 jlong* oop_map_buf = NEW_RESOURCE_ARRAY_IN_THREAD_RETURN_NULL(THREAD, jlong, nwords); 3218 if (oop_map_buf == nullptr) { 3219 JVMCI_THROW_MSG(InternalError, err_msg("could not allocate %d longs", nwords)); 3220 } 3221 for (int i = 0; i < nwords; i++) { 3222 oop_map_buf[i] = 0L; 3223 } 3224 3225 BitMapView oop_map_view = BitMapView((BitMap::bm_word_t*) oop_map_buf, nwords * BitsPerLong); 3226 for (int i = 0; i < nslots; i++) { 3227 if (mask.is_oop(i)) { 3228 oop_map_view.set_bit(i); 3229 } 3230 } 3231 JVMCIENV->copy_longs_from((jlong*)oop_map_buf, oop_map, 0, nwords); 3232 C2V_END 3233 3234 #define CC (char*) /*cast a literal from (const char*)*/ 3235 #define FN_PTR(f) CAST_FROM_FN_PTR(void*, &(c2v_ ## f)) 3236 3237 #define STRING "Ljava/lang/String;" 3238 #define OBJECT "Ljava/lang/Object;" 3239 #define CLASS "Ljava/lang/Class;" 3240 #define OBJECTCONSTANT "Ljdk/vm/ci/hotspot/HotSpotObjectConstantImpl;" 3241 #define EXECUTABLE "Ljava/lang/reflect/Executable;" 3242 #define STACK_TRACE_ELEMENT "Ljava/lang/StackTraceElement;" 3243 #define INSTALLED_CODE "Ljdk/vm/ci/code/InstalledCode;" 3244 #define BYTECODE_FRAME "Ljdk/vm/ci/code/BytecodeFrame;" 3245 #define JAVACONSTANT "Ljdk/vm/ci/meta/JavaConstant;" 3246 #define INSPECTED_FRAME_VISITOR "Ljdk/vm/ci/code/stack/InspectedFrameVisitor;" 3247 #define RESOLVED_METHOD "Ljdk/vm/ci/meta/ResolvedJavaMethod;" 3248 #define FIELDINFO "Ljdk/vm/ci/hotspot/HotSpotResolvedObjectTypeImpl$FieldInfo;" 3249 #define HS_RESOLVED_TYPE "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaType;" 3250 #define HS_INSTALLED_CODE "Ljdk/vm/ci/hotspot/HotSpotInstalledCode;" 3251 #define HS_NMETHOD "Ljdk/vm/ci/hotspot/HotSpotNmethod;" 3252 #define HS_COMPILED_CODE "Ljdk/vm/ci/hotspot/HotSpotCompiledCode;" 3253 #define HS_CONFIG "Ljdk/vm/ci/hotspot/HotSpotVMConfig;" 3254 #define HS_STACK_FRAME_REF "Ljdk/vm/ci/hotspot/HotSpotStackFrameReference;" 3255 #define HS_SPECULATION_LOG "Ljdk/vm/ci/hotspot/HotSpotSpeculationLog;" 3256 #define REFLECTION_EXECUTABLE "Ljava/lang/reflect/Executable;" 3257 #define REFLECTION_FIELD "Ljava/lang/reflect/Field;" 3258 3259 // Types wrapping VM pointers. The ...2 macro is for a pair: (wrapper, pointer) 3260 #define HS_METHOD "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaMethodImpl;" 3261 #define HS_METHOD2 "Ljdk/vm/ci/hotspot/HotSpotResolvedJavaMethodImpl;J" 3262 #define HS_KLASS "Ljdk/vm/ci/hotspot/HotSpotResolvedObjectTypeImpl;" 3263 #define HS_KLASS2 "Ljdk/vm/ci/hotspot/HotSpotResolvedObjectTypeImpl;J" 3264 #define HS_CONSTANT_POOL "Ljdk/vm/ci/hotspot/HotSpotConstantPool;" 3265 #define HS_CONSTANT_POOL2 "Ljdk/vm/ci/hotspot/HotSpotConstantPool;J" 3266 3267 JNINativeMethod CompilerToVM::methods[] = { 3268 {CC "getBytecode", CC "(" HS_METHOD2 ")[B", FN_PTR(getBytecode)}, 3269 {CC "getExceptionTableStart", CC "(" HS_METHOD2 ")J", FN_PTR(getExceptionTableStart)}, 3270 {CC "getExceptionTableLength", CC "(" HS_METHOD2 ")I", FN_PTR(getExceptionTableLength)}, 3271 {CC "findUniqueConcreteMethod", CC "(" HS_KLASS2 HS_METHOD2 ")" HS_METHOD, FN_PTR(findUniqueConcreteMethod)}, 3272 {CC "getImplementor", CC "(" HS_KLASS2 ")" HS_KLASS, FN_PTR(getImplementor)}, 3273 {CC "getStackTraceElement", CC "(" HS_METHOD2 "I)" STACK_TRACE_ELEMENT, FN_PTR(getStackTraceElement)}, 3274 {CC "methodIsIgnoredBySecurityStackWalk", CC "(" HS_METHOD2 ")Z", FN_PTR(methodIsIgnoredBySecurityStackWalk)}, 3275 {CC "setNotInlinableOrCompilable", CC "(" HS_METHOD2 ")V", FN_PTR(setNotInlinableOrCompilable)}, 3276 {CC "isCompilable", CC "(" HS_METHOD2 ")Z", FN_PTR(isCompilable)}, 3277 {CC "hasNeverInlineDirective", CC "(" HS_METHOD2 ")Z", FN_PTR(hasNeverInlineDirective)}, 3278 {CC "shouldInlineMethod", CC "(" HS_METHOD2 ")Z", FN_PTR(shouldInlineMethod)}, 3279 {CC "lookupType", CC "(" STRING HS_KLASS2 "IZ)" HS_RESOLVED_TYPE, FN_PTR(lookupType)}, 3280 {CC "lookupJClass", CC "(J)" HS_RESOLVED_TYPE, FN_PTR(lookupJClass)}, 3281 {CC "getJObjectValue", CC "(" OBJECTCONSTANT ")J", FN_PTR(getJObjectValue)}, 3282 {CC "getArrayType", CC "(C" HS_KLASS2 ")" HS_KLASS, FN_PTR(getArrayType)}, 3283 {CC "lookupClass", CC "(" CLASS ")" HS_RESOLVED_TYPE, FN_PTR(lookupClass)}, 3284 {CC "lookupNameInPool", CC "(" HS_CONSTANT_POOL2 "II)" STRING, FN_PTR(lookupNameInPool)}, 3285 {CC "lookupNameAndTypeRefIndexInPool", CC "(" HS_CONSTANT_POOL2 "II)I", FN_PTR(lookupNameAndTypeRefIndexInPool)}, 3286 {CC "lookupSignatureInPool", CC "(" HS_CONSTANT_POOL2 "II)" STRING, FN_PTR(lookupSignatureInPool)}, 3287 {CC "lookupKlassRefIndexInPool", CC "(" HS_CONSTANT_POOL2 "II)I", FN_PTR(lookupKlassRefIndexInPool)}, 3288 {CC "lookupKlassInPool", CC "(" HS_CONSTANT_POOL2 "I)Ljava/lang/Object;", FN_PTR(lookupKlassInPool)}, 3289 {CC "lookupAppendixInPool", CC "(" HS_CONSTANT_POOL2 "II)" OBJECTCONSTANT, FN_PTR(lookupAppendixInPool)}, 3290 {CC "lookupMethodInPool", CC "(" HS_CONSTANT_POOL2 "IB" HS_METHOD2 ")" HS_METHOD, FN_PTR(lookupMethodInPool)}, 3291 {CC "lookupConstantInPool", CC "(" HS_CONSTANT_POOL2 "IZ)" JAVACONSTANT, FN_PTR(lookupConstantInPool)}, 3292 {CC "resolveBootstrapMethod", CC "(" HS_CONSTANT_POOL2 "I)[" OBJECT, FN_PTR(resolveBootstrapMethod)}, 3293 {CC "bootstrapArgumentIndexAt", CC "(" HS_CONSTANT_POOL2 "II)I", FN_PTR(bootstrapArgumentIndexAt)}, 3294 {CC "getUncachedStringInPool", CC "(" HS_CONSTANT_POOL2 "I)" JAVACONSTANT, FN_PTR(getUncachedStringInPool)}, 3295 {CC "resolveTypeInPool", CC "(" HS_CONSTANT_POOL2 "I)" HS_KLASS, FN_PTR(resolveTypeInPool)}, 3296 {CC "resolveFieldInPool", CC "(" HS_CONSTANT_POOL2 "I" HS_METHOD2 "B[I)" HS_KLASS, FN_PTR(resolveFieldInPool)}, 3297 {CC "decodeFieldIndexToCPIndex", CC "(" HS_CONSTANT_POOL2 "I)I", FN_PTR(decodeFieldIndexToCPIndex)}, 3298 {CC "decodeMethodIndexToCPIndex", CC "(" HS_CONSTANT_POOL2 "I)I", FN_PTR(decodeMethodIndexToCPIndex)}, 3299 {CC "decodeIndyIndexToCPIndex", CC "(" HS_CONSTANT_POOL2 "IZ)I", FN_PTR(decodeIndyIndexToCPIndex)}, 3300 {CC "resolveInvokeHandleInPool", CC "(" HS_CONSTANT_POOL2 "I)V", FN_PTR(resolveInvokeHandleInPool)}, 3301 {CC "isResolvedInvokeHandleInPool", CC "(" HS_CONSTANT_POOL2 "II)I", FN_PTR(isResolvedInvokeHandleInPool)}, 3302 {CC "resolveMethod", CC "(" HS_KLASS2 HS_METHOD2 HS_KLASS2 ")" HS_METHOD, FN_PTR(resolveMethod)}, 3303 {CC "getSignaturePolymorphicHolders", CC "()[" STRING, FN_PTR(getSignaturePolymorphicHolders)}, 3304 {CC "getVtableIndexForInterfaceMethod", CC "(" HS_KLASS2 HS_METHOD2 ")I", FN_PTR(getVtableIndexForInterfaceMethod)}, 3305 {CC "getClassInitializer", CC "(" HS_KLASS2 ")" HS_METHOD, FN_PTR(getClassInitializer)}, 3306 {CC "hasFinalizableSubclass", CC "(" HS_KLASS2 ")Z", FN_PTR(hasFinalizableSubclass)}, 3307 {CC "getMaxCallTargetOffset", CC "(J)J", FN_PTR(getMaxCallTargetOffset)}, 3308 {CC "asResolvedJavaMethod", CC "(" EXECUTABLE ")" HS_METHOD, FN_PTR(asResolvedJavaMethod)}, 3309 {CC "getResolvedJavaMethod", CC "(" OBJECTCONSTANT "J)" HS_METHOD, FN_PTR(getResolvedJavaMethod)}, 3310 {CC "getConstantPool", CC "(" OBJECT "JZ)" HS_CONSTANT_POOL, FN_PTR(getConstantPool)}, 3311 {CC "getResolvedJavaType0", CC "(Ljava/lang/Object;JZ)" HS_KLASS, FN_PTR(getResolvedJavaType0)}, 3312 {CC "readConfiguration", CC "()[" OBJECT, FN_PTR(readConfiguration)}, 3313 {CC "installCode0", CC "(JJZ" HS_COMPILED_CODE "[" OBJECT INSTALLED_CODE "J[B)I", FN_PTR(installCode0)}, 3314 {CC "getInstallCodeFlags", CC "()I", FN_PTR(getInstallCodeFlags)}, 3315 {CC "resetCompilationStatistics", CC "()V", FN_PTR(resetCompilationStatistics)}, 3316 {CC "disassembleCodeBlob", CC "(" INSTALLED_CODE ")" STRING, FN_PTR(disassembleCodeBlob)}, 3317 {CC "executeHotSpotNmethod", CC "([" OBJECT HS_NMETHOD ")" OBJECT, FN_PTR(executeHotSpotNmethod)}, 3318 {CC "getLineNumberTable", CC "(" HS_METHOD2 ")[J", FN_PTR(getLineNumberTable)}, 3319 {CC "getLocalVariableTableStart", CC "(" HS_METHOD2 ")J", FN_PTR(getLocalVariableTableStart)}, 3320 {CC "getLocalVariableTableLength", CC "(" HS_METHOD2 ")I", FN_PTR(getLocalVariableTableLength)}, 3321 {CC "reprofile", CC "(" HS_METHOD2 ")V", FN_PTR(reprofile)}, 3322 {CC "invalidateHotSpotNmethod", CC "(" HS_NMETHOD "Z)V", FN_PTR(invalidateHotSpotNmethod)}, 3323 {CC "collectCounters", CC "()[J", FN_PTR(collectCounters)}, 3324 {CC "getCountersSize", CC "()I", FN_PTR(getCountersSize)}, 3325 {CC "setCountersSize", CC "(I)Z", FN_PTR(setCountersSize)}, 3326 {CC "allocateCompileId", CC "(" HS_METHOD2 "I)I", FN_PTR(allocateCompileId)}, 3327 {CC "isMature", CC "(J)Z", FN_PTR(isMature)}, 3328 {CC "hasCompiledCodeForOSR", CC "(" HS_METHOD2 "II)Z", FN_PTR(hasCompiledCodeForOSR)}, 3329 {CC "getSymbol", CC "(J)" STRING, FN_PTR(getSymbol)}, 3330 {CC "getSignatureName", CC "(J)" STRING, FN_PTR(getSignatureName)}, 3331 {CC "iterateFrames", CC "([" RESOLVED_METHOD "[" RESOLVED_METHOD "I" INSPECTED_FRAME_VISITOR ")" OBJECT, FN_PTR(iterateFrames)}, 3332 {CC "materializeVirtualObjects", CC "(" HS_STACK_FRAME_REF "Z)V", FN_PTR(materializeVirtualObjects)}, 3333 {CC "shouldDebugNonSafepoints", CC "()Z", FN_PTR(shouldDebugNonSafepoints)}, 3334 {CC "writeDebugOutput", CC "(JIZ)V", FN_PTR(writeDebugOutput)}, 3335 {CC "flushDebugOutput", CC "()V", FN_PTR(flushDebugOutput)}, 3336 {CC "methodDataProfileDataSize", CC "(JI)I", FN_PTR(methodDataProfileDataSize)}, 3337 {CC "methodDataExceptionSeen", CC "(JI)I", FN_PTR(methodDataExceptionSeen)}, 3338 {CC "interpreterFrameSize", CC "(" BYTECODE_FRAME ")I", FN_PTR(interpreterFrameSize)}, 3339 {CC "compileToBytecode", CC "(" OBJECTCONSTANT ")V", FN_PTR(compileToBytecode)}, 3340 {CC "getFlagValue", CC "(" STRING ")" OBJECT, FN_PTR(getFlagValue)}, 3341 {CC "getInterfaces", CC "(" HS_KLASS2 ")[" HS_KLASS, FN_PTR(getInterfaces)}, 3342 {CC "getComponentType", CC "(" HS_KLASS2 ")" HS_RESOLVED_TYPE, FN_PTR(getComponentType)}, 3343 {CC "ensureInitialized", CC "(" HS_KLASS2 ")V", FN_PTR(ensureInitialized)}, 3344 {CC "ensureLinked", CC "(" HS_KLASS2 ")V", FN_PTR(ensureLinked)}, 3345 {CC "getIdentityHashCode", CC "(" OBJECTCONSTANT ")I", FN_PTR(getIdentityHashCode)}, 3346 {CC "isInternedString", CC "(" OBJECTCONSTANT ")Z", FN_PTR(isInternedString)}, 3347 {CC "unboxPrimitive", CC "(" OBJECTCONSTANT ")" OBJECT, FN_PTR(unboxPrimitive)}, 3348 {CC "boxPrimitive", CC "(" OBJECT ")" OBJECTCONSTANT, FN_PTR(boxPrimitive)}, 3349 {CC "getDeclaredConstructors", CC "(" HS_KLASS2 ")[" RESOLVED_METHOD, FN_PTR(getDeclaredConstructors)}, 3350 {CC "getDeclaredMethods", CC "(" HS_KLASS2 ")[" RESOLVED_METHOD, FN_PTR(getDeclaredMethods)}, 3351 {CC "getDeclaredFieldsInfo", CC "(" HS_KLASS2 ")[" FIELDINFO, FN_PTR(getDeclaredFieldsInfo)}, 3352 {CC "readStaticFieldValue", CC "(" HS_KLASS2 "JC)" JAVACONSTANT, FN_PTR(readStaticFieldValue)}, 3353 {CC "readFieldValue", CC "(" OBJECTCONSTANT HS_KLASS2 "JC)" JAVACONSTANT, FN_PTR(readFieldValue)}, 3354 {CC "isInstance", CC "(" HS_KLASS2 OBJECTCONSTANT ")Z", FN_PTR(isInstance)}, 3355 {CC "isAssignableFrom", CC "(" HS_KLASS2 HS_KLASS2 ")Z", FN_PTR(isAssignableFrom)}, 3356 {CC "isTrustedForIntrinsics", CC "(" HS_KLASS2 ")Z", FN_PTR(isTrustedForIntrinsics)}, 3357 {CC "asJavaType", CC "(" OBJECTCONSTANT ")" HS_RESOLVED_TYPE, FN_PTR(asJavaType)}, 3358 {CC "asString", CC "(" OBJECTCONSTANT ")" STRING, FN_PTR(asString)}, 3359 {CC "equals", CC "(" OBJECTCONSTANT "J" OBJECTCONSTANT "J)Z", FN_PTR(equals)}, 3360 {CC "getJavaMirror", CC "(" HS_KLASS2 ")" OBJECTCONSTANT, FN_PTR(getJavaMirror)}, 3361 {CC "getArrayLength", CC "(" OBJECTCONSTANT ")I", FN_PTR(getArrayLength)}, 3362 {CC "readArrayElement", CC "(" OBJECTCONSTANT "I)Ljava/lang/Object;", FN_PTR(readArrayElement)}, 3363 {CC "arrayBaseOffset", CC "(C)I", FN_PTR(arrayBaseOffset)}, 3364 {CC "arrayIndexScale", CC "(C)I", FN_PTR(arrayIndexScale)}, 3365 {CC "clearOopHandle", CC "(J)V", FN_PTR(clearOopHandle)}, 3366 {CC "releaseClearedOopHandles", CC "()V", FN_PTR(releaseClearedOopHandles)}, 3367 {CC "registerNativeMethods", CC "(" CLASS ")[J", FN_PTR(registerNativeMethods)}, 3368 {CC "isCurrentThreadAttached", CC "()Z", FN_PTR(isCurrentThreadAttached)}, 3369 {CC "getCurrentJavaThread", CC "()J", FN_PTR(getCurrentJavaThread)}, 3370 {CC "attachCurrentThread", CC "([BZ[J)Z", FN_PTR(attachCurrentThread)}, 3371 {CC "detachCurrentThread", CC "(Z)Z", FN_PTR(detachCurrentThread)}, 3372 {CC "translate", CC "(" OBJECT "Z)J", FN_PTR(translate)}, 3373 {CC "unhand", CC "(J)" OBJECT, FN_PTR(unhand)}, 3374 {CC "updateHotSpotNmethod", CC "(" HS_NMETHOD ")V", FN_PTR(updateHotSpotNmethod)}, 3375 {CC "getCode", CC "(" HS_INSTALLED_CODE ")[B", FN_PTR(getCode)}, 3376 {CC "asReflectionExecutable", CC "(" HS_METHOD2 ")" REFLECTION_EXECUTABLE, FN_PTR(asReflectionExecutable)}, 3377 {CC "asReflectionField", CC "(" HS_KLASS2 "I)" REFLECTION_FIELD, FN_PTR(asReflectionField)}, 3378 {CC "getEncodedClassAnnotationData", CC "(" HS_KLASS2 OBJECT "IJ)[B", FN_PTR(getEncodedClassAnnotationData)}, 3379 {CC "getEncodedExecutableAnnotationData", CC "(" HS_METHOD2 OBJECT "IJ)[B", FN_PTR(getEncodedExecutableAnnotationData)}, 3380 {CC "getEncodedFieldAnnotationData", CC "(" HS_KLASS2 "I" OBJECT "IJ)[B", FN_PTR(getEncodedFieldAnnotationData)}, 3381 {CC "getFailedSpeculations", CC "(J[[B)[[B", FN_PTR(getFailedSpeculations)}, 3382 {CC "getFailedSpeculationsAddress", CC "(" HS_METHOD2 ")J", FN_PTR(getFailedSpeculationsAddress)}, 3383 {CC "releaseFailedSpeculations", CC "(J)V", FN_PTR(releaseFailedSpeculations)}, 3384 {CC "addFailedSpeculation", CC "(J[B)Z", FN_PTR(addFailedSpeculation)}, 3385 {CC "callSystemExit", CC "(I)V", FN_PTR(callSystemExit)}, 3386 {CC "ticksNow", CC "()J", FN_PTR(ticksNow)}, 3387 {CC "getThreadLocalObject", CC "(I)" OBJECT, FN_PTR(getThreadLocalObject)}, 3388 {CC "setThreadLocalObject", CC "(I" OBJECT ")V", FN_PTR(setThreadLocalObject)}, 3389 {CC "getThreadLocalLong", CC "(I)J", FN_PTR(getThreadLocalLong)}, 3390 {CC "setThreadLocalLong", CC "(IJ)V", FN_PTR(setThreadLocalLong)}, 3391 {CC "registerCompilerPhase", CC "(" STRING ")I", FN_PTR(registerCompilerPhase)}, 3392 {CC "notifyCompilerPhaseEvent", CC "(JIII)V", FN_PTR(notifyCompilerPhaseEvent)}, 3393 {CC "notifyCompilerInliningEvent", CC "(I" HS_METHOD2 HS_METHOD2 "ZLjava/lang/String;I)V", FN_PTR(notifyCompilerInliningEvent)}, 3394 {CC "getOopMapAt", CC "(" HS_METHOD2 "I[J)V", FN_PTR(getOopMapAt)}, 3395 {CC "updateCompilerThreadCanCallJava", CC "(Z)Z", FN_PTR(updateCompilerThreadCanCallJava)}, 3396 }; 3397 3398 int CompilerToVM::methods_count() { 3399 return sizeof(methods) / sizeof(JNINativeMethod); 3400 }