Home | History | Annotate | Download | only in compiler

Lines Matching refs:Edge

274     for (Edge edge : node_->use_edges()) {
275 Node* const user = edge.from();
277 if (NodeProperties::IsControlEdge(edge)) {
283 edge.UpdateTo(jsgraph()->Dead());
479 for (Edge edge : exception_merge->use_edges()) {
480 if (NodeProperties::IsEffectEdge(edge)) edge.UpdateTo(exception_effect);
481 if (NodeProperties::IsValueEdge(edge)) edge.UpdateTo(exception_value);
724 for (Edge edge : node->use_edges()) {
725 if (edge.from()->opcode() == IrOpcode::kIfException) {
726 DCHECK(NodeProperties::IsControlEdge(edge) ||
727 NodeProperties::IsEffectEdge(edge));
728 edge.UpdateTo(vfalse);
729 Revisit(edge.from());
1546 for (Edge edge : node->use_edges()) {
1547 if (edge.from()->opcode() == IrOpcode::kIfException) {
1548 edge.UpdateTo(vfalse1);
1549 Revisit(edge.from());