Searched refs:ShCt (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3693 unsigned ShCt = AndRHS->getAPIntValue().logBase2(); local
3695 !TLI.shouldAvoidTransformToShift(ShValTy, ShCt)) {
3698 DAG.getConstant(ShCt, dl, ShiftTy)));
3703 unsigned ShCt = C1.logBase2(); local
3705 !TLI.shouldAvoidTransformToShift(ShValTy, ShCt)) {
3708 DAG.getConstant(ShCt, dl, ShiftTy)));
H A DDAGCombiner.cpp9596 unsigned ShCt = VT.getSizeInBits() - 1; local
9598 if (!TLI.shouldAvoidTransformToShift(VT, ShCt)) {
9600 SDValue ShiftAmount = DAG.getConstant(ShCt, DL, VT);
20268 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; local
20269 if (!TLI.shouldAvoidTransformToShift(XType, ShCt)) {
20270 SDValue ShiftAmt = DAG.getConstant(ShCt, DL, ShiftAmtTy);
20286 unsigned ShCt = XType.getSizeInBits() - 1; local
20287 if (TLI.shouldAvoidTransformToShift(XType, ShCt))
20290 SDValue ShiftAmt = DAG.getConstant(ShCt, DL, ShiftAmtTy);
20407 unsigned ShCt local
20464 unsigned ShCt = N2C->getAPIntValue().logBase2(); local
[all...]

Completed in 153 milliseconds