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