Devirtualizing Value destructor (PR889). Patch by Pawel Kunio!
[oota-llvm.git] / include / llvm / Constant.h
1 //===-- llvm/Constant.h - Constant class definition -------------*- C++ -*-===//
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 contains the declaration of the Constant class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CONSTANT_H
15 #define LLVM_CONSTANT_H
16
17 #include "llvm/User.h"
18
19 namespace llvm {
20
21 /// This is an important base class in LLVM. It provides the common facilities
22 /// of all constant values in an LLVM program. A constant is a value that is
23 /// immutable at runtime. Functions are constants because their address is
24 /// immutable. Same with global variables. 
25 /// 
26 /// All constants share the capabilities provided in this class. All constants
27 /// can have a null value. They can have an operand list. Constants can be
28 /// simple (integer and floating point values), complex (arrays and structures),
29 /// or expression based (computations yielding a constant value composed of 
30 /// only certain operators and other constant values).
31 /// 
32 /// Note that Constants are immutable (once created they never change) 
33 /// and are fully shared by structural equivalence.  This means that two 
34 /// structurally equivalent constants will always have the same address.  
35 /// Constant's are created on demand as needed and never deleted: thus clients 
36 /// don't have to worry about the lifetime of the objects.
37 /// @brief LLVM Constant Representation
38 class Constant : public User {
39   void operator=(const Constant &);     // Do not implement
40   Constant(const Constant &);           // Do not implement
41 protected:
42   Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps)
43     : User(Ty, vty, Ops, NumOps) {}
44
45   void destroyConstantImpl();
46   static void destroyThis(Constant*v) {
47     User::destroyThis(v);
48   }
49   friend class Value;
50 public:
51   /// Static constructor to get a '0' constant of arbitrary type...
52   ///
53   static Constant *getNullValue(const Type *Ty);
54
55   /// Static constructor to get a '-1' constant.  This supports integers and
56   /// vectors.
57   ///
58   static Constant *getAllOnesValue(const Type *Ty);
59   
60   /// isNullValue - Return true if this is the value that would be returned by
61   /// getNullValue.
62   virtual bool isNullValue() const = 0;
63
64   virtual void print(std::ostream &O) const;
65   void print(std::ostream *O) const { if (O) print(*O); }
66   
67   /// canTrap - Return true if evaluation of this constant could trap.  This is
68   /// true for things like constant expressions that could divide by zero.
69   bool canTrap() const;
70
71   /// ContaintsRelocations - Return true if the constant value contains
72   /// relocations which cannot be resolved at compile time.
73   bool ContainsRelocations() const;
74
75   // Specialize get/setOperand for Constant's as their operands are always
76   // constants as well.
77   Constant *getOperand(unsigned i) {
78     return static_cast<Constant*>(User::getOperand(i));
79   }
80   const Constant *getOperand(unsigned i) const {
81     return static_cast<const Constant*>(User::getOperand(i));
82   }
83   void setOperand(unsigned i, Constant *C) {
84     User::setOperand(i, C);
85   }
86
87   /// destroyConstant - Called if some element of this constant is no longer
88   /// valid.  At this point only other constants may be on the use_list for this
89   /// constant.  Any constants on our Use list must also be destroy'd.  The
90   /// implementation must be sure to remove the constant from the list of
91   /// available cached constants.  Implementations should call
92   /// destroyConstantImpl as the last thing they do, to destroy all users and
93   /// delete this.
94   virtual void destroyConstant() { assert(0 && "Not reached!"); }
95
96   //// Methods for support type inquiry through isa, cast, and dyn_cast:
97   static inline bool classof(const Constant *) { return true; }
98   static inline bool classof(const GlobalValue *) { return true; }
99   static inline bool classof(const Value *V) {
100     return V->getValueID() >= ConstantFirstVal &&
101            V->getValueID() <= ConstantLastVal;
102   }
103
104   /// replaceUsesOfWithOnConstant - This method is a special form of
105   /// User::replaceUsesOfWith (which does not work on constants) that does work
106   /// on constants.  Basically this method goes through the trouble of building
107   /// a new constant that is equivalent to the current one, with all uses of
108   /// From replaced with uses of To.  After this construction is completed, all
109   /// of the users of 'this' are replaced to use the new constant, and then
110   /// 'this' is deleted.  In general, you should not call this method, instead,
111   /// use Value::replaceAllUsesWith, which automatically dispatches to this
112   /// method as needed.
113   ///
114   virtual void replaceUsesOfWithOnConstant(Value *, Value *, Use *) {
115     // Provide a default implementation for constants (like integers) that
116     // cannot use any other values.  This cannot be called at runtime, but needs
117     // to be here to avoid link errors.
118     assert(getNumOperands() == 0 && "replaceUsesOfWithOnConstant must be "
119            "implemented for all constants that have operands!");
120     assert(0 && "Constants that do not have operands cannot be using 'From'!");
121   }
122
123   /// getStringValue - Turn an LLVM constant pointer that eventually points to a
124   /// global into a string value.  Return an empty string if we can't do it.
125   /// Parameter Chop determines if the result is chopped at the first null
126   /// terminator.
127   ///
128   std::string getStringValue(bool Chop = true, unsigned Offset = 0);
129 };
130
131 } // End llvm namespace
132
133 #endif