Lines Matching defs:pcOffset
48 std::string JsStackInfo::BuildMethodTrace(Method *method, uint32_t pcOffset, LastBuilderCache &lastCache,
93 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, pcOffset) ||
94 !debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, pcOffset)) {
145 uintptr_t pcOffset = std::get<2>(item);
148 LOG_ECMA(ERROR) << "jit : js crash at method : " << methodName << ", offset :" << pcOffset;
208 uint32_t pcOffset = 0;
210 // the pcOffste in baseline frame slot is always uint64::max(), so pcOffset should be computed
212 pcOffset = RuntimeStubs::RuntimeGetBytecodePcOfstForBaseline(function, baselineNativePc);
215 pcOffset = it.GetBytecodeOffset();
217 data += BuildJsStackTraceInfo(thread, method, it, pcOffset, jsErrorObj, lastCache);
236 uint32_t pcOffset, const JSHandle<JSObject> &jsErrorObj,
249 BuildMethodTrace(method, pcOffset, lastCache, thread->GetEnableStackSourceFile());