Lines Matching refs:RHS

35   Constant *CreateAdd(Constant *LHS, Constant *RHS,
37 return ConstantExpr::getAdd(LHS, RHS, HasNUW, HasNSW);
40 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const {
41 return ConstantExpr::getFAdd(LHS, RHS);
44 Constant *CreateSub(Constant *LHS, Constant *RHS,
46 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
49 Constant *CreateFSub(Constant *LHS, Constant *RHS) const {
50 return ConstantExpr::getFSub(LHS, RHS);
53 Constant *CreateMul(Constant *LHS, Constant *RHS,
55 return ConstantExpr::getMul(LHS, RHS, HasNUW, HasNSW);
58 Constant *CreateFMul(Constant *LHS, Constant *RHS) const {
59 return ConstantExpr::getFMul(LHS, RHS);
62 Constant *CreateUDiv(Constant *LHS, Constant *RHS,
64 return ConstantExpr::getUDiv(LHS, RHS, isExact);
67 Constant *CreateSDiv(Constant *LHS, Constant *RHS,
69 return ConstantExpr::getSDiv(LHS, RHS, isExact);
72 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const {
73 return ConstantExpr::getFDiv(LHS, RHS);
76 Constant *CreateURem(Constant *LHS, Constant *RHS) const {
77 return ConstantExpr::getURem(LHS, RHS);
80 Constant *CreateSRem(Constant *LHS, Constant *RHS) const {
81 return ConstantExpr::getSRem(LHS, RHS);
84 Constant *CreateFRem(Constant *LHS, Constant *RHS) const {
85 return ConstantExpr::getFRem(LHS, RHS);
88 Constant *CreateShl(Constant *LHS, Constant *RHS,
90 return ConstantExpr::getShl(LHS, RHS, HasNUW, HasNSW);
93 Constant *CreateLShr(Constant *LHS, Constant *RHS,
95 return ConstantExpr::getLShr(LHS, RHS, isExact);
98 Constant *CreateAShr(Constant *LHS, Constant *RHS,
100 return ConstantExpr::getAShr(LHS, RHS, isExact);
103 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
104 return ConstantExpr::getAnd(LHS, RHS);
107 Constant *CreateOr(Constant *LHS, Constant *RHS) const {
108 return ConstantExpr::getOr(LHS, RHS);
111 Constant *CreateXor(Constant *LHS, Constant *RHS) const {
112 return ConstantExpr::getXor(LHS, RHS);
116 Constant *LHS, Constant *RHS) const {
117 return ConstantExpr::get(Opc, LHS, RHS);
236 Constant *RHS) const {
237 return ConstantExpr::getCompare(P, LHS, RHS);
241 Constant *RHS) const {
242 return ConstantExpr::getCompare(P, LHS, RHS);