HomeSort by relevance Sort by last modified time
    Searched refs:LineTable (Results 1 - 9 of 9) 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 24 typedef DWARFDebugLine::LineTable DWARFLineTable;
323 const DWARFLineTable *LineTable,
328 LineTable == 0 ||
329 !LineTable->getFileNameByIndex(FileIndex, NeedsAbsoluteFilePath,
345 const DWARFLineTable *LineTable,
350 if (CU == 0 || LineTable == 0)
353 uint32_t RowIndex = LineTable->lookupAddress(Address);
357 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
358 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
388 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 103 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/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 149 const ValueToLineMap LineTable;
173 : Builder(M), Layout(&M), LineTable(DisplayM ? DisplayM : &M), VMap(VMap),
244 if (!LineTable.getLine(RealInst, Line)) {
247 DEBUG(dbgs() << "WARNING: no LineTable entry for instruction " << RealInst
346 if (LineTable.getLine(V, Line))
351 if (mapped && LineTable.getLine(mapped, Line))
  /external/clang/include/clang/Basic/
SourceManager.h 631 LineTableInfo *LineTable;
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 787 LineTableInfo &LineTable = SourceMgr.getLineTable();
797 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
823 LineTable.AddEntry(FileID::get(FID), Entries);
    [all...]

Completed in 86 milliseconds