Lines Matching refs:LHS

34   Constant *CreateAdd(Constant *LHS, Constant *RHS,
36 return ConstantExpr::getAdd(LHS, RHS, HasNUW, HasNSW);
38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
39 return ConstantExpr::getFAdd(LHS, RHS);
41 Constant *CreateSub(Constant *LHS, Constant *RHS,
43 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
45 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
46 return ConstantExpr::getFSub(LHS, RHS);
48 Constant *CreateMul(Constant *LHS, Constant *RHS,
50 return ConstantExpr::getMul(LHS, RHS, HasNUW, HasNSW);
52 Constant *CreateFMul(Constant *LHS, Constant *RHS) const {
53 return ConstantExpr::getFMul(LHS, RHS);
55 Constant *CreateUDiv(Constant *LHS, Constant *RHS,
57 return ConstantExpr::getUDiv(LHS, RHS, isExact);
59 Constant *CreateSDiv(Constant *LHS, Constant *RHS,
61 return ConstantExpr::getSDiv(LHS, RHS, isExact);
63 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
64 return ConstantExpr::getFDiv(LHS, RHS);
66 Constant *CreateURem(Constant *LHS, Constant *RHS) const {
67 return ConstantExpr::getURem(LHS, RHS);
69 Constant *CreateSRem(Constant *LHS, Constant *RHS) const {
70 return ConstantExpr::getSRem(LHS, RHS);
72 Constant *CreateFRem(Constant *LHS, Constant *RHS) const {
73 return ConstantExpr::getFRem(LHS, RHS);
75 Constant *CreateShl(Constant *LHS, Constant *RHS,
77 return ConstantExpr::getShl(LHS, RHS, HasNUW, HasNSW);
79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
81 return ConstantExpr::getLShr(LHS, RHS, isExact);
83 Constant *CreateAShr(Constant *LHS, Constant *RHS,
85 return ConstantExpr::getAShr(LHS, RHS, isExact);
87 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
88 return ConstantExpr::getAnd(LHS, RHS);
90 Constant *CreateOr(Constant *LHS, Constant *RHS) const {
91 return ConstantExpr::getOr(LHS, RHS);
93 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
94 return ConstantExpr::getXor(LHS, RHS);
98 Constant *LHS, Constant *RHS) const {
99 return ConstantExpr::get(Opc, LHS, RHS);
194 Constant *CreateICmp(CmpInst::Predicate P, Constant *LHS,
196 return ConstantExpr::getCompare(P, LHS, RHS);
198 Constant *CreateFCmp(CmpInst::Predicate P, Constant *LHS,
200 return ConstantExpr::getCompare(P, LHS, RHS);