Home
last modified time | relevance | path

Searched refs:FE (Results 1 – 25 of 205) sorted by relevance

123456789

/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderAnalysis.cpp60 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()
/src/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp78 InstallAPIContext::findAndRecordFile(const FileEntry *FE, in findAndRecordFile() argument
80 if (!FE) in findAndRecordFile()
85 auto It = KnownFiles.find(FE); in findAndRecordFile()
96 StringRef IncludeName = PP.getHeaderSearchInfo().getIncludeNameForHeader(FE); in findAndRecordFile()
99 KnownFiles[FE] = BackupIt->second; in findAndRecordFile()
105 KnownFiles.insert({FE, HeaderType::Unknown}); in findAndRecordFile()
110 auto FE = FM->getFile(H.getPath()); in addKnownHeader() local
111 if (!FE) in addKnownHeader()
113 KnownFiles[*FE] = H.getType(); in addKnownHeader()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp254 calculateConstraintSatisfaction(Sema &S, const CXXFoldExpr *FE, in calculateConstraintSatisfaction() argument
257 bool Conjunction = FE->getOperator() == BinaryOperatorKind::BO_LAnd; in calculateConstraintSatisfaction()
261 if (FE->isLeftFold() && FE->getInit()) { in calculateConstraintSatisfaction()
262 Out = calculateConstraintSatisfaction(S, FE->getInit(), Satisfaction, in calculateConstraintSatisfaction()
275 Evaluator.EvaluateFoldExpandedConstraintSize(FE); in calculateConstraintSatisfaction()
280 ExprResult Res = calculateConstraintSatisfaction(S, FE->getPattern(), in calculateConstraintSatisfaction()
295 S.Context, Out.get(), Res.get(), FE->getOperator(), S.Context.BoolTy, in calculateConstraintSatisfaction()
296 VK_PRValue, OK_Ordinary, FE->getBeginLoc(), FPOptionsOverride{}); in calculateConstraintSatisfaction()
302 if (FE->isRightFold() && FE->getInit()) { in calculateConstraintSatisfaction()
303 ExprResult Res = calculateConstraintSatisfaction(S, FE->getInit(), in calculateConstraintSatisfaction()
[all …]
/src/contrib/llvm-project/clang/lib/IndexSerialization/
H A DSerializablePathCollection.cpp48 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()
/src/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp334 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
441 FE.push_back(FieldEncoding(!I->getName().empty(), EnumEnc)); in appendEnumType()
443 llvm::sort(FE); in appendEnumType()
[all …]
/src/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp170 const HeaderMap *HeaderSearch::CreateHeaderMap(FileEntryRef FE) { in CreateHeaderMap() argument
177 if (HeaderMaps[i].first == FE) in CreateHeaderMap()
181 if (std::unique_ptr<HeaderMap> HM = HeaderMap::Create(FE, FileMgr)) { in CreateHeaderMap()
182 HeaderMaps.emplace_back(FE, std::move(HM)); in CreateHeaderMap()
783 const FileEntry *FE, in checkMSVCHeaderSearch() argument
785 if (MSFE && FE != *MSFE) { in checkMSVCHeaderSearch()
959 if (OptionalFileEntryRef FE = getFileAndSuggestModule( in LookupFile() local
964 return FE; in LookupFile()
979 HeaderFileInfo &ToHFI = getFileInfo(*FE); in LookupFile()
996 *FE); in LookupFile()
[all …]
H A DHeaderMap.cpp52 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()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURemoveIncompatibleFunctions.cpp113 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()
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp42 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()
/src/contrib/llvm-project/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp121 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 DVerifyDiagnosticConsumer.cpp751 auto FE = SrcManager->getFileEntryRefForID(FID); in HandleDiagnostic() local
752 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
756 if (HS.findModuleForHeader(*FE)) in HandleDiagnostic()
1044 OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID); in UpdateParsedFileStatus() local
1049 ParsedFiles.insert(std::make_pair(FID, FE ? &FE->getFileEntry() : nullptr)); in UpdateParsedFileStatus()
1062 UnparsedFileStatus(FE, FoundDirectives))); in UpdateParsedFileStatus()
1084 if (const FileEntry *FE = I.second) in CheckDiagnostics() local
1085 ParsedFileCache.insert(FE); in CheckDiagnostics()
1090 OptionalFileEntryRef FE = Status.getFile(); in CheckDiagnostics() local
1093 if (FE && ParsedFileCache.count(*FE)) in CheckDiagnostics()
[all …]
H A DModuleDependencyCollector.cpp40 if (auto FE = FileMgr.getOptionalFileRef(Filename)) in visitInputFile() local
41 Filename = FE->getName(); in visitInputFile()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DIgnoreExpr.h52 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()
/src/contrib/llvm-project/clang/lib/Basic/
H A DSarif.cpp38 static StringRef getFileName(FileEntryRef FE) { in getFileName() argument
39 StringRef Filename = FE.getFileEntry().tryGetRealPathName(); in getFileName()
41 Filename = FE.getName(); in getFileName()
216 OptionalFileEntryRef FE = Start.getExpansionLoc().getFileEntryRef(); in createPhysicalLocation() local
217 assert(FE && "Diagnostic does not exist within a valid file!"); in createPhysicalLocation()
219 const std::string &FileURI = fileNameToURI(getFileName(*FE)); in createPhysicalLocation()
228 .setLength(FE->getSize()) in createPhysicalLocation()
H A DFileManager.cpp372 FileEntry &FE = const_cast<FileEntry &>(STDIN->getFileEntry()); in getSTDIN() local
373 FE.Content = std::move(Content); in getSTDIN()
374 FE.IsNamedPipe = true; in getSTDIN()
532 FileManager::getBufferForFile(FileEntryRef FE, bool isVolatile, in getBufferForFile() argument
535 const FileEntry *Entry = &FE.getFileEntry(); in getBufferForFile()
550 StringRef Filename = FE.getName(); in getBufferForFile()
621 FileEntryRef FE(Entry); in GetUniqueIDMapping() local
624 OptionalFileEntryRef &ExistingFE = UIDToFiles[FE.getUID()]; in GetUniqueIDMapping()
625 if (!ExistingFE || FE.getName() < ExistingFE->getName()) in GetUniqueIDMapping()
626 ExistingFE = FE; in GetUniqueIDMapping()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DFileRemapper.cpp137 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()
/src/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected18 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
27 83 FE B6 7B 73 4F CE DB 8E 97 D4 06 96 11 B7 23
54 B5 76 2B EE F3 A1 04 A1 E0 3F FE CA 17 7B 4C 91
64 FE 7A E7 E7 DF 7F 12 C6 5E 29 F9 A2 55 C0 93 F1
87 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A
123 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17 96
124 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95
197 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95
198 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17
/src/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp437 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()
/src/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearch.h168 virtual HeaderFileInfo GetHeaderFileInfo(FileEntryRef FE) = 0;
570 void MarkFileModuleHeader(FileEntryRef FE, ModuleMap::ModuleHeaderRole Role,
609 const HeaderMap *CreateHeaderMap(FileEntryRef FE);
842 HeaderFileInfo &getFileInfo(FileEntryRef FE);
846 const HeaderFileInfo *getExistingFileInfo(FileEntryRef FE) const;
850 const HeaderFileInfo *getExistingLocalFileInfo(FileEntryRef FE) const;
/src/sys/contrib/device-tree/src/arm64/exynos/
H A Dexynos990-r8s.dts3 * Samsung Galaxy S20 FE (r8s/SM-G780F) device tree source
15 model = "Samsung Galaxy S20 FE";
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrSNP.td32 // F2 0F 01 FE
37 // F3 0F 01 FE
/src/secure/caroot/trusted/
H A DCertigna.pem52 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 DSecurity_Communication_ECC_RootCA1.pem40 86:1C:E7:FE:2D:A5:4A:8B:08:FE:28:11:FA:BE:A3:66:F8:60:59:2F
/src/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp159 if (const auto *FE = SM.getFileEntryForID(SM.getMainFileID())) in ParseAST() local
160 M.File = FE->tryGetRealPathName(); in ParseAST()
/src/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DHeaderAnalysis.h30 bool isSelfContainedHeader(FileEntryRef FE, const SourceManager &SM,

123456789