Make NamedMDNode not be a subclass of Value, and simplify the interface
[oota-llvm.git] / include / llvm / Metadata.h
1 //===-- llvm/Metadata.h - Metadata definitions ------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 /// @file
11 /// This file contains the declarations for metadata subclasses.
12 /// They represent the different flavors of metadata that live in LLVM.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_METADATA_H
17 #define LLVM_METADATA_H
18
19 #include "llvm/Value.h"
20 #include "llvm/ADT/FoldingSet.h"
21 #include "llvm/ADT/ilist_node.h"
22
23 namespace llvm {
24 class Constant;
25 class Instruction;
26 class LLVMContext;
27 class Module;
28 template <typename T> class SmallVectorImpl;
29 template<typename ValueSubClass, typename ItemParentClass>
30   class SymbolTableListTraits;
31   
32   
33 //===----------------------------------------------------------------------===//
34 /// MDString - a single uniqued string.
35 /// These are used to efficiently contain a byte sequence for metadata.
36 /// MDString is always unnamd.
37 class MDString : public Value {
38   MDString(const MDString &);            // DO NOT IMPLEMENT
39
40   StringRef Str;
41 protected:
42   explicit MDString(LLVMContext &C, StringRef S);
43
44 public:
45   static MDString *get(LLVMContext &Context, StringRef Str);
46   static MDString *get(LLVMContext &Context, const char *Str) {
47     return get(Context, Str ? StringRef(Str) : StringRef());
48   }
49
50   StringRef getString() const { return Str; }
51
52   unsigned getLength() const { return (unsigned)Str.size(); }
53
54   typedef StringRef::iterator iterator;
55   
56   /// begin() - Pointer to the first byte of the string.
57   ///
58   iterator begin() const { return Str.begin(); }
59
60   /// end() - Pointer to one byte past the end of the string.
61   ///
62   iterator end() const { return Str.end(); }
63
64   /// Methods for support type inquiry through isa, cast, and dyn_cast:
65   static inline bool classof(const MDString *) { return true; }
66   static bool classof(const Value *V) {
67     return V->getValueID() == MDStringVal;
68   }
69 };
70
71   
72 class MDNodeOperand;
73   
74 //===----------------------------------------------------------------------===//
75 /// MDNode - a tuple of other values.
76 class MDNode : public Value, public FoldingSetNode {
77   MDNode(const MDNode &);                // DO NOT IMPLEMENT
78   void operator=(const MDNode &);        // DO NOT IMPLEMENT
79   friend class MDNodeOperand;
80   friend class LLVMContextImpl;
81
82   /// NumOperands - This many 'MDNodeOperand' items are co-allocated onto the
83   /// end of this MDNode.
84   unsigned NumOperands;
85   
86   // Subclass data enums.
87   enum {
88     /// FunctionLocalBit - This bit is set if this MDNode is function local.
89     /// This is true when it (potentially transitively) contains a reference to
90     /// something in a function, like an argument, basicblock, or instruction.
91     FunctionLocalBit = 1 << 0,
92     
93     /// NotUniquedBit - This is set on MDNodes that are not uniqued because they
94     /// have a null operand.
95     NotUniquedBit    = 1 << 1,
96     
97     /// DestroyFlag - This bit is set by destroy() so the destructor can assert
98     /// that the node isn't being destroyed with a plain 'delete'.
99     DestroyFlag      = 1 << 2
100   };
101   
102   // FunctionLocal enums.
103   enum FunctionLocalness {
104     FL_Unknown = -1,
105     FL_No = 0,
106     FL_Yes = 1
107   };
108   
109   /// replaceOperand - Replace each instance of F from the operand list of this 
110   /// node with T.
111   void replaceOperand(MDNodeOperand *Op, Value *NewVal);
112   ~MDNode();
113
114 protected:
115   explicit MDNode(LLVMContext &C, Value *const *Vals, unsigned NumVals,
116                   bool isFunctionLocal);
117   
118   static MDNode *getMDNode(LLVMContext &C, Value *const *Vals, unsigned NumVals,
119                            FunctionLocalness FL, bool Insert = true);
120 public:
121   // Constructors and destructors.
122   static MDNode *get(LLVMContext &Context, Value *const *Vals,
123                      unsigned NumVals);
124   // getWhenValsUnresolved - Construct MDNode determining function-localness
125   // from isFunctionLocal argument, not by analyzing Vals.
126   static MDNode *getWhenValsUnresolved(LLVMContext &Context, Value *const *Vals,
127                                        unsigned NumVals, bool isFunctionLocal);
128                                        
129   static MDNode *getIfExists(LLVMContext &Context, Value *const *Vals,
130                              unsigned NumVals);
131   
132   /// getOperand - Return specified operand.
133   Value *getOperand(unsigned i) const;
134   
135   /// getNumOperands - Return number of MDNode operands.
136   unsigned getNumOperands() const { return NumOperands; }
137   
138   /// isFunctionLocal - Return whether MDNode is local to a function.
139   /// Note: MDNodes are designated as function-local when created, and keep
140   ///       that designation even if their operands are modified to no longer
141   ///       refer to function-local IR.
142   bool isFunctionLocal() const {
143     return (getSubclassDataFromValue() & FunctionLocalBit) != 0;
144   }
145   
146   // getFunction - If this metadata is function-local and recursively has a
147   // function-local operand, return the first such operand's parent function.
148   // Otherwise, return null. getFunction() should not be used for performance-
149   // critical code because it recursively visits all the MDNode's operands.  
150   const Function *getFunction() const;
151
152   /// Profile - calculate a unique identifier for this MDNode to collapse
153   /// duplicates
154   void Profile(FoldingSetNodeID &ID) const;
155
156   /// Methods for support type inquiry through isa, cast, and dyn_cast:
157   static inline bool classof(const MDNode *) { return true; }
158   static bool classof(const Value *V) {
159     return V->getValueID() == MDNodeVal;
160   }
161 private:
162   // destroy - Delete this node.  Only when there are no uses.
163   void destroy();
164
165   bool isNotUniqued() const { 
166     return (getSubclassDataFromValue() & NotUniquedBit) != 0;
167   }
168   void setIsNotUniqued();
169   
170   // Shadow Value::setValueSubclassData with a private forwarding method so that
171   // any future subclasses cannot accidentally use it.
172   void setValueSubclassData(unsigned short D) {
173     Value::setValueSubclassData(D);
174   }
175 };
176
177 //===----------------------------------------------------------------------===//
178 /// NamedMDNode - a tuple of MDNodes.
179 /// NamedMDNode is always named. All NamedMDNode operand has a type of metadata.
180 class NamedMDNode : public ilist_node<NamedMDNode> {
181   friend class SymbolTableListTraits<NamedMDNode, Module>;
182   friend struct ilist_traits<NamedMDNode>;
183   friend class LLVMContextImpl;
184   friend class Module;
185   NamedMDNode(const NamedMDNode &);      // DO NOT IMPLEMENT
186
187   std::string Name;
188   Module *Parent;
189   void *Operands; // SmallVector<TrackingVH<MDNode>, 4>
190
191   void setParent(Module *M) { Parent = M; }
192
193 protected:
194   explicit NamedMDNode(const Twine &N);
195
196 public:
197   /// eraseFromParent - Drop all references and remove the node from parent
198   /// module.
199   void eraseFromParent();
200
201   /// dropAllReferences - Remove all uses and clear node vector.
202   void dropAllReferences();
203
204   /// ~NamedMDNode - Destroy NamedMDNode.
205   ~NamedMDNode();
206
207   /// getParent - Get the module that holds this named metadata collection.
208   inline Module *getParent() { return Parent; }
209   inline const Module *getParent() const { return Parent; }
210
211   /// getOperand - Return specified operand.
212   MDNode *getOperand(unsigned i) const;
213   
214   /// getNumOperands - Return the number of NamedMDNode operands.
215   unsigned getNumOperands() const;
216
217   /// addOperand - Add metadata operand.
218   void addOperand(MDNode *M);
219
220   /// getName - Return a constant reference to this named metadata's name.
221   StringRef getName() const;
222
223   /// print - Implement operator<< on NamedMDNode.
224   void print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW = 0) const;
225 };
226
227 } // end llvm namespace
228
229 #endif