Lines Matching defs:function

200 using CodeAssemblerCallback = std::function<void()>;
453 TNode<ExternalReference> function = code_assembler_->ExternalConstant(
456 function, MachineType::AnyTagged(),
716 void Branch(TNode<BoolT> condition, const std::function<void()>& true_body,
717 const std::function<void()>& false_body);
719 const std::function<void()>& false_body);
720 void Branch(TNode<BoolT> condition, const std::function<void()>& true_body,
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,
1164 void TailCallRuntime(Runtime::FunctionId function, TNode<Int32T> arity,
1166 return TailCallRuntimeImpl(function, arity, context,
1229 TNode<JSFunction> function, TNode<Object> new_target,
1233 TNode<Object> CallJS(Callable const& callable, Node* context, Node* function,
1239 CAST(function), {}, arity, {receiver, args...}));
1244 Node* function, Node* new_target, TArgs... args) {
1250 CAST(function), CAST(new_target), arity,
1263 // Type representing C function argument with type info.
1266 // Call to a C function.
1268 Node* CallCFunction(Node* function, base::Optional<MachineType> return_type,
1273 return CallCFunction(function, return_type, {cargs...});
1276 // Call to a C function without a function discriptor on AIX.
1278 Node* CallCFunctionWithoutFunctionDescriptor(Node* function,
1284 return CallCFunctionWithoutFunctionDescriptor(function, return_type,
1288 // Call to a C function, while saving/restoring caller registers.
1290 Node* CallCFunctionWithCallerSavedRegisters(Node* function,
1297 return CallCFunctionWithCallerSavedRegisters(function, return_type, mode,
1328 Node* CallCFunction(Node* function, base::Optional<MachineType> return_type,
1332 Node* function, MachineType return_type,
1336 Node* function, MachineType return_type, SaveFPRegsMode mode,
1339 Node* CallRuntimeImpl(Runtime::FunctionId function, TNode<Object> context,
1342 void TailCallRuntimeImpl(Runtime::FunctionId function, TNode<Int32T> arity,
1368 TNode<Object> function,