summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefanus Du Toit <stefanus.dutoit@rapidmind.com>2009-04-30 23:28:50 +0000
committerStefanus Du Toit <stefanus.dutoit@rapidmind.com>2009-04-30 23:28:50 +0000
commit05cfd1beb2bee740c35972c2ff72df281345ce55 (patch)
tree1d49d848b227ed8e780a708889fa4c5fefc05fb1
parenta5037484a4999e2f4e15b5e97da2a4d47ac22576 (diff)
downloadbcm5719-llvm-05cfd1beb2bee740c35972c2ff72df281345ce55.tar.gz
bcm5719-llvm-05cfd1beb2bee740c35972c2ff72df281345ce55.zip
Add a comment to refer to the section of the programmer's manual that explains what the pointer tagging in Use is for.
llvm-svn: 70521
-rw-r--r--llvm/include/llvm/Use.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/include/llvm/Use.h b/llvm/include/llvm/Use.h
index 53df699e703..489dbc50a04 100644
--- a/llvm/include/llvm/Use.h
+++ b/llvm/include/llvm/Use.h
@@ -11,6 +11,15 @@
// instruction or some other User instance which refers to a Value. The Use
// class keeps the "use list" of the referenced value up to date.
//
+// Pointer tagging is used to efficiently find the User corresponding
+// to a Use without having to store a User pointer in every Use. A
+// User is preceded in memory by all the Uses corresponding to its
+// operands, and the low bits of one of the fields (Prev) of the Use
+// class are used to encode offsets to be able to find that User given
+// a pointer to any Use. For details, see:
+//
+// http://www.llvm.org/docs/ProgrammersManual.html#UserLayout
+//
//===----------------------------------------------------------------------===//
#ifndef LLVM_USE_H
OpenPOWER on IntegriCloud