Lines Matching refs:MCDwarfFiles
263 if (Header.MCDwarfFiles.empty()) in Emit()
342 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) { in emitV2FileDirTables()
343 assert(!MCDwarfFiles[i].Name.empty()); in emitV2FileDirTables()
344 MCOS->EmitBytes(MCDwarfFiles[i].Name); // FileName and... in emitV2FileDirTables()
346 MCOS->EmitULEB128IntValue(MCDwarfFiles[i].DirIndex); // Directory number. in emitV2FileDirTables()
437 MCOS->EmitULEB128IntValue(MCDwarfFiles.size()); in emitV5FileDirTables()
438 emitOneV5FileEntry(MCOS, RootFile.Name.empty() ? MCDwarfFiles[1] : RootFile, in emitV5FileDirTables()
440 for (unsigned i = 1; i < MCDwarfFiles.size(); ++i) in emitV5FileDirTables()
441 emitOneV5FileEntry(MCOS, MCDwarfFiles[i], HasAllMD5, HasSource, LineStr); in emitV5FileDirTables()
557 if (MCDwarfFiles.empty()) { in tryGetFile()
564 FileNumber = MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size(); in tryGetFile()
573 if (FileNumber >= MCDwarfFiles.size()) in tryGetFile()
574 MCDwarfFiles.resize(FileNumber + 1); in tryGetFile()
577 MCDwarfFile &File = MCDwarfFiles[FileNumber]; in tryGetFile()
1010 const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles = in EmitGenDwarfInfo() local
1012 MCOS->EmitBytes(MCDwarfFiles[1].Name); in EmitGenDwarfInfo()