Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp19715 APInt APIntShiftAmt; in LowerFunnelShift() local
19717 if (X86::isConstantSplat(Amt, APIntShiftAmt)) { in LowerFunnelShift()
19718 uint64_t ShiftAmt = APIntShiftAmt.urem(VT.getScalarSizeInBits()); in LowerFunnelShift()
28213 APInt APIntShiftAmt; in LowerScalarImmediateShift() local
28214 if (!X86::isConstantSplat(Amt, APIntShiftAmt)) in LowerScalarImmediateShift()
28218 if (APIntShiftAmt.uge(VT.getScalarSizeInBits())) in LowerScalarImmediateShift()
28221 uint64_t ShiftAmt = APIntShiftAmt.getZExtValue(); in LowerScalarImmediateShift()