Home | History | Annotate | Download | only in IR

Lines Matching defs:CreateAShr

919   Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "",
923 return Insert(Folder.CreateAShr(LC, RC, isExact), Name);
925 return Insert(BinaryOperator::CreateAShr(LHS, RHS), Name);
928 Value *CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
930 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
932 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
934 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);