Home
last modified time | relevance | path

Searched refs:DebugInfoExtractor (Results 1 – 25 of 46) sorted by relevance

12

/arkcompiler/runtime_core/static_core/disassembler/
Ddisasm_backed_debug_info_extractor.cpp22 : panda_file::DebugInfoExtractor(&file), in DisasmBackedDebugInfoExtractor()
36 return DebugInfoExtractor::GetLineNumberTable(methodId); in GetLineNumberTable()
53 return DebugInfoExtractor::GetLocalVariableTable(methodId); in GetLocalVariableTable()
56 const std::vector<panda_file::DebugInfoExtractor::ParamInfo> &DisasmBackedDebugInfoExtractor::GetPa… in GetParameterInfo()
63 return DebugInfoExtractor::GetParameterInfo(methodId); in GetParameterInfo()
72 return DebugInfoExtractor::GetSourceFile(methodId); in GetSourceFile()
81 return DebugInfoExtractor::GetSourceCode(methodId); in GetSourceCode()
94 auto sourceFile = std::string(DebugInfoExtractor::GetSourceFile(methodId)); in GetDisassemblySourceName()
Ddisasm_backed_debug_info_extractor.h22 class PANDA_PUBLIC_API DisasmBackedDebugInfoExtractor : public panda_file::DebugInfoExtractor {
/arkcompiler/runtime_core/libpandafile/
Ddebug_info_extractor.h52 class DebugInfoExtractor {
59 explicit DebugInfoExtractor(const File *pf);
61 ~DebugInfoExtractor() = default;
63 DEFAULT_COPY_SEMANTIC(DebugInfoExtractor);
64 DEFAULT_MOVE_SEMANTIC(DebugInfoExtractor);
Ddebug_info_extractor.cpp30 DebugInfoExtractor::DebugInfoExtractor(const File *pf) in DebugInfoExtractor() function in panda::panda_file::DebugInfoExtractor
183 void DebugInfoExtractor::Extract(const File *pf) in Extract()
255 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(File::EntityId method_id) const in GetLineNumberTable()
267 const ColumnNumberTable &DebugInfoExtractor::GetColumnNumberTable(File::EntityId method_id) const in GetColumnNumberTable()
279 const LocalVariableTable &DebugInfoExtractor::GetLocalVariableTable(File::EntityId method_id) const in GetLocalVariableTable()
291 const std::vector<DebugInfoExtractor::ParamInfo> &DebugInfoExtractor::GetParameterInfo(File::Entity… in GetParameterInfo()
303 const char *DebugInfoExtractor::GetSourceFile(File::EntityId method_id) const in GetSourceFile()
313 const char *DebugInfoExtractor::GetSourceCode(File::EntityId method_id) const in GetSourceCode()
323 std::vector<File::EntityId> DebugInfoExtractor::GetMethodIdList() const in GetMethodIdList()
/arkcompiler/runtime_core/static_core/libpandafile/
Ddebug_info_extractor.h52 class DebugInfoExtractor {
59 explicit DebugInfoExtractor(const File *pf);
61 virtual ~DebugInfoExtractor() = default;
63 DEFAULT_COPY_SEMANTIC(DebugInfoExtractor);
64 DEFAULT_MOVE_SEMANTIC(DebugInfoExtractor);
Ddebug_info_extractor.cpp29 DebugInfoExtractor::DebugInfoExtractor(const File *pf) in DebugInfoExtractor() function in panda::panda_file::DebugInfoExtractor
182 void DebugInfoExtractor::Extract(const File *pf) in Extract()
251 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(File::EntityId methodId) const in GetLineNumberTable()
262 const ColumnNumberTable &DebugInfoExtractor::GetColumnNumberTable(File::EntityId methodId) const in GetColumnNumberTable()
273 const LocalVariableTable &DebugInfoExtractor::GetLocalVariableTable(File::EntityId methodId) const in GetLocalVariableTable()
284 const std::vector<DebugInfoExtractor::ParamInfo> &DebugInfoExtractor::GetParameterInfo(File::Entity… in GetParameterInfo()
295 const char *DebugInfoExtractor::GetSourceFile(File::EntityId methodId) const in GetSourceFile()
304 const char *DebugInfoExtractor::GetSourceCode(File::EntityId methodId) const in GetSourceCode()
313 std::vector<File::EntityId> DebugInfoExtractor::GetMethodIdList() const in GetMethodIdList()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.cpp183 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(const panda_file::File::EntityId meth… in GetLineNumberTable()
199 const ColumnNumberTable &DebugInfoExtractor::GetColumnNumberTable(const panda_file::File::EntityId … in GetColumnNumberTable()
215 const LocalVariableTable &DebugInfoExtractor::GetLocalVariableTable(const panda_file::File::EntityI… in GetLocalVariableTable()
231 const std::string &DebugInfoExtractor::GetSourceFile(const panda_file::File::EntityId methodId) in GetSourceFile()
247 const std::string &DebugInfoExtractor::GetSourceCode(const panda_file::File::EntityId methodId) in GetSourceCode()
263 bool DebugInfoExtractor::ExtractorMethodDebugInfo(const panda_file::File::EntityId methodId) in ExtractorMethodDebugInfo()
289 void DebugInfoExtractor::ExtractorMethodDebugInfo(const panda_file::File &pandaFile, in ExtractorMethodDebugInfo()
318 void DebugInfoExtractor::Extract() in Extract()
Djs_pandafile_manager.h55 DebugInfoExtractor *GetJSPtExtractor(const JSPandaFile *jsPandaFile);
57 DebugInfoExtractor *GetJSPtExtractorAndExtract(const JSPandaFile *jsPandaFile);
59 DebugInfoExtractor *CpuProfilerGetJSPtExtractor(const JSPandaFile *jsPandaFile);
110 std::unordered_map<const JSPandaFile *, std::unique_ptr<DebugInfoExtractor>> extractors_;
Djs_pandafile_manager.cpp414 DebugInfoExtractor *JSPandaFileManager::GetJSPtExtractor(const JSPandaFile *jsPandaFile) in GetJSPtExtractor()
427 auto extractorPtr = std::make_unique<DebugInfoExtractor>(jsPandaFile); in GetJSPtExtractor()
428 DebugInfoExtractor *extractor = extractorPtr.get(); in GetJSPtExtractor()
436 DebugInfoExtractor *JSPandaFileManager::GetJSPtExtractorAndExtract(const JSPandaFile *jsPandaFile) in GetJSPtExtractorAndExtract()
449 auto extractorPtr = std::make_unique<DebugInfoExtractor>(jsPandaFile); in GetJSPtExtractorAndExtract()
450 DebugInfoExtractor *extractor = extractorPtr.get(); in GetJSPtExtractorAndExtract()
459 DebugInfoExtractor *JSPandaFileManager::CpuProfilerGetJSPtExtractor(const JSPandaFile *jsPandaFile) in CpuProfilerGetJSPtExtractor()
470 DebugInfoExtractor *extractor = nullptr; in CpuProfilerGetJSPtExtractor()
473 auto extractorPtr = std::make_unique<DebugInfoExtractor>(jsPandaFile); in CpuProfilerGetJSPtExtractor()
Ddebug_info_extractor.h77 class PUBLIC_API DebugInfoExtractor {
79 explicit DebugInfoExtractor(const JSPandaFile *jsPandaFile) : jsPandaFile_(jsPandaFile) in DebugInfoExtractor() function
82 ~DebugInfoExtractor() = default;
/arkcompiler/ets_runtime/ecmascript/debugger/
Dhot_reload_manager.h34 std::vector<DebugInfoExtractor *> GetPatchExtractors(const std::string &url) const;
42 CUnorderedMap<std::string, std::vector<DebugInfoExtractor *>> patchExtractors_ {};
Dhot_reload_manager.cpp55 std::vector<DebugInfoExtractor *> HotReloadManager::GetPatchExtractors(const std::string &url) const in GetPatchExtractors()
57 std::vector<DebugInfoExtractor *> extractors; in GetPatchExtractors()
Ddebugger_api.h37 class DebugInfoExtractor; variable
136 …static std::vector<DebugInfoExtractor *> GetPatchExtractors(const EcmaVM *ecmaVm, const std::strin…
/arkcompiler/toolchain/tooling/test/utils/
Dtest_extractor.h36 class TestExtractor : public DebugInfoExtractor {
38 explicit TestExtractor(const JSPandaFile *pandaFile) : DebugInfoExtractor(pandaFile) {} in TestExtractor()
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_extractor.h55 … const std::vector<panda_file::DebugInfoExtractor::ParamInfo> &GetParameterInfo(EntityId methodId);
67 PandaUniquePtr<panda_file::DebugInfoExtractor> langExtractor_;
Dtest_extractor.cpp34 langExtractor_ = MakePandaUnique<panda_file::DebugInfoExtractor>(pf); in TestExtractor()
108 const std::vector<panda_file::DebugInfoExtractor::ParamInfo> &TestExtractor::GetParameterInfo(Entit… in GetParameterInfo()
/arkcompiler/runtime_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp242 static std::pair<File::EntityId, uint32_t> GetBreakpointAddressWrapper(DebugInfoExtractor extractor, in GetBreakpointAddressWrapper()
270 static std::vector<panda_file::LocalVariableInfo> GetLocalVariableInfoWrapper(DebugInfoExtractor ex… in GetLocalVariableInfoWrapper()
284 static SourcePairLocation GetSourcePairLocationWrapper(DebugInfoExtractor extractor, File::EntityId… in GetSourcePairLocationWrapper()
331 DebugInfoExtractor extractor(pf);
355 DebugInfoExtractor extractor(pf);
370 DebugInfoExtractor extractor(pf);
385 DebugInfoExtractor extractor(pf);
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp248 static std::pair<File::EntityId, uint32_t> GetBreakpointAddressWrapper(const DebugInfoExtractor &ex… in GetBreakpointAddressWrapper()
276 …tor<panda_file::LocalVariableInfo> GetLocalVariableInfoWrapper(const DebugInfoExtractor &extractor, in GetLocalVariableInfoWrapper()
290 static SourcePairLocation GetSourcePairLocationWrapper(const DebugInfoExtractor &extractor, File::E… in GetSourcePairLocationWrapper()
341 DebugInfoExtractor extractor(pf); in TEST_F()
365 DebugInfoExtractor extractor(pf); in TEST_F()
382 DebugInfoExtractor extractor(pf); in TEST_F()
399 DebugInfoExtractor extractor(pf); in TEST_F()
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp90 std::list<JSPtStepRange> SingleStepper::GetStepRanges(DebugInfoExtractor *extractor, in GetStepRanges()
115 DebugInfoExtractor *extractor = JSPandaFileManager::GetInstance()->GetJSPtExtractor( in GetStepper()
Djs_single_stepper.h55 static std::list<JSPtStepRange> GetStepRanges(DebugInfoExtractor *extractor,
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/tooling/
Dtest_debug_info.cpp44 panda_file::DebugInfoExtractor extractor(file.get()); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackgetter.cpp93 DebugInfoExtractor *debugExtractor = in ParseMethodInfo()
230 DebugInfoExtractor *debugExtractor = in GetNativeMethodCallPos()
298 DebugInfoExtractor *debugExtractor = in GetCallLineNumber()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp92 DebugInfoExtractor *extractor = GetExtractor(jsPandaFile); in NotifyScriptParsed()
170 DebugInfoExtractor *extractor = nullptr; in IsSkipLine()
185 return line == DebugInfoExtractor::SPECIAL_LINE_MARK; in IsSkipLine()
229 DebugInfoExtractor *extractor = nullptr; in NotifyPaused()
872 std::vector<DebugInfoExtractor *> extractors = GetExtractors(url); in GetPossibleBreakpoints()
933 std::vector<DebugInfoExtractor *> extractors = GetExtractors(metaData.url_); in RemoveBreakpoint()
992 std::vector<DebugInfoExtractor *> extractors = GetExtractors(url); in SetBreakpointByUrl()
1068 std::vector<DebugInfoExtractor *> extractors = GetExtractors(url); in ProcessSingleBreakpoint()
1315 DebugInfoExtractor *DebuggerImpl::GetExtractor(const JSPandaFile *jsPandaFile) in GetExtractor()
1321 std::vector<DebugInfoExtractor *> DebuggerImpl::GetExtractors(const std::string &url) in GetExtractors()
[all …]
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Ddebug_info_cache.h55 const panda_file::DebugInfoExtractor &GetDebugInfo(const panda_file::File *file);
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map70 panda::ecmascript::DebugInfoExtractor::*;

12