Home | History | Annotate | Download | only in IR

Lines Matching refs:CreateShl

689   Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
693 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
697 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
699 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
702 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
704 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,