Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3562 int64_t SplatStepVal = StepNumerator; in lowerBuildVectorOfConstants() local
3570 SplatStepVal = Log2_64(std::abs(StepNumerator)); in lowerBuildVectorOfConstants()
3577 if (((StepOpcode == ISD::MUL && isInt<12>(SplatStepVal)) || in lowerBuildVectorOfConstants()
3578 (StepOpcode == ISD::SHL && isUInt<5>(SplatStepVal))) && in lowerBuildVectorOfConstants()
3580 (SplatStepVal >= 0 || StepDenominator == 1) && isInt<5>(Addend)) { in lowerBuildVectorOfConstants()
3591 if ((StepOpcode == ISD::MUL && SplatStepVal != 1) || in lowerBuildVectorOfConstants()
3592 (StepOpcode == ISD::SHL && SplatStepVal != 0)) { in lowerBuildVectorOfConstants()
3593 SDValue SplatStep = DAG.getConstant(SplatStepVal, DL, VIDVT); in lowerBuildVectorOfConstants()