Home | History | Annotate | Download | only in src

Lines Matching refs:back_edges

1624   BackEdgeTable back_edges(unoptimized, &no_gc);
1625 for (uint32_t i = 0; i < back_edges.length(); i++) {
1626 if (static_cast<int>(back_edges.loop_depth(i)) == loop_nesting_level) {
1629 back_edges.pc(i)));
1630 PatchAt(unoptimized, back_edges.pc(i), ON_STACK_REPLACEMENT, patch);
1647 BackEdgeTable back_edges(unoptimized, &no_gc);
1648 for (uint32_t i = 0; i < back_edges.length(); i++) {
1649 if (static_cast<int>(back_edges.loop_depth(i)) <= loop_nesting_level) {
1652 back_edges.pc(i)));
1653 PatchAt(unoptimized, back_edges.pc(i), INTERRUPT, patch);
1690 BackEdgeTable back_edges(unoptimized, &no_gc);
1691 for (uint32_t i = 0; i < back_edges.length(); i++) {
1692 uint32_t loop_depth = back_edges.loop_depth(i);
1699 back_edges.pc(i)) != INTERRUPT);