Home
last modified time | relevance | path

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

/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.cpp122 if (unsigned FileNum = in getChildDeclContext() local
130 FileNum = 1; in getChildDeclContext()
132 if (LT->hasFileAtIndex(FileNum)) { in getChildDeclContext()
136 FileRef = getResolvedPath(U, FileNum, *LT); in getChildDeclContext()
196 DeclContextTree::getResolvedPath(CompileUnit &CU, unsigned FileNum, in getResolvedPath() argument
198 std::pair<unsigned, unsigned> Key = {CU.getUniqueID(), FileNum}; in getResolvedPath()
204 FileNum, CU.getOrigUnit().getCompilationDir(), in getResolvedPath()
H A DDWARFStreamer.cpp1060 unsigned FileNum = 1; in emitLineTableRows() local
1090 if (FileNum != Row.File) { in emitLineTableRows()
1091 FileNum = Row.File; in emitLineTableRows()
1093 MS->emitULEB128IntValue(FileNum); in emitLineTableRows()
1094 LineSectionSize += 1 + getULEB128Size(FileNum); in emitLineTableRows()
1168 LastLine = FileNum = IsStatement = 1; in emitLineTableRows()
/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h41 uint32_t FileNum; variable
51 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
62 /// Get the FileNum of this MCCVLoc.
63 unsigned getFileNum() const { return FileNum; } in getFileNum()
78 /// Set the FileNum of this MCCVLoc.
79 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
H A DMCDwarf.h106 uint32_t FileNum; variable
128 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), in MCDwarfLoc()
135 /// Get the FileNum of this MCDwarfLoc.
136 unsigned getFileNum() const { return FileNum; } in getFileNum()
153 /// Set the FileNum of this MCDwarfLoc.
154 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
H A DMCContext.h743 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, in setCurrentDwarfLoc()
746 CurrentDwarfLoc.setFileNum(FileNum); in setCurrentDwarfLoc()
739 setCurrentDwarfLoc(unsigned FileNum,unsigned Line,unsigned Column,unsigned Flags,unsigned Isa,unsigned Discriminator) setCurrentDwarfLoc() argument
/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h315 unsigned FileNum = 1; in emitLineTableRows() local
344 if (FileNum != Row.File) { in emitLineTableRows()
345 FileNum = Row.File; in emitLineTableRows()
347 encodeULEB128(FileNum, Section.OS); in emitLineTableRows()
406 LastLine = FileNum = IsStatement = 1; in emitLineTableRows()
/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h163 size_t FileNum) in LineRecord() argument
165 FileNum(FileNum) {} in LineRecord()
170 size_t FileNum; variable
H A DBreakpadRecords.cpp398 size_t FileNum; in parse() local
400 if (!to_integer(Str, FileNum)) in parse()
403 return LineRecord(Address, Size, LineNum, FileNum); in parse()
408 L.FileNum == R.FileNum; in operator ==()
413 R.LineNum, R.FileNum); in operator <<()
/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h165 StringRef getResolvedPath(CompileUnit &CU, unsigned FileNum,
/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp170 unsigned FileNum, LastLine, Column, Flags, Isa, Discriminator; in emitOne()
174 FileNum = 1; in emitOne() local
211 if (FileNum != LineEntry.getFileNum()) { in emitOne()
212 FileNum = LineEntry.getFileNum(); in emitOne()
214 MCOS->emitULEB128IntValue(FileNum); in emitOne()
/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp215 if (record && record->FileNum < m_files->size()) in ParseCompileUnitAtIndex()
216 spec = (*m_files)[record->FileNum]; in ParseCompileUnitAtIndex()
874 map[record->FileNum], /*is_start_of_statement=*/true, in ParseLineTableAndSupportFiles()