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 166 struct LineTable {
202 struct State : public Row, public Sequence, public LineTable {
239 const LineTable *getLineTable(uint32_t offset) const;
240 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
244 typedef std::map<uint32_t, LineTable> LineTableMapTy;
DWARFContext.cpp 20 typedef DWARFDebugLine::LineTable DWARFLineTable;
295 const DWARFLineTable *LineTable,
300 LineTable == 0 ||
301 !LineTable->getFileNameByIndex(FileIndex, NeedsAbsoluteFilePath,
317 const DWARFLineTable *LineTable,
322 if (CU == 0 || LineTable == 0)
325 uint32_t RowIndex = LineTable->lookupAddress(Address);
329 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
330 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
360 const DWARFLineTable *LineTable = getLineTableForCompileUnit(CU)
    [all...]
DWARFDebugLine.cpp 83 void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const {
106 LineTable::appendRow(*this);
112 LineTable::appendSequence(*this);
139 LineTable::dump(OS);
142 const DWARFDebugLine::LineTable *
150 const DWARFDebugLine::LineTable *
154 LineTableMap.insert(LineTableMapTy::value_type(offset, LineTable()));
482 DWARFDebugLine::LineTable::lookupAddress(uint64_t address) const {
528 DWARFDebugLine::LineTable::lookupAddressRange(uint64_t address,
605 DWARFDebugLine::LineTable::getFileNameByIndex(uint64_t FileIndex
    [all...]
DWARFContext.h 93 const DWARFDebugLine::LineTable *
  /external/clang/lib/Basic/
SourceManager.cpp 289 if (LineTable == 0)
290 LineTable = new LineTableInfo();
291 return LineTable->getLineTableFilenameID(Name);
312 if (LineTable == 0)
313 LineTable = new LineTableInfo();
314 LineTable->AddLineNote(LocInfo.first, LocInfo.second, LineNo, FilenameID);
342 if (LineTable == 0)
343 LineTable = new LineTableInfo();
359 LineTable->AddLineNote(LocInfo.first, LocInfo.second, LineNo, FilenameID,
364 if (LineTable == 0
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 631 LineTableInfo *LineTable;
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 757 LineTableInfo &LineTable = SourceMgr.getLineTable();
767 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
793 LineTable.AddEntry(FileID::get(FID), Entries);
    [all...]

Completed in 925 milliseconds