mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +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
|
@ -462,7 +462,7 @@ class Range : public CompilationResourceObj {
|
|||
public:
|
||||
Range(int from, int to, Range* next);
|
||||
|
||||
static void initialize();
|
||||
static void initialize(Arena* arena);
|
||||
static Range* end() { return _end; }
|
||||
|
||||
int from() const { return _from; }
|
||||
|
@ -529,7 +529,7 @@ class Interval : public CompilationResourceObj {
|
|||
public:
|
||||
Interval(int reg_num);
|
||||
|
||||
static void initialize();
|
||||
static void initialize(Arena* arena);
|
||||
static Interval* end() { return _end; }
|
||||
|
||||
// accessors
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue