Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | //===- ConstantHandling.cpp - Implement ConstantHandling.h ----------------===// |
| 2 | // |
| 3 | // This file implements the various intrinsic operations, on constant values. |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
Chris Lattner | 65b529f | 2002-04-08 20:18:09 +0000 | [diff] [blame] | 7 | #include "llvm/ConstantHandling.h" |
Chris Lattner | 78a0d42 | 2002-05-07 20:44:59 +0000 | [diff] [blame] | 8 | #include "llvm/iPHINode.h" |
Chris Lattner | 8acf346 | 2003-05-27 19:16:07 +0000 | [diff] [blame] | 9 | #include "llvm/InstrTypes.h" |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 10 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 11 | #include <cmath> |
Chris Lattner | d42d492 | 2001-06-30 04:36:40 +0000 | [diff] [blame] | 12 | |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 13 | AnnotationID ConstRules::AID(AnnotationManager::getID("opt::ConstRules", |
| 14 | &ConstRules::find)); |
| 15 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 16 | // ConstantFoldInstruction - Attempt to constant fold the specified instruction. |
| 17 | // If successful, the constant result is returned, if not, null is returned. |
| 18 | // |
| 19 | Constant *ConstantFoldInstruction(Instruction *I) { |
Chris Lattner | 78a0d42 | 2002-05-07 20:44:59 +0000 | [diff] [blame] | 20 | if (PHINode *PN = dyn_cast<PHINode>(I)) { |
| 21 | if (PN->getNumIncomingValues() == 0) |
| 22 | return Constant::getNullValue(PN->getType()); |
| 23 | |
| 24 | Constant *Result = dyn_cast<Constant>(PN->getIncomingValue(0)); |
| 25 | if (Result == 0) return 0; |
| 26 | |
| 27 | // Handle PHI nodes specially here... |
| 28 | for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) |
| 29 | if (PN->getIncomingValue(i) != Result) |
| 30 | return 0; // Not all the same incoming constants... |
| 31 | |
| 32 | // If we reach here, all incoming values are the same constant. |
| 33 | return Result; |
| 34 | } |
| 35 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 36 | Constant *Op0 = 0; |
| 37 | Constant *Op1 = 0; |
| 38 | |
| 39 | if (I->getNumOperands() != 0) { // Get first operand if it's a constant... |
| 40 | Op0 = dyn_cast<Constant>(I->getOperand(0)); |
| 41 | if (Op0 == 0) return 0; // Not a constant?, can't fold |
| 42 | |
| 43 | if (I->getNumOperands() != 1) { // Get second operand if it's a constant... |
| 44 | Op1 = dyn_cast<Constant>(I->getOperand(1)); |
| 45 | if (Op1 == 0) return 0; // Not a constant?, can't fold |
| 46 | } |
| 47 | } |
| 48 | |
Chris Lattner | 8acf346 | 2003-05-27 19:16:07 +0000 | [diff] [blame] | 49 | if (isa<BinaryOperator>(I)) |
| 50 | return ConstantExpr::get(I->getOpcode(), Op0, Op1); |
| 51 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 52 | switch (I->getOpcode()) { |
| 53 | case Instruction::Cast: |
Chris Lattner | 8acf346 | 2003-05-27 19:16:07 +0000 | [diff] [blame] | 54 | return ConstantExpr::getCast(Op0, I->getType()); |
| 55 | case Instruction::Shl: |
| 56 | case Instruction::Shr: |
| 57 | return ConstantExpr::getShift(I->getOpcode(), Op0, Op1); |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 58 | case Instruction::GetElementPtr: { |
| 59 | std::vector<Constant*> IdxList; |
| 60 | IdxList.reserve(I->getNumOperands()-1); |
| 61 | if (Op1) IdxList.push_back(Op1); |
| 62 | for (unsigned i = 2, e = I->getNumOperands(); i != e; ++i) |
| 63 | if (Constant *C = dyn_cast<Constant>(I->getOperand(i))) |
| 64 | IdxList.push_back(C); |
| 65 | else |
| 66 | return 0; // Non-constant operand |
Chris Lattner | 8acf346 | 2003-05-27 19:16:07 +0000 | [diff] [blame] | 67 | return ConstantExpr::getGetElementPtr(Op0, IdxList); |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 68 | } |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 69 | default: |
| 70 | return 0; |
| 71 | } |
| 72 | } |
| 73 | |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 74 | static unsigned getSize(const Type *Ty) { |
| 75 | unsigned S = Ty->getPrimitiveSize(); |
| 76 | return S ? S : 8; // Treat pointers at 8 bytes |
| 77 | } |
| 78 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 79 | Constant *ConstantFoldCastInstruction(const Constant *V, const Type *DestTy) { |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 80 | if (V->getType() == DestTy) return (Constant*)V; |
| 81 | |
| 82 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) |
| 83 | if (CE->getOpcode() == Instruction::Cast) { |
Chris Lattner | 55ed656 | 2003-05-14 17:51:05 +0000 | [diff] [blame] | 84 | Constant *Op = const_cast<Constant*>(CE->getOperand(0)); |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 85 | // Try to not produce a cast of a cast, which is almost always redundant. |
| 86 | if (!Op->getType()->isFloatingPoint() && |
| 87 | !CE->getType()->isFloatingPoint() && |
| 88 | !DestTy->getType()->isFloatingPoint()) { |
| 89 | unsigned S1 = getSize(Op->getType()), S2 = getSize(CE->getType()); |
| 90 | unsigned S3 = getSize(DestTy); |
| 91 | if (Op->getType() == DestTy && S3 >= S2) |
| 92 | return Op; |
| 93 | if (S1 >= S2 && S2 >= S3) |
| 94 | return ConstantExpr::getCast(Op, DestTy); |
| 95 | if (S1 <= S2 && S2 >= S3 && S1 <= S3) |
| 96 | return ConstantExpr::getCast(Op, DestTy); |
| 97 | } |
Chris Lattner | 941b06b | 2003-08-21 19:45:55 +0000 | [diff] [blame^] | 98 | } else if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 99 | // If all of the indexes in the GEP are null values, there is no pointer |
| 100 | // adjustment going on. We might as well cast the source pointer. |
| 101 | bool isAllNull = true; |
| 102 | for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i) |
| 103 | if (!CE->getOperand(i)->isNullValue()) { |
| 104 | isAllNull = false; |
| 105 | break; |
| 106 | } |
| 107 | if (isAllNull) |
| 108 | return ConstantExpr::getCast(CE->getOperand(0), DestTy); |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Chris Lattner | e17c1c5a | 2003-04-25 02:52:06 +0000 | [diff] [blame] | 111 | return ConstRules::get(*V, *V)->castTo(V, DestTy); |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 114 | Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1, |
| 115 | const Constant *V2) { |
| 116 | switch (Opcode) { |
| 117 | case Instruction::Add: return *V1 + *V2; |
| 118 | case Instruction::Sub: return *V1 - *V2; |
| 119 | case Instruction::Mul: return *V1 * *V2; |
| 120 | case Instruction::Div: return *V1 / *V2; |
| 121 | case Instruction::Rem: return *V1 % *V2; |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 122 | case Instruction::And: return *V1 & *V2; |
| 123 | case Instruction::Or: return *V1 | *V2; |
| 124 | case Instruction::Xor: return *V1 ^ *V2; |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 125 | |
| 126 | case Instruction::SetEQ: return *V1 == *V2; |
| 127 | case Instruction::SetNE: return *V1 != *V2; |
| 128 | case Instruction::SetLE: return *V1 <= *V2; |
| 129 | case Instruction::SetGE: return *V1 >= *V2; |
| 130 | case Instruction::SetLT: return *V1 < *V2; |
| 131 | case Instruction::SetGT: return *V1 > *V2; |
| 132 | } |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | Constant *ConstantFoldShiftInstruction(unsigned Opcode, const Constant *V1, |
| 137 | const Constant *V2) { |
| 138 | switch (Opcode) { |
| 139 | case Instruction::Shl: return *V1 << *V2; |
| 140 | case Instruction::Shr: return *V1 >> *V2; |
| 141 | default: return 0; |
| 142 | } |
| 143 | } |
| 144 | |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 145 | Constant *ConstantFoldGetElementPtr(const Constant *C, |
| 146 | const std::vector<Constant*> &IdxList) { |
| 147 | if (IdxList.size() == 0 || |
| 148 | (IdxList.size() == 1 && IdxList[0]->isNullValue())) |
| 149 | return const_cast<Constant*>(C); |
| 150 | |
Chris Lattner | 941b06b | 2003-08-21 19:45:55 +0000 | [diff] [blame^] | 151 | // TODO If C is null and all idx's are null, return null of the right type. |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 152 | |
Chris Lattner | c2ceed1 | 2003-05-13 21:50:52 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 154 | if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
Chris Lattner | ddab239 | 2003-08-20 16:11:27 +0000 | [diff] [blame] | 155 | // Combine Indices - If the source pointer to this getelementptr instruction |
| 156 | // is a getelementptr instruction, combine the indices of the two |
| 157 | // getelementptr instructions into a single instruction. |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 158 | // |
Chris Lattner | ddab239 | 2003-08-20 16:11:27 +0000 | [diff] [blame] | 159 | if (CE->getOpcode() == Instruction::GetElementPtr) { |
| 160 | if (CE->getOperand(CE->getNumOperands()-1)->getType() == Type::LongTy) { |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 161 | std::vector<Constant*> NewIndices; |
| 162 | NewIndices.reserve(IdxList.size() + CE->getNumOperands()); |
Chris Lattner | ddab239 | 2003-08-20 16:11:27 +0000 | [diff] [blame] | 163 | for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i) |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 164 | NewIndices.push_back(cast<Constant>(CE->getOperand(i))); |
Chris Lattner | ddab239 | 2003-08-20 16:11:27 +0000 | [diff] [blame] | 165 | |
| 166 | // Add the last index of the source with the first index of the new GEP. |
| 167 | Constant *Combined = |
| 168 | ConstantExpr::get(Instruction::Add, IdxList[0], |
| 169 | CE->getOperand(CE->getNumOperands()-1)); |
| 170 | |
| 171 | NewIndices.push_back(Combined); |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 172 | NewIndices.insert(NewIndices.end(), IdxList.begin()+1, IdxList.end()); |
| 173 | return ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices); |
| 174 | } |
Chris Lattner | ddab239 | 2003-08-20 16:11:27 +0000 | [diff] [blame] | 175 | } |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 176 | |
| 177 | // Implement folding of: |
| 178 | // int* getelementptr ([2 x int]* cast ([3 x int]* %X to [2 x int]*), |
| 179 | // long 0, long 0) |
| 180 | // To: int* getelementptr ([3 x int]* %X, long 0, long 0) |
| 181 | // |
Chris Lattner | 69f6af1 | 2003-05-14 02:47:13 +0000 | [diff] [blame] | 182 | if (CE->getOpcode() == Instruction::Cast && IdxList.size() > 1 && |
| 183 | IdxList[0]->isNullValue()) |
Chris Lattner | c2ceed1 | 2003-05-13 21:50:52 +0000 | [diff] [blame] | 184 | if (const PointerType *SPT = |
| 185 | dyn_cast<PointerType>(CE->getOperand(0)->getType())) |
| 186 | if (const ArrayType *SAT = dyn_cast<ArrayType>(SPT->getElementType())) |
| 187 | if (const ArrayType *CAT = |
| 188 | dyn_cast<ArrayType>(cast<PointerType>(C->getType())->getElementType())) |
| 189 | if (CAT->getElementType() == SAT->getElementType()) |
| 190 | return ConstantExpr::getGetElementPtr( |
Chris Lattner | 55ed656 | 2003-05-14 17:51:05 +0000 | [diff] [blame] | 191 | (Constant*)CE->getOperand(0), IdxList); |
Chris Lattner | 4ede64e | 2003-06-26 05:22:45 +0000 | [diff] [blame] | 192 | } |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 193 | return 0; |
| 194 | } |
| 195 | |
Chris Lattner | 9f30773 | 2002-05-06 17:54:27 +0000 | [diff] [blame] | 196 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 197 | //===----------------------------------------------------------------------===// |
| 198 | // TemplateRules Class |
| 199 | //===----------------------------------------------------------------------===// |
| 200 | // |
| 201 | // TemplateRules - Implement a subclass of ConstRules that provides all |
| 202 | // operations as noops. All other rules classes inherit from this class so |
| 203 | // that if functionality is needed in the future, it can simply be added here |
| 204 | // and to ConstRules without changing anything else... |
| 205 | // |
| 206 | // This class also provides subclasses with typesafe implementations of methods |
| 207 | // so that don't have to do type casting. |
| 208 | // |
| 209 | template<class ArgType, class SubClassName> |
| 210 | class TemplateRules : public ConstRules { |
| 211 | |
| 212 | //===--------------------------------------------------------------------===// |
| 213 | // Redirecting functions that cast to the appropriate types |
| 214 | //===--------------------------------------------------------------------===// |
| 215 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 216 | virtual Constant *add(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 217 | return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2); |
| 218 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 219 | virtual Constant *sub(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 220 | return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2); |
| 221 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 222 | virtual Constant *mul(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 223 | return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2); |
| 224 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 225 | virtual Constant *div(const Constant *V1, const Constant *V2) const { |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 226 | return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2); |
| 227 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 228 | virtual Constant *rem(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 229 | return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2); |
| 230 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 231 | virtual Constant *op_and(const Constant *V1, const Constant *V2) const { |
| 232 | return SubClassName::And((const ArgType *)V1, (const ArgType *)V2); |
| 233 | } |
| 234 | virtual Constant *op_or(const Constant *V1, const Constant *V2) const { |
| 235 | return SubClassName::Or((const ArgType *)V1, (const ArgType *)V2); |
| 236 | } |
| 237 | virtual Constant *op_xor(const Constant *V1, const Constant *V2) const { |
| 238 | return SubClassName::Xor((const ArgType *)V1, (const ArgType *)V2); |
| 239 | } |
| 240 | virtual Constant *shl(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame] | 241 | return SubClassName::Shl((const ArgType *)V1, (const ArgType *)V2); |
| 242 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 243 | virtual Constant *shr(const Constant *V1, const Constant *V2) const { |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame] | 244 | return SubClassName::Shr((const ArgType *)V1, (const ArgType *)V2); |
| 245 | } |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 246 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 247 | virtual ConstantBool *lessthan(const Constant *V1, |
| 248 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 249 | return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2); |
| 250 | } |
| 251 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 252 | // Casting operators. ick |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 253 | virtual ConstantBool *castToBool(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 254 | return SubClassName::CastToBool((const ArgType*)V); |
| 255 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 256 | virtual ConstantSInt *castToSByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 257 | return SubClassName::CastToSByte((const ArgType*)V); |
| 258 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 259 | virtual ConstantUInt *castToUByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 260 | return SubClassName::CastToUByte((const ArgType*)V); |
| 261 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 262 | virtual ConstantSInt *castToShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 263 | return SubClassName::CastToShort((const ArgType*)V); |
| 264 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 265 | virtual ConstantUInt *castToUShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 266 | return SubClassName::CastToUShort((const ArgType*)V); |
| 267 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 268 | virtual ConstantSInt *castToInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 269 | return SubClassName::CastToInt((const ArgType*)V); |
| 270 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 271 | virtual ConstantUInt *castToUInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 272 | return SubClassName::CastToUInt((const ArgType*)V); |
| 273 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 274 | virtual ConstantSInt *castToLong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 275 | return SubClassName::CastToLong((const ArgType*)V); |
| 276 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 277 | virtual ConstantUInt *castToULong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 278 | return SubClassName::CastToULong((const ArgType*)V); |
| 279 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 280 | virtual ConstantFP *castToFloat(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 281 | return SubClassName::CastToFloat((const ArgType*)V); |
| 282 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 283 | virtual ConstantFP *castToDouble(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 284 | return SubClassName::CastToDouble((const ArgType*)V); |
| 285 | } |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 286 | virtual Constant *castToPointer(const Constant *V, |
| 287 | const PointerType *Ty) const { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 288 | return SubClassName::CastToPointer((const ArgType*)V, Ty); |
| 289 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 290 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 291 | //===--------------------------------------------------------------------===// |
| 292 | // Default "noop" implementations |
| 293 | //===--------------------------------------------------------------------===// |
| 294 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 295 | static Constant *Add(const ArgType *V1, const ArgType *V2) { return 0; } |
| 296 | static Constant *Sub(const ArgType *V1, const ArgType *V2) { return 0; } |
| 297 | static Constant *Mul(const ArgType *V1, const ArgType *V2) { return 0; } |
| 298 | static Constant *Div(const ArgType *V1, const ArgType *V2) { return 0; } |
| 299 | static Constant *Rem(const ArgType *V1, const ArgType *V2) { return 0; } |
| 300 | static Constant *And(const ArgType *V1, const ArgType *V2) { return 0; } |
| 301 | static Constant *Or (const ArgType *V1, const ArgType *V2) { return 0; } |
| 302 | static Constant *Xor(const ArgType *V1, const ArgType *V2) { return 0; } |
| 303 | static Constant *Shl(const ArgType *V1, const ArgType *V2) { return 0; } |
| 304 | static Constant *Shr(const ArgType *V1, const ArgType *V2) { return 0; } |
| 305 | static ConstantBool *LessThan(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 306 | return 0; |
| 307 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 308 | |
| 309 | // Casting operators. ick |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 310 | static ConstantBool *CastToBool (const Constant *V) { return 0; } |
| 311 | static ConstantSInt *CastToSByte (const Constant *V) { return 0; } |
| 312 | static ConstantUInt *CastToUByte (const Constant *V) { return 0; } |
| 313 | static ConstantSInt *CastToShort (const Constant *V) { return 0; } |
| 314 | static ConstantUInt *CastToUShort(const Constant *V) { return 0; } |
| 315 | static ConstantSInt *CastToInt (const Constant *V) { return 0; } |
| 316 | static ConstantUInt *CastToUInt (const Constant *V) { return 0; } |
| 317 | static ConstantSInt *CastToLong (const Constant *V) { return 0; } |
| 318 | static ConstantUInt *CastToULong (const Constant *V) { return 0; } |
| 319 | static ConstantFP *CastToFloat (const Constant *V) { return 0; } |
| 320 | static ConstantFP *CastToDouble(const Constant *V) { return 0; } |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 321 | static Constant *CastToPointer(const Constant *, |
| 322 | const PointerType *) {return 0;} |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 323 | }; |
| 324 | |
| 325 | |
| 326 | |
| 327 | //===----------------------------------------------------------------------===// |
| 328 | // EmptyRules Class |
| 329 | //===----------------------------------------------------------------------===// |
| 330 | // |
| 331 | // EmptyRules provides a concrete base class of ConstRules that does nothing |
| 332 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 333 | struct EmptyRules : public TemplateRules<Constant, EmptyRules> { |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 334 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 335 | |
| 336 | |
| 337 | |
| 338 | //===----------------------------------------------------------------------===// |
| 339 | // BoolRules Class |
| 340 | //===----------------------------------------------------------------------===// |
| 341 | // |
| 342 | // BoolRules provides a concrete base class of ConstRules for the 'bool' type. |
| 343 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 344 | struct BoolRules : public TemplateRules<ConstantBool, BoolRules> { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 345 | |
Chris Lattner | 07507a4 | 2002-09-03 20:09:49 +0000 | [diff] [blame] | 346 | static ConstantBool *LessThan(const ConstantBool *V1, const ConstantBool *V2){ |
| 347 | return ConstantBool::get(V1->getValue() < V2->getValue()); |
| 348 | } |
| 349 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 350 | static Constant *And(const ConstantBool *V1, const ConstantBool *V2) { |
| 351 | return ConstantBool::get(V1->getValue() & V2->getValue()); |
| 352 | } |
| 353 | |
| 354 | static Constant *Or(const ConstantBool *V1, const ConstantBool *V2) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 355 | return ConstantBool::get(V1->getValue() | V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 358 | static Constant *Xor(const ConstantBool *V1, const ConstantBool *V2) { |
| 359 | return ConstantBool::get(V1->getValue() ^ V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 360 | } |
Chris Lattner | cea4d8c | 2003-08-13 15:52:25 +0000 | [diff] [blame] | 361 | |
| 362 | // Casting operators. ick |
| 363 | #define DEF_CAST(TYPE, CLASS, CTYPE) \ |
| 364 | static CLASS *CastTo##TYPE (const ConstantBool *V) { \ |
| 365 | return CLASS::get(Type::TYPE##Ty, (CTYPE)(bool)V->getValue()); \ |
| 366 | } |
| 367 | |
| 368 | DEF_CAST(Bool , ConstantBool, bool) |
| 369 | DEF_CAST(SByte , ConstantSInt, signed char) |
| 370 | DEF_CAST(UByte , ConstantUInt, unsigned char) |
| 371 | DEF_CAST(Short , ConstantSInt, signed short) |
| 372 | DEF_CAST(UShort, ConstantUInt, unsigned short) |
| 373 | DEF_CAST(Int , ConstantSInt, signed int) |
| 374 | DEF_CAST(UInt , ConstantUInt, unsigned int) |
| 375 | DEF_CAST(Long , ConstantSInt, int64_t) |
| 376 | DEF_CAST(ULong , ConstantUInt, uint64_t) |
| 377 | DEF_CAST(Float , ConstantFP , float) |
| 378 | DEF_CAST(Double, ConstantFP , double) |
| 379 | #undef DEF_CAST |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 380 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 381 | |
| 382 | |
| 383 | //===----------------------------------------------------------------------===// |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 384 | // PointerRules Class |
| 385 | //===----------------------------------------------------------------------===// |
| 386 | // |
| 387 | // PointerRules provides a concrete base class of ConstRules for pointer types |
| 388 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 389 | struct PointerRules : public TemplateRules<ConstantPointer, PointerRules> { |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 390 | static ConstantBool *CastToBool (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 391 | if (V->isNullValue()) return ConstantBool::False; |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 392 | return 0; // Can't const prop other types of pointers |
| 393 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 394 | static ConstantSInt *CastToSByte (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 395 | if (V->isNullValue()) return ConstantSInt::get(Type::SByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 396 | return 0; // Can't const prop other types of pointers |
| 397 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 398 | static ConstantUInt *CastToUByte (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 399 | if (V->isNullValue()) return ConstantUInt::get(Type::UByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 400 | return 0; // Can't const prop other types of pointers |
| 401 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 402 | static ConstantSInt *CastToShort (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 403 | if (V->isNullValue()) return ConstantSInt::get(Type::ShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 404 | return 0; // Can't const prop other types of pointers |
| 405 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 406 | static ConstantUInt *CastToUShort(const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 407 | if (V->isNullValue()) return ConstantUInt::get(Type::UShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 408 | return 0; // Can't const prop other types of pointers |
| 409 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 410 | static ConstantSInt *CastToInt (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 411 | if (V->isNullValue()) return ConstantSInt::get(Type::IntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 412 | return 0; // Can't const prop other types of pointers |
| 413 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 414 | static ConstantUInt *CastToUInt (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 415 | if (V->isNullValue()) return ConstantUInt::get(Type::UIntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 416 | return 0; // Can't const prop other types of pointers |
| 417 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 418 | static ConstantSInt *CastToLong (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 419 | if (V->isNullValue()) return ConstantSInt::get(Type::LongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 420 | return 0; // Can't const prop other types of pointers |
| 421 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 422 | static ConstantUInt *CastToULong (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 423 | if (V->isNullValue()) return ConstantUInt::get(Type::ULongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 424 | return 0; // Can't const prop other types of pointers |
| 425 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 426 | static ConstantFP *CastToFloat (const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 427 | if (V->isNullValue()) return ConstantFP::get(Type::FloatTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 428 | return 0; // Can't const prop other types of pointers |
| 429 | } |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 430 | static ConstantFP *CastToDouble(const Constant *V) { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 431 | if (V->isNullValue()) return ConstantFP::get(Type::DoubleTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 432 | return 0; // Can't const prop other types of pointers |
| 433 | } |
| 434 | |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 435 | static Constant *CastToPointer(const ConstantPointer *V, |
| 436 | const PointerType *PTy) { |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 437 | if (V->getType() == PTy) |
| 438 | return const_cast<ConstantPointer*>(V); // Allow cast %PTy %ptr to %PTy |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 439 | if (V->isNullValue()) |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 440 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 441 | return 0; // Can't const prop other types of pointers |
| 442 | } |
| 443 | }; |
| 444 | |
| 445 | |
| 446 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 447 | // DirectRules Class |
| 448 | //===----------------------------------------------------------------------===// |
| 449 | // |
| 450 | // DirectRules provides a concrete base classes of ConstRules for a variety of |
| 451 | // different types. This allows the C++ compiler to automatically generate our |
| 452 | // constant handling operations in a typesafe and accurate manner. |
| 453 | // |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 454 | template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass> |
| 455 | struct DirectRules : public TemplateRules<ConstantClass, SuperClass> { |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 456 | static Constant *Add(const ConstantClass *V1, const ConstantClass *V2) { |
| 457 | BuiltinType R = (BuiltinType)V1->getValue() + (BuiltinType)V2->getValue(); |
| 458 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 461 | static Constant *Sub(const ConstantClass *V1, const ConstantClass *V2) { |
| 462 | BuiltinType R = (BuiltinType)V1->getValue() - (BuiltinType)V2->getValue(); |
| 463 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 466 | static Constant *Mul(const ConstantClass *V1, const ConstantClass *V2) { |
| 467 | BuiltinType R = (BuiltinType)V1->getValue() * (BuiltinType)V2->getValue(); |
| 468 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 471 | static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 472 | if (V2->isNullValue()) return 0; |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 473 | BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue(); |
| 474 | return ConstantClass::get(*Ty, R); |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 475 | } |
| 476 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 477 | static ConstantBool *LessThan(const ConstantClass *V1, |
| 478 | const ConstantClass *V2) { |
| 479 | bool R = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue(); |
| 480 | return ConstantBool::get(R); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 481 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 482 | |
Chris Lattner | 1f0049c | 2003-04-17 19:24:18 +0000 | [diff] [blame] | 483 | static Constant *CastToPointer(const ConstantClass *V, |
| 484 | const PointerType *PTy) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 485 | if (V->isNullValue()) // Is it a FP or Integral null value? |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 486 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 487 | return 0; // Can't const prop other types of pointers |
| 488 | } |
| 489 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 490 | // Casting operators. ick |
| 491 | #define DEF_CAST(TYPE, CLASS, CTYPE) \ |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 492 | static CLASS *CastTo##TYPE (const ConstantClass *V) { \ |
Chris Lattner | bbb2296 | 2001-09-07 16:40:34 +0000 | [diff] [blame] | 493 | return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \ |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 496 | DEF_CAST(Bool , ConstantBool, bool) |
| 497 | DEF_CAST(SByte , ConstantSInt, signed char) |
| 498 | DEF_CAST(UByte , ConstantUInt, unsigned char) |
| 499 | DEF_CAST(Short , ConstantSInt, signed short) |
| 500 | DEF_CAST(UShort, ConstantUInt, unsigned short) |
| 501 | DEF_CAST(Int , ConstantSInt, signed int) |
| 502 | DEF_CAST(UInt , ConstantUInt, unsigned int) |
| 503 | DEF_CAST(Long , ConstantSInt, int64_t) |
| 504 | DEF_CAST(ULong , ConstantUInt, uint64_t) |
| 505 | DEF_CAST(Float , ConstantFP , float) |
| 506 | DEF_CAST(Double, ConstantFP , double) |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 507 | #undef DEF_CAST |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 508 | }; |
| 509 | |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 510 | |
| 511 | //===----------------------------------------------------------------------===// |
| 512 | // DirectIntRules Class |
| 513 | //===----------------------------------------------------------------------===// |
| 514 | // |
| 515 | // DirectIntRules provides implementations of functions that are valid on |
| 516 | // integer types, but not all types in general. |
| 517 | // |
| 518 | template <class ConstantClass, class BuiltinType, Type **Ty> |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 519 | struct DirectIntRules |
| 520 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 521 | DirectIntRules<ConstantClass, BuiltinType, Ty> > { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 522 | |
Chris Lattner | 26891626 | 2003-05-12 15:26:25 +0000 | [diff] [blame] | 523 | static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) { |
| 524 | if (V2->isNullValue()) return 0; |
| 525 | if (V2->isAllOnesValue() && // MIN_INT / -1 |
| 526 | (BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue()) |
| 527 | return 0; |
| 528 | BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue(); |
| 529 | return ConstantClass::get(*Ty, R); |
| 530 | } |
| 531 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 532 | static Constant *Rem(const ConstantClass *V1, |
| 533 | const ConstantClass *V2) { |
Chris Lattner | 26891626 | 2003-05-12 15:26:25 +0000 | [diff] [blame] | 534 | if (V2->isNullValue()) return 0; // X / 0 |
| 535 | if (V2->isAllOnesValue() && // MIN_INT / -1 |
| 536 | (BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue()) |
| 537 | return 0; |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 538 | BuiltinType R = (BuiltinType)V1->getValue() % (BuiltinType)V2->getValue(); |
| 539 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 540 | } |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame] | 541 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 542 | static Constant *And(const ConstantClass *V1, const ConstantClass *V2) { |
| 543 | BuiltinType R = (BuiltinType)V1->getValue() & (BuiltinType)V2->getValue(); |
| 544 | return ConstantClass::get(*Ty, R); |
| 545 | } |
| 546 | static Constant *Or(const ConstantClass *V1, const ConstantClass *V2) { |
| 547 | BuiltinType R = (BuiltinType)V1->getValue() | (BuiltinType)V2->getValue(); |
| 548 | return ConstantClass::get(*Ty, R); |
| 549 | } |
| 550 | static Constant *Xor(const ConstantClass *V1, const ConstantClass *V2) { |
| 551 | BuiltinType R = (BuiltinType)V1->getValue() ^ (BuiltinType)V2->getValue(); |
| 552 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 555 | static Constant *Shl(const ConstantClass *V1, const ConstantClass *V2) { |
| 556 | BuiltinType R = (BuiltinType)V1->getValue() << (BuiltinType)V2->getValue(); |
| 557 | return ConstantClass::get(*Ty, R); |
| 558 | } |
| 559 | |
| 560 | static Constant *Shr(const ConstantClass *V1, const ConstantClass *V2) { |
| 561 | BuiltinType R = (BuiltinType)V1->getValue() >> (BuiltinType)V2->getValue(); |
| 562 | return ConstantClass::get(*Ty, R); |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame] | 563 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 564 | }; |
| 565 | |
| 566 | |
| 567 | //===----------------------------------------------------------------------===// |
| 568 | // DirectFPRules Class |
| 569 | //===----------------------------------------------------------------------===// |
| 570 | // |
| 571 | // DirectFPRules provides implementations of functions that are valid on |
| 572 | // floating point types, but not all types in general. |
| 573 | // |
| 574 | template <class ConstantClass, class BuiltinType, Type **Ty> |
| 575 | struct DirectFPRules |
| 576 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 577 | DirectFPRules<ConstantClass, BuiltinType, Ty> > { |
Chris Lattner | e87f65e | 2002-07-30 16:24:28 +0000 | [diff] [blame] | 578 | static Constant *Rem(const ConstantClass *V1, const ConstantClass *V2) { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 579 | if (V2->isNullValue()) return 0; |
| 580 | BuiltinType Result = std::fmod((BuiltinType)V1->getValue(), |
| 581 | (BuiltinType)V2->getValue()); |
| 582 | return ConstantClass::get(*Ty, Result); |
| 583 | } |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 584 | }; |
| 585 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 586 | //===----------------------------------------------------------------------===// |
| 587 | // DirectRules Subclasses |
| 588 | //===----------------------------------------------------------------------===// |
| 589 | // |
| 590 | // Given the DirectRules class we can now implement lots of types with little |
| 591 | // code. Thank goodness C++ compilers are great at stomping out layers of |
| 592 | // templates... can you imagine having to do this all by hand? (/me is lazy :) |
| 593 | // |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 594 | |
| 595 | // ConstRules::find - Return the constant rules that take care of the specified |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 596 | // type. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 597 | // |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 598 | Annotation *ConstRules::find(AnnotationID AID, const Annotable *TyA, void *) { |
| 599 | assert(AID == ConstRules::AID && "Bad annotation for factory!"); |
Chris Lattner | 8f19112 | 2001-10-01 18:26:53 +0000 | [diff] [blame] | 600 | const Type *Ty = cast<Type>((const Value*)TyA); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 601 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 602 | switch (Ty->getPrimitiveID()) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 603 | case Type::BoolTyID: return new BoolRules(); |
| 604 | case Type::PointerTyID: return new PointerRules(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 605 | case Type::SByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 606 | return new DirectIntRules<ConstantSInt, signed char , &Type::SByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 607 | case Type::UByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 608 | return new DirectIntRules<ConstantUInt, unsigned char , &Type::UByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 609 | case Type::ShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 610 | return new DirectIntRules<ConstantSInt, signed short, &Type::ShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 611 | case Type::UShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 612 | return new DirectIntRules<ConstantUInt, unsigned short, &Type::UShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 613 | case Type::IntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 614 | return new DirectIntRules<ConstantSInt, signed int , &Type::IntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 615 | case Type::UIntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 616 | return new DirectIntRules<ConstantUInt, unsigned int , &Type::UIntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 617 | case Type::LongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 618 | return new DirectIntRules<ConstantSInt, int64_t , &Type::LongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 619 | case Type::ULongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 620 | return new DirectIntRules<ConstantUInt, uint64_t , &Type::ULongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 621 | case Type::FloatTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 622 | return new DirectFPRules<ConstantFP , float , &Type::FloatTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 623 | case Type::DoubleTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 624 | return new DirectFPRules<ConstantFP , double , &Type::DoubleTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 625 | default: |
| 626 | return new EmptyRules(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 627 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 628 | } |
Chris Lattner | e17c1c5a | 2003-04-25 02:52:06 +0000 | [diff] [blame] | 629 | |
| 630 | ConstRules *ConstRules::getConstantExprRules() { |
| 631 | static EmptyRules CERules; |
| 632 | return &CERules; |
| 633 | } |