HomeSort by relevance Sort by last modified time
    Searched refs:LineTable (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 171 struct LineTable {
172 LineTable();
223 const LineTable *getLineTable(uint32_t offset) const;
224 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
229 ParsingState(struct LineTable *LT);
235 struct LineTable *LineTable;
243 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 180 struct LineTable {
181 LineTable();
235 const LineTable *getLineTable(uint32_t offset) const;
236 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
241 ParsingState(struct LineTable *LT);
247 struct LineTable *LineTable;
255 typedef std::map<uint32_t, LineTable> LineTableMapTy;
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugLine.h 129 struct LineTable {
143 struct State : public Row, public LineTable {
176 const LineTable *getLineTable(uint32_t offset) const;
177 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
181 typedef std::map<uint32_t, LineTable> LineTableMapTy;
DWARFDebugLine.cpp 81 void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const {
98 LineTable::appendRow(*this);
105 LineTable::dump(OS);
108 const DWARFDebugLine::LineTable *
116 const DWARFDebugLine::LineTable *
120 LineTableMap.insert(LineTableMapTy::value_type(offset, LineTable()));
443 DWARFDebugLine::LineTable::lookupAddress(uint64_t address,
DWARFContext.cpp 81 const DWARFDebugLine::LineTable *
93 if (const DWARFDebugLine::LineTable *lt = Line->getLineTable(stmtOffset))
151 const DWARFDebugLine::LineTable *lineTable = getLineTableForCompileUnit(cu);
152 if (!lineTable)
158 uint32_t rowIndex = lineTable->lookupAddress(address, hiPC);
163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex];
164 const std::string &fileName = lineTable->Prologue.FileNames[row.File-1].Name;
DWARFContext.h 66 const DWARFDebugLine::LineTable *
  /prebuilts/go/darwin-x86/src/debug/gosym/
pclntab.go 16 // A LineTable is a data structure mapping program counters to line numbers.
18 // In Go 1.1 and earlier, each function (represented by a Func) had its own LineTable,
23 // In Go 1.2, the format of the data changed so that there is a single LineTable
27 // For the most part, LineTable's methods should be treated as an internal
29 type LineTable struct {
53 func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
88 func (t *LineTable) slice(pc uint64) *LineTable {
90 return &LineTable{Data: data, PC: pc, Line: line}
95 func (t *LineTable) PCToLine(pc uint64) int
    [all...]
  /prebuilts/go/linux-x86/src/debug/gosym/
pclntab.go 16 // A LineTable is a data structure mapping program counters to line numbers.
18 // In Go 1.1 and earlier, each function (represented by a Func) had its own LineTable,
23 // In Go 1.2, the format of the data changed so that there is a single LineTable
27 // For the most part, LineTable's methods should be treated as an internal
29 type LineTable struct {
53 func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
88 func (t *LineTable) slice(pc uint64) *LineTable {
90 return &LineTable{Data: data, PC: pc, Line: line}
95 func (t *LineTable) PCToLine(pc uint64) int
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 173 DWARFDebugLine::LineTable::LineTable() { clear(); }
175 void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const {
189 void DWARFDebugLine::LineTable::clear() {
195 DWARFDebugLine::ParsingState::ParsingState(struct LineTable *LT)
196 : LineTable(LT), RowNumber(0) {
201 Row.reset(LineTable->Prologue.DefaultIsStmt);
213 LineTable->appendRow(Row);
219 LineTable->appendSequence(Sequence);
225 const DWARFDebugLine::LineTable *
    [all...]
DWARFContext.cpp 31 typedef DWARFDebugLine::LineTable DWARFLineTable;
164 DWARFDebugLine::LineTable LineTable;
165 LineTable.parse(lineData, &getLineSection().Relocs, &stmtOffset);
166 LineTable.dump(OS);
186 DWARFDebugLine::LineTable LineTable;
187 while (LineTable.Prologue.parse(lineData, &stmtOffset)) {
188 LineTable.dump(OS);
189 LineTable.clear()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 127 struct LineTable {
156 std::vector<LineTable> DebugLines;
177 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::LineTable)
231 template <> struct MappingTraits<DWARFYAML::LineTable> {
232 static void mapping(IO &IO, DWARFYAML::LineTable &LineTable);

Completed in 269 milliseconds

1 2 3