Searched refs:getLShr (Results 1 – 11 of 11) sorted by relevance
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 66 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One)); in TEST() 233 CHECK(ConstantExpr::getLShr(P0, P0, false), "lshr i32 " P0STR ", " P0STR); in TEST() 234 CHECK(ConstantExpr::getLShr(P0, P0, true), "lshr exact i32 " P0STR ", " P0STR); in TEST()
|
/external/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 81 return ConstantExpr::getLShr(LHS, RHS, isExact);
|
D | Constants.h | 940 static Constant *getLShr(Constant *C1, Constant *C2, bool isExact = false); 998 return getLShr(C1, C2, true);
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 94 return Fold(ConstantExpr::getLShr(LHS, RHS, isExact));
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1404 NewCst = ConstantExpr::getLShr(RHS, ShAmt); in visitICmpInstWithInstAndIntCst() 1422 NewAndCst = ConstantExpr::getLShr(AndCst, ShAmt); in visitICmpInstWithInstAndIntCst() 1672 ConstantExpr::getShl(ConstantExpr::getLShr(RHS, ShAmt), in visitICmpInstWithInstAndIntCst() 1684 ConstantExpr::getLShr(RHS, ShAmt)); in visitICmpInstWithInstAndIntCst() 1690 ConstantExpr::getLShr(RHS, ShAmt)); in visitICmpInstWithInstAndIntCst() 1701 ConstantExpr::getLShr(RHS, ShAmt)); in visitICmpInstWithInstAndIntCst()
|
D | InstCombineCasts.cpp | 1680 Constant *Piece = ConstantExpr::getLShr(C, ConstantInt::get(C->getType(), in collectInsertionElements()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 334 Res = ConstantExpr::getLShr(Res, in ExtractConstantBytes() 1096 return ConstantExpr::getLShr(C1, C2); in ConstantFoldBinaryInstruction()
|
D | Constants.cpp | 2271 Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) { in getLShr() function in ConstantExpr
|
D | Core.cpp | 1159 return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant), in LLVMConstLShr()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 212 Constant *Elt = ConstantExpr::getLShr(Src, in FoldBitCast()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 1085 See the method [llvm::ConstantExpr::getLShr]. *)
|