--- old/src/share/vm/prims/whitebox.cpp 2016-04-14 14:23:41.433762423 +0200 +++ new/src/share/vm/prims/whitebox.cpp 2016-04-14 14:23:41.293762417 +0200 @@ -646,7 +646,7 @@ return false; } methodHandle mh(THREAD, method); - nmethod* nm = CompileBroker::compile_method(mh, bci, comp_level, mh, mh->invocation_count(), "WhiteBox", THREAD); + nmethod* nm = CompileBroker::compile_method(mh, bci, comp_level, mh, mh->invocation_count(), CompileTask::Reason_Whitebox, THREAD); MutexLockerEx mu(Compile_lock); return (mh->queued_for_compilation() || nm != NULL); }