Searched refs:osr_loop_entry (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/compiler/ |
D | osr.cc | 57 Node* osr_loop_entry) { in PeelOuterLoopsForOsr() argument 76 mapping->at(osr_loop_entry->id()) = dead; in PeelOuterLoopsForOsr() 280 Node* osr_loop_entry = nullptr; in Deconstruct() local 285 osr_loop_entry = node; // found the OSR loop entry in Deconstruct() 292 CHECK_NOT_NULL(osr_loop_entry); // Should have found the OSR loop entry. in Deconstruct() 294 for (Node* use : osr_loop_entry->uses()) { in Deconstruct() 303 for (Node* use : osr_loop_entry->uses()) { in Deconstruct() 316 osr_normal_entry, osr_loop_entry); in Deconstruct() 323 osr_loop_entry->ReplaceUses(graph->start()); in Deconstruct() 324 osr_loop_entry->Kill(); in Deconstruct()
|
D | ast-graph-builder.cc | 3024 Node* osr_loop_entry = graph->NewNode(builder_->common()->OsrLoopEntry(), in PrepareForOsrEntry() local 3026 UpdateControlDependency(osr_loop_entry); in PrepareForOsrEntry() 3027 UpdateEffectDependency(osr_loop_entry); in PrepareForOsrEntry() 3032 graph->NewNode(builder_->common()->OsrValue(i), osr_loop_entry); in PrepareForOsrEntry() 3038 contexts()->back() = graph->NewNode(op_inner, osr_loop_entry); in PrepareForOsrEntry() 3043 osr_loop_entry, osr_loop_entry); in PrepareForOsrEntry() 3054 graph->NewNode(guard_op, values()->at(i), effect, osr_loop_entry); in PrepareForOsrEntry() 3057 graph->NewNode(guard_op, contexts()->back(), effect, osr_loop_entry); in PrepareForOsrEntry()
|