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

  /external/llvm/include/llvm/MC/
MCDwarf.h 57 // FileNum - the file number.
58 unsigned FileNum;
81 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
83 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
90 /// getFileNum - Get the FileNum of this MCDwarfLoc.
91 unsigned getFileNum() const { return FileNum; }
108 /// setFileNum - Set the FileNum of this MCDwarfLoc.
109 void setFileNum(unsigned fileNum) { FileNum = fileNum;
    [all...]
MCContext.h 448 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
451 CurrentDwarfLoc.setFileNum(FileNum);
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 797 unsigned FileNum = 1;
827 if (FileNum != Row.File) {
828 FileNum = Row.File;
830 MS->EmitULEB128IntValue(FileNum);
831 LineSectionSize += 1 + getULEB128Size(FileNum);
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 120 unsigned FileNum = 1;
133 if (FileNum != it->getFileNum()) {
134 FileNum = it->getFileNum();
136 MCOS->EmitULEB128IntValue(FileNum);
    [all...]

Completed in 168 milliseconds