Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp206 std::string FeatureStr = getFeatureString(Features); in runOnModule() local
207 WasmTM->setTargetFeatureString(FeatureStr); in runOnModule()
209 replaceFeatures(F, FeatureStr); in runOnModule()
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/Targets/
H A DX86.cpp1035 bool X86TargetInfo::validateCpuSupports(StringRef FeatureStr) const { in validateCpuSupports()
1036 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuSupports()
1117 bool X86TargetInfo::validateCpuIs(StringRef FeatureStr) const { in validateCpuIs()
1118 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuIs()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h229 std::string FeatureStr; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp339 FeatureStr = Features.getString(); in determineTarget()
362 TripleStr, Config.CPU, FeatureStr, Config.Options, Config.RelocModel, in createTargetMachine()
H A DLTOModule.cpp217 std::string FeatureStr = Features.getString(); in makeLTOModule() local
233 march->createTargetMachine(TripleStr, CPU, FeatureStr, options, None); in makeLTOModule()
H A DThinLTOCodeGenerator.cpp651 std::string FeatureStr = Features.getString(); in create() local
654 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options, in create()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3576 std::string FeatureStr = F.str(); in CheckRISCVBuiltinFunctionCall() local
3577 FeatureStr[0] = std::toupper(FeatureStr[0]); in CheckRISCVBuiltinFunctionCall()
3582 << TheCall->getSourceRange() << StringRef(FeatureStr); in CheckRISCVBuiltinFunctionCall()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp12384 StringRef FeatureStr = cast<StringLiteral>(FeatureExpr)->getString(); in EmitX86CpuSupports() local
12385 return EmitX86CpuSupports(FeatureStr); in EmitX86CpuSupports()
12392 for (const StringRef &FeatureStr : FeatureStrs) { in GetX86CpuSupportsMask() local
12394 StringSwitch<unsigned>(FeatureStr) in GetX86CpuSupportsMask()