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 | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 8 | #include <cmath> |
Chris Lattner | d42d492 | 2001-06-30 04:36:40 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 10 | AnnotationID ConstRules::AID(AnnotationManager::getID("opt::ConstRules", |
| 11 | &ConstRules::find)); |
| 12 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | // TemplateRules Class |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | // |
| 17 | // TemplateRules - Implement a subclass of ConstRules that provides all |
| 18 | // operations as noops. All other rules classes inherit from this class so |
| 19 | // that if functionality is needed in the future, it can simply be added here |
| 20 | // and to ConstRules without changing anything else... |
| 21 | // |
| 22 | // This class also provides subclasses with typesafe implementations of methods |
| 23 | // so that don't have to do type casting. |
| 24 | // |
| 25 | template<class ArgType, class SubClassName> |
| 26 | class TemplateRules : public ConstRules { |
| 27 | |
| 28 | //===--------------------------------------------------------------------===// |
| 29 | // Redirecting functions that cast to the appropriate types |
| 30 | //===--------------------------------------------------------------------===// |
| 31 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 32 | virtual Constant *op_not(const Constant *V) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 33 | return SubClassName::Not((const ArgType *)V); |
| 34 | } |
| 35 | |
| 36 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 37 | virtual Constant *add(const Constant *V1, |
| 38 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 39 | return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2); |
| 40 | } |
| 41 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 42 | virtual Constant *sub(const Constant *V1, |
| 43 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 44 | return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2); |
| 45 | } |
| 46 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 47 | virtual Constant *mul(const Constant *V1, |
| 48 | const Constant *V2) const { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 49 | return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2); |
| 50 | } |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 51 | virtual Constant *div(const Constant *V1, |
| 52 | const Constant *V2) const { |
| 53 | return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2); |
| 54 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 55 | virtual Constant *rem(const Constant *V1, |
| 56 | const Constant *V2) const { |
| 57 | return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2); |
| 58 | } |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 60 | virtual ConstantBool *lessthan(const Constant *V1, |
| 61 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 62 | return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2); |
| 63 | } |
| 64 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 65 | // Casting operators. ick |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 66 | virtual ConstantBool *castToBool(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 67 | return SubClassName::CastToBool((const ArgType*)V); |
| 68 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 69 | virtual ConstantSInt *castToSByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 70 | return SubClassName::CastToSByte((const ArgType*)V); |
| 71 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 72 | virtual ConstantUInt *castToUByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 73 | return SubClassName::CastToUByte((const ArgType*)V); |
| 74 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 75 | virtual ConstantSInt *castToShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 76 | return SubClassName::CastToShort((const ArgType*)V); |
| 77 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 78 | virtual ConstantUInt *castToUShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 79 | return SubClassName::CastToUShort((const ArgType*)V); |
| 80 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 81 | virtual ConstantSInt *castToInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 82 | return SubClassName::CastToInt((const ArgType*)V); |
| 83 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 84 | virtual ConstantUInt *castToUInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 85 | return SubClassName::CastToUInt((const ArgType*)V); |
| 86 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 87 | virtual ConstantSInt *castToLong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 88 | return SubClassName::CastToLong((const ArgType*)V); |
| 89 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 90 | virtual ConstantUInt *castToULong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 91 | return SubClassName::CastToULong((const ArgType*)V); |
| 92 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 93 | virtual ConstantFP *castToFloat(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 94 | return SubClassName::CastToFloat((const ArgType*)V); |
| 95 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 96 | virtual ConstantFP *castToDouble(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 97 | return SubClassName::CastToDouble((const ArgType*)V); |
| 98 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 99 | virtual ConstantPointer *castToPointer(const Constant *V, |
| 100 | const PointerType *Ty) const { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 101 | return SubClassName::CastToPointer((const ArgType*)V, Ty); |
| 102 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 103 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 104 | //===--------------------------------------------------------------------===// |
| 105 | // Default "noop" implementations |
| 106 | //===--------------------------------------------------------------------===// |
| 107 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 108 | inline static Constant *Not(const ArgType *V) { return 0; } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 110 | inline static Constant *Add(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 111 | return 0; |
| 112 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 113 | inline static Constant *Sub(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 114 | return 0; |
| 115 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 116 | inline static Constant *Mul(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 117 | return 0; |
| 118 | } |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 119 | inline static Constant *Div(const ArgType *V1, const ArgType *V2) { |
| 120 | return 0; |
| 121 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 122 | inline static Constant *Rem(const ArgType *V1, const ArgType *V2) { |
| 123 | return 0; |
| 124 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 125 | inline static ConstantBool *LessThan(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 126 | return 0; |
| 127 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 128 | |
| 129 | // Casting operators. ick |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 130 | inline static ConstantBool *CastToBool (const Constant *V) { return 0; } |
| 131 | inline static ConstantSInt *CastToSByte (const Constant *V) { return 0; } |
| 132 | inline static ConstantUInt *CastToUByte (const Constant *V) { return 0; } |
| 133 | inline static ConstantSInt *CastToShort (const Constant *V) { return 0; } |
| 134 | inline static ConstantUInt *CastToUShort(const Constant *V) { return 0; } |
| 135 | inline static ConstantSInt *CastToInt (const Constant *V) { return 0; } |
| 136 | inline static ConstantUInt *CastToUInt (const Constant *V) { return 0; } |
| 137 | inline static ConstantSInt *CastToLong (const Constant *V) { return 0; } |
| 138 | inline static ConstantUInt *CastToULong (const Constant *V) { return 0; } |
| 139 | inline static ConstantFP *CastToFloat (const Constant *V) { return 0; } |
| 140 | inline static ConstantFP *CastToDouble(const Constant *V) { return 0; } |
| 141 | inline static ConstantPointer *CastToPointer(const Constant *, |
| 142 | const PointerType *) {return 0;} |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 143 | }; |
| 144 | |
| 145 | |
| 146 | |
| 147 | //===----------------------------------------------------------------------===// |
| 148 | // EmptyRules Class |
| 149 | //===----------------------------------------------------------------------===// |
| 150 | // |
| 151 | // EmptyRules provides a concrete base class of ConstRules that does nothing |
| 152 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 153 | struct EmptyRules : public TemplateRules<Constant, EmptyRules> { |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 154 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 155 | |
| 156 | |
| 157 | |
| 158 | //===----------------------------------------------------------------------===// |
| 159 | // BoolRules Class |
| 160 | //===----------------------------------------------------------------------===// |
| 161 | // |
| 162 | // BoolRules provides a concrete base class of ConstRules for the 'bool' type. |
| 163 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 164 | struct BoolRules : public TemplateRules<ConstantBool, BoolRules> { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 165 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 166 | inline static Constant *Not(const ConstantBool *V) { |
| 167 | return ConstantBool::get(!V->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 170 | inline static Constant *Or(const ConstantBool *V1, |
| 171 | const ConstantBool *V2) { |
| 172 | return ConstantBool::get(V1->getValue() | V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 175 | inline static Constant *And(const ConstantBool *V1, |
| 176 | const ConstantBool *V2) { |
| 177 | return ConstantBool::get(V1->getValue() & V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 178 | } |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 179 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 180 | |
| 181 | |
| 182 | //===----------------------------------------------------------------------===// |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 183 | // PointerRules Class |
| 184 | //===----------------------------------------------------------------------===// |
| 185 | // |
| 186 | // PointerRules provides a concrete base class of ConstRules for pointer types |
| 187 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 188 | struct PointerRules : public TemplateRules<ConstantPointer, PointerRules> { |
| 189 | inline static ConstantBool *CastToBool (const Constant *V) { |
| 190 | if (V->isNullValue()) return ConstantBool::False; |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 191 | return 0; // Can't const prop other types of pointers |
| 192 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 193 | inline static ConstantSInt *CastToSByte (const Constant *V) { |
| 194 | if (V->isNullValue()) return ConstantSInt::get(Type::SByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 195 | return 0; // Can't const prop other types of pointers |
| 196 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 197 | inline static ConstantUInt *CastToUByte (const Constant *V) { |
| 198 | if (V->isNullValue()) return ConstantUInt::get(Type::UByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 199 | return 0; // Can't const prop other types of pointers |
| 200 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 201 | inline static ConstantSInt *CastToShort (const Constant *V) { |
| 202 | if (V->isNullValue()) return ConstantSInt::get(Type::ShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 203 | return 0; // Can't const prop other types of pointers |
| 204 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 205 | inline static ConstantUInt *CastToUShort(const Constant *V) { |
| 206 | if (V->isNullValue()) return ConstantUInt::get(Type::UShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 207 | return 0; // Can't const prop other types of pointers |
| 208 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 209 | inline static ConstantSInt *CastToInt (const Constant *V) { |
| 210 | if (V->isNullValue()) return ConstantSInt::get(Type::IntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 211 | return 0; // Can't const prop other types of pointers |
| 212 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 213 | inline static ConstantUInt *CastToUInt (const Constant *V) { |
| 214 | if (V->isNullValue()) return ConstantUInt::get(Type::UIntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 215 | return 0; // Can't const prop other types of pointers |
| 216 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 217 | inline static ConstantSInt *CastToLong (const Constant *V) { |
| 218 | if (V->isNullValue()) return ConstantSInt::get(Type::LongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 219 | return 0; // Can't const prop other types of pointers |
| 220 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 221 | inline static ConstantUInt *CastToULong (const Constant *V) { |
| 222 | if (V->isNullValue()) return ConstantUInt::get(Type::ULongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 223 | return 0; // Can't const prop other types of pointers |
| 224 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 225 | inline static ConstantFP *CastToFloat (const Constant *V) { |
| 226 | if (V->isNullValue()) return ConstantFP::get(Type::FloatTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 227 | return 0; // Can't const prop other types of pointers |
| 228 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 229 | inline static ConstantFP *CastToDouble(const Constant *V) { |
| 230 | if (V->isNullValue()) return ConstantFP::get(Type::DoubleTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 231 | return 0; // Can't const prop other types of pointers |
| 232 | } |
| 233 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 234 | inline static ConstantPointer *CastToPointer(const ConstantPointer *V, |
| 235 | const PointerType *PTy) { |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 236 | if (V->getType() == PTy) |
| 237 | return const_cast<ConstantPointer*>(V); // Allow cast %PTy %ptr to %PTy |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 238 | if (V->isNullValue()) |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 239 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 240 | return 0; // Can't const prop other types of pointers |
| 241 | } |
| 242 | }; |
| 243 | |
| 244 | |
| 245 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 246 | // DirectRules Class |
| 247 | //===----------------------------------------------------------------------===// |
| 248 | // |
| 249 | // DirectRules provides a concrete base classes of ConstRules for a variety of |
| 250 | // different types. This allows the C++ compiler to automatically generate our |
| 251 | // constant handling operations in a typesafe and accurate manner. |
| 252 | // |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 253 | template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass> |
| 254 | struct DirectRules : public TemplateRules<ConstantClass, SuperClass> { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 255 | inline static Constant *Add(const ConstantClass *V1, |
| 256 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 257 | BuiltinType Result = (BuiltinType)V1->getValue() + |
| 258 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 259 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 262 | inline static Constant *Sub(const ConstantClass *V1, |
| 263 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 264 | BuiltinType Result = (BuiltinType)V1->getValue() - |
| 265 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 266 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 269 | inline static Constant *Mul(const ConstantClass *V1, |
| 270 | const ConstantClass *V2) { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 271 | BuiltinType Result = (BuiltinType)V1->getValue() * |
| 272 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 273 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 276 | inline static Constant *Div(const ConstantClass *V1, |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 277 | const ConstantClass *V2) { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 278 | if (V2->isNullValue()) return 0; |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 279 | BuiltinType Result = (BuiltinType)V1->getValue() / |
| 280 | (BuiltinType)V2->getValue(); |
| 281 | return ConstantClass::get(*Ty, Result); |
| 282 | } |
| 283 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 284 | inline static ConstantBool *LessThan(const ConstantClass *V1, |
| 285 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 286 | bool Result = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 287 | return ConstantBool::get(Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 288 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 289 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 290 | inline static ConstantPointer *CastToPointer(const ConstantClass *V, |
| 291 | const PointerType *PTy) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 292 | if (V->isNullValue()) // Is it a FP or Integral null value? |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 293 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 294 | return 0; // Can't const prop other types of pointers |
| 295 | } |
| 296 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 297 | // Casting operators. ick |
| 298 | #define DEF_CAST(TYPE, CLASS, CTYPE) \ |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 299 | inline static CLASS *CastTo##TYPE (const ConstantClass *V) { \ |
Chris Lattner | bbb2296 | 2001-09-07 16:40:34 +0000 | [diff] [blame] | 300 | return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \ |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 303 | DEF_CAST(Bool , ConstantBool, bool) |
| 304 | DEF_CAST(SByte , ConstantSInt, signed char) |
| 305 | DEF_CAST(UByte , ConstantUInt, unsigned char) |
| 306 | DEF_CAST(Short , ConstantSInt, signed short) |
| 307 | DEF_CAST(UShort, ConstantUInt, unsigned short) |
| 308 | DEF_CAST(Int , ConstantSInt, signed int) |
| 309 | DEF_CAST(UInt , ConstantUInt, unsigned int) |
| 310 | DEF_CAST(Long , ConstantSInt, int64_t) |
| 311 | DEF_CAST(ULong , ConstantUInt, uint64_t) |
| 312 | DEF_CAST(Float , ConstantFP , float) |
| 313 | DEF_CAST(Double, ConstantFP , double) |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 314 | #undef DEF_CAST |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 315 | }; |
| 316 | |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 317 | |
| 318 | //===----------------------------------------------------------------------===// |
| 319 | // DirectIntRules Class |
| 320 | //===----------------------------------------------------------------------===// |
| 321 | // |
| 322 | // DirectIntRules provides implementations of functions that are valid on |
| 323 | // integer types, but not all types in general. |
| 324 | // |
| 325 | template <class ConstantClass, class BuiltinType, Type **Ty> |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 326 | struct DirectIntRules |
| 327 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 328 | DirectIntRules<ConstantClass, BuiltinType, Ty> > { |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 329 | inline static Constant *Not(const ConstantClass *V) { |
| 330 | return ConstantClass::get(*Ty, ~(BuiltinType)V->getValue());; |
| 331 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 332 | |
| 333 | inline static Constant *Rem(const ConstantClass *V1, |
| 334 | const ConstantClass *V2) { |
| 335 | if (V2->isNullValue()) return 0; |
| 336 | BuiltinType Result = (BuiltinType)V1->getValue() % |
| 337 | (BuiltinType)V2->getValue(); |
| 338 | return ConstantClass::get(*Ty, Result); |
| 339 | } |
| 340 | }; |
| 341 | |
| 342 | |
| 343 | //===----------------------------------------------------------------------===// |
| 344 | // DirectFPRules Class |
| 345 | //===----------------------------------------------------------------------===// |
| 346 | // |
| 347 | // DirectFPRules provides implementations of functions that are valid on |
| 348 | // floating point types, but not all types in general. |
| 349 | // |
| 350 | template <class ConstantClass, class BuiltinType, Type **Ty> |
| 351 | struct DirectFPRules |
| 352 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 353 | DirectFPRules<ConstantClass, BuiltinType, Ty> > { |
| 354 | inline static Constant *Rem(const ConstantClass *V1, |
| 355 | const ConstantClass *V2) { |
| 356 | if (V2->isNullValue()) return 0; |
| 357 | BuiltinType Result = std::fmod((BuiltinType)V1->getValue(), |
| 358 | (BuiltinType)V2->getValue()); |
| 359 | return ConstantClass::get(*Ty, Result); |
| 360 | } |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 361 | }; |
| 362 | |
| 363 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 364 | //===----------------------------------------------------------------------===// |
| 365 | // DirectRules Subclasses |
| 366 | //===----------------------------------------------------------------------===// |
| 367 | // |
| 368 | // Given the DirectRules class we can now implement lots of types with little |
| 369 | // code. Thank goodness C++ compilers are great at stomping out layers of |
| 370 | // templates... can you imagine having to do this all by hand? (/me is lazy :) |
| 371 | // |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 372 | |
| 373 | // ConstRules::find - Return the constant rules that take care of the specified |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 374 | // type. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 375 | // |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 376 | Annotation *ConstRules::find(AnnotationID AID, const Annotable *TyA, void *) { |
| 377 | assert(AID == ConstRules::AID && "Bad annotation for factory!"); |
Chris Lattner | 8f19112 | 2001-10-01 18:26:53 +0000 | [diff] [blame] | 378 | const Type *Ty = cast<Type>((const Value*)TyA); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 379 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 380 | switch (Ty->getPrimitiveID()) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 381 | case Type::BoolTyID: return new BoolRules(); |
| 382 | case Type::PointerTyID: return new PointerRules(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 383 | case Type::SByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 384 | return new DirectIntRules<ConstantSInt, signed char , &Type::SByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 385 | case Type::UByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 386 | return new DirectIntRules<ConstantUInt, unsigned char , &Type::UByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 387 | case Type::ShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 388 | return new DirectIntRules<ConstantSInt, signed short, &Type::ShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 389 | case Type::UShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 390 | return new DirectIntRules<ConstantUInt, unsigned short, &Type::UShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 391 | case Type::IntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 392 | return new DirectIntRules<ConstantSInt, signed int , &Type::IntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 393 | case Type::UIntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 394 | return new DirectIntRules<ConstantUInt, unsigned int , &Type::UIntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 395 | case Type::LongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 396 | return new DirectIntRules<ConstantSInt, int64_t , &Type::LongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 397 | case Type::ULongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 398 | return new DirectIntRules<ConstantUInt, uint64_t , &Type::ULongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 399 | case Type::FloatTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 400 | return new DirectFPRules<ConstantFP , float , &Type::FloatTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 401 | case Type::DoubleTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame^] | 402 | return new DirectFPRules<ConstantFP , double , &Type::DoubleTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 403 | default: |
| 404 | return new EmptyRules(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 405 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 406 | } |