Lines Matching defs:function
767 // Finalize a code buffer of generated instructions. This function must be
779 // The two features are implemented using one function to avoid duplication of
781 // The function can be used to evaluate the cost of synthesizing an
8095 // This function automatically preserves caller-saved registers so that
8156 void CallRuntimeHelper(R (*function)(P...), RuntimeCallType call_type);
8159 void CallRuntime(R (*function)(P...)) {
8160 CallRuntimeHelper(function, kCallRuntime);
8164 void TailCallRuntime(R (*function)(P...)) {
8165 CallRuntimeHelper(function, kTailCallRuntime);
8671 // user is required to explicitly call the `Open` function before using the
8680 // This function performs the actual initialisation work.
8683 // The destructor always implicitly calls the `Close` function.
8686 // This function performs the cleaning-up work. It must succeed even if the
8883 void MacroAssembler::CallRuntimeHelper(R (*function)(P...),
8889 uintptr_t function_address = reinterpret_cast<uintptr_t>(function);
8919 Mov(temp, reinterpret_cast<uint64_t>(function));