Searched refs:back_edges (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Dfull-codegen.cc1637 BackEdgeTable back_edges(unoptimized, &no_gc);
1638 for (uint32_t i = 0; i < back_edges.length(); i++) {
1639 if (static_cast<int>(back_edges.loop_depth(i)) == loop_nesting_level) {
1642 back_edges.pc(i)));
1643 PatchAt(unoptimized, back_edges.pc(i), ON_STACK_REPLACEMENT, patch);
1659 BackEdgeTable back_edges(unoptimized, &no_gc);
1660 for (uint32_t i = 0; i < back_edges.length(); i++) {
1661 if (static_cast<int>(back_edges.loop_depth(i)) <= loop_nesting_level) {
1664 back_edges.pc(i)));
1665 PatchAt(unoptimized, back_edges
[all...]
H A Dobjects.cc10415 BackEdgeTable back_edges(this, &no_gc);
10416 for (uint32_t i = 0; i < back_edges.length(); i++) {
10417 if (back_edges.pc_offset(i) == pc_offset) return back_edges.ast_id(i);
10426 BackEdgeTable back_edges(this, &no_gc);
10427 for (uint32_t i = 0; i < back_edges.length(); i++) {
10428 if (back_edges.ast_id(i) == ast_id) return back_edges.pc_offset(i);
10924 BackEdgeTable back_edges(this, &no_gc);
10926 os << "Back edges (size = " << back_edges
[all...]
H A Dhydrogen.h267 const ZoneList<HBasicBlock*>* back_edges() const { return &back_edges_; } function in class:v8::internal::FINAL

Completed in 357 milliseconds