Home | History | Annotate | Download | only in compiler

Lines Matching refs:Callable

477 Node* CodeAssembler::CallStub(Callable const& callable, Node* context,
479 Node* target = HeapConstant(callable.code());
480 return CallStub(callable.descriptor(), target, context, arg1, result_size);
483 Node* CodeAssembler::CallStub(Callable const& callable, Node* context,
485 Node* target = HeapConstant(callable.code());
486 return CallStub(callable.descriptor(), target, context, arg1, arg2,
490 Node* CodeAssembler::CallStub(Callable const& callable, Node* context,
493 Node* target = HeapConstant(callable.code());
494 return CallStub(callable.descriptor(), target, context, arg1, arg2, arg3,
498 Node* CodeAssembler::CallStub(Callable const& callable, Node* context,
501 Node* target = HeapConstant(callable.code());
502 return CallStub(callable.descriptor(), target, context, arg1, arg2, arg3,
506 Node* CodeAssembler::CallStubN(Callable const& callable, Node** args,
508 Node* target = HeapConstant(callable.code());
509 return CallStubN(callable.descriptor(), target, args, result_size);
709 Node* CodeAssembler::TailCallStub(Callable const& callable, Node* context,
711 Node* target = HeapConstant(callable.code());
712 return TailCallStub(callable.descriptor(), target, context, arg1,
716 Node* CodeAssembler::TailCallStub(Callable const& callable, Node* context,
718 Node* target = HeapConstant(callable.code());
719 return TailCallStub(callable.descriptor(), target, context, arg1, arg2,
723 Node* CodeAssembler::TailCallStub(Callable const& callable, Node* context,
726 Node* target = HeapConstant(callable.code());
727 return TailCallStub(callable.descriptor(), target, context, arg1, arg2, arg3,
731 Node* CodeAssembler::TailCallStub(Callable const& callable, Node* context,
734 Node* target = HeapConstant(callable.code());
735 return TailCallStub(callable.descriptor(), target, context, arg1, arg2, arg3,
739 Node* CodeAssembler::TailCallStub(Callable const& callable, Node* context,
742 Node* target = HeapConstant(callable.code());
743 return TailCallStub(callable.descriptor(), target, context, arg1, arg2, arg3,
910 Node* CodeAssembler::CallJS(Callable const& callable, Node* context,
914 Node* target = HeapConstant(callable.code());
922 return CallStubN(callable.descriptor(), argc + 1, target, args, result_size);
925 Node* CodeAssembler::CallJS(Callable const& callable, Node* context,
929 Node* target = HeapConstant(callable.code());
938 return CallStubN(callable.descriptor(), argc + 1, target, args, result_size);
941 Node* CodeAssembler::CallJS(Callable const& callable, Node* context,
945 Node* target = HeapConstant(callable.code());
955 return CallStubN(callable.descriptor(), argc + 1, target, args, result_size);
958 Node* CodeAssembler::CallJS(Callable const& callable, Node* context,
962 Node* target = HeapConstant(callable.code());
973 return CallStubN(callable.descriptor(), argc + 1, target, args, result_size);