Home
last modified time | relevance | path

Searched refs:constexpr_arguments (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/torque/
Dinstructions.h457 std::vector<std::string> constexpr_arguments) in CallIntrinsicInstruction()
460 constexpr_arguments(constexpr_arguments) {} in CallIntrinsicInstruction()
467 std::vector<std::string> constexpr_arguments; member
476 std::vector<std::string> constexpr_arguments, in CallCsaMacroInstruction()
479 constexpr_arguments(constexpr_arguments), in CallCsaMacroInstruction()
490 std::vector<std::string> constexpr_arguments; member
500 std::vector<std::string> constexpr_arguments, in CallCsaMacroAndBranchInstruction()
505 constexpr_arguments(constexpr_arguments), in CallCsaMacroAndBranchInstruction()
525 std::vector<std::string> constexpr_arguments; member
537 std::vector<std::string> constexpr_arguments) in MakeLazyNodeInstruction()
[all …]
Dcc-generator.cc104 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack) { in ProcessArgumentsCommon() argument
109 args.push_back(std::move(constexpr_arguments.back())); in ProcessArgumentsCommon()
110 constexpr_arguments.pop_back(); in ProcessArgumentsCommon()
129 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
212 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
Dcsa-generator.cc156 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack) { in ProcessArgumentsCommon() argument
161 args.push_back(std::move(constexpr_arguments.back())); in ProcessArgumentsCommon()
162 constexpr_arguments.pop_back(); in ProcessArgumentsCommon()
181 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
317 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
369 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
490 parameter_types, instruction.constexpr_arguments, stack); in EmitInstruction()
Dcc-generator.h35 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack);
Dcsa-generator.h41 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack);
Dinstructions.cc202 PrintCommaSeparatedList(os, instruction.constexpr_arguments); in operator <<()
271 PrintCommaSeparatedList(os, instruction.constexpr_arguments); in operator <<()
403 PrintCommaSeparatedList(os, instruction.constexpr_arguments); in operator <<()
796 for (const std::string& arg : instruction.constexpr_arguments) { in operator <<()
Dimplementation-visitor.cc2662 std::vector<std::string>* constexpr_arguments, bool inline_macro) { in AddCallParameter() argument
2675 constexpr_arguments->push_back(converted.constexpr_value()); in AddCallParameter()
2757 std::vector<std::string> constexpr_arguments; in GenerateCall() local
2764 &constexpr_arguments, inline_macro); in GenerateCall()
2782 &constexpr_arguments, inline_macro); in GenerateCall()
2792 &argument_range, &constexpr_arguments, inline_macro); in GenerateCall()
2913 CallCsaMacroInstruction{macro, constexpr_arguments, catch_block}); in GenerateCall()
2930 macro, constexpr_arguments, return_continuation, label_blocks, in GenerateCall()
3043 constexpr_arguments.size() != 1) { in GenerateCall()
3056 result << constexpr_arguments[0]; in GenerateCall()
[all …]
Dimplementation-visitor.h728 std::vector<std::string>* constexpr_arguments,