Searched refs:FileInfo (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp30 struct FileInfo { struct in namespace:__anon1971
37 bool operator<(const FileInfo &Other) const {
204 std::set<FileInfo> FileInfos;
245 auto FileInfo = FileInfos.begin(); local
250 sys::fs::remove(FileInfo->Path);
252 TotalSize -= FileInfo->Size;
254 LLVM_DEBUG(dbgs() << " - Remove " << FileInfo->Path << " (size "
255 << FileInfo->Size << "), new occupancy is " << TotalSize
257 ++FileInfo;
288 while (TotalSize > TotalSizeTarget && FileInfo !
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleList.h73 Error initialize(BinaryStreamRef ModInfo, BinaryStreamRef FileInfo);
87 Error initializeFileInfo(BinaryStreamRef FileInfo);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleList.cpp163 BinaryStreamRef FileInfo) {
166 if (auto EC = initializeFileInfo(FileInfo))
186 Error DbiModuleList::initializeFileInfo(BinaryStreamRef FileInfo) { argument
187 FileInfoSubstream = FileInfo;
189 if (FileInfo.getLength() == 0)
192 BinaryStreamReader FISR(FileInfo);
162 initialize(BinaryStreamRef ModInfo, BinaryStreamRef FileInfo) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp91 << FileInfo.size() << " files tracked.\n";
93 for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
94 NumOnceOnlyFiles += FileInfo[i].isImport;
95 if (MaxNumIncludes < FileInfo[i].NumIncludes)
96 MaxNumIncludes = FileInfo[i].NumIncludes;
97 NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
1163 if (FE->getUID() >= FileInfo.size())
1164 FileInfo.resize(FE->getUID() + 1);
1166 HeaderFileInfo *HFI = &FileInfo[FE->getUID()];
1172 HFI = &FileInfo[F
1253 HeaderFileInfo &FileInfo = getFileInfo(File); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h39 class FileInfo;
254 void collectLineCounts(FileInfo &FI);
299 void collectLineCounts(FileInfo &FI);
367 void collectLineCounts(FileInfo &FI);
389 class FileInfo { class in namespace:llvm
423 FileInfo(const GCOV::Options &Options) : Options(Options) {} function in class:llvm::FileInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp119 void GCOVFile::collectLineCounts(FileInfo &FI) {
365 void GCOVFunction::collectLineCounts(FileInfo &FI) {
407 void GCOVBlock::collectLineCounts(FileInfo &FI) {
565 // FileInfo implementation.
678 std::string FileInfo::getCoveragePath(StringRef Filename,
703 FileInfo::openCoveragePath(StringRef CoveragePath) {
718 void FileInfo::print(raw_ostream &InfoOS, StringRef MainFilename,
834 void FileInfo::printFunctionSummary(raw_ostream &OS,
851 void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block,
861 void FileInfo
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h229 struct FileInfo { struct in class:llvm::CodeViewContext
232 // Indicates if this FileInfo corresponds to an actual file, or hasn't been
246 SmallVector<FileInfo, 4> Files;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp321 const SrcMgr::FileInfo &FileInfo = Entry.getFile(); local
324 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
412 for (auto &FileInfo : Old.FileInfos) {
413 SrcMgr::ContentCache *&Slot = FileInfos[FileInfo.first];
416 Slot = CloneContentCache(FileInfo.second);
478 0, FileInfo::get(SourceLocation(), getFakeContentCacheForRecovery(),
576 LoadedOffset, FileInfo::get(IncludePos, File, FileCharacter, Filename));
582 FileInfo
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearch.h191 mutable std::vector<HeaderFileInfo> FileInfo; member in class:clang::HeaderSearch
337 FileInfo.clear();
657 unsigned header_file_size() const { return FileInfo.size(); }
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h243 /// Each FileInfo has include stack information, indicating where it came
249 class FileInfo { class in namespace:clang::SrcMgr
265 /// Whether this FileInfo has any \#line directives.
277 /// Return a FileInfo object.
278 static FileInfo get(SourceLocation IL, const ContentCache *Con,
280 FileInfo X;
435 /// This is a discriminated union of FileInfo and ExpansionInfo.
443 FileInfo File;
455 const FileInfo &getFile() const {
465 static SLocEntry get(unsigned Offset, const FileInfo
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dgcov.cpp78 FileInfo FI(Options);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp1203 VS_FIXEDFILEINFO *FileInfo = nullptr;
1206 reinterpret_cast<LPVOID *>(&FileInfo), &FileInfoSize) ||
1207 FileInfoSize < sizeof(*FileInfo))
1210 const unsigned Major = (FileInfo->dwFileVersionMS >> 16) & 0xFFFF;
1211 const unsigned Minor = (FileInfo->dwFileVersionMS ) & 0xFFFF;
1212 const unsigned Micro = (FileInfo->dwFileVersionLS >> 16) & 0xFFFF;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h123 extern llvm::cl::opt<bool> FileInfo;
H A DBytesOutputStyle.cpp153 if (opts::bytes::FileInfo) {
H A Dllvm-pdbutil.cpp403 cl::opt<bool> FileInfo("files", cl::desc("Dump source file info"),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp1529 SrcMgr::FileInfo &FileInfo = local
1530 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile());
1531 FileInfo.NumCreatedFIDs = Record[5];
1533 FileInfo.setHasLineDirectives();
H A DASTWriter.cpp1412 const SrcMgr::FileInfo &File = SLoc->getFile();
1921 const SrcMgr::FileInfo &File = SLoc->getFile();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3925 const SrcMgr::FileInfo &fileInfo = sloc.getFile();

Completed in 698 milliseconds