aboutsummaryrefslogtreecommitdiffstats
path: root/docs/AliasAnalysis.html
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-11-21 22:30:25 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-11-21 22:30:25 +0000
commit1f254d50eb7db4460ecc10e8ea3839cc4a4eb923 (patch)
tree3700e9d60343f753db7faf7b579773bea7eb5f46 /docs/AliasAnalysis.html
parente952f233a056c71ad70b2b63d83298dbd39d5357 (diff)
downloadexternal_llvm-1f254d50eb7db4460ecc10e8ea3839cc4a4eb923.zip
external_llvm-1f254d50eb7db4460ecc10e8ea3839cc4a4eb923.tar.gz
external_llvm-1f254d50eb7db4460ecc10e8ea3839cc4a4eb923.tar.bz2
Made paragraph structure more consistent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/AliasAnalysis.html')
-rw-r--r--docs/AliasAnalysis.html48
1 files changed, 22 insertions, 26 deletions
diff --git a/docs/AliasAnalysis.html b/docs/AliasAnalysis.html
index 3a06b73..1fac585 100644
--- a/docs/AliasAnalysis.html
+++ b/docs/AliasAnalysis.html
@@ -5,7 +5,6 @@
<link rel="stylesheet" href="llvm.css" type="text/css">
<title>Alias Analysis Infrastructure in LLVM</title>
</head>
-
<body>
<div class="doc_title">
@@ -58,30 +57,28 @@
<!-- *********************************************************************** -->
<div class="doc_text">
-<p>
-Alias Analysis (or Pointer Analysis) is a technique which attempts to determine
-whether or not two pointers ever can point to the same object in memory.
-Traditionally, Alias Analyses respond to a query with either a <a
+
+<p>Alias Analysis (or Pointer Analysis) is a technique which attempts to
+determine whether or not two pointers ever can point to the same object in
+memory. Traditionally, Alias Analyses respond to a query with either a <a
href="#MustNoMay">Must, May, or No</a> alias response, indicating that two
pointers do point to the same object, might point to the same object, or are
-known not to point to the same object.
-</p>
-<p>
-The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class is the
+known not to point to the same object.</p>
+
+<p>The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class is the
centerpiece of the LLVM Alias Analysis related infrastructure. This class is
the common interface between clients of alias analysis information and the
implementations providing it. In addition to simple alias analysis information,
this class exposes Mod/Ref information from those implementations which can
provide it, allowing for powerful analyses and transformations to work well
-together.
-</p>
-<p>
-This document contains information necessary to successfully implement this
+together.</p>
+
+<p>This document contains information necessary to successfully implement this
interface, use it, and to test both sides. It also explains some of the finer
points about what exactly results mean. If you feel that something is unclear
or should be added, please <a href="mailto:sabre@nondot.org">let me
-know</a>.
-</p>
+know</a>.</p>
+
</div>
<!-- *********************************************************************** -->
@@ -91,21 +88,20 @@ know</a>.
<!-- *********************************************************************** -->
<div class="doc_text">
-<p>
-The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class defines
-the interface that Alias Analysis implementations should support. This class
-exports two important enums: <tt>AliasResult</tt> and <tt>ModRefResult</tt>
-which represent the result of an alias query or a mod/ref query,
-respectively.
-</p>
-<p>
-The AliasAnalysis interface exposes information about memory, represented in
+
+<p>The <a href="/doxygen/classAliasAnalysis.html">AliasAnalysis</a> class
+defines the interface that Alias Analysis implementations should support. This
+class exports two important enums: <tt>AliasResult</tt> and
+<tt>ModRefResult</tt> which represent the result of an alias query or a mod/ref
+query, respectively.</p>
+
+<p>The AliasAnalysis interface exposes information about memory, represented in
several different ways. In particular, memory objects are represented as a
starting address and size, and function calls are represented as the actual
<tt>call</tt> or <tt>invoke</tt> instructions that performs the call. The
AliasAnalysis interface also exposes some helper methods which allow you to get
-mod/ref information for arbitrary instructions.
-</p>
+mod/ref information for arbitrary instructions.</p>
+
</div>
<!-- ======================================================================= -->