Searched refs:funcAddr (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
H A D | js_stackinfo.cpp | 149 char *funcAddr = reinterpret_cast<char *>(machineCode->GetFuncAddr()); in DumpJitCode() local 152 if (memmove_s(vec.data(), len, funcAddr, len) != EOK) { in DumpJitCode() 153 LOG_ECMA(ERROR) << "Fail to get machineCode on function addr: " << funcAddr; in DumpJitCode() 798 uintptr_t funcAddr = currentPtr; 802 funcAddr -= OptimizedJSFunctionFrame::GetTypeOffset(); 803 funcAddr += OptimizedJSFunctionFrame::GetFunctionOffset(); 808 funcAddr -= AsmInterpretedFrame::GetTypeOffset(); 809 funcAddr += AsmInterpretedFrame::GetFunctionOffset(false); 814 funcAddr -= InterpretedFrame::GetTypeOffset(); 815 funcAddr [all...] |
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_task.cpp | 224 char *funcAddr = reinterpret_cast<char *>(machineCode->GetFuncAddr()); in DumpJitCode() local 227 if (memmove_s(vec.data(), len, funcAddr, len) != EOK) { in DumpJitCode() 228 LOG_JIT(DEBUG) << "Fail to get machineCode on function addr: " << funcAddr; in DumpJitCode()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/ |
H A D | lmir_builder.cpp | 458 Stmt &LMIRBuilder::ICall(Expr funcAddr, Args &args_, Var *result) in ICall() argument 461 args.push_back(funcAddr.GetNode()); in ICall() 473 Stmt &LMIRBuilder::ICall(Expr funcAddr, Args &args_, PregIdx pregIdx) in ICall() argument 476 args.push_back(funcAddr.GetNode()); in ICall()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/ |
H A D | lmir_builder.h | 367 Stmt &ICall(Expr funcAddr, Args &args, Var *result = nullptr); 369 Stmt &ICall(Expr funcAddr, Args &args, PregIdx pregIdx);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | emit.cpp | 727 MIRAddroffuncConst &funcAddr = static_cast<MIRAddroffuncConst &>(mirConst); in EmitAsmLabel() local 728 MIRFunction *func = GlobalTables::GetFunctionTable().GetFuncTable().at(funcAddr.GetValue()); in EmitAsmLabel() 762 MIRAddroffuncConst &funcAddr = static_cast<MIRAddroffuncConst &>(elemConst); in EmitAsmLabel() local 764 MIRFunction *func = GlobalTables::GetFunctionTable().GetFunctionFromPuidx(funcAddr.GetValue()); in EmitAsmLabel() 1767 MIRAddroffuncConst *funcAddr = safe_cast<MIRAddroffuncConst>(aggConst->GetConstVecItem(i)); in EmitAsmLabel() local 1768 DEBUG_ASSERT(funcAddr != nullptr, "null ptr check"); in EmitAsmLabel() 1787 Emit(GlobalTables::GetFunctionTable().GetFunctionFromPuidx(funcAddr->GetValue())->GetName()); in EmitAsmLabel() 1895 maple::LogInfo::MapleLogger(kLlErr) << "ERROR: the last vtab/itab content should not be funcAddr\n"; in EmitAsmLabel()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_ir_builder.cpp | 1287 Expr funcAddr = lmirBuilder_->Iread(glueType, rtbaseAddr, glueTypePtr); in GetFunction() local 1288 Expr callee = lmirBuilder_->Cvt(glueType, rtFuncTypePtrPtr, funcAddr); in GetFunction() 2806 Expr funcAddr = lmirBuilder_->Iread(rtoffset.GetType(), patchAddr, lmirBuilder_->i64PtrType); in GenDeoptEntry() local 2811 Expr callee = lmirBuilder_->Cvt(glue.GetType(), funcTypePtrPtr, funcAddr); in GenDeoptEntry()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | x64_emitter.cpp | 1636 MIRAddroffuncConst &funcAddr = static_cast<MIRAddroffuncConst &>(mirConst); in EmitSingleElement() local 1637 MIRFunction *func = GlobalTables::GetFunctionTable().GetFuncTable().at(funcAddr.GetValue()); in EmitSingleElement()
|
Completed in 18 milliseconds