blob: 3893aab76b2a96136473361c01ab155840f68ed8 [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
Chandler Carruthc3f49eb2015-06-22 02:16:51 +000060AliasResult ObjCARCAliasAnalysis::alias(const MemoryLocation &LocA,
61 const MemoryLocation &LocB) {
Michael Gottesman294e7da2013-01-28 05:51:54 +000062 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 =
Chandler Carruthac80dc72015-06-17 07:18:54 +000070 AliasAnalysis::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
71 MemoryLocation(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) {
Chandler Carruthac80dc72015-06-17 07:18:54 +000080 Result = AliasAnalysis::alias(MemoryLocation(UA), MemoryLocation(UB));
Michael Gottesman294e7da2013-01-28 05:51:54 +000081 // 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
Chandler Carruthac80dc72015-06-17 07:18:54 +000092bool ObjCARCAliasAnalysis::pointsToConstantMemory(const MemoryLocation &Loc,
93 bool OrLocal) {
Michael Gottesman294e7da2013-01-28 05:51:54 +000094 if (!EnableARCOpts)
95 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
96
97 // First, strip off no-ops, including ObjC-specific no-ops, and try making
98 // a precise alias query.
Michael Gottesmane5ad66f2015-02-19 00:42:38 +000099 const Value *S = GetRCIdentityRoot(Loc.Ptr);
Chandler Carruthac80dc72015-06-17 07:18:54 +0000100 if (AliasAnalysis::pointsToConstantMemory(
101 MemoryLocation(S, Loc.Size, Loc.AATags), OrLocal))
Michael Gottesman294e7da2013-01-28 05:51:54 +0000102 return true;
103
104 // If that failed, climb to the underlying object, including climbing through
105 // ObjC-specific no-ops, and try making an imprecise alias query.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000106 const Value *U = GetUnderlyingObjCPtr(S, *DL);
Michael Gottesman294e7da2013-01-28 05:51:54 +0000107 if (U != S)
Chandler Carruthac80dc72015-06-17 07:18:54 +0000108 return AliasAnalysis::pointsToConstantMemory(MemoryLocation(U), OrLocal);
Michael Gottesman294e7da2013-01-28 05:51:54 +0000109
110 // If that failed, fail. We don't need to chain here, since that's covered
111 // by the earlier precise query.
112 return false;
113}
114
115AliasAnalysis::ModRefBehavior
116ObjCARCAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
117 // We have nothing to do. Just chain to the next AliasAnalysis.
118 return AliasAnalysis::getModRefBehavior(CS);
119}
120
121AliasAnalysis::ModRefBehavior
122ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
123 if (!EnableARCOpts)
124 return AliasAnalysis::getModRefBehavior(F);
125
126 switch (GetFunctionClass(F)) {
Michael Gottesman6f729fa2015-02-19 19:51:32 +0000127 case ARCInstKind::NoopCast:
Michael Gottesman294e7da2013-01-28 05:51:54 +0000128 return DoesNotAccessMemory;
129 default:
130 break;
131 }
132
133 return AliasAnalysis::getModRefBehavior(F);
134}
135
136AliasAnalysis::ModRefResult
Chandler Carruthac80dc72015-06-17 07:18:54 +0000137ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS,
138 const MemoryLocation &Loc) {
Michael Gottesman294e7da2013-01-28 05:51:54 +0000139 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}