Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3730 int64_t SplatStepVal = StepNumerator; in lowerBuildVectorOfConstants()
3738 SplatStepVal = Log2_64(std::abs(StepNumerator)); in lowerBuildVectorOfConstants()
3745 if (((StepOpcode == ISD::MUL && isInt<12>(SplatStepVal)) || in lowerBuildVectorOfConstants()
3746 (StepOpcode == ISD::SHL && isUInt<5>(SplatStepVal))) && in lowerBuildVectorOfConstants()
3748 (SplatStepVal >= 0 || StepDenominator == 1) && isInt<5>(Addend)) { in lowerBuildVectorOfConstants()
3759 if ((StepOpcode == ISD::MUL && SplatStepVal != 1) || in lowerBuildVectorOfConstants()
3760 (StepOpcode == ISD::SHL && SplatStepVal != 0)) { in lowerBuildVectorOfConstants()
3761 SDValue SplatStep = DAG.getConstant(SplatStepVal, DL, VIDVT); in lowerBuildVectorOfConstants()
3729 int64_t SplatStepVal = StepNumerator; lowerBuildVectorOfConstants() local