[pypy-svn] r73224 - pypy/extradoc/talk/oopsla2010

fijal at codespeak.net fijal at codespeak.net
Wed Mar 31 18:30:31 CEST 2010


Author: fijal
Date: Wed Mar 31 18:30:29 2010
New Revision: 73224

Modified:
   pypy/extradoc/talk/oopsla2010/paper.txt
Log:
a bit of progress


Modified: pypy/extradoc/talk/oopsla2010/paper.txt
==============================================================================
--- pypy/extradoc/talk/oopsla2010/paper.txt	(original)
+++ pypy/extradoc/talk/oopsla2010/paper.txt	Wed Mar 31 18:30:29 2010
@@ -48,4 +48,20 @@
 we created a tiny language and wrote interpreter for it in RPython to showcase
 benefits of our that can also be applied on a large scale.
 
+As a result, we can remove the frame overhead costs almost completely
+from the running program. There are some corner-cases, require by python
+language specification, that make frame escape via traceback (if exception
+exits jitted part of the code). In that case we allocate the frame and
+put all elements there. However, this still avoids using frame for all
+operations, as the interpreter would do.
+
+Performance gains are significant (XXX actually measure how significant).
+XXX
+
+Related work
+============
+
+Technical background
+====================
+
 



More information about the Pypy-commit mailing list