/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 83 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 …]
|
D | bytecode-graph-builder.h | 64 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,
|
D | ast-graph-builder.h | 168 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,
|
D | bytecode-graph-builder.cc | 1308 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
|
D | raw-machine-assembler.h | 811 Node* MakeNode(const Operator* op, int input_count, Node* const* inputs);
|
D | ast-graph-builder.cc | 2892 Node* AstGraphBuilder::MakeNode(const Operator* op, int value_input_count, in MakeNode() function in v8::internal::compiler::AstGraphBuilder
|
/external/tensorflow/tensorflow/core/graph/ |
D | graph_constructor.cc | 188 Status MakeNode(const NodeDef& node_def, Node** node); 547 Status GraphConstructor::MakeNode(const NodeDef& node_def, Node** node) { in MakeNode() function in tensorflow::__anond2858b560111::GraphConstructor 994 TF_RETURN_IF_ERROR(MakeNode(*node_def, &node)); in Convert()
|