/third_party/node/deps/v8/src/torque/ |
D | torque-parser.cc | 342 return MakeNode<BasicTypeExpression>( in AddConstexpr() 344 MakeNode<Identifier>(CONSTEXPR_TYPE_PREFIX + basic->name->value), in AddConstexpr() 370 auto label_id = MakeNode<Identifier>(label_name); in MakeCall() 374 MakeNode<TryHandler>(TryHandler::HandlerKind::kLabel, label_id, in MakeCall() 383 result = MakeNode<CallMethodExpression>(*target, callee, arguments, labels); in MakeCall() 385 result = MakeNode<CallExpression>(callee, arguments, labels); in MakeCall() 389 result = MakeNode<TryLabelExpression>(result, label); in MakeCall() 398 return MakeCall(MakeNode<IdentifierExpression>(callee, generic_arguments), in MakeCall() 415 return ParseResult{MakeCall(MakeNode<IdentifierExpression>(callee), this_arg, in MakeMethodCall() 427 MakeNode<NewExpression>(type, std::move(initializers), pretenured); in MakeNewExpression() [all …]
|
D | types.cc | 755 load_signature.parameter_names.push_back(MakeNode<Identifier>("o")); in GenerateAccessors() 758 load_signature.parameter_names.push_back(MakeNode<Identifier>("i")); in GenerateAccessors() 769 MakeNode<ElementAccessExpression>(load_expression, index); in GenerateAccessors() 771 Statement* load_body = MakeNode<ReturnStatement>(load_expression); in GenerateAccessors() 780 store_signature.parameter_names.push_back(MakeNode<Identifier>("o")); in GenerateAccessors() 783 store_signature.parameter_names.push_back(MakeNode<Identifier>("i")); in GenerateAccessors() 787 store_signature.parameter_names.push_back(MakeNode<Identifier>("v")); in GenerateAccessors() 796 MakeNode<ElementAccessExpression>(store_expression, index); in GenerateAccessors() 798 Statement* store_body = MakeNode<ExpressionStatement>( in GenerateAccessors() 799 MakeNode<AssignmentExpression>(store_expression, value)); in GenerateAccessors() [all …]
|
D | ast.h | 1277 T* MakeNode(Args... args) { in MakeNode() function 1284 return MakeNode<FieldAccessExpression>( in MakeFieldAccessExpression() 1285 object, MakeNode<Identifier>(std::move(field))); in MakeFieldAccessExpression() 1291 return MakeNode<IdentifierExpression>(std::move(namespace_qualification), 1292 MakeNode<Identifier>(std::move(name)), 1303 return MakeNode<CallExpression>(callee, std::move(arguments), 1316 return MakeNode<VarDeclarationStatement>( in MakeConstDeclarationStatement() 1317 /*const_qualified=*/true, MakeNode<Identifier>(std::move(name)), in MakeConstDeclarationStatement() 1324 return MakeNode<BasicTypeExpression>(std::move(namespace_qualification), name, 1330 return MakeNode<StructExpression>(type, std::move(initializers)); in MakeStructExpression()
|
D | type-visitor.cc | 115 MakeNode<Identifier>(kThisParameterName)); in DeclareMethods()
|
D | implementation-visitor.cc | 1668 MakeNode<Identifier>("map")); in Visit()
|
/third_party/node/deps/v8/src/compiler/ |
D | raw-machine-assembler.cc | 545 Node* branch = MakeNode(common()->Branch(BranchHint::kNone), 1, &condition); in Branch() 550 true_block->AddNode(MakeNode(common()->IfTrue(), 1, &branch)); in Branch() 553 false_block->AddNode(MakeNode(common()->IfFalse(), 1, &branch)); in Branch() 573 Node* switch_node = MakeNode(common()->Switch(succ_count), 1, &index); in Switch() 595 Node* ret = MakeNode(common()->Return(1), 2, values); in Return() 602 Node* ret = MakeNode(common()->Return(2), 3, values); in Return() 609 Node* ret = MakeNode(common()->Return(3), 4, values); in Return() 616 Node* ret = MakeNode(common()->Return(4), 5, values); in Return() 626 Node* ret = MakeNode(common()->Return(count), count + 1, values); in Return() 649 Node* ret = MakeNode(common()->Return(1), 2, values); in PopAndReturn() [all …]
|
D | bytecode-graph-builder.cc | 116 return MakeNode(op, 0, static_cast<Node**>(nullptr), incomplete); in NewNode() 122 return MakeNode(op, arraysize(buffer), buffer); in NewNode() 150 Node* MakeNode(const Operator* op, int value_input_count, 2411 node = MakeNode(op, static_cast<int>(arg_count), args); in BuildCall() 2569 node = MakeNode(op, JSCallWithSpreadNode::ArityForArgc(arg_count), args); in VisitCallWithSpread() 2586 Node* value = MakeNode(call, arity, call_args); in VisitCallJSRuntime() 2602 Node* value = MakeNode(call_runtime_op, arity, all); in ProcessCallRuntimeArguments() 2704 node = MakeNode(op, arity, args); in VisitConstruct() 2737 node = MakeNode(op, arity, args); in VisitConstructWithSpread() 3714 MakeNode(javascript()->GeneratorStore(count_written), 3 + count_written, in VisitSuspendGenerator() [all …]
|
D | raw-machine-assembler.h | 1089 Node* MakeNode(const Operator* op, int input_count, Node* const* inputs);
|
/third_party/rust/crates/rustix/src/thread/ |
D | prctl.rs | 319 MakeNode = CAP_MKNOD, enumerator
|