Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 3 | <html> |
| 4 | <head> |
Misha Brukman | a97e6cb | 2004-07-01 15:33:24 +0000 | [diff] [blame] | 5 | <title>LLVM Alias Analysis Infrastructure</title> |
Misha Brukman | 6e4afd0 | 2004-01-15 19:04:12 +0000 | [diff] [blame] | 6 | <link rel="stylesheet" href="llvm.css" type="text/css"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 7 | </head> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 8 | <body> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 9 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 10 | <div class="doc_title"> |
Misha Brukman | a97e6cb | 2004-07-01 15:33:24 +0000 | [diff] [blame] | 11 | LLVM Alias Analysis Infrastructure |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 12 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 13 | |
| 14 | <ol> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 15 | <li><a href="#introduction">Introduction</a></li> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 16 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 17 | <li><a href="#overview"><tt>AliasAnalysis</tt> Class Overview</a> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 18 | <ul> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 19 | <li><a href="#pointers">Representation of Pointers</a></li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 20 | <li><a href="#alias">The <tt>alias</tt> method</a></li> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 21 | <li><a href="#ModRefInfo">The <tt>getModRefInfo</tt> methods</a></li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 22 | <li><a href="#OtherItfs">Other useful <tt>AliasAnalysis</tt> methods</a></li> |
| 23 | </ul> |
| 24 | </li> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 25 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 26 | <li><a href="#writingnew">Writing a new <tt>AliasAnalysis</tt> Implementation</a> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 27 | <ul> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 28 | <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 Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 31 | <li><a href="#chaining"><tt>AliasAnalysis</tt> chaining behavior</a></li> |
| 32 | <li><a href="#updating">Updating analysis results for transformations</a></li> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 33 | <li><a href="#implefficiency">Efficiency Issues</a></li> |
Dan Gohman | 01e5988 | 2010-12-15 23:09:41 +0000 | [diff] [blame] | 34 | <li><a href="#limitations">Limitations</a></li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 35 | </ul> |
| 36 | </li> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 37 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 38 | <li><a href="#using">Using alias analysis results</a> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 39 | <ul> |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 40 | <li><a href="#memdep">Using the <tt>MemoryDependenceAnalysis</tt> Pass</a></li> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 41 | <li><a href="#ast">Using the <tt>AliasSetTracker</tt> class</a></li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 42 | <li><a href="#direct">Using the <tt>AliasAnalysis</tt> interface directly</a></li> |
| 43 | </ul> |
| 44 | </li> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 45 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 46 | <li><a href="#exist">Existing alias analysis implementations and clients</a> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 47 | <ul> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 48 | <li><a href="#impls">Available <tt>AliasAnalysis</tt> implementations</a></li> |
| 49 | <li><a href="#aliasanalysis-xforms">Alias analysis driven transformations</a></li> |
Misha Brukman | a97e6cb | 2004-07-01 15:33:24 +0000 | [diff] [blame] | 50 | <li><a href="#aliasanalysis-debug">Clients for debugging and evaluation of |
| 51 | implementations</a></li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 52 | </ul> |
| 53 | </li> |
Owen Anderson | d8b4728 | 2007-10-02 00:44:20 +0000 | [diff] [blame] | 54 | <li><a href="#memdep">Memory Dependence Analysis</a></li> |
Misha Brukman | b215425 | 2003-10-23 02:29:42 +0000 | [diff] [blame] | 55 | </ol> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 56 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 57 | <div class="doc_author"> |
| 58 | <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 59 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 61 | <!-- *********************************************************************** --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 62 | <div class="doc_section"> |
| 63 | <a name="introduction">Introduction</a> |
| 64 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 65 | <!-- *********************************************************************** --> |
| 66 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 67 | <div class="doc_text"> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 68 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 69 | <p>Alias Analysis (aka Pointer Analysis) is a class of techniques which attempt |
| 70 | to determine whether or not two pointers ever can point to the same object in |
| 71 | memory. There are many different algorithms for alias analysis and many |
| 72 | different ways of classifying them: flow-sensitive vs flow-insensitive, |
| 73 | context-sensitive vs context-insensitive, field-sensitive vs field-insensitive, |
| 74 | unification-based vs subset-based, etc. Traditionally, alias analyses respond |
Duncan Sands | 8036ca4 | 2007-03-30 12:22:09 +0000 | [diff] [blame] | 75 | to a query with a <a href="#MustMayNo">Must, May, or No</a> alias response, |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 76 | indicating that two pointers always point to the same object, might point to the |
| 77 | same object, or are known to never point to the same object.</p> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 78 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 79 | <p>The LLVM <a |
Reid Spencer | 05fe4b0 | 2006-03-14 05:39:39 +0000 | [diff] [blame] | 80 | href="http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 81 | class is the primary interface used by clients and implementations of alias |
| 82 | analyses in the LLVM system. This class is the common interface between clients |
| 83 | of alias analysis information and the implementations providing it, and is |
| 84 | designed to support a wide range of implementations and clients (but currently |
| 85 | all clients are assumed to be flow-insensitive). In addition to simple alias |
| 86 | analysis information, this class exposes Mod/Ref information from those |
| 87 | implementations which can provide it, allowing for powerful analyses and |
| 88 | transformations to work well together.</p> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 89 | |
| 90 | <p>This document contains information necessary to successfully implement this |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 91 | interface, use it, and to test both sides. It also explains some of the finer |
| 92 | points about what exactly results mean. If you feel that something is unclear |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 93 | or should be added, please <a href="mailto:sabre@nondot.org">let me |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 94 | know</a>.</p> |
| 95 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 96 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 97 | |
| 98 | <!-- *********************************************************************** --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 99 | <div class="doc_section"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 100 | <a name="overview"><tt>AliasAnalysis</tt> Class Overview</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 101 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 102 | <!-- *********************************************************************** --> |
| 103 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 104 | <div class="doc_text"> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 105 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 106 | <p>The <a |
Reid Spencer | 05fe4b0 | 2006-03-14 05:39:39 +0000 | [diff] [blame] | 107 | href="http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 108 | class defines the interface that the various alias analysis implementations |
| 109 | should support. This class exports two important enums: <tt>AliasResult</tt> |
| 110 | and <tt>ModRefResult</tt> which represent the result of an alias query or a |
| 111 | mod/ref query, respectively.</p> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 112 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 113 | <p>The <tt>AliasAnalysis</tt> interface exposes information about memory, |
| 114 | represented in several different ways. In particular, memory objects are |
| 115 | represented as a starting address and size, and function calls are represented |
| 116 | as the actual <tt>call</tt> or <tt>invoke</tt> instructions that performs the |
| 117 | call. The <tt>AliasAnalysis</tt> interface also exposes some helper methods |
| 118 | which allow you to get mod/ref information for arbitrary instructions.</p> |
Misha Brukman | 1f254d5 | 2003-11-21 22:30:25 +0000 | [diff] [blame] | 119 | |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 120 | <p>All <tt>AliasAnalysis</tt> interfaces require that in queries involving |
| 121 | multiple values, values which are not |
| 122 | <a href="LangRef.html#constants">constants</a> are all defined within the |
| 123 | same function.</p> |
| 124 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 125 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 126 | |
| 127 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 128 | <div class="doc_subsection"> |
| 129 | <a name="pointers">Representation of Pointers</a> |
| 130 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 131 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 132 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 133 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 134 | <p>Most importantly, the <tt>AliasAnalysis</tt> class provides several methods |
| 135 | which are used to query whether or not two memory objects alias, whether |
| 136 | function calls can modify or read a memory object, etc. For all of these |
| 137 | queries, memory objects are represented as a pair of their starting address (a |
| 138 | symbolic LLVM <tt>Value*</tt>) and a static size.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 139 | |
| 140 | <p>Representing memory objects as a starting address and a size is critically |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 141 | important for correct Alias Analyses. For example, consider this (silly, but |
| 142 | possible) C code:</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 143 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 144 | <div class="doc_code"> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 145 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 146 | int i; |
| 147 | char C[2]; |
| 148 | char A[10]; |
| 149 | /* ... */ |
| 150 | for (i = 0; i != 10; ++i) { |
| 151 | C[0] = A[i]; /* One byte store */ |
| 152 | C[1] = A[9-i]; /* One byte store */ |
| 153 | } |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 154 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 155 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 156 | |
| 157 | <p>In this case, the <tt>basicaa</tt> pass will disambiguate the stores to |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 158 | <tt>C[0]</tt> and <tt>C[1]</tt> because they are accesses to two distinct |
| 159 | locations one byte apart, and the accesses are each one byte. In this case, the |
| 160 | LICM pass can use store motion to remove the stores from the loop. In |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 161 | constrast, the following code:</p> |
| 162 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 163 | <div class="doc_code"> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 164 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 165 | int i; |
| 166 | char C[2]; |
| 167 | char A[10]; |
| 168 | /* ... */ |
| 169 | for (i = 0; i != 10; ++i) { |
| 170 | ((short*)C)[0] = A[i]; /* Two byte store! */ |
| 171 | C[1] = A[9-i]; /* One byte store */ |
| 172 | } |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 173 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 174 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 175 | |
| 176 | <p>In this case, the two stores to C do alias each other, because the access to |
| 177 | the <tt>&C[0]</tt> element is a two byte access. If size information wasn't |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 178 | available in the query, even the first case would have to conservatively assume |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 179 | that the accesses alias.</p> |
| 180 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 181 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 182 | |
| 183 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 184 | <div class="doc_subsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 185 | <a name="alias">The <tt>alias</tt> method</a> |
| 186 | </div> |
| 187 | |
| 188 | <div class="doc_text"> |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 189 | <p>The <tt>alias</tt> method is the primary interface used to determine whether |
| 190 | or not two memory objects alias each other. It takes two memory objects as |
Dan Gohman | 4a34cbd | 2010-12-10 19:38:58 +0000 | [diff] [blame] | 191 | input and returns MustAlias, PartialAlias, MayAlias, or NoAlias as |
| 192 | appropriate.</p> |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 193 | |
| 194 | <p>Like all <tt>AliasAnalysis</tt> interfaces, the <tt>alias</tt> method requires |
| 195 | that either the two pointer values be defined within the same function, or at |
| 196 | least one of the values is a <a href="LangRef.html#constants">constant</a>.</p> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 197 | </div> |
| 198 | |
| 199 | <!-- _______________________________________________________________________ --> |
| 200 | <div class="doc_subsubsection"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 201 | <a name="MustMayNo">Must, May, and No Alias Responses</a> |
| 202 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 203 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 204 | <div class="doc_text"> |
Dan Gohman | 1e10962 | 2010-07-02 18:41:32 +0000 | [diff] [blame] | 205 | <p>The NoAlias response may be used when there is never an immediate dependence |
| 206 | between any memory reference <i>based</i> on one pointer and any memory |
| 207 | reference <i>based</i> the other. The most obvious example is when the two |
| 208 | pointers point to non-overlapping memory ranges. Another is when the two |
| 209 | pointers are only ever used for reading memory. Another is when the memory is |
| 210 | freed and reallocated between accesses through one pointer and accesses through |
| 211 | the other -- in this case, there is a dependence, but it's mediated by the free |
| 212 | and reallocation.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 213 | |
Dan Gohman | efca7f9 | 2010-07-02 23:46:54 +0000 | [diff] [blame] | 214 | <p>As an exception to this is with the |
Dan Gohman | 9e86f43 | 2010-07-07 14:27:09 +0000 | [diff] [blame] | 215 | <a href="LangRef.html#noalias"><tt>noalias</tt></a> keyword; the "irrelevant" |
| 216 | dependencies are ignored.</p> |
Dan Gohman | efca7f9 | 2010-07-02 23:46:54 +0000 | [diff] [blame] | 217 | |
Nick Lewycky | 01557ce | 2008-12-14 21:08:48 +0000 | [diff] [blame] | 218 | <p>The MayAlias response is used whenever the two pointers might refer to the |
Dan Gohman | 4a34cbd | 2010-12-10 19:38:58 +0000 | [diff] [blame] | 219 | same object.</p> |
| 220 | |
| 221 | <p>The PartialAlias response is used when the two memory objects are known |
| 222 | to be overlapping in some way, but do not start at the same address.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 223 | |
Nick Lewycky | 01557ce | 2008-12-14 21:08:48 +0000 | [diff] [blame] | 224 | <p>The MustAlias response may only be returned if the two memory objects are |
| 225 | guaranteed to always start at exactly the same location. A MustAlias response |
| 226 | implies that the pointers compare equal.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 227 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 228 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 229 | |
| 230 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 231 | <div class="doc_subsection"> |
| 232 | <a name="ModRefInfo">The <tt>getModRefInfo</tt> methods</a> |
| 233 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 234 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 235 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 236 | |
| 237 | <p>The <tt>getModRefInfo</tt> methods return information about whether the |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 238 | execution of an instruction can read or modify a memory location. Mod/Ref |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 239 | information is always conservative: if an instruction <b>might</b> read or write |
| 240 | a location, ModRef is returned.</p> |
| 241 | |
| 242 | <p>The <tt>AliasAnalysis</tt> class also provides a <tt>getModRefInfo</tt> |
| 243 | method for testing dependencies between function calls. This method takes two |
Dan Gohman | 39429e2 | 2010-08-30 23:47:24 +0000 | [diff] [blame] | 244 | call sites (CS1 & CS2), returns NoModRef if neither call writes to memory |
| 245 | read or written by the other, Ref if CS1 reads memory written by CS2, Mod if CS1 |
| 246 | writes to memory read or written by CS2, or ModRef if CS1 might read or write |
| 247 | memory written to by CS2. Note that this relation is not commutative.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 248 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 249 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 250 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 251 | |
| 252 | <!-- ======================================================================= --> |
| 253 | <div class="doc_subsection"> |
| 254 | <a name="OtherItfs">Other useful <tt>AliasAnalysis</tt> methods</a> |
| 255 | </div> |
| 256 | |
| 257 | <div class="doc_text"> |
| 258 | |
| 259 | <p> |
| 260 | Several other tidbits of information are often collected by various alias |
| 261 | analysis implementations and can be put to good use by various clients. |
| 262 | </p> |
| 263 | |
| 264 | </div> |
| 265 | |
| 266 | <!-- _______________________________________________________________________ --> |
| 267 | <div class="doc_subsubsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 268 | The <tt>pointsToConstantMemory</tt> method |
| 269 | </div> |
| 270 | |
| 271 | <div class="doc_text"> |
| 272 | |
| 273 | <p>The <tt>pointsToConstantMemory</tt> method returns true if and only if the |
| 274 | analysis can prove that the pointer only points to unchanging memory locations |
| 275 | (functions, constant global variables, and the null pointer). This information |
| 276 | can be used to refine mod/ref information: it is impossible for an unchanging |
| 277 | memory location to be modified.</p> |
| 278 | |
| 279 | </div> |
| 280 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 281 | <!-- _______________________________________________________________________ --> |
| 282 | <div class="doc_subsubsection"> |
| 283 | <a name="simplemodref">The <tt>doesNotAccessMemory</tt> and |
| 284 | <tt>onlyReadsMemory</tt> methods</a> |
| 285 | </div> |
| 286 | |
| 287 | <div class="doc_text"> |
| 288 | |
| 289 | <p>These methods are used to provide very simple mod/ref information for |
| 290 | function calls. The <tt>doesNotAccessMemory</tt> method returns true for a |
| 291 | function if the analysis can prove that the function never reads or writes to |
| 292 | memory, or if the function only reads from constant memory. Functions with this |
| 293 | property are side-effect free and only depend on their input arguments, allowing |
| 294 | them to be eliminated if they form common subexpressions or be hoisted out of |
| 295 | loops. Many common functions behave this way (e.g., <tt>sin</tt> and |
| 296 | <tt>cos</tt>) but many others do not (e.g., <tt>acos</tt>, which modifies the |
| 297 | <tt>errno</tt> variable).</p> |
| 298 | |
| 299 | <p>The <tt>onlyReadsMemory</tt> method returns true for a function if analysis |
| 300 | can prove that (at most) the function only reads from non-volatile memory. |
| 301 | Functions with this property are side-effect free, only depending on their input |
| 302 | arguments and the state of memory when they are called. This property allows |
| 303 | calls to these functions to be eliminated and moved around, as long as there is |
| 304 | no store instruction that changes the contents of memory. Note that all |
| 305 | functions that satisfy the <tt>doesNotAccessMemory</tt> method also satisfies |
| 306 | <tt>onlyReadsMemory</tt>.</p> |
| 307 | |
| 308 | </div> |
| 309 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 310 | <!-- *********************************************************************** --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 311 | <div class="doc_section"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 312 | <a name="writingnew">Writing a new <tt>AliasAnalysis</tt> Implementation</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 313 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 314 | <!-- *********************************************************************** --> |
| 315 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 316 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 317 | |
| 318 | <p>Writing a new alias analysis implementation for LLVM is quite |
| 319 | straight-forward. There are already several implementations that you can use |
| 320 | for examples, and the following information should help fill in any details. |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 321 | For a examples, take a look at the <a href="#impls">various alias analysis |
| 322 | implementations</a> included with LLVM.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 323 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 324 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 325 | |
| 326 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 327 | <div class="doc_subsection"> |
| 328 | <a name="passsubclasses">Different Pass styles</a> |
| 329 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 330 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 331 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 332 | |
| 333 | <p>The first step to determining what type of <a |
| 334 | href="WritingAnLLVMPass.html">LLVM pass</a> you need to use for your Alias |
| 335 | Analysis. As is the case with most other analyses and transformations, the |
| 336 | answer should be fairly obvious from what type of problem you are trying to |
| 337 | solve:</p> |
| 338 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 339 | <ol> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 340 | <li>If you require interprocedural analysis, it should be a |
| 341 | <tt>Pass</tt>.</li> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 342 | <li>If you are a function-local analysis, subclass <tt>FunctionPass</tt>.</li> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 343 | <li>If you don't need to look at the program at all, subclass |
| 344 | <tt>ImmutablePass</tt>.</li> |
| 345 | </ol> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 346 | |
| 347 | <p>In addition to the pass that you subclass, you should also inherit from the |
Misha Brukman | 700fd49 | 2003-05-07 21:47:16 +0000 | [diff] [blame] | 348 | <tt>AliasAnalysis</tt> interface, of course, and use the |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 349 | <tt>RegisterAnalysisGroup</tt> template to register as an implementation of |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 350 | <tt>AliasAnalysis</tt>.</p> |
| 351 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 352 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 353 | |
| 354 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 355 | <div class="doc_subsection"> |
| 356 | <a name="requiredcalls">Required initialization calls</a> |
| 357 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 358 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 359 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 360 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 361 | <p>Your subclass of <tt>AliasAnalysis</tt> is required to invoke two methods on |
| 362 | the <tt>AliasAnalysis</tt> base class: <tt>getAnalysisUsage</tt> and |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 363 | <tt>InitializeAliasAnalysis</tt>. In particular, your implementation of |
| 364 | <tt>getAnalysisUsage</tt> should explicitly call into the |
| 365 | <tt>AliasAnalysis::getAnalysisUsage</tt> method in addition to doing any |
| 366 | declaring any pass dependencies your pass has. Thus you should have something |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 367 | like this:</p> |
| 368 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 369 | <div class="doc_code"> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 370 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 371 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 372 | AliasAnalysis::getAnalysisUsage(AU); |
| 373 | <i>// declare your dependencies here.</i> |
| 374 | } |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 375 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 376 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 377 | |
| 378 | <p>Additionally, your must invoke the <tt>InitializeAliasAnalysis</tt> method |
| 379 | from your analysis run method (<tt>run</tt> for a <tt>Pass</tt>, |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 380 | <tt>runOnFunction</tt> for a <tt>FunctionPass</tt>, or <tt>InitializePass</tt> |
| 381 | for an <tt>ImmutablePass</tt>). For example (as part of a <tt>Pass</tt>):</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 382 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 383 | <div class="doc_code"> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 384 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 385 | bool run(Module &M) { |
| 386 | InitializeAliasAnalysis(this); |
| 387 | <i>// Perform analysis here...</i> |
| 388 | return false; |
| 389 | } |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 390 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 391 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 392 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 393 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 394 | |
| 395 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 396 | <div class="doc_subsection"> |
| 397 | <a name="interfaces">Interfaces which may be specified</a> |
| 398 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 399 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 400 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 401 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 402 | <p>All of the <a |
| 403 | href="/doxygen/classllvm_1_1AliasAnalysis.html"><tt>AliasAnalysis</tt></a> |
| 404 | virtual methods default to providing <a href="#chaining">chaining</a> to another |
| 405 | alias analysis implementation, which ends up returning conservatively correct |
| 406 | information (returning "May" Alias and "Mod/Ref" for alias and mod/ref queries |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 407 | respectively). Depending on the capabilities of the analysis you are |
| 408 | implementing, you just override the interfaces you can improve.</p> |
| 409 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 410 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 411 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 412 | |
| 413 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 414 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 415 | <div class="doc_subsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 416 | <a name="chaining"><tt>AliasAnalysis</tt> chaining behavior</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 417 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 418 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 419 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 420 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 421 | <p>With only two special exceptions (the <tt><a |
| 422 | href="#basic-aa">basicaa</a></tt> and <a href="#no-aa"><tt>no-aa</tt></a> |
| 423 | passes) every alias analysis pass chains to another alias analysis |
| 424 | implementation (for example, the user can specify "<tt>-basicaa -ds-aa |
Chris Lattner | a9cf196 | 2010-03-01 19:24:17 +0000 | [diff] [blame] | 425 | -licm</tt>" to get the maximum benefit from both alias |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 426 | analyses). The alias analysis class automatically takes care of most of this |
| 427 | for methods that you don't override. For methods that you do override, in code |
| 428 | paths that return a conservative MayAlias or Mod/Ref result, simply return |
| 429 | whatever the superclass computes. For example:</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 430 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 431 | <div class="doc_code"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 432 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 433 | AliasAnalysis::AliasResult alias(const Value *V1, unsigned V1Size, |
| 434 | const Value *V2, unsigned V2Size) { |
| 435 | if (...) |
| 436 | return NoAlias; |
| 437 | ... |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 438 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 439 | <i>// Couldn't determine a must or no-alias result.</i> |
| 440 | return AliasAnalysis::alias(V1, V1Size, V2, V2Size); |
| 441 | } |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 442 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 443 | </div> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 444 | |
| 445 | <p>In addition to analysis queries, you must make sure to unconditionally pass |
| 446 | LLVM <a href="#updating">update notification</a> methods to the superclass as |
| 447 | well if you override them, which allows all alias analyses in a change to be |
| 448 | updated.</p> |
| 449 | |
| 450 | </div> |
| 451 | |
| 452 | |
| 453 | <!-- ======================================================================= --> |
| 454 | <div class="doc_subsection"> |
| 455 | <a name="updating">Updating analysis results for transformations</a> |
| 456 | </div> |
| 457 | |
| 458 | <div class="doc_text"> |
| 459 | <p> |
| 460 | Alias analysis information is initially computed for a static snapshot of the |
| 461 | program, but clients will use this information to make transformations to the |
| 462 | code. All but the most trivial forms of alias analysis will need to have their |
| 463 | analysis results updated to reflect the changes made by these transformations. |
| 464 | </p> |
| 465 | |
| 466 | <p> |
Owen Anderson | ab6acc6 | 2011-01-03 21:38:41 +0000 | [diff] [blame] | 467 | The <tt>AliasAnalysis</tt> interface exposes four methods which are used to |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 468 | communicate program changes from the clients to the analysis implementations. |
| 469 | Various alias analysis implementations should use these methods to ensure that |
| 470 | their internal data structures are kept up-to-date as the program changes (for |
| 471 | example, when an instruction is deleted), and clients of alias analysis must be |
| 472 | sure to call these interfaces appropriately. |
| 473 | </p> |
| 474 | </div> |
| 475 | |
| 476 | <!-- _______________________________________________________________________ --> |
| 477 | <div class="doc_subsubsection">The <tt>deleteValue</tt> method</div> |
| 478 | |
| 479 | <div class="doc_text"> |
| 480 | The <tt>deleteValue</tt> method is called by transformations when they remove an |
| 481 | instruction or any other value from the program (including values that do not |
| 482 | use pointers). Typically alias analyses keep data structures that have entries |
| 483 | for each value in the program. When this method is called, they should remove |
| 484 | any entries for the specified value, if they exist. |
| 485 | </div> |
| 486 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 487 | <!-- _______________________________________________________________________ --> |
| 488 | <div class="doc_subsubsection">The <tt>copyValue</tt> method</div> |
| 489 | |
| 490 | <div class="doc_text"> |
| 491 | The <tt>copyValue</tt> method is used when a new value is introduced into the |
| 492 | program. There is no way to introduce a value into the program that did not |
| 493 | exist before (this doesn't make sense for a safe compiler transformation), so |
| 494 | this is the only way to introduce a new value. This method indicates that the |
| 495 | new value has exactly the same properties as the value being copied. |
| 496 | </div> |
| 497 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 498 | <!-- _______________________________________________________________________ --> |
| 499 | <div class="doc_subsubsection">The <tt>replaceWithNewValue</tt> method</div> |
| 500 | |
| 501 | <div class="doc_text"> |
| 502 | This method is a simple helper method that is provided to make clients easier to |
| 503 | use. It is implemented by copying the old analysis information to the new |
| 504 | value, then deleting the old value. This method cannot be overridden by alias |
| 505 | analysis implementations. |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 506 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 507 | |
Owen Anderson | ab6acc6 | 2011-01-03 21:38:41 +0000 | [diff] [blame] | 508 | <!-- _______________________________________________________________________ --> |
| 509 | <div class="doc_subsubsection">The <tt>addEscapingUse</tt> method</div> |
| 510 | |
| 511 | <div class="doc_text"> |
| 512 | <p>The <tt>addEscapingUse</tt> method is used when the uses of a pointer |
| 513 | value have changed in ways that may invalidate precomputed analysis information. |
| 514 | Implementations may either use this callback to provide conservative responses |
| 515 | for points whose uses have change since analysis time, or may recompute some |
| 516 | or all of their internal state to continue providing accurate responses.</p> |
| 517 | |
| 518 | <p>In general, any new use of a pointer value is considered an escaping use, |
| 519 | and must be reported through this callback, <em>except</em> for the |
| 520 | uses below:</p> |
| 521 | |
| 522 | <ul> |
| 523 | <li>A <tt>bitcast</tt> or <tt>getelementptr</tt> of the pointer</li> |
| 524 | <li>A <tt>store</tt> through the pointer (but not a <tt>store</tt> |
| 525 | <em>of</em> the pointer)</li> |
| 526 | <li>A <tt>load</tt> through the pointer</li> |
| 527 | </ul> |
| 528 | </div> |
| 529 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 530 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 531 | <div class="doc_subsection"> |
| 532 | <a name="implefficiency">Efficiency Issues</a> |
| 533 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 534 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 535 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 536 | |
| 537 | <p>From the LLVM perspective, the only thing you need to do to provide an |
| 538 | efficient alias analysis is to make sure that alias analysis <b>queries</b> are |
| 539 | serviced quickly. The actual calculation of the alias analysis results (the |
| 540 | "run" method) is only performed once, but many (perhaps duplicate) queries may |
| 541 | be performed. Because of this, try to move as much computation to the run |
| 542 | method as possible (within reason).</p> |
| 543 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 544 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 545 | |
Dan Gohman | 3f43dc3 | 2010-06-24 19:34:03 +0000 | [diff] [blame] | 546 | <!-- ======================================================================= --> |
| 547 | <div class="doc_subsection"> |
Dan Gohman | 49e41c5 | 2010-12-15 18:45:20 +0000 | [diff] [blame] | 548 | <a name="limitations">Limitations</a> |
Dan Gohman | 3f43dc3 | 2010-06-24 19:34:03 +0000 | [diff] [blame] | 549 | </div> |
| 550 | |
| 551 | <div class="doc_text"> |
| 552 | |
Dan Gohman | 49e41c5 | 2010-12-15 18:45:20 +0000 | [diff] [blame] | 553 | <p>The AliasAnalysis infrastructure has several limitations which make |
| 554 | writing a new <tt>AliasAnalysis</tt> implementation difficult.</p> |
Dan Gohman | 3f43dc3 | 2010-06-24 19:34:03 +0000 | [diff] [blame] | 555 | |
| 556 | <p>There is no way to override the default alias analysis. It would |
| 557 | be very useful to be able to do something like "opt -my-aa -O2" and |
| 558 | have it use -my-aa for all passes which need AliasAnalysis, but there |
| 559 | is currently no support for that, short of changing the source code |
| 560 | and recompiling. Similarly, there is also no way of setting a chain |
| 561 | of analyses as the default.</p> |
| 562 | |
| 563 | <p>There is no way for transform passes to declare that they preserve |
| 564 | <tt>AliasAnalysis</tt> implementations. The <tt>AliasAnalysis</tt> |
| 565 | interface includes <tt>deleteValue</tt> and <tt>copyValue</tt> methods |
| 566 | which are intended to allow a pass to keep an AliasAnalysis consistent, |
| 567 | however there's no way for a pass to declare in its |
| 568 | <tt>getAnalysisUsage</tt> that it does so. Some passes attempt to use |
| 569 | <tt>AU.addPreserved<AliasAnalysis></tt>, however this doesn't |
NAKAMURA Takumi | 4d6deb0 | 2011-04-09 09:51:57 +0000 | [diff] [blame^] | 570 | actually have any effect.</p> |
Dan Gohman | 3f43dc3 | 2010-06-24 19:34:03 +0000 | [diff] [blame] | 571 | |
| 572 | <p><tt>AliasAnalysisCounter</tt> (<tt>-count-aa</tt>) and <tt>AliasDebugger</tt> |
| 573 | (<tt>-debug-aa</tt>) are implemented as <tt>ModulePass</tt> classes, so if your |
| 574 | alias analysis uses <tt>FunctionPass</tt>, it won't be able to use |
| 575 | these utilities. If you try to use them, the pass manager will |
| 576 | silently route alias analysis queries directly to |
| 577 | <tt>BasicAliasAnalysis</tt> instead.</p> |
| 578 | |
| 579 | <p>Similarly, the <tt>opt -p</tt> option introduces <tt>ModulePass</tt> |
| 580 | passes between each pass, which prevents the use of <tt>FunctionPass</tt> |
| 581 | alias analysis passes.</p> |
| 582 | |
Dan Gohman | 49e41c5 | 2010-12-15 18:45:20 +0000 | [diff] [blame] | 583 | <p>The <tt>AliasAnalysis</tt> API does have functions for notifying |
| 584 | implementations when values are deleted or copied, however these |
| 585 | aren't sufficient. There are many other ways that LLVM IR can be |
| 586 | modified which could be relevant to <tt>AliasAnalysis</tt> |
| 587 | implementations which can not be expressed.</p> |
| 588 | |
| 589 | <p>The <tt>AliasAnalysisDebugger</tt> utility seems to suggest that |
| 590 | <tt>AliasAnalysis</tt> implementations can expect that they will be |
| 591 | informed of any relevant <tt>Value</tt> before it appears in an |
| 592 | alias query. However, popular clients such as <tt>GVN</tt> don't |
| 593 | support this, and are known to trigger errors when run with the |
| 594 | <tt>AliasAnalysisDebugger</tt>.</p> |
| 595 | |
| 596 | <p>Due to several of the above limitations, the most obvious use for |
| 597 | the <tt>AliasAnalysisCounter</tt> utility, collecting stats on all |
| 598 | alias queries in a compilation, doesn't work, even if the |
| 599 | <tt>AliasAnalysis</tt> implementations don't use <tt>FunctionPass</tt>. |
| 600 | There's no way to set a default, much less a default sequence, |
| 601 | and there's no way to preserve it.</p> |
| 602 | |
| 603 | <p>The <tt>AliasSetTracker</tt> class (which is used by <tt>LICM</tt> |
| 604 | makes a non-deterministic number of alias queries. This can cause stats |
| 605 | collected by <tt>AliasAnalysisCounter</tt> to have fluctuations among |
| 606 | identical runs, for example. Another consequence is that debugging |
| 607 | techniques involving pausing execution after a predetermined number |
| 608 | of queries can be unreliable.</p> |
| 609 | |
| 610 | <p>Many alias queries can be reformulated in terms of other alias |
| 611 | queries. When multiple <tt>AliasAnalysis</tt> queries are chained together, |
| 612 | it would make sense to start those queries from the beginning of the chain, |
| 613 | with care taken to avoid infinite looping, however currently an |
| 614 | implementation which wants to do this can only start such queries |
| 615 | from itself.</p> |
| 616 | |
Dan Gohman | 3f43dc3 | 2010-06-24 19:34:03 +0000 | [diff] [blame] | 617 | </div> |
| 618 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 619 | <!-- *********************************************************************** --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 620 | <div class="doc_section"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 621 | <a name="using">Using alias analysis results</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 622 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 623 | <!-- *********************************************************************** --> |
| 624 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 625 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 626 | |
| 627 | <p>There are several different ways to use alias analysis results. In order of |
| 628 | preference, these are...</p> |
| 629 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 630 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 631 | |
| 632 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 633 | <div class="doc_subsection"> |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 634 | <a name="memdep">Using the <tt>MemoryDependenceAnalysis</tt> Pass</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 635 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 636 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 637 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 638 | |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 639 | <p>The <tt>memdep</tt> pass uses alias analysis to provide high-level dependence |
| 640 | information about memory-using instructions. This will tell you which store |
| 641 | feeds into a load, for example. It uses caching and other techniques to be |
| 642 | efficient, and is used by Dead Store Elimination, GVN, and memcpy optimizations. |
| 643 | </p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 644 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 645 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 646 | |
| 647 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 648 | <div class="doc_subsection"> |
| 649 | <a name="ast">Using the <tt>AliasSetTracker</tt> class</a> |
| 650 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 651 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 652 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 653 | |
| 654 | <p>Many transformations need information about alias <b>sets</b> that are active |
| 655 | in some scope, rather than information about pairwise aliasing. The <tt><a |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 656 | href="/doxygen/classllvm_1_1AliasSetTracker.html">AliasSetTracker</a></tt> class |
| 657 | is used to efficiently build these Alias Sets from the pairwise alias analysis |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 658 | information provided by the <tt>AliasAnalysis</tt> interface.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 659 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 660 | <p>First you initialize the AliasSetTracker by using the "<tt>add</tt>" methods |
| 661 | to add information about various potentially aliasing instructions in the scope |
| 662 | you are interested in. Once all of the alias sets are completed, your pass |
| 663 | should simply iterate through the constructed alias sets, using the |
| 664 | <tt>AliasSetTracker</tt> <tt>begin()</tt>/<tt>end()</tt> methods.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 665 | |
| 666 | <p>The <tt>AliasSet</tt>s formed by the <tt>AliasSetTracker</tt> are guaranteed |
Chris Lattner | 539ca70 | 2003-12-19 08:43:07 +0000 | [diff] [blame] | 667 | to be disjoint, calculate mod/ref information and volatility for the set, and |
| 668 | keep track of whether or not all of the pointers in the set are Must aliases. |
| 669 | The AliasSetTracker also makes sure that sets are properly folded due to call |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 670 | instructions, and can provide a list of pointers in each set.</p> |
| 671 | |
| 672 | <p>As an example user of this, the <a href="/doxygen/structLICM.html">Loop |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 673 | Invariant Code Motion</a> pass uses <tt>AliasSetTracker</tt>s to calculate alias |
| 674 | sets for each loop nest. If an <tt>AliasSet</tt> in a loop is not modified, |
| 675 | then all load instructions from that set may be hoisted out of the loop. If any |
| 676 | alias sets are stored to <b>and</b> are must alias sets, then the stores may be |
| 677 | sunk to outside of the loop, promoting the memory location to a register for the |
| 678 | duration of the loop nest. Both of these transformations only apply if the |
| 679 | pointer argument is loop-invariant.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 680 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 681 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 682 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 683 | <!-- _______________________________________________________________________ --> |
Chris Lattner | 539ca70 | 2003-12-19 08:43:07 +0000 | [diff] [blame] | 684 | <div class="doc_subsubsection"> |
| 685 | The AliasSetTracker implementation |
| 686 | </div> |
| 687 | |
| 688 | <div class="doc_text"> |
| 689 | |
| 690 | <p>The AliasSetTracker class is implemented to be as efficient as possible. It |
| 691 | uses the union-find algorithm to efficiently merge AliasSets when a pointer is |
| 692 | inserted into the AliasSetTracker that aliases multiple sets. The primary data |
| 693 | structure is a hash table mapping pointers to the AliasSet they are in.</p> |
| 694 | |
| 695 | <p>The AliasSetTracker class must maintain a list of all of the LLVM Value*'s |
| 696 | that are in each AliasSet. Since the hash table already has entries for each |
| 697 | LLVM Value* of interest, the AliasesSets thread the linked list through these |
| 698 | hash-table nodes to avoid having to allocate memory unnecessarily, and to make |
| 699 | merging alias sets extremely efficient (the linked list merge is constant time). |
| 700 | </p> |
| 701 | |
| 702 | <p>You shouldn't need to understand these details if you are just a client of |
| 703 | the AliasSetTracker, but if you look at the code, hopefully this brief |
| 704 | description will help make sense of why things are designed the way they |
| 705 | are.</p> |
| 706 | |
| 707 | </div> |
| 708 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 709 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 710 | <div class="doc_subsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 711 | <a name="direct">Using the <tt>AliasAnalysis</tt> interface directly</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 712 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 713 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 714 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 715 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 716 | <p>If neither of these utility class are what your pass needs, you should use |
| 717 | the interfaces exposed by the <tt>AliasAnalysis</tt> class directly. Try to use |
| 718 | the higher-level methods when possible (e.g., use mod/ref information instead of |
| 719 | the <a href="#alias"><tt>alias</tt></a> method directly if possible) to get the |
| 720 | best precision and efficiency.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 721 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 722 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 723 | |
| 724 | <!-- *********************************************************************** --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 725 | <div class="doc_section"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 726 | <a name="exist">Existing alias analysis implementations and clients</a> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 727 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 728 | <!-- *********************************************************************** --> |
| 729 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 730 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 731 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 732 | <p>If you're going to be working with the LLVM alias analysis infrastructure, |
| 733 | you should know what clients and implementations of alias analysis are |
| 734 | available. In particular, if you are implementing an alias analysis, you should |
| 735 | be aware of the <a href="#aliasanalysis-debug">the clients</a> that are useful |
| 736 | for monitoring and evaluating different implementations.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 737 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 738 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 739 | |
| 740 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 741 | <div class="doc_subsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 742 | <a name="impls">Available <tt>AliasAnalysis</tt> implementations</a> |
| 743 | </div> |
| 744 | |
| 745 | <div class="doc_text"> |
| 746 | |
| 747 | <p>This section lists the various implementations of the <tt>AliasAnalysis</tt> |
| 748 | interface. With the exception of the <a href="#no-aa"><tt>-no-aa</tt></a> and |
| 749 | <a href="#basic-aa"><tt>-basicaa</tt></a> implementations, all of these <a |
Chris Lattner | fcd3725 | 2004-06-21 22:52:48 +0000 | [diff] [blame] | 750 | href="#chaining">chain</a> to other alias analysis implementations.</p> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 751 | |
| 752 | </div> |
| 753 | |
| 754 | <!-- _______________________________________________________________________ --> |
| 755 | <div class="doc_subsubsection"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 756 | <a name="no-aa">The <tt>-no-aa</tt> pass</a> |
| 757 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 758 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 759 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 760 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 761 | <p>The <tt>-no-aa</tt> pass is just like what it sounds: an alias analysis that |
| 762 | never returns any useful information. This pass can be useful if you think that |
| 763 | alias analysis is doing something wrong and are trying to narrow down a |
| 764 | problem.</p> |
| 765 | |
| 766 | </div> |
| 767 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 768 | <!-- _______________________________________________________________________ --> |
| 769 | <div class="doc_subsubsection"> |
| 770 | <a name="basic-aa">The <tt>-basicaa</tt> pass</a> |
| 771 | </div> |
| 772 | |
| 773 | <div class="doc_text"> |
| 774 | |
Dan Gohman | c66712f | 2010-11-15 18:07:16 +0000 | [diff] [blame] | 775 | <p>The <tt>-basicaa</tt> pass is an aggressive local analysis that "knows" |
| 776 | many important facts:</p> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 777 | |
| 778 | <ul> |
| 779 | <li>Distinct globals, stack allocations, and heap allocations can never |
| 780 | alias.</li> |
| 781 | <li>Globals, stack allocations, and heap allocations never alias the null |
| 782 | pointer.</li> |
| 783 | <li>Different fields of a structure do not alias.</li> |
| 784 | <li>Indexes into arrays with statically differing subscripts cannot alias.</li> |
| 785 | <li>Many common standard C library functions <a |
| 786 | href="#simplemodref">never access memory or only read memory</a>.</li> |
| 787 | <li>Pointers that obviously point to constant globals |
| 788 | "<tt>pointToConstantMemory</tt>".</li> |
| 789 | <li>Function calls can not modify or references stack allocations if they never |
| 790 | escape from the function that allocates them (a common case for automatic |
| 791 | arrays).</li> |
| 792 | </ul> |
| 793 | |
| 794 | </div> |
| 795 | |
Chris Lattner | 100a4f8 | 2004-06-28 19:19:47 +0000 | [diff] [blame] | 796 | <!-- _______________________________________________________________________ --> |
| 797 | <div class="doc_subsubsection"> |
| 798 | <a name="globalsmodref">The <tt>-globalsmodref-aa</tt> pass</a> |
| 799 | </div> |
| 800 | |
| 801 | <div class="doc_text"> |
| 802 | |
| 803 | <p>This pass implements a simple context-sensitive mod/ref and alias analysis |
Chris Lattner | ccb354b | 2004-07-27 07:50:07 +0000 | [diff] [blame] | 804 | for internal global variables that don't "have their address taken". If a |
| 805 | global does not have its address taken, the pass knows that no pointers alias |
| 806 | the global. This pass also keeps track of functions that it knows never access |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 807 | memory or never read memory. This allows certain optimizations (e.g. GVN) to |
Chris Lattner | ccb354b | 2004-07-27 07:50:07 +0000 | [diff] [blame] | 808 | eliminate call instructions entirely. |
Chris Lattner | 100a4f8 | 2004-06-28 19:19:47 +0000 | [diff] [blame] | 809 | </p> |
| 810 | |
| 811 | <p>The real power of this pass is that it provides context-sensitive mod/ref |
| 812 | information for call instructions. This allows the optimizer to know that |
| 813 | calls to a function do not clobber or read the value of the global, allowing |
| 814 | loads and stores to be eliminated.</p> |
| 815 | |
| 816 | <p>Note that this pass is somewhat limited in its scope (only support |
| 817 | non-address taken globals), but is very quick analysis.</p> |
| 818 | </div> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 819 | |
| 820 | <!-- _______________________________________________________________________ --> |
| 821 | <div class="doc_subsubsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 822 | <a name="steens-aa">The <tt>-steens-aa</tt> pass</a> |
| 823 | </div> |
| 824 | |
| 825 | <div class="doc_text"> |
| 826 | |
| 827 | <p>The <tt>-steens-aa</tt> pass implements a variation on the well-known |
| 828 | "Steensgaard's algorithm" for interprocedural alias analysis. Steensgaard's |
| 829 | algorithm is a unification-based, flow-insensitive, context-insensitive, and |
| 830 | field-insensitive alias analysis that is also very scalable (effectively linear |
| 831 | time).</p> |
| 832 | |
| 833 | <p>The LLVM <tt>-steens-aa</tt> pass implements a "speculatively |
| 834 | field-<b>sensitive</b>" version of Steensgaard's algorithm using the Data |
| 835 | Structure Analysis framework. This gives it substantially more precision than |
| 836 | the standard algorithm while maintaining excellent analysis scalability.</p> |
| 837 | |
Chris Lattner | d6e0dd1 | 2007-07-03 04:41:50 +0000 | [diff] [blame] | 838 | <p>Note that <tt>-steens-aa</tt> is available in the optional "poolalloc" |
| 839 | module, it is not part of the LLVM core.</p> |
| 840 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 841 | </div> |
| 842 | |
| 843 | <!-- _______________________________________________________________________ --> |
| 844 | <div class="doc_subsubsection"> |
| 845 | <a name="ds-aa">The <tt>-ds-aa</tt> pass</a> |
| 846 | </div> |
| 847 | |
| 848 | <div class="doc_text"> |
| 849 | |
| 850 | <p>The <tt>-ds-aa</tt> pass implements the full Data Structure Analysis |
| 851 | algorithm. Data Structure Analysis is a modular unification-based, |
| 852 | flow-insensitive, context-<b>sensitive</b>, and speculatively |
| 853 | field-<b>sensitive</b> alias analysis that is also quite scalable, usually at |
| 854 | O(n*log(n)).</p> |
| 855 | |
| 856 | <p>This algorithm is capable of responding to a full variety of alias analysis |
| 857 | queries, and can provide context-sensitive mod/ref information as well. The |
| 858 | only major facility not implemented so far is support for must-alias |
| 859 | information.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 860 | |
Chris Lattner | d6e0dd1 | 2007-07-03 04:41:50 +0000 | [diff] [blame] | 861 | <p>Note that <tt>-ds-aa</tt> is available in the optional "poolalloc" |
| 862 | module, it is not part of the LLVM core.</p> |
| 863 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 864 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 865 | |
Dan Gohman | 85dfca6 | 2010-06-28 22:09:52 +0000 | [diff] [blame] | 866 | <!-- _______________________________________________________________________ --> |
| 867 | <div class="doc_subsubsection"> |
| 868 | <a name="scev-aa">The <tt>-scev-aa</tt> pass</a> |
| 869 | </div> |
| 870 | |
| 871 | <div class="doc_text"> |
| 872 | |
| 873 | <p>The <tt>-scev-aa</tt> pass implements AliasAnalysis queries by |
| 874 | translating them into ScalarEvolution queries. This gives it a |
| 875 | more complete understanding of <tt>getelementptr</tt> instructions |
| 876 | and loop induction variables than other alias analyses have.</p> |
| 877 | |
| 878 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 879 | |
| 880 | <!-- ======================================================================= --> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 881 | <div class="doc_subsection"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 882 | <a name="aliasanalysis-xforms">Alias analysis driven transformations</a> |
| 883 | </div> |
| 884 | |
| 885 | <div class="doc_text"> |
| 886 | LLVM includes several alias-analysis driven transformations which can be used |
| 887 | with any of the implementations above. |
| 888 | </div> |
| 889 | |
| 890 | <!-- _______________________________________________________________________ --> |
| 891 | <div class="doc_subsubsection"> |
| 892 | <a name="adce">The <tt>-adce</tt> pass</a> |
| 893 | </div> |
| 894 | |
| 895 | <div class="doc_text"> |
| 896 | |
| 897 | <p>The <tt>-adce</tt> pass, which implements Aggressive Dead Code Elimination |
| 898 | uses the <tt>AliasAnalysis</tt> interface to delete calls to functions that do |
| 899 | not have side-effects and are not used.</p> |
| 900 | |
| 901 | </div> |
| 902 | |
| 903 | |
| 904 | <!-- _______________________________________________________________________ --> |
| 905 | <div class="doc_subsubsection"> |
| 906 | <a name="licm">The <tt>-licm</tt> pass</a> |
| 907 | </div> |
| 908 | |
| 909 | <div class="doc_text"> |
| 910 | |
| 911 | <p>The <tt>-licm</tt> pass implements various Loop Invariant Code Motion related |
| 912 | transformations. It uses the <tt>AliasAnalysis</tt> interface for several |
| 913 | different transformations:</p> |
| 914 | |
| 915 | <ul> |
| 916 | <li>It uses mod/ref information to hoist or sink load instructions out of loops |
| 917 | if there are no instructions in the loop that modifies the memory loaded.</li> |
| 918 | |
| 919 | <li>It uses mod/ref information to hoist function calls out of loops that do not |
| 920 | write to memory and are loop-invariant.</li> |
| 921 | |
| 922 | <li>If uses alias information to promote memory objects that are loaded and |
| 923 | stored to in loops to live in a register instead. It can do this if there are |
| 924 | no may aliases to the loaded/stored memory location.</li> |
| 925 | </ul> |
| 926 | |
| 927 | </div> |
| 928 | |
| 929 | <!-- _______________________________________________________________________ --> |
| 930 | <div class="doc_subsubsection"> |
| 931 | <a name="argpromotion">The <tt>-argpromotion</tt> pass</a> |
| 932 | </div> |
| 933 | |
| 934 | <div class="doc_text"> |
| 935 | <p> |
| 936 | The <tt>-argpromotion</tt> pass promotes by-reference arguments to be passed in |
| 937 | by-value instead. In particular, if pointer arguments are only loaded from it |
| 938 | passes in the value loaded instead of the address to the function. This pass |
| 939 | uses alias information to make sure that the value loaded from the argument |
| 940 | pointer is not modified between the entry of the function and any load of the |
| 941 | pointer.</p> |
| 942 | </div> |
| 943 | |
| 944 | <!-- _______________________________________________________________________ --> |
| 945 | <div class="doc_subsubsection"> |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 946 | <a name="gvn">The <tt>-gvn</tt>, <tt>-memcpyopt</tt>, and <tt>-dse</tt> |
| 947 | passes</a> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 948 | </div> |
| 949 | |
| 950 | <div class="doc_text"> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 951 | |
Chris Lattner | 4f4365e | 2009-04-25 21:11:37 +0000 | [diff] [blame] | 952 | <p>These passes use AliasAnalysis information to reason about loads and stores. |
| 953 | </p> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 954 | |
| 955 | </div> |
| 956 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 957 | <!-- ======================================================================= --> |
| 958 | <div class="doc_subsection"> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 959 | <a name="aliasanalysis-debug">Clients for debugging and evaluation of |
| 960 | implementations</a> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 961 | </div> |
| 962 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 963 | <div class="doc_text"> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 964 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 965 | <p>These passes are useful for evaluating the various alias analysis |
Chris Lattner | a9cf196 | 2010-03-01 19:24:17 +0000 | [diff] [blame] | 966 | implementations. You can use them with commands like '<tt>opt -ds-aa |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 967 | -aa-eval foo.bc -disable-output -stats</tt>'.</p> |
| 968 | |
| 969 | </div> |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 970 | |
| 971 | <!-- _______________________________________________________________________ --> |
| 972 | <div class="doc_subsubsection"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 973 | <a name="print-alias-sets">The <tt>-print-alias-sets</tt> pass</a> |
| 974 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 975 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 976 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 977 | |
| 978 | <p>The <tt>-print-alias-sets</tt> pass is exposed as part of the |
Chris Lattner | 05d5c9d | 2006-01-03 06:04:48 +0000 | [diff] [blame] | 979 | <tt>opt</tt> tool to print out the Alias Sets formed by the <a |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 980 | href="#ast"><tt>AliasSetTracker</tt></a> class. This is useful if you're using |
Chris Lattner | 05d5c9d | 2006-01-03 06:04:48 +0000 | [diff] [blame] | 981 | the <tt>AliasSetTracker</tt> class. To use it, use something like:</p> |
| 982 | |
| 983 | <div class="doc_code"> |
| 984 | <pre> |
| 985 | % opt -ds-aa -print-alias-sets -disable-output |
| 986 | </pre> |
| 987 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 988 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 989 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 990 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 991 | |
| 992 | <!-- _______________________________________________________________________ --> |
| 993 | <div class="doc_subsubsection"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 994 | <a name="count-aa">The <tt>-count-aa</tt> pass</a> |
| 995 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 996 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 997 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 998 | |
| 999 | <p>The <tt>-count-aa</tt> pass is useful to see how many queries a particular |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 1000 | pass is making and what responses are returned by the alias analysis. As an |
| 1001 | example,</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1002 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 1003 | <div class="doc_code"> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1004 | <pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 1005 | % opt -basicaa -count-aa -ds-aa -count-aa -licm |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1006 | </pre> |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 1007 | </div> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1008 | |
Misha Brukman | 294611a | 2004-07-28 22:18:33 +0000 | [diff] [blame] | 1009 | <p>will print out how many queries (and what responses are returned) by the |
| 1010 | <tt>-licm</tt> pass (of the <tt>-ds-aa</tt> pass) and how many queries are made |
| 1011 | of the <tt>-basicaa</tt> pass by the <tt>-ds-aa</tt> pass. This can be useful |
| 1012 | when debugging a transformation or an alias analysis implementation.</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1013 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 1014 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1015 | |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 1016 | <!-- _______________________________________________________________________ --> |
| 1017 | <div class="doc_subsubsection"> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 1018 | <a name="aa-eval">The <tt>-aa-eval</tt> pass</a> |
| 1019 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1020 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 1021 | <div class="doc_text"> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1022 | |
| 1023 | <p>The <tt>-aa-eval</tt> pass simply iterates through all pairs of pointers in a |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1024 | function and asks an alias analysis whether or not the pointers alias. This |
| 1025 | gives an indication of the precision of the alias analysis. Statistics are |
Chris Lattner | ccc8065 | 2004-05-23 21:04:01 +0000 | [diff] [blame] | 1026 | printed indicating the percent of no/may/must aliases found (a more precise |
| 1027 | algorithm will have a lower number of may aliases).</p> |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1028 | |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 1029 | </div> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1030 | |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1031 | <!-- *********************************************************************** --> |
Owen Anderson | 5a726b8 | 2007-10-02 00:43:25 +0000 | [diff] [blame] | 1032 | <div class="doc_section"> |
| 1033 | <a name="memdep">Memory Dependence Analysis</a> |
| 1034 | </div> |
| 1035 | <!-- *********************************************************************** --> |
| 1036 | |
| 1037 | <div class="doc_text"> |
| 1038 | |
| 1039 | <p>If you're just looking to be a client of alias analysis information, consider |
| 1040 | using the Memory Dependence Analysis interface instead. MemDep is a lazy, |
| 1041 | caching layer on top of alias analysis that is able to answer the question of |
| 1042 | what preceding memory operations a given instruction depends on, either at an |
| 1043 | intra- or inter-block level. Because of its laziness and caching |
| 1044 | policy, using MemDep can be a significant performance win over accessing alias |
| 1045 | analysis directly.</p> |
| 1046 | |
| 1047 | </div> |
| 1048 | |
| 1049 | <!-- *********************************************************************** --> |
Chris Lattner | 9f64875 | 2003-03-04 19:37:49 +0000 | [diff] [blame] | 1050 | |
Misha Brukman | 3896be2 | 2003-10-24 18:06:11 +0000 | [diff] [blame] | 1051 | <hr> |
Misha Brukman | 915cab2 | 2003-11-22 01:26:21 +0000 | [diff] [blame] | 1052 | <address> |
Misha Brukman | 38847d5 | 2003-12-21 22:53:21 +0000 | [diff] [blame] | 1053 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
Misha Brukman | 4440870 | 2008-12-11 17:34:48 +0000 | [diff] [blame] | 1054 | src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a> |
Misha Brukman | 915cab2 | 2003-11-22 01:26:21 +0000 | [diff] [blame] | 1055 | <a href="http://validator.w3.org/check/referer"><img |
Misha Brukman | 4440870 | 2008-12-11 17:34:48 +0000 | [diff] [blame] | 1056 | src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a> |
Misha Brukman | 915cab2 | 2003-11-22 01:26:21 +0000 | [diff] [blame] | 1057 | |
| 1058 | <a href="mailto:sabre@nondot.org">Chris Lattner</a><br> |
NAKAMURA Takumi | b9a3363 | 2011-04-09 02:13:37 +0000 | [diff] [blame] | 1059 | <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br> |
Misha Brukman | 915cab2 | 2003-11-22 01:26:21 +0000 | [diff] [blame] | 1060 | Last modified: $Date$ |
| 1061 | </address> |
Misha Brukman | cd11e45 | 2003-10-22 23:27:16 +0000 | [diff] [blame] | 1062 | |
| 1063 | </body> |
| 1064 | </html> |