Author: Armin Rigo <[email protected]>
Branch: guard-compatible
Changeset: r84666:6899285bcc8f
Date: 2016-05-24 21:03 +0200
http://bitbucket.org/pypy/pypy/changeset/6899285bcc8f/

Log:    comment

diff --git a/rpython/jit/backend/x86/guard_compat.py 
b/rpython/jit/backend/x86/guard_compat.py
--- a/rpython/jit/backend/x86/guard_compat.py
+++ b/rpython/jit/backend/x86/guard_compat.py
@@ -90,6 +90,8 @@
 #     JZ not_found
 #   loop:
 #     # search for the item at addresses between RDX and RDX+16*R11, included
+#     # (note that R11 is always odd here; even though we use 8*R11 in the
+#     # following instruction, we're really accessing 16-bytes-sized items)
 #     CMP RAX, [RDX + 8*R11 - 8]      # R11 = ...31, 15, 7, 3, 1
 #     JA right
 #     JNE left
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to