Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp164 unsigned TrailingZeroes = ConstValue.countr_zero(); in matchAArch64MulConstCombine() local
165 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()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1072 uint64_t TrailingZeroes = ArrayBound - NonzeroLength; in EmitArrayConstant() local
1073 if (TrailingZeroes >= 8) { in EmitArrayConstant()
1091 FillerType = llvm::ArrayType::get(FillerType, TrailingZeroes); in EmitArrayConstant()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp172 const unsigned TrailingZeroes = countr_zero(); in isAligned() local
174 return TrailingZeroes >= MinimumTrailingZeroes; in isAligned()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp18902 unsigned TrailingZeroes = ConstValue.countr_zero(); in performMulCombine() local
18903 if (TrailingZeroes) { in performMulCombine()
18917 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()
18971 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local
18972 APInt SCVMinus1 = CVMinus1.ashr(TrailingZeroes) - 1; in performMulCombine()
18976 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()
18988 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local
18989 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 …]