diff options
| author | Brian Gesiak <modocache@gmail.com> | 2017-08-18 15:35:53 +0000 |
|---|---|---|
| committer | Brian Gesiak <modocache@gmail.com> | 2017-08-18 15:35:53 +0000 |
| commit | 8953a7c54418861d681d9b5b6a5c406bc07bbaba (patch) | |
| tree | 2a9669020c47bff6faf784aa44c99a50a27b1eb9 /llvm/docs/Lexicon.rst | |
| parent | 358aeae7b8c31e3bb1a611a1e090be0a23858d31 (diff) | |
| download | bcm5719-llvm-8953a7c54418861d681d9b5b6a5c406bc07bbaba.tar.gz bcm5719-llvm-8953a7c54418861d681d9b5b6a5c406bc07bbaba.zip | |
[Lexicon] Add "GEP"
Summary:
`getelementptr` is frequently abbreviated as "GEP", often in source files that
do not ever reference the full name of the instruction. Add it to the Lexicon,
in case readers go to look for what it means there.
Test plan:
1. `ninja sphinx`
2. Confirm that the rendered docs HTML contains the new "GEP" entry
llvm-svn: 311168
Diffstat (limited to 'llvm/docs/Lexicon.rst')
| -rw-r--r-- | llvm/docs/Lexicon.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index ce7ed318fe4..0021bf8e00b 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/docs/Lexicon.rst @@ -109,6 +109,11 @@ G Garbage Collection. The practice of using reachability analysis instead of explicit memory management to reclaim unused memory. +**GEP** + ``GetElementPtr``. An LLVM IR instruction that is used to get the address + of a subelement of an aggregate data structure. It is documented in detail + `here <http://llvm.org/docs/GetElementPtr.html>`_. + **GVN** Global Value Numbering. GVN is a pass that partitions values computed by a function into congruence classes. Values ending up in the same congruence |

