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

  /external/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 82 void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const {
99 LineTable::appendRow(*this);
106 LineTable::dump(OS);
109 const DWARFDebugLine::LineTable *
117 const DWARFDebugLine::LineTable *
121 LineTableMap.insert(LineTableMapTy::value_type(offset, LineTable()));
444 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 *
  /external/clang/lib/Basic/
SourceManager.cpp 286 if (LineTable == 0)
287 LineTable = new LineTableInfo();
288 return LineTable->getLineTableFilenameID(Name);
309 if (LineTable == 0)
310 LineTable = new LineTableInfo();
311 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
339 if (LineTable == 0)
340 LineTable = new LineTableInfo();
356 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
361 if (LineTable == 0
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 553 /// LineTable - This holds information for #line directives. It is referenced
555 LineTableInfo *LineTable;
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 796 LineTableInfo &LineTable = SourceMgr.getLineTable();
806 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
832 LineTable.AddEntry(FID, Entries);
    [all...]

Completed in 563 milliseconds