Eliminate use of the ConstantPointer class
[oota-llvm.git] / lib / VMCore / ConstantFold.cpp
1 //===- ConstantHandling.cpp - Implement ConstantHandling.h ----------------===//
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 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the various intrinsic operations, on constant values.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/ConstantHandling.h"
15 #include "llvm/iPHINode.h"
16 #include "llvm/InstrTypes.h"
17 #include "llvm/DerivedTypes.h"
18 #include <cmath>
19 using namespace llvm;
20
21 // ConstantFoldInstruction - Attempt to constant fold the specified instruction.
22 // If successful, the constant result is returned, if not, null is returned.
23 //
24 Constant *llvm::ConstantFoldInstruction(Instruction *I) {
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
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
54   if (isa<BinaryOperator>(I))
55     return ConstantExpr::get(I->getOpcode(), Op0, Op1);    
56
57   switch (I->getOpcode()) {
58   case Instruction::Cast:
59     return ConstantExpr::getCast(Op0, I->getType());
60   case Instruction::Shl:
61   case Instruction::Shr:
62     return ConstantExpr::getShift(I->getOpcode(), Op0, Op1);
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
72     return ConstantExpr::getGetElementPtr(Op0, IdxList);
73   }
74   default:
75     return 0;
76   }
77 }
78
79 static unsigned getSize(const Type *Ty) {
80   unsigned S = Ty->getPrimitiveSize();
81   return S ? S : 8;  // Treat pointers at 8 bytes
82 }
83
84 Constant *llvm::ConstantFoldCastInstruction(const Constant *V,
85                                             const Type *DestTy) {
86   if (V->getType() == DestTy) return (Constant*)V;
87
88   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
89     if (CE->getOpcode() == Instruction::Cast) {
90       Constant *Op = const_cast<Constant*>(CE->getOperand(0));
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       }
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);
115     }
116
117   return ConstRules::get(*V, *V).castTo(V, DestTy);
118 }
119
120 Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode,
121                                               const Constant *V1,
122                                               const Constant *V2) {
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;
129   case Instruction::And:     return *V1 & *V2;
130   case Instruction::Or:      return *V1 | *V2;
131   case Instruction::Xor:     return *V1 ^ *V2;
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
143 Constant *llvm::ConstantFoldShiftInstruction(unsigned Opcode,
144                                              const Constant *V1, 
145                                              const Constant *V2) {
146   switch (Opcode) {
147   case Instruction::Shl:     return *V1 << *V2;
148   case Instruction::Shr:     return *V1 >> *V2;
149   default:                   return 0;
150   }
151 }
152
153 Constant *llvm::ConstantFoldGetElementPtr(const Constant *C,
154                                         const std::vector<Constant*> &IdxList) {
155   if (IdxList.size() == 0 ||
156       (IdxList.size() == 1 && IdxList[0]->isNullValue()))
157     return const_cast<Constant*>(C);
158
159   // TODO If C is null and all idx's are null, return null of the right type.
160
161
162   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
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.
166     //
167     if (CE->getOpcode() == Instruction::GetElementPtr) {
168       if (CE->getOperand(CE->getNumOperands()-1)->getType() == Type::LongTy) {
169         std::vector<Constant*> NewIndices;
170         NewIndices.reserve(IdxList.size() + CE->getNumOperands());
171         for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
172           NewIndices.push_back(cast<Constant>(CE->getOperand(i)));
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);
180         NewIndices.insert(NewIndices.end(), IdxList.begin()+1, IdxList.end());
181         return ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices);
182       }
183     }
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     //
190     if (CE->getOpcode() == Instruction::Cast && IdxList.size() > 1 &&
191         IdxList[0]->isNullValue())
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(
199                       (Constant*)CE->getOperand(0), IdxList);
200   }
201   return 0;
202 }
203
204
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
224   virtual Constant *add(const Constant *V1, const Constant *V2) const { 
225     return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2);  
226   }
227   virtual Constant *sub(const Constant *V1, const Constant *V2) const { 
228     return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2);  
229   }
230   virtual Constant *mul(const Constant *V1, const Constant *V2) const { 
231     return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2);  
232   }
233   virtual Constant *div(const Constant *V1, const Constant *V2) const { 
234     return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2);  
235   }
236   virtual Constant *rem(const Constant *V1, const Constant *V2) const { 
237     return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2);  
238   }
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 { 
249     return SubClassName::Shl((const ArgType *)V1, (const ArgType *)V2);  
250   }
251   virtual Constant *shr(const Constant *V1, const Constant *V2) const { 
252     return SubClassName::Shr((const ArgType *)V1, (const ArgType *)V2);  
253   }
254
255   virtual ConstantBool *lessthan(const Constant *V1, 
256                                  const Constant *V2) const { 
257     return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2);
258   }
259
260   // Casting operators.  ick
261   virtual ConstantBool *castToBool(const Constant *V) const {
262     return SubClassName::CastToBool((const ArgType*)V);
263   }
264   virtual ConstantSInt *castToSByte(const Constant *V) const {
265     return SubClassName::CastToSByte((const ArgType*)V);
266   }
267   virtual ConstantUInt *castToUByte(const Constant *V) const {
268     return SubClassName::CastToUByte((const ArgType*)V);
269   }
270   virtual ConstantSInt *castToShort(const Constant *V) const {
271     return SubClassName::CastToShort((const ArgType*)V);
272   }
273   virtual ConstantUInt *castToUShort(const Constant *V) const {
274     return SubClassName::CastToUShort((const ArgType*)V);
275   }
276   virtual ConstantSInt *castToInt(const Constant *V) const {
277     return SubClassName::CastToInt((const ArgType*)V);
278   }
279   virtual ConstantUInt *castToUInt(const Constant *V) const {
280     return SubClassName::CastToUInt((const ArgType*)V);
281   }
282   virtual ConstantSInt *castToLong(const Constant *V) const {
283     return SubClassName::CastToLong((const ArgType*)V);
284   }
285   virtual ConstantUInt *castToULong(const Constant *V) const {
286     return SubClassName::CastToULong((const ArgType*)V);
287   }
288   virtual ConstantFP   *castToFloat(const Constant *V) const {
289     return SubClassName::CastToFloat((const ArgType*)V);
290   }
291   virtual ConstantFP   *castToDouble(const Constant *V) const {
292     return SubClassName::CastToDouble((const ArgType*)V);
293   }
294   virtual Constant *castToPointer(const Constant *V, 
295                                   const PointerType *Ty) const {
296     return SubClassName::CastToPointer((const ArgType*)V, Ty);
297   }
298
299   //===--------------------------------------------------------------------===//
300   // Default "noop" implementations
301   //===--------------------------------------------------------------------===//
302
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) {
314     return 0;
315   }
316
317   // Casting operators.  ick
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; }
329   static Constant     *CastToPointer(const Constant *,
330                                      const PointerType *) {return 0;}
331 };
332
333
334
335 //===----------------------------------------------------------------------===//
336 //                             EmptyRules Class
337 //===----------------------------------------------------------------------===//
338 //
339 // EmptyRules provides a concrete base class of ConstRules that does nothing
340 //
341 struct EmptyRules : public TemplateRules<Constant, EmptyRules> {
342 };
343
344
345
346 //===----------------------------------------------------------------------===//
347 //                              BoolRules Class
348 //===----------------------------------------------------------------------===//
349 //
350 // BoolRules provides a concrete base class of ConstRules for the 'bool' type.
351 //
352 struct BoolRules : public TemplateRules<ConstantBool, BoolRules> {
353
354   static ConstantBool *LessThan(const ConstantBool *V1, const ConstantBool *V2){
355     return ConstantBool::get(V1->getValue() < V2->getValue());
356   }
357
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) {
363     return ConstantBool::get(V1->getValue() | V2->getValue());
364   }
365
366   static Constant *Xor(const ConstantBool *V1, const ConstantBool *V2) {
367     return ConstantBool::get(V1->getValue() ^ V2->getValue());
368   }
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
388 };
389
390
391 //===----------------------------------------------------------------------===//
392 //                            NullPointerRules Class
393 //===----------------------------------------------------------------------===//
394 //
395 // NullPointerRules provides a concrete base class of ConstRules for null
396 // pointers.
397 //
398 struct NullPointerRules : public TemplateRules<ConstantPointer,
399                                                NullPointerRules> {
400   static ConstantBool *CastToBool  (const Constant *V) {
401     return ConstantBool::False;
402   }
403   static ConstantSInt *CastToSByte (const Constant *V) {
404     return ConstantSInt::get(Type::SByteTy, 0);
405   }
406   static ConstantUInt *CastToUByte (const Constant *V) {
407     return ConstantUInt::get(Type::UByteTy, 0);
408   }
409   static ConstantSInt *CastToShort (const Constant *V) {
410     return ConstantSInt::get(Type::ShortTy, 0);
411   }
412   static ConstantUInt *CastToUShort(const Constant *V) {
413     return ConstantUInt::get(Type::UShortTy, 0);
414   }
415   static ConstantSInt *CastToInt   (const Constant *V) {
416     return ConstantSInt::get(Type::IntTy, 0);
417   }
418   static ConstantUInt *CastToUInt  (const Constant *V) {
419     return ConstantUInt::get(Type::UIntTy, 0);
420   }
421   static ConstantSInt *CastToLong  (const Constant *V) {
422     return ConstantSInt::get(Type::LongTy, 0);
423   }
424   static ConstantUInt *CastToULong (const Constant *V) {
425     return ConstantUInt::get(Type::ULongTy, 0);
426   }
427   static ConstantFP   *CastToFloat (const Constant *V) {
428     return ConstantFP::get(Type::FloatTy, 0);
429   }
430   static ConstantFP   *CastToDouble(const Constant *V) {
431     return ConstantFP::get(Type::DoubleTy, 0);
432   }
433
434   static Constant *CastToPointer(const ConstantPointer *V,
435                                  const PointerType *PTy) {
436     return ConstantPointerNull::get(PTy);
437   }
438 };
439
440
441 //===----------------------------------------------------------------------===//
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 //
449 template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass>
450 struct DirectRules : public TemplateRules<ConstantClass, SuperClass> {
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);
454   }
455
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);
459   }
460
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);
464   }
465
466   static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) {
467     if (V2->isNullValue()) return 0;
468     BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue();
469     return ConstantClass::get(*Ty, R);
470   }
471
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);
476   } 
477
478   static Constant *CastToPointer(const ConstantClass *V,
479                                  const PointerType *PTy) {
480     if (V->isNullValue())    // Is it a FP or Integral null value?
481       return ConstantPointerNull::get(PTy);
482     return 0;  // Can't const prop other types of pointers
483   }
484
485   // Casting operators.  ick
486 #define DEF_CAST(TYPE, CLASS, CTYPE) \
487   static CLASS *CastTo##TYPE  (const ConstantClass *V) {    \
488     return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \
489   }
490
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)
502 #undef DEF_CAST
503 };
504
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>
514 struct DirectIntRules
515   : public DirectRules<ConstantClass, BuiltinType, Ty,
516                        DirectIntRules<ConstantClass, BuiltinType, Ty> > {
517
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
527   static Constant *Rem(const ConstantClass *V1,
528                        const ConstantClass *V2) {
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;
533     BuiltinType R = (BuiltinType)V1->getValue() % (BuiltinType)V2->getValue();
534     return ConstantClass::get(*Ty, R);
535   }
536
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);
548   }
549
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);
558   }
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> > {
573   static Constant *Rem(const ConstantClass *V1, const ConstantClass *V2) {
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   }
579 };
580
581 ConstRules &ConstRules::get(const Constant &V1, const Constant &V2) {
582   static EmptyRules       EmptyR;
583   static BoolRules        BoolR;
584   static NullPointerRules NullPointerR;
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;
595
596   if (isa<ConstantExpr>(V1) || isa<ConstantExpr>(V2) ||
597       isa<ConstantPointerRef>(V1) || isa<ConstantPointerRef>(V2))
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;
607   case Type::PointerTyID: return NullPointerR;
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;
618   }
619 }