Final step in the metadata API restructuring: move the
[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
30 //===----------------------------------------------------------------------===//
31 // MetadataBase  - A base class for MDNode, MDString and NamedMDNode.
32 class MetadataBase : public Value {
33 protected:
34   MetadataBase(const Type *Ty, unsigned scid)
35     : Value(Ty, scid) {}
36
37 public:
38
39   /// Methods for support type inquiry through isa, cast, and dyn_cast:
40   static inline bool classof(const MetadataBase *) { return true; }
41   static bool classof(const Value *V) {
42     return V->getValueID() == MDStringVal || V->getValueID() == MDNodeVal
43       || V->getValueID() == NamedMDNodeVal;
44   }
45 };
46
47 //===----------------------------------------------------------------------===//
48 /// MDString - a single uniqued string.
49 /// These are used to efficiently contain a byte sequence for metadata.
50 /// MDString is always unnamd.
51 class MDString : public MetadataBase {
52   MDString(const MDString &);            // DO NOT IMPLEMENT
53
54   StringRef Str;
55 protected:
56   explicit MDString(LLVMContext &C, StringRef S);
57
58 public:
59   static MDString *get(LLVMContext &Context, StringRef Str);
60   static MDString *get(LLVMContext &Context, const char *Str);
61   
62   StringRef getString() const { return Str; }
63
64   unsigned getLength() const { return (unsigned)Str.size(); }
65
66   typedef StringRef::iterator iterator;
67   
68   /// begin() - Pointer to the first byte of the string.
69   ///
70   iterator begin() const { return Str.begin(); }
71
72   /// end() - Pointer to one byte past the end of the string.
73   ///
74   iterator end() const { return Str.end(); }
75
76   /// Methods for support type inquiry through isa, cast, and dyn_cast:
77   static inline bool classof(const MDString *) { return true; }
78   static bool classof(const Value *V) {
79     return V->getValueID() == MDStringVal;
80   }
81 };
82
83   
84 class MDNodeElement;
85   
86 //===----------------------------------------------------------------------===//
87 /// MDNode - a tuple of other values.
88 /// These contain a list of the values that represent the metadata. 
89 /// MDNode is always unnamed.
90 class MDNode : public MetadataBase, public FoldingSetNode {
91   MDNode(const MDNode &);                // DO NOT IMPLEMENT
92   void operator=(const MDNode &);        // DO NOT IMPLEMENT
93   friend class MDNodeElement;
94
95   MDNodeElement *Operands;
96   unsigned NumOperands;
97   
98   // Subclass data enums.
99   enum {
100     FunctionLocalBit = 1
101   };
102   
103   // Replace each instance of F from the element list of this node with T.
104   void replaceElement(MDNodeElement *Op, Value *NewVal);
105
106 protected:
107   explicit MDNode(LLVMContext &C, Value *const *Vals, unsigned NumVals,
108                   bool isFunctionLocal);
109 public:
110   // Constructors and destructors.
111   static MDNode *get(LLVMContext &Context, Value *const *Vals, unsigned NumVals,
112                      bool isFunctionLocal = false);
113
114   /// ~MDNode - Destroy MDNode.
115   ~MDNode();
116   
117   /// getElement - Return specified element.
118   Value *getElement(unsigned i) const;
119   
120   /// getNumElements - Return number of MDNode elements.
121   unsigned getNumElements() const { return NumOperands; }
122   
123   /// isFunctionLocal - Return whether MDNode is local to a function.
124   /// Note: MDNodes are designated as function-local when created, and keep
125   ///       that designation even if their operands are modified to no longer
126   ///       refer to function-local IR.
127   bool isFunctionLocal() const {
128     return (getSubclassDataFromValue() & FunctionLocalBit) != 0;
129   }
130
131   /// Profile - calculate a unique identifier for this MDNode to collapse
132   /// duplicates
133   void Profile(FoldingSetNodeID &ID) const;
134
135   /// Methods for support type inquiry through isa, cast, and dyn_cast:
136   static inline bool classof(const MDNode *) { return true; }
137   static bool classof(const Value *V) {
138     return V->getValueID() == MDNodeVal;
139   }
140 private:
141   // Shadow Value::setValueSubclassData with a private forwarding method so that
142   // any future subclasses cannot accidentally use it.
143   void setValueSubclassData(unsigned short D) {
144     Value::setValueSubclassData(D);
145   }
146 };
147
148 //===----------------------------------------------------------------------===//
149 /// NamedMDNode - a tuple of other metadata. 
150 /// NamedMDNode is always named. All NamedMDNode element has a type of metadata.
151 template<typename ValueSubClass, typename ItemParentClass>
152   class SymbolTableListTraits;
153
154 class NamedMDNode : public MetadataBase, public ilist_node<NamedMDNode> {
155   friend class SymbolTableListTraits<NamedMDNode, Module>;
156   friend class LLVMContextImpl;
157
158   NamedMDNode(const NamedMDNode &);      // DO NOT IMPLEMENT
159
160   Module *Parent;
161   void *Operands; // SmallVector<TrackingVH<MetadataBase>, 4>
162
163   void setParent(Module *M) { Parent = M; }
164 protected:
165   explicit NamedMDNode(LLVMContext &C, const Twine &N, MetadataBase*const *Vals, 
166                        unsigned NumVals, Module *M = 0);
167 public:
168   static NamedMDNode *Create(LLVMContext &C, const Twine &N, 
169                              MetadataBase *const *MDs, 
170                              unsigned NumMDs, Module *M = 0) {
171     return new NamedMDNode(C, N, MDs, NumMDs, M);
172   }
173
174   static NamedMDNode *Create(const NamedMDNode *NMD, Module *M = 0);
175
176   /// eraseFromParent - Drop all references and remove the node from parent
177   /// module.
178   void eraseFromParent();
179
180   /// dropAllReferences - Remove all uses and clear node vector.
181   void dropAllReferences();
182
183   /// ~NamedMDNode - Destroy NamedMDNode.
184   ~NamedMDNode();
185
186   /// getParent - Get the module that holds this named metadata collection.
187   inline Module *getParent() { return Parent; }
188   inline const Module *getParent() const { return Parent; }
189
190   /// getElement - Return specified element.
191   MetadataBase *getElement(unsigned i) const;
192   
193   /// getNumElements - Return number of NamedMDNode elements.
194   unsigned getNumElements() const;
195
196   /// addElement - Add metadata element.
197   void addElement(MetadataBase *M);
198   
199   /// Methods for support type inquiry through isa, cast, and dyn_cast:
200   static inline bool classof(const NamedMDNode *) { return true; }
201   static bool classof(const Value *V) {
202     return V->getValueID() == NamedMDNodeVal;
203   }
204 };
205
206 } // end llvm namespace
207
208 #endif