8205824: Update Graal

Reviewed-by: iveresov, kvn
This commit is contained in:
Tom Rodriguez 2018-06-27 17:02:41 -07:00
parent 80e93fc752
commit 6fc0ec871a
2690 changed files with 7142 additions and 1208 deletions

View file

@ -215,8 +215,10 @@ void JVMCICompiler::exit_on_pending_exception(oop exception, const char* message
Handle ex(THREAD, exception);
java_lang_Throwable::java_printStackTrace(ex, THREAD);
} else {
// Allow error reporting thread to print the stack trace.
os::sleep(THREAD, 200, false);
// Allow error reporting thread to print the stack trace. Windows
// doesn't allow uninterruptible wait for JavaThreads
const bool interruptible = true;
os::sleep(THREAD, 200, interruptible);
}
before_exit(THREAD);
@ -228,13 +230,6 @@ void JVMCICompiler::compile_method(ciEnv* env, ciMethod* target, int entry_bci,
ShouldNotReachHere();
}
bool JVMCICompiler::is_trivial(Method* method) {
if (_bootstrapping) {
return false;
}
return JVMCIRuntime::treat_as_trivial(method);
}
// Print compilation timers and statistics
void JVMCICompiler::print_timers() {
print_compilation_timers();