Searched refs:FeatureStr (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyTargetMachine.cpp | 205 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 D | AArch64TargetParser.cpp | 53 for (const StringRef &FeatureStr : FeatureStrs) { in getCpuSupportsMask() local 54 if (auto Ext = parseFMVExtension(FeatureStr)) in getCpuSupportsMask()
|
H A D | X86TargetParser.cpp | 737 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 D | PPC.cpp | 925 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 D | X86.cpp | 1290 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 D | AArch64.h | 159 bool validateCpuSupports(StringRef FeatureStr) const override;
|
H A D | X86.h | 224 bool validateCpuSupports(StringRef FeatureStr) const override; 226 bool validateCpuIs(StringRef FeatureStr) const override;
|
H A D | AArch64.cpp | 713 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 D | LTOCodeGenerator.h | 237 std::string FeatureStr; member
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTOCodeGenerator.cpp | 410 FeatureStr = Features.getString(); in determineTarget() 428 TripleStr, Config.CPU, FeatureStr, Config.Options, Config.RelocModel, in createTargetMachine()
|
H A D | LTOModule.cpp | 217 std::string FeatureStr = Features.getString(); in makeLTOModule() local 232 TargetMachine *target = march->createTargetMachine(TripleStr, CPU, FeatureStr, in makeLTOModule()
|
H A D | ThinLTOCodeGenerator.cpp | 596 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 D | Attr.td | 3256 StringRef FeatureStr(getFeatureStr(Index)); 3259 [FeatureStr](StringRef S) { return S == FeatureStr; });
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 14232 StringRef FeatureStr = cast<StringLiteral>(FeatureExpr)->getString(); in EmitX86CpuSupports() local 14233 if (!getContext().getTargetInfo().validateCpuSupports(FeatureStr)) in EmitX86CpuSupports() 14235 return EmitX86CpuSupports(FeatureStr); in EmitX86CpuSupports()
|