Searched refs:debugExtractor (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
| D | js_stackgetter.cpp | 104 DebugInfoExtractor *debugExtractor = in ParseMethodInfo() local 106 if (debugExtractor == nullptr) { in ParseMethodInfo() 110 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in ParseMethodInfo() 117 codeEntry.lineNumber = debugExtractor->GetFristLine(methodId); in ParseMethodInfo() 118 codeEntry.columnNumber = debugExtractor->GetFristColumn(methodId); in ParseMethodInfo() 253 DebugInfoExtractor *debugExtractor = in GetNativeMethodCallPos() local 255 if (debugExtractor == nullptr) { in GetNativeMethodCallPos() 263 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in GetNativeMethodCallPos() 284 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, offset)) { in GetNativeMethodCallPos() 287 if (!debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, offset)) { in GetNativeMethodCallPos() [all …]
|
| D | js_stackinfo.cpp | 57 DebugInfoExtractor *debugExtractor = nullptr; in BuildMethodTrace() local 60 debugExtractor = lastCache.extractor; in BuildMethodTrace() 62 debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(pandaFile); in BuildMethodTrace() 64 lastCache.extractor = debugExtractor; in BuildMethodTrace() 67 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildMethodTrace() 89 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, pcOffset) || in BuildMethodTrace() 90 !debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, pcOffset)) { in BuildMethodTrace() 298 DebugInfoExtractor *debugExtractor = in BuildJsStackInfo() local 300 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildJsStackInfo() 319 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, offset) || in BuildJsStackInfo() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | ir_module.cpp | 28 DebugInfoExtractor *debugExtractor = in GetFuncName() local 30 std::string url = debugExtractor->GetSourceFile(methodId); in GetFuncName()
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
| D | heap_snapshot.cpp | 902 DebugInfoExtractor *debugExtractor = in AddMethodInfo() local 904 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in AddMethodInfo() 920 codeEntry.lineNumber = debugExtractor->GetFristLine(methodId); in AddMethodInfo() 925 codeEntry.columnNumber = debugExtractor->GetFristColumn(methodId); in AddMethodInfo() 1230 DebugInfoExtractor *debugExtractor = in ParseFunctionName() local 1232 if (debugExtractor == nullptr) { in ParseFunctionName() 1235 int32_t line = debugExtractor->GetFristLine(methodId); in ParseFunctionName()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_function.cpp | 363 DebugInfoExtractor *debugExtractor = in FunctionPrototypeToString() local 365 const std::string &sourceCode = debugExtractor->GetSourceCode(method->GetMethodId()); in FunctionPrototypeToString()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_object.cpp | 2428 DebugInfoExtractor *debugExtractor = in ExtractConstructorAndRecordName() local 2430 if (debugExtractor == nullptr) { in ExtractConstructorAndRecordName() 2433 int32_t line = debugExtractor->GetFristLine(methodId); in ExtractConstructorAndRecordName() 2434 std::string fileName = debugExtractor->GetSourceFile(methodId); in ExtractConstructorAndRecordName()
|
| /arkcompiler/ets_runtime/ecmascript/napi/ |
| D | jsnapi_expo.cpp | 3635 …DebugInfoExtractor *debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(jsPandaFi… in GetSourceCode() local 3650 …const std::string &allSourceCode = debugExtractor->GetSourceCode(panda_file::File::EntityId(mainMe… in GetSourceCode()
|