[PATCH] D33664: [Lexicon] Add GVN
Brian Gesiak via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 30 07:14:44 PDT 2017
modocache updated this revision to Diff 100704.
modocache added a comment.
Capitalize & only mention expressions. Thanks for the link to the paper!
https://reviews.llvm.org/D33664
Files:
docs/Lexicon.rst
Index: docs/Lexicon.rst
===================================================================
--- docs/Lexicon.rst
+++ docs/Lexicon.rst
@@ -109,6 +109,11 @@
Garbage Collection. The practice of using reachability analysis instead of
explicit memory management to reclaim unused memory.
+**GVN**
+ Global Value Numbering. An analysis that assigns a value number to
+ expressions in a program. Provably equivalent expressions are assigned the
+ same value number, and may then be transformed or eliminated.
+
H
-
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33664.100704.patch
Type: text/x-patch
Size: 533 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170530/5b75d781/attachment.bin>
More information about the llvm-commits
mailing list