LLVM 22.0.0git
PhiValues.cpp
Go to the documentation of this file.
1//===- PhiValues.cpp - Phi Value Analysis ---------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
13
14using namespace llvm;
15
16void PhiValues::PhiValuesCallbackVH::deleted() {
17 PV->invalidateValue(getValPtr());
18}
19
20void PhiValues::PhiValuesCallbackVH::allUsesReplacedWith(Value *) {
21 // We could potentially update the cached values we have with the new value,
22 // but it's simpler to just treat the old value as invalidated.
23 PV->invalidateValue(getValPtr());
24}
25
28 // PhiValues is invalidated if it isn't preserved.
29 auto PAC = PA.getChecker<PhiValuesAnalysis>();
30 return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>());
31}
32
33// The goal here is to find all of the non-phi values reachable from this phi,
34// and to do the same for all of the phis reachable from this phi, as doing so
35// is necessary anyway in order to get the values for this phi. We do this using
36// Tarjan's algorithm with Nuutila's improvements to find the strongly connected
37// components of the phi graph rooted in this phi:
38// * All phis in a strongly connected component will have the same reachable
39// non-phi values. The SCC may not be the maximal subgraph for that set of
40// reachable values, but finding out that isn't really necessary (it would
41// only reduce the amount of memory needed to store the values).
42// * Tarjan's algorithm completes components in a bottom-up manner, i.e. it
43// never completes a component before the components reachable from it have
44// been completed. This means that when we complete a component we have
45// everything we need to collect the values reachable from that component.
46// * We collect both the non-phi values reachable from each SCC, as that's what
47// we're ultimately interested in, and all of the reachable values, i.e.
48// including phis, as that makes invalidateValue easier.
49void PhiValues::processPhi(const PHINode *Phi,
51 // Initialize the phi with the next depth number.
52 assert(DepthMap.lookup(Phi) == 0);
53 assert(NextDepthNumber != UINT_MAX);
54 unsigned int RootDepthNumber = ++NextDepthNumber;
55 DepthMap[Phi] = RootDepthNumber;
56
57 // Recursively process the incoming phis of this phi.
58 TrackedValues.insert(PhiValuesCallbackVH(const_cast<PHINode *>(Phi), this));
59 for (Value *PhiOp : Phi->incoming_values()) {
60 if (PHINode *PhiPhiOp = dyn_cast<PHINode>(PhiOp)) {
61 // Recurse if the phi has not yet been visited.
62 unsigned int OpDepthNumber = DepthMap.lookup(PhiPhiOp);
63 if (OpDepthNumber == 0) {
64 processPhi(PhiPhiOp, Stack);
65 OpDepthNumber = DepthMap.lookup(PhiPhiOp);
66 assert(OpDepthNumber != 0);
67 }
68 // If the phi did not become part of a component then this phi and that
69 // phi are part of the same component, so adjust the depth number.
70 if (!ReachableMap.count(OpDepthNumber)) {
71 unsigned &Depth = DepthMap[Phi];
72 Depth = std::min(Depth, OpDepthNumber);
73 }
74 } else {
75 TrackedValues.insert(PhiValuesCallbackVH(PhiOp, this));
76 }
77 }
78
79 // Now that incoming phis have been handled, push this phi to the stack.
80 Stack.push_back(Phi);
81
82 // If the depth number has not changed then we've finished collecting the phis
83 // of a strongly connected component.
84 if (DepthMap[Phi] == RootDepthNumber) {
85 // Collect the reachable values for this component. The phis of this
86 // component will be those on top of the depth stack with the same or
87 // greater depth number.
88 ConstValueSet &Reachable = ReachableMap[RootDepthNumber];
89 while (true) {
90 const PHINode *ComponentPhi = Stack.pop_back_val();
91 Reachable.insert(ComponentPhi);
92
93 for (Value *Op : ComponentPhi->incoming_values()) {
94 if (PHINode *PhiOp = dyn_cast<PHINode>(Op)) {
95 // If this phi is not part of the same component then that component
96 // is guaranteed to have been completed before this one. Therefore we
97 // can just add its reachable values to the reachable values of this
98 // component.
99 unsigned int OpDepthNumber = DepthMap[PhiOp];
100 if (OpDepthNumber != RootDepthNumber) {
101 auto It = ReachableMap.find(OpDepthNumber);
102 if (It != ReachableMap.end())
103 Reachable.insert_range(It->second);
104 }
105 } else
106 Reachable.insert(Op);
107 }
108
109 if (Stack.empty())
110 break;
111
112 unsigned int &ComponentDepthNumber = DepthMap[Stack.back()];
113 if (ComponentDepthNumber < RootDepthNumber)
114 break;
115
116 ComponentDepthNumber = RootDepthNumber;
117 }
118
119 // Filter out phis to get the non-phi reachable values.
120 ValueSet &NonPhi = NonPhiReachableMap[RootDepthNumber];
121 for (const Value *V : Reachable)
122 if (!isa<PHINode>(V))
123 NonPhi.insert(const_cast<Value *>(V));
124 }
125}
126
128 unsigned int DepthNumber = DepthMap.lookup(PN);
129 if (DepthNumber == 0) {
131 processPhi(PN, Stack);
132 DepthNumber = DepthMap.lookup(PN);
133 assert(Stack.empty());
134 assert(DepthNumber != 0);
135 }
136 return NonPhiReachableMap[DepthNumber];
137}
138
140 // Components that can reach V are invalid.
141 SmallVector<unsigned int, 8> InvalidComponents;
142 for (auto &Pair : ReachableMap)
143 if (Pair.second.count(V))
144 InvalidComponents.push_back(Pair.first);
145
146 for (unsigned int N : InvalidComponents) {
147 for (const Value *V : ReachableMap[N])
148 if (const PHINode *PN = dyn_cast<PHINode>(V))
149 DepthMap.erase(PN);
150 NonPhiReachableMap.erase(N);
151 ReachableMap.erase(N);
152 }
153 // This value is no longer tracked
154 auto It = TrackedValues.find_as(V);
155 if (It != TrackedValues.end())
156 TrackedValues.erase(It);
157}
158
160 DepthMap.clear();
161 NonPhiReachableMap.clear();
162 ReachableMap.clear();
163}
164
166 // Iterate through the phi nodes of the function rather than iterating through
167 // DepthMap in order to get predictable ordering.
168 for (const BasicBlock &BB : F) {
169 for (const PHINode &PN : BB.phis()) {
170 OS << "PHI ";
171 PN.printAsOperand(OS, false);
172 OS << " has values:\n";
173 unsigned int N = DepthMap.lookup(&PN);
174 auto It = NonPhiReachableMap.find(N);
175 if (It == NonPhiReachableMap.end())
176 OS << " UNKNOWN\n";
177 else if (It->second.empty())
178 OS << " NONE\n";
179 else
180 for (Value *V : It->second)
181 // Printing of an instruction prints two spaces at the start, so
182 // handle instructions and everything else slightly differently in
183 // order to get consistent indenting.
184 if (Instruction *I = dyn_cast<Instruction>(V))
185 OS << *I << "\n";
186 else
187 OS << " " << *V << "\n";
188 }
189 }
190}
191
192AnalysisKey PhiValuesAnalysis::Key;
194 return PhiValues(F);
195}
196
199 OS << "PHI Values for function: " << F.getName() << "\n";
201 for (const BasicBlock &BB : F)
202 for (const PHINode &PN : BB.phis())
203 PI.getValuesForPhi(&PN);
204 PI.print(OS);
205 return PreservedAnalyses::all();
206}
207
209
211 Result.reset(new PhiValues(F));
212 return false;
213}
214
216 Result->releaseMemory();
217}
218
220 AU.setPreservesAll();
221}
222
224
225INITIALIZE_PASS(PhiValuesWrapperPass, "phi-values", "Phi Values Analysis", false,
226 true)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:56
raw_pwrite_stream & OS
This file defines the SmallVector class.
This templated class represents "all analyses that operate over <a particular IR unit>" (e....
Definition: Analysis.h:50
API to communicate dependencies between analyses during invalidation.
Definition: PassManager.h:294
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:255
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:412
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
LLVM Basic Block Representation.
Definition: BasicBlock.h:62
This class represents an Operation in the Expression.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:314
op_range incoming_values()
The analysis pass which yields a PhiValues.
Definition: PhiValues.h:116
LLVM_ABI PhiValues run(Function &F, FunctionAnalysisManager &)
Definition: PhiValues.cpp:193
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Definition: PhiValues.cpp:197
Wrapper pass for the legacy pass manager.
Definition: PhiValues.h:140
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
Definition: PhiValues.cpp:215
bool runOnFunction(Function &F) override
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
Definition: PhiValues.cpp:210
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
Definition: PhiValues.cpp:219
Class for calculating and caching the underlying values of phis in a function.
Definition: PhiValues.h:41
LLVM_ABI void invalidateValue(const Value *V)
Notify PhiValues that the cached information using V is no longer valid.
Definition: PhiValues.cpp:139
LLVM_ABI const ValueSet & getValuesForPhi(const PHINode *PN)
Get the underlying values of a phi.
Definition: PhiValues.cpp:127
SmallSetVector< Value *, 4 > ValueSet
Definition: PhiValues.h:43
LLVM_ABI bool invalidate(Function &, const PreservedAnalyses &, FunctionAnalysisManager::Invalidator &)
Handle invalidation events in the new pass manager.
Definition: PhiValues.cpp:26
LLVM_ABI void releaseMemory()
Free the memory used by this class.
Definition: PhiValues.cpp:159
LLVM_ABI void print(raw_ostream &OS) const
Print out the values currently in the cache.
Definition: PhiValues.cpp:165
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:118
PreservedAnalysisChecker getChecker() const
Build a checker for this PreservedAnalyses and the specified analysis type.
Definition: Analysis.h:275
A SetVector that performs no allocations if smaller than a certain size.
Definition: SetVector.h:356
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:574
void push_back(const T &Elt)
Definition: SmallVector.h:414
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1197
LLVM Value Representation.
Definition: Value.h:75
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:53
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
#define N
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: Analysis.h:29