Home
last modified time | relevance | path

Searched refs:ModuleFeatures (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/lib/Frontend/
H A DFrontendActions.cpp663 if (!LangOpts.ModuleFeatures.empty()) { in ReadLanguageOptions()
665 for (StringRef Feature : LangOpts.ModuleFeatures) in ReadLanguageOptions()
H A DCompilerInvocation.cpp3808 llvm::sort(Opts.ModuleFeatures); in ParseLangArgs()
4573 HBuilder.addRange(LangOpts->ModuleFeatures); in getModuleHash()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangOptions.h423 std::vector<std::string> ModuleFeatures; variable
/llvm-project-15.0.7/clang/lib/Basic/
H A DModule.cpp124 HasFeature = llvm::is_contained(LangOpts.ModuleFeatures, Feature); in hasFeature()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp5798 SubtargetFeatureInfoMap ModuleFeatures; in run() local
5800 std::inserter(ModuleFeatures, ModuleFeatures.end()), in run()
5813 ModuleFeatures, OS); in run()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp1336 Record.push_back(LangOpts.ModuleFeatures.size()); in WriteControlBlock()
1337 for (StringRef Feature : LangOpts.ModuleFeatures) in WriteControlBlock()
H A DASTReader.cpp320 if (ExistingLangOpts.ModuleFeatures != LangOpts.ModuleFeatures) { in checkLanguageOptions()
5811 LangOpts.ModuleFeatures.push_back(ReadString(Record, Idx)); in ParseLanguageOptions()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td5750 MarshallingInfoStringVector<LangOpts<"ModuleFeatures">>;