blob: 748b3cb30eb9c958fb426ffeefe6276849153cef [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
Duncan Sands16f122e2007-03-30 12:22:09 +000073to a query with a <a href="#MustMayNo">Must, May, or No</a> alias response,
Chris Lattner2a19d832004-05-23 21:04:01 +000074indicating 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
Reid Spencerca058542006-03-14 05:39:39 +000078href="http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
Chris Lattner2a19d832004-05-23 21:04:01 +000079class 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
Reid Spencerca058542006-03-14 05:39:39 +0000105href="http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
Chris Lattner2a19d832004-05-23 21:04:01 +0000106class 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
Misha Brukman2361fcf2004-07-28 22:18:33 +0000137<div class="doc_code">
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000138<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000139int i;
140char C[2];
141char A[10];
142/* ... */
143for (i = 0; i != 10; ++i) {
144 C[0] = A[i]; /* One byte store */
145 C[1] = A[9-i]; /* One byte store */
146}
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000147</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000148</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000149
150<p>In this case, the <tt>basicaa</tt> pass will disambiguate the stores to
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000151<tt>C[0]</tt> and <tt>C[1]</tt> because they are accesses to two distinct
152locations one byte apart, and the accesses are each one byte. In this case, the
153LICM pass can use store motion to remove the stores from the loop. In
Misha Brukman084a3a072003-10-24 18:06:11 +0000154constrast, the following code:</p>
155
Misha Brukman2361fcf2004-07-28 22:18:33 +0000156<div class="doc_code">
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000157<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000158int i;
159char C[2];
160char A[10];
161/* ... */
162for (i = 0; i != 10; ++i) {
163 ((short*)C)[0] = A[i]; /* Two byte store! */
164 C[1] = A[9-i]; /* One byte store */
165}
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000166</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000167</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000168
169<p>In this case, the two stores to C do alias each other, because the access to
170the <tt>&amp;C[0]</tt> element is a two byte access. If size information wasn't
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000171available in the query, even the first case would have to conservatively assume
Misha Brukman084a3a072003-10-24 18:06:11 +0000172that the accesses alias.</p>
173
Misha Brukman283ff692003-10-22 23:27:16 +0000174</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000175
176<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000177<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000178 <a name="alias">The <tt>alias</tt> method</a>
179</div>
180
181<div class="doc_text">
182The <tt>alias</tt> method is the primary interface used to determine whether or
183not two memory objects alias each other. It takes two memory objects as input
184and returns MustAlias, MayAlias, or NoAlias as appropriate.
185</div>
186
187<!-- _______________________________________________________________________ -->
188<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000189 <a name="MustMayNo">Must, May, and No Alias Responses</a>
190</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000191
Misha Brukman283ff692003-10-22 23:27:16 +0000192<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000193
194<p>An Alias Analysis implementation can return one of three responses:
195MustAlias, MayAlias, and NoAlias. The No and May alias results are obvious: if
Chris Lattner2a19d832004-05-23 21:04:01 +0000196the two pointers can never equal each other, return NoAlias, if they might,
Misha Brukman084a3a072003-10-24 18:06:11 +0000197return MayAlias.</p>
198
Chris Lattner2a19d832004-05-23 21:04:01 +0000199<p>The MustAlias response is trickier though. In LLVM, the Must Alias response
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000200may only be returned if the two memory objects are guaranteed to always start at
201exactly the same location. If two memory objects overlap, but do not start at
Chris Lattner2a19d832004-05-23 21:04:01 +0000202the same location, return MayAlias.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000203
Misha Brukman283ff692003-10-22 23:27:16 +0000204</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000205
206<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000207<div class="doc_subsection">
208 <a name="ModRefInfo">The <tt>getModRefInfo</tt> methods</a>
209</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000210
Misha Brukman283ff692003-10-22 23:27:16 +0000211<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000212
213<p>The <tt>getModRefInfo</tt> methods return information about whether the
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000214execution of an instruction can read or modify a memory location. Mod/Ref
Chris Lattner2a19d832004-05-23 21:04:01 +0000215information is always conservative: if an instruction <b>might</b> read or write
216a location, ModRef is returned.</p>
217
218<p>The <tt>AliasAnalysis</tt> class also provides a <tt>getModRefInfo</tt>
219method for testing dependencies between function calls. This method takes two
220call sites (CS1 &amp; CS2), returns NoModRef if the two calls refer to disjoint
221memory locations, Ref if CS1 reads memory written by CS2, Mod if CS1 writes to
222memory read or written by CS2, or ModRef if CS1 might read or write memory
223accessed by CS2. Note that this relation is not commutative. Clients that use
224this method should be predicated on the <tt>hasNoModRefInfoForCalls()</tt>
225method, which indicates whether or not an analysis can provide mod/ref
226information for function call pairs (most can not). If this predicate is false,
227the client shouldn't waste analysis time querying the <tt>getModRefInfo</tt>
228method many times.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000229
Misha Brukman283ff692003-10-22 23:27:16 +0000230</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000231
Chris Lattner2a19d832004-05-23 21:04:01 +0000232
233<!-- ======================================================================= -->
234<div class="doc_subsection">
235 <a name="OtherItfs">Other useful <tt>AliasAnalysis</tt> methods</a>
236</div>
237
238<div class="doc_text">
239
240<p>
241Several other tidbits of information are often collected by various alias
242analysis implementations and can be put to good use by various clients.
243</p>
244
245</div>
246
247<!-- _______________________________________________________________________ -->
248<div class="doc_subsubsection">
249 The <tt>getMustAliases</tt> method
250</div>
251
252<div class="doc_text">
253
254<p>The <tt>getMustAliases</tt> method returns all values that are known to
255always must alias a pointer. This information can be provided in some cases for
256important objects like the null pointer and global values. Knowing that a
257pointer always points to a particular function allows indirect calls to be
258turned into direct calls, for example.</p>
259
260</div>
261
262<!-- _______________________________________________________________________ -->
263<div class="doc_subsubsection">
264 The <tt>pointsToConstantMemory</tt> method
265</div>
266
267<div class="doc_text">
268
269<p>The <tt>pointsToConstantMemory</tt> method returns true if and only if the
270analysis can prove that the pointer only points to unchanging memory locations
271(functions, constant global variables, and the null pointer). This information
272can be used to refine mod/ref information: it is impossible for an unchanging
273memory location to be modified.</p>
274
275</div>
276
Chris Lattner2a19d832004-05-23 21:04:01 +0000277<!-- _______________________________________________________________________ -->
278<div class="doc_subsubsection">
279 <a name="simplemodref">The <tt>doesNotAccessMemory</tt> and
280 <tt>onlyReadsMemory</tt> methods</a>
281</div>
282
283<div class="doc_text">
284
285<p>These methods are used to provide very simple mod/ref information for
286function calls. The <tt>doesNotAccessMemory</tt> method returns true for a
287function if the analysis can prove that the function never reads or writes to
288memory, or if the function only reads from constant memory. Functions with this
289property are side-effect free and only depend on their input arguments, allowing
290them to be eliminated if they form common subexpressions or be hoisted out of
291loops. Many common functions behave this way (e.g., <tt>sin</tt> and
292<tt>cos</tt>) but many others do not (e.g., <tt>acos</tt>, which modifies the
293<tt>errno</tt> variable).</p>
294
295<p>The <tt>onlyReadsMemory</tt> method returns true for a function if analysis
296can prove that (at most) the function only reads from non-volatile memory.
297Functions with this property are side-effect free, only depending on their input
298arguments and the state of memory when they are called. This property allows
299calls to these functions to be eliminated and moved around, as long as there is
300no store instruction that changes the contents of memory. Note that all
301functions that satisfy the <tt>doesNotAccessMemory</tt> method also satisfies
302<tt>onlyReadsMemory</tt>.</p>
303
304</div>
305
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000306<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +0000307<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000308 <a name="writingnew">Writing a new <tt>AliasAnalysis</tt> Implementation</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000309</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000310<!-- *********************************************************************** -->
311
Misha Brukman283ff692003-10-22 23:27:16 +0000312<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000313
314<p>Writing a new alias analysis implementation for LLVM is quite
315straight-forward. There are already several implementations that you can use
316for examples, and the following information should help fill in any details.
Chris Lattner2a19d832004-05-23 21:04:01 +0000317For a examples, take a look at the <a href="#impls">various alias analysis
318implementations</a> included with LLVM.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000319
Misha Brukman283ff692003-10-22 23:27:16 +0000320</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000321
322<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000323<div class="doc_subsection">
324 <a name="passsubclasses">Different Pass styles</a>
325</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000326
Misha Brukman283ff692003-10-22 23:27:16 +0000327<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000328
329<p>The first step to determining what type of <a
330href="WritingAnLLVMPass.html">LLVM pass</a> you need to use for your Alias
331Analysis. As is the case with most other analyses and transformations, the
332answer should be fairly obvious from what type of problem you are trying to
333solve:</p>
334
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000335<ol>
Misha Brukman283ff692003-10-22 23:27:16 +0000336 <li>If you require interprocedural analysis, it should be a
337 <tt>Pass</tt>.</li>
Chris Lattner2a19d832004-05-23 21:04:01 +0000338 <li>If you are a function-local analysis, subclass <tt>FunctionPass</tt>.</li>
Misha Brukman283ff692003-10-22 23:27:16 +0000339 <li>If you don't need to look at the program at all, subclass
340 <tt>ImmutablePass</tt>.</li>
341</ol>
Misha Brukman084a3a072003-10-24 18:06:11 +0000342
343<p>In addition to the pass that you subclass, you should also inherit from the
Misha Brukmanb4dd5392003-05-07 21:47:16 +0000344<tt>AliasAnalysis</tt> interface, of course, and use the
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000345<tt>RegisterAnalysisGroup</tt> template to register as an implementation of
Misha Brukman084a3a072003-10-24 18:06:11 +0000346<tt>AliasAnalysis</tt>.</p>
347
Misha Brukman283ff692003-10-22 23:27:16 +0000348</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000349
350<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000351<div class="doc_subsection">
352 <a name="requiredcalls">Required initialization calls</a>
353</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000354
Misha Brukman283ff692003-10-22 23:27:16 +0000355<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000356
Chris Lattner2a19d832004-05-23 21:04:01 +0000357<p>Your subclass of <tt>AliasAnalysis</tt> is required to invoke two methods on
358the <tt>AliasAnalysis</tt> base class: <tt>getAnalysisUsage</tt> and
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000359<tt>InitializeAliasAnalysis</tt>. In particular, your implementation of
360<tt>getAnalysisUsage</tt> should explicitly call into the
361<tt>AliasAnalysis::getAnalysisUsage</tt> method in addition to doing any
362declaring any pass dependencies your pass has. Thus you should have something
Misha Brukman084a3a072003-10-24 18:06:11 +0000363like this:</p>
364
Misha Brukman2361fcf2004-07-28 22:18:33 +0000365<div class="doc_code">
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000366<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000367void getAnalysisUsage(AnalysisUsage &amp;AU) const {
368 AliasAnalysis::getAnalysisUsage(AU);
369 <i>// declare your dependencies here.</i>
370}
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000371</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000372</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000373
374<p>Additionally, your must invoke the <tt>InitializeAliasAnalysis</tt> method
375from your analysis run method (<tt>run</tt> for a <tt>Pass</tt>,
Chris Lattner2a19d832004-05-23 21:04:01 +0000376<tt>runOnFunction</tt> for a <tt>FunctionPass</tt>, or <tt>InitializePass</tt>
377for an <tt>ImmutablePass</tt>). For example (as part of a <tt>Pass</tt>):</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000378
Misha Brukman2361fcf2004-07-28 22:18:33 +0000379<div class="doc_code">
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000380<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000381bool run(Module &amp;M) {
382 InitializeAliasAnalysis(this);
383 <i>// Perform analysis here...</i>
384 return false;
385}
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000386</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000387</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000388
Misha Brukman283ff692003-10-22 23:27:16 +0000389</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000390
391<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000392<div class="doc_subsection">
393 <a name="interfaces">Interfaces which may be specified</a>
394</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000395
Misha Brukman283ff692003-10-22 23:27:16 +0000396<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000397
Chris Lattner2a19d832004-05-23 21:04:01 +0000398<p>All of the <a
399href="/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a>
400virtual methods default to providing <a href="#chaining">chaining</a> to another
401alias analysis implementation, which ends up returning conservatively correct
402information (returning "May" Alias and "Mod/Ref" for alias and mod/ref queries
Misha Brukman084a3a072003-10-24 18:06:11 +0000403respectively). Depending on the capabilities of the analysis you are
404implementing, you just override the interfaces you can improve.</p>
405
Misha Brukman283ff692003-10-22 23:27:16 +0000406</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000407
Chris Lattner2a19d832004-05-23 21:04:01 +0000408
409
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000410<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000411<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000412 <a name="chaining"><tt>AliasAnalysis</tt> chaining behavior</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000413</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000414
Misha Brukman283ff692003-10-22 23:27:16 +0000415<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000416
Chris Lattner2a19d832004-05-23 21:04:01 +0000417<p>With only two special exceptions (the <tt><a
418href="#basic-aa">basicaa</a></tt> and <a href="#no-aa"><tt>no-aa</tt></a>
419passes) every alias analysis pass chains to another alias analysis
420implementation (for example, the user can specify "<tt>-basicaa -ds-aa
421-anders-aa -licm</tt>" to get the maximum benefit from the three alias
422analyses). The alias analysis class automatically takes care of most of this
423for methods that you don't override. For methods that you do override, in code
424paths that return a conservative MayAlias or Mod/Ref result, simply return
425whatever the superclass computes. For example:</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000426
Misha Brukman2361fcf2004-07-28 22:18:33 +0000427<div class="doc_code">
Chris Lattner2a19d832004-05-23 21:04:01 +0000428<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000429AliasAnalysis::AliasResult alias(const Value *V1, unsigned V1Size,
430 const Value *V2, unsigned V2Size) {
431 if (...)
432 return NoAlias;
433 ...
Chris Lattner2a19d832004-05-23 21:04:01 +0000434
Misha Brukman2361fcf2004-07-28 22:18:33 +0000435 <i>// Couldn't determine a must or no-alias result.</i>
436 return AliasAnalysis::alias(V1, V1Size, V2, V2Size);
437}
Chris Lattner2a19d832004-05-23 21:04:01 +0000438</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000439</div>
Chris Lattner2a19d832004-05-23 21:04:01 +0000440
441<p>In addition to analysis queries, you must make sure to unconditionally pass
442LLVM <a href="#updating">update notification</a> methods to the superclass as
443well if you override them, which allows all alias analyses in a change to be
444updated.</p>
445
446</div>
447
448
449<!-- ======================================================================= -->
450<div class="doc_subsection">
451 <a name="updating">Updating analysis results for transformations</a>
452</div>
453
454<div class="doc_text">
455<p>
456Alias analysis information is initially computed for a static snapshot of the
457program, but clients will use this information to make transformations to the
458code. All but the most trivial forms of alias analysis will need to have their
459analysis results updated to reflect the changes made by these transformations.
460</p>
461
462<p>
463The <tt>AliasAnalysis</tt> interface exposes two methods which are used to
464communicate program changes from the clients to the analysis implementations.
465Various alias analysis implementations should use these methods to ensure that
466their internal data structures are kept up-to-date as the program changes (for
467example, when an instruction is deleted), and clients of alias analysis must be
468sure to call these interfaces appropriately.
469</p>
470</div>
471
472<!-- _______________________________________________________________________ -->
473<div class="doc_subsubsection">The <tt>deleteValue</tt> method</div>
474
475<div class="doc_text">
476The <tt>deleteValue</tt> method is called by transformations when they remove an
477instruction or any other value from the program (including values that do not
478use pointers). Typically alias analyses keep data structures that have entries
479for each value in the program. When this method is called, they should remove
480any entries for the specified value, if they exist.
481</div>
482
Chris Lattner2a19d832004-05-23 21:04:01 +0000483<!-- _______________________________________________________________________ -->
484<div class="doc_subsubsection">The <tt>copyValue</tt> method</div>
485
486<div class="doc_text">
487The <tt>copyValue</tt> method is used when a new value is introduced into the
488program. There is no way to introduce a value into the program that did not
489exist before (this doesn't make sense for a safe compiler transformation), so
490this is the only way to introduce a new value. This method indicates that the
491new value has exactly the same properties as the value being copied.
492</div>
493
Chris Lattner2a19d832004-05-23 21:04:01 +0000494<!-- _______________________________________________________________________ -->
495<div class="doc_subsubsection">The <tt>replaceWithNewValue</tt> method</div>
496
497<div class="doc_text">
498This method is a simple helper method that is provided to make clients easier to
499use. It is implemented by copying the old analysis information to the new
500value, then deleting the old value. This method cannot be overridden by alias
501analysis implementations.
Misha Brukman283ff692003-10-22 23:27:16 +0000502</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000503
504<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000505<div class="doc_subsection">
506 <a name="implefficiency">Efficiency Issues</a>
507</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000508
Misha Brukman283ff692003-10-22 23:27:16 +0000509<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000510
511<p>From the LLVM perspective, the only thing you need to do to provide an
512efficient alias analysis is to make sure that alias analysis <b>queries</b> are
513serviced quickly. The actual calculation of the alias analysis results (the
514"run" method) is only performed once, but many (perhaps duplicate) queries may
515be performed. Because of this, try to move as much computation to the run
516method as possible (within reason).</p>
517
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_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000522 <a name="using">Using alias analysis results</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000523</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000524<!-- *********************************************************************** -->
525
Misha Brukman283ff692003-10-22 23:27:16 +0000526<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000527
528<p>There are several different ways to use alias analysis results. In order of
529preference, these are...</p>
530
Misha Brukman283ff692003-10-22 23:27:16 +0000531</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000532
533<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000534<div class="doc_subsection">
535 <a name="loadvn">Using the <tt>-load-vn</tt> Pass</a>
536</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000537
Misha Brukman283ff692003-10-22 23:27:16 +0000538<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000539
540<p>The <tt>load-vn</tt> pass uses alias analysis to provide value numbering
Chris Lattner2a19d832004-05-23 21:04:01 +0000541information for <tt>load</tt> instructions and pointer values. If your analysis
542or transformation can be modeled in a form that uses value numbering
543information, you don't have to do anything special to handle load instructions:
544just use the <tt>load-vn</tt> pass, which uses alias analysis.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000545
Misha Brukman283ff692003-10-22 23:27:16 +0000546</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000547
548<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000549<div class="doc_subsection">
550 <a name="ast">Using the <tt>AliasSetTracker</tt> class</a>
551</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000552
Misha Brukman283ff692003-10-22 23:27:16 +0000553<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000554
555<p>Many transformations need information about alias <b>sets</b> that are active
556in some scope, rather than information about pairwise aliasing. The <tt><a
Misha Brukman2361fcf2004-07-28 22:18:33 +0000557href="/doxygen/classllvm_1_1AliasSetTracker.html">AliasSetTracker</a></tt> class
558is used to efficiently build these Alias Sets from the pairwise alias analysis
Chris Lattner2a19d832004-05-23 21:04:01 +0000559information provided by the <tt>AliasAnalysis</tt> interface.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000560
Chris Lattner2a19d832004-05-23 21:04:01 +0000561<p>First you initialize the AliasSetTracker by using the "<tt>add</tt>" methods
562to add information about various potentially aliasing instructions in the scope
563you are interested in. Once all of the alias sets are completed, your pass
564should simply iterate through the constructed alias sets, using the
565<tt>AliasSetTracker</tt> <tt>begin()</tt>/<tt>end()</tt> methods.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000566
567<p>The <tt>AliasSet</tt>s formed by the <tt>AliasSetTracker</tt> are guaranteed
Chris Lattnerb8b9163a2003-12-19 08:43:07 +0000568to be disjoint, calculate mod/ref information and volatility for the set, and
569keep track of whether or not all of the pointers in the set are Must aliases.
570The AliasSetTracker also makes sure that sets are properly folded due to call
Misha Brukman084a3a072003-10-24 18:06:11 +0000571instructions, and can provide a list of pointers in each set.</p>
572
573<p>As an example user of this, the <a href="/doxygen/structLICM.html">Loop
Chris Lattner2a19d832004-05-23 21:04:01 +0000574Invariant Code Motion</a> pass uses <tt>AliasSetTracker</tt>s to calculate alias
575sets for each loop nest. If an <tt>AliasSet</tt> in a loop is not modified,
576then all load instructions from that set may be hoisted out of the loop. If any
577alias sets are stored to <b>and</b> are must alias sets, then the stores may be
578sunk to outside of the loop, promoting the memory location to a register for the
579duration of the loop nest. Both of these transformations only apply if the
580pointer argument is loop-invariant.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000581
Misha Brukman283ff692003-10-22 23:27:16 +0000582</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000583
Chris Lattner2a19d832004-05-23 21:04:01 +0000584<!-- _______________________________________________________________________ -->
Chris Lattnerb8b9163a2003-12-19 08:43:07 +0000585<div class="doc_subsubsection">
586 The AliasSetTracker implementation
587</div>
588
589<div class="doc_text">
590
591<p>The AliasSetTracker class is implemented to be as efficient as possible. It
592uses the union-find algorithm to efficiently merge AliasSets when a pointer is
593inserted into the AliasSetTracker that aliases multiple sets. The primary data
594structure is a hash table mapping pointers to the AliasSet they are in.</p>
595
596<p>The AliasSetTracker class must maintain a list of all of the LLVM Value*'s
597that are in each AliasSet. Since the hash table already has entries for each
598LLVM Value* of interest, the AliasesSets thread the linked list through these
599hash-table nodes to avoid having to allocate memory unnecessarily, and to make
600merging alias sets extremely efficient (the linked list merge is constant time).
601</p>
602
603<p>You shouldn't need to understand these details if you are just a client of
604the AliasSetTracker, but if you look at the code, hopefully this brief
605description will help make sense of why things are designed the way they
606are.</p>
607
608</div>
609
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000610<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000611<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000612 <a name="direct">Using the <tt>AliasAnalysis</tt> interface directly</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000613</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000614
Misha Brukman283ff692003-10-22 23:27:16 +0000615<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000616
Chris Lattner2a19d832004-05-23 21:04:01 +0000617<p>If neither of these utility class are what your pass needs, you should use
618the interfaces exposed by the <tt>AliasAnalysis</tt> class directly. Try to use
619the higher-level methods when possible (e.g., use mod/ref information instead of
620the <a href="#alias"><tt>alias</tt></a> method directly if possible) to get the
621best precision and efficiency.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000622
Misha Brukman283ff692003-10-22 23:27:16 +0000623</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000624
625<!-- *********************************************************************** -->
Misha Brukman283ff692003-10-22 23:27:16 +0000626<div class="doc_section">
Chris Lattner2a19d832004-05-23 21:04:01 +0000627 <a name="exist">Existing alias analysis implementations and clients</a>
Misha Brukman283ff692003-10-22 23:27:16 +0000628</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000629<!-- *********************************************************************** -->
630
Misha Brukman283ff692003-10-22 23:27:16 +0000631<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000632
Chris Lattner2a19d832004-05-23 21:04:01 +0000633<p>If you're going to be working with the LLVM alias analysis infrastructure,
634you should know what clients and implementations of alias analysis are
635available. In particular, if you are implementing an alias analysis, you should
636be aware of the <a href="#aliasanalysis-debug">the clients</a> that are useful
637for monitoring and evaluating different implementations.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000638
Misha Brukman283ff692003-10-22 23:27:16 +0000639</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000640
641<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000642<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000643 <a name="impls">Available <tt>AliasAnalysis</tt> implementations</a>
644</div>
645
646<div class="doc_text">
647
648<p>This section lists the various implementations of the <tt>AliasAnalysis</tt>
649interface. With the exception of the <a href="#no-aa"><tt>-no-aa</tt></a> and
650<a href="#basic-aa"><tt>-basicaa</tt></a> implementations, all of these <a
Chris Lattner53e5e2a2004-06-21 22:52:48 +0000651href="#chaining">chain</a> to other alias analysis implementations.</p>
Chris Lattner2a19d832004-05-23 21:04:01 +0000652
653</div>
654
655<!-- _______________________________________________________________________ -->
656<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000657 <a name="no-aa">The <tt>-no-aa</tt> pass</a>
658</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000659
Misha Brukman283ff692003-10-22 23:27:16 +0000660<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000661
Chris Lattner2a19d832004-05-23 21:04:01 +0000662<p>The <tt>-no-aa</tt> pass is just like what it sounds: an alias analysis that
663never returns any useful information. This pass can be useful if you think that
664alias analysis is doing something wrong and are trying to narrow down a
665problem.</p>
666
667</div>
668
Chris Lattner2a19d832004-05-23 21:04:01 +0000669<!-- _______________________________________________________________________ -->
670<div class="doc_subsubsection">
671 <a name="basic-aa">The <tt>-basicaa</tt> pass</a>
672</div>
673
674<div class="doc_text">
675
676<p>The <tt>-basicaa</tt> pass is the default LLVM alias analysis. It is an
677aggressive local analysis that "knows" many important facts:</p>
678
679<ul>
680<li>Distinct globals, stack allocations, and heap allocations can never
681 alias.</li>
682<li>Globals, stack allocations, and heap allocations never alias the null
683 pointer.</li>
684<li>Different fields of a structure do not alias.</li>
685<li>Indexes into arrays with statically differing subscripts cannot alias.</li>
686<li>Many common standard C library functions <a
687 href="#simplemodref">never access memory or only read memory</a>.</li>
688<li>Pointers that obviously point to constant globals
689 "<tt>pointToConstantMemory</tt>".</li>
690<li>Function calls can not modify or references stack allocations if they never
691 escape from the function that allocates them (a common case for automatic
692 arrays).</li>
693</ul>
694
695</div>
696
Chris Lattner9475b962004-06-28 19:19:47 +0000697<!-- _______________________________________________________________________ -->
698<div class="doc_subsubsection">
699 <a name="globalsmodref">The <tt>-globalsmodref-aa</tt> pass</a>
700</div>
701
702<div class="doc_text">
703
704<p>This pass implements a simple context-sensitive mod/ref and alias analysis
Chris Lattnerd1384372004-07-27 07:50:07 +0000705for internal global variables that don't "have their address taken". If a
706global does not have its address taken, the pass knows that no pointers alias
707the global. This pass also keeps track of functions that it knows never access
708memory or never read memory. This allows certain optimizations (e.g. GCSE) to
709eliminate call instructions entirely.
Chris Lattner9475b962004-06-28 19:19:47 +0000710</p>
711
712<p>The real power of this pass is that it provides context-sensitive mod/ref
713information for call instructions. This allows the optimizer to know that
714calls to a function do not clobber or read the value of the global, allowing
715loads and stores to be eliminated.</p>
716
717<p>Note that this pass is somewhat limited in its scope (only support
718non-address taken globals), but is very quick analysis.</p>
719</div>
Chris Lattner2a19d832004-05-23 21:04:01 +0000720
721<!-- _______________________________________________________________________ -->
722<div class="doc_subsubsection">
723 <a name="anders-aa">The <tt>-anders-aa</tt> pass</a>
724</div>
725
726<div class="doc_text">
727
728<p>The <tt>-anders-aa</tt> pass implements the well-known "Andersen's algorithm"
729for interprocedural alias analysis. This algorithm is a subset-based,
730flow-insensitive, context-insensitive, and field-insensitive alias analysis that
731is widely believed to be fairly precise. Unfortunately, this algorithm is also
732O(N<sup>3</sup>). The LLVM implementation currently does not implement any of
733the refinements (such as "online cycle elimination" or "offline variable
734substitution") to improve its efficiency, so it can be quite slow in common
735cases.
736</p>
737
738</div>
739
740<!-- _______________________________________________________________________ -->
741<div class="doc_subsubsection">
742 <a name="steens-aa">The <tt>-steens-aa</tt> pass</a>
743</div>
744
745<div class="doc_text">
746
747<p>The <tt>-steens-aa</tt> pass implements a variation on the well-known
748"Steensgaard's algorithm" for interprocedural alias analysis. Steensgaard's
749algorithm is a unification-based, flow-insensitive, context-insensitive, and
750field-insensitive alias analysis that is also very scalable (effectively linear
751time).</p>
752
753<p>The LLVM <tt>-steens-aa</tt> pass implements a "speculatively
754field-<b>sensitive</b>" version of Steensgaard's algorithm using the Data
755Structure Analysis framework. This gives it substantially more precision than
756the standard algorithm while maintaining excellent analysis scalability.</p>
757
Chris Lattner4b325282007-07-03 04:41:50 +0000758<p>Note that <tt>-steens-aa</tt> is available in the optional "poolalloc"
759module, it is not part of the LLVM core.</p>
760
Chris Lattner2a19d832004-05-23 21:04:01 +0000761</div>
762
763<!-- _______________________________________________________________________ -->
764<div class="doc_subsubsection">
765 <a name="ds-aa">The <tt>-ds-aa</tt> pass</a>
766</div>
767
768<div class="doc_text">
769
770<p>The <tt>-ds-aa</tt> pass implements the full Data Structure Analysis
771algorithm. Data Structure Analysis is a modular unification-based,
772flow-insensitive, context-<b>sensitive</b>, and speculatively
773field-<b>sensitive</b> alias analysis that is also quite scalable, usually at
774O(n*log(n)).</p>
775
776<p>This algorithm is capable of responding to a full variety of alias analysis
777queries, and can provide context-sensitive mod/ref information as well. The
778only major facility not implemented so far is support for must-alias
779information.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000780
Chris Lattner4b325282007-07-03 04:41:50 +0000781<p>Note that <tt>-ds-aa</tt> is available in the optional "poolalloc"
782module, it is not part of the LLVM core.</p>
783
Misha Brukman283ff692003-10-22 23:27:16 +0000784</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000785
786
787<!-- ======================================================================= -->
Misha Brukman283ff692003-10-22 23:27:16 +0000788<div class="doc_subsection">
Chris Lattner2a19d832004-05-23 21:04:01 +0000789 <a name="aliasanalysis-xforms">Alias analysis driven transformations</a>
790</div>
791
792<div class="doc_text">
793LLVM includes several alias-analysis driven transformations which can be used
794with any of the implementations above.
795</div>
796
797<!-- _______________________________________________________________________ -->
798<div class="doc_subsubsection">
799 <a name="adce">The <tt>-adce</tt> pass</a>
800</div>
801
802<div class="doc_text">
803
804<p>The <tt>-adce</tt> pass, which implements Aggressive Dead Code Elimination
805uses the <tt>AliasAnalysis</tt> interface to delete calls to functions that do
806not have side-effects and are not used.</p>
807
808</div>
809
810
811<!-- _______________________________________________________________________ -->
812<div class="doc_subsubsection">
813 <a name="licm">The <tt>-licm</tt> pass</a>
814</div>
815
816<div class="doc_text">
817
818<p>The <tt>-licm</tt> pass implements various Loop Invariant Code Motion related
819transformations. It uses the <tt>AliasAnalysis</tt> interface for several
820different transformations:</p>
821
822<ul>
823<li>It uses mod/ref information to hoist or sink load instructions out of loops
824if there are no instructions in the loop that modifies the memory loaded.</li>
825
826<li>It uses mod/ref information to hoist function calls out of loops that do not
827write to memory and are loop-invariant.</li>
828
829<li>If uses alias information to promote memory objects that are loaded and
830stored to in loops to live in a register instead. It can do this if there are
831no may aliases to the loaded/stored memory location.</li>
832</ul>
833
834</div>
835
836<!-- _______________________________________________________________________ -->
837<div class="doc_subsubsection">
838 <a name="argpromotion">The <tt>-argpromotion</tt> pass</a>
839</div>
840
841<div class="doc_text">
842<p>
843The <tt>-argpromotion</tt> pass promotes by-reference arguments to be passed in
844by-value instead. In particular, if pointer arguments are only loaded from it
845passes in the value loaded instead of the address to the function. This pass
846uses alias information to make sure that the value loaded from the argument
847pointer is not modified between the entry of the function and any load of the
848pointer.</p>
849</div>
850
851<!-- _______________________________________________________________________ -->
852<div class="doc_subsubsection">
853 <a name="gcseloadvn">The <tt>-load-vn</tt> &amp; <tt>-gcse</tt> passes</a>
854</div>
855
856<div class="doc_text">
Misha Brukman2361fcf2004-07-28 22:18:33 +0000857
858<p>The <tt>-load-vn</tt> pass uses alias analysis to "<a href="#loadvn">value
Chris Lattner2a19d832004-05-23 21:04:01 +0000859number</a>" loads and pointers values, which is used by the GCSE pass to
860eliminate instructions. The <tt>-load-vn</tt> pass relies on alias information
861and must-alias information. This combination of passes can make the following
862transformations:</p>
863
864<ul>
865<li>Redundant load instructions are eliminated.</li>
866<li>Load instructions that follow a store to the same location are replaced with
867the stored value ("store forwarding").</li>
868<li>Pointers values (e.g. formal arguments) that must-alias simpler expressions
869(e.g. global variables or the null pointer) are replaced. Note that this
870implements transformations like "virtual method resolution", turning indirect
871calls into direct calls.</li>
872</ul>
873
874</div>
875
Chris Lattner2a19d832004-05-23 21:04:01 +0000876<!-- ======================================================================= -->
877<div class="doc_subsection">
Misha Brukman2361fcf2004-07-28 22:18:33 +0000878 <a name="aliasanalysis-debug">Clients for debugging and evaluation of
879 implementations</a>
Chris Lattner2a19d832004-05-23 21:04:01 +0000880</div>
881
Misha Brukman2361fcf2004-07-28 22:18:33 +0000882<div class="doc_text">
Chris Lattner2a19d832004-05-23 21:04:01 +0000883
Misha Brukman2361fcf2004-07-28 22:18:33 +0000884<p>These passes are useful for evaluating the various alias analysis
885implementations. You can use them with commands like '<tt>opt -anders-aa -ds-aa
886-aa-eval foo.bc -disable-output -stats</tt>'.</p>
887
888</div>
Chris Lattner2a19d832004-05-23 21:04:01 +0000889
890<!-- _______________________________________________________________________ -->
891<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000892 <a name="print-alias-sets">The <tt>-print-alias-sets</tt> pass</a>
893</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000894
Misha Brukman283ff692003-10-22 23:27:16 +0000895<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000896
897<p>The <tt>-print-alias-sets</tt> pass is exposed as part of the
Chris Lattner2e6f4482006-01-03 06:04:48 +0000898<tt>opt</tt> tool to print out the Alias Sets formed by the <a
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000899href="#ast"><tt>AliasSetTracker</tt></a> class. This is useful if you're using
Chris Lattner2e6f4482006-01-03 06:04:48 +0000900the <tt>AliasSetTracker</tt> class. To use it, use something like:</p>
901
902<div class="doc_code">
903<pre>
904% opt -ds-aa -print-alias-sets -disable-output
905</pre>
906</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000907
Misha Brukman283ff692003-10-22 23:27:16 +0000908</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000909
Chris Lattner2a19d832004-05-23 21:04:01 +0000910
911<!-- _______________________________________________________________________ -->
912<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000913 <a name="count-aa">The <tt>-count-aa</tt> pass</a>
914</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000915
Misha Brukman283ff692003-10-22 23:27:16 +0000916<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000917
918<p>The <tt>-count-aa</tt> pass is useful to see how many queries a particular
Misha Brukman2361fcf2004-07-28 22:18:33 +0000919pass is making and what responses are returned by the alias analysis. As an
920example,</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000921
Misha Brukman2361fcf2004-07-28 22:18:33 +0000922<div class="doc_code">
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000923<pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000924% opt -basicaa -count-aa -ds-aa -count-aa -licm
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000925</pre>
Misha Brukman2361fcf2004-07-28 22:18:33 +0000926</div>
Misha Brukman084a3a072003-10-24 18:06:11 +0000927
Misha Brukman2361fcf2004-07-28 22:18:33 +0000928<p>will print out how many queries (and what responses are returned) by the
929<tt>-licm</tt> pass (of the <tt>-ds-aa</tt> pass) and how many queries are made
930of the <tt>-basicaa</tt> pass by the <tt>-ds-aa</tt> pass. This can be useful
931when debugging a transformation or an alias analysis implementation.</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000932
Misha Brukman283ff692003-10-22 23:27:16 +0000933</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000934
Chris Lattner2a19d832004-05-23 21:04:01 +0000935<!-- _______________________________________________________________________ -->
936<div class="doc_subsubsection">
Misha Brukman283ff692003-10-22 23:27:16 +0000937 <a name="aa-eval">The <tt>-aa-eval</tt> pass</a>
938</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000939
Misha Brukman283ff692003-10-22 23:27:16 +0000940<div class="doc_text">
Misha Brukman084a3a072003-10-24 18:06:11 +0000941
942<p>The <tt>-aa-eval</tt> pass simply iterates through all pairs of pointers in a
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000943function and asks an alias analysis whether or not the pointers alias. This
944gives an indication of the precision of the alias analysis. Statistics are
Chris Lattner2a19d832004-05-23 21:04:01 +0000945printed indicating the percent of no/may/must aliases found (a more precise
946algorithm will have a lower number of may aliases).</p>
Misha Brukman084a3a072003-10-24 18:06:11 +0000947
Misha Brukman283ff692003-10-22 23:27:16 +0000948</div>
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000949
Chris Lattnerb512e9f2003-03-04 19:37:49 +0000950<!-- *********************************************************************** -->
951
Misha Brukman084a3a072003-10-24 18:06:11 +0000952<hr>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000953<address>
Misha Brukman8834af92003-12-21 22:53:21 +0000954 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman58ec4342003-11-22 01:07:30 +0000955 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000956 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman55ba2202004-05-12 18:02:00 +0000957 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000958
959 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
Reid Spencerca058542006-03-14 05:39:39 +0000960 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
Misha Brukmane8e932a2003-11-22 01:26:21 +0000961 Last modified: $Date$
962</address>
Misha Brukman283ff692003-10-22 23:27:16 +0000963
964</body>
965</html>