Lines Matching defs:funcAddr

149             char *funcAddr = reinterpret_cast<char *>(machineCode->GetFuncAddr());
152 if (memmove_s(vec.data(), len, funcAddr, len) != EOK) {
153 LOG_ECMA(ERROR) << "Fail to get machineCode on function addr: " << funcAddr;
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 += InterpretedFrame::GetFunctionOffset();
820 funcAddr -= FASTJITFunctionFrame::GetTypeOffset();
821 funcAddr += FASTJITFunctionFrame::GetFunctionOffset();
829 if (!readMem(ctx, funcAddr, &function)) {
975 uintptr_t funcAddr = 0;
978 arkUnwindParam->readMem(arkUnwindParam->ctx, machineCode + MachineCode::FUNCADDR_OFFSET, &funcAddr);
980 if (size && funcAddr) {
986 arkUnwindParam->readMem(arkUnwindParam->ctx, funcAddr + l, &tmp);
1131 uintptr_t funcAddr = currentPtr;
1135 funcAddr -= OptimizedJSFunctionFrame::GetTypeOffset();
1136 funcAddr += OptimizedJSFunctionFrame::GetFunctionOffset();
1141 funcAddr -= AsmInterpretedFrame::GetTypeOffset();
1142 funcAddr += AsmInterpretedFrame::GetFunctionOffset(false);
1147 funcAddr -= InterpretedFrame::GetTypeOffset();
1148 funcAddr += InterpretedFrame::GetFunctionOffset();
1152 funcAddr -= InterpretedBuiltinFrame::GetTypeOffset();
1153 funcAddr += InterpretedBuiltinFrame::GetFunctionOffset();
1157 funcAddr += sizeof(FrameType);
1158 auto topAddress = funcAddr +
1160 uintptr_t argcAddress = static_cast<uintptr_t>(funcAddr + (static_cast<int>
1166 funcAddr = topAddress - static_cast<uint32_t>(numberArgs) * sizeof(uintptr_t);
1171 funcAddr -= BuiltinFrame::GetTypeOffset();
1172 funcAddr += BuiltinFrame::GetStackArgsOffset();
1176 funcAddr -= OptimizedBuiltinLeaveFrame::GetTypeOffset();
1177 funcAddr += OptimizedBuiltinLeaveFrame::GetFunctionOffset();
1182 funcAddr -= FASTJITFunctionFrame::GetTypeOffset();
1183 funcAddr += FASTJITFunctionFrame::GetFunctionOffset();
1205 if (!ReadUintptrFromAddr(pid, funcAddr, function, g_needCheck)) {