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