You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewGraalError("too many iterations at %s", loop);
544
+
if (!tooManyIterationsSeen) {
545
+
tooManyIterationsSeen = true;
546
+
/*
547
+
* The first time we see that we did too many iterations we materialize everything
548
+
* before the loop and see if that fixes our problems.
549
+
*/
550
+
graph.getDebug().dump(DebugContext.VERY_DETAILED_LEVEL, graph, "Too many loop iterations for %s trying to materialize everything before loop and redo loop nest", loop);
551
+
currentMode = EffectsClosureMode.MATERIALIZE_ALL;
552
+
continue;
553
+
} else {
554
+
thrownewGraalError("too many iterations at %s", loop);
0 commit comments