[pypy-commit] pypy default: make docstring of elidable a bit more friendly

cfbolz noreply at buildbot.pypy.org
Thu Jan 12 17:13:02 CET 2012


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: 
Changeset: r51281:769b1a02e211
Date: 2012-01-12 17:02 +0100
http://bitbucket.org/pypy/pypy/changeset/769b1a02e211/

Log:	make docstring of elidable a bit more friendly

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -11,12 +11,19 @@
 
 
 def elidable(func):
-    """ Decorate a function as "trace-elidable". This means precisely that:
+    """ Decorate a function as "trace-elidable". Usually this means simply that
+    the function is constant-foldable, i.e. is pure and has no side-effects.
+
+    In some situations it is ok to use this decorator if the function *has*
+    side effects, as long as these side-effects are idempotent. A typical
+    example for this would be a cache.
+
+    To be totally precise:
 
     (1) the result of the call should not change if the arguments are
         the same (same numbers or same pointers)
     (2) it's fine to remove the call completely if we can guess the result
-    according to rule 1
+        according to rule 1
     (3) the function call can be moved around by optimizer,
         but only so it'll be called earlier and not later.
 


More information about the pypy-commit mailing list