[pypy-svn] r68189 - in pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86: . test

arigo at codespeak.net arigo at codespeak.net
Mon Oct 5 19:19:26 CEST 2009


Author: arigo
Date: Mon Oct  5 19:19:26 2009
New Revision: 68189

Added:
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py
      - copied, changed from r68186, pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86.py
      - copied unchanged from r68186, pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86_32_auto_encoding.py
      - copied unchanged from r68186, pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86_32_auto_encoding.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86_64_auto_encoding.py
      - copied unchanged from r68186, pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_rx86_64_auto_encoding.py
Removed:
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/ri386.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/ri386setup.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_ri386.py
   pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/test/test_ri386_auto_encoding.py
Log:
Copy rx86.py and the tests from the previous branch.


Copied: pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py (from r68186, pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py)
==============================================================================
--- pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py	(original)
+++ pypy/branch/remove-ri386-multimethod/pypy/jit/backend/x86/rx86.py	Mon Oct  5 19:19:26 2009
@@ -349,7 +349,7 @@
         self.writeimm32(intmask(rffi.cast(rffi.INT, imm)))
         self.writeimm32(imm >> 32)
 
-    # MOV_ri from the parent class is not wrong, but add a better encoding
+    # MOV_ri from the parent class is not wrong, but here is a better encoding
     # for the common case where the immediate fits in 32 bits
     _MOV_ri32 = insn(rex_w, '\xC7', register(1), '\xC0', immediate(2, 'i'))
 



More information about the Pypy-commit mailing list