/external/v8/src/torque/ |
D | torque-parser.cc | 181 T* MakeNode(Args... args) { in MakeNode() function 192 MakeNode<CallExpression>(callee, false, generic_args, args, labels); in MakeCall() 201 Expression* result = MakeNode<CallExpression>( in MakeBinaryOperator() 211 Expression* result = MakeNode<CallExpression>(op, true, TypeList{}, in MakeUnaryOperator() 249 Statement* result = MakeNode<AssertStatement>( in MakeAssertStatement() 258 Statement* result = MakeNode<DebugStatement>(kind, kind == "unreachable"); in MakeDebugStatement() 263 TypeExpression* result = MakeNode<BasicTypeExpression>(false, "void"); in MakeVoidType() 275 MacroDeclaration* macro = MakeNode<ExternalMacroDeclaration>( in MakeExternalMacro() 279 result = MakeNode<StandardDeclaration>(macro, nullptr); in MakeExternalMacro() 281 result = MakeNode<GenericDeclaration>(macro, generic_parameters); in MakeExternalMacro() [all …]
|
/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 101 Node* branch = MakeNode( in Branch() 144 Node* ret = MakeNode(common()->Return(1), 2, values); in Return() 151 Node* ret = MakeNode(common()->Return(2), 3, values); in Return() 158 Node* ret = MakeNode(common()->Return(3), 4, values); in Return() 165 Node* ret = MakeNode(common()->Return(4), 5, values); in Return() 175 Node* ret = MakeNode(common()->Return(count), count + 1, values); in Return() 183 Node* ret = MakeNode(common()->Return(1), 2, values); in PopAndReturn() 190 Node* ret = MakeNode(common()->Return(2), 3, values); in PopAndReturn() 198 Node* ret = MakeNode(common()->Return(3), 4, values); in PopAndReturn() 206 Node* ret = MakeNode(common()->Return(4), 5, values); in PopAndReturn() [all …]
|
D | bytecode-graph-builder.h | 73 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete); 78 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode() 83 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode() 88 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode() 93 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode() 99 return MakeNode(op, arraysize(buffer), buffer, false); in NewNode() 128 Node* MakeNode(const Operator* op, int value_input_count,
|
D | bytecode-graph-builder.cc | 1691 return MakeNode(call_op, arg_count, args, false); in ProcessCallArguments() 1919 Node* value = MakeNode(call_runtime_op, arity, all, false); in ProcessCallRuntimeArguments() 1976 return MakeNode(op, arg_count, args, false); in ProcessConstructArguments() 2870 MakeNode(javascript()->GeneratorStore(count_written), 3 + count_written, in VisitSuspendGenerator() 3379 Node* BytecodeGraphBuilder::MakeNode(const Operator* op, int value_input_count, in MakeNode() function in v8::internal::compiler::BytecodeGraphBuilder
|
D | raw-machine-assembler.h | 926 Node* MakeNode(const Operator* op, int input_count, Node* const* inputs);
|
/external/tensorflow/tensorflow/core/graph/ |
D | graph_constructor.cc | 194 Status MakeNode(const NodeDef& node_def, Node** node); 575 Status GraphConstructor::MakeNode(const NodeDef& node_def, Node** node) { in MakeNode() function in tensorflow::__anone0324be20111::GraphConstructor 1028 TF_RETURN_IF_ERROR(MakeNode(*node_def, &node)); in Convert()
|