Home
last modified time | relevance | path

Searched refs:is_tailcall (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/torque/
Dinstructions.h462 bool IsBlockTerminator() const override { return is_tailcall; } in TORQUE_INSTRUCTION_BOILERPLATE()
463 CallBuiltinInstruction(bool is_tailcall, Builtin* builtin, size_t argc, in CallBuiltinInstruction()
465 : is_tailcall(is_tailcall), in CallBuiltinInstruction()
477 bool is_tailcall; member
485 bool IsBlockTerminator() const override { return is_tailcall; } in TORQUE_INSTRUCTION_BOILERPLATE()
486 CallBuiltinPointerInstruction(bool is_tailcall, in CallBuiltinPointerInstruction()
488 : is_tailcall(is_tailcall), type(type), argc(argc) {} in CallBuiltinPointerInstruction()
493 bool is_tailcall; member
502 CallRuntimeInstruction(bool is_tailcall, RuntimeFunction* runtime_function, in CallRuntimeInstruction()
504 : is_tailcall(is_tailcall), in CallRuntimeInstruction()
[all …]
Dimplementation-visitor.cc2453 Expression* callee, const Arguments& arguments, bool is_tailcall) { in GeneratePointerCall() argument
2496 CallBuiltinPointerInstruction{is_tailcall, type, arg_range.Size()}); in GeneratePointerCall()
2498 if (is_tailcall) { in GeneratePointerCall()
2552 bool is_tailcall) { in GenerateCall() argument
2555 if (is_tailcall) { in GenerateCall()
2659 is_tailcall, builtin, argument_range.Size(), catch_block}); in GenerateCall()
2661 if (is_tailcall) { in GenerateCall()
2671 if (is_tailcall) { in GenerateCall()
2781 is_tailcall, runtime_function, argument_range.Size(), catch_block}); in GenerateCall()
2783 if (is_tailcall || return_type == TypeOracle::GetNeverType()) { in GenerateCall()
[all …]
Dcsa-generator.cc487 if (instruction.is_tailcall) { in EmitInstruction()
544 if (instruction.is_tailcall) { in EmitInstruction()
638 if (instruction.is_tailcall) { in EmitInstruction()
Dinstructions.cc663 return is_tailcall || runtime_function->signature().return_type == in IsBlockTerminator()