Home | History | Annotate | Download | only in src

Lines Matching refs:back_edges

10985   BackEdgeTable back_edges(this, &no_gc);
10986 for (uint32_t i = 0; i < back_edges.length(); i++) {
10987 if (back_edges.pc_offset(i) == pc_offset) return back_edges.ast_id(i);
10996 BackEdgeTable back_edges(this, &no_gc);
10997 for (uint32_t i = 0; i < back_edges.length(); i++) {
10998 if (back_edges.ast_id(i) == ast_id) return back_edges.pc_offset(i);
11488 BackEdgeTable back_edges(this, &no_gc);
11490 PrintF(out, "Back edges (size = %u)\n", back_edges.length());
11493 for (uint32_t i = 0; i < back_edges.length(); i++) {
11494 PrintF(out, "%6d %9u %10u\n", back_edges.ast_id(i).ToInt(),
11495 back_edges.pc_offset(i),
11496 back_edges.loop_depth(i));