Lines Matching refs:back_edges
1549 BackEdgeTable back_edges(unoptimized, &no_gc); in Patch() local
1550 for (uint32_t i = 0; i < back_edges.length(); i++) { in Patch()
1551 if (static_cast<int>(back_edges.loop_depth(i)) == loop_nesting_level) { in Patch()
1554 back_edges.pc(i))); in Patch()
1555 PatchAt(unoptimized, back_edges.pc(i), ON_STACK_REPLACEMENT, patch); in Patch()
1571 BackEdgeTable back_edges(unoptimized, &no_gc); in Revert() local
1572 for (uint32_t i = 0; i < back_edges.length(); i++) { in Revert()
1573 if (static_cast<int>(back_edges.loop_depth(i)) <= loop_nesting_level) { in Revert()
1576 back_edges.pc(i))); in Revert()
1577 PatchAt(unoptimized, back_edges.pc(i), INTERRUPT, patch); in Revert()
1612 BackEdgeTable back_edges(unoptimized, &no_gc); in Verify() local
1613 for (uint32_t i = 0; i < back_edges.length(); i++) { in Verify()
1614 uint32_t loop_depth = back_edges.loop_depth(i); in Verify()
1621 back_edges.pc(i)) != INTERRUPT); in Verify()