Lines Matching refs:MCDwarfFiles
360 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) { in emitV2FileDirTables()
361 assert(!MCDwarfFiles[i].Name.empty()); in emitV2FileDirTables()
362 MCOS->emitBytes(MCDwarfFiles[i].Name); // FileName and... in emitV2FileDirTables()
364 MCOS->emitULEB128IntValue(MCDwarfFiles[i].DirIndex); // Directory number. in emitV2FileDirTables()
455 MCOS->emitULEB128IntValue(MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size()); in emitV5FileDirTables()
458 assert((!RootFile.Name.empty() || MCDwarfFiles.size() >= 1) && in emitV5FileDirTables()
460 emitOneV5FileEntry(MCOS, RootFile.Name.empty() ? MCDwarfFiles[1] : RootFile, in emitV5FileDirTables()
462 for (unsigned i = 1; i < MCDwarfFiles.size(); ++i) in emitV5FileDirTables()
463 emitOneV5FileEntry(MCOS, MCDwarfFiles[i], HasAllMD5, HasSource, LineStr); in emitV5FileDirTables()
599 if (MCDwarfFiles.empty()) { in tryGetFile()
608 FileNumber = MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size(); in tryGetFile()
617 if (FileNumber >= MCDwarfFiles.size()) in tryGetFile()
618 MCDwarfFiles.resize(FileNumber + 1); in tryGetFile()
621 MCDwarfFile &File = MCDwarfFiles[FileNumber]; in tryGetFile()
1059 const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles = context.getMCDwarfFiles(); in EmitGenDwarfInfo() local
1062 assert(MCDwarfFiles.empty() || MCDwarfFiles.size() >= 2); in EmitGenDwarfInfo()
1064 MCDwarfFiles.empty() in EmitGenDwarfInfo()
1066 : MCDwarfFiles[1]; in EmitGenDwarfInfo()