Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1893 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local
1894 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
1898 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local
1899 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
1907 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local
1908 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
1923 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local
1924 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
1928 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local
1929 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant()
[all …]