mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-18 01:17:57 +00:00
7003130: assert(iterations<CG_BUILD_ITER_LIMIT) failed: infinite EA connection graph
Bump CG_BUILD_ITER_LIMIT to 20 Reviewed-by: iveresov
This commit is contained in:
parent
e970ef6182
commit
85dd279283
@ -1609,10 +1609,11 @@ bool ConnectionGraph::compute_escape() {
|
||||
//
|
||||
// Normally only 1-3 passes needed to build
|
||||
// Connection Graph depending on graph complexity.
|
||||
// Set limit to 10 to catch situation when something
|
||||
// Observed 8 passes in jvm2008 compiler.compiler.
|
||||
// Set limit to 20 to catch situation when something
|
||||
// did go wrong and recompile the method without EA.
|
||||
|
||||
#define CG_BUILD_ITER_LIMIT 10
|
||||
#define CG_BUILD_ITER_LIMIT 20
|
||||
|
||||
uint length = worklist.length();
|
||||
int iterations = 0;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user