[pypy-svn] r39708 - pypy/dist/pypy/doc/config
arigo at codespeak.net
arigo at codespeak.net
Fri Mar 2 16:38:21 CET 2007
Author: arigo
Date: Fri Mar 2 16:38:20 2007
New Revision: 39708
Added:
pypy/dist/pypy/doc/config/objspace.opcodes.CALL_METHOD.txt (contents, props changed)
pypy/dist/pypy/doc/config/objspace.usemodules._cslib.txt (contents, props changed)
pypy/dist/pypy/doc/config/objspace.usemodules.cclp.txt (contents, props changed)
Log:
Three missing option docs.
Added: pypy/dist/pypy/doc/config/objspace.opcodes.CALL_METHOD.txt
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/doc/config/objspace.opcodes.CALL_METHOD.txt Fri Mar 2 16:38:20 2007
@@ -0,0 +1,8 @@
+Enable a pair of bytecodes that speed up method calls.
+See ``pypy.interpreter.callmethod`` for a description.
+
+The goal is to avoid creating the bound method object in the common
+case. So far, this only works for calls with no keyword, no ``*arg``
+and no ``**arg`` but it would be easy to extend.
+
+Gives the best results combined with --objspace-std-withshadowtracking.
Added: pypy/dist/pypy/doc/config/objspace.usemodules._cslib.txt
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/doc/config/objspace.usemodules._cslib.txt Fri Mar 2 16:38:20 2007
@@ -0,0 +1 @@
+Use the '_cslib' module (internal support for the constraint solver).
Added: pypy/dist/pypy/doc/config/objspace.usemodules.cclp.txt
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/doc/config/objspace.usemodules.cclp.txt Fri Mar 2 16:38:20 2007
@@ -0,0 +1 @@
+Use the 'cclp' module (for the logic object space).
More information about the pypy-svn
mailing list