use of org.graalvm.compiler.loop.DefaultLoopPolicies in project graal by oracle.
the class EscapeAnalysisTest method testPeeledLoop.
@Test
public void testPeeledLoop() {
prepareGraph("testPeeledLoopSnippet", false);
new LoopPeelingPhase(new DefaultLoopPolicies()).apply(graph, getDefaultHighTierContext());
new SchedulePhase(graph.getOptions()).apply(graph);
}
Aggregations