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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp139 SDValue ShAmtVal = local
142 ShAmtVal);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2208 unsigned ShAmtVal = ShiftAmt->getLimitedValue(TypeBits); local
2209 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
2223 APInt ShiftedC = C.shl(ShAmtVal);
2224 if (ShiftedC.ashr(ShAmtVal) == C)
2229 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1;
2230 if (!C.isMaxSignedValue() && !(C + 1).shl(ShAmtVal).isMinSignedValue() &&
2231 (ShiftedC + 1).ashr(ShAmtVal) == (C + 1))
2238 APInt ShiftedC = C.shl(ShAmtVal);
2239 if (ShiftedC.lshr(ShAmtVal)
[all...]

Completed in 173 milliseconds