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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp151 SDValue ShAmtVal = local
154 ShAmtVal);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2185 unsigned ShAmtVal = ShiftAmt->getLimitedValue(TypeBits); local
2186 if (ShAmtVal >= TypeBits || ShAmtVal == 0)
2200 APInt ShiftedC = C.shl(ShAmtVal);
2201 if (ShiftedC.ashr(ShAmtVal) == C)
2206 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1;
2207 if (!C.isMaxSignedValue() && !(C + 1).shl(ShAmtVal).isMinSignedValue() &&
2208 (ShiftedC + 1).ashr(ShAmtVal) == (C + 1))
2215 APInt ShiftedC = C.shl(ShAmtVal);
2216 if (ShiftedC.lshr(ShAmtVal)
[all...]

Completed in 115 milliseconds