--- old/src/share/vm/prims/whitebox.cpp 2016-04-13 14:48:45.418218448 +0200 +++ new/src/share/vm/prims/whitebox.cpp 2016-04-13 14:48:45.278218442 +0200 @@ -645,7 +645,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(), CompileBroker::Reason_Whitebox, THREAD); MutexLockerEx mu(Compile_lock); return (mh->queued_for_compilation() || nm != NULL); }