[pypy-svn] r67896 - pypy/trunk/pypy/jit/backend/x86

fijal at codespeak.net fijal at codespeak.net
Fri Sep 25 18:34:37 CEST 2009


Author: fijal
Date: Fri Sep 25 18:34:37 2009
New Revision: 67896

Modified:
   pypy/trunk/pypy/jit/backend/x86/ri386setup.py
Log:
Add more operations


Modified: pypy/trunk/pypy/jit/backend/x86/ri386setup.py
==============================================================================
--- pypy/trunk/pypy/jit/backend/x86/ri386setup.py	(original)
+++ pypy/trunk/pypy/jit/backend/x86/ri386setup.py	Fri Sep 25 18:34:37 2009
@@ -514,6 +514,12 @@
 SUBSD = Instruction()
 SUBSD.mode2(XMMREG, MODRM64, ['\xF2\x0F\x5C', register(1, 8), modrm(2)])
 
+MULSD = Instruction()
+MULSD.mode2(XMMREG, MODRM64, ['\xF2\x0F\x59', register(1, 8), modrm(2)])
+
+DIVSD = Instruction()
+DIVSD.mode2(XMMREG, MODRM64, ['\xF2\x0F\x5E', register(1, 8), modrm(2)])
+
 # ------------------------------ end of SSE2 -----------------------------
 
 UD2 = Instruction()      # reserved as an illegal instruction



More information about the Pypy-commit mailing list