Searched refs:TrailingZeroes (Results 1 – 4 of 4) sorted by relevance
164 unsigned TrailingZeroes = ConstValue.countr_zero(); in matchAArch64MulConstCombine() local165 if (TrailingZeroes) { in matchAArch64MulConstCombine()183 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in matchAArch64MulConstCombine()222 if (NegateResult && TrailingZeroes) in matchAArch64MulConstCombine()232 assert(!(NegateResult && TrailingZeroes) && in matchAArch64MulConstCombine()240 if (TrailingZeroes) { in matchAArch64MulConstCombine()241 B.buildShl(DstReg, Res, B.buildConstant(LLT::scalar(64), TrailingZeroes)); in matchAArch64MulConstCombine()
1072 uint64_t TrailingZeroes = ArrayBound - NonzeroLength; in EmitArrayConstant() local1073 if (TrailingZeroes >= 8) { in EmitArrayConstant()1091 FillerType = llvm::ArrayType::get(FillerType, TrailingZeroes); in EmitArrayConstant()
172 const unsigned TrailingZeroes = countr_zero(); in isAligned() local174 return TrailingZeroes >= MinimumTrailingZeroes; in isAligned()
18902 unsigned TrailingZeroes = ConstValue.countr_zero(); in performMulCombine() local18903 if (TrailingZeroes) { in performMulCombine()18917 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()18971 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local18972 APInt SCVMinus1 = CVMinus1.ashr(TrailingZeroes) - 1; in performMulCombine()18976 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()18988 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local18989 APInt CVPlus1 = CVMinus1.ashr(TrailingZeroes) + 1; in performMulCombine()18993 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()19015 return Shl(Add(Shl(N0, ShiftAmt), N0), TrailingZeroes); in performMulCombine()[all …]