[pypy-svn] r39485 - pypy/dist/pypy/config

arigo at codespeak.net arigo at codespeak.net
Tue Feb 27 12:01:42 CET 2007


Author: arigo
Date: Tue Feb 27 12:01:40 2007
New Revision: 39485

Modified:
   pypy/dist/pypy/config/pypyoption.py
Log:
Success: CALL_METHOD benchmarks give impressively good results together
with method caching.  richards is only 1.7x slower than on CPython.


Modified: pypy/dist/pypy/config/pypyoption.py
==============================================================================
--- pypy/dist/pypy/config/pypyoption.py	(original)
+++ pypy/dist/pypy/config/pypyoption.py	Tue Feb 27 12:01:40 2007
@@ -193,6 +193,7 @@
                    "enable all thought-to-be-working optimizations",
                    default=False,
                    suggests=[("objspace.opcodes.CALL_LIKELY_BUILTIN", True),
+                             ("objspace.opcodes.CALL_METHOD", True),
                              ("translation.withsmallfuncsets", 5),
                              ("translation.profopt",
                               "-c 'from richards import main;main(); from test import pystone; pystone.main()'"),



More information about the Pypy-commit mailing list