Home
last modified time | relevance | path

Searched refs:debugExtractor (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackgetter.cpp92 DebugInfoExtractor *debugExtractor = in ParseMethodInfo() local
94 if (debugExtractor == nullptr) { in ParseMethodInfo()
98 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in ParseMethodInfo()
105 codeEntry.lineNumber = debugExtractor->GetFristLine(methodId); in ParseMethodInfo()
106 codeEntry.columnNumber = debugExtractor->GetFristColumn(methodId); in ParseMethodInfo()
229 DebugInfoExtractor *debugExtractor = in GetNativeMethodCallPos() local
231 if (debugExtractor == nullptr) { in GetNativeMethodCallPos()
239 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in GetNativeMethodCallPos()
260 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, offset)) { in GetNativeMethodCallPos()
263 if (!debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, offset)) { in GetNativeMethodCallPos()
Djs_stackinfo.cpp40 DebugInfoExtractor *debugExtractor = in BuildMethodTrace() local
42 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildMethodTrace()
60 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, pcOffset) || in BuildMethodTrace()
61 !debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, pcOffset)) { in BuildMethodTrace()
129 DebugInfoExtractor *debugExtractor = in BuildJsStackInfo() local
131 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildJsStackInfo()
150 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, offset) || in BuildJsStackInfo()
151 !debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, offset)) { in BuildJsStackInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dmethod_type_infer.cpp1312 …DebugInfoExtractor *debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(jsPandaFi… in PrintByteCodesWithTypes() local
1327 debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, offset); in PrintByteCodesWithTypes()
1328 debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, offset); in PrintByteCodesWithTypes()
1410 …DebugInfoExtractor *debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(jsPandaFi… in TypeCheck() local
1411 const std::string &sourceFileName = debugExtractor->GetSourceFile(methodId); in TypeCheck()
1414 std::string log = CollectGateTypeLogInfo(valueGate, debugExtractor, "[TypeAssertion] "); in TypeCheck()
1423 …d::string MethodTypeInfer::CollectGateTypeLogInfo(GateRef gate, DebugInfoExtractor *debugExtractor, in CollectGateTypeLogInfo() argument
1446 debugExtractor->MatchLineWithOffset(callbackLineFunc, methodLiteral->GetMethodId(), offset); in CollectGateTypeLogInfo()
Dmethod_type_infer.h149 std::string CollectGateTypeLogInfo(GateRef gate, DebugInfoExtractor *debugExtractor,
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_function.cpp285 DebugInfoExtractor *debugExtractor = in FunctionPrototypeToString() local
287 const std::string &sourceCode = debugExtractor->GetSourceCode(method->GetMethodId()); in FunctionPrototypeToString()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_snapshot.cpp810 DebugInfoExtractor *debugExtractor = in AddMethodInfo() local
812 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in AddMethodInfo()
828 codeEntry.lineNumber = debugExtractor->GetFristLine(methodId); in AddMethodInfo()
833 codeEntry.columnNumber = debugExtractor->GetFristColumn(methodId); in AddMethodInfo()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp1836 …DebugInfoExtractor *debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(jsPandaFi… in GetSourceCode() local
1851 …const std::string &allSourceCode = debugExtractor->GetSourceCode(panda_file::File::EntityId(mainMe… in GetSourceCode()