[pypy-svn] r53212 - pypy/branch/jit-hotpath/pypy/jit/codegen/i386

fijal at codespeak.net fijal at codespeak.net
Mon Mar 31 22:49:37 CEST 2008


Author: fijal
Date: Mon Mar 31 22:49:36 2008
New Revision: 53212

Modified:
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
Log:
I'm not sure how to go about it. We need m32int instead of modrm...


Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	Mon Mar 31 22:49:36 2008
@@ -480,6 +480,9 @@
 FSTL = Instruction()
 FSTL.mode1(MODRM64, ['\xDD', orbyte(2<<3), modrm(1)])
 
+FISTP = Instruction()
+FISTP.mode1(MODRM, ['xDB', orbyte(3<<3), modrm(1)])
+
 # ------------------------- end of floating point ------------------------
 
 UD2 = Instruction()      # reserved as an illegal instruction



More information about the Pypy-commit mailing list