mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
6958292: C1: Enable parallel compilation
Enable parallel compilation in C1 Reviewed-by: never, kvn
This commit is contained in:
parent
36f8c82970
commit
00b75f8353
30 changed files with 328 additions and 344 deletions
|
@ -162,7 +162,6 @@ class GraphBuilder VALUE_OBJ_CLASS_SPEC {
|
|||
};
|
||||
|
||||
// for all GraphBuilders
|
||||
static bool _is_initialized; // true if trap tables were initialized, false otherwise
|
||||
static bool _can_trap[Bytecodes::number_of_java_codes];
|
||||
static bool _is_async[Bytecodes::number_of_java_codes];
|
||||
|
||||
|
@ -268,7 +267,6 @@ class GraphBuilder VALUE_OBJ_CLASS_SPEC {
|
|||
Instruction* append_split(StateSplit* instr);
|
||||
|
||||
// other helpers
|
||||
static bool is_initialized() { return _is_initialized; }
|
||||
static bool is_async(Bytecodes::Code code) {
|
||||
assert(0 <= code && code < Bytecodes::number_of_java_codes, "illegal bytecode");
|
||||
return _is_async[code];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue