Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp199 std::string FeatureStr = getFeatureString(Features); in runOnModule() local
200 WasmTM->setTargetFeatureString(FeatureStr); in runOnModule()
202 replaceFeatures(F, FeatureStr); in runOnModule()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DX86.cpp1020 bool X86TargetInfo::validateCpuSupports(StringRef FeatureStr) const { in validateCpuSupports()
1021 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuSupports()
1102 bool X86TargetInfo::validateCpuIs(StringRef FeatureStr) const { in validateCpuIs()
1103 return llvm::StringSwitch<bool>(FeatureStr) in validateCpuIs()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h229 std::string FeatureStr; member
/netbsd-src/external/apache2/llvm/dist/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.cpp581 std::string FeatureStr = Features.getString(); in create() local
584 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options, in create()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp3462 std::string FeatureStr = F.str(); in CheckRISCVBuiltinFunctionCall() local
3463 FeatureStr[0] = std::toupper(FeatureStr[0]); in CheckRISCVBuiltinFunctionCall()
3468 << TheCall->getSourceRange() << StringRef(FeatureStr); in CheckRISCVBuiltinFunctionCall()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp12279 StringRef FeatureStr = cast<StringLiteral>(FeatureExpr)->getString(); in EmitX86CpuSupports() local
12280 return EmitX86CpuSupports(FeatureStr); in EmitX86CpuSupports()
12287 for (const StringRef &FeatureStr : FeatureStrs) { in GetX86CpuSupportsMask() local
12289 StringSwitch<unsigned>(FeatureStr) in GetX86CpuSupportsMask()