Home
last modified time | relevance | path

Searched refs:MakeNode (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/
Draw-machine-assembler.cc83 Node* branch = MakeNode(common()->Branch(), 1, &condition); in Branch()
124 Node* ret = MakeNode(common()->Return(1), 2, values); in Return()
132 Node* ret = MakeNode(common()->Return(2), 3, values); in Return()
140 Node* ret = MakeNode(common()->Return(3), 4, values); in Return()
147 Node* ret = MakeNode(common()->Return(1), 2, values); in PopAndReturn()
154 Node* ret = MakeNode(common()->Return(2), 3, values); in PopAndReturn()
162 Node* ret = MakeNode(common()->Return(3), 4, values); in PopAndReturn()
171 Node* ret = MakeNode(common()->Throw(), 1, values); in Unreachable()
201 Node* tail_call = MakeNode(common()->TailCall(desc), input_count, inputs); in TailCallN()
330 Node* node = MakeNode(op, input_count, inputs); in AddNode()
[all …]
Dbytecode-graph-builder.h64 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
69 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
74 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
79 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
84 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
107 Node* MakeNode(const Operator* op, int value_input_count, Node** value_inputs,
Dast-graph-builder.h168 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete);
172 return MakeNode(op, 1, &n1, false); in NewNode()
177 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
182 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
187 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
193 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode()
199 return MakeNode(op, arraysize(nodes), nodes, false); in NewNode()
204 return MakeNode(op, value_input_count, value_inputs, incomplete);
218 Node* MakeNode(const Operator* op, int value_input_count, Node** value_inputs,
Dbytecode-graph-builder.cc1308 Node* value = MakeNode(call_op, static_cast<int>(arity), all, false); in ProcessCallArguments()
1385 Node* value = MakeNode(call_runtime_op, static_cast<int>(arity), all, false); in ProcessCallRuntimeArguments()
1427 Node* value = MakeNode(op, static_cast<int>(arity), all, false); in ProcessConstructWithSpreadArguments()
1471 Node* value = MakeNode(call_new_op, static_cast<int>(arity), all, false); in ProcessConstructArguments()
1999 MakeNode(javascript()->GeneratorStore(register_count), value_input_count, in VisitSuspendGenerator()
2249 Node* BytecodeGraphBuilder::MakeNode(const Operator* op, int value_input_count, in MakeNode() function in v8::internal::compiler::BytecodeGraphBuilder
Draw-machine-assembler.h811 Node* MakeNode(const Operator* op, int input_count, Node* const* inputs);
Dast-graph-builder.cc2892 Node* AstGraphBuilder::MakeNode(const Operator* op, int value_input_count, in MakeNode() function in v8::internal::compiler::AstGraphBuilder