blob: 897f89d31148980378e3307420790fb708998522 [file] [log] [blame]
Eugene Zelenko530851c2017-08-11 21:30:02 +00001//==- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation --==//
Misha Brukman01808ca2005-04-21 21:13:18 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman01808ca2005-04-21 21:13:18 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner7d58f8d2002-08-22 18:25:32 +00009//
10// This file implements the generic AliasAnalysis interface which is used as the
11// common interface used by all clients and implementations of alias analysis.
12//
13// This file also implements the default version of the AliasAnalysis interface
14// that is to be used when no other implementation is specified. This does some
15// simple tests that detect obvious cases: two different global pointers cannot
16// alias, a global cannot alias a malloc, two different mallocs cannot alias,
17// etc.
18//
19// This alias analysis implementation really isn't very good for anything, but
20// it is very fast, and makes a nice clean default implementation. Because it
21// handles lots of little corner cases, other, more complex, alias analysis
22// implementations may choose to rely on this pass to resolve these simple and
23// easy cases.
24//
25//===----------------------------------------------------------------------===//
26
Chris Lattnerd6a2a992003-02-26 19:41:54 +000027#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000028#include "llvm/Analysis/BasicAliasAnalysis.h"
George Burgess IVbfa401e2016-07-06 00:26:41 +000029#include "llvm/Analysis/CFLAndersAliasAnalysis.h"
30#include "llvm/Analysis/CFLSteensAliasAnalysis.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000031#include "llvm/Analysis/CaptureTracking.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000032#include "llvm/Analysis/GlobalsModRef.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000033#include "llvm/Analysis/MemoryLocation.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000034#include "llvm/Analysis/ObjCARCAliasAnalysis.h"
35#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
36#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000037#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000038#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Chad Rosiera968caf2012-05-14 20:35:04 +000039#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000040#include "llvm/IR/Argument.h"
41#include "llvm/IR/Attributes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000042#include "llvm/IR/BasicBlock.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000043#include "llvm/IR/CallSite.h"
44#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000045#include "llvm/IR/Instructions.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000046#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Type.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000048#include "llvm/IR/Value.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000049#include "llvm/Pass.h"
Eugene Zelenko530851c2017-08-11 21:30:02 +000050#include "llvm/Support/AtomicOrdering.h"
51#include "llvm/Support/Casting.h"
52#include "llvm/Support/CommandLine.h"
53#include <algorithm>
54#include <cassert>
55#include <functional>
56#include <iterator>
57
Chris Lattnera67dbd02004-03-15 04:07:29 +000058using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000059
Chandler Carruth7b560d42015-09-09 17:55:00 +000060/// Allow disabling BasicAA from the AA results. This is particularly useful
61/// when testing to isolate a single AA implementation.
62static cl::opt<bool> DisableBasicAA("disable-basicaa", cl::Hidden,
63 cl::init(false));
64
Chandler Carruth17c630a2016-12-27 08:44:39 +000065AAResults::AAResults(AAResults &&Arg)
66 : TLI(Arg.TLI), AAs(std::move(Arg.AAs)), AADeps(std::move(Arg.AADeps)) {
Chandler Carruth7b560d42015-09-09 17:55:00 +000067 for (auto &AA : AAs)
68 AA->setAAResults(this);
69}
70
Chandler Carruth7b560d42015-09-09 17:55:00 +000071AAResults::~AAResults() {
72// FIXME; It would be nice to at least clear out the pointers back to this
73// aggregation here, but we end up with non-nesting lifetimes in the legacy
74// pass manager that prevent this from working. In the legacy pass manager
75// we'll end up with dangling references here in some cases.
76#if 0
77 for (auto &AA : AAs)
78 AA->setAAResults(nullptr);
79#endif
80}
Chris Lattner7d58f8d2002-08-22 18:25:32 +000081
Chandler Carruth17c630a2016-12-27 08:44:39 +000082bool AAResults::invalidate(Function &F, const PreservedAnalyses &PA,
83 FunctionAnalysisManager::Invalidator &Inv) {
Chandler Carruth17c630a2016-12-27 08:44:39 +000084 // Check if the AA manager itself has been invalidated.
85 auto PAC = PA.getChecker<AAManager>();
86 if (!PAC.preserved() && !PAC.preservedSet<AllAnalysesOn<Function>>())
87 return true; // The manager needs to be blown away, clear everything.
88
89 // Check all of the dependencies registered.
90 for (AnalysisKey *ID : AADeps)
91 if (Inv.invalidate(ID, F, PA))
92 return true;
93
94 // Everything we depend on is still fine, so are we. Nothing to invalidate.
95 return false;
96}
97
Chris Lattner62c37002004-05-23 21:15:48 +000098//===----------------------------------------------------------------------===//
99// Default chaining methods
100//===----------------------------------------------------------------------===//
101
Chandler Carruth7b560d42015-09-09 17:55:00 +0000102AliasResult AAResults::alias(const MemoryLocation &LocA,
103 const MemoryLocation &LocB) {
104 for (const auto &AA : AAs) {
105 auto Result = AA->alias(LocA, LocB);
106 if (Result != MayAlias)
107 return Result;
108 }
109 return MayAlias;
Chris Lattner62c37002004-05-23 21:15:48 +0000110}
111
Chandler Carruth7b560d42015-09-09 17:55:00 +0000112bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc,
113 bool OrLocal) {
114 for (const auto &AA : AAs)
115 if (AA->pointsToConstantMemory(Loc, OrLocal))
116 return true;
117
118 return false;
Chris Lattner62c37002004-05-23 21:15:48 +0000119}
120
Chandler Carruth7b560d42015-09-09 17:55:00 +0000121ModRefInfo AAResults::getArgModRefInfo(ImmutableCallSite CS, unsigned ArgIdx) {
122 ModRefInfo Result = MRI_ModRef;
123
124 for (const auto &AA : AAs) {
125 Result = ModRefInfo(Result & AA->getArgModRefInfo(CS, ArgIdx));
126
127 // Early-exit the moment we reach the bottom of the lattice.
128 if (Result == MRI_NoModRef)
129 return Result;
130 }
131
132 return Result;
Hal Finkel354e23b2014-07-17 01:28:25 +0000133}
134
Chandler Carruth7b560d42015-09-09 17:55:00 +0000135ModRefInfo AAResults::getModRefInfo(Instruction *I, ImmutableCallSite Call) {
Daniel Berlin8de312d2015-04-13 23:25:41 +0000136 // We may have two calls
137 if (auto CS = ImmutableCallSite(I)) {
138 // Check if the two calls modify the same memory
Nicolai Haehnle9343f362016-07-11 14:11:45 +0000139 return getModRefInfo(CS, Call);
David Majnemera940f362016-07-15 17:19:24 +0000140 } else if (I->isFenceLike()) {
141 // If this is a fence, just return MRI_ModRef.
142 return MRI_ModRef;
Daniel Berlin8de312d2015-04-13 23:25:41 +0000143 } else {
144 // Otherwise, check if the call modifies or references the
145 // location this memory access defines. The best we can say
146 // is that if the call references what this instruction
147 // defines, it must be clobbered by this location.
Chandler Carruthac80dc72015-06-17 07:18:54 +0000148 const MemoryLocation DefLoc = MemoryLocation::get(I);
Chandler Carruth194f59c2015-07-22 23:15:57 +0000149 if (getModRefInfo(Call, DefLoc) != MRI_NoModRef)
150 return MRI_ModRef;
Daniel Berlin8de312d2015-04-13 23:25:41 +0000151 }
Chandler Carruth194f59c2015-07-22 23:15:57 +0000152 return MRI_NoModRef;
Daniel Berlin8de312d2015-04-13 23:25:41 +0000153}
Owen Andersonb6e4ff02011-01-03 21:38:41 +0000154
Chandler Carruth7b560d42015-09-09 17:55:00 +0000155ModRefInfo AAResults::getModRefInfo(ImmutableCallSite CS,
156 const MemoryLocation &Loc) {
157 ModRefInfo Result = MRI_ModRef;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000158
Chandler Carruth7b560d42015-09-09 17:55:00 +0000159 for (const auto &AA : AAs) {
160 Result = ModRefInfo(Result & AA->getModRefInfo(CS, Loc));
Dan Gohman5f1702e2010-08-06 01:25:49 +0000161
Chandler Carruth7b560d42015-09-09 17:55:00 +0000162 // Early-exit the moment we reach the bottom of the lattice.
163 if (Result == MRI_NoModRef)
164 return Result;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000165 }
166
Chandler Carruth12884f72016-03-02 15:56:53 +0000167 // Try to refine the mod-ref info further using other API entry points to the
168 // aggregate set of AA results.
169 auto MRB = getModRefBehavior(CS);
Andrew Kaylor9604f342016-11-08 21:07:42 +0000170 if (MRB == FMRB_DoesNotAccessMemory ||
171 MRB == FMRB_OnlyAccessesInaccessibleMem)
Chandler Carruth12884f72016-03-02 15:56:53 +0000172 return MRI_NoModRef;
173
174 if (onlyReadsMemory(MRB))
175 Result = ModRefInfo(Result & MRI_Ref);
Nicolai Haehnle84c9f992016-07-04 08:01:29 +0000176 else if (doesNotReadMemory(MRB))
177 Result = ModRefInfo(Result & MRI_Mod);
Chandler Carruth12884f72016-03-02 15:56:53 +0000178
Andrew Kaylor9604f342016-11-08 21:07:42 +0000179 if (onlyAccessesArgPointees(MRB) || onlyAccessesInaccessibleOrArgMem(MRB)) {
Chandler Carruth12884f72016-03-02 15:56:53 +0000180 bool DoesAlias = false;
181 ModRefInfo AllArgsMask = MRI_NoModRef;
182 if (doesAccessArgPointees(MRB)) {
183 for (auto AI = CS.arg_begin(), AE = CS.arg_end(); AI != AE; ++AI) {
184 const Value *Arg = *AI;
185 if (!Arg->getType()->isPointerTy())
186 continue;
187 unsigned ArgIdx = std::distance(CS.arg_begin(), AI);
188 MemoryLocation ArgLoc = MemoryLocation::getForArgument(CS, ArgIdx, TLI);
189 AliasResult ArgAlias = alias(ArgLoc, Loc);
190 if (ArgAlias != NoAlias) {
191 ModRefInfo ArgMask = getArgModRefInfo(CS, ArgIdx);
192 DoesAlias = true;
193 AllArgsMask = ModRefInfo(AllArgsMask | ArgMask);
194 }
195 }
196 }
197 if (!DoesAlias)
198 return MRI_NoModRef;
199 Result = ModRefInfo(Result & AllArgsMask);
200 }
201
202 // If Loc is a constant memory location, the call definitely could not
203 // modify the memory location.
204 if ((Result & MRI_Mod) &&
205 pointsToConstantMemory(Loc, /*OrLocal*/ false))
206 Result = ModRefInfo(Result & ~MRI_Mod);
207
Chandler Carruth7b560d42015-09-09 17:55:00 +0000208 return Result;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000209}
210
Chandler Carruth7b560d42015-09-09 17:55:00 +0000211ModRefInfo AAResults::getModRefInfo(ImmutableCallSite CS1,
212 ImmutableCallSite CS2) {
213 ModRefInfo Result = MRI_ModRef;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000214
Chandler Carruth7b560d42015-09-09 17:55:00 +0000215 for (const auto &AA : AAs) {
216 Result = ModRefInfo(Result & AA->getModRefInfo(CS1, CS2));
Dan Gohman5f1702e2010-08-06 01:25:49 +0000217
Chandler Carruth7b560d42015-09-09 17:55:00 +0000218 // Early-exit the moment we reach the bottom of the lattice.
219 if (Result == MRI_NoModRef)
220 return Result;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000221 }
222
Chandler Carruth12884f72016-03-02 15:56:53 +0000223 // Try to refine the mod-ref info further using other API entry points to the
224 // aggregate set of AA results.
225
226 // If CS1 or CS2 are readnone, they don't interact.
227 auto CS1B = getModRefBehavior(CS1);
228 if (CS1B == FMRB_DoesNotAccessMemory)
229 return MRI_NoModRef;
230
231 auto CS2B = getModRefBehavior(CS2);
232 if (CS2B == FMRB_DoesNotAccessMemory)
233 return MRI_NoModRef;
234
235 // If they both only read from memory, there is no dependence.
236 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
237 return MRI_NoModRef;
238
239 // If CS1 only reads memory, the only dependence on CS2 can be
240 // from CS1 reading memory written by CS2.
241 if (onlyReadsMemory(CS1B))
242 Result = ModRefInfo(Result & MRI_Ref);
Nicolai Haehnle84c9f992016-07-04 08:01:29 +0000243 else if (doesNotReadMemory(CS1B))
244 Result = ModRefInfo(Result & MRI_Mod);
Chandler Carruth12884f72016-03-02 15:56:53 +0000245
246 // If CS2 only access memory through arguments, accumulate the mod/ref
247 // information from CS1's references to the memory referenced by
248 // CS2's arguments.
249 if (onlyAccessesArgPointees(CS2B)) {
250 ModRefInfo R = MRI_NoModRef;
251 if (doesAccessArgPointees(CS2B)) {
252 for (auto I = CS2.arg_begin(), E = CS2.arg_end(); I != E; ++I) {
253 const Value *Arg = *I;
254 if (!Arg->getType()->isPointerTy())
255 continue;
256 unsigned CS2ArgIdx = std::distance(CS2.arg_begin(), I);
257 auto CS2ArgLoc = MemoryLocation::getForArgument(CS2, CS2ArgIdx, TLI);
258
259 // ArgMask indicates what CS2 might do to CS2ArgLoc, and the dependence
260 // of CS1 on that location is the inverse.
261 ModRefInfo ArgMask = getArgModRefInfo(CS2, CS2ArgIdx);
262 if (ArgMask == MRI_Mod)
263 ArgMask = MRI_ModRef;
264 else if (ArgMask == MRI_Ref)
265 ArgMask = MRI_Mod;
266
267 ArgMask = ModRefInfo(ArgMask & getModRefInfo(CS1, CS2ArgLoc));
268
269 R = ModRefInfo((R | ArgMask) & Result);
270 if (R == Result)
271 break;
272 }
273 }
274 return R;
275 }
276
277 // If CS1 only accesses memory through arguments, check if CS2 references
278 // any of the memory referenced by CS1's arguments. If not, return NoModRef.
279 if (onlyAccessesArgPointees(CS1B)) {
280 ModRefInfo R = MRI_NoModRef;
281 if (doesAccessArgPointees(CS1B)) {
282 for (auto I = CS1.arg_begin(), E = CS1.arg_end(); I != E; ++I) {
283 const Value *Arg = *I;
284 if (!Arg->getType()->isPointerTy())
285 continue;
286 unsigned CS1ArgIdx = std::distance(CS1.arg_begin(), I);
287 auto CS1ArgLoc = MemoryLocation::getForArgument(CS1, CS1ArgIdx, TLI);
288
289 // ArgMask indicates what CS1 might do to CS1ArgLoc; if CS1 might Mod
290 // CS1ArgLoc, then we care about either a Mod or a Ref by CS2. If CS1
291 // might Ref, then we care only about a Mod by CS2.
292 ModRefInfo ArgMask = getArgModRefInfo(CS1, CS1ArgIdx);
293 ModRefInfo ArgR = getModRefInfo(CS2, CS1ArgLoc);
294 if (((ArgMask & MRI_Mod) != MRI_NoModRef &&
295 (ArgR & MRI_ModRef) != MRI_NoModRef) ||
296 ((ArgMask & MRI_Ref) != MRI_NoModRef &&
297 (ArgR & MRI_Mod) != MRI_NoModRef))
298 R = ModRefInfo((R | ArgMask) & Result);
299
300 if (R == Result)
301 break;
302 }
303 }
304 return R;
305 }
306
Chandler Carruth7b560d42015-09-09 17:55:00 +0000307 return Result;
308}
Chandler Carruthc41404a2015-06-17 07:12:40 +0000309
Chandler Carruth7b560d42015-09-09 17:55:00 +0000310FunctionModRefBehavior AAResults::getModRefBehavior(ImmutableCallSite CS) {
311 FunctionModRefBehavior Result = FMRB_UnknownModRefBehavior;
Hal Finkel354e23b2014-07-17 01:28:25 +0000312
Chandler Carruth7b560d42015-09-09 17:55:00 +0000313 for (const auto &AA : AAs) {
314 Result = FunctionModRefBehavior(Result & AA->getModRefBehavior(CS));
315
316 // Early-exit the moment we reach the bottom of the lattice.
317 if (Result == FMRB_DoesNotAccessMemory)
318 return Result;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000319 }
320
Chandler Carruth7b560d42015-09-09 17:55:00 +0000321 return Result;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000322}
323
Chandler Carruth7b560d42015-09-09 17:55:00 +0000324FunctionModRefBehavior AAResults::getModRefBehavior(const Function *F) {
325 FunctionModRefBehavior Result = FMRB_UnknownModRefBehavior;
Dan Gohman5f1702e2010-08-06 01:25:49 +0000326
Chandler Carruth7b560d42015-09-09 17:55:00 +0000327 for (const auto &AA : AAs) {
328 Result = FunctionModRefBehavior(Result & AA->getModRefBehavior(F));
Dan Gohman5f1702e2010-08-06 01:25:49 +0000329
Chandler Carruth7b560d42015-09-09 17:55:00 +0000330 // Early-exit the moment we reach the bottom of the lattice.
331 if (Result == FMRB_DoesNotAccessMemory)
332 return Result;
333 }
Dan Gohman5f1702e2010-08-06 01:25:49 +0000334
Chandler Carruth7b560d42015-09-09 17:55:00 +0000335 return Result;
Chris Lattner62c37002004-05-23 21:15:48 +0000336}
337
Chris Lattner62c37002004-05-23 21:15:48 +0000338//===----------------------------------------------------------------------===//
Chandler Carruth7b560d42015-09-09 17:55:00 +0000339// Helper method implementation
Chris Lattner62c37002004-05-23 21:15:48 +0000340//===----------------------------------------------------------------------===//
341
Chandler Carruth7b560d42015-09-09 17:55:00 +0000342ModRefInfo AAResults::getModRefInfo(const LoadInst *L,
343 const MemoryLocation &Loc) {
Daniel Berlind952cea2017-04-07 01:28:36 +0000344 // Be conservative in the face of atomic.
345 if (isStrongerThan(L->getOrdering(), AtomicOrdering::Unordered))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000346 return MRI_ModRef;
Dan Gohman6b4671b2010-08-06 18:11:28 +0000347
Dan Gohman52f9d7d2010-08-03 17:27:43 +0000348 // If the load address doesn't alias the given address, it doesn't read
349 // or write the specified memory.
Chandler Carruth70c61c12015-06-04 02:03:15 +0000350 if (Loc.Ptr && !alias(MemoryLocation::get(L), Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000351 return MRI_NoModRef;
Dan Gohman52f9d7d2010-08-03 17:27:43 +0000352
Dan Gohman52f9d7d2010-08-03 17:27:43 +0000353 // Otherwise, a load just reads.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000354 return MRI_Ref;
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000355}
356
Chandler Carruth7b560d42015-09-09 17:55:00 +0000357ModRefInfo AAResults::getModRefInfo(const StoreInst *S,
358 const MemoryLocation &Loc) {
Daniel Berlind952cea2017-04-07 01:28:36 +0000359 // Be conservative in the face of atomic.
360 if (isStrongerThan(S->getOrdering(), AtomicOrdering::Unordered))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000361 return MRI_ModRef;
Dan Gohman6b4671b2010-08-06 18:11:28 +0000362
Daniel Berlinb2d22762015-04-13 23:05:45 +0000363 if (Loc.Ptr) {
364 // If the store address cannot alias the pointer in question, then the
365 // specified memory cannot be modified by the store.
Chandler Carruth70c61c12015-06-04 02:03:15 +0000366 if (!alias(MemoryLocation::get(S), Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000367 return MRI_NoModRef;
Chris Lattner96055762004-01-30 22:16:42 +0000368
Daniel Berlinb2d22762015-04-13 23:05:45 +0000369 // If the pointer is a pointer to constant memory, then it could not have
370 // been modified by this store.
371 if (pointsToConstantMemory(Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000372 return MRI_NoModRef;
Daniel Berlinb2d22762015-04-13 23:05:45 +0000373 }
Dan Gohman52f9d7d2010-08-03 17:27:43 +0000374
375 // Otherwise, a store just writes.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000376 return MRI_Mod;
Chris Lattner3a311832003-02-26 19:26:51 +0000377}
378
Anna Thomas698f0de2017-01-20 00:21:33 +0000379ModRefInfo AAResults::getModRefInfo(const FenceInst *S, const MemoryLocation &Loc) {
380 // If we know that the location is a constant memory location, the fence
381 // cannot modify this location.
382 if (Loc.Ptr && pointsToConstantMemory(Loc))
383 return MRI_Ref;
384 return MRI_ModRef;
385}
386
Chandler Carruth7b560d42015-09-09 17:55:00 +0000387ModRefInfo AAResults::getModRefInfo(const VAArgInst *V,
388 const MemoryLocation &Loc) {
Daniel Berlinec1de3f2015-04-28 19:19:14 +0000389 if (Loc.Ptr) {
390 // If the va_arg address cannot alias the pointer in question, then the
391 // specified memory cannot be accessed by the va_arg.
Chandler Carruth70c61c12015-06-04 02:03:15 +0000392 if (!alias(MemoryLocation::get(V), Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000393 return MRI_NoModRef;
Daniel Berlinec1de3f2015-04-28 19:19:14 +0000394
395 // If the pointer is a pointer to constant memory, then it could not have
396 // been modified by this va_arg.
397 if (pointsToConstantMemory(Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000398 return MRI_NoModRef;
Daniel Berlinec1de3f2015-04-28 19:19:14 +0000399 }
Dan Gohmane68958f2010-08-06 18:24:38 +0000400
401 // Otherwise, a va_arg reads and writes.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000402 return MRI_ModRef;
Dan Gohmane68958f2010-08-06 18:24:38 +0000403}
404
David Majnemer6727c012015-11-17 08:15:14 +0000405ModRefInfo AAResults::getModRefInfo(const CatchPadInst *CatchPad,
406 const MemoryLocation &Loc) {
407 if (Loc.Ptr) {
408 // If the pointer is a pointer to constant memory,
409 // then it could not have been modified by this catchpad.
410 if (pointsToConstantMemory(Loc))
411 return MRI_NoModRef;
412 }
413
414 // Otherwise, a catchpad reads and writes.
415 return MRI_ModRef;
416}
417
418ModRefInfo AAResults::getModRefInfo(const CatchReturnInst *CatchRet,
419 const MemoryLocation &Loc) {
420 if (Loc.Ptr) {
421 // If the pointer is a pointer to constant memory,
422 // then it could not have been modified by this catchpad.
423 if (pointsToConstantMemory(Loc))
424 return MRI_NoModRef;
425 }
426
427 // Otherwise, a catchret reads and writes.
428 return MRI_ModRef;
429}
430
Chandler Carruth7b560d42015-09-09 17:55:00 +0000431ModRefInfo AAResults::getModRefInfo(const AtomicCmpXchgInst *CX,
432 const MemoryLocation &Loc) {
Eli Friedman5c918912011-09-26 20:15:28 +0000433 // Acquire/Release cmpxchg has properties that matter for arbitrary addresses.
JF Bastien800f87a2016-04-06 21:19:33 +0000434 if (isStrongerThanMonotonic(CX->getSuccessOrdering()))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000435 return MRI_ModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000436
437 // If the cmpxchg address does not alias the location, it does not access it.
Chandler Carruth70c61c12015-06-04 02:03:15 +0000438 if (Loc.Ptr && !alias(MemoryLocation::get(CX), Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000439 return MRI_NoModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000440
Chandler Carruth194f59c2015-07-22 23:15:57 +0000441 return MRI_ModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000442}
443
Chandler Carruth7b560d42015-09-09 17:55:00 +0000444ModRefInfo AAResults::getModRefInfo(const AtomicRMWInst *RMW,
445 const MemoryLocation &Loc) {
Eli Friedman5c918912011-09-26 20:15:28 +0000446 // Acquire/Release atomicrmw has properties that matter for arbitrary addresses.
JF Bastien800f87a2016-04-06 21:19:33 +0000447 if (isStrongerThanMonotonic(RMW->getOrdering()))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000448 return MRI_ModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000449
450 // If the atomicrmw address does not alias the location, it does not access it.
Chandler Carruth70c61c12015-06-04 02:03:15 +0000451 if (Loc.Ptr && !alias(MemoryLocation::get(RMW), Loc))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000452 return MRI_NoModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000453
Chandler Carruth194f59c2015-07-22 23:15:57 +0000454 return MRI_ModRef;
Eli Friedman5c918912011-09-26 20:15:28 +0000455}
456
Bruno Cardoso Lopesdfc1d962015-07-31 14:31:35 +0000457/// \brief Return information about whether a particular call site modifies
458/// or reads the specified memory location \p MemLoc before instruction \p I
459/// in a BasicBlock. A ordered basic block \p OBB can be used to speed up
460/// instruction-ordering queries inside the BasicBlock containing \p I.
461/// FIXME: this is really just shoring-up a deficiency in alias analysis.
462/// BasicAA isn't willing to spend linear time determining whether an alloca
463/// was captured before or after this particular call, while we are. However,
464/// with a smarter AA in place, this test is just wasting compile time.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000465ModRefInfo AAResults::callCapturesBefore(const Instruction *I,
466 const MemoryLocation &MemLoc,
467 DominatorTree *DT,
468 OrderedBasicBlock *OBB) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000469 if (!DT)
Chandler Carruth194f59c2015-07-22 23:15:57 +0000470 return MRI_ModRef;
Chad Rosiera968caf2012-05-14 20:35:04 +0000471
Chandler Carruth7b560d42015-09-09 17:55:00 +0000472 const Value *Object =
473 GetUnderlyingObject(MemLoc.Ptr, I->getModule()->getDataLayout());
Chad Rosiera968caf2012-05-14 20:35:04 +0000474 if (!isIdentifiedObject(Object) || isa<GlobalValue>(Object) ||
475 isa<Constant>(Object))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000476 return MRI_ModRef;
Chad Rosiera968caf2012-05-14 20:35:04 +0000477
478 ImmutableCallSite CS(I);
479 if (!CS.getInstruction() || CS.getInstruction() == Object)
Chandler Carruth194f59c2015-07-22 23:15:57 +0000480 return MRI_ModRef;
Chad Rosiera968caf2012-05-14 20:35:04 +0000481
Eugene Zelenko530851c2017-08-11 21:30:02 +0000482 if (PointerMayBeCapturedBefore(Object, /* ReturnCaptures */ true,
483 /* StoreCaptures */ true, I, DT,
484 /* include Object */ true,
485 /* OrderedBasicBlock */ OBB))
Chandler Carruth194f59c2015-07-22 23:15:57 +0000486 return MRI_ModRef;
Chad Rosiera968caf2012-05-14 20:35:04 +0000487
488 unsigned ArgNo = 0;
Chandler Carruth194f59c2015-07-22 23:15:57 +0000489 ModRefInfo R = MRI_NoModRef;
Sanjoy Dasd0bdf3e2016-06-13 19:55:04 +0000490 for (auto CI = CS.data_operands_begin(), CE = CS.data_operands_end();
Chad Rosiera968caf2012-05-14 20:35:04 +0000491 CI != CE; ++CI, ++ArgNo) {
492 // Only look at the no-capture or byval pointer arguments. If this
493 // pointer were passed to arguments that were neither of these, then it
494 // couldn't be no-capture.
495 if (!(*CI)->getType()->isPointerTy() ||
Hal Finkel39fed392016-12-15 05:09:15 +0000496 (!CS.doesNotCapture(ArgNo) &&
497 ArgNo < CS.getNumArgOperands() && !CS.isByValArgument(ArgNo)))
Chad Rosiera968caf2012-05-14 20:35:04 +0000498 continue;
499
500 // If this is a no-capture pointer argument, see if we can tell that it
501 // is impossible to alias the pointer we're checking. If not, we have to
502 // assume that the call could touch the pointer, even though it doesn't
503 // escape.
Chandler Carruthac80dc72015-06-17 07:18:54 +0000504 if (isNoAlias(MemoryLocation(*CI), MemoryLocation(Object)))
Nick Lewyckyc0514622013-07-07 10:15:16 +0000505 continue;
Hal Finkelf19e1142016-12-15 05:50:45 +0000506 if (CS.doesNotAccessMemory(ArgNo))
Nick Lewyckyc0514622013-07-07 10:15:16 +0000507 continue;
Hal Finkelf19e1142016-12-15 05:50:45 +0000508 if (CS.onlyReadsMemory(ArgNo)) {
Chandler Carruth194f59c2015-07-22 23:15:57 +0000509 R = MRI_Ref;
Nick Lewyckyc0514622013-07-07 10:15:16 +0000510 continue;
Chad Rosiera968caf2012-05-14 20:35:04 +0000511 }
Chandler Carruth194f59c2015-07-22 23:15:57 +0000512 return MRI_ModRef;
Chad Rosiera968caf2012-05-14 20:35:04 +0000513 }
Nick Lewyckyc0514622013-07-07 10:15:16 +0000514 return R;
Chad Rosiera968caf2012-05-14 20:35:04 +0000515}
Eli Friedman5c918912011-09-26 20:15:28 +0000516
Chris Lattnerd922a842002-08-22 22:46:39 +0000517/// canBasicBlockModify - Return true if it is possible for execution of the
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000518/// specified basic block to modify the location Loc.
Chris Lattnerd922a842002-08-22 22:46:39 +0000519///
Chandler Carruth7b560d42015-09-09 17:55:00 +0000520bool AAResults::canBasicBlockModify(const BasicBlock &BB,
521 const MemoryLocation &Loc) {
Chandler Carruth194f59c2015-07-22 23:15:57 +0000522 return canInstructionRangeModRef(BB.front(), BB.back(), Loc, MRI_Mod);
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000523}
524
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000525/// canInstructionRangeModRef - Return true if it is possible for the
526/// execution of the specified instructions to mod\ref (according to the
527/// mode) the location Loc. The instructions to consider are all
528/// of the instructions in the range of [I1,I2] INCLUSIVE.
Teresa Johnsonbbcf75e2015-05-13 15:04:14 +0000529/// I1 and I2 must be in the same basic block.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000530bool AAResults::canInstructionRangeModRef(const Instruction &I1,
531 const Instruction &I2,
532 const MemoryLocation &Loc,
533 const ModRefInfo Mode) {
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000534 assert(I1.getParent() == I2.getParent() &&
535 "Instructions not in same basic block!");
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000536 BasicBlock::const_iterator I = I1.getIterator();
537 BasicBlock::const_iterator E = I2.getIterator();
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000538 ++E; // Convert from inclusive to exclusive range.
539
Chris Lattner3a311832003-02-26 19:26:51 +0000540 for (; I != E; ++I) // Check every instruction in range
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000541 if (getModRefInfo(&*I, Loc) & Mode)
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000542 return true;
Chris Lattner7d58f8d2002-08-22 18:25:32 +0000543 return false;
544}
545
Chandler Carruth7b560d42015-09-09 17:55:00 +0000546// Provide a definition for the root virtual destructor.
Eugene Zelenko530851c2017-08-11 21:30:02 +0000547AAResults::Concept::~Concept() = default;
Chandler Carruth7b560d42015-09-09 17:55:00 +0000548
NAKAMURA Takumidf0cd722016-02-28 17:17:00 +0000549// Provide a definition for the static object used to identify passes.
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000550AnalysisKey AAManager::Key;
NAKAMURA Takumidf0cd722016-02-28 17:17:00 +0000551
Chandler Carruth2be10752015-10-21 12:15:19 +0000552namespace {
Eugene Zelenko530851c2017-08-11 21:30:02 +0000553
Chandler Carruth2be10752015-10-21 12:15:19 +0000554/// A wrapper pass for external alias analyses. This just squirrels away the
555/// callback used to run any analyses and register their results.
556struct ExternalAAWrapperPass : ImmutablePass {
Eugene Zelenko530851c2017-08-11 21:30:02 +0000557 using CallbackT = std::function<void(Pass &, Function &, AAResults &)>;
Chandler Carruth2be10752015-10-21 12:15:19 +0000558
559 CallbackT CB;
560
561 static char ID;
562
563 ExternalAAWrapperPass() : ImmutablePass(ID) {
564 initializeExternalAAWrapperPassPass(*PassRegistry::getPassRegistry());
565 }
Eugene Zelenko530851c2017-08-11 21:30:02 +0000566
Chandler Carruth2be10752015-10-21 12:15:19 +0000567 explicit ExternalAAWrapperPass(CallbackT CB)
568 : ImmutablePass(ID), CB(std::move(CB)) {
569 initializeExternalAAWrapperPassPass(*PassRegistry::getPassRegistry());
570 }
571
572 void getAnalysisUsage(AnalysisUsage &AU) const override {
573 AU.setPreservesAll();
574 }
575};
Eugene Zelenko530851c2017-08-11 21:30:02 +0000576
577} // end anonymous namespace
Chandler Carruth2be10752015-10-21 12:15:19 +0000578
579char ExternalAAWrapperPass::ID = 0;
Eugene Zelenko530851c2017-08-11 21:30:02 +0000580
Chandler Carruth2be10752015-10-21 12:15:19 +0000581INITIALIZE_PASS(ExternalAAWrapperPass, "external-aa", "External Alias Analysis",
582 false, true)
583
584ImmutablePass *
585llvm::createExternalAAWrapperPass(ExternalAAWrapperPass::CallbackT Callback) {
586 return new ExternalAAWrapperPass(std::move(Callback));
587}
588
Chandler Carruth7b560d42015-09-09 17:55:00 +0000589AAResultsWrapperPass::AAResultsWrapperPass() : FunctionPass(ID) {
590 initializeAAResultsWrapperPassPass(*PassRegistry::getPassRegistry());
591}
592
593char AAResultsWrapperPass::ID = 0;
594
595INITIALIZE_PASS_BEGIN(AAResultsWrapperPass, "aa",
596 "Function Alias Analysis Results", false, true)
597INITIALIZE_PASS_DEPENDENCY(BasicAAWrapperPass)
George Burgess IVbfa401e2016-07-06 00:26:41 +0000598INITIALIZE_PASS_DEPENDENCY(CFLAndersAAWrapperPass)
599INITIALIZE_PASS_DEPENDENCY(CFLSteensAAWrapperPass)
Chandler Carruth2be10752015-10-21 12:15:19 +0000600INITIALIZE_PASS_DEPENDENCY(ExternalAAWrapperPass)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000601INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
602INITIALIZE_PASS_DEPENDENCY(ObjCARCAAWrapperPass)
603INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass)
604INITIALIZE_PASS_DEPENDENCY(ScopedNoAliasAAWrapperPass)
605INITIALIZE_PASS_DEPENDENCY(TypeBasedAAWrapperPass)
606INITIALIZE_PASS_END(AAResultsWrapperPass, "aa",
607 "Function Alias Analysis Results", false, true)
608
609FunctionPass *llvm::createAAResultsWrapperPass() {
610 return new AAResultsWrapperPass();
611}
612
613/// Run the wrapper pass to rebuild an aggregation over known AA passes.
614///
615/// This is the legacy pass manager's interface to the new-style AA results
616/// aggregation object. Because this is somewhat shoe-horned into the legacy
617/// pass manager, we hard code all the specific alias analyses available into
618/// it. While the particular set enabled is configured via commandline flags,
619/// adding a new alias analysis to LLVM will require adding support for it to
620/// this list.
621bool AAResultsWrapperPass::runOnFunction(Function &F) {
622 // NB! This *must* be reset before adding new AA results to the new
623 // AAResults object because in the legacy pass manager, each instance
624 // of these will refer to the *same* immutable analyses, registering and
625 // unregistering themselves with them. We need to carefully tear down the
626 // previous object first, in this case replacing it with an empty one, before
627 // registering new results.
Chandler Carruth12884f72016-03-02 15:56:53 +0000628 AAR.reset(
629 new AAResults(getAnalysis<TargetLibraryInfoWrapperPass>().getTLI()));
Chandler Carruth7b560d42015-09-09 17:55:00 +0000630
631 // BasicAA is always available for function analyses. Also, we add it first
632 // so that it can trump TBAA results when it proves MustAlias.
633 // FIXME: TBAA should have an explicit mode to support this and then we
634 // should reconsider the ordering here.
635 if (!DisableBasicAA)
636 AAR->addAAResult(getAnalysis<BasicAAWrapperPass>().getResult());
637
638 // Populate the results with the currently available AAs.
639 if (auto *WrapperPass = getAnalysisIfAvailable<ScopedNoAliasAAWrapperPass>())
640 AAR->addAAResult(WrapperPass->getResult());
641 if (auto *WrapperPass = getAnalysisIfAvailable<TypeBasedAAWrapperPass>())
642 AAR->addAAResult(WrapperPass->getResult());
643 if (auto *WrapperPass =
644 getAnalysisIfAvailable<objcarc::ObjCARCAAWrapperPass>())
645 AAR->addAAResult(WrapperPass->getResult());
646 if (auto *WrapperPass = getAnalysisIfAvailable<GlobalsAAWrapperPass>())
647 AAR->addAAResult(WrapperPass->getResult());
648 if (auto *WrapperPass = getAnalysisIfAvailable<SCEVAAWrapperPass>())
649 AAR->addAAResult(WrapperPass->getResult());
George Burgess IVbfa401e2016-07-06 00:26:41 +0000650 if (auto *WrapperPass = getAnalysisIfAvailable<CFLAndersAAWrapperPass>())
651 AAR->addAAResult(WrapperPass->getResult());
652 if (auto *WrapperPass = getAnalysisIfAvailable<CFLSteensAAWrapperPass>())
Chandler Carruth7b560d42015-09-09 17:55:00 +0000653 AAR->addAAResult(WrapperPass->getResult());
654
Chandler Carruth2be10752015-10-21 12:15:19 +0000655 // If available, run an external AA providing callback over the results as
656 // well.
657 if (auto *WrapperPass = getAnalysisIfAvailable<ExternalAAWrapperPass>())
658 if (WrapperPass->CB)
659 WrapperPass->CB(*this, F, *AAR);
660
Chandler Carruth7b560d42015-09-09 17:55:00 +0000661 // Analyses don't mutate the IR, so return false.
662 return false;
663}
664
665void AAResultsWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
666 AU.setPreservesAll();
667 AU.addRequired<BasicAAWrapperPass>();
Chandler Carruth12884f72016-03-02 15:56:53 +0000668 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000669
670 // We also need to mark all the alias analysis passes we will potentially
671 // probe in runOnFunction as used here to ensure the legacy pass manager
672 // preserves them. This hard coding of lists of alias analyses is specific to
673 // the legacy pass manager.
674 AU.addUsedIfAvailable<ScopedNoAliasAAWrapperPass>();
675 AU.addUsedIfAvailable<TypeBasedAAWrapperPass>();
676 AU.addUsedIfAvailable<objcarc::ObjCARCAAWrapperPass>();
677 AU.addUsedIfAvailable<GlobalsAAWrapperPass>();
678 AU.addUsedIfAvailable<SCEVAAWrapperPass>();
George Burgess IVbfa401e2016-07-06 00:26:41 +0000679 AU.addUsedIfAvailable<CFLAndersAAWrapperPass>();
680 AU.addUsedIfAvailable<CFLSteensAAWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000681}
682
683AAResults llvm::createLegacyPMAAResults(Pass &P, Function &F,
684 BasicAAResult &BAR) {
Chandler Carruth12884f72016-03-02 15:56:53 +0000685 AAResults AAR(P.getAnalysis<TargetLibraryInfoWrapperPass>().getTLI());
Chandler Carruth7b560d42015-09-09 17:55:00 +0000686
687 // Add in our explicitly constructed BasicAA results.
688 if (!DisableBasicAA)
689 AAR.addAAResult(BAR);
690
691 // Populate the results with the other currently available AAs.
692 if (auto *WrapperPass =
693 P.getAnalysisIfAvailable<ScopedNoAliasAAWrapperPass>())
694 AAR.addAAResult(WrapperPass->getResult());
695 if (auto *WrapperPass = P.getAnalysisIfAvailable<TypeBasedAAWrapperPass>())
696 AAR.addAAResult(WrapperPass->getResult());
697 if (auto *WrapperPass =
698 P.getAnalysisIfAvailable<objcarc::ObjCARCAAWrapperPass>())
699 AAR.addAAResult(WrapperPass->getResult());
700 if (auto *WrapperPass = P.getAnalysisIfAvailable<GlobalsAAWrapperPass>())
701 AAR.addAAResult(WrapperPass->getResult());
George Burgess IVbfa401e2016-07-06 00:26:41 +0000702 if (auto *WrapperPass = P.getAnalysisIfAvailable<CFLAndersAAWrapperPass>())
703 AAR.addAAResult(WrapperPass->getResult());
704 if (auto *WrapperPass = P.getAnalysisIfAvailable<CFLSteensAAWrapperPass>())
Chandler Carruth7b560d42015-09-09 17:55:00 +0000705 AAR.addAAResult(WrapperPass->getResult());
706
707 return AAR;
708}
709
Dan Gohmanfb306c02009-02-03 01:28:32 +0000710bool llvm::isNoAliasCall(const Value *V) {
Benjamin Kramer45f39542015-08-05 14:16:44 +0000711 if (auto CS = ImmutableCallSite(V))
Reid Klecknerfb502d22017-04-14 20:19:02 +0000712 return CS.hasRetAttr(Attribute::NoAlias);
Dan Gohmanfb306c02009-02-03 01:28:32 +0000713 return false;
714}
715
Sanjay Pateld7f613d2016-01-13 22:17:13 +0000716bool llvm::isNoAliasArgument(const Value *V) {
Michael Kupersteinf3e663a2013-05-28 08:17:48 +0000717 if (const Argument *A = dyn_cast<Argument>(V))
718 return A->hasNoAliasAttr();
719 return false;
720}
721
Dan Gohman00ef9322010-07-07 14:27:09 +0000722bool llvm::isIdentifiedObject(const Value *V) {
Dan Gohman0824aff2010-06-29 00:50:39 +0000723 if (isa<AllocaInst>(V))
Dan Gohman1f59f012009-08-27 17:52:56 +0000724 return true;
725 if (isa<GlobalValue>(V) && !isa<GlobalAlias>(V))
Dan Gohmanfb306c02009-02-03 01:28:32 +0000726 return true;
Dan Gohman00ef9322010-07-07 14:27:09 +0000727 if (isNoAliasCall(V))
728 return true;
729 if (const Argument *A = dyn_cast<Argument>(V))
730 return A->hasNoAliasAttr() || A->hasByValAttr();
Dan Gohmanfb306c02009-02-03 01:28:32 +0000731 return false;
732}
Hal Finkelc782aa52014-07-21 12:27:23 +0000733
Sanjay Pateld7f613d2016-01-13 22:17:13 +0000734bool llvm::isIdentifiedFunctionLocal(const Value *V) {
Hal Finkelc782aa52014-07-21 12:27:23 +0000735 return isa<AllocaInst>(V) || isNoAliasCall(V) || isNoAliasArgument(V);
736}
Sanjoy Das1c481f52016-02-09 01:21:57 +0000737
Chandler Carruth12884f72016-03-02 15:56:53 +0000738void llvm::getAAResultsAnalysisUsage(AnalysisUsage &AU) {
Sanjoy Das1c481f52016-02-09 01:21:57 +0000739 // This function needs to be in sync with llvm::createLegacyPMAAResults -- if
740 // more alias analyses are added to llvm::createLegacyPMAAResults, they need
741 // to be added here also.
Chandler Carruth12884f72016-03-02 15:56:53 +0000742 AU.addRequired<TargetLibraryInfoWrapperPass>();
Sanjoy Das1c481f52016-02-09 01:21:57 +0000743 AU.addUsedIfAvailable<ScopedNoAliasAAWrapperPass>();
744 AU.addUsedIfAvailable<TypeBasedAAWrapperPass>();
745 AU.addUsedIfAvailable<objcarc::ObjCARCAAWrapperPass>();
746 AU.addUsedIfAvailable<GlobalsAAWrapperPass>();
George Burgess IVbfa401e2016-07-06 00:26:41 +0000747 AU.addUsedIfAvailable<CFLAndersAAWrapperPass>();
748 AU.addUsedIfAvailable<CFLSteensAAWrapperPass>();
Sanjoy Das1c481f52016-02-09 01:21:57 +0000749}