Home
last modified time | relevance | path

Searched refs:FileNum (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/
DDWARFLinkerDeclContext.cpp121 if (unsigned FileNum = in getChildDeclContext() local
129 FileNum = 1; in getChildDeclContext()
131 if (LT->hasFileAtIndex(FileNum)) { in getChildDeclContext()
135 StringRef ResolvedPath = U.getResolvedPath(FileNum); in getChildDeclContext()
141 FileNum, U.getOrigUnit().getCompilationDir(), in getChildDeclContext()
149 U.setResolvedPath(FileNum, FileRef); in getChildDeclContext()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/
DDWARFLinkerCompileUnit.h237 StringRef getResolvedPath(unsigned FileNum) { in getResolvedPath() argument
238 if (FileNum >= ResolvedPaths.size()) in getResolvedPath()
240 return ResolvedPaths[FileNum]; in getResolvedPath()
245 void setResolvedPath(unsigned FileNum, StringRef Path) { in setResolvedPath() argument
246 if (ResolvedPaths.size() <= FileNum) in setResolvedPath()
247 ResolvedPaths.resize(FileNum + 1); in setResolvedPath()
248 ResolvedPaths[FileNum] = Path; in setResolvedPath()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCCodeView.h34 uint32_t FileNum; variable
44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
56 unsigned getFileNum() const { return FileNum; } in getFileNum()
72 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
DMCDwarf.h71 uint32_t FileNum; variable
93 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), in MCDwarfLoc()
101 unsigned getFileNum() const { return FileNum; } in getFileNum()
119 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
DMCContext.h601 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, in setCurrentDwarfLoc() argument
604 CurrentDwarfLoc.setFileNum(FileNum); in setCurrentDwarfLoc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCDwarf.cpp152 unsigned FileNum = 1; in EmitDwarfLineTable() local
164 if (FileNum != LineEntry.getFileNum()) { in EmitDwarfLineTable()
165 FileNum = LineEntry.getFileNum(); in EmitDwarfLineTable()
167 MCOS->EmitULEB128IntValue(FileNum); in EmitDwarfLineTable()