Home
last modified time | relevance | path

Searched refs:FeatureStr (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp205 std::string FeatureStr = getFeatureString(Features); in runOnModule() local
206 WasmTM->setTargetFeatureString(FeatureStr); in runOnModule()
208 replaceFeatures(F, FeatureStr); in runOnModule()
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DAArch64TargetParser.cpp53 for (const StringRef &FeatureStr : FeatureStrs) { in getCpuSupportsMask() local
54 if (auto Ext = parseFMVExtension(FeatureStr)) in getCpuSupportsMask()
H A DX86TargetParser.cpp737 for (StringRef FeatureStr : FeatureStrs) { in getCpuSupportsMask() local
738 unsigned Feature = StringSwitch<unsigned>(FeatureStr) in getCpuSupportsMask()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DPPC.cpp925 bool PPCTargetInfo::validateCpuSupports(StringRef FeatureStr) const { in validateCpuSupports()
931 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuSupports()
940 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuSupports()
H A DX86.cpp1290 bool X86TargetInfo::validateCpuSupports(StringRef FeatureStr) const { in validateCpuSupports()
1291 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuSupports()
1344 bool X86TargetInfo::validateCpuIs(StringRef FeatureStr) const { in validateCpuIs()
1345 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuIs()
H A DAArch64.h159 bool validateCpuSupports(StringRef FeatureStr) const override;
H A DX86.h224 bool validateCpuSupports(StringRef FeatureStr) const override;
226 bool validateCpuIs(StringRef FeatureStr) const override;
H A DAArch64.cpp713 bool AArch64TargetInfo::validateCpuSupports(StringRef FeatureStr) const { in validateCpuSupports()
716 FeatureStr.split(Features, "+"); in validateCpuSupports()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h237 std::string FeatureStr; member
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp410 FeatureStr = Features.getString(); in determineTarget()
428 TripleStr, Config.CPU, FeatureStr, Config.Options, Config.RelocModel, in createTargetMachine()
H A DLTOModule.cpp217 std::string FeatureStr = Features.getString(); in makeLTOModule() local
232 TargetMachine *target = march->createTargetMachine(TripleStr, CPU, FeatureStr, in makeLTOModule()
H A DThinLTOCodeGenerator.cpp596 std::string FeatureStr = Features.getString(); in create() local
599 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options, in create()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3256 StringRef FeatureStr(getFeatureStr(Index));
3259 [FeatureStr](StringRef S) { return S == FeatureStr; });
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp14232 StringRef FeatureStr = cast<StringLiteral>(FeatureExpr)->getString(); in EmitX86CpuSupports() local
14233 if (!getContext().getTargetInfo().validateCpuSupports(FeatureStr)) in EmitX86CpuSupports()
14235 return EmitX86CpuSupports(FeatureStr); in EmitX86CpuSupports()