CompiledMethodLoad is also needed to enable DebugNonSafepoints info by default
| 222 | |
| 223 | // CompiledMethodLoad is also needed to enable DebugNonSafepoints info by default |
| 224 | static void JNICALL CompiledMethodLoad(jvmtiEnv* jvmti, jmethodID method, |
| 225 | jint code_size, const void* code_addr, |
| 226 | jint map_length, const jvmtiAddrLocationMap* map, |
| 227 | const void* compile_info) { |
| 228 | instance()->addJavaMethod(code_addr, code_size, method); |
| 229 | } |
| 230 | |
| 231 | static void JNICALL DynamicCodeGenerated(jvmtiEnv* jvmti, const char* name, |
| 232 | const void* address, jint length) { |
nothing calls this directly
no test coverage detected