Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2266 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local
2271 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local
2280 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local
2291 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local
2296 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local
2305 APInt ShiftedC = (C - 1).lshr(*ShiftAmt) + 1; in foldICmpShlConstant() local
2438 APInt ShiftedC = C.shl(ShAmtVal); in foldICmpShrConstant() local
2444 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1; in foldICmpShrConstant() local
2453 APInt ShiftedC = (C + 1).shl(ShAmtVal) - 1; in foldICmpShrConstant() local
2477 APInt ShiftedC = C.shl(ShAmtVal); in foldICmpShrConstant() local
[all …]