[llvm-commits] [llvm] r165879 - /llvm/trunk/docs/Lexicon.rst
Dmitri Gribenko
gribozavr at gmail.com
Sat Oct 13 10:34:49 PDT 2012
Author: gribozavr
Date: Sat Oct 13 12:34:49 2012
New Revision: 165879
URL: http://llvm.org/viewvc/llvm-project?rev=165879&view=rev
Log:
Documentation: Lexicon.rst: add "BB Vectorization" and "TBAA".
Modified:
llvm/trunk/docs/Lexicon.rst
Modified: llvm/trunk/docs/Lexicon.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Lexicon.rst?rev=165879&r1=165878&r2=165879&view=diff
==============================================================================
--- llvm/trunk/docs/Lexicon.rst (original)
+++ llvm/trunk/docs/Lexicon.rst Sat Oct 13 12:34:49 2012
@@ -20,8 +20,10 @@
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 @@
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 @@
**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
+
More information about the llvm-commits
mailing list