blob: b1515e3862077b328760a1ec98b931c4cbc7ba75 [file] [log] [blame]
Michael Gottesman6eb95dc2013-07-10 18:49:00 +00001//===- ObjCARCAliasAnalysis.cpp - ObjC ARC Optimization -------------------===//
Michael Gottesman294e7da2013-01-28 05:51:54 +00002//
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
Michael Gottesman294e7da2013-01-28 05:51:54 +000023#include "ObjCARC.h"
24#include "ObjCARCAliasAnalysis.h"
Michael Gottesman294e7da2013-01-28 05:51:54 +000025#include "llvm/IR/Instruction.h"
26#include "llvm/InitializePasses.h"
27#include "llvm/PassAnalysisSupport.h"
28#include "llvm/PassSupport.h"
29
Chandler Carruth964daaa2014-04-22 02:55:47 +000030#define DEBUG_TYPE "objc-arc-aa"
31
Michael Gottesman294e7da2013-01-28 05:51:54 +000032namespace llvm {
33 class Function;
34 class Value;
35}
36
37using namespace llvm;
38using namespace llvm::objcarc;
39
40// Register this pass...
41char ObjCARCAliasAnalysis::ID = 0;
42INITIALIZE_AG_PASS(ObjCARCAliasAnalysis, AliasAnalysis, "objc-arc-aa",
43 "ObjC-ARC-Based Alias Analysis", false, true, false)
44
45ImmutablePass *llvm::createObjCARCAliasAnalysisPass() {
46 return new ObjCARCAliasAnalysis();
47}
48
Mehdi Amini46a43552015-03-04 18:43:29 +000049bool ObjCARCAliasAnalysis::doInitialization(Module &M) {
50 InitializeAliasAnalysis(this, &M.getDataLayout());
51 return true;
52}
53
Michael Gottesman294e7da2013-01-28 05:51:54 +000054void
55ObjCARCAliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
56 AU.setPreservesAll();
57 AliasAnalysis::getAnalysisUsage(AU);
58}
59
60AliasAnalysis::AliasResult
61ObjCARCAliasAnalysis::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.
Michael Gottesmane5ad66f2015-02-19 00:42:38 +000067 const Value *SA = GetRCIdentityRoot(LocA.Ptr);
68 const Value *SB = GetRCIdentityRoot(LocB.Ptr);
Michael Gottesman294e7da2013-01-28 05:51:54 +000069 AliasResult Result =
Hal Finkelcc39b672014-07-24 12:16:19 +000070 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.AATags),
71 Location(SB, LocB.Size, LocB.AATags));
Michael Gottesman294e7da2013-01-28 05:51:54 +000072 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.
Mehdi Aminia28d91d2015-03-10 02:37:25 +000077 const Value *UA = GetUnderlyingObjCPtr(SA, *DL);
78 const Value *UB = GetUnderlyingObjCPtr(SB, *DL);
Michael Gottesman294e7da2013-01-28 05:51:54 +000079 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
92bool
93ObjCARCAliasAnalysis::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.
Michael Gottesmane5ad66f2015-02-19 00:42:38 +0000100 const Value *S = GetRCIdentityRoot(Loc.Ptr);
Hal Finkelcc39b672014-07-24 12:16:19 +0000101 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.AATags),
Michael Gottesman294e7da2013-01-28 05:51:54 +0000102 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.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000107 const Value *U = GetUnderlyingObjCPtr(S, *DL);
Michael Gottesman294e7da2013-01-28 05:51:54 +0000108 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
116AliasAnalysis::ModRefBehavior
117ObjCARCAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
118 // We have nothing to do. Just chain to the next AliasAnalysis.
119 return AliasAnalysis::getModRefBehavior(CS);
120}
121
122AliasAnalysis::ModRefBehavior
123ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
124 if (!EnableARCOpts)
125 return AliasAnalysis::getModRefBehavior(F);
126
127 switch (GetFunctionClass(F)) {
Michael Gottesman6f729fa2015-02-19 19:51:32 +0000128 case ARCInstKind::NoopCast:
Michael Gottesman294e7da2013-01-28 05:51:54 +0000129 return DoesNotAccessMemory;
130 default:
131 break;
132 }
133
134 return AliasAnalysis::getModRefBehavior(F);
135}
136
137AliasAnalysis::ModRefResult
138ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) {
139 if (!EnableARCOpts)
140 return AliasAnalysis::getModRefInfo(CS, Loc);
141
Michael Gottesman6f729fa2015-02-19 19:51:32 +0000142 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:
Michael Gottesman294e7da2013-01-28 05:51:54 +0000151 // 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
162AliasAnalysis::ModRefResult
163ObjCARCAliasAnalysis::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}