[pypy-svn] r71307 - in pypy/branch/string-promote/pypy: jit/metainterp objspace/std

fijal at codespeak.net fijal at codespeak.net
Thu Feb 18 20:32:11 CET 2010


Author: fijal
Date: Thu Feb 18 20:32:09 2010
New Revision: 71307

Modified:
   pypy/branch/string-promote/pypy/jit/metainterp/codewriter.py
   pypy/branch/string-promote/pypy/objspace/std/celldict.py
   pypy/branch/string-promote/pypy/objspace/std/typeobject.py
Log:
Temporarily skip assertion in codewriter (it's wrong, but let's check out
things)


Modified: pypy/branch/string-promote/pypy/jit/metainterp/codewriter.py
==============================================================================
--- pypy/branch/string-promote/pypy/jit/metainterp/codewriter.py	(original)
+++ pypy/branch/string-promote/pypy/jit/metainterp/codewriter.py	Thu Feb 18 20:32:09 2010
@@ -1257,10 +1257,10 @@
             loopinvariant = getattr(func, "_jit_loop_invariant_", False)
             all_promoted_args = getattr(func,
                                "_pure_function_with_all_promoted_args_", False)
-            if pure and not all_promoted_args:
-                effectinfo = calldescr.get_extra_info()
-                assert (effectinfo is not None and
-                        not effectinfo.forces_virtual_or_virtualizable)
+            #if pure and not all_promoted_args:
+            #    effectinfo = calldescr.get_extra_info()
+            #    assert (effectinfo is not None and
+            #            not effectinfo.forces_virtual_or_virtualizable)
         try:
             canraise = self.codewriter.raise_analyzer.can_raise(op)
         except lltype.DelayedPointer:

Modified: pypy/branch/string-promote/pypy/objspace/std/celldict.py
==============================================================================
--- pypy/branch/string-promote/pypy/objspace/std/celldict.py	(original)
+++ pypy/branch/string-promote/pypy/objspace/std/celldict.py	Thu Feb 18 20:32:09 2010
@@ -31,7 +31,7 @@
             return self._getcell_makenew(key)
         return self.content.get(key, None)
 
-    @jit.purefunction_promote
+    @jit.purefunction
     def _getcell_makenew(self, key):
         res = self.content.get(key, None)
         if res is not None:

Modified: pypy/branch/string-promote/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/branch/string-promote/pypy/objspace/std/typeobject.py	(original)
+++ pypy/branch/string-promote/pypy/objspace/std/typeobject.py	Thu Feb 18 20:32:09 2010
@@ -9,7 +9,7 @@
 from pypy.rlib.objectmodel import we_are_translated
 from pypy.rlib.objectmodel import current_object_addr_as_int, compute_hash
 from pypy.rlib.jit import hint, purefunction_promote, we_are_jitted
-from pypy.rlib.jit import dont_look_inside
+from pypy.rlib.jit import dont_look_inside, purefunction
 from pypy.rlib.rarithmetic import intmask, r_uint
 
 from copy_reg import _HEAPTYPE
@@ -248,7 +248,7 @@
             return tup
         return w_self._pure_lookup_where_with_method_cache(name, version_tag)
 
-    @purefunction_promote
+    @purefunction
     def _pure_lookup_where_with_method_cache(w_self, name, version_tag):
         space = w_self.space
         SHIFT = r_uint.BITS - space.config.objspace.std.methodcachesizeexp



More information about the Pypy-commit mailing list