Home
last modified time | relevance | path

Searched defs:FE (Results 1 – 25 of 79) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp121 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local
150 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local
H A DVerifyDiagnosticConsumer.cpp746 auto FE = SrcManager->getFileEntryRefForID(FID); in HandleDiagnostic() local
1039 OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID); in UpdateParsedFileStatus() local
1079 if (const FileEntry *FE = I.second) in CheckDiagnostics() local
1085 OptionalFileEntryRef FE = Status.getFile(); in CheckDiagnostics() local
H A DModuleDependencyCollector.cpp40 if (auto FE = FileMgr.getOptionalFileRef(Filename)) in visitInputFile() local
H A DFrontendAction.cpp651 ASTReader->visitTopLevelModuleMaps(PrimaryModule, [&](FileEntryRef FE) { in BeginSourceFile()
744 if (auto FE = CI.getFileManager().getOptionalFileRef(F, /*openFile*/true)) in BeginSourceFile() local
834 OptionalFileEntryRef FE = in BeginSourceFile() local
H A DSARIFDiagnostic.cpp73 if (OptionalFileEntryRef FE = Loc.getFileEntryRef()) { in addLocationToResult() local
H A DHeaderIncludeGen.cpp262 OptionalFileEntryRef FE = SM.getFileEntryRefForID(SM.getMainFileID()); in EndOfMainFile() local
H A DDependencyFile.cpp133 if (auto FE = FileMgr.getOptionalFileRef(Filename)) in visitInputFile() local
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderAnalysis.cpp60 llvm::StringRef getFileContents(FileEntryRef FE, const SourceManager &SM) { in getFileContents()
69 bool isSelfContainedHeader(FileEntryRef FE, const SourceManager &SM, in isSelfContainedHeader()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DFileRemapper.cpp137 if (const auto *FE = std::get_if<FileEntryRef>(&I->second)) { in flushToFile() local
199 if (const auto *FE = std::get_if<FileEntryRef>(&Mapping.second)) { in forEachMapping() local
212 if (const auto *FE = std::get_if<FileEntryRef>(&I->second)) { in applyMappings() local
H A DTransRetainReleaseDealloc.cpp379 if (FullExpr *FE = dyn_cast<FullExpr>(Rec)) in checkForGCDOrXPC() local
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DIgnoreExpr.h52 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreImplicitCastsSingleStep() local
79 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreCastsSingleStep() local
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp384 FileEntry &FE = const_cast<FileEntry &>(STDIN->getFileEntry()); in getSTDIN() local
539 FileManager::getBufferForFile(FileEntryRef FE, bool isVolatile, in getBufferForFile()
623 FileEntryRef FE(Entry); in GetUniqueIDMapping() local
H A DSarif.cpp38 static StringRef getFileName(FileEntryRef FE) { in getFileName()
217 OptionalFileEntryRef FE = Start.getExpansionLoc().getFileEntryRef(); in createPhysicalLocation() local
/freebsd/contrib/llvm-project/clang/lib/IndexSerialization/
H A DSerializablePathCollection.cpp48 size_t SerializablePathCollection::tryStoreFilePath(FileEntryRef FE) { in tryStoreFilePath()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp334 static bool extractFieldType(SmallVectorImpl<FieldEncoding> &FE, in extractFieldType()
387 SmallVector<FieldEncoding, 16> FE; in appendRecordType() local
432 SmallVector<FieldEncoding, 16> FE; in appendEnumType() local
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURemoveIncompatibleFunctions.cpp113 for (const SubtargetFeatureKV &FE : AMDGPUFeatureKV) { in expandImpliedFeatures() local
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp42 for (const SubtargetFeatureKV &FE : FeatureTable) in SetImpliedBits() local
51 for (const SubtargetFeatureKV &FE : FeatureTable) { in ClearImpliedBits() local
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp893 auto FE = SM.getFileEntryRefForID(ID); in getHeaderToIncludeForDiagnostics() local
1021 while (OptionalFileEntryRef FE = HeaderInfo.LookupFile( in LookupFile() local
1039 OptionalFileEntryRef FE = HeaderInfo.LookupFile( in LookupFile() local
1052 if (OptionalFileEntryRef FE = HeaderInfo.LookupSubframeworkHeader( in LookupFile() local
1063 if (OptionalFileEntryRef FE = HeaderInfo.LookupSubframeworkHeader( in LookupFile() local
1945 if (auto FE = CurPPLexer->getFileEntry()) in getIncludeNextStart() local
2025 auto DiagnoseHeaderInclusion = [&](FileEntryRef FE) { in LookupHeaderIncludeOrImport()
H A DHeaderSearch.cpp146 const HeaderMap *HeaderSearch::CreateHeaderMap(FileEntryRef FE) { in CreateHeaderMap()
759 const FileEntry *FE, in checkMSVCHeaderSearch()
931 if (OptionalFileEntryRef FE = getFileAndSuggestModule( in LookupFile() local
1314 HeaderFileInfo &HeaderSearch::getFileInfo(FileEntryRef FE) { in getFileInfo()
1337 HeaderSearch::getExistingFileInfo(FileEntryRef FE, bool WantExternal) const { in getExistingFileInfo()
1381 void HeaderSearch::MarkFileModuleHeader(FileEntryRef FE, in MarkFileModuleHeader()
H A DHeaderMap.cpp52 std::unique_ptr<HeaderMap> HeaderMap::Create(FileEntryRef FE, FileManager &FM) { in Create()
H A DPreprocessor.cpp564 if (OptionalFileEntryRef FE = SourceMgr.getFileEntryRefForID(MainFileID)) in EnterMainSourceFile() local
609 bool Preprocessor::isPCHThroughHeader(const FileEntry *FE) { in isPCHThroughHeader()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp62 if (const auto *FE = OP->getFalseExpr()->IgnoreParens()) in canExprResolveTo() local
74 if (const auto *FE = OP->getFalseExpr()->IgnoreParens()) in canExprResolveTo() local
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp437 void GsymReader::dump(raw_ostream &OS, std::optional<FileEntry> FE) { in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h590 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_CIE; } in classof()
650 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_FDE; } in classof()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp366 FE = Functions.end(); in notifyFreeingObject() local

1234