[pypy-svn] r69824 - pypy/trunk/pypy/translator/c/gcc

fijal at codespeak.net fijal at codespeak.net
Wed Dec 2 11:44:33 CET 2009


Author: fijal
Date: Wed Dec  2 11:44:32 2009
New Revision: 69824

Modified:
   pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
Log:
list a bit more sse2 operations


Modified: pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/trunk/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/trunk/pypy/translator/c/gcc/trackgcroot.py	Wed Dec  2 11:44:32 2009
@@ -349,7 +349,8 @@
         'f',
         'cvt', 'ucomi', 'subs', 'subp' , 'adds', 'addp', 'xorp', 'movap',
         'movd', 'sqrtsd',
-        'mins', 'minp', 'maxs', 'maxp', # sse2
+        'mins', 'minp', 'maxs', 'maxp', 'unpcklps',
+        'unpcklpd', 'unpckhps', 'unpckhpd', # sse2
         # arithmetic operations should not produce GC pointers
         'inc', 'dec', 'not', 'neg', 'or', 'and', 'sbb', 'adc',
         'shl', 'shr', 'sal', 'sar', 'rol', 'ror', 'mul', 'imul', 'div', 'idiv',



More information about the Pypy-commit mailing list