reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Constants.h
  952   static Constant *getAShr(Constant *C1, Constant *C2, bool isExact = false);

References

include/llvm/Analysis/TargetFolder.h
   95     return Fold(ConstantExpr::getAShr(LHS, RHS, isExact));
include/llvm/IR/ConstantFolder.h
  100     return ConstantExpr::getAShr(LHS, RHS, isExact);
include/llvm/IR/Constants.h
 1017     return getAShr(C1, C2, true);
lib/IR/Core.cpp
 1636   return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
unittests/IR/ConstantsTest.cpp
   70   EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
  259   CHECK(ConstantExpr::getAShr(P0, P0, false), "ashr i32 " P0STR ", " P0STR);
  260   CHECK(ConstantExpr::getAShr(P0, P0, true), "ashr exact i32 " P0STR ", " P0STR);