Searched refs:ShiftedC (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 2377 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2378 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2382 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2383 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2391 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local 2392 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2402 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2403 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2407 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2408 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() [all …]
|