1 //===- ObjCARCAliasAnalysis.cpp - ObjC ARC Optimization -------------------===//
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 /// \file
10 /// This file defines a simple ARC-aware AliasAnalysis using special knowledge
11 /// of Objective C to enhance other optimization passes which rely on the Alias
12 /// Analysis infrastructure.
13 ///
14 /// WARNING: This file knows about certain library functions. It recognizes them
15 /// by name, and hardwires knowledge of their semantics.
16 ///
17 /// WARNING: This file knows about how certain Objective-C library functions are
18 /// used. Naive LLVM IR transformations which would otherwise be
19 /// behavior-preserving may break these assumptions.
20 ///
21 //===----------------------------------------------------------------------===//
22
23 #include "ObjCARC.h"
24 #include "ObjCARCAliasAnalysis.h"
25 #include "llvm/IR/Instruction.h"
26 #include "llvm/InitializePasses.h"
27 #include "llvm/PassAnalysisSupport.h"
28 #include "llvm/PassSupport.h"
29
30 #define DEBUG_TYPE "objc-arc-aa"
31
32 namespace llvm {
33 class Function;
34 class Value;
35 }
36
37 using namespace llvm;
38 using namespace llvm::objcarc;
39
40 // Register this pass...
41 char ObjCARCAliasAnalysis::ID = 0;
42 INITIALIZE_AG_PASS(ObjCARCAliasAnalysis, AliasAnalysis, "objc-arc-aa",
43 "ObjC-ARC-Based Alias Analysis", false, true, false)
44
createObjCARCAliasAnalysisPass()45 ImmutablePass *llvm::createObjCARCAliasAnalysisPass() {
46 return new ObjCARCAliasAnalysis();
47 }
48
doInitialization(Module & M)49 bool ObjCARCAliasAnalysis::doInitialization(Module &M) {
50 InitializeAliasAnalysis(this, &M.getDataLayout());
51 return true;
52 }
53
54 void
getAnalysisUsage(AnalysisUsage & AU) const55 ObjCARCAliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
56 AU.setPreservesAll();
57 AliasAnalysis::getAnalysisUsage(AU);
58 }
59
60 AliasAnalysis::AliasResult
alias(const Location & LocA,const Location & LocB)61 ObjCARCAliasAnalysis::alias(const Location &LocA, const Location &LocB) {
62 if (!EnableARCOpts)
63 return AliasAnalysis::alias(LocA, LocB);
64
65 // First, strip off no-ops, including ObjC-specific no-ops, and try making a
66 // precise alias query.
67 const Value *SA = GetRCIdentityRoot(LocA.Ptr);
68 const Value *SB = GetRCIdentityRoot(LocB.Ptr);
69 AliasResult Result =
70 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.AATags),
71 Location(SB, LocB.Size, LocB.AATags));
72 if (Result != MayAlias)
73 return Result;
74
75 // If that failed, climb to the underlying object, including climbing through
76 // ObjC-specific no-ops, and try making an imprecise alias query.
77 const Value *UA = GetUnderlyingObjCPtr(SA, *DL);
78 const Value *UB = GetUnderlyingObjCPtr(SB, *DL);
79 if (UA != SA || UB != SB) {
80 Result = AliasAnalysis::alias(Location(UA), Location(UB));
81 // We can't use MustAlias or PartialAlias results here because
82 // GetUnderlyingObjCPtr may return an offsetted pointer value.
83 if (Result == NoAlias)
84 return NoAlias;
85 }
86
87 // If that failed, fail. We don't need to chain here, since that's covered
88 // by the earlier precise query.
89 return MayAlias;
90 }
91
92 bool
pointsToConstantMemory(const Location & Loc,bool OrLocal)93 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
94 bool OrLocal) {
95 if (!EnableARCOpts)
96 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
97
98 // First, strip off no-ops, including ObjC-specific no-ops, and try making
99 // a precise alias query.
100 const Value *S = GetRCIdentityRoot(Loc.Ptr);
101 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.AATags),
102 OrLocal))
103 return true;
104
105 // If that failed, climb to the underlying object, including climbing through
106 // ObjC-specific no-ops, and try making an imprecise alias query.
107 const Value *U = GetUnderlyingObjCPtr(S, *DL);
108 if (U != S)
109 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
110
111 // If that failed, fail. We don't need to chain here, since that's covered
112 // by the earlier precise query.
113 return false;
114 }
115
116 AliasAnalysis::ModRefBehavior
getModRefBehavior(ImmutableCallSite CS)117 ObjCARCAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
118 // We have nothing to do. Just chain to the next AliasAnalysis.
119 return AliasAnalysis::getModRefBehavior(CS);
120 }
121
122 AliasAnalysis::ModRefBehavior
getModRefBehavior(const Function * F)123 ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
124 if (!EnableARCOpts)
125 return AliasAnalysis::getModRefBehavior(F);
126
127 switch (GetFunctionClass(F)) {
128 case ARCInstKind::NoopCast:
129 return DoesNotAccessMemory;
130 default:
131 break;
132 }
133
134 return AliasAnalysis::getModRefBehavior(F);
135 }
136
137 AliasAnalysis::ModRefResult
getModRefInfo(ImmutableCallSite CS,const Location & Loc)138 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) {
139 if (!EnableARCOpts)
140 return AliasAnalysis::getModRefInfo(CS, Loc);
141
142 switch (GetBasicARCInstKind(CS.getInstruction())) {
143 case ARCInstKind::Retain:
144 case ARCInstKind::RetainRV:
145 case ARCInstKind::Autorelease:
146 case ARCInstKind::AutoreleaseRV:
147 case ARCInstKind::NoopCast:
148 case ARCInstKind::AutoreleasepoolPush:
149 case ARCInstKind::FusedRetainAutorelease:
150 case ARCInstKind::FusedRetainAutoreleaseRV:
151 // These functions don't access any memory visible to the compiler.
152 // Note that this doesn't include objc_retainBlock, because it updates
153 // pointers when it copies block data.
154 return NoModRef;
155 default:
156 break;
157 }
158
159 return AliasAnalysis::getModRefInfo(CS, Loc);
160 }
161
162 AliasAnalysis::ModRefResult
getModRefInfo(ImmutableCallSite CS1,ImmutableCallSite CS2)163 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS1,
164 ImmutableCallSite CS2) {
165 // TODO: Theoretically we could check for dependencies between objc_* calls
166 // and OnlyAccessesArgumentPointees calls or other well-behaved calls.
167 return AliasAnalysis::getModRefInfo(CS1, CS2);
168 }
169