[llvm-commits] [llvm] r152094 - /llvm/trunk/docs/SourceLevelDebugging.html
Eric Christopher
echristo at apple.com
Mon Mar 5 18:25:41 PST 2012
Author: echristo
Date: Mon Mar 5 20:25:41 2012
New Revision: 152094
URL: http://llvm.org/viewvc/llvm-project?rev=152094&view=rev
Log:
Fix up link and a couple small edits.
Modified:
llvm/trunk/docs/SourceLevelDebugging.html
Modified: llvm/trunk/docs/SourceLevelDebugging.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.html?rev=152094&r1=152093&r2=152094&view=diff
==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.html (original)
+++ llvm/trunk/docs/SourceLevelDebugging.html Mon Mar 5 20:25:41 2012
@@ -2131,7 +2131,7 @@
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<h4>
- <a name="acceltableintro">Introduction</a>
+ <a name="acceltableintroduction">Introduction</a>
</h4>
<!-- ======================================================================= -->
<div>
@@ -2292,10 +2292,10 @@
`-------------'
</pre>
</div>
-<p>The BUCKETS in the Apple tables is an index into the HASHES array. By
+<p>The BUCKETS in the name tables are an index into the HASHES array. By
making all of the full 32 bit hash values contiguous in memory, we allow
ourselves to efficiently check for a match while touching as little
- memory as possible. Most often, checking the 32 bit hash values is as far as
+ memory as possible. Most often checking the 32 bit hash values is as far as
the lookup goes. If it does match, it usually is a match with no collisions.
So for a table with "n_buckets" buckets, and "n_hashes" unique 32 bit hash
values, we can clarify the contents of the BUCKETS, HASHES and OFFSETS as:
More information about the llvm-commits
mailing list