Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r59520:6d1e84282c49
Date: 2012-12-20 14:23 +0100
http://bitbucket.org/pypy/pypy/changeset/6d1e84282c49/

Log:    Add movnt to ignore.

diff --git a/pypy/translator/c/gcc/trackgcroot.py 
b/pypy/translator/c/gcc/trackgcroot.py
--- a/pypy/translator/c/gcc/trackgcroot.py
+++ b/pypy/translator/c/gcc/trackgcroot.py
@@ -495,6 +495,9 @@
         'movz', 
         # locked operations should not move GC pointers, at least so far
         'lock', 'pause',
+        # non-temporal moves should be reserved for areas containing
+        # raw data, not GC pointers
+        'movnt',
         ])
 
     # a partial list is hopefully good enough for now; it's all to support
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to