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.cpp986 uint64_t TrailingZeroes = ArrayBound - NonzeroLength; in EmitArrayConstant() local
987 if (TrailingZeroes >= 8) { in EmitArrayConstant()
1005 FillerType = llvm::ArrayType::get(FillerType, TrailingZeroes); in EmitArrayConstant()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp171 const unsigned TrailingZeroes = countr_zero(); in isAligned() local
173 return TrailingZeroes >= MinimumTrailingZeroes; in isAligned()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp18317 unsigned TrailingZeroes = ConstValue.countr_zero(); in performMulCombine() local
18318 if (TrailingZeroes) { in performMulCombine()
18332 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()
18386 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local
18387 APInt SCVMinus1 = CVMinus1.ashr(TrailingZeroes) - 1; in performMulCombine()
18391 N = APInt(BitWidth, TrailingZeroes); in performMulCombine()
18403 unsigned TrailingZeroes = CVMinus1.countr_zero(); in performMulCombine() local
18404 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 …]