Lines Matching defs:context
1148 TNode<T> CallRuntime(Runtime::FunctionId function, TNode<Object> context,
1151 function, context, {implicit_cast<TNode<Object>>(args)...}));
1155 void TailCallRuntime(Runtime::FunctionId function, TNode<Object> context,
1159 return TailCallRuntimeImpl(function, arity, context,
1165 TNode<Object> context, TArgs... args) {
1166 return TailCallRuntimeImpl(function, arity, context,
1171 // If context passed to CallStub is nullptr, it won't be passed to the stub.
1175 TNode<T> CallStub(Callable const& callable, TNode<Object> context,
1178 return CallStub<T>(callable.descriptor(), target, context, args...);
1183 TNode<CodeT> target, TNode<Object> context, TArgs... args) {
1185 target, context, args...));
1190 TNode<BuiltinPtr> target, TNode<Object> context,
1193 descriptor, target, context, args...));
1197 void TailCallStub(Callable const& callable, TNode<Object> context,
1200 TailCallStub(callable.descriptor(), target, context, args...);
1205 TNode<CodeT> target, TNode<Object> context, TArgs... args) {
1206 TailCallStubImpl(descriptor, target, context, {args...});
1215 const CallInterfaceDescriptor& descriptor, Node* target, Node* context,
1217 TailCallStubThenBytecodeDispatchImpl(descriptor, target, context,
1228 void TailCallJSCode(TNode<CodeT> code, TNode<Context> context,
1233 TNode<Object> CallJS(Callable const& callable, Node* context, Node* function,
1238 return CAST(CallJSStubImpl(callable.descriptor(), target, CAST(context),
1243 Node* ConstructJSWithTarget(Callable const& callable, Node* context,
1249 return CallJSStubImpl(callable.descriptor(), target, CAST(context),
1254 Node* ConstructJS(Callable const& callable, Node* context, Node* new_target,
1256 return ConstructJSWithTarget(callable, context, new_target, new_target,
1339 Node* CallRuntimeImpl(Runtime::FunctionId function, TNode<Object> context,
1343 TNode<Object> context,
1347 TNode<CodeT> target, TNode<Object> context,
1351 const CallInterfaceDescriptor& descriptor, Node* target, Node* context,
1357 TNode<Object> target, TNode<Object> context, TArgs... args) {
1358 return CallStubRImpl(call_mode, descriptor, target, context, {args...});
1363 TNode<Object> target, TNode<Object> context,
1367 TNode<Object> target, TNode<Object> context,