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 | 54 DebugInfoExtractor *debugExtractor = nullptr; in BuildMethodTrace() local 57 debugExtractor = lastCache.extractor; in BuildMethodTrace() 59 debugExtractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor(pandaFile); in BuildMethodTrace() 61 lastCache.extractor = debugExtractor; in BuildMethodTrace() 64 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildMethodTrace() 86 if (!debugExtractor->MatchLineWithOffset(callbackLineFunc, methodId, pcOffset) || in BuildMethodTrace() 87 !debugExtractor->MatchColumnWithOffset(callbackColumnFunc, methodId, pcOffset)) { in BuildMethodTrace() 295 DebugInfoExtractor *debugExtractor = in BuildJsStackInfo() local 297 const std::string &sourceFile = debugExtractor->GetSourceFile(method->GetMethodId()); in BuildJsStackInfo() 316 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 | 903 DebugInfoExtractor *debugExtractor = in AddMethodInfo() local 905 const std::string &sourceFile = debugExtractor->GetSourceFile(methodId); in AddMethodInfo() 921 codeEntry.lineNumber = debugExtractor->GetFristLine(methodId); in AddMethodInfo() 926 codeEntry.columnNumber = debugExtractor->GetFristColumn(methodId); in AddMethodInfo() 1229 DebugInfoExtractor *debugExtractor = in ParseFunctionName() local 1231 if (debugExtractor == nullptr) { in ParseFunctionName() 1234 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()
|