blob: 95ae1a6e744fa4fec92dc149af844ea7bfe8d418 [file] [log] [blame]
Michael Gottesman023d2bb2013-07-10 18:49:00 +00001//===- ObjCARCAliasAnalysis.cpp - ObjC ARC Optimization -------------------===//
Michael Gottesman60868472013-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///
Chandler Carruth91468332015-09-09 17:55:00 +000021/// TODO: Theoretically we could check for dependencies between objc_* calls
22/// and FMRB_OnlyAccessesArgumentPointees calls or other well-behaved calls.
23///
Michael Gottesman60868472013-01-28 05:51:54 +000024//===----------------------------------------------------------------------===//
25
Chandler Carruthcce9e532015-08-20 08:06:03 +000026#include "llvm/Analysis/ObjCARCAliasAnalysis.h"
27#include "llvm/Analysis/ObjCARCAnalysisUtils.h"
Chandler Carruth416c0022015-08-14 03:55:36 +000028#include "llvm/IR/Function.h"
Michael Gottesman60868472013-01-28 05:51:54 +000029#include "llvm/IR/Instruction.h"
Chandler Carruth416c0022015-08-14 03:55:36 +000030#include "llvm/IR/Value.h"
Michael Gottesman60868472013-01-28 05:51:54 +000031#include "llvm/InitializePasses.h"
32#include "llvm/PassAnalysisSupport.h"
33#include "llvm/PassSupport.h"
34
Chandler Carruth7962dbd2014-04-22 02:55:47 +000035#define DEBUG_TYPE "objc-arc-aa"
36
Michael Gottesman60868472013-01-28 05:51:54 +000037using namespace llvm;
38using namespace llvm::objcarc;
39
Chandler Carruth91468332015-09-09 17:55:00 +000040AliasResult ObjCARCAAResult::alias(const MemoryLocation &LocA,
41 const MemoryLocation &LocB) {
Michael Gottesman60868472013-01-28 05:51:54 +000042 if (!EnableARCOpts)
Chandler Carruth91468332015-09-09 17:55:00 +000043 return AAResultBase::alias(LocA, LocB);
Michael Gottesman60868472013-01-28 05:51:54 +000044
45 // First, strip off no-ops, including ObjC-specific no-ops, and try making a
46 // precise alias query.
Michael Gottesman8915e012015-02-19 00:42:38 +000047 const Value *SA = GetRCIdentityRoot(LocA.Ptr);
48 const Value *SB = GetRCIdentityRoot(LocB.Ptr);
Michael Gottesman60868472013-01-28 05:51:54 +000049 AliasResult Result =
Chandler Carruth91468332015-09-09 17:55:00 +000050 AAResultBase::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
51 MemoryLocation(SB, LocB.Size, LocB.AATags));
Michael Gottesman60868472013-01-28 05:51:54 +000052 if (Result != MayAlias)
53 return Result;
54
55 // If that failed, climb to the underlying object, including climbing through
56 // ObjC-specific no-ops, and try making an imprecise alias query.
Chandler Carruth91468332015-09-09 17:55:00 +000057 const Value *UA = GetUnderlyingObjCPtr(SA, DL);
58 const Value *UB = GetUnderlyingObjCPtr(SB, DL);
Michael Gottesman60868472013-01-28 05:51:54 +000059 if (UA != SA || UB != SB) {
Chandler Carruth91468332015-09-09 17:55:00 +000060 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB));
Michael Gottesman60868472013-01-28 05:51:54 +000061 // We can't use MustAlias or PartialAlias results here because
62 // GetUnderlyingObjCPtr may return an offsetted pointer value.
63 if (Result == NoAlias)
64 return NoAlias;
65 }
66
67 // If that failed, fail. We don't need to chain here, since that's covered
68 // by the earlier precise query.
69 return MayAlias;
70}
71
Chandler Carruth91468332015-09-09 17:55:00 +000072bool ObjCARCAAResult::pointsToConstantMemory(const MemoryLocation &Loc,
73 bool OrLocal) {
Michael Gottesman60868472013-01-28 05:51:54 +000074 if (!EnableARCOpts)
Chandler Carruth91468332015-09-09 17:55:00 +000075 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
Michael Gottesman60868472013-01-28 05:51:54 +000076
77 // First, strip off no-ops, including ObjC-specific no-ops, and try making
78 // a precise alias query.
Michael Gottesman8915e012015-02-19 00:42:38 +000079 const Value *S = GetRCIdentityRoot(Loc.Ptr);
Chandler Carruth91468332015-09-09 17:55:00 +000080 if (AAResultBase::pointsToConstantMemory(
Chandler Carruth4d7ed392015-06-17 07:18:54 +000081 MemoryLocation(S, Loc.Size, Loc.AATags), OrLocal))
Michael Gottesman60868472013-01-28 05:51:54 +000082 return true;
83
84 // If that failed, climb to the underlying object, including climbing through
85 // ObjC-specific no-ops, and try making an imprecise alias query.
Chandler Carruth91468332015-09-09 17:55:00 +000086 const Value *U = GetUnderlyingObjCPtr(S, DL);
Michael Gottesman60868472013-01-28 05:51:54 +000087 if (U != S)
Chandler Carruth91468332015-09-09 17:55:00 +000088 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal);
Michael Gottesman60868472013-01-28 05:51:54 +000089
90 // If that failed, fail. We don't need to chain here, since that's covered
91 // by the earlier precise query.
92 return false;
93}
94
Chandler Carruth91468332015-09-09 17:55:00 +000095FunctionModRefBehavior ObjCARCAAResult::getModRefBehavior(const Function *F) {
Michael Gottesman60868472013-01-28 05:51:54 +000096 if (!EnableARCOpts)
Chandler Carruth91468332015-09-09 17:55:00 +000097 return AAResultBase::getModRefBehavior(F);
Michael Gottesman60868472013-01-28 05:51:54 +000098
99 switch (GetFunctionClass(F)) {
Michael Gottesmanb2f47bd2015-02-19 19:51:32 +0000100 case ARCInstKind::NoopCast:
Chandler Carruth52ab0bc2015-07-22 23:15:57 +0000101 return FMRB_DoesNotAccessMemory;
Michael Gottesman60868472013-01-28 05:51:54 +0000102 default:
103 break;
104 }
105
Chandler Carruth91468332015-09-09 17:55:00 +0000106 return AAResultBase::getModRefBehavior(F);
Michael Gottesman60868472013-01-28 05:51:54 +0000107}
108
Chandler Carruth81aa7122019-01-07 05:42:51 +0000109ModRefInfo ObjCARCAAResult::getModRefInfo(const CallBase *Call,
Chandler Carruth91468332015-09-09 17:55:00 +0000110 const MemoryLocation &Loc) {
Michael Gottesman60868472013-01-28 05:51:54 +0000111 if (!EnableARCOpts)
Chandler Carruth81aa7122019-01-07 05:42:51 +0000112 return AAResultBase::getModRefInfo(Call, Loc);
Michael Gottesman60868472013-01-28 05:51:54 +0000113
Chandler Carruth81aa7122019-01-07 05:42:51 +0000114 switch (GetBasicARCInstKind(Call)) {
Michael Gottesmanb2f47bd2015-02-19 19:51:32 +0000115 case ARCInstKind::Retain:
116 case ARCInstKind::RetainRV:
117 case ARCInstKind::Autorelease:
118 case ARCInstKind::AutoreleaseRV:
119 case ARCInstKind::NoopCast:
120 case ARCInstKind::AutoreleasepoolPush:
121 case ARCInstKind::FusedRetainAutorelease:
122 case ARCInstKind::FusedRetainAutoreleaseRV:
Michael Gottesman60868472013-01-28 05:51:54 +0000123 // These functions don't access any memory visible to the compiler.
124 // Note that this doesn't include objc_retainBlock, because it updates
125 // pointers when it copies block data.
Alina Sbirleac94e8962017-12-07 22:41:34 +0000126 return ModRefInfo::NoModRef;
Michael Gottesman60868472013-01-28 05:51:54 +0000127 default:
128 break;
129 }
130
Chandler Carruth81aa7122019-01-07 05:42:51 +0000131 return AAResultBase::getModRefInfo(Call, Loc);
Michael Gottesman60868472013-01-28 05:51:54 +0000132}
133
Sean Silva20b343c2016-08-09 00:28:15 +0000134ObjCARCAAResult ObjCARCAA::run(Function &F, FunctionAnalysisManager &AM) {
Chandler Carruthcf88e922016-03-02 15:56:53 +0000135 return ObjCARCAAResult(F.getParent()->getDataLayout());
Chandler Carruth91468332015-09-09 17:55:00 +0000136}
137
Chandler Carruth91468332015-09-09 17:55:00 +0000138char ObjCARCAAWrapperPass::ID = 0;
Chandler Carruthcf88e922016-03-02 15:56:53 +0000139INITIALIZE_PASS(ObjCARCAAWrapperPass, "objc-arc-aa",
140 "ObjC-ARC-Based Alias Analysis", false, true)
Chandler Carruth91468332015-09-09 17:55:00 +0000141
142ImmutablePass *llvm::createObjCARCAAWrapperPass() {
143 return new ObjCARCAAWrapperPass();
144}
145
146ObjCARCAAWrapperPass::ObjCARCAAWrapperPass() : ImmutablePass(ID) {
147 initializeObjCARCAAWrapperPassPass(*PassRegistry::getPassRegistry());
148}
149
150bool ObjCARCAAWrapperPass::doInitialization(Module &M) {
Chandler Carruthcf88e922016-03-02 15:56:53 +0000151 Result.reset(new ObjCARCAAResult(M.getDataLayout()));
Chandler Carruth91468332015-09-09 17:55:00 +0000152 return false;
153}
154
155bool ObjCARCAAWrapperPass::doFinalization(Module &M) {
156 Result.reset();
157 return false;
158}
159
160void ObjCARCAAWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
161 AU.setPreservesAll();
Michael Gottesman60868472013-01-28 05:51:54 +0000162}