Home
last modified time | relevance | path

Searched refs:LineNumberTable (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_extractor.cpp54 … const panda_file::LineNumberTable &lineTable = langExtractor_->GetLineNumberTable(method); in GetBreakpointAddress()
71 const panda_file::LineNumberTable &lineTable = langExtractor_->GetLineNumberTable(methodId); in GetStepRanges()
113 std::optional<size_t> TestExtractor::GetLineNumberByTableOffset(const panda_file::LineNumberTable &… in GetLineNumberByTableOffset()
124 std::optional<uint32_t> TestExtractor::GetOffsetByTableLineNumber(const panda_file::LineNumberTable in GetOffsetByTableLineNumber()
136 const panda_file::LineNumberTable &lineTable = langExtractor_->GetLineNumberTable(methodId); in GetSourceLocation()
Dtest_extractor.h59 …static std::optional<size_t> GetLineNumberByTableOffset(const panda_file::LineNumberTable &table, …
60 …static std::optional<uint32_t> GetOffsetByTableLineNumber(const panda_file::LineNumberTable &table…
/arkcompiler/runtime_core/libpandafile/
Ddebug_info_extractor.h38 using LineNumberTable = std::vector<LineTableEntry>; variable
66 const LineNumberTable &GetLineNumberTable(File::EntityId method_id) const;
87 LineNumberTable line_number_table;
Ddebug_info_extractor.cpp140 LineNumberTable GetLineNumberTable() const in GetLineNumberTable()
178 LineNumberTable lnt_;
255 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(File::EntityId method_id) const in GetLineNumberTable()
263 …static const LineNumberTable EMPTY_LINE_TABLE {}; // NOLINT(fuchsia-statically-constructed-object… in GetLineNumberTable()
/arkcompiler/runtime_core/static_core/libpandafile/
Ddebug_info_extractor.h38 using LineNumberTable = std::vector<LineTableEntry>; variable
66 virtual const LineNumberTable &GetLineNumberTable(File::EntityId methodId) const;
87 LineNumberTable lineNumberTable;
Ddebug_info_extractor.cpp139 LineNumberTable GetLineNumberTable() const in GetLineNumberTable()
177 LineNumberTable lnt_;
251 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(File::EntityId methodId) const in GetLineNumberTable()
258 …static const LineNumberTable EMPTY_LINE_TABLE {}; // NOLINT(fuchsia-statically-constructed-object… in GetLineNumberTable()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.h54 using LineNumberTable = CVector<LineTableEntry>; variable
84 const LineNumberTable &GetLineNumberTable(const panda_file::File::EntityId methodId);
137 const LineNumberTable &lineTable = GetLineNumberTable(methodId); in MatchWithLocation()
173 const LineNumberTable &lineTable = GetLineNumberTable(methodId); in MatchLineWithOffset()
195 const LineNumberTable &lineTable = GetLineNumberTable(methodId); in GetFristLine()
234 LineNumberTable lineNumberTable;
Ddebug_info_extractor.cpp149 LineNumberTable GetLineNumberTable() const in GetLineNumberTable()
178 LineNumberTable lnt_;
183 const LineNumberTable &DebugInfoExtractor::GetLineNumberTable(const panda_file::File::EntityId meth… in GetLineNumberTable()
186 static const LineNumberTable EMPTY_LINE_TABLE {}; in GetLineNumberTable()
/arkcompiler/runtime_core/static_core/disassembler/
Ddisasm_backed_debug_info_extractor.h28 …const panda_file::LineNumberTable &GetLineNumberTable(panda_file::File::EntityId methodId) const o…
38 panda_file::LineNumberTable lineTable;
Ddisasm_backed_debug_info_extractor.cpp29 const panda_file::LineNumberTable &DisasmBackedDebugInfoExtractor::GetLineNumberTable( in GetLineNumberTable()
126 panda_file::LineNumberTable lineTable; in GetDisassemblySourceName()
Daccumulators.h34 panda_file::LineNumberTable lineNumberTable;
Ddisassembler.h76 panda_file::LineNumberTable *lineTable = nullptr) const;
150 …void SerializeLineNumberTable(const panda_file::LineNumberTable &lineNumberTable, std::ostream &os…
Ddisassembler.cpp191 panda_file::LineNumberTable *lineTable) const in Serialize()
1521 void Disassembler::SerializeLineNumberTable(const panda_file::LineNumberTable &lineNumberTable, std… in SerializeLineNumberTable()
/arkcompiler/runtime_core/static_core/disassembler/tests/
Dextractor_test.cpp23 TEST(ExtractorTest, LineNumberTable) in TEST() argument
Dfunctions_test.cpp171 panda::panda_file::LineNumberTable lineTable; in TEST()
/arkcompiler/runtime_core/disassembler/
Daccumulators.h34 panda_file::LineNumberTable line_number_table;
Ddisassembler.h148 …void SerializeLineNumberTable(const panda_file::LineNumberTable &line_number_table, std::ostream &…
Ddisassembler.cpp1740 void Disassembler::SerializeLineNumberTable(const panda_file::LineNumberTable &line_number_table, in SerializeLineNumberTable()
/arkcompiler/runtime_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp221 static std::optional<size_t> GetLineNumberByTableOffsetWrapper(const panda_file::LineNumberTable &t… in GetLineNumberByTableOffsetWrapper()
232 static std::optional<uint32_t> GetOffsetByTableLineNumberWrapper(const panda_file::LineNumberTable in GetOffsetByTableLineNumberWrapper()
255 panda_file::LineNumberTable line_table = extractor.GetLineNumberTable(method); in GetBreakpointAddressWrapper()
287 panda_file::LineNumberTable line_table = extractor.GetLineNumberTable(method_id); in GetSourcePairLocationWrapper()
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp227 static std::optional<size_t> GetLineNumberByTableOffsetWrapper(const panda_file::LineNumberTable &t… in GetLineNumberByTableOffsetWrapper()
238 static std::optional<uint32_t> GetOffsetByTableLineNumberWrapper(const panda_file::LineNumberTable in GetOffsetByTableLineNumberWrapper()
261 const panda_file::LineNumberTable &lineTable = extractor.GetLineNumberTable(method); in GetBreakpointAddressWrapper()
293 const panda_file::LineNumberTable &lineTable = extractor.GetLineNumberTable(methodId); in GetSourcePairLocationWrapper()
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp94 const LineNumberTable &table = extractor->GetLineNumberTable(methodId); in GetStepRanges()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp1483 const LineNumberTable &lines = extractor->GetLineNumberTable(methodId); in GetLocalScopeChain()