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()
986 uint64_t TrailingZeroes = ArrayBound - NonzeroLength; in EmitArrayConstant() local987 if (TrailingZeroes >= 8) { in EmitArrayConstant()1005 FillerType = llvm::ArrayType::get(FillerType, TrailingZeroes); in EmitArrayConstant()
171 const unsigned TrailingZeroes = countr_zero(); in isAligned() local173 return TrailingZeroes >= MinimumTrailingZeroes; in isAligned()
18317 unsigned TrailingZeroes = ConstValue.countr_zero(); in performMulCombine() local18318 if (TrailingZeroes) { in performMulCombine()18332 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()18386 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local18387 APInt SCVMinus1 = CVMinus1.ashr(TrailingZeroes) - 1; in performMulCombine()18391 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()18403 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local18404 APInt CVPlus1 = CVMinus1.ashr(TrailingZeroes) + 1; in performMulCombine()18408 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()18430 return Shl(Add(Shl(N0, ShiftAmt), N0), TrailingZeroes); in performMulCombine()[all …]