Home
last modified time | relevance | path

Searched refs:validateCpuIs (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DRISCV.h136 bool validateCpuIs(StringRef CPUName) const override;
H A DPPC.h385 bool validateCpuIs(StringRef Name) const override;
H A DRISCV.cpp636 bool RISCVTargetInfo::validateCpuIs(StringRef CPUName) const { in validateCpuIs() function in RISCVTargetInfo
H A DPPC.cpp801 bool PPCTargetInfo::validateCpuIs(StringRef CPUName) const { in validateCpuIs() function in PPCTargetInfo
H A DX86.h238 bool validateCpuIs(StringRef FeatureStr) const override;
H A DX86.cpp1435 bool X86TargetInfo::validateCpuIs(StringRef FeatureStr) const { in validateCpuIs() function in X86TargetInfo
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1564 virtual bool validateCpuIs(StringRef Name) const { return false; } in validateCpuIs() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp2194 if (!IsCPUSupports && !TheTI->validateCpuIs(Feature)) in BuiltinCpu()
H A DSemaDecl.cpp11195 if (!ParseInfo.CPU.empty() && !TargetInfo.validateCpuIs(ParseInfo.CPU)) { in CheckMultiVersionValue()