1 //===-- User.cpp - Implement the User class -------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/IR/User.h"
10 #include "llvm/IR/Constant.h"
11 #include "llvm/IR/GlobalValue.h"
12 #include "llvm/IR/IntrinsicInst.h"
17 //===----------------------------------------------------------------------===//
19 //===----------------------------------------------------------------------===//
21 bool User::replaceUsesOfWith(Value
*From
, Value
*To
) {
23 if (From
== To
) return Changed
; // Duh what?
25 assert((!isa
<Constant
>(this) || isa
<GlobalValue
>(this)) &&
26 "Cannot call User::replaceUsesOfWith on a constant!");
28 for (unsigned i
= 0, E
= getNumOperands(); i
!= E
; ++i
)
29 if (getOperand(i
) == From
) { // Is This operand is pointing to oldval?
30 // The side effects of this setOperand call include linking to
31 // "To", adding "this" to the uses list of To, and
32 // most importantly, removing "this" from the use list of "From".
36 if (auto DVI
= dyn_cast_or_null
<DbgVariableIntrinsic
>(this)) {
37 if (is_contained(DVI
->location_ops(), From
)) {
38 DVI
->replaceVariableLocationOp(From
, To
);
46 //===----------------------------------------------------------------------===//
47 // User allocHungoffUses Implementation
48 //===----------------------------------------------------------------------===//
50 void User::allocHungoffUses(unsigned N
, bool IsPhi
) {
51 assert(HasHungOffUses
&& "alloc must have hung off uses");
53 static_assert(alignof(Use
) >= alignof(BasicBlock
*),
54 "Alignment is insufficient for 'hung-off-uses' pieces");
56 // Allocate the array of Uses
57 size_t size
= N
* sizeof(Use
);
59 size
+= N
* sizeof(BasicBlock
*);
60 Use
*Begin
= static_cast<Use
*>(::operator new(size
));
62 setOperandList(Begin
);
63 for (; Begin
!= End
; Begin
++)
64 new (Begin
) Use(this);
67 void User::growHungoffUses(unsigned NewNumUses
, bool IsPhi
) {
68 assert(HasHungOffUses
&& "realloc must have hung off uses");
70 unsigned OldNumUses
= getNumOperands();
72 // We don't support shrinking the number of uses. We wouldn't have enough
73 // space to copy the old uses in to the new space.
74 assert(NewNumUses
> OldNumUses
&& "realloc must grow num uses");
76 Use
*OldOps
= getOperandList();
77 allocHungoffUses(NewNumUses
, IsPhi
);
78 Use
*NewOps
= getOperandList();
80 // Now copy from the old operands list to the new one.
81 std::copy(OldOps
, OldOps
+ OldNumUses
, NewOps
);
83 // If this is a Phi, then we need to copy the BB pointers too.
85 auto *OldPtr
= reinterpret_cast<char *>(OldOps
+ OldNumUses
);
86 auto *NewPtr
= reinterpret_cast<char *>(NewOps
+ NewNumUses
);
87 std::copy(OldPtr
, OldPtr
+ (OldNumUses
* sizeof(BasicBlock
*)), NewPtr
);
89 Use::zap(OldOps
, OldOps
+ OldNumUses
, true);
93 // This is a private struct used by `User` to track the co-allocated descriptor
95 struct DescriptorInfo
{
99 ArrayRef
<const uint8_t> User::getDescriptor() const {
100 auto MutableARef
= const_cast<User
*>(this)->getDescriptor();
101 return {MutableARef
.begin(), MutableARef
.end()};
104 MutableArrayRef
<uint8_t> User::getDescriptor() {
105 assert(HasDescriptor
&& "Don't call otherwise!");
106 assert(!HasHungOffUses
&& "Invariant!");
108 auto *DI
= reinterpret_cast<DescriptorInfo
*>(getIntrusiveOperands()) - 1;
109 assert(DI
->SizeInBytes
!= 0 && "Should not have had a descriptor otherwise!");
111 return MutableArrayRef
<uint8_t>(
112 reinterpret_cast<uint8_t *>(DI
) - DI
->SizeInBytes
, DI
->SizeInBytes
);
115 bool User::isDroppable() const {
116 return isa
<AssumeInst
>(this) || isa
<PseudoProbeInst
>(this);
119 //===----------------------------------------------------------------------===//
120 // User operator new Implementations
121 //===----------------------------------------------------------------------===//
123 void *User::allocateFixedOperandUser(size_t Size
, unsigned Us
,
124 unsigned DescBytes
) {
125 assert(Us
< (1u << NumUserOperandsBits
) && "Too many operands");
127 static_assert(sizeof(DescriptorInfo
) % sizeof(void *) == 0, "Required below");
129 unsigned DescBytesToAllocate
=
130 DescBytes
== 0 ? 0 : (DescBytes
+ sizeof(DescriptorInfo
));
131 assert(DescBytesToAllocate
% sizeof(void *) == 0 &&
132 "We need this to satisfy alignment constraints for Uses");
134 uint8_t *Storage
= static_cast<uint8_t *>(
135 ::operator new(Size
+ sizeof(Use
) * Us
+ DescBytesToAllocate
));
136 Use
*Start
= reinterpret_cast<Use
*>(Storage
+ DescBytesToAllocate
);
137 Use
*End
= Start
+ Us
;
138 User
*Obj
= reinterpret_cast<User
*>(End
);
139 Obj
->NumUserOperands
= Us
;
140 Obj
->HasHungOffUses
= false;
141 Obj
->HasDescriptor
= DescBytes
!= 0;
142 for (; Start
!= End
; Start
++)
143 new (Start
) Use(Obj
);
145 if (DescBytes
!= 0) {
146 auto *DescInfo
= reinterpret_cast<DescriptorInfo
*>(Storage
+ DescBytes
);
147 DescInfo
->SizeInBytes
= DescBytes
;
153 void *User::operator new(size_t Size
, unsigned Us
) {
154 return allocateFixedOperandUser(Size
, Us
, 0);
157 void *User::operator new(size_t Size
, unsigned Us
, unsigned DescBytes
) {
158 return allocateFixedOperandUser(Size
, Us
, DescBytes
);
161 void *User::operator new(size_t Size
) {
162 // Allocate space for a single Use*
163 void *Storage
= ::operator new(Size
+ sizeof(Use
*));
164 Use
**HungOffOperandList
= static_cast<Use
**>(Storage
);
165 User
*Obj
= reinterpret_cast<User
*>(HungOffOperandList
+ 1);
166 Obj
->NumUserOperands
= 0;
167 Obj
->HasHungOffUses
= true;
168 Obj
->HasDescriptor
= false;
169 *HungOffOperandList
= nullptr;
173 //===----------------------------------------------------------------------===//
174 // User operator delete Implementation
175 //===----------------------------------------------------------------------===//
177 // Repress memory sanitization, due to use-after-destroy by operator
178 // delete. Bug report 24578 identifies this issue.
179 LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE
void User::operator delete(void *Usr
) {
180 // Hung off uses use a single Use* before the User, while other subclasses
181 // use a Use[] allocated prior to the user.
182 User
*Obj
= static_cast<User
*>(Usr
);
183 if (Obj
->HasHungOffUses
) {
184 assert(!Obj
->HasDescriptor
&& "not supported!");
186 Use
**HungOffOperandList
= static_cast<Use
**>(Usr
) - 1;
187 // drop the hung off uses.
188 Use::zap(*HungOffOperandList
, *HungOffOperandList
+ Obj
->NumUserOperands
,
190 ::operator delete(HungOffOperandList
);
191 } else if (Obj
->HasDescriptor
) {
192 Use
*UseBegin
= static_cast<Use
*>(Usr
) - Obj
->NumUserOperands
;
193 Use::zap(UseBegin
, UseBegin
+ Obj
->NumUserOperands
, /* Delete */ false);
195 auto *DI
= reinterpret_cast<DescriptorInfo
*>(UseBegin
) - 1;
196 uint8_t *Storage
= reinterpret_cast<uint8_t *>(DI
) - DI
->SizeInBytes
;
197 ::operator delete(Storage
);
199 Use
*Storage
= static_cast<Use
*>(Usr
) - Obj
->NumUserOperands
;
200 Use::zap(Storage
, Storage
+ Obj
->NumUserOperands
,
202 ::operator delete(Storage
);