blob: 1fcd127931d836980236fbce42ca4468763c3fc9 [file] [log] [blame]
Michael Gottesman68b91db2015-03-05 23:29:03 +00001//===--- PtrState.cpp -----------------------------------------------------===//
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
Michael Gottesmand45907b2015-03-05 23:57:07 +000010#define DEBUG_TYPE "objc-arc-ptr-state"
11#include "llvm/Support/Debug.h"
Michael Gottesman68b91db2015-03-05 23:29:03 +000012#include "PtrState.h"
Michael Gottesman4eae3962015-03-06 00:34:39 +000013#include "ObjCARC.h"
Michael Gottesman16e6a202015-03-06 02:07:12 +000014#include "DependencyAnalysis.h"
Michael Gottesman68b91db2015-03-05 23:29:03 +000015
16using namespace llvm;
17using namespace llvm::objcarc;
18
Michael Gottesman16e6a202015-03-06 02:07:12 +000019//===----------------------------------------------------------------------===//
20// Utility
21//===----------------------------------------------------------------------===//
22
Michael Gottesmand45907b2015-03-05 23:57:07 +000023raw_ostream &llvm::objcarc::operator<<(raw_ostream &OS, const Sequence S) {
Michael Gottesman68b91db2015-03-05 23:29:03 +000024 switch (S) {
25 case S_None:
26 return OS << "S_None";
27 case S_Retain:
28 return OS << "S_Retain";
29 case S_CanRelease:
30 return OS << "S_CanRelease";
31 case S_Use:
32 return OS << "S_Use";
33 case S_Release:
34 return OS << "S_Release";
35 case S_MovableRelease:
36 return OS << "S_MovableRelease";
37 case S_Stop:
38 return OS << "S_Stop";
39 }
40 llvm_unreachable("Unknown sequence type.");
41}
42
Michael Gottesman16e6a202015-03-06 02:07:12 +000043//===----------------------------------------------------------------------===//
44// Sequence
45//===----------------------------------------------------------------------===//
46
Michael Gottesman68b91db2015-03-05 23:29:03 +000047static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
48 // The easy cases.
49 if (A == B)
50 return A;
51 if (A == S_None || B == S_None)
52 return S_None;
53
54 if (A > B)
55 std::swap(A, B);
56 if (TopDown) {
57 // Choose the side which is further along in the sequence.
58 if ((A == S_Retain || A == S_CanRelease) &&
59 (B == S_CanRelease || B == S_Use))
60 return B;
61 } else {
62 // Choose the side which is further along in the sequence.
63 if ((A == S_Use || A == S_CanRelease) &&
64 (B == S_Use || B == S_Release || B == S_Stop || B == S_MovableRelease))
65 return A;
66 // If both sides are releases, choose the more conservative one.
67 if (A == S_Stop && (B == S_Release || B == S_MovableRelease))
68 return A;
69 if (A == S_Release && B == S_MovableRelease)
70 return A;
71 }
72
73 return S_None;
74}
75
Michael Gottesman16e6a202015-03-06 02:07:12 +000076//===----------------------------------------------------------------------===//
77// RRInfo
78//===----------------------------------------------------------------------===//
79
Michael Gottesman68b91db2015-03-05 23:29:03 +000080void RRInfo::clear() {
81 KnownSafe = false;
82 IsTailCallRelease = false;
83 ReleaseMetadata = nullptr;
84 Calls.clear();
85 ReverseInsertPts.clear();
86 CFGHazardAfflicted = false;
87}
88
89bool RRInfo::Merge(const RRInfo &Other) {
90 // Conservatively merge the ReleaseMetadata information.
91 if (ReleaseMetadata != Other.ReleaseMetadata)
92 ReleaseMetadata = nullptr;
93
94 // Conservatively merge the boolean state.
95 KnownSafe &= Other.KnownSafe;
96 IsTailCallRelease &= Other.IsTailCallRelease;
97 CFGHazardAfflicted |= Other.CFGHazardAfflicted;
98
99 // Merge the call sets.
100 Calls.insert(Other.Calls.begin(), Other.Calls.end());
101
102 // Merge the insert point sets. If there are any differences,
103 // that makes this a partial merge.
104 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
105 for (Instruction *Inst : Other.ReverseInsertPts)
106 Partial |= ReverseInsertPts.insert(Inst).second;
107 return Partial;
108}
109
Michael Gottesman16e6a202015-03-06 02:07:12 +0000110//===----------------------------------------------------------------------===//
111// PtrState
112//===----------------------------------------------------------------------===//
113
Michael Gottesmand45907b2015-03-05 23:57:07 +0000114void PtrState::SetKnownPositiveRefCount() {
115 DEBUG(dbgs() << "Setting Known Positive.\n");
116 KnownPositiveRefCount = true;
117}
118
119void PtrState::ClearKnownPositiveRefCount() {
120 DEBUG(dbgs() << "Clearing Known Positive.\n");
121 KnownPositiveRefCount = false;
122}
123
124void PtrState::SetSeq(Sequence NewSeq) {
125 DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
126 Seq = NewSeq;
127}
128
129void PtrState::ResetSequenceProgress(Sequence NewSeq) {
130 DEBUG(dbgs() << "Resetting sequence progress.\n");
131 SetSeq(NewSeq);
132 Partial = false;
133 RRI.clear();
134}
135
Michael Gottesman68b91db2015-03-05 23:29:03 +0000136void PtrState::Merge(const PtrState &Other, bool TopDown) {
137 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
138 KnownPositiveRefCount &= Other.KnownPositiveRefCount;
139
140 // If we're not in a sequence (anymore), drop all associated state.
141 if (Seq == S_None) {
142 Partial = false;
143 RRI.clear();
144 } else if (Partial || Other.Partial) {
145 // If we're doing a merge on a path that's previously seen a partial
146 // merge, conservatively drop the sequence, to avoid doing partial
147 // RR elimination. If the branch predicates for the two merge differ,
148 // mixing them is unsafe.
149 ClearSequenceProgress();
150 } else {
151 // Otherwise merge the other PtrState's RRInfo into our RRInfo. At this
152 // point, we know that currently we are not partial. Stash whether or not
153 // the merge operation caused us to undergo a partial merging of reverse
154 // insertion points.
155 Partial = RRI.Merge(Other.RRI);
156 }
157}
Michael Gottesman4eae3962015-03-06 00:34:39 +0000158
Michael Gottesman16e6a202015-03-06 02:07:12 +0000159//===----------------------------------------------------------------------===//
160// BottomUpPtrState
161//===----------------------------------------------------------------------===//
162
Michael Gottesman4eae3962015-03-06 00:34:39 +0000163bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) {
164 // If we see two releases in a row on the same pointer. If so, make
165 // a note, and we'll cicle back to revisit it after we've
166 // hopefully eliminated the second release, which may allow us to
167 // eliminate the first release too.
168 // Theoretically we could implement removal of nested retain+release
169 // pairs by making PtrState hold a stack of states, but this is
170 // simple and avoids adding overhead for the non-nested case.
171 bool NestingDetected = false;
172 if (GetSeq() == S_Release || GetSeq() == S_MovableRelease) {
173 DEBUG(dbgs() << "Found nested releases (i.e. a release pair)\n");
174 NestingDetected = true;
175 }
176
177 MDNode *ReleaseMetadata = I->getMetadata(Cache.ImpreciseReleaseMDKind);
178 Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Release;
179 ResetSequenceProgress(NewSeq);
180 SetReleaseMetadata(ReleaseMetadata);
181 SetKnownSafe(HasKnownPositiveRefCount());
182 SetTailCallRelease(cast<CallInst>(I)->isTailCall());
183 InsertCall(I);
184 SetKnownPositiveRefCount();
185 return NestingDetected;
186}
187
Michael Gottesman60805962015-03-06 00:34:42 +0000188bool BottomUpPtrState::MatchWithRetain() {
189 SetKnownPositiveRefCount();
190
191 Sequence OldSeq = GetSeq();
192 switch (OldSeq) {
193 case S_Stop:
194 case S_Release:
195 case S_MovableRelease:
196 case S_Use:
197 // If OldSeq is not S_Use or OldSeq is S_Use and we are tracking an
198 // imprecise release, clear our reverse insertion points.
199 if (OldSeq != S_Use || IsTrackingImpreciseReleases())
200 ClearReverseInsertPts();
201 // FALL THROUGH
202 case S_CanRelease:
203 return true;
204 case S_None:
205 return false;
206 case S_Retain:
207 llvm_unreachable("bottom-up pointer in retain state!");
208 }
Yaron Keren322bdad2015-03-06 07:49:14 +0000209 llvm_unreachable("Sequence unknown enum value");
Michael Gottesman60805962015-03-06 00:34:42 +0000210}
211
Michael Gottesman16e6a202015-03-06 02:07:12 +0000212bool BottomUpPtrState::HandlePotentialAlterRefCount(Instruction *Inst,
213 const Value *Ptr,
214 ProvenanceAnalysis &PA,
215 ARCInstKind Class) {
216 Sequence Seq = GetSeq();
217
218 // Check for possible releases.
219 if (!CanAlterRefCount(Inst, Ptr, PA, Class))
220 return false;
221
222 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr << "\n");
223 ClearKnownPositiveRefCount();
224 switch (Seq) {
225 case S_Use:
226 SetSeq(S_CanRelease);
227 return true;
228 case S_CanRelease:
229 case S_Release:
230 case S_MovableRelease:
231 case S_Stop:
232 case S_None:
233 return false;
234 case S_Retain:
235 llvm_unreachable("bottom-up pointer in retain state!");
236 }
Yaron Keren322bdad2015-03-06 07:49:14 +0000237 llvm_unreachable("Sequence unknown enum value");
Michael Gottesman16e6a202015-03-06 02:07:12 +0000238}
239
240void BottomUpPtrState::HandlePotentialUse(BasicBlock *BB, Instruction *Inst,
241 const Value *Ptr,
242 ProvenanceAnalysis &PA,
243 ARCInstKind Class) {
244 // Check for possible direct uses.
245 switch (GetSeq()) {
246 case S_Release:
247 case S_MovableRelease:
248 if (CanUse(Inst, Ptr, PA, Class)) {
249 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr << "\n");
250 assert(!HasReverseInsertPts());
251 // If this is an invoke instruction, we're scanning it as part of
252 // one of its successor blocks, since we can't insert code after it
253 // in its own block, and we don't want to split critical edges.
254 if (isa<InvokeInst>(Inst))
255 InsertReverseInsertPt(BB->getFirstInsertionPt());
256 else
257 InsertReverseInsertPt(std::next(BasicBlock::iterator(Inst)));
258 SetSeq(S_Use);
259 } else if (Seq == S_Release && IsUser(Class)) {
260 DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
261 << "\n");
262 // Non-movable releases depend on any possible objc pointer use.
263 SetSeq(S_Stop);
264 assert(!HasReverseInsertPts());
265 // As above; handle invoke specially.
266 if (isa<InvokeInst>(Inst))
267 InsertReverseInsertPt(BB->getFirstInsertionPt());
268 else
269 InsertReverseInsertPt(std::next(BasicBlock::iterator(Inst)));
270 }
271 break;
272 case S_Stop:
273 if (CanUse(Inst, Ptr, PA, Class)) {
274 DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr << "\n");
275 SetSeq(S_Use);
276 }
277 break;
278 case S_CanRelease:
279 case S_Use:
280 case S_None:
281 break;
282 case S_Retain:
283 llvm_unreachable("bottom-up pointer in retain state!");
284 }
285}
286
287//===----------------------------------------------------------------------===//
288// TopDownPtrState
289//===----------------------------------------------------------------------===//
290
Michael Gottesman4eae3962015-03-06 00:34:39 +0000291bool TopDownPtrState::InitTopDown(ARCInstKind Kind, Instruction *I) {
292 bool NestingDetected = false;
293 // Don't do retain+release tracking for ARCInstKind::RetainRV, because
294 // it's
295 // better to let it remain as the first instruction after a call.
296 if (Kind != ARCInstKind::RetainRV) {
297 // If we see two retains in a row on the same pointer. If so, make
298 // a note, and we'll cicle back to revisit it after we've
299 // hopefully eliminated the second retain, which may allow us to
300 // eliminate the first retain too.
301 // Theoretically we could implement removal of nested retain+release
302 // pairs by making PtrState hold a stack of states, but this is
303 // simple and avoids adding overhead for the non-nested case.
304 if (GetSeq() == S_Retain)
305 NestingDetected = true;
306
307 ResetSequenceProgress(S_Retain);
308 SetKnownSafe(HasKnownPositiveRefCount());
309 InsertCall(I);
310 }
311
312 SetKnownPositiveRefCount();
313 return NestingDetected;
314}
Michael Gottesman60805962015-03-06 00:34:42 +0000315
316bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache,
317 Instruction *Release) {
318 ClearKnownPositiveRefCount();
319
320 Sequence OldSeq = GetSeq();
321
322 MDNode *ReleaseMetadata = Release->getMetadata(Cache.ImpreciseReleaseMDKind);
323
324 switch (OldSeq) {
325 case S_Retain:
326 case S_CanRelease:
327 if (OldSeq == S_Retain || ReleaseMetadata != nullptr)
328 ClearReverseInsertPts();
329 // FALL THROUGH
330 case S_Use:
331 SetReleaseMetadata(ReleaseMetadata);
332 SetTailCallRelease(cast<CallInst>(Release)->isTailCall());
333 return true;
334 case S_None:
335 return false;
336 case S_Stop:
337 case S_Release:
338 case S_MovableRelease:
339 llvm_unreachable("top-down pointer in bottom up state!");
340 }
Yaron Keren322bdad2015-03-06 07:49:14 +0000341 llvm_unreachable("Sequence unknown enum value");
Michael Gottesman60805962015-03-06 00:34:42 +0000342}
Michael Gottesman16e6a202015-03-06 02:07:12 +0000343
344bool TopDownPtrState::HandlePotentialAlterRefCount(Instruction *Inst,
345 const Value *Ptr,
346 ProvenanceAnalysis &PA,
347 ARCInstKind Class) {
348 // Check for possible releases.
349 if (!CanAlterRefCount(Inst, Ptr, PA, Class))
350 return false;
351
352 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr << "\n");
353 ClearKnownPositiveRefCount();
354 switch (Seq) {
355 case S_Retain:
356 SetSeq(S_CanRelease);
357 assert(!HasReverseInsertPts());
358 InsertReverseInsertPt(Inst);
359
360 // One call can't cause a transition from S_Retain to S_CanRelease
361 // and S_CanRelease to S_Use. If we've made the first transition,
362 // we're done.
363 return true;
364 case S_Use:
365 case S_CanRelease:
366 case S_None:
367 return false;
368 case S_Stop:
369 case S_Release:
370 case S_MovableRelease:
371 llvm_unreachable("top-down pointer in release state!");
372 }
373 llvm_unreachable("covered switch is not covered!?");
374}
375
376void TopDownPtrState::HandlePotentialUse(Instruction *Inst, const Value *Ptr,
377 ProvenanceAnalysis &PA,
378 ARCInstKind Class) {
379 // Check for possible direct uses.
380 switch (GetSeq()) {
381 case S_CanRelease:
382 if (!CanUse(Inst, Ptr, PA, Class))
383 return;
384 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr << "\n");
385 SetSeq(S_Use);
386 return;
387 case S_Retain:
388 case S_Use:
389 case S_None:
390 return;
391 case S_Stop:
392 case S_Release:
393 case S_MovableRelease:
394 llvm_unreachable("top-down pointer in release state!");
395 }
396}