/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | mir_module.cpp | 80 MIRFunction *curFunc = CurFunction(); in CurFuncCodeMemPoolAllocator() local 81 CHECK_FATAL(curFunc != nullptr, "curFunction is null"); in CurFuncCodeMemPoolAllocator() 82 return &curFunc->GetCodeMempoolAllocator(); in CurFuncCodeMemPoolAllocator() 87 MIRFunction *curFunc = CurFunction(); in GetCurFuncCodeMPAllocator() local 88 CHECK_FATAL(curFunc != nullptr, "curFunction is null"); in GetCurFuncCodeMPAllocator() 89 return curFunc->GetCodeMPAllocator(); in GetCurFuncCodeMPAllocator()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/ |
H A D | lower.cpp | 54 MIRFunction *curFunc = GetCurrentFunc(); in LowerReturnStructUsingFakeParm() local 55 MIRSymbol *retSt = curFunc->GetFormal(0); in LowerReturnStructUsingFakeParm() 64 GetLoweredPtrType(), curFunc->GetPregTab()->GetPregIdxFromPregno(retSt->GetPreg()->GetPregNo())); in LowerReturnStructUsingFakeParm() 351 MIRFunction *curFunc = mirModule.CurFunction(); in LowerCallAssignedStmt() local 352 curFunc->SetLastFreqMap(newCall->GetStmtID(), in LowerCallAssignedStmt() 353 static_cast<uint32>(curFunc->GetFreqFromLastStmt(stmt.GetStmtID()))); in LowerCallAssignedStmt() 685 LabelIdx CGLowerer::GetLabelIdx(MIRFunction &curFunc) const in GetLabelIdx() 687 std::string suffix = std::to_string(curFunc.GetLabelTab()->GetLabelTableSize()); in GetLabelIdx() 689 LabelIdx labIdx = curFunc.GetLabelTab()->AddLabel(labelStrIdx); in GetLabelIdx()
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.cpp | 183 GateRef curFunc = GetFunctionFromFrame(frame); \ 184 GateRef profileTypeInfo = GetProfileTypeInfoFromFunction(curFunc); \ 186 [this, glue, curFunc, slotId, profileTypeInfo](const std::initializer_list<GateRef> &values, \ 189 profiler.PGOProfiler(glue, curFunc, profileTypeInfo, slotId, values, type); \ 303 GateRef method = GetMethodFromFunction(curFunc); in GenerateCircuit() 319 GateRef curMethod = GetMethodFromFunction(curFunc); in GenerateCircuit() 612 GateRef curFunc = GetFunctionFromFrame(frame); in GenerateCircuit() local 613 CallNGCRuntime(glue, RTSTUB_ID(EndCallTimer), { glue, curFunc }); in GenerateCircuit() 682 GateRef result = newBuilder.CreateEmptyArray(glue, curFunc, { 0, traceId, false }, in GenerateCircuit() 698 newBuilder.CreateEmptyArray(glue, curFunc, { in GenerateCircuit() 2107 GateRef curFunc = GetFunctionFromFrame(frame); GenerateCircuit() local 4776 GateRef curFunc = GetFunctionFromFrame(GetFrame(sp)); GenerateCircuit() local 4935 GateRef curFunc = GetFunctionFromFrame(frame); GenerateCircuit() local 5771 GateRef curFunc = GetFunctionFromFrame(frame); GenerateCircuit() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/ |
H A D | lower.h | 197 LabelIdx GetLabelIdx(MIRFunction &curFunc) const;
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | interpreter_stub.cpp | 1331 GateRef curFunc = GetFunctionFromFrame(frame);
in DECLARE_ASM_HANDLER() local 1332 CallNGCRuntime(glue, RTSTUB_ID(StartCallTimer), { glue, curFunc, False() });
in DECLARE_ASM_HANDLER() 1367 GateRef curFunc = GetFunctionFromFrame(frame);
in DECLARE_ASM_HANDLER() local 1368 CallNGCRuntime(glue, RTSTUB_ID(StartCallTimer), { glue, curFunc, False() });
in DECLARE_ASM_HANDLER() 2751 GateRef curFunc = GetFunctionFromFrame(frame);
in DECLARE_ASM_HANDLER() local 2752 CallNGCRuntime(glue, RTSTUB_ID(EndCallTimer), { glue, curFunc });
in DECLARE_ASM_HANDLER() 2850 GateRef curFunc = GetFunctionFromFrame(frame);
in DECLARE_ASM_HANDLER() local 2851 CallNGCRuntime(glue, RTSTUB_ID(EndCallTimer), { glue, curFunc });
in DECLARE_ASM_HANDLER() 2957 GateRef curFunc = GetFunctionFromFrame(frame);
in DECLARE_ASM_HANDLER() local 2958 CallNGCRuntime(glue, RTSTUB_ID(EndCallTimer), { glue, curFunc });
in DECLARE_ASM_HANDLER() 3062 GateRef curFunc = GetFunctionFromFrame(frame); DECLARE_ASM_HANDLER() local 3443 GateRef curFunc = GetFunctionFromFrame(frame); DECLARE_ASM_HANDLER() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_ir_builder.cpp | 2840 Function &curFunc = funcBuilder.Return(lmirBuilder_->LiteCGGetFuncReturnType(fnTy)).Done(); in GetExperimentalDeopt() local 2842 lmirBuilder_->SetCurFunc(curFunc); in GetExperimentalDeopt() 2844 fn = &curFunc; in GetExperimentalDeopt()
|