Lines Matching refs:graph

13 #include "src/compiler/bytecode-graph-builder.h"
16 #include "src/compiler/graph-reducer.h"
174 Node* on_success = graph()->NewNode(common()->IfSuccess(), subcall);
178 graph()->NewNode(common()->IfException(), subcall, subcall);
185 graph()->NewNode(common()->Merge(subcall_count), subcall_count,
190 Node* value_output = graph()->NewNode(
194 graph()->NewNode(common()->EffectPhi(subcall_count),
217 NodeProperties::MergeControlToEnd(graph(), common(), input);
218 Revisit(graph()->end());
231 Node* control_output = graph()->NewNode(common()->Merge(input_count),
235 Node* value_output = graph()->NewNode(
239 graph()->NewNode(common()->EffectPhi(input_count),
263 Node* node0 = graph()->NewNode(op0);
273 Node* params_node = graph()->NewNode(
276 return FrameState{graph()->NewNode(
319 // in the same graph in a compositional way.
379 *context_out = effect = graph()->NewNode(
398 Graph::SubgraphScope scope(graph());
400 graph()->SetEnd(nullptr);
416 // are not inserted by the inlinee but were already part of the graph to the
418 subgraph_min_node_id = graph()->NodeCount();
421 graph()->zone(), jsgraph(), wasm_call_params.signature(),
427 start_node = graph()->start();
428 end = graph()->end();
441 AllNodes inlined_nodes(local_zone_, end, graph());
573 Graph::SubgraphScope scope(graph());
591 start_node = graph()->start();
592 end = graph()->end();
602 AllNodes inlined_nodes(local_zone_, end, graph());
642 graph()->NewNode(javascript()->Create(), call.target(), new_target,
649 Node* dummy = graph()->NewNode(common()->Dead());
655 Node* check = graph()->NewNode(simplified()->ObjectIsReceiver(), node);
657 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
665 graph()->NewNode(simplified()->ObjectIsReceiver(), node);
667 graph()->NewNode(common()->Branch(), is_receiver, node_success);
669 graph()->NewNode(common()->IfTrue(), branch_is_receiver);
671 graph()->NewNode(common()->IfFalse(), branch_is_receiver);
672 branch_is_receiver_false = graph()->NewNode(
679 graph()->NewNode(common()->Throw(), branch_is_receiver_false,
681 NodeProperties::MergeControlToEnd(graph(), common(),
708 graph()->NewNode(simplified()->ConvertReceiver(p.convert_mode()),
732 Graph* JSInliner::graph() const { return jsgraph()->graph(); }