The noreturn GCC extension is now supported.
[oota-llvm.git] / lib / VMCore / ConstantFold.cpp
1 //===- ConstantFolding.cpp - LLVM constant folder -------------------------===//
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 folding of constants for LLVM.  This implements the
11 // (internal) ConstantFolding.h interface, which is used by the
12 // ConstantExpr::get* methods to automatically fold constants when possible.
13 //
14 // The current constant folding implementation is implemented in two pieces: the
15 // template-based folder for simple primitive constants like ConstantInt, and
16 // the special case hackery that we use to symbolically evaluate expressions
17 // that use ConstantExprs.
18 //
19 //===----------------------------------------------------------------------===//
20
21 #include "ConstantFolding.h"
22 #include "llvm/Constants.h"
23 #include "llvm/Instructions.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/Function.h"
26 #include "llvm/Support/GetElementPtrTypeIterator.h"
27 #include <cmath>
28 using namespace llvm;
29
30 namespace {
31   struct ConstRules {
32     ConstRules() {}
33     
34     // Binary Operators...
35     virtual Constant *add(const Constant *V1, const Constant *V2) const = 0;
36     virtual Constant *sub(const Constant *V1, const Constant *V2) const = 0;
37     virtual Constant *mul(const Constant *V1, const Constant *V2) const = 0;
38     virtual Constant *div(const Constant *V1, const Constant *V2) const = 0;
39     virtual Constant *rem(const Constant *V1, const Constant *V2) const = 0;
40     virtual Constant *op_and(const Constant *V1, const Constant *V2) const = 0;
41     virtual Constant *op_or (const Constant *V1, const Constant *V2) const = 0;
42     virtual Constant *op_xor(const Constant *V1, const Constant *V2) const = 0;
43     virtual Constant *shl(const Constant *V1, const Constant *V2) const = 0;
44     virtual Constant *shr(const Constant *V1, const Constant *V2) const = 0;
45     virtual Constant *lessthan(const Constant *V1, const Constant *V2) const =0;
46     virtual Constant *equalto(const Constant *V1, const Constant *V2) const = 0;
47
48     // Casting operators.
49     virtual Constant *castToBool  (const Constant *V) const = 0;
50     virtual Constant *castToSByte (const Constant *V) const = 0;
51     virtual Constant *castToUByte (const Constant *V) const = 0;
52     virtual Constant *castToShort (const Constant *V) const = 0;
53     virtual Constant *castToUShort(const Constant *V) const = 0;
54     virtual Constant *castToInt   (const Constant *V) const = 0;
55     virtual Constant *castToUInt  (const Constant *V) const = 0;
56     virtual Constant *castToLong  (const Constant *V) const = 0;
57     virtual Constant *castToULong (const Constant *V) const = 0;
58     virtual Constant *castToFloat (const Constant *V) const = 0;
59     virtual Constant *castToDouble(const Constant *V) const = 0;
60     virtual Constant *castToPointer(const Constant *V,
61                                     const PointerType *Ty) const = 0;
62     
63     // ConstRules::get - Return an instance of ConstRules for the specified
64     // constant operands.
65     //
66     static ConstRules &get(const Constant *V1, const Constant *V2);
67   private:
68     ConstRules(const ConstRules &);             // Do not implement
69     ConstRules &operator=(const ConstRules &);  // Do not implement
70   };
71 }
72
73
74 //===----------------------------------------------------------------------===//
75 //                             TemplateRules Class
76 //===----------------------------------------------------------------------===//
77 //
78 // TemplateRules - Implement a subclass of ConstRules that provides all 
79 // operations as noops.  All other rules classes inherit from this class so 
80 // that if functionality is needed in the future, it can simply be added here 
81 // and to ConstRules without changing anything else...
82 // 
83 // This class also provides subclasses with typesafe implementations of methods
84 // so that don't have to do type casting.
85 //
86 template<class ArgType, class SubClassName>
87 class TemplateRules : public ConstRules {
88
89   //===--------------------------------------------------------------------===//
90   // Redirecting functions that cast to the appropriate types
91   //===--------------------------------------------------------------------===//
92
93   virtual Constant *add(const Constant *V1, const Constant *V2) const { 
94     return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2);  
95   }
96   virtual Constant *sub(const Constant *V1, const Constant *V2) const { 
97     return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2);  
98   }
99   virtual Constant *mul(const Constant *V1, const Constant *V2) const { 
100     return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2);  
101   }
102   virtual Constant *div(const Constant *V1, const Constant *V2) const { 
103     return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2);  
104   }
105   virtual Constant *rem(const Constant *V1, const Constant *V2) const { 
106     return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2);  
107   }
108   virtual Constant *op_and(const Constant *V1, const Constant *V2) const { 
109     return SubClassName::And((const ArgType *)V1, (const ArgType *)V2);  
110   }
111   virtual Constant *op_or(const Constant *V1, const Constant *V2) const { 
112     return SubClassName::Or((const ArgType *)V1, (const ArgType *)V2);  
113   }
114   virtual Constant *op_xor(const Constant *V1, const Constant *V2) const { 
115     return SubClassName::Xor((const ArgType *)V1, (const ArgType *)V2);  
116   }
117   virtual Constant *shl(const Constant *V1, const Constant *V2) const { 
118     return SubClassName::Shl((const ArgType *)V1, (const ArgType *)V2);  
119   }
120   virtual Constant *shr(const Constant *V1, const Constant *V2) const { 
121     return SubClassName::Shr((const ArgType *)V1, (const ArgType *)V2);  
122   }
123
124   virtual Constant *lessthan(const Constant *V1, const Constant *V2) const { 
125     return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2);
126   }
127   virtual Constant *equalto(const Constant *V1, const Constant *V2) const { 
128     return SubClassName::EqualTo((const ArgType *)V1, (const ArgType *)V2);
129   }
130
131   // Casting operators.  ick
132   virtual Constant *castToBool(const Constant *V) const {
133     return SubClassName::CastToBool((const ArgType*)V);
134   }
135   virtual Constant *castToSByte(const Constant *V) const {
136     return SubClassName::CastToSByte((const ArgType*)V);
137   }
138   virtual Constant *castToUByte(const Constant *V) const {
139     return SubClassName::CastToUByte((const ArgType*)V);
140   }
141   virtual Constant *castToShort(const Constant *V) const {
142     return SubClassName::CastToShort((const ArgType*)V);
143   }
144   virtual Constant *castToUShort(const Constant *V) const {
145     return SubClassName::CastToUShort((const ArgType*)V);
146   }
147   virtual Constant *castToInt(const Constant *V) const {
148     return SubClassName::CastToInt((const ArgType*)V);
149   }
150   virtual Constant *castToUInt(const Constant *V) const {
151     return SubClassName::CastToUInt((const ArgType*)V);
152   }
153   virtual Constant *castToLong(const Constant *V) const {
154     return SubClassName::CastToLong((const ArgType*)V);
155   }
156   virtual Constant *castToULong(const Constant *V) const {
157     return SubClassName::CastToULong((const ArgType*)V);
158   }
159   virtual Constant *castToFloat(const Constant *V) const {
160     return SubClassName::CastToFloat((const ArgType*)V);
161   }
162   virtual Constant *castToDouble(const Constant *V) const {
163     return SubClassName::CastToDouble((const ArgType*)V);
164   }
165   virtual Constant *castToPointer(const Constant *V, 
166                                   const PointerType *Ty) const {
167     return SubClassName::CastToPointer((const ArgType*)V, Ty);
168   }
169
170   //===--------------------------------------------------------------------===//
171   // Default "noop" implementations
172   //===--------------------------------------------------------------------===//
173
174   static Constant *Add(const ArgType *V1, const ArgType *V2) { return 0; }
175   static Constant *Sub(const ArgType *V1, const ArgType *V2) { return 0; }
176   static Constant *Mul(const ArgType *V1, const ArgType *V2) { return 0; }
177   static Constant *Div(const ArgType *V1, const ArgType *V2) { return 0; }
178   static Constant *Rem(const ArgType *V1, const ArgType *V2) { return 0; }
179   static Constant *And(const ArgType *V1, const ArgType *V2) { return 0; }
180   static Constant *Or (const ArgType *V1, const ArgType *V2) { return 0; }
181   static Constant *Xor(const ArgType *V1, const ArgType *V2) { return 0; }
182   static Constant *Shl(const ArgType *V1, const ArgType *V2) { return 0; }
183   static Constant *Shr(const ArgType *V1, const ArgType *V2) { return 0; }
184   static Constant *LessThan(const ArgType *V1, const ArgType *V2) {
185     return 0;
186   }
187   static Constant *EqualTo(const ArgType *V1, const ArgType *V2) {
188     return 0;
189   }
190
191   // Casting operators.  ick
192   static Constant *CastToBool  (const Constant *V) { return 0; }
193   static Constant *CastToSByte (const Constant *V) { return 0; }
194   static Constant *CastToUByte (const Constant *V) { return 0; }
195   static Constant *CastToShort (const Constant *V) { return 0; }
196   static Constant *CastToUShort(const Constant *V) { return 0; }
197   static Constant *CastToInt   (const Constant *V) { return 0; }
198   static Constant *CastToUInt  (const Constant *V) { return 0; }
199   static Constant *CastToLong  (const Constant *V) { return 0; }
200   static Constant *CastToULong (const Constant *V) { return 0; }
201   static Constant *CastToFloat (const Constant *V) { return 0; }
202   static Constant *CastToDouble(const Constant *V) { return 0; }
203   static Constant *CastToPointer(const Constant *,
204                                  const PointerType *) {return 0;}
205 };
206
207
208
209 //===----------------------------------------------------------------------===//
210 //                             EmptyRules Class
211 //===----------------------------------------------------------------------===//
212 //
213 // EmptyRules provides a concrete base class of ConstRules that does nothing
214 //
215 struct EmptyRules : public TemplateRules<Constant, EmptyRules> {
216   static Constant *EqualTo(const Constant *V1, const Constant *V2) {
217     if (V1 == V2) return ConstantBool::True;
218     return 0;
219   }
220 };
221
222
223
224 //===----------------------------------------------------------------------===//
225 //                              BoolRules Class
226 //===----------------------------------------------------------------------===//
227 //
228 // BoolRules provides a concrete base class of ConstRules for the 'bool' type.
229 //
230 struct BoolRules : public TemplateRules<ConstantBool, BoolRules> {
231
232   static Constant *LessThan(const ConstantBool *V1, const ConstantBool *V2){
233     return ConstantBool::get(V1->getValue() < V2->getValue());
234   }
235
236   static Constant *EqualTo(const Constant *V1, const Constant *V2) {
237     return ConstantBool::get(V1 == V2);
238   }
239
240   static Constant *And(const ConstantBool *V1, const ConstantBool *V2) {
241     return ConstantBool::get(V1->getValue() & V2->getValue());
242   }
243
244   static Constant *Or(const ConstantBool *V1, const ConstantBool *V2) {
245     return ConstantBool::get(V1->getValue() | V2->getValue());
246   }
247
248   static Constant *Xor(const ConstantBool *V1, const ConstantBool *V2) {
249     return ConstantBool::get(V1->getValue() ^ V2->getValue());
250   }
251
252   // Casting operators.  ick
253 #define DEF_CAST(TYPE, CLASS, CTYPE) \
254   static Constant *CastTo##TYPE  (const ConstantBool *V) {    \
255     return CLASS::get(Type::TYPE##Ty, (CTYPE)(bool)V->getValue()); \
256   }
257
258   DEF_CAST(Bool  , ConstantBool, bool)
259   DEF_CAST(SByte , ConstantSInt, signed char)
260   DEF_CAST(UByte , ConstantUInt, unsigned char)
261   DEF_CAST(Short , ConstantSInt, signed short)
262   DEF_CAST(UShort, ConstantUInt, unsigned short)
263   DEF_CAST(Int   , ConstantSInt, signed int)
264   DEF_CAST(UInt  , ConstantUInt, unsigned int)
265   DEF_CAST(Long  , ConstantSInt, int64_t)
266   DEF_CAST(ULong , ConstantUInt, uint64_t)
267   DEF_CAST(Float , ConstantFP  , float)
268   DEF_CAST(Double, ConstantFP  , double)
269 #undef DEF_CAST
270 };
271
272
273 //===----------------------------------------------------------------------===//
274 //                            NullPointerRules Class
275 //===----------------------------------------------------------------------===//
276 //
277 // NullPointerRules provides a concrete base class of ConstRules for null
278 // pointers.
279 //
280 struct NullPointerRules : public TemplateRules<ConstantPointerNull,
281                                                NullPointerRules> {
282   static Constant *EqualTo(const Constant *V1, const Constant *V2) {
283     return ConstantBool::True;  // Null pointers are always equal
284   }
285   static Constant *CastToBool(const Constant *V) {
286     return ConstantBool::False;
287   }
288   static Constant *CastToSByte (const Constant *V) {
289     return ConstantSInt::get(Type::SByteTy, 0);
290   }
291   static Constant *CastToUByte (const Constant *V) {
292     return ConstantUInt::get(Type::UByteTy, 0);
293   }
294   static Constant *CastToShort (const Constant *V) {
295     return ConstantSInt::get(Type::ShortTy, 0);
296   }
297   static Constant *CastToUShort(const Constant *V) {
298     return ConstantUInt::get(Type::UShortTy, 0);
299   }
300   static Constant *CastToInt   (const Constant *V) {
301     return ConstantSInt::get(Type::IntTy, 0);
302   }
303   static Constant *CastToUInt  (const Constant *V) {
304     return ConstantUInt::get(Type::UIntTy, 0);
305   }
306   static Constant *CastToLong  (const Constant *V) {
307     return ConstantSInt::get(Type::LongTy, 0);
308   }
309   static Constant *CastToULong (const Constant *V) {
310     return ConstantUInt::get(Type::ULongTy, 0);
311   }
312   static Constant *CastToFloat (const Constant *V) {
313     return ConstantFP::get(Type::FloatTy, 0);
314   }
315   static Constant *CastToDouble(const Constant *V) {
316     return ConstantFP::get(Type::DoubleTy, 0);
317   }
318
319   static Constant *CastToPointer(const ConstantPointerNull *V,
320                                  const PointerType *PTy) {
321     return ConstantPointerNull::get(PTy);
322   }
323 };
324
325
326 //===----------------------------------------------------------------------===//
327 //                             DirectRules Class
328 //===----------------------------------------------------------------------===//
329 //
330 // DirectRules provides a concrete base classes of ConstRules for a variety of
331 // different types.  This allows the C++ compiler to automatically generate our
332 // constant handling operations in a typesafe and accurate manner.
333 //
334 template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass>
335 struct DirectRules : public TemplateRules<ConstantClass, SuperClass> {
336   static Constant *Add(const ConstantClass *V1, const ConstantClass *V2) {
337     BuiltinType R = (BuiltinType)V1->getValue() + (BuiltinType)V2->getValue();
338     return ConstantClass::get(*Ty, R);
339   }
340
341   static Constant *Sub(const ConstantClass *V1, const ConstantClass *V2) {
342     BuiltinType R = (BuiltinType)V1->getValue() - (BuiltinType)V2->getValue();
343     return ConstantClass::get(*Ty, R);
344   }
345
346   static Constant *Mul(const ConstantClass *V1, const ConstantClass *V2) {
347     BuiltinType R = (BuiltinType)V1->getValue() * (BuiltinType)V2->getValue();
348     return ConstantClass::get(*Ty, R);
349   }
350
351   static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) {
352     if (V2->isNullValue()) return 0;
353     BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue();
354     return ConstantClass::get(*Ty, R);
355   }
356
357   static Constant *LessThan(const ConstantClass *V1, const ConstantClass *V2) {
358     bool R = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue();
359     return ConstantBool::get(R);
360   } 
361
362   static Constant *EqualTo(const ConstantClass *V1, const ConstantClass *V2) {
363     bool R = (BuiltinType)V1->getValue() == (BuiltinType)V2->getValue();
364     return ConstantBool::get(R);
365   }
366
367   static Constant *CastToPointer(const ConstantClass *V,
368                                  const PointerType *PTy) {
369     if (V->isNullValue())    // Is it a FP or Integral null value?
370       return ConstantPointerNull::get(PTy);
371     return 0;  // Can't const prop other types of pointers
372   }
373
374   // Casting operators.  ick
375 #define DEF_CAST(TYPE, CLASS, CTYPE) \
376   static Constant *CastTo##TYPE  (const ConstantClass *V) {    \
377     return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \
378   }
379
380   DEF_CAST(Bool  , ConstantBool, bool)
381   DEF_CAST(SByte , ConstantSInt, signed char)
382   DEF_CAST(UByte , ConstantUInt, unsigned char)
383   DEF_CAST(Short , ConstantSInt, signed short)
384   DEF_CAST(UShort, ConstantUInt, unsigned short)
385   DEF_CAST(Int   , ConstantSInt, signed int)
386   DEF_CAST(UInt  , ConstantUInt, unsigned int)
387   DEF_CAST(Long  , ConstantSInt, int64_t)
388   DEF_CAST(ULong , ConstantUInt, uint64_t)
389   DEF_CAST(Float , ConstantFP  , float)
390   DEF_CAST(Double, ConstantFP  , double)
391 #undef DEF_CAST
392 };
393
394
395 //===----------------------------------------------------------------------===//
396 //                           DirectIntRules Class
397 //===----------------------------------------------------------------------===//
398 //
399 // DirectIntRules provides implementations of functions that are valid on
400 // integer types, but not all types in general.
401 //
402 template <class ConstantClass, class BuiltinType, Type **Ty>
403 struct DirectIntRules
404   : public DirectRules<ConstantClass, BuiltinType, Ty,
405                        DirectIntRules<ConstantClass, BuiltinType, Ty> > {
406
407   static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) {
408     if (V2->isNullValue()) return 0;
409     if (V2->isAllOnesValue() &&              // MIN_INT / -1
410         (BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue())
411       return 0;
412     BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue();
413     return ConstantClass::get(*Ty, R);
414   }
415
416   static Constant *Rem(const ConstantClass *V1,
417                        const ConstantClass *V2) {
418     if (V2->isNullValue()) return 0;         // X / 0
419     if (V2->isAllOnesValue() &&              // MIN_INT / -1
420         (BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue())
421       return 0;
422     BuiltinType R = (BuiltinType)V1->getValue() % (BuiltinType)V2->getValue();
423     return ConstantClass::get(*Ty, R);
424   }
425
426   static Constant *And(const ConstantClass *V1, const ConstantClass *V2) {
427     BuiltinType R = (BuiltinType)V1->getValue() & (BuiltinType)V2->getValue();
428     return ConstantClass::get(*Ty, R);
429   }
430   static Constant *Or(const ConstantClass *V1, const ConstantClass *V2) {
431     BuiltinType R = (BuiltinType)V1->getValue() | (BuiltinType)V2->getValue();
432     return ConstantClass::get(*Ty, R);
433   }
434   static Constant *Xor(const ConstantClass *V1, const ConstantClass *V2) {
435     BuiltinType R = (BuiltinType)V1->getValue() ^ (BuiltinType)V2->getValue();
436     return ConstantClass::get(*Ty, R);
437   }
438
439   static Constant *Shl(const ConstantClass *V1, const ConstantClass *V2) {
440     BuiltinType R = (BuiltinType)V1->getValue() << (BuiltinType)V2->getValue();
441     return ConstantClass::get(*Ty, R);
442   }
443
444   static Constant *Shr(const ConstantClass *V1, const ConstantClass *V2) {
445     BuiltinType R = (BuiltinType)V1->getValue() >> (BuiltinType)V2->getValue();
446     return ConstantClass::get(*Ty, R);
447   }
448 };
449
450
451 //===----------------------------------------------------------------------===//
452 //                           DirectFPRules Class
453 //===----------------------------------------------------------------------===//
454 //
455 /// DirectFPRules provides implementations of functions that are valid on
456 /// floating point types, but not all types in general.
457 ///
458 template <class ConstantClass, class BuiltinType, Type **Ty>
459 struct DirectFPRules
460   : public DirectRules<ConstantClass, BuiltinType, Ty,
461                        DirectFPRules<ConstantClass, BuiltinType, Ty> > {
462   static Constant *Rem(const ConstantClass *V1, const ConstantClass *V2) {
463     if (V2->isNullValue()) return 0;
464     BuiltinType Result = std::fmod((BuiltinType)V1->getValue(),
465                                    (BuiltinType)V2->getValue());
466     return ConstantClass::get(*Ty, Result);
467   }
468 };
469
470
471 /// ConstRules::get - This method returns the constant rules implementation that
472 /// implements the semantics of the two specified constants.
473 ConstRules &ConstRules::get(const Constant *V1, const Constant *V2) {
474   static EmptyRules       EmptyR;
475   static BoolRules        BoolR;
476   static NullPointerRules NullPointerR;
477   static DirectIntRules<ConstantSInt,   signed char , &Type::SByteTy>  SByteR;
478   static DirectIntRules<ConstantUInt, unsigned char , &Type::UByteTy>  UByteR;
479   static DirectIntRules<ConstantSInt,   signed short, &Type::ShortTy>  ShortR;
480   static DirectIntRules<ConstantUInt, unsigned short, &Type::UShortTy> UShortR;
481   static DirectIntRules<ConstantSInt,   signed int  , &Type::IntTy>    IntR;
482   static DirectIntRules<ConstantUInt, unsigned int  , &Type::UIntTy>   UIntR;
483   static DirectIntRules<ConstantSInt,  int64_t      , &Type::LongTy>   LongR;
484   static DirectIntRules<ConstantUInt, uint64_t      , &Type::ULongTy>  ULongR;
485   static DirectFPRules <ConstantFP  , float         , &Type::FloatTy>  FloatR;
486   static DirectFPRules <ConstantFP  , double        , &Type::DoubleTy> DoubleR;
487
488   if (isa<ConstantExpr>(V1) || isa<ConstantExpr>(V2) ||
489       isa<GlobalValue>(V1) || isa<GlobalValue>(V2) ||
490       isa<UndefValue>(V1) || isa<UndefValue>(V2))
491     return EmptyR;
492
493   switch (V1->getType()->getTypeID()) {
494   default: assert(0 && "Unknown value type for constant folding!");
495   case Type::BoolTyID:    return BoolR;
496   case Type::PointerTyID: return NullPointerR;
497   case Type::SByteTyID:   return SByteR;
498   case Type::UByteTyID:   return UByteR;
499   case Type::ShortTyID:   return ShortR;
500   case Type::UShortTyID:  return UShortR;
501   case Type::IntTyID:     return IntR;
502   case Type::UIntTyID:    return UIntR;
503   case Type::LongTyID:    return LongR;
504   case Type::ULongTyID:   return ULongR;
505   case Type::FloatTyID:   return FloatR;
506   case Type::DoubleTyID:  return DoubleR;
507   }
508 }
509
510
511 //===----------------------------------------------------------------------===//
512 //                ConstantFold*Instruction Implementations
513 //===----------------------------------------------------------------------===//
514 //
515 // These methods contain the special case hackery required to symbolically
516 // evaluate some constant expression cases, and use the ConstantRules class to
517 // evaluate normal constants.
518 //
519 static unsigned getSize(const Type *Ty) {
520   unsigned S = Ty->getPrimitiveSize();
521   return S ? S : 8;  // Treat pointers at 8 bytes
522 }
523
524 Constant *llvm::ConstantFoldCastInstruction(const Constant *V,
525                                             const Type *DestTy) {
526   if (V->getType() == DestTy) return (Constant*)V;
527
528   // Cast of a global address to boolean is always true.
529   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
530     if (DestTy == Type::BoolTy)
531       // FIXME: When we support 'external weak' references, we have to prevent
532       // this transformation from happening.  In the meantime we avoid folding
533       // any cast of an external symbol.
534       if (!GV->isExternal())
535         return ConstantBool::True;
536   } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
537     if (CE->getOpcode() == Instruction::Cast) {
538       Constant *Op = const_cast<Constant*>(CE->getOperand(0));
539       // Try to not produce a cast of a cast, which is almost always redundant.
540       if (!Op->getType()->isFloatingPoint() &&
541           !CE->getType()->isFloatingPoint() &&
542           !DestTy->isFloatingPoint()) {
543         unsigned S1 = getSize(Op->getType()), S2 = getSize(CE->getType());
544         unsigned S3 = getSize(DestTy);
545         if (Op->getType() == DestTy && S3 >= S2)
546           return Op;
547         if (S1 >= S2 && S2 >= S3)
548           return ConstantExpr::getCast(Op, DestTy);
549         if (S1 <= S2 && S2 >= S3 && S1 <= S3)
550           return ConstantExpr::getCast(Op, DestTy);
551       }
552     } else if (CE->getOpcode() == Instruction::GetElementPtr) {
553       // If all of the indexes in the GEP are null values, there is no pointer
554       // adjustment going on.  We might as well cast the source pointer.
555       bool isAllNull = true;
556       for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
557         if (!CE->getOperand(i)->isNullValue()) {
558           isAllNull = false;
559           break;
560         }
561       if (isAllNull)
562         return ConstantExpr::getCast(CE->getOperand(0), DestTy);
563     }
564   } else if (isa<UndefValue>(V)) {
565     return UndefValue::get(DestTy);
566   }
567
568   // Check to see if we are casting an pointer to an aggregate to a pointer to
569   // the first element.  If so, return the appropriate GEP instruction.
570   if (const PointerType *PTy = dyn_cast<PointerType>(V->getType()))
571     if (const PointerType *DPTy = dyn_cast<PointerType>(DestTy)) {
572       std::vector<Value*> IdxList;
573       IdxList.push_back(Constant::getNullValue(Type::IntTy));
574       const Type *ElTy = PTy->getElementType();
575       while (ElTy != DPTy->getElementType()) {
576         if (const StructType *STy = dyn_cast<StructType>(ElTy)) {
577           if (STy->getNumElements() == 0) break;
578           ElTy = STy->getElementType(0);
579           IdxList.push_back(Constant::getNullValue(Type::UIntTy));
580         } else if (const SequentialType *STy = dyn_cast<SequentialType>(ElTy)) {
581           if (isa<PointerType>(ElTy)) break;  // Can't index into pointers!
582           ElTy = STy->getElementType();
583           IdxList.push_back(IdxList[0]);
584         } else {
585           break;
586         }
587       }
588
589       if (ElTy == DPTy->getElementType())
590         return ConstantExpr::getGetElementPtr(const_cast<Constant*>(V),IdxList);
591     }
592
593   ConstRules &Rules = ConstRules::get(V, V);
594
595   switch (DestTy->getTypeID()) {
596   case Type::BoolTyID:    return Rules.castToBool(V);
597   case Type::UByteTyID:   return Rules.castToUByte(V);
598   case Type::SByteTyID:   return Rules.castToSByte(V);
599   case Type::UShortTyID:  return Rules.castToUShort(V);
600   case Type::ShortTyID:   return Rules.castToShort(V);
601   case Type::UIntTyID:    return Rules.castToUInt(V);
602   case Type::IntTyID:     return Rules.castToInt(V);
603   case Type::ULongTyID:   return Rules.castToULong(V);
604   case Type::LongTyID:    return Rules.castToLong(V);
605   case Type::FloatTyID:   return Rules.castToFloat(V);
606   case Type::DoubleTyID:  return Rules.castToDouble(V);
607   case Type::PointerTyID:
608     return Rules.castToPointer(V, cast<PointerType>(DestTy));
609   default: return 0;
610   }
611 }
612
613 Constant *llvm::ConstantFoldSelectInstruction(const Constant *Cond,
614                                               const Constant *V1,
615                                               const Constant *V2) {
616   if (Cond == ConstantBool::True)
617     return const_cast<Constant*>(V1);
618   else if (Cond == ConstantBool::False)
619     return const_cast<Constant*>(V2);
620
621   if (isa<UndefValue>(V1)) return const_cast<Constant*>(V2);
622   if (isa<UndefValue>(V2)) return const_cast<Constant*>(V1);
623   if (isa<UndefValue>(Cond)) return const_cast<Constant*>(V1);
624   return 0;
625 }
626
627
628 /// IdxCompare - Compare the two constants as though they were getelementptr
629 /// indices.  This allows coersion of the types to be the same thing.
630 ///
631 /// If the two constants are the "same" (after coersion), return 0.  If the
632 /// first is less than the second, return -1, if the second is less than the
633 /// first, return 1.  If the constants are not integral, return -2.
634 ///
635 static int IdxCompare(Constant *C1, Constant *C2) {
636   if (C1 == C2) return 0;
637
638   // Ok, we found a different index.  Are either of the operands
639   // ConstantExprs?  If so, we can't do anything with them.
640   if (!isa<ConstantInt>(C1) || !isa<ConstantInt>(C2))
641     return -2; // don't know!
642   
643   // Ok, we have two differing integer indices.  Sign extend them to be the same
644   // type.  Long is always big enough, so we use it.
645   C1 = ConstantExpr::getSignExtend(C1, Type::LongTy);
646   C2 = ConstantExpr::getSignExtend(C2, Type::LongTy);
647   if (C1 == C2) return 0;  // Are they just differing types?
648
649   // If they are really different, now that they are the same type, then we
650   // found a difference!
651   if (cast<ConstantSInt>(C1)->getValue() < cast<ConstantSInt>(C2)->getValue())
652     return -1;
653   else
654     return 1;
655 }
656
657 /// evaluateRelation - This function determines if there is anything we can
658 /// decide about the two constants provided.  This doesn't need to handle simple
659 /// things like integer comparisons, but should instead handle ConstantExprs
660 /// and GlobalValuess.  If we can determine that the two constants have a
661 /// particular relation to each other, we should return the corresponding SetCC
662 /// code, otherwise return Instruction::BinaryOpsEnd.
663 ///
664 /// To simplify this code we canonicalize the relation so that the first
665 /// operand is always the most "complex" of the two.  We consider simple
666 /// constants (like ConstantInt) to be the simplest, followed by
667 /// GlobalValues, followed by ConstantExpr's (the most complex).
668 ///
669 static Instruction::BinaryOps evaluateRelation(const Constant *V1,
670                                                const Constant *V2) {
671   assert(V1->getType() == V2->getType() &&
672          "Cannot compare different types of values!");
673   if (V1 == V2) return Instruction::SetEQ;
674
675   if (!isa<ConstantExpr>(V1) && !isa<GlobalValue>(V1)) {
676     // If the first operand is simple, swap operands.
677     assert((isa<GlobalValue>(V2) || isa<ConstantExpr>(V2)) &&
678            "Simple cases should have been handled by caller!");
679     Instruction::BinaryOps SwappedRelation = evaluateRelation(V2, V1);
680     if (SwappedRelation != Instruction::BinaryOpsEnd)
681       return SetCondInst::getSwappedCondition(SwappedRelation);
682
683   } else if (const GlobalValue *CPR1 = dyn_cast<GlobalValue>(V1)){
684     if (isa<ConstantExpr>(V2)) {  // Swap as necessary.
685     Instruction::BinaryOps SwappedRelation = evaluateRelation(V2, V1);
686     if (SwappedRelation != Instruction::BinaryOpsEnd)
687       return SetCondInst::getSwappedCondition(SwappedRelation);
688     else
689       return Instruction::BinaryOpsEnd;
690     }
691
692     // Now we know that the RHS is a GlobalValue or simple constant,
693     // which (since the types must match) means that it's a ConstantPointerNull.
694     if (const GlobalValue *CPR2 = dyn_cast<GlobalValue>(V2)) {
695       assert(CPR1 != CPR2 &&
696              "GVs for the same value exist at different addresses??");
697       // FIXME: If both globals are external weak, they might both be null!
698       return Instruction::SetNE;
699     } else {
700       assert(isa<ConstantPointerNull>(V2) && "Canonicalization guarantee!");
701       // Global can never be null.  FIXME: if we implement external weak
702       // linkage, this is not necessarily true!
703       return Instruction::SetNE;
704     }
705
706   } else {
707     // Ok, the LHS is known to be a constantexpr.  The RHS can be any of a
708     // constantexpr, a CPR, or a simple constant.
709     const ConstantExpr *CE1 = cast<ConstantExpr>(V1);
710     Constant *CE1Op0 = CE1->getOperand(0);
711
712     switch (CE1->getOpcode()) {
713     case Instruction::Cast:
714       // If the cast is not actually changing bits, and the second operand is a
715       // null pointer, do the comparison with the pre-casted value.
716       if (V2->isNullValue() &&
717           CE1->getType()->isLosslesslyConvertibleTo(CE1Op0->getType()))
718         return evaluateRelation(CE1Op0,
719                                 Constant::getNullValue(CE1Op0->getType()));
720       break;
721
722     case Instruction::GetElementPtr:
723       // Ok, since this is a getelementptr, we know that the constant has a
724       // pointer type.  Check the various cases.
725       if (isa<ConstantPointerNull>(V2)) {
726         // If we are comparing a GEP to a null pointer, check to see if the base
727         // of the GEP equals the null pointer.
728         if (isa<GlobalValue>(CE1Op0)) {
729           // FIXME: this is not true when we have external weak references!
730           // No offset can go from a global to a null pointer.
731           return Instruction::SetGT;
732         } else if (isa<ConstantPointerNull>(CE1Op0)) {
733           // If we are indexing from a null pointer, check to see if we have any
734           // non-zero indices.
735           for (unsigned i = 1, e = CE1->getNumOperands(); i != e; ++i)
736             if (!CE1->getOperand(i)->isNullValue())
737               // Offsetting from null, must not be equal.
738               return Instruction::SetGT;
739           // Only zero indexes from null, must still be zero.
740           return Instruction::SetEQ;
741         }
742         // Otherwise, we can't really say if the first operand is null or not.
743       } else if (const GlobalValue *CPR2 = dyn_cast<GlobalValue>(V2)) {
744         if (isa<ConstantPointerNull>(CE1Op0)) {
745           // FIXME: This is not true with external weak references.
746           return Instruction::SetLT;
747         } else if (const GlobalValue *CPR1 = dyn_cast<GlobalValue>(CE1Op0)) {
748           if (CPR1 == CPR2) {
749             // If this is a getelementptr of the same global, then it must be
750             // different.  Because the types must match, the getelementptr could
751             // only have at most one index, and because we fold getelementptr's
752             // with a single zero index, it must be nonzero.
753             assert(CE1->getNumOperands() == 2 &&
754                    !CE1->getOperand(1)->isNullValue() &&
755                    "Suprising getelementptr!");
756             return Instruction::SetGT;
757           } else {
758             // If they are different globals, we don't know what the value is,
759             // but they can't be equal.
760             return Instruction::SetNE;
761           }
762         }
763       } else {
764         const ConstantExpr *CE2 = cast<ConstantExpr>(V2);
765         const Constant *CE2Op0 = CE2->getOperand(0);
766
767         // There are MANY other foldings that we could perform here.  They will
768         // probably be added on demand, as they seem needed.
769         switch (CE2->getOpcode()) {
770         default: break;
771         case Instruction::GetElementPtr:
772           // By far the most common case to handle is when the base pointers are
773           // obviously to the same or different globals.
774           if (isa<GlobalValue>(CE1Op0) && isa<GlobalValue>(CE2Op0)) {
775             if (CE1Op0 != CE2Op0) // Don't know relative ordering, but not equal
776               return Instruction::SetNE;
777             // Ok, we know that both getelementptr instructions are based on the
778             // same global.  From this, we can precisely determine the relative
779             // ordering of the resultant pointers.
780             unsigned i = 1;
781             
782             // Compare all of the operands the GEP's have in common.
783             for (;i != CE1->getNumOperands() && i != CE2->getNumOperands(); ++i)
784               switch (IdxCompare(CE1->getOperand(i), CE2->getOperand(i))) {
785               case -1: return Instruction::SetLT;
786               case 1:  return Instruction::SetGT;
787               case -2: return Instruction::BinaryOpsEnd;
788               }
789
790             // Ok, we ran out of things they have in common.  If any leftovers
791             // are non-zero then we have a difference, otherwise we are equal.
792             for (; i < CE1->getNumOperands(); ++i)
793               if (!CE1->getOperand(i)->isNullValue())
794                 return Instruction::SetGT;
795             for (; i < CE2->getNumOperands(); ++i)
796               if (!CE2->getOperand(i)->isNullValue())
797                 return Instruction::SetLT;
798             return Instruction::SetEQ;
799           }
800         }
801       }
802       
803     default:
804       break;
805     }
806   }
807
808   return Instruction::BinaryOpsEnd;
809 }
810
811 Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode,
812                                               const Constant *V1,
813                                               const Constant *V2) {
814   Constant *C = 0;
815   switch (Opcode) {
816   default:                   break;
817   case Instruction::Add:     C = ConstRules::get(V1, V2).add(V1, V2); break;
818   case Instruction::Sub:     C = ConstRules::get(V1, V2).sub(V1, V2); break;
819   case Instruction::Mul:     C = ConstRules::get(V1, V2).mul(V1, V2); break;
820   case Instruction::Div:     C = ConstRules::get(V1, V2).div(V1, V2); break;
821   case Instruction::Rem:     C = ConstRules::get(V1, V2).rem(V1, V2); break;
822   case Instruction::And:     C = ConstRules::get(V1, V2).op_and(V1, V2); break;
823   case Instruction::Or:      C = ConstRules::get(V1, V2).op_or (V1, V2); break;
824   case Instruction::Xor:     C = ConstRules::get(V1, V2).op_xor(V1, V2); break;
825   case Instruction::Shl:     C = ConstRules::get(V1, V2).shl(V1, V2); break;
826   case Instruction::Shr:     C = ConstRules::get(V1, V2).shr(V1, V2); break;
827   case Instruction::SetEQ:   C = ConstRules::get(V1, V2).equalto(V1, V2); break;
828   case Instruction::SetLT:   C = ConstRules::get(V1, V2).lessthan(V1, V2);break;
829   case Instruction::SetGT:   C = ConstRules::get(V1, V2).lessthan(V2, V1);break;
830   case Instruction::SetNE:   // V1 != V2  ===  !(V1 == V2)
831     C = ConstRules::get(V1, V2).equalto(V1, V2);
832     if (C) return ConstantExpr::get(Instruction::Xor, C, ConstantBool::True);
833     break;
834   case Instruction::SetLE:   // V1 <= V2  ===  !(V2 < V1)
835     C = ConstRules::get(V1, V2).lessthan(V2, V1);
836     if (C) return ConstantExpr::get(Instruction::Xor, C, ConstantBool::True);
837     break;
838   case Instruction::SetGE:   // V1 >= V2  ===  !(V1 < V2)
839     C = ConstRules::get(V1, V2).lessthan(V1, V2);
840     if (C) return ConstantExpr::get(Instruction::Xor, C, ConstantBool::True);
841     break;
842   }
843
844   // If we successfully folded the expression, return it now.
845   if (C) return C;
846
847   if (SetCondInst::isRelational(Opcode)) {
848     if (isa<UndefValue>(V1) || isa<UndefValue>(V2))
849       return UndefValue::get(Type::BoolTy);
850     switch (evaluateRelation(V1, V2)) {
851     default: assert(0 && "Unknown relational!");
852     case Instruction::BinaryOpsEnd:
853       break;  // Couldn't determine anything about these constants.
854     case Instruction::SetEQ:   // We know the constants are equal!
855       // If we know the constants are equal, we can decide the result of this
856       // computation precisely.
857       return ConstantBool::get(Opcode == Instruction::SetEQ ||
858                                Opcode == Instruction::SetLE ||
859                                Opcode == Instruction::SetGE);
860     case Instruction::SetLT:
861       // If we know that V1 < V2, we can decide the result of this computation
862       // precisely.
863       return ConstantBool::get(Opcode == Instruction::SetLT ||
864                                Opcode == Instruction::SetNE ||
865                                Opcode == Instruction::SetLE);
866     case Instruction::SetGT:
867       // If we know that V1 > V2, we can decide the result of this computation
868       // precisely.
869       return ConstantBool::get(Opcode == Instruction::SetGT ||
870                                Opcode == Instruction::SetNE ||
871                                Opcode == Instruction::SetGE);
872     case Instruction::SetLE:
873       // If we know that V1 <= V2, we can only partially decide this relation.
874       if (Opcode == Instruction::SetGT) return ConstantBool::False;
875       if (Opcode == Instruction::SetLT) return ConstantBool::True;
876       break;
877
878     case Instruction::SetGE:
879       // If we know that V1 >= V2, we can only partially decide this relation.
880       if (Opcode == Instruction::SetLT) return ConstantBool::False;
881       if (Opcode == Instruction::SetGT) return ConstantBool::True;
882       break;
883       
884     case Instruction::SetNE:
885       // If we know that V1 != V2, we can only partially decide this relation.
886       if (Opcode == Instruction::SetEQ) return ConstantBool::False;
887       if (Opcode == Instruction::SetNE) return ConstantBool::True;
888       break;
889     }
890   }
891
892   if (isa<UndefValue>(V1) || isa<UndefValue>(V2)) {
893     switch (Opcode) {
894     case Instruction::Add:
895     case Instruction::Sub:
896     case Instruction::Xor:
897       return UndefValue::get(V1->getType());
898
899     case Instruction::Mul:
900     case Instruction::And:
901       return Constant::getNullValue(V1->getType());
902     case Instruction::Div:
903     case Instruction::Rem:
904       if (!isa<UndefValue>(V2))     // undef/X -> 0
905         return Constant::getNullValue(V1->getType());
906       return const_cast<Constant*>(V2);                // X/undef -> undef
907     case Instruction::Or:           // X|undef -> -1
908       return ConstantInt::getAllOnesValue(V1->getType());
909     case Instruction::Shr:
910       if (!isa<UndefValue>(V2)) {
911         if (V1->getType()->isSigned())
912           return const_cast<Constant*>(V1);  // undef >>s X -> undef
913         // undef >>u X -> 0
914       } else if (isa<UndefValue>(V1)) {
915         return const_cast<Constant*>(V1);   //  undef >> undef -> undef
916       } else {
917         if (V1->getType()->isSigned())
918           return const_cast<Constant*>(V1);  // X >>s undef -> X
919         // X >>u undef -> 0
920       }
921       return Constant::getNullValue(V1->getType());
922
923     case Instruction::Shl:
924       // undef << X -> 0   X << undef -> 0
925       return Constant::getNullValue(V1->getType());
926     }
927   }
928
929   if (const ConstantExpr *CE1 = dyn_cast<ConstantExpr>(V1)) {
930     if (const ConstantExpr *CE2 = dyn_cast<ConstantExpr>(V2)) {
931       // There are many possible foldings we could do here.  We should probably
932       // at least fold add of a pointer with an integer into the appropriate
933       // getelementptr.  This will improve alias analysis a bit.
934
935
936
937
938     } else {
939       // Just implement a couple of simple identities.
940       switch (Opcode) {
941       case Instruction::Add:
942         if (V2->isNullValue()) return const_cast<Constant*>(V1);  // X + 0 == X
943         break;
944       case Instruction::Sub:
945         if (V2->isNullValue()) return const_cast<Constant*>(V1);  // X - 0 == X
946         break;
947       case Instruction::Mul:
948         if (V2->isNullValue()) return const_cast<Constant*>(V2);  // X * 0 == 0
949         if (const ConstantInt *CI = dyn_cast<ConstantInt>(V2))
950           if (CI->getRawValue() == 1)
951             return const_cast<Constant*>(V1);                     // X * 1 == X
952         break;
953       case Instruction::Div:
954         if (const ConstantInt *CI = dyn_cast<ConstantInt>(V2))
955           if (CI->getRawValue() == 1)
956             return const_cast<Constant*>(V1);                     // X / 1 == X
957         break;
958       case Instruction::Rem:
959         if (const ConstantInt *CI = dyn_cast<ConstantInt>(V2))
960           if (CI->getRawValue() == 1)
961             return Constant::getNullValue(CI->getType()); // X % 1 == 0
962         break;
963       case Instruction::And:
964         if (cast<ConstantIntegral>(V2)->isAllOnesValue())
965           return const_cast<Constant*>(V1);                       // X & -1 == X
966         if (V2->isNullValue()) return const_cast<Constant*>(V2);  // X & 0 == 0
967         if (CE1->getOpcode() == Instruction::Cast &&
968             isa<GlobalValue>(CE1->getOperand(0))) {
969           GlobalValue *CPR = cast<GlobalValue>(CE1->getOperand(0));
970
971           // Functions are at least 4-byte aligned.  If and'ing the address of a
972           // function with a constant < 4, fold it to zero.
973           if (const ConstantInt *CI = dyn_cast<ConstantInt>(V2))
974             if (CI->getRawValue() < 4 && isa<Function>(CPR))
975               return Constant::getNullValue(CI->getType());
976         }
977         break;
978       case Instruction::Or:
979         if (V2->isNullValue()) return const_cast<Constant*>(V1);  // X | 0 == X
980         if (cast<ConstantIntegral>(V2)->isAllOnesValue())
981           return const_cast<Constant*>(V2);  // X | -1 == -1
982         break;
983       case Instruction::Xor:
984         if (V2->isNullValue()) return const_cast<Constant*>(V1);  // X ^ 0 == X
985         break;
986       }
987     }
988
989   } else if (const ConstantExpr *CE2 = dyn_cast<ConstantExpr>(V2)) {
990     // If V2 is a constant expr and V1 isn't, flop them around and fold the
991     // other way if possible.
992     switch (Opcode) {
993     case Instruction::Add:
994     case Instruction::Mul:
995     case Instruction::And:
996     case Instruction::Or:
997     case Instruction::Xor:
998     case Instruction::SetEQ:
999     case Instruction::SetNE:
1000       // No change of opcode required.
1001       return ConstantFoldBinaryInstruction(Opcode, V2, V1);
1002
1003     case Instruction::SetLT:
1004     case Instruction::SetGT:
1005     case Instruction::SetLE:
1006     case Instruction::SetGE:
1007       // Change the opcode as necessary to swap the operands.
1008       Opcode = SetCondInst::getSwappedCondition((Instruction::BinaryOps)Opcode);
1009       return ConstantFoldBinaryInstruction(Opcode, V2, V1);
1010
1011     case Instruction::Shl:
1012     case Instruction::Shr:
1013     case Instruction::Sub:
1014     case Instruction::Div:
1015     case Instruction::Rem:
1016     default:  // These instructions cannot be flopped around.
1017       break;
1018     }
1019   }
1020   return 0;
1021 }
1022
1023 Constant *llvm::ConstantFoldGetElementPtr(const Constant *C,
1024                                           const std::vector<Value*> &IdxList) {
1025   if (IdxList.size() == 0 ||
1026       (IdxList.size() == 1 && cast<Constant>(IdxList[0])->isNullValue()))
1027     return const_cast<Constant*>(C);
1028
1029   if (isa<UndefValue>(C)) {
1030     const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1031                                                        true);
1032     assert(Ty != 0 && "Invalid indices for GEP!");
1033     return UndefValue::get(PointerType::get(Ty));
1034   }
1035
1036   Constant *Idx0 = cast<Constant>(IdxList[0]);
1037   if (C->isNullValue()) {
1038     bool isNull = true;
1039     for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1040       if (!cast<Constant>(IdxList[i])->isNullValue()) {
1041         isNull = false;
1042         break;
1043       }
1044     if (isNull) {
1045       const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1046                                                          true);
1047       assert(Ty != 0 && "Invalid indices for GEP!");
1048       return ConstantPointerNull::get(PointerType::get(Ty));
1049     }
1050
1051     if (IdxList.size() == 1) {
1052       const Type *ElTy = cast<PointerType>(C->getType())->getElementType();
1053       if (unsigned ElSize = ElTy->getPrimitiveSize()) {
1054         // gep null, C is equal to C*sizeof(nullty).  If nullty is a known llvm
1055         // type, we can statically fold this.
1056         Constant *R = ConstantUInt::get(Type::UIntTy, ElSize);
1057         R = ConstantExpr::getCast(R, Idx0->getType());
1058         R = ConstantExpr::getMul(R, Idx0);
1059         return ConstantExpr::getCast(R, C->getType());
1060       }
1061     }
1062   }
1063
1064   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(const_cast<Constant*>(C))) {
1065     // Combine Indices - If the source pointer to this getelementptr instruction
1066     // is a getelementptr instruction, combine the indices of the two
1067     // getelementptr instructions into a single instruction.
1068     //
1069     if (CE->getOpcode() == Instruction::GetElementPtr) {
1070       const Type *LastTy = 0;
1071       for (gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
1072            I != E; ++I)
1073         LastTy = *I;
1074
1075       if ((LastTy && isa<ArrayType>(LastTy)) || Idx0->isNullValue()) {
1076         std::vector<Value*> NewIndices;
1077         NewIndices.reserve(IdxList.size() + CE->getNumOperands());
1078         for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
1079           NewIndices.push_back(CE->getOperand(i));
1080
1081         // Add the last index of the source with the first index of the new GEP.
1082         // Make sure to handle the case when they are actually different types.
1083         Constant *Combined = CE->getOperand(CE->getNumOperands()-1);
1084         // Otherwise it must be an array.
1085         if (!Idx0->isNullValue()) {
1086           const Type *IdxTy = Combined->getType();
1087           if (IdxTy != Idx0->getType()) IdxTy = Type::LongTy;
1088           Combined = 
1089             ConstantExpr::get(Instruction::Add,
1090                               ConstantExpr::getCast(Idx0, IdxTy),
1091                               ConstantExpr::getCast(Combined, IdxTy));
1092         }
1093         
1094         NewIndices.push_back(Combined);
1095         NewIndices.insert(NewIndices.end(), IdxList.begin()+1, IdxList.end());
1096         return ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices);
1097       }
1098     }
1099
1100     // Implement folding of:
1101     //    int* getelementptr ([2 x int]* cast ([3 x int]* %X to [2 x int]*),
1102     //                        long 0, long 0)
1103     // To: int* getelementptr ([3 x int]* %X, long 0, long 0)
1104     //
1105     if (CE->getOpcode() == Instruction::Cast && IdxList.size() > 1 &&
1106         Idx0->isNullValue())
1107       if (const PointerType *SPT = 
1108           dyn_cast<PointerType>(CE->getOperand(0)->getType()))
1109         if (const ArrayType *SAT = dyn_cast<ArrayType>(SPT->getElementType()))
1110           if (const ArrayType *CAT =
1111               dyn_cast<ArrayType>(cast<PointerType>(C->getType())->getElementType()))
1112             if (CAT->getElementType() == SAT->getElementType())
1113               return ConstantExpr::getGetElementPtr(
1114                       (Constant*)CE->getOperand(0), IdxList);
1115   }
1116   return 0;
1117 }
1118