summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-10-13 17:34:49 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-10-13 17:34:49 +0000
commit549ea3a540e4472dd2e725fe0a84b11bd84ea4e4 (patch)
tree1b44869057dda02e661ce5c7657cac718d4d8e60 /docs
parent126afcbf654e42dc3f659a1a66bfa8a784e7bd46 (diff)
downloadllvm-549ea3a540e4472dd2e725fe0a84b11bd84ea4e4.tar.gz
llvm-549ea3a540e4472dd2e725fe0a84b11bd84ea4e4.tar.bz2
llvm-549ea3a540e4472dd2e725fe0a84b11bd84ea4e4.tar.xz
Documentation: Lexicon.rst: add "BB Vectorization" and "TBAA".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165879 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Lexicon.rst13
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/Lexicon.rst b/docs/Lexicon.rst
index 6ebe61429f..d568c0b302 100644
--- a/docs/Lexicon.rst
+++ b/docs/Lexicon.rst
@@ -20,8 +20,10 @@ A
B
-
-**BURS**
+**BB Vectorization**
+ Basic Block Vectorization
+**BURS**
Bottom Up Rewriting System --- A method of instruction selection for code
generation. An example is the `BURG
<http://www.program-transformation.org/Transform/BURG>`_ tool.
@@ -156,7 +158,7 @@ R
In garbage collection, a pointer variable lying outside of the `heap`_ from
which the collector begins its reachability analysis. In the context of code
generation, "root" almost always refers to a "stack root" --- a local or
- temporary variable within an executing function.</dd>
+ temporary variable within an executing function.
**RPO**
Reverse postorder
@@ -192,3 +194,10 @@ S
**Stack Map**
In garbage collection, metadata emitted by the code generator which
identifies `roots`_ within the stack frame of an executing function.
+
+T
+-
+
+**TBAA**
+ Type-Based Alias Analysis
+