| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderAnalysis.cpp | 60 llvm::StringRef getFileContents(FileEntryRef FE, const SourceManager &SM) { in getFileContents() argument 62 .getMemoryBufferForFileOrNone(FE) in getFileContents() 69 bool isSelfContainedHeader(FileEntryRef FE, const SourceManager &SM, in isSelfContainedHeader() argument 71 if (!HeaderInfo.isFileMultipleIncludeGuarded(FE) && in isSelfContainedHeader() 72 !HeaderInfo.hasFileBeenImported(FE) && in isSelfContainedHeader() 75 (SM.getFileEntryForID(SM.getMainFileID()) != FE || in isSelfContainedHeader() 76 !codeContainsImports(getFileContents(FE, SM)))) in isSelfContainedHeader() 80 return !isDontIncludeMeHeader(getFileContents(FE, SM)); in isSelfContainedHeader()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/IndexSerialization/ |
| H A D | SerializablePathCollection.cpp | 48 size_t SerializablePathCollection::tryStoreFilePath(FileEntryRef FE) { in tryStoreFilePath() argument 49 auto FileIt = UniqueFiles.find(FE); in tryStoreFilePath() 53 const auto Dir = tryStoreDirPath(sys::path::parent_path(FE.getName())); in tryStoreFilePath() 55 Paths.addFilePath(Dir.Root, Dir.Path, sys::path::filename(FE.getName())); in tryStoreFilePath() 57 UniqueFiles.try_emplace(FE, FileIdx); in tryStoreFilePath()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | XCore.cpp | 334 static bool extractFieldType(SmallVectorImpl<FieldEncoding> &FE, in extractFieldType() argument 354 FE.emplace_back(!Field->getName().empty(), Enc); in extractFieldType() 387 SmallVector<FieldEncoding, 16> FE; in appendRecordType() local 391 if (!extractFieldType(FE, RD, CGM, TSC)) { in appendRecordType() 399 llvm::sort(FE); in appendRecordType() 401 unsigned E = FE.size(); in appendRecordType() 405 Enc += FE[I].str(); in appendRecordType() 432 SmallVector<FieldEncoding, 16> FE; in appendEnumType() local 443 llvm::sort(FE); in appendEnumType() 444 unsigned E = FE.size(); in appendEnumType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 42 for (const SubtargetFeatureKV &FE : FeatureTable) in SetImpliedBits() local 43 if (Implies.test(FE.Value)) in SetImpliedBits() 44 SetImpliedBits(Bits, FE.Implies.getAsBitset(), FeatureTable); in SetImpliedBits() 51 for (const SubtargetFeatureKV &FE : FeatureTable) { in ClearImpliedBits() local 52 if (FE.Implies.getAsBitset().test(Value)) { in ClearImpliedBits() 53 Bits.reset(FE.Value); in ClearImpliedBits() 54 ClearImpliedBits(Bits, FE.Value, FeatureTable); in ClearImpliedBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURemoveIncompatibleFunctions.cpp | 113 for (const SubtargetFeatureKV &FE : AMDGPUFeatureKV) { in expandImpliedFeatures() local 114 if (Features.test(FE.Value) && FE.Implies.any()) in expandImpliedFeatures() 115 Result |= expandImpliedFeatures(FE.Implies.getAsBitset()); in expandImpliedFeatures()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 153 if (HeaderMaps[i].first == FE) in CreateHeaderMap() 761 if (MSFE && FE != *MSFE) { in checkMSVCHeaderSearch() 936 return FE; in LookupFile() 968 return FE; in LookupFile() 975 return FE; in LookupFile() 977 MSFE = FE; in LookupFile() 1315 if (FE.getUID() >= FileInfo.size()) in getFileInfo() 1316 FileInfo.resize(FE.getUID() + 1); in getFileInfo() 1348 HFI = &FileInfo[FE.getUID()]; in getExistingFileInfo() 1362 HFI = &FileInfo[FE.getUID()]; in getExistingFileInfo() [all …]
|
| H A D | HeaderMap.cpp | 52 std::unique_ptr<HeaderMap> HeaderMap::Create(FileEntryRef FE, FileManager &FM) { in Create() argument 54 unsigned FileSize = FE.getSize(); in Create() 57 auto FileBuffer = FM.getBufferForFile(FE); in Create()
|
| H A D | PPDirectives.cpp | 893 auto FE = SM.getFileEntryRefForID(ID); in getHeaderToIncludeForDiagnostics() local 894 if (!FE) in getHeaderToIncludeForDiagnostics() 931 return *FE; in getHeaderToIncludeForDiagnostics() 943 return *FE; in getHeaderToIncludeForDiagnostics() 1029 if (&FE->getFileEntry() == FromFile) { in LookupFile() 1043 if (FE) in LookupFile() 1044 return FE; in LookupFile() 1055 return FE; in LookupFile() 1066 return FE; in LookupFile() 1946 LookupFromFile = *FE; in getIncludeNextStart() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | LogDiagnosticPrinter.cpp | 121 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local 122 MainFilename = std::string(FE->getName()); in HandleDiagnostic() 150 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local 151 DE.Filename = std::string(FE->getName()); in HandleDiagnostic()
|
| H A D | VerifyDiagnosticConsumer.cpp | 746 auto FE = SrcManager->getFileEntryRefForID(FID); in HandleDiagnostic() local 747 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic() 751 if (HS.findModuleForHeader(*FE)) in HandleDiagnostic() 1039 OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID); in UpdateParsedFileStatus() local 1044 ParsedFiles.insert(std::make_pair(FID, FE ? &FE->getFileEntry() : nullptr)); in UpdateParsedFileStatus() 1057 UnparsedFileStatus(FE, FoundDirectives))); in UpdateParsedFileStatus() 1079 if (const FileEntry *FE = I.second) in CheckDiagnostics() local 1080 ParsedFileCache.insert(FE); in CheckDiagnostics() 1085 OptionalFileEntryRef FE = Status.getFile(); in CheckDiagnostics() local 1088 if (FE && ParsedFileCache.count(*FE)) in CheckDiagnostics() [all …]
|
| H A D | ModuleDependencyCollector.cpp | 40 if (auto FE = FileMgr.getOptionalFileRef(Filename)) in visitInputFile() local 41 Filename = FE->getName(); in visitInputFile()
|
| H A D | SARIFDiagnostic.cpp | 73 if (OptionalFileEntryRef FE = Loc.getFileEntryRef()) { in addLocationToResult() local 74 emitFilename(FE->getName(), Loc.getManager()); in addLocationToResult()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | IgnoreExpr.h | 52 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreImplicitCastsSingleStep() local 53 return FE->getSubExpr(); in IgnoreImplicitCastsSingleStep() 79 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreCastsSingleStep() local 80 return FE->getSubExpr(); in IgnoreCastsSingleStep()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Sarif.cpp | 38 static StringRef getFileName(FileEntryRef FE) { in getFileName() argument 39 StringRef Filename = FE.getFileEntry().tryGetRealPathName(); in getFileName() 41 Filename = FE.getName(); in getFileName() 217 OptionalFileEntryRef FE = Start.getExpansionLoc().getFileEntryRef(); in createPhysicalLocation() local 218 assert(FE && "Diagnostic does not exist within a valid file!"); in createPhysicalLocation() 220 const std::string &FileURI = fileNameToURI(getFileName(*FE)); in createPhysicalLocation() 229 .setLength(FE->getSize()) in createPhysicalLocation()
|
| H A D | FileManager.cpp | 384 FileEntry &FE = const_cast<FileEntry &>(STDIN->getFileEntry()); in getSTDIN() local 385 FE.Content = std::move(Content); in getSTDIN() 386 FE.IsNamedPipe = true; in getSTDIN() 539 FileManager::getBufferForFile(FileEntryRef FE, bool isVolatile, in getBufferForFile() argument 541 const FileEntry *Entry = &FE.getFileEntry(); in getBufferForFile() 552 StringRef Filename = FE.getName(); in getBufferForFile() 623 FileEntryRef FE(Entry); in GetUniqueIDMapping() local 626 OptionalFileEntryRef &ExistingFE = UIDToFiles[FE.getUID()]; in GetUniqueIDMapping() 627 if (!ExistingFE || FE.getName() < ExistingFE->getName()) in GetUniqueIDMapping() 628 ExistingFE = FE; in GetUniqueIDMapping()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | FileRemapper.cpp | 137 if (const auto *FE = std::get_if<FileEntryRef>(&I->second)) { in flushToFile() local 138 SmallString<200> newPath = StringRef(FE->getName()); in flushToFile() 199 if (const auto *FE = std::get_if<FileEntryRef>(&Mapping.second)) { in forEachMapping() local 200 CaptureFile(Mapping.first.getName(), FE->getName()); in forEachMapping() 212 if (const auto *FE = std::get_if<FileEntryRef>(&I->second)) { in applyMappings() local 213 PPOpts.addRemappedFile(I->first.getName(), FE->getName()); in applyMappings()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | GsymReader.cpp | 437 void GsymReader::dump(raw_ostream &OS, std::optional<FileEntry> FE) { in dump() argument 438 if (FE) { in dump() 440 if (FE->Dir == 0 && FE->Base == 0) in dump() 442 StringRef Dir = getString(FE->Dir); in dump() 443 StringRef Base = getString(FE->Base); in dump()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 151 virtual HeaderFileInfo GetHeaderFileInfo(FileEntryRef FE) = 0; 549 void MarkFileModuleHeader(FileEntryRef FE, ModuleMap::ModuleHeaderRole Role, 581 const HeaderMap *CreateHeaderMap(FileEntryRef FE); 814 HeaderFileInfo &getFileInfo(FileEntryRef FE); 820 const HeaderFileInfo *getExistingFileInfo(FileEntryRef FE,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrSNP.td | 32 // F2 0F 01 FE 37 // F3 0F 01 FE
|
| /freebsd-14.2/secure/caroot/trusted/ |
| H A D | Certigna.pem | 52 1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 54 keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 56 serial:FE:DC:E3:01:0F:C9:48:FF
|
| H A D | CommScope_Public_Trust_ECC_Root-02.pem | 53 SHA1 Fingerprint=3C:3F:EF:57:0F:FE:65:93:86:9E:A0:FE:B0:F6:ED:8E:D1:13:C7:E5
|
| H A D | Security_Communication_ECC_RootCA1.pem | 40 86:1C:E7:FE:2D:A5:4A:8B:08:FE:28:11:FA:BE:A3:66:F8:60:59:2F
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/ |
| H A D | HeaderAnalysis.h | 30 bool isSelfContainedHeader(FileEntryRef FE, const SourceManager &SM,
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.h | 590 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_CIE; } in classof() argument 650 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_FDE; } in classof() argument
|
| /freebsd-14.2/crypto/openssl/test/ct/ |
| H A D | tls1.sct | 11 F5:E8:AB:6A:68:06:53:98:7D:CF:41:02:7D:FE:FF:A1:
|