Remove debugging info
[oota-llvm.git] / lib / VMCore / ConstantFold.cpp
index e0a4ffbfb059ba3d2178eb37676b4aeb46481e49..7438319000171b76b4164211ce9082c77a4e5abf 100644 (file)
@@ -8,6 +8,9 @@
 
 namespace opt {
 
+AnnotationID ConstRules::AID(AnnotationManager::getID("opt::ConstRules",
+                                                     &ConstRules::find));
+
 //===----------------------------------------------------------------------===//
 //                             TemplateRules Class
 //===----------------------------------------------------------------------===//
@@ -27,7 +30,7 @@ class TemplateRules : public ConstRules {
   // Redirecting functions that cast to the appropriate types
   //===--------------------------------------------------------------------===//
 
-  virtual ConstPoolVal *not(const ConstPoolVal *V) const {
+  virtual ConstPoolVal *op_not(const ConstPoolVal *V) const {
     return SubClassName::Not((const ArgType *)V);
   }
 
@@ -42,11 +45,55 @@ class TemplateRules : public ConstRules {
     return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2);  
   }
 
+  virtual ConstPoolVal *mul(const ConstPoolVal *V1, 
+                            const ConstPoolVal *V2) const { 
+    return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2);  
+  }
+
   virtual ConstPoolBool *lessthan(const ConstPoolVal *V1, 
                                   const ConstPoolVal *V2) const { 
     return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2);
   }
 
+  // Casting operators.  ick
+  virtual ConstPoolBool *castToBool(const ConstPoolVal *V) const {
+    return SubClassName::CastToBool((const ArgType*)V);
+  }
+  virtual ConstPoolSInt *castToSByte(const ConstPoolVal *V) const {
+    return SubClassName::CastToSByte((const ArgType*)V);
+  }
+  virtual ConstPoolUInt *castToUByte(const ConstPoolVal *V) const {
+    return SubClassName::CastToUByte((const ArgType*)V);
+  }
+  virtual ConstPoolSInt *castToShort(const ConstPoolVal *V) const {
+    return SubClassName::CastToShort((const ArgType*)V);
+  }
+  virtual ConstPoolUInt *castToUShort(const ConstPoolVal *V) const {
+    return SubClassName::CastToUShort((const ArgType*)V);
+  }
+  virtual ConstPoolSInt *castToInt(const ConstPoolVal *V) const {
+    return SubClassName::CastToInt((const ArgType*)V);
+  }
+  virtual ConstPoolUInt *castToUInt(const ConstPoolVal *V) const {
+    return SubClassName::CastToUInt((const ArgType*)V);
+  }
+  virtual ConstPoolSInt *castToLong(const ConstPoolVal *V) const {
+    return SubClassName::CastToLong((const ArgType*)V);
+  }
+  virtual ConstPoolUInt *castToULong(const ConstPoolVal *V) const {
+    return SubClassName::CastToULong((const ArgType*)V);
+  }
+  virtual ConstPoolFP   *castToFloat(const ConstPoolVal *V) const {
+    return SubClassName::CastToFloat((const ArgType*)V);
+  }
+  virtual ConstPoolFP   *castToDouble(const ConstPoolVal *V) const {
+    return SubClassName::CastToDouble((const ArgType*)V);
+  }
+  virtual ConstPoolPointer *castToPointer(const ConstPoolVal *V, 
+                                          const PointerType *Ty) const {
+    return SubClassName::CastToPointer((const ArgType*)V, Ty);
+  }
+
   //===--------------------------------------------------------------------===//
   // Default "noop" implementations
   //===--------------------------------------------------------------------===//
