Searched refs:FileNum (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h236 /// Get the full path for file \a FileNum in the line table
237 StringRef getResolvedPath(unsigned FileNum) { argument
238 if (FileNum >= ResolvedPaths.size())
240 return ResolvedPaths[FileNum];
243 /// Set the fully resolved path for the line-table's file \a FileNum
245 void setResolvedPath(unsigned FileNum, StringRef Path) { argument
246 if (ResolvedPaths.size() <= FileNum)
247 ResolvedPaths.resize(FileNum + 1);
248 ResolvedPaths[FileNum] = Path;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h34 uint32_t FileNum; member in class:llvm::MCCVLoc
44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line),
55 /// Get the FileNum of this MCCVLoc.
56 unsigned getFileNum() const { return FileNum; }
71 /// Set the FileNum of this MCCVLoc.
72 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
H A DMCDwarf.h71 uint32_t FileNum; member in class:llvm::MCDwarfLoc
93 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
100 /// Get the FileNum of this MCDwarfLoc.
101 unsigned getFileNum() const { return FileNum; }
118 /// Set the FileNum of this MCDwarfLoc.
119 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
H A DMCContext.h601 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, argument
604 CurrentDwarfLoc.setFileNum(FileNum);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp121 if (unsigned FileNum =
129 FileNum = 1;
131 if (LT->hasFileAtIndex(FileNum)) {
135 StringRef ResolvedPath = U.getResolvedPath(FileNum);
141 FileNum, U.getOrigUnit().getCompilationDir(),
149 U.setResolvedPath(FileNum, FileRef);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h114 size_t FileNum)
116 FileNum(FileNum) {}
121 size_t FileNum; member in class:lldb_private::breakpad::LineRecord
113 LineRecord(lldb::addr_t Address, lldb::addr_t Size, uint32_t LineNum, size_t FileNum) argument
H A DBreakpadRecords.cpp319 size_t FileNum;
321 if (!to_integer(Str, FileNum))
324 return LineRecord(Address, Size, LineNum, FileNum);
329 L.FileNum == R.FileNum;
334 R.LineNum, R.FileNum);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp212 if (record && record->FileNum < m_files->size())
213 spec = (*m_files)[record->FileNum];
727 map[record->FileNum], /*is_start_of_statement*/ true,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp152 unsigned FileNum = 1; local
164 if (FileNum != LineEntry.getFileNum()) {
165 FileNum = LineEntry.getFileNum();
167 MCOS->EmitULEB128IntValue(FileNum);

Completed in 145 milliseconds