src/hotspot/share/prims/whitebox.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File
*** old/src/hotspot/share/prims/whitebox.cpp	Fri May 31 08:53:34 2019
--- new/src/hotspot/share/prims/whitebox.cpp	Fri May 31 08:53:34 2019

*** 917,929 **** --- 917,929 ---- WB_ENTRY(void, WB_MakeMethodNotCompilable(JNIEnv* env, jobject o, jobject method, jint comp_level, jboolean is_osr)) jmethodID jmid = reflected_method_to_jmid(thread, env, method); CHECK_JNI_EXCEPTION(env); methodHandle mh(THREAD, Method::checked_resolve_jmethod_id(jmid)); if (is_osr) { ! mh->set_not_osr_compilable(comp_level, true /* report */, "WhiteBox"); ! mh->set_not_osr_compilable("WhiteBox", comp_level); } else { ! mh->set_not_compilable(comp_level, true /* report */, "WhiteBox"); ! mh->set_not_compilable("WhiteBox", comp_level); } WB_END WB_ENTRY(jint, WB_GetMethodEntryBci(JNIEnv* env, jobject o, jobject method)) jmethodID jmid = reflected_method_to_jmid(thread, env, method);

src/hotspot/share/prims/whitebox.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File