[pypy-commit] extradoc extradoc: abstract for my EP talk

antocuni noreply at buildbot.pypy.org
Fri Mar 16 19:04:26 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: extradoc
Changeset: r4151:01c92ffeaabc
Date: 2012-03-16 19:04 +0100
http://bitbucket.org/pypy/extradoc/changeset/01c92ffeaabc/

Log:	abstract for my EP talk

diff --git a/talk/ep2012/jit/abstract.rst b/talk/ep2012/jit/abstract.rst
new file mode 100644
--- /dev/null
+++ b/talk/ep2012/jit/abstract.rst
@@ -0,0 +1,13 @@
+PyPy JIT under the hood
+=======================
+
+PyPy is probably the fastest Python implementation around, thanks to its
+automatically generated JIT compiler.  This talk explains how the JIT works
+internally: in particular, it shows all the intermediate steps which lead to
+the compilation of the Python source into fast machine code, and how to use
+the right tools to inspect the output of the JIT compiler.
+
+By examining the internals of the JIT, you will also learn why some code is
+more "JIT friendly" than other, and how to write programs which exploits its
+full potential.
+


More information about the pypy-commit mailing list