Searched defs:ShiftedC (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2073 APInt ShiftedC = C.ashr(*ShiftAmt); local
2078 APInt ShiftedC = C.ashr(*ShiftAmt); local
2087 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; local
2103 APInt ShiftedC = C.lshr(*ShiftAmt); local
2108 APInt ShiftedC = C.lshr(*ShiftAmt); local
2117 APInt ShiftedC = (C - 1).lshr(*ShiftAmt) + 1; local
2223 APInt ShiftedC = C.shl(ShAmtVal); local
2229 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1; local
2238 APInt ShiftedC = C.shl(ShAmtVal); local
2244 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1; local
[all...]

Completed in 62 milliseconds