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 uint32_t FileNum;
76 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
78 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
85 /// \brief Get the FileNum of this MCDwarfLoc.
86 unsigned getFileNum() const { return FileNum; }
103 /// \brief Set the FileNum of this MCDwarfLoc.
104 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
    [all...]
MCContext.h 460 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
463 CurrentDwarfLoc.setFileNum(FileNum);
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 317 /// Get the full path for file \a FileNum in the line table
318 const char *getResolvedPath(unsigned FileNum) {
319 if (FileNum >= ResolvedPaths.size())
321 return ResolvedPaths[FileNum].size() ? ResolvedPaths[FileNum].c_str()
325 /// Set the fully resolved path for the line-table's file \a FileNum
327 void setResolvedPath(unsigned FileNum, const std::string &Path) {
328 if (ResolvedPaths.size() <= FileNum)
329 ResolvedPaths.resize(FileNum + 1);
330 ResolvedPaths[FileNum] = Path
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 102 unsigned FileNum = 1;
115 if (FileNum != it->getFileNum()) {
116 FileNum = it->getFileNum();
118 MCOS->EmitULEB128IntValue(FileNum);
    [all...]

Completed in 586 milliseconds