Home
last modified time | relevance | path

Searched refs:ActiveFeatures (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVMatInt.cpp49 const FeatureBitset &ActiveFeatures, in generateInstSeqImpl() argument
51 bool IsRV64 = ActiveFeatures[RISCV::Feature64Bit]; in generateInstSeqImpl()
54 if (ActiveFeatures[RISCV::FeatureStdExtZbs] && isPowerOf2_64(Val) && in generateInstSeqImpl()
125 ActiveFeatures[RISCV::FeatureStdExtZba]) { in generateInstSeqImpl()
136 ActiveFeatures[RISCV::FeatureStdExtZba]) { in generateInstSeqImpl()
144 generateInstSeqImpl(Val, ActiveFeatures, Res); in generateInstSeqImpl()
175 InstSeq generateInstSeq(int64_t Val, const FeatureBitset &ActiveFeatures) { in generateInstSeq() argument
177 generateInstSeqImpl(Val, ActiveFeatures, Res); in generateInstSeq()
190 isInt<6>(ShiftedVal) && !ActiveFeatures[RISCV::TuneLUIADDIFusion]; in generateInstSeq()
192 generateInstSeqImpl(ShiftedVal, ActiveFeatures, TmpSeq); in generateInstSeq()
[all …]
H A DRISCVMatInt.h49 InstSeq generateInstSeq(int64_t Val, const FeatureBitset &ActiveFeatures);
62 const FeatureBitset &ActiveFeatures,
H A DRISCVBaseInfo.h353 bool haveRequiredFeatures(const FeatureBitset &ActiveFeatures) const { in haveRequiredFeatures()
355 if (isRV32Only && ActiveFeatures[RISCV::Feature64Bit]) in haveRequiredFeatures()
360 return (FeaturesRequired & ActiveFeatures) == FeaturesRequired; in haveRequiredFeatures()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h380 bool haveFeatures(FeatureBitset ActiveFeatures) const { in haveFeatures()
381 return ActiveFeatures[llvm::AArch64::FeatureAll] || in haveFeatures()
382 (FeaturesRequired & ActiveFeatures) == FeaturesRequired; in haveFeatures()
695 bool haveFeatures(FeatureBitset ActiveFeatures) const { in haveFeatures()
696 return ActiveFeatures[llvm::AArch64::FeatureAll] || in haveFeatures()
697 (FeaturesRequired & ActiveFeatures) == FeaturesRequired; in haveFeatures()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h199 bool hasRequiredFeatures(FeatureBitset ActiveFeatures) const { in hasRequiredFeatures()
200 return (FeaturesRequired & ActiveFeatures) == FeaturesRequired; in hasRequiredFeatures()