mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8205824: Update Graal
Reviewed-by: iveresov, kvn
This commit is contained in:
parent
80e93fc752
commit
6fc0ec871a
2690 changed files with 7142 additions and 1208 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue