[pypy-svn] r28902 - pypy/dist/pypy/rpython/memory

pedronis at codespeak.net pedronis at codespeak.net
Sat Jun 17 00:50:45 CEST 2006


Author: pedronis
Date: Sat Jun 17 00:50:44 2006
New Revision: 28902

Modified:
   pypy/dist/pypy/rpython/memory/gctransform.py
Log:
don't inline even malloc_fixedsize now that it has grown the ovfchecks, doesn't seem to impact performance
significatively, and the resulting executable has a more reasonable size.



Modified: pypy/dist/pypy/rpython/memory/gctransform.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gctransform.py	(original)
+++ pypy/dist/pypy/rpython/memory/gctransform.py	Sat Jun 17 00:50:44 2006
@@ -915,7 +915,7 @@
             [s_gc, annmodel.SomeInteger(nonneg=True),
              annmodel.SomeInteger(nonneg=True),
              annmodel.SomeBool()], s_gcref,
-            inline = True)
+            inline = False)
         self.malloc_varsize_ptr = getfn(
             GCClass.malloc_varsize.im_func,
             [s_gc] + [annmodel.SomeInteger(nonneg=True) for i in range(5)]



More information about the Pypy-commit mailing list