Home
last modified time | relevance | path

Searched refs:inlineFunc (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_inline_lowering.cpp364 void TSInlineLowering::ReplaceEntryGate(GateRef callGate, GateRef callerFunc, GateRef inlineFunc, G… in ReplaceEntryGate() argument
376 std::vector<GateRef> args{callerFunc, inlineFunc}; in ReplaceEntryGate()
455 GateRef inlineFunc; in LowerToInlineCall() local
457 inlineFunc = args.at(static_cast<size_t>(FastCallArgIdx::FUNC)); in LowerToInlineCall()
459 inlineFunc = args.at(static_cast<size_t>(CommonArgIdx::FUNC)); in LowerToInlineCall()
463 ReplaceEntryGate(callGate, callerFunc, inlineFunc, glue); in LowerToInlineCall()
478 GateRef inlineFunc = acc_.GetValueIn(gate, funcIndex); in InlineFuncCheck() local
483 … MachineType::I1, {callState, callDepend, inlineFunc, builder_.IntPtr(methodOffset), frameState}, in InlineFuncCheck()
Dts_inline_lowering.h172 void ReplaceEntryGate(GateRef callGate, GateRef callerFunc, GateRef inlineFunc, GateRef glue);
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp2372 JSTaggedValue inlineFunc = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
2374 JSFunction *inlineJSFunc = JSFunction::Cast(inlineFunc); in DEF_RUNTIME_STUBS()