[pypy-svn] r41327 - pypy/dist/pypy/doc

mwh at codespeak.net mwh at codespeak.net
Mon Mar 26 12:46:12 CEST 2007


Author: mwh
Date: Mon Mar 26 12:46:11 2007
New Revision: 41327

Modified:
   pypy/dist/pypy/doc/interpreter-optimizations.txt
Log:
link to some config documentation


Modified: pypy/dist/pypy/doc/interpreter-optimizations.txt
==============================================================================
--- pypy/dist/pypy/doc/interpreter-optimizations.txt	(original)
+++ pypy/dist/pypy/doc/interpreter-optimizations.txt	Mon Mar 26 12:46:11 2007
@@ -334,6 +334,9 @@
 if it is not None, then it is considered to be an additional first
 argument in the call to the *im_func* object from the stack.
 
+You can enable this feature with the :config:`objspace.opcodes.CALL_METHOD`
+option.
+
 .. _`call likely builtin`:
 
 CALL_LIKELY_BUILTIN
@@ -359,6 +362,9 @@
 full lookups.  In the common case, neither of these cases is true, so the
 builtin can be directly invoked.
 
+You can enable this feature with the
+:config:`objspace.opcodes.CALL_LIKELY_BUILTIN` option.
+
 .. more here?
 
 Overall Effects
@@ -378,5 +384,6 @@
 
 .. waffles about ropes
 
-A build with all the generally useful optimizations turned on is between 1.5 and
-2.5 times faster than one without, depending on the benchmark.
+You can build a pypy with all generally useful optimizations turned on by using
+the :config:`objspace.std.allopts` option.  Such a build is between 1.5 and 2.5
+times faster than the default, depending on the benchmark.



More information about the Pypy-commit mailing list