diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-13 17:34:49 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-13 17:34:49 +0000 |
commit | 2378c5e230c08c5dcb31a67c09ecb82e7f43140e (patch) | |
tree | 84d5dee3c184813e2e3e5aa4ffa7b39b55666b83 /llvm/docs/Lexicon.rst | |
parent | 35480284e736d78b79dabff8dd2e9f42fb6c0816 (diff) | |
download | bcm5719-llvm-2378c5e230c08c5dcb31a67c09ecb82e7f43140e.tar.gz bcm5719-llvm-2378c5e230c08c5dcb31a67c09ecb82e7f43140e.zip |
Documentation: Lexicon.rst: add "BB Vectorization" and "TBAA".
llvm-svn: 165879
Diffstat (limited to 'llvm/docs/Lexicon.rst')
-rw-r--r-- | llvm/docs/Lexicon.rst | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index 6ebe61429f9..d568c0b302e 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/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 + |