blob: f1dbf86ffb6018a72d98ab95157fcf9cab2eaf04 [file] [log] [blame]
Misha Brukman084a3a072003-10-24 18:06:11 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
Misha Brukman283ff692003-10-22 23:27:16 +00003<html>
4<head>
Misha Brukman3eef5d42004-07-01 15:33:24 +00005 <title>LLVM Alias Analysis Infrastructure</title>
Misha Brukmanc6ef5592004-01-15 19:04:12 +00006 <link rel="stylesheet" href="llvm.css" type="text/css">
Misha Brukman283ff692003-10-22 23:27:16 +00007</head>
Misha Brukman283ff692003-10-22 23:27:16 +00008<body>
Chris Lattnerb512e9f2003-03-04 19:37:49 +00009
Misha Brukman283ff692003-10-22 23:27:16 +000010<div class="doc_title">
Misha Brukman3eef5d42004-07-01 15:33:24 +000011 LLVM Alias Analysis Infrastructure
Misha Brukman283ff692003-10-22 23:27:16 +000012</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000013
14<ol>
Misha Brukman9782b032003-10-23 02:29:42 +000015 <li><a href="#introduction">Introduction</a></li>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000016
Chris Lattner2a19d832004-05-23 21:04:01 +000017 <li><a href="#overview"><tt>AliasAnalysis</tt> Class Overview</a>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000018 <ul>
Misha Brukman9782b032003-10-23 02:29:42 +000019 <li><a href="#pointers">Representation of Pointers</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000020 <li><a href="#alias">The <tt>alias</tt> method</a></li>
Misha Brukman9782b032003-10-23 02:29:42 +000021 <li><a href="#ModRefInfo">The <tt>getModRefInfo</tt> methods</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000022 <li><a href="#OtherItfs">Other useful <tt>AliasAnalysis</tt> methods</a></li>
23 </ul>
24 </li>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000025
Chris Lattner2a19d832004-05-23 21:04:01 +000026 <li><a href="#writingnew">Writing a new <tt>AliasAnalysis</tt> Implementation</a>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000027 <ul>
Misha Brukman9782b032003-10-23 02:29:42 +000028 <li><a href="#passsubclasses">Different Pass styles</a></li>
29 <li><a href="#requiredcalls">Required initialization calls</a></li>
30 <li><a href="#interfaces">Interfaces which may be specified</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000031 <li><a href="#chaining"><tt>AliasAnalysis</tt> chaining behavior</a></li>
32 <li><a href="#updating">Updating analysis results for transformations</a></li>
Misha Brukman9782b032003-10-23 02:29:42 +000033 <li><a href="#implefficiency">Efficiency Issues</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000034 </ul>
35 </li>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000036
Chris Lattner2a19d832004-05-23 21:04:01 +000037 <li><a href="#using">Using alias analysis results</a>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000038 <ul>
Misha Brukman9782b032003-10-23 02:29:42 +000039 <li><a href="#loadvn">Using the <tt>-load-vn</tt> Pass</a></li>
40 <li><a href="#ast">Using the <tt>AliasSetTracker</tt> class</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000041 <li><a href="#direct">Using the <tt>AliasAnalysis</tt> interface directly</a></li>
42 </ul>
43 </li>
Misha Brukman084a3a072003-10-24 18:06:11 +000044
Chris Lattner2a19d832004-05-23 21:04:01 +000045 <li><a href="#exist">Existing alias analysis implementations and clients</a>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000046 <ul>
Chris Lattner2a19d832004-05-23 21:04:01 +000047 <li><a href="#impls">Available <tt>AliasAnalysis</tt> implementations</a></li>
48 <li><a href="#aliasanalysis-xforms">Alias analysis driven transformations</a></li>
Misha Brukman3eef5d42004-07-01 15:33:24 +000049 <li><a href="#aliasanalysis-debug">Clients for debugging and evaluation of
50 implementations</a></li>
Chris Lattner2a19d832004-05-23 21:04:01 +000051 </ul>
52 </li>
Misha Brukman9782b032003-10-23 02:29:42 +000053</ol>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000054
Chris Lattner2a19d832004-05-23 21:04:01 +000055<div class="doc_author">
56 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p>
Misha Brukman084a3a072003-10-24 18:06:11 +000057</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000058
Chris Lattnerb512e9f2003-03-04 19:37:49 +000059<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +000060<div class="doc_section">
61 <a name="introduction">Introduction</a>
62</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000063<!-- *********************************************************************** -->
64
Misha Brukman283ff692003-10-22 23:27:16 +000065<div class="doc_text">
Misha Brukmanbc2d3302003-11-21 22:30:25 +000066
Chris Lattner2a19d832004-05-23 21:04:01 +000067<p>Alias Analysis (aka Pointer Analysis) is a class of techniques which attempt
68to determine whether or not two pointers ever can point to the same object in
69memory. There are many different algorithms for alias analysis and many
70different ways of classifying them: flow-sensitive vs flow-insensitive,
71context-sensitive vs context-insensitive, field-sensitive vs field-insensitive,
72unification-based vs subset-based, etc. Traditionally, alias analyses respond
73to a query with a <a href="#MustNoMay">Must, May, or No</a> alias response,
74indicating that two pointers always point to the same object, might point to the
75same object, or are known to never point to the same object.</p>
Misha Brukmanbc2d3302003-11-21 22:30:25 +000076
Chris Lattner2a19d832004-05-23 21:04:01 +000077<p>The LLVM <a
78href="http://llvm.cs.uiuc.edu/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
79class is the primary interface used by clients and implementations of alias
80analyses in the LLVM system. This class is the common interface between clients
81of alias analysis information and the implementations providing it, and is
82designed to support a wide range of implementations and clients (but currently
83all clients are assumed to be flow-insensitive). In addition to simple alias
84analysis information, this class exposes Mod/Ref information from those
85implementations which can provide it, allowing for powerful analyses and
86transformations to work well together.</p>
Misha Brukmanbc2d3302003-11-21 22:30:25 +000087
88<p>This document contains information necessary to successfully implement this
Chris Lattnerb512e9f2003-03-04 19:37:49 +000089interface, use it, and to test both sides. It also explains some of the finer
90points about what exactly results mean. If you feel that something is unclear
Misha Brukman283ff692003-10-22 23:27:16 +000091or should be added, please <a href="mailto:sabre@nondot.org">let me
Misha Brukmanbc2d3302003-11-21 22:30:25 +000092know</a>.</p>
93
Misha Brukman283ff692003-10-22 23:27:16 +000094</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +000095
96<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +000097<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +000098 <a name="overview"><tt>AliasAnalysis</tt> Class Overview</a>
Misha Brukman283ff692003-10-22 23:27:16 +000099</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000100<!-- *********************************************************************** -->
101
Misha Brukman283ff692003-10-22 23:27:16 +0000102<div class="doc_text">
Misha Brukmanbc2d3302003-11-21 22:30:25 +0000103
Chris Lattner2a19d832004-05-23 21:04:01 +0000104<p>The <a
105href="http://llvm.cs.uiuc.edu/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
106class defines the interface that the various alias analysis implementations
107should support. This class exports two important enums: <tt>AliasResult</tt>
108and <tt>ModRefResult</tt> which represent the result of an alias query or a
109mod/ref query, respectively.</p>
Misha Brukmanbc2d3302003-11-21 22:30:25 +0000110
Chris Lattner2a19d832004-05-23 21:04:01 +0000111<p>The <tt>AliasAnalysis</tt> interface exposes information about memory,
112represented in several different ways. In particular, memory objects are
113represented as a starting address and size, and function calls are represented
114as the actual <tt>call</tt> or <tt>invoke</tt> instructions that performs the
115call. The <tt>AliasAnalysis</tt> interface also exposes some helper methods
116which allow you to get mod/ref information for arbitrary instructions.</p>
Misha Brukmanbc2d3302003-11-21 22:30:25 +0000117
Misha Brukman283ff692003-10-22 23:27:16 +0000118</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000119
120<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000121<div class="doc_subsection">
122 <a name="pointers">Representation of Pointers</a>
123</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000124
Misha Brukman283ff692003-10-22 23:27:16 +0000125<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000126
Chris Lattner2a19d832004-05-23 21:04:01 +0000127<p>Most importantly, the <tt>AliasAnalysis</tt> class provides several methods
128which are used to query whether or not two memory objects alias, whether
129function calls can modify or read a memory object, etc. For all of these
130queries, memory objects are represented as a pair of their starting address (a
131symbolic LLVM <tt>Value*</tt>) and a static size.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000132
133<p>Representing memory objects as a starting address and a size is critically
Chris Lattner2a19d832004-05-23 21:04:01 +0000134important for correct Alias Analyses. For example, consider this (silly, but
135possible) C code:</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000136
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000137<pre>
138 int i;
139 char C[2];
140 char A[10];
141 /* ... */
142 for (i = 0; i != 10; ++i) {
143 C[0] = A[i]; /* One byte store */
144 C[1] = A[9-i]; /* One byte store */
145 }
146</pre>
Misha Brukman084a3a072003-10-24 18:06:11 +0000147
148<p>In this case, the <tt>basicaa</tt> pass will disambiguate the stores to
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000149<tt>C[0]</tt> and <tt>C[1]</tt> because they are accesses to two distinct
150locations one byte apart, and the accesses are each one byte. In this case, the
151LICM pass can use store motion to remove the stores from the loop. In
Misha Brukman084a3a072003-10-24 18:06:11 +0000152constrast, the following code:</p>
153
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000154<pre>
155 int i;
156 char C[2];
157 char A[10];
158 /* ... */
159 for (i = 0; i != 10; ++i) {
160 ((short*)C)[0] = A[i]; /* Two byte store! */
161 C[1] = A[9-i]; /* One byte store */
162 }
163</pre>
Misha Brukman084a3a072003-10-24 18:06:11 +0000164
165<p>In this case, the two stores to C do alias each other, because the access to
166the <tt>&amp;C[0]</tt> element is a two byte access. If size information wasn't
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000167available in the query, even the first case would have to conservatively assume
Misha Brukman084a3a072003-10-24 18:06:11 +0000168that the accesses alias.</p>
169
Misha Brukman283ff692003-10-22 23:27:16 +0000170</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000171
172<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000173<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000174 <a name="alias">The <tt>alias</tt> method</a>
175</div>
176
177<div class="doc_text">
178The <tt>alias</tt> method is the primary interface used to determine whether or
179not two memory objects alias each other. It takes two memory objects as input
180and returns MustAlias, MayAlias, or NoAlias as appropriate.
181</div>
182
183<!-- _______________________________________________________________________ -->
184<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000185 <a name="MustMayNo">Must, May, and No Alias Responses</a>
186</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000187
Misha Brukman283ff692003-10-22 23:27:16 +0000188<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000189
190<p>An Alias Analysis implementation can return one of three responses:
191MustAlias, MayAlias, and NoAlias. The No and May alias results are obvious: if
Chris Lattner2a19d832004-05-23 21:04:01 +0000192the two pointers can never equal each other, return NoAlias, if they might,
Misha Brukman084a3a072003-10-24 18:06:11 +0000193return MayAlias.</p>
194
Chris Lattner2a19d832004-05-23 21:04:01 +0000195<p>The MustAlias response is trickier though. In LLVM, the Must Alias response
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000196may only be returned if the two memory objects are guaranteed to always start at
197exactly the same location. If two memory objects overlap, but do not start at
Chris Lattner2a19d832004-05-23 21:04:01 +0000198the same location, return MayAlias.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000199
Misha Brukman283ff692003-10-22 23:27:16 +0000200</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000201
202<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000203<div class="doc_subsection">
204 <a name="ModRefInfo">The <tt>getModRefInfo</tt> methods</a>
205</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000206
Misha Brukman283ff692003-10-22 23:27:16 +0000207<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000208
209<p>The <tt>getModRefInfo</tt> methods return information about whether the
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000210execution of an instruction can read or modify a memory location. Mod/Ref
Chris Lattner2a19d832004-05-23 21:04:01 +0000211information is always conservative: if an instruction <b>might</b> read or write
212a location, ModRef is returned.</p>
213
214<p>The <tt>AliasAnalysis</tt> class also provides a <tt>getModRefInfo</tt>
215method for testing dependencies between function calls. This method takes two
216call sites (CS1 &amp; CS2), returns NoModRef if the two calls refer to disjoint
217memory locations, Ref if CS1 reads memory written by CS2, Mod if CS1 writes to
218memory read or written by CS2, or ModRef if CS1 might read or write memory
219accessed by CS2. Note that this relation is not commutative. Clients that use
220this method should be predicated on the <tt>hasNoModRefInfoForCalls()</tt>
221method, which indicates whether or not an analysis can provide mod/ref
222information for function call pairs (most can not). If this predicate is false,
223the client shouldn't waste analysis time querying the <tt>getModRefInfo</tt>
224method many times.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000225
Misha Brukman283ff692003-10-22 23:27:16 +0000226</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000227
Chris Lattner2a19d832004-05-23 21:04:01 +0000228
229<!-- ======================================================================= -->
230<div class="doc_subsection">
231 <a name="OtherItfs">Other useful <tt>AliasAnalysis</tt> methods</a>
232</div>
233
234<div class="doc_text">
235
236<p>
237Several other tidbits of information are often collected by various alias
238analysis implementations and can be put to good use by various clients.
239</p>
240
241</div>
242
243<!-- _______________________________________________________________________ -->
244<div class="doc_subsubsection">
245 The <tt>getMustAliases</tt> method
246</div>
247
248<div class="doc_text">
249
250<p>The <tt>getMustAliases</tt> method returns all values that are known to
251always must alias a pointer. This information can be provided in some cases for
252important objects like the null pointer and global values. Knowing that a
253pointer always points to a particular function allows indirect calls to be
254turned into direct calls, for example.</p>
255
256</div>
257
258<!-- _______________________________________________________________________ -->
259<div class="doc_subsubsection">
260 The <tt>pointsToConstantMemory</tt> method
261</div>
262
263<div class="doc_text">
264
265<p>The <tt>pointsToConstantMemory</tt> method returns true if and only if the
266analysis can prove that the pointer only points to unchanging memory locations
267(functions, constant global variables, and the null pointer). This information
268can be used to refine mod/ref information: it is impossible for an unchanging
269memory location to be modified.</p>
270
271</div>
272
273
274<!-- _______________________________________________________________________ -->
275<div class="doc_subsubsection">
276 <a name="simplemodref">The <tt>doesNotAccessMemory</tt> and
277 <tt>onlyReadsMemory</tt> methods</a>
278</div>
279
280<div class="doc_text">
281
282<p>These methods are used to provide very simple mod/ref information for
283function calls. The <tt>doesNotAccessMemory</tt> method returns true for a
284function if the analysis can prove that the function never reads or writes to
285memory, or if the function only reads from constant memory. Functions with this
286property are side-effect free and only depend on their input arguments, allowing
287them to be eliminated if they form common subexpressions or be hoisted out of
288loops. Many common functions behave this way (e.g., <tt>sin</tt> and
289<tt>cos</tt>) but many others do not (e.g., <tt>acos</tt>, which modifies the
290<tt>errno</tt> variable).</p>
291
292<p>The <tt>onlyReadsMemory</tt> method returns true for a function if analysis
293can prove that (at most) the function only reads from non-volatile memory.
294Functions with this property are side-effect free, only depending on their input
295arguments and the state of memory when they are called. This property allows
296calls to these functions to be eliminated and moved around, as long as there is
297no store instruction that changes the contents of memory. Note that all
298functions that satisfy the <tt>doesNotAccessMemory</tt> method also satisfies
299<tt>onlyReadsMemory</tt>.</p>
300
301</div>
302
303
304
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000305<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +0000306<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000307 <a name="writingnew">Writing a new <tt>AliasAnalysis</tt> Implementation</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000308</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000309<!-- *********************************************************************** -->
310
Misha Brukman283ff692003-10-22 23:27:16 +0000311<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000312
313<p>Writing a new alias analysis implementation for LLVM is quite
314straight-forward. There are already several implementations that you can use
315for examples, and the following information should help fill in any details.
Chris Lattner2a19d832004-05-23 21:04:01 +0000316For a examples, take a look at the <a href="#impls">various alias analysis
317implementations</a> included with LLVM.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000318
Misha Brukman283ff692003-10-22 23:27:16 +0000319</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000320
321<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000322<div class="doc_subsection">
323 <a name="passsubclasses">Different Pass styles</a>
324</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000325
Misha Brukman283ff692003-10-22 23:27:16 +0000326<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000327
328<p>The first step to determining what type of <a
329href="WritingAnLLVMPass.html">LLVM pass</a> you need to use for your Alias
330Analysis. As is the case with most other analyses and transformations, the
331answer should be fairly obvious from what type of problem you are trying to
332solve:</p>
333
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000334<ol>
Misha Brukman283ff692003-10-22 23:27:16 +0000335 <li>If you require interprocedural analysis, it should be a
336 <tt>Pass</tt>.</li>
Chris Lattner2a19d832004-05-23 21:04:01 +0000337 <li>If you are a function-local analysis, subclass <tt>FunctionPass</tt>.</li>
Misha Brukman283ff692003-10-22 23:27:16 +0000338 <li>If you don't need to look at the program at all, subclass
339 <tt>ImmutablePass</tt>.</li>
340</ol>
Misha Brukman084a3a072003-10-24 18:06:11 +0000341
342<p>In addition to the pass that you subclass, you should also inherit from the
Misha Brukmanb4dd5392003-05-07 21:47:16 +0000343<tt>AliasAnalysis</tt> interface, of course, and use the
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000344<tt>RegisterAnalysisGroup</tt> template to register as an implementation of
Misha Brukman084a3a072003-10-24 18:06:11 +0000345<tt>AliasAnalysis</tt>.</p>
346
Misha Brukman283ff692003-10-22 23:27:16 +0000347</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000348
349<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000350<div class="doc_subsection">
351 <a name="requiredcalls">Required initialization calls</a>
352</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000353
Misha Brukman283ff692003-10-22 23:27:16 +0000354<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000355
Chris Lattner2a19d832004-05-23 21:04:01 +0000356<p>Your subclass of <tt>AliasAnalysis</tt> is required to invoke two methods on
357the <tt>AliasAnalysis</tt> base class: <tt>getAnalysisUsage</tt> and
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000358<tt>InitializeAliasAnalysis</tt>. In particular, your implementation of
359<tt>getAnalysisUsage</tt> should explicitly call into the
360<tt>AliasAnalysis::getAnalysisUsage</tt> method in addition to doing any
361declaring any pass dependencies your pass has. Thus you should have something
Misha Brukman084a3a072003-10-24 18:06:11 +0000362like this:</p>
363
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000364<pre>
365 void getAnalysisUsage(AnalysisUsage &amp;AU) const {
366 AliasAnalysis::getAnalysisUsage(AU);
367 <i>// declare your dependencies here.</i>
368 }
369</pre>
Misha Brukman084a3a072003-10-24 18:06:11 +0000370
371<p>Additionally, your must invoke the <tt>InitializeAliasAnalysis</tt> method
372from your analysis run method (<tt>run</tt> for a <tt>Pass</tt>,
Chris Lattner2a19d832004-05-23 21:04:01 +0000373<tt>runOnFunction</tt> for a <tt>FunctionPass</tt>, or <tt>InitializePass</tt>
374for an <tt>ImmutablePass</tt>). For example (as part of a <tt>Pass</tt>):</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000375
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000376<pre>
377 bool run(Module &amp;M) {
378 InitializeAliasAnalysis(this);
379 <i>// Perform analysis here...</i>
380 return false;
381 }
382</pre>
Misha Brukman084a3a072003-10-24 18:06:11 +0000383
Misha Brukman283ff692003-10-22 23:27:16 +0000384</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000385
386<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000387<div class="doc_subsection">
388 <a name="interfaces">Interfaces which may be specified</a>
389</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000390
Misha Brukman283ff692003-10-22 23:27:16 +0000391<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000392
Chris Lattner2a19d832004-05-23 21:04:01 +0000393<p>All of the <a
394href="/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
395virtual methods default to providing <a href="#chaining">chaining</a> to another
396alias analysis implementation, which ends up returning conservatively correct
397information (returning "May" Alias and "Mod/Ref" for alias and mod/ref queries
Misha Brukman084a3a072003-10-24 18:06:11 +0000398respectively). Depending on the capabilities of the analysis you are
399implementing, you just override the interfaces you can improve.</p>
400
Misha Brukman283ff692003-10-22 23:27:16 +0000401</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000402
Chris Lattner2a19d832004-05-23 21:04:01 +0000403
404
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000405<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000406<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000407 <a name="chaining"><tt>AliasAnalysis</tt> chaining behavior</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000408</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000409
Misha Brukman283ff692003-10-22 23:27:16 +0000410<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000411
Chris Lattner2a19d832004-05-23 21:04:01 +0000412<p>With only two special exceptions (the <tt><a
413href="#basic-aa">basicaa</a></tt> and <a href="#no-aa"><tt>no-aa</tt></a>
414passes) every alias analysis pass chains to another alias analysis
415implementation (for example, the user can specify "<tt>-basicaa -ds-aa
416-anders-aa -licm</tt>" to get the maximum benefit from the three alias
417analyses). The alias analysis class automatically takes care of most of this
418for methods that you don't override. For methods that you do override, in code
419paths that return a conservative MayAlias or Mod/Ref result, simply return
420whatever the superclass computes. For example:</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000421
Chris Lattner2a19d832004-05-23 21:04:01 +0000422<pre>
423 AliasAnalysis::AliasResult alias(const Value *V1, unsigned V1Size,
424 const Value *V2, unsigned V2Size) {
425 if (...)
426 return NoAlias;
427 ...
428
429 <i>// Couldn't determine a must or no-alias result.</i>
430 return AliasAnalysis::alias(V1, V1Size, V2, V2Size);
431 }
432</pre>
433
434<p>In addition to analysis queries, you must make sure to unconditionally pass
435LLVM <a href="#updating">update notification</a> methods to the superclass as
436well if you override them, which allows all alias analyses in a change to be
437updated.</p>
438
439</div>
440
441
442<!-- ======================================================================= -->
443<div class="doc_subsection">
444 <a name="updating">Updating analysis results for transformations</a>
445</div>
446
447<div class="doc_text">
448<p>
449Alias analysis information is initially computed for a static snapshot of the
450program, but clients will use this information to make transformations to the
451code. All but the most trivial forms of alias analysis will need to have their
452analysis results updated to reflect the changes made by these transformations.
453</p>
454
455<p>
456The <tt>AliasAnalysis</tt> interface exposes two methods which are used to
457communicate program changes from the clients to the analysis implementations.
458Various alias analysis implementations should use these methods to ensure that
459their internal data structures are kept up-to-date as the program changes (for
460example, when an instruction is deleted), and clients of alias analysis must be
461sure to call these interfaces appropriately.
462</p>
463</div>
464
465<!-- _______________________________________________________________________ -->
466<div class="doc_subsubsection">The <tt>deleteValue</tt> method</div>
467
468<div class="doc_text">
469The <tt>deleteValue</tt> method is called by transformations when they remove an
470instruction or any other value from the program (including values that do not
471use pointers). Typically alias analyses keep data structures that have entries
472for each value in the program. When this method is called, they should remove
473any entries for the specified value, if they exist.
474</div>
475
476
477<!-- _______________________________________________________________________ -->
478<div class="doc_subsubsection">The <tt>copyValue</tt> method</div>
479
480<div class="doc_text">
481The <tt>copyValue</tt> method is used when a new value is introduced into the
482program. There is no way to introduce a value into the program that did not
483exist before (this doesn't make sense for a safe compiler transformation), so
484this is the only way to introduce a new value. This method indicates that the
485new value has exactly the same properties as the value being copied.
486</div>
487
488
489<!-- _______________________________________________________________________ -->
490<div class="doc_subsubsection">The <tt>replaceWithNewValue</tt> method</div>
491
492<div class="doc_text">
493This method is a simple helper method that is provided to make clients easier to
494use. It is implemented by copying the old analysis information to the new
495value, then deleting the old value. This method cannot be overridden by alias
496analysis implementations.
Misha Brukman283ff692003-10-22 23:27:16 +0000497</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000498
499<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000500<div class="doc_subsection">
501 <a name="implefficiency">Efficiency Issues</a>
502</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000503
Misha Brukman283ff692003-10-22 23:27:16 +0000504<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000505
506<p>From the LLVM perspective, the only thing you need to do to provide an
507efficient alias analysis is to make sure that alias analysis <b>queries</b> are
508serviced quickly. The actual calculation of the alias analysis results (the
509"run" method) is only performed once, but many (perhaps duplicate) queries may
510be performed. Because of this, try to move as much computation to the run
511method as possible (within reason).</p>
512
Misha Brukman283ff692003-10-22 23:27:16 +0000513</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000514
515<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +0000516<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000517 <a name="using">Using alias analysis results</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000518</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000519<!-- *********************************************************************** -->
520
Misha Brukman283ff692003-10-22 23:27:16 +0000521<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000522
523<p>There are several different ways to use alias analysis results. In order of
524preference, these are...</p>
525
Misha Brukman283ff692003-10-22 23:27:16 +0000526</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000527
528<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000529<div class="doc_subsection">
530 <a name="loadvn">Using the <tt>-load-vn</tt> Pass</a>
531</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000532
Misha Brukman283ff692003-10-22 23:27:16 +0000533<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000534
535<p>The <tt>load-vn</tt> pass uses alias analysis to provide value numbering
Chris Lattner2a19d832004-05-23 21:04:01 +0000536information for <tt>load</tt> instructions and pointer values. If your analysis
537or transformation can be modeled in a form that uses value numbering
538information, you don't have to do anything special to handle load instructions:
539just use the <tt>load-vn</tt> pass, which uses alias analysis.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000540
Misha Brukman283ff692003-10-22 23:27:16 +0000541</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000542
543<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000544<div class="doc_subsection">
545 <a name="ast">Using the <tt>AliasSetTracker</tt> class</a>
546</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000547
Misha Brukman283ff692003-10-22 23:27:16 +0000548<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000549
550<p>Many transformations need information about alias <b>sets</b> that are active
551in some scope, rather than information about pairwise aliasing. The <tt><a
Misha Brukman3096ca32003-12-17 23:10:49 +0000552href="/doxygen/classllvm_1_1AliasSetTracker.html">AliasSetTracker</a></tt> class is used
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000553to efficiently build these Alias Sets from the pairwise alias analysis
Chris Lattner2a19d832004-05-23 21:04:01 +0000554information provided by the <tt>AliasAnalysis</tt> interface.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000555
Chris Lattner2a19d832004-05-23 21:04:01 +0000556<p>First you initialize the AliasSetTracker by using the "<tt>add</tt>" methods
557to add information about various potentially aliasing instructions in the scope
558you are interested in. Once all of the alias sets are completed, your pass
559should simply iterate through the constructed alias sets, using the
560<tt>AliasSetTracker</tt> <tt>begin()</tt>/<tt>end()</tt> methods.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000561
562<p>The <tt>AliasSet</tt>s formed by the <tt>AliasSetTracker</tt> are guaranteed
Chris Lattnerb8b9163a2003-12-19 08:43:07 +0000563to be disjoint, calculate mod/ref information and volatility for the set, and
564keep track of whether or not all of the pointers in the set are Must aliases.
565The AliasSetTracker also makes sure that sets are properly folded due to call
Misha Brukman084a3a072003-10-24 18:06:11 +0000566instructions, and can provide a list of pointers in each set.</p>
567
568<p>As an example user of this, the <a href="/doxygen/structLICM.html">Loop
Chris Lattner2a19d832004-05-23 21:04:01 +0000569Invariant Code Motion</a> pass uses <tt>AliasSetTracker</tt>s to calculate alias
570sets for each loop nest. If an <tt>AliasSet</tt> in a loop is not modified,
571then all load instructions from that set may be hoisted out of the loop. If any
572alias sets are stored to <b>and</b> are must alias sets, then the stores may be
573sunk to outside of the loop, promoting the memory location to a register for the
574duration of the loop nest. Both of these transformations only apply if the
575pointer argument is loop-invariant.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000576
Misha Brukman283ff692003-10-22 23:27:16 +0000577</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000578
Chris Lattner2a19d832004-05-23 21:04:01 +0000579<!-- _______________________________________________________________________ -->
Chris Lattnerb8b9163a2003-12-19 08:43:07 +0000580<div class="doc_subsubsection">
581 The AliasSetTracker implementation
582</div>
583
584<div class="doc_text">
585
586<p>The AliasSetTracker class is implemented to be as efficient as possible. It
587uses the union-find algorithm to efficiently merge AliasSets when a pointer is
588inserted into the AliasSetTracker that aliases multiple sets. The primary data
589structure is a hash table mapping pointers to the AliasSet they are in.</p>
590
591<p>The AliasSetTracker class must maintain a list of all of the LLVM Value*'s
592that are in each AliasSet. Since the hash table already has entries for each
593LLVM Value* of interest, the AliasesSets thread the linked list through these
594hash-table nodes to avoid having to allocate memory unnecessarily, and to make
595merging alias sets extremely efficient (the linked list merge is constant time).
596</p>
597
598<p>You shouldn't need to understand these details if you are just a client of
599the AliasSetTracker, but if you look at the code, hopefully this brief
600description will help make sense of why things are designed the way they
601are.</p>
602
603</div>
604
605
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000606<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000607<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000608 <a name="direct">Using the <tt>AliasAnalysis</tt> interface directly</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000609</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000610
Misha Brukman283ff692003-10-22 23:27:16 +0000611<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000612
Chris Lattner2a19d832004-05-23 21:04:01 +0000613<p>If neither of these utility class are what your pass needs, you should use
614the interfaces exposed by the <tt>AliasAnalysis</tt> class directly. Try to use
615the higher-level methods when possible (e.g., use mod/ref information instead of
616the <a href="#alias"><tt>alias</tt></a> method directly if possible) to get the
617best precision and efficiency.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000618
Misha Brukman283ff692003-10-22 23:27:16 +0000619</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000620
621<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +0000622<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000623 <a name="exist">Existing alias analysis implementations and clients</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000624</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000625<!-- *********************************************************************** -->
626
Misha Brukman283ff692003-10-22 23:27:16 +0000627<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000628
Chris Lattner2a19d832004-05-23 21:04:01 +0000629<p>If you're going to be working with the LLVM alias analysis infrastructure,
630you should know what clients and implementations of alias analysis are
631available. In particular, if you are implementing an alias analysis, you should
632be aware of the <a href="#aliasanalysis-debug">the clients</a> that are useful
633for monitoring and evaluating different implementations.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000634
Misha Brukman283ff692003-10-22 23:27:16 +0000635</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000636
637<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000638<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000639 <a name="impls">Available <tt>AliasAnalysis</tt> implementations</a>
640</div>
641
642<div class="doc_text">
643
644<p>This section lists the various implementations of the <tt>AliasAnalysis</tt>
645interface. With the exception of the <a href="#no-aa"><tt>-no-aa</tt></a> and
646<a href="#basic-aa"><tt>-basicaa</tt></a> implementations, all of these <a
Chris Lattner53e5e2a2004-06-21 22:52:48 +0000647href="#chaining">chain</a> to other alias analysis implementations.</p>
Chris Lattner2a19d832004-05-23 21:04:01 +0000648
649</div>
650
651<!-- _______________________________________________________________________ -->
652<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000653 <a name="no-aa">The <tt>-no-aa</tt> pass</a>
654</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000655
Misha Brukman283ff692003-10-22 23:27:16 +0000656<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000657
Chris Lattner2a19d832004-05-23 21:04:01 +0000658<p>The <tt>-no-aa</tt> pass is just like what it sounds: an alias analysis that
659never returns any useful information. This pass can be useful if you think that
660alias analysis is doing something wrong and are trying to narrow down a
661problem.</p>
662
663</div>
664
665
666<!-- _______________________________________________________________________ -->
667<div class="doc_subsubsection">
668 <a name="basic-aa">The <tt>-basicaa</tt> pass</a>
669</div>
670
671<div class="doc_text">
672
673<p>The <tt>-basicaa</tt> pass is the default LLVM alias analysis. It is an
674aggressive local analysis that "knows" many important facts:</p>
675
676<ul>
677<li>Distinct globals, stack allocations, and heap allocations can never
678 alias.</li>
679<li>Globals, stack allocations, and heap allocations never alias the null
680 pointer.</li>
681<li>Different fields of a structure do not alias.</li>
682<li>Indexes into arrays with statically differing subscripts cannot alias.</li>
683<li>Many common standard C library functions <a
684 href="#simplemodref">never access memory or only read memory</a>.</li>
685<li>Pointers that obviously point to constant globals
686 "<tt>pointToConstantMemory</tt>".</li>
687<li>Function calls can not modify or references stack allocations if they never
688 escape from the function that allocates them (a common case for automatic
689 arrays).</li>
690</ul>
691
692</div>
693
Chris Lattner9475b962004-06-28 19:19:47 +0000694<!-- _______________________________________________________________________ -->
695<div class="doc_subsubsection">
696 <a name="globalsmodref">The <tt>-globalsmodref-aa</tt> pass</a>
697</div>
698
699<div class="doc_text">
700
701<p>This pass implements a simple context-sensitive mod/ref and alias analysis
702for internal global variables that don't "have their address taken". If a
703global does not have its address taken, the pass knows that no pointers alias
704the global.
705</p>
706
707<p>The real power of this pass is that it provides context-sensitive mod/ref
708information for call instructions. This allows the optimizer to know that
709calls to a function do not clobber or read the value of the global, allowing
710loads and stores to be eliminated.</p>
711
712<p>Note that this pass is somewhat limited in its scope (only support
713non-address taken globals), but is very quick analysis.</p>
714</div>
Chris Lattner2a19d832004-05-23 21:04:01 +0000715
716<!-- _______________________________________________________________________ -->
717<div class="doc_subsubsection">
718 <a name="anders-aa">The <tt>-anders-aa</tt> pass</a>
719</div>
720
721<div class="doc_text">
722
723<p>The <tt>-anders-aa</tt> pass implements the well-known "Andersen's algorithm"
724for interprocedural alias analysis. This algorithm is a subset-based,
725flow-insensitive, context-insensitive, and field-insensitive alias analysis that
726is widely believed to be fairly precise. Unfortunately, this algorithm is also
727O(N<sup>3</sup>). The LLVM implementation currently does not implement any of
728the refinements (such as "online cycle elimination" or "offline variable
729substitution") to improve its efficiency, so it can be quite slow in common
730cases.
731</p>
732
733</div>
734
735<!-- _______________________________________________________________________ -->
736<div class="doc_subsubsection">
737 <a name="steens-aa">The <tt>-steens-aa</tt> pass</a>
738</div>
739
740<div class="doc_text">
741
742<p>The <tt>-steens-aa</tt> pass implements a variation on the well-known
743"Steensgaard's algorithm" for interprocedural alias analysis. Steensgaard's
744algorithm is a unification-based, flow-insensitive, context-insensitive, and
745field-insensitive alias analysis that is also very scalable (effectively linear
746time).</p>
747
748<p>The LLVM <tt>-steens-aa</tt> pass implements a "speculatively
749field-<b>sensitive</b>" version of Steensgaard's algorithm using the Data
750Structure Analysis framework. This gives it substantially more precision than
751the standard algorithm while maintaining excellent analysis scalability.</p>
752
753</div>
754
755<!-- _______________________________________________________________________ -->
756<div class="doc_subsubsection">
757 <a name="ds-aa">The <tt>-ds-aa</tt> pass</a>
758</div>
759
760<div class="doc_text">
761
762<p>The <tt>-ds-aa</tt> pass implements the full Data Structure Analysis
763algorithm. Data Structure Analysis is a modular unification-based,
764flow-insensitive, context-<b>sensitive</b>, and speculatively
765field-<b>sensitive</b> alias analysis that is also quite scalable, usually at
766O(n*log(n)).</p>
767
768<p>This algorithm is capable of responding to a full variety of alias analysis
769queries, and can provide context-sensitive mod/ref information as well. The
770only major facility not implemented so far is support for must-alias
771information.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000772
Misha Brukman283ff692003-10-22 23:27:16 +0000773</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000774
775
776<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000777<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000778 <a name="aliasanalysis-xforms">Alias analysis driven transformations</a>
779</div>
780
781<div class="doc_text">
782LLVM includes several alias-analysis driven transformations which can be used
783with any of the implementations above.
784</div>
785
786<!-- _______________________________________________________________________ -->
787<div class="doc_subsubsection">
788 <a name="adce">The <tt>-adce</tt> pass</a>
789</div>
790
791<div class="doc_text">
792
793<p>The <tt>-adce</tt> pass, which implements Aggressive Dead Code Elimination
794uses the <tt>AliasAnalysis</tt> interface to delete calls to functions that do
795not have side-effects and are not used.</p>
796
797</div>
798
799
800<!-- _______________________________________________________________________ -->
801<div class="doc_subsubsection">
802 <a name="licm">The <tt>-licm</tt> pass</a>
803</div>
804
805<div class="doc_text">
806
807<p>The <tt>-licm</tt> pass implements various Loop Invariant Code Motion related
808transformations. It uses the <tt>AliasAnalysis</tt> interface for several
809different transformations:</p>
810
811<ul>
812<li>It uses mod/ref information to hoist or sink load instructions out of loops
813if there are no instructions in the loop that modifies the memory loaded.</li>
814
815<li>It uses mod/ref information to hoist function calls out of loops that do not
816write to memory and are loop-invariant.</li>
817
818<li>If uses alias information to promote memory objects that are loaded and
819stored to in loops to live in a register instead. It can do this if there are
820no may aliases to the loaded/stored memory location.</li>
821</ul>
822
823</div>
824
825<!-- _______________________________________________________________________ -->
826<div class="doc_subsubsection">
827 <a name="argpromotion">The <tt>-argpromotion</tt> pass</a>
828</div>
829
830<div class="doc_text">
831<p>
832The <tt>-argpromotion</tt> pass promotes by-reference arguments to be passed in
833by-value instead. In particular, if pointer arguments are only loaded from it
834passes in the value loaded instead of the address to the function. This pass
835uses alias information to make sure that the value loaded from the argument
836pointer is not modified between the entry of the function and any load of the
837pointer.</p>
838</div>
839
840<!-- _______________________________________________________________________ -->
841<div class="doc_subsubsection">
842 <a name="gcseloadvn">The <tt>-load-vn</tt> &amp; <tt>-gcse</tt> passes</a>
843</div>
844
845<div class="doc_text">
846<p>
847The <tt>-load-vn</tt> pass uses alias analysis to "<a href="#loadvn">value
848number</a>" loads and pointers values, which is used by the GCSE pass to
849eliminate instructions. The <tt>-load-vn</tt> pass relies on alias information
850and must-alias information. This combination of passes can make the following
851transformations:</p>
852
853<ul>
854<li>Redundant load instructions are eliminated.</li>
855<li>Load instructions that follow a store to the same location are replaced with
856the stored value ("store forwarding").</li>
857<li>Pointers values (e.g. formal arguments) that must-alias simpler expressions
858(e.g. global variables or the null pointer) are replaced. Note that this
859implements transformations like "virtual method resolution", turning indirect
860calls into direct calls.</li>
861</ul>
862
863</div>
864
865
866
867
868<!-- ======================================================================= -->
869<div class="doc_subsection">
870 <a name="aliasanalysis-debug">Clients for debugging and evaluation of implementations</a>
871</div>
872
873These passes are useful for evaluating the various alias analysis
874implementations. You can use them with commands like '<tt>opt -anders-aa -ds-aa
875-aa-eval foo.bc -disable-output -stats</tt>'.
876
877
878<!-- _______________________________________________________________________ -->
879<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000880 <a name="print-alias-sets">The <tt>-print-alias-sets</tt> pass</a>
881</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000882
Misha Brukman283ff692003-10-22 23:27:16 +0000883<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000884
885<p>The <tt>-print-alias-sets</tt> pass is exposed as part of the
886<tt>analyze</tt> tool to print out the Alias Sets formed by the <a
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000887href="#ast"><tt>AliasSetTracker</tt></a> class. This is useful if you're using
Chris Lattner2a19d832004-05-23 21:04:01 +0000888the <tt>AliasSetTracker</tt> class.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000889
Misha Brukman283ff692003-10-22 23:27:16 +0000890</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000891
Chris Lattner2a19d832004-05-23 21:04:01 +0000892
893<!-- _______________________________________________________________________ -->
894<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000895 <a name="count-aa">The <tt>-count-aa</tt> pass</a>
896</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000897
Misha Brukman283ff692003-10-22 23:27:16 +0000898<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000899
900<p>The <tt>-count-aa</tt> pass is useful to see how many queries a particular
Chris Lattner2a19d832004-05-23 21:04:01 +0000901pass is making and what responses are returned by the alias analysis. An
902example usage is:</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000903
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000904<pre>
905 $ opt -basicaa -count-aa -ds-aa -count-aa -licm
906</pre>
Misha Brukman084a3a072003-10-24 18:06:11 +0000907
908<p>Which will print out how many queries (and what responses are returned) by
909the <tt>-licm</tt> pass (of the <tt>-ds-aa</tt> pass) and how many queries are
910made of the <tt>-basicaa</tt> pass by the <tt>-ds-aa</tt> pass. This can be
Chris Lattner2a19d832004-05-23 21:04:01 +0000911useful when debugging a transformation or an alias analysis implementation.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000912
Misha Brukman283ff692003-10-22 23:27:16 +0000913</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000914
Chris Lattner2a19d832004-05-23 21:04:01 +0000915<!-- _______________________________________________________________________ -->
916<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000917 <a name="aa-eval">The <tt>-aa-eval</tt> pass</a>
918</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000919
Misha Brukman283ff692003-10-22 23:27:16 +0000920<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000921
922<p>The <tt>-aa-eval</tt> pass simply iterates through all pairs of pointers in a
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000923function and asks an alias analysis whether or not the pointers alias. This
924gives an indication of the precision of the alias analysis. Statistics are
Chris Lattner2a19d832004-05-23 21:04:01 +0000925printed indicating the percent of no/may/must aliases found (a more precise
926algorithm will have a lower number of may aliases).</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000927
Misha Brukman283ff692003-10-22 23:27:16 +0000928</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000929
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000930<!-- *********************************************************************** -->
931
Misha Brukman084a3a072003-10-24 18:06:11 +0000932<hr>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000933<address>
Misha Brukman8834af92003-12-21 22:53:21 +0000934 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman58ec4342003-11-22 01:07:30 +0000935 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000936 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman55ba2202004-05-12 18:02:00 +0000937 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000938
939 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
Misha Brukman55ba2202004-05-12 18:02:00 +0000940 <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000941 Last modified: $Date$
942</address>
Misha Brukman283ff692003-10-22 23:27:16 +0000943
944</body>
945</html>