• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- llvm/User.h - User class definition ---------------------*- 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 // This class defines the interface that one who uses a Value must implement.
11 // Each instance of the Value class keeps track of what User's have handles
12 // to it.
13 //
14 //  * Instructions are the largest class of Users.
15 //  * Constants may be users of other constants (think arrays and stuff)
16 //
17 //===----------------------------------------------------------------------===//
18 
19 #ifndef LLVM_IR_USER_H
20 #define LLVM_IR_USER_H
21 
22 #include "llvm/ADT/iterator.h"
23 #include "llvm/ADT/iterator_range.h"
24 #include "llvm/IR/Use.h"
25 #include "llvm/IR/Value.h"
26 #include "llvm/Support/Casting.h"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include <cassert>
30 #include <cstddef>
31 #include <cstdint>
32 #include <iterator>
33 
34 namespace llvm {
35 
36 template <typename T> class ArrayRef;
37 template <typename T> class MutableArrayRef;
38 
39 /// \brief Compile-time customization of User operands.
40 ///
41 /// Customizes operand-related allocators and accessors.
42 template <class>
43 struct OperandTraits;
44 
45 class User : public Value {
46   template <unsigned>
47   friend struct HungoffOperandTraits;
48 
49   virtual void anchor();
50 
51   LLVM_ATTRIBUTE_ALWAYS_INLINE inline static void *
52   allocateFixedOperandUser(size_t, unsigned, unsigned);
53 
54 protected:
55   /// Allocate a User with an operand pointer co-allocated.
56   ///
57   /// This is used for subclasses which need to allocate a variable number
58   /// of operands, ie, 'hung off uses'.
59   void *operator new(size_t Size);
60 
61   /// Allocate a User with the operands co-allocated.
62   ///
63   /// This is used for subclasses which have a fixed number of operands.
64   void *operator new(size_t Size, unsigned Us);
65 
66   /// Allocate a User with the operands co-allocated.  If DescBytes is non-zero
67   /// then allocate an additional DescBytes bytes before the operands. These
68   /// bytes can be accessed by calling getDescriptor.
69   ///
70   /// DescBytes needs to be divisible by sizeof(void *).  The allocated
71   /// descriptor, if any, is aligned to sizeof(void *) bytes.
72   ///
73   /// This is used for subclasses which have a fixed number of operands.
74   void *operator new(size_t Size, unsigned Us, unsigned DescBytes);
75 
User(Type * ty,unsigned vty,Use *,unsigned NumOps)76   User(Type *ty, unsigned vty, Use *, unsigned NumOps)
77       : Value(ty, vty) {
78     assert(NumOps < (1u << NumUserOperandsBits) && "Too many operands");
79     NumUserOperands = NumOps;
80     // If we have hung off uses, then the operand list should initially be
81     // null.
82     assert((!HasHungOffUses || !getOperandList()) &&
83            "Error in initializing hung off uses for User");
84   }
85 
86   /// \brief Allocate the array of Uses, followed by a pointer
87   /// (with bottom bit set) to the User.
88   /// \param IsPhi identifies callers which are phi nodes and which need
89   /// N BasicBlock* allocated along with N
90   void allocHungoffUses(unsigned N, bool IsPhi = false);
91 
92   /// \brief Grow the number of hung off uses.  Note that allocHungoffUses
93   /// should be called if there are no uses.
94   void growHungoffUses(unsigned N, bool IsPhi = false);
95 
96 public:
97   User(const User &) = delete;
98   ~User() override = default;
99 
100   /// \brief Free memory allocated for User and Use objects.
101   void operator delete(void *Usr);
102   /// \brief Placement delete - required by std, but never called.
delete(void *,unsigned)103   void operator delete(void*, unsigned) {
104     llvm_unreachable("Constructor throws?");
105   }
106   /// \brief Placement delete - required by std, but never called.
delete(void *,unsigned,bool)107   void operator delete(void*, unsigned, bool) {
108     llvm_unreachable("Constructor throws?");
109   }
110 
111 protected:
OpFrom(const U * that)112   template <int Idx, typename U> static Use &OpFrom(const U *that) {
113     return Idx < 0
114       ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
115       : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx];
116   }
Op()117   template <int Idx> Use &Op() {
118     return OpFrom<Idx>(this);
119   }
Op()120   template <int Idx> const Use &Op() const {
121     return OpFrom<Idx>(this);
122   }
123 
124 private:
getHungOffOperands()125   Use *&getHungOffOperands() { return *(reinterpret_cast<Use **>(this) - 1); }
126 
getIntrusiveOperands()127   Use *getIntrusiveOperands() {
128     return reinterpret_cast<Use *>(this) - NumUserOperands;
129   }
130 
setOperandList(Use * NewList)131   void setOperandList(Use *NewList) {
132     assert(HasHungOffUses &&
133            "Setting operand list only required for hung off uses");
134     getHungOffOperands() = NewList;
135   }
136 
137 public:
getOperandList()138   Use *getOperandList() {
139     return HasHungOffUses ? getHungOffOperands() : getIntrusiveOperands();
140   }
getOperandList()141   const Use *getOperandList() const {
142     return const_cast<User *>(this)->getOperandList();
143   }
144 
getOperand(unsigned i)145   Value *getOperand(unsigned i) const {
146     assert(i < NumUserOperands && "getOperand() out of range!");
147     return getOperandList()[i];
148   }
149 
setOperand(unsigned i,Value * Val)150   void setOperand(unsigned i, Value *Val) {
151     assert(i < NumUserOperands && "setOperand() out of range!");
152     assert((!isa<Constant>((const Value*)this) ||
153             isa<GlobalValue>((const Value*)this)) &&
154            "Cannot mutate a constant with setOperand!");
155     getOperandList()[i] = Val;
156   }
157 
getOperandUse(unsigned i)158   const Use &getOperandUse(unsigned i) const {
159     assert(i < NumUserOperands && "getOperandUse() out of range!");
160     return getOperandList()[i];
161   }
getOperandUse(unsigned i)162   Use &getOperandUse(unsigned i) {
163     assert(i < NumUserOperands && "getOperandUse() out of range!");
164     return getOperandList()[i];
165   }
166 
getNumOperands()167   unsigned getNumOperands() const { return NumUserOperands; }
168 
169   /// Returns the descriptor co-allocated with this User instance.
170   ArrayRef<const uint8_t> getDescriptor() const;
171 
172   /// Returns the descriptor co-allocated with this User instance.
173   MutableArrayRef<uint8_t> getDescriptor();
174 
175   /// Set the number of operands on a GlobalVariable.
176   ///
177   /// GlobalVariable always allocates space for a single operands, but
178   /// doesn't always use it.
179   ///
180   /// FIXME: As that the number of operands is used to find the start of
181   /// the allocated memory in operator delete, we need to always think we have
182   /// 1 operand before delete.
setGlobalVariableNumOperands(unsigned NumOps)183   void setGlobalVariableNumOperands(unsigned NumOps) {
184     assert(NumOps <= 1 && "GlobalVariable can only have 0 or 1 operands");
185     NumUserOperands = NumOps;
186   }
187 
188   /// \brief Subclasses with hung off uses need to manage the operand count
189   /// themselves.  In these instances, the operand count isn't used to find the
190   /// OperandList, so there's no issue in having the operand count change.
setNumHungOffUseOperands(unsigned NumOps)191   void setNumHungOffUseOperands(unsigned NumOps) {
192     assert(HasHungOffUses && "Must have hung off uses to use this method");
193     assert(NumOps < (1u << NumUserOperandsBits) && "Too many operands");
194     NumUserOperands = NumOps;
195   }
196 
197   // ---------------------------------------------------------------------------
198   // Operand Iterator interface...
199   //
200   typedef Use*       op_iterator;
201   typedef const Use* const_op_iterator;
202   typedef iterator_range<op_iterator> op_range;
203   typedef iterator_range<const_op_iterator> const_op_range;
204 
op_begin()205   op_iterator       op_begin()       { return getOperandList(); }
op_begin()206   const_op_iterator op_begin() const { return getOperandList(); }
op_end()207   op_iterator       op_end()         {
208     return getOperandList() + NumUserOperands;
209   }
op_end()210   const_op_iterator op_end()   const {
211     return getOperandList() + NumUserOperands;
212   }
operands()213   op_range operands() {
214     return op_range(op_begin(), op_end());
215   }
operands()216   const_op_range operands() const {
217     return const_op_range(op_begin(), op_end());
218   }
219 
220   /// \brief Iterator for directly iterating over the operand Values.
221   struct value_op_iterator
222       : iterator_adaptor_base<value_op_iterator, op_iterator,
223                               std::random_access_iterator_tag, Value *,
224                               ptrdiff_t, Value *, Value *> {
iterator_adaptor_basevalue_op_iterator225     explicit value_op_iterator(Use *U = nullptr) : iterator_adaptor_base(U) {}
226 
227     Value *operator*() const { return *I; }
228     Value *operator->() const { return operator*(); }
229   };
230 
value_op_begin()231   value_op_iterator value_op_begin() {
232     return value_op_iterator(op_begin());
233   }
value_op_end()234   value_op_iterator value_op_end() {
235     return value_op_iterator(op_end());
236   }
operand_values()237   iterator_range<value_op_iterator> operand_values() {
238     return make_range(value_op_begin(), value_op_end());
239   }
240 
241   /// \brief Drop all references to operands.
242   ///
243   /// This function is in charge of "letting go" of all objects that this User
244   /// refers to.  This allows one to 'delete' a whole class at a time, even
245   /// though there may be circular references...  First all references are
246   /// dropped, and all use counts go to zero.  Then everything is deleted for
247   /// real.  Note that no operations are valid on an object that has "dropped
248   /// all references", except operator delete.
dropAllReferences()249   void dropAllReferences() {
250     for (Use &U : operands())
251       U.set(nullptr);
252   }
253 
254   /// \brief Replace uses of one Value with another.
255   ///
256   /// Replaces all references to the "From" definition with references to the
257   /// "To" definition.
258   void replaceUsesOfWith(Value *From, Value *To);
259 
260   // Methods for support type inquiry through isa, cast, and dyn_cast:
classof(const Value * V)261   static inline bool classof(const Value *V) {
262     return isa<Instruction>(V) || isa<Constant>(V);
263   }
264 };
265 // Either Use objects, or a Use pointer can be prepended to User.
266 static_assert(alignof(Use) >= alignof(User),
267               "Alignment is insufficient after objects prepended to User");
268 static_assert(alignof(Use *) >= alignof(User),
269               "Alignment is insufficient after objects prepended to User");
270 
271 template<> struct simplify_type<User::op_iterator> {
272   typedef Value* SimpleType;
273   static SimpleType getSimplifiedValue(User::op_iterator &Val) {
274     return Val->get();
275   }
276 };
277 template<> struct simplify_type<User::const_op_iterator> {
278   typedef /*const*/ Value* SimpleType;
279   static SimpleType getSimplifiedValue(User::const_op_iterator &Val) {
280     return Val->get();
281   }
282 };
283 
284 } // end namespace llvm
285 
286 #endif // LLVM_IR_USER_H
287