24#define DEBUG_TYPE "ssaupdaterbulk"
33 return UserPN->getIncomingBlock(*U);
35 return User->getParent();
41 unsigned Var = Rewrites.size();
42 LLVM_DEBUG(
dbgs() <<
"SSAUpdater: Var=" << Var <<
": initialized with Ty = "
43 << *Ty <<
", Name = " << Name <<
"\n");
44 RewriteInfo RI(Name, Ty);
45 Rewrites.push_back(RI);
52 assert(Var < Rewrites.size() &&
"Variable not found!");
54 <<
": added new available value " << *V <<
" in "
56 Rewrites[Var].Defines.emplace_back(BB, V);
62 assert(Var < Rewrites.size() &&
"Variable not found!");
63 LLVM_DEBUG(
dbgs() <<
"SSAUpdater: Var=" << Var <<
": added a use" << *U->get()
65 Rewrites[Var].Uses.push_back(U);
83 while (!LiveInBlockWorklist.
empty()) {
88 if (!LiveInBlocks.
insert(BB).second)
115 for (RewriteInfo &R : Rewrites) {
132 for (
Use *U : R.Uses)
144 for (
auto [BB, V] : R.Defines)
145 BBInfos[BB].LiveOutValue = V;
150 PHINode *PN =
B.CreatePHI(R.Ty, 0, R.Name);
151 BBInfos[FrontierBB].LiveInValue = PN;
161 if (IsLiveOut && BBInfo->LiveOutValue)
162 return BBInfo->LiveOutValue;
164 if (BBInfo->LiveInValue)
165 return BBInfo->LiveInValue;
172 BBInfo = &BBInfos[BB];
174 if (BBInfo->LiveOutValue) {
175 V = BBInfo->LiveOutValue;
179 if (BBInfo->LiveInValue) {
180 V = BBInfo->LiveInValue;
184 Stack.emplace_back(BBInfo);
193 BBInfo->LiveInValue = V;
202 PHI->addIncoming(ComputeValue(Pred,
true), Pred);
207 for (
Use *U : R.Uses) {
208 if (!ProcessedUses.
insert(U).second)
213 Value *V = ComputeValue(BB, BB !=
User->getParent());
214 Value *OldVal = U->get();
215 assert(OldVal &&
"Invalid use!");
219 LLVM_DEBUG(
dbgs() <<
"SSAUpdater: replacing " << *OldVal <<
" with " << *V
235 PHI->replaceAllUsesWith(Simplified);
236 PHI->eraseFromParent();
252 for (
Value *V :
PHI.incoming_values()) {
254 if (IncPHI && IncPHI != &
PHI && NewPHISet.
contains(IncPHI))
263 if (!
PHI.isIdenticalToWhenDefined(&ReplPHI))
265 PHI.replaceAllUsesWith(&ReplPHI);
266 PHI.eraseFromParent();
277 for (
auto I = BB->
phis().begin();
I != FirstExistingPN; ++
I) {
278 for (
auto J = std::next(
I); J != FirstExistingPN;) {
285 auto I = BB->
phis().begin();
289 }
while (
I != FirstExistingPN);
290 if (BB->
phis().begin() == FirstExistingPN)
300 ++BBs[
PHI->getParent()];
303 for (
auto [BB, NumNewPHIs] : BBs) {
304 auto FirstExistingPN = std::next(BB->phis().begin(), NumNewPHIs);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This defines the Use class.
static StringRef getName(Value *V)
static BasicBlock * getUserBB(Use *U)
Helper function for finding a block which should have a value for the given user.
bool EliminateNewDuplicatePHINodes(BasicBlock *BB, BasicBlock::phi_iterator FirstExistingPN)
static void simplifyPass(MutableArrayRef< PHINode * > Worklist, const DataLayout &DL)
static void deduplicatePass(ArrayRef< PHINode * > Worklist)
static bool PHIAreRefEachOther(const iterator_range< BasicBlock::phi_iterator > NewPHIs)
static void ComputeLiveInBlocks(const SmallPtrSetImpl< BasicBlock * > &UsingBlocks, const SmallPtrSetImpl< BasicBlock * > &DefBlocks, SmallPtrSetImpl< BasicBlock * > &LiveInBlocks, PredIteratorCache &PredCache)
Given sets of UsingBlocks and DefBlocks, compute the set of LiveInBlocks.
static bool replaceIfIdentical(PHINode &PHI, PHINode &ReplPHI)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
LLVM Basic Block Representation.
phi_iterator_impl<> phi_iterator
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
const Instruction & front() const
A parsed version of the target data layout string in and methods for querying it.
void reserve(size_type NumEntries)
Grow the densemap so that it can contain at least NumEntries items before resizing again.
DomTreeNodeBase * getIDom() const
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
void calculate(SmallVectorImpl< NodeTy * > &IDFBlocks)
Calculate iterated dominance frontiers.
void setLiveInBlocks(const SmallPtrSetImpl< NodeTy * > &Blocks)
Give the IDF calculator the set of blocks in which the value is live on entry to the block.
void setDefiningBlocks(const SmallPtrSetImpl< NodeTy * > &Blocks)
Give the IDF calculator the set of blocks in which the value is defined.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
PredIteratorCache - This class is an extremely trivial cache for predecessor iterator queries.
ArrayRef< BasicBlock * > get(BasicBlock *BB)
LLVM_ABI unsigned AddVariable(StringRef Name, Type *Ty)
Add a new variable to the SSA rewriter.
LLVM_ABI void AddAvailableValue(unsigned Var, BasicBlock *BB, Value *V)
Indicate that a rewritten value is available in the specified block with the specified value.
LLVM_ABI void RewriteAllUses(DominatorTree *DT, SmallVectorImpl< PHINode * > *InsertedPHIs=nullptr)
Perform all the necessary updates, including new PHI-nodes insertion and the requested uses update.
LLVM_ABI void AddUse(unsigned Var, Use *U)
Record a use of the symbolic value.
void RewriteAndOptimizeAllUses(DominatorTree &DT)
Rewrite all uses and simplify the inserted PHI nodes.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
static LLVM_ABI void ValueIsRAUWd(Value *Old, Value *New)
LLVM Value Representation.
bool hasValueHandle() const
Return true if there is a value handle associated with this value.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
A range adaptor for a pair of iterators.
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
constexpr from_range_t from_range
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
auto make_first_range(ContainerTy &&c)
Given a container of pairs, return a range over the first elements.
IDFCalculator< false > ForwardIDFCalculator
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.