Searched refs:ShiftedC (Results 1 – 1 of 1) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineCompares.cpp | 2050 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2051 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2055 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2056 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2064 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local 2065 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2080 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2081 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2085 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2086 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() [all …]
|