@@ -56,14 +103,30 @@ class TemplateRules : public ConstRules {
   inline static ConstPoolVal *Add(const ArgType *V1, const ArgType *V2) {
     return 0;
   }
-
   inline static ConstPoolVal *Sub(const ArgType *V1, const ArgType *V2) {
     return 0;
   }
-
+  inline static ConstPoolVal *Mul(const ArgType *V1, const ArgType *V2) {
+    return 0;
+  }
   inline static ConstPoolBool *LessThan(const ArgType *V1, const ArgType *V2) {
     return 0;
   }
+
+  // Casting operators.  ick
+  inline static ConstPoolBool *CastToBool  (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolSInt *CastToSByte (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolUInt *CastToUByte (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolSInt *CastToShort (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolUInt *CastToUShort(const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolSInt *CastToInt   (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolUInt *CastToUInt  (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolSInt *CastToLong  (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolUInt *CastToULong (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolFP   *CastToFloat (const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolFP   *CastToDouble(const ConstPoolVal *V) { return 0; }
+  inline static ConstPoolPointer *CastToPointer(const ConstPoolVal *,
+                                                const PointerType *) {return 0;}
 };
 
 
@@ -74,9 +137,8 @@ class TemplateRules : public ConstRules {
 //
 // EmptyRules provides a concrete base class of ConstRules that does nothing
 //
-static    // EmptyInst is static
 struct EmptyRules : public TemplateRules<ConstPoolVal, EmptyRules> {
-} EmptyInst;
+};
 
 
 
@@ -86,25 +148,83 @@ struct EmptyRules : public TemplateRules<ConstPoolVal, EmptyRules> {
 //
 // BoolRules provides a concrete base class of ConstRules for the 'bool' type.
 //
-static   // BoolTyInst is static...
 struct BoolRules : public TemplateRules<ConstPoolBool, BoolRules> {
 
   inline static ConstPoolVal *Not(const ConstPoolBool *V) { 
-    return new ConstPoolBool(!V->getValue());
+    return ConstPoolBool::get(!V->getValue());
   }
 
-  inline static ConstPoolVal *Or(const ConstPoolBool *V1, 
-                                 const ConstPoolBool *V2) {
-    bool Result = V1->getValue() | V2->getValue();
-    return new ConstPoolBool(Result);
+  inline static ConstPoolVal *Or(const ConstPoolBool *V1,
+                                const ConstPoolBool *V2) {
+    return ConstPoolBool::get(V1->getValue() | V2->getValue());
   }
 
   inline static ConstPoolVal *And(const ConstPoolBool *V1, 
                                   const ConstPoolBool *V2) {
-    bool Result = V1->getValue() & V2->getValue();
-    return new ConstPoolBool(Result);
+    return ConstPoolBool::get(V1->getValue() & V2->getValue());
   }
-} BoolTyInst;
+};
+
+
+//===----------------------------------------------------------------------===//
+//                            PointerRules Class
+//===----------------------------------------------------------------------===//
+//
+// PointerRules provides a concrete base class of ConstRules for pointer types
+//
+struct PointerRules : public TemplateRules<ConstPoolPointer, PointerRules> {
+  inline static ConstPoolBool *CastToBool  (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolBool::False;
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolSInt *CastToSByte (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolSInt::get(Type::SByteTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolUInt *CastToUByte (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolUInt::get(Type::UByteTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolSInt *CastToShort (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolSInt::get(Type::ShortTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolUInt *CastToUShort(const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolUInt::get(Type::UShortTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolSInt *CastToInt   (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolSInt::get(Type::IntTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolUInt *CastToUInt  (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolUInt::get(Type::UIntTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolSInt *CastToLong  (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolSInt::get(Type::LongTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolUInt *CastToULong (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolUInt::get(Type::ULongTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolFP   *CastToFloat (const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolFP::get(Type::FloatTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+  inline static ConstPoolFP   *CastToDouble(const ConstPoolVal *V) {
+    if (V->isNullValue()) return ConstPoolFP::get(Type::DoubleTy, 0);
+    return 0;  // Can't const prop other types of pointers
+  }
+
+  inline static ConstPoolPointer *CastToPointer(const ConstPoolPointer *V,
+                                                const PointerType *PTy) {
+    if (V->isNullValue())
+      return ConstPoolPointerNull::get(PTy);
+    return 0;  // Can't const prop other types of pointers
+  }
+};
 
 
 //===----------------------------------------------------------------------===//
@@ -115,34 +235,67 @@ struct BoolRules : public TemplateRules<ConstPoolBool, BoolRules> {
 // different types.  This allows the C++ compiler to automatically generate our
 // constant handling operations in a typesafe and accurate manner.
 //
-template<class ConstPoolClass, class BuiltinType, const Type **Ty>
+template<class ConstPoolClass, class BuiltinType, Type **Ty>
 struct DirectRules 
   : public TemplateRules<ConstPoolClass, 
                          DirectRules<ConstPoolClass, BuiltinType, Ty> > {
 
   inline static ConstPoolVal *Not(const ConstPoolClass *V) { 
-    return new ConstPoolClass(*Ty, !(BuiltinType)V->getValue());;
+    return ConstPoolClass::get(*Ty, !(BuiltinType)V->getValue());;
   }
 
   inline static ConstPoolVal *Add(const ConstPoolClass *V1, 
                                   const ConstPoolClass *V2) {
     BuiltinType Result = (BuiltinType)V1->getValue() + 
                          (BuiltinType)V2->getValue();
-    return new ConstPoolClass(*Ty, Result);
+    return ConstPoolClass::get(*Ty, Result);
   }
 
   inline static ConstPoolVal *Sub(const ConstPoolClass *V1, 
                                   const ConstPoolClass *V2) {
     BuiltinType Result = (BuiltinType)V1->getValue() -
                          (BuiltinType)V2->getValue();
-    return new ConstPoolClass(*Ty, Result);
+    return ConstPoolClass::get(*Ty, Result);
+  }
+
+  inline static ConstPoolVal *Mul(const ConstPoolClass *V1, 
+                                  const ConstPoolClass *V2) {
+    BuiltinType Result = (BuiltinType)V1->getValue() *
+                         (BuiltinType)V2->getValue();
+    return ConstPoolClass::get(*Ty, Result);
   }
 
   inline static ConstPoolBool *LessThan(const ConstPoolClass *V1, 
                                         const ConstPoolClass *V2) {
     bool Result = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue();
-    return new ConstPoolBool(Result);
+    return ConstPoolBool::get(Result);
   } 
+
+  inline static ConstPoolPointer *CastToPointer(const ConstPoolClass *V,
+                                                const PointerType *PTy) {
+    if (V->isNullValue())    // Is it a FP or Integral null value?
+      return ConstPoolPointerNull::get(PTy);
+    return 0;  // Can't const prop other types of pointers
+  }
+
+  // Casting operators.  ick
+#define DEF_CAST(TYPE, CLASS, CTYPE) \
+  inline static CLASS *CastTo##TYPE  (const ConstPoolClass *V) {    \
+    return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \
+  }
+
+  DEF_CAST(Bool  , ConstPoolBool, bool)
+  DEF_CAST(SByte , ConstPoolSInt, signed char)
+  DEF_CAST(UByte , ConstPoolUInt, unsigned char)
+  DEF_CAST(Short , ConstPoolSInt, signed short)
+  DEF_CAST(UShort, ConstPoolUInt, unsigned short)
+  DEF_CAST(Int   , ConstPoolSInt, signed int)
+  DEF_CAST(UInt  , ConstPoolUInt, unsigned int)
+  DEF_CAST(Long  , ConstPoolSInt, int64_t)
+  DEF_CAST(ULong , ConstPoolUInt, uint64_t)
+  DEF_CAST(Float , ConstPoolFP  , float)
+  DEF_CAST(Double, ConstPoolFP  , double)
+#undef DEF_CAST
 };
 
 //===----------------------------------------------------------------------===//
@@ -153,41 +306,40 @@ struct DirectRules
 // code.  Thank goodness C++ compilers are great at stomping out layers of 
 // templates... can you imagine having to do this all by hand? (/me is lazy :)
 //
-static DirectRules<ConstPoolSInt,   signed char , &Type::SByteTy>  SByteTyInst;
-static DirectRules<ConstPoolUInt, unsigned char , &Type::UByteTy>  UByteTyInst;
-static DirectRules<ConstPoolSInt,   signed short, &Type::ShortTy>  ShortTyInst;
-static DirectRules<ConstPoolUInt, unsigned short, &Type::UShortTy> UShortTyInst;
-static DirectRules<ConstPoolSInt,   signed int  , &Type::IntTy>    IntTyInst;
-static DirectRules<ConstPoolUInt, unsigned int  , &Type::UIntTy>   UIntTyInst;
-static DirectRules<ConstPoolSInt,  int64_t      , &Type::LongTy>   LongTyInst;
-static DirectRules<ConstPoolUInt, uint64_t      , &Type::ULongTy>  ULongTyInst;
-static DirectRules<ConstPoolFP  , float         , &Type::FloatTy>  FloatTyInst;
-static DirectRules<ConstPoolFP  , double        , &Type::DoubleTy> DoubleTyInst;
-
 
 // ConstRules::find - Return the constant rules that take care of the specified
-// type.  Note that this is cached in the Type value itself, so switch statement
-// is only hit at most once per type.
+// type.
 //
-const ConstRules *ConstRules::find(const Type *Ty) {
-  const ConstRules *Result;
+Annotation *ConstRules::find(AnnotationID AID, const Annotable *TyA, void *) {
+  assert(AID == ConstRules::AID && "Bad annotation for factory!");
+  const Type *Ty = cast<Type>((const Value*)TyA);
+  
   switch (Ty->getPrimitiveID()) {
-  case Type::BoolTyID:   Result = &BoolTyInst;   break;
-  case Type::SByteTyID:  Result = &SByteTyInst;  break;
-  case Type::UByteTyID:  Result = &UByteTyInst;  break;
-  case Type::ShortTyID:  Result = &ShortTyInst;  break;
-  case Type::UShortTyID: Result = &UShortTyInst; break;
-  case Type::IntTyID:    Result = &IntTyInst;    break;
-  case Type::UIntTyID:   Result = &UIntTyInst;   break;
-  case Type::LongTyID:   Result = &LongTyInst;   break;
-  case Type::ULongTyID:  Result = &ULongTyInst;  break;
-  case Type::FloatTyID:  Result = &FloatTyInst;  break;
-  case Type::DoubleTyID: Result = &DoubleTyInst; break;
-  default:               Result = &EmptyInst;    break;
-  }
-
-  Ty->setConstRules(Result);   // Cache the value for future short circuiting!
-  return Result;
+  case Type::BoolTyID:    return new BoolRules();
+  case Type::PointerTyID: return new PointerRules();
+  case Type::SByteTyID:
+    return new DirectRules<ConstPoolSInt,   signed char , &Type::SByteTy>();
+  case Type::UByteTyID:
+    return new DirectRules<ConstPoolUInt, unsigned char , &Type::UByteTy>();
+  case Type::ShortTyID:
+    return new DirectRules<ConstPoolSInt,   signed short, &Type::ShortTy>();
+  case Type::UShortTyID:
+    return new DirectRules<ConstPoolUInt, unsigned short, &Type::UShortTy>();
+  case Type::IntTyID:
+    return new DirectRules<ConstPoolSInt,   signed int  , &Type::IntTy>();
+  case Type::UIntTyID:
+    return new DirectRules<ConstPoolUInt, unsigned int  , &Type::UIntTy>();
+  case Type::LongTyID:
+    return new DirectRules<ConstPoolSInt,  int64_t      , &Type::LongTy>();
+  case Type::ULongTyID:
+    return new DirectRules<ConstPoolUInt, uint64_t      , &Type::ULongTy>();
+  case Type::FloatTyID:
+    return new DirectRules<ConstPoolFP  , float         , &Type::FloatTy>();
+  case Type::DoubleTyID:
+    return new DirectRules<ConstPoolFP  , double        , &Type::DoubleTy>();
+  default:
+    return new EmptyRules();
+  }
 }