mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8244724: CTW: C2 compilation fails with "Live Node limit exceeded limit"
Fix live limit assert in node construction to be ignored during code generation in Compile::Code_Gen(). Reviewed-by: kvn, neliasso
This commit is contained in:
parent
46ff8fdce9
commit
83a8c4acc7
4 changed files with 128 additions and 6 deletions
|
@ -1013,6 +1013,7 @@ void Compile::Init(int aliaslevel) {
|
|||
register_library_intrinsics();
|
||||
#ifdef ASSERT
|
||||
_type_verify_symmetry = true;
|
||||
_phase_optimize_finished = false;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -2249,6 +2250,7 @@ void Compile::Optimize() {
|
|||
}
|
||||
|
||||
print_method(PHASE_OPTIMIZE_FINISHED, 2);
|
||||
DEBUG_ONLY(set_phase_optimize_finished();)
|
||||
}
|
||||
|
||||
//---------------------------- Bitwise operation packing optimization ---------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue