Lines Matching refs:MCDwarfFiles
371 for (unsigned i = 1; i < MCDwarfFiles.size(); i++) { in emitV2FileDirTables()
372 assert(!MCDwarfFiles[i].Name.empty()); in emitV2FileDirTables()
373 MCOS->emitBytes(MCDwarfFiles[i].Name); // FileName and... in emitV2FileDirTables()
375 MCOS->emitULEB128IntValue(MCDwarfFiles[i].DirIndex); // Directory number. in emitV2FileDirTables()
470 MCOS->emitULEB128IntValue(MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size()); in emitV5FileDirTables()
473 assert((!RootFile.Name.empty() || MCDwarfFiles.size() >= 1) && in emitV5FileDirTables()
475 emitOneV5FileEntry(MCOS, RootFile.Name.empty() ? MCDwarfFiles[1] : RootFile, in emitV5FileDirTables()
477 for (unsigned i = 1; i < MCDwarfFiles.size(); ++i) in emitV5FileDirTables()
478 emitOneV5FileEntry(MCOS, MCDwarfFiles[i], HasAllMD5, HasSource, LineStr); in emitV5FileDirTables()
595 if (MCDwarfFiles.empty()) { in tryGetFile()
604 FileNumber = MCDwarfFiles.empty() ? 1 : MCDwarfFiles.size(); in tryGetFile()
613 if (FileNumber >= MCDwarfFiles.size()) in tryGetFile()
614 MCDwarfFiles.resize(FileNumber + 1); in tryGetFile()
617 MCDwarfFile &File = MCDwarfFiles[FileNumber]; in tryGetFile()
1006 const SmallVectorImpl<MCDwarfFile> &MCDwarfFiles = context.getMCDwarfFiles(); in EmitGenDwarfInfo() local
1009 assert(MCDwarfFiles.empty() || MCDwarfFiles.size() >= 2); in EmitGenDwarfInfo()
1011 MCDwarfFiles.empty() in EmitGenDwarfInfo()
1013 : MCDwarfFiles[1]; in EmitGenDwarfInfo()