[pypy-svn] r52688 - pypy/dist/pypy/doc/jit

arigo at codespeak.net arigo at codespeak.net
Tue Mar 18 16:48:34 CET 2008


Author: arigo
Date: Tue Mar 18 16:48:33 2008
New Revision: 52688

Modified:
   pypy/dist/pypy/doc/jit/backend.txt
   pypy/dist/pypy/doc/jit/theory.txt
Log:
Move the bit about backends and update it.


Modified: pypy/dist/pypy/doc/jit/backend.txt
==============================================================================
--- pypy/dist/pypy/doc/jit/backend.txt	(original)
+++ pypy/dist/pypy/doc/jit/backend.txt	Tue Mar 18 16:48:33 2008
@@ -1,2 +1,20 @@
-in-progress
 ============================================================
+                         JIT Backends
+============================================================
+
+The JIT compilers that we generate are linked with one of our backends,
+which are written by hand in RPython.  We currently have a backend for
+producing IA32/i386 machine code in memory, PowerPC machine code in
+memory, or (for testing) further low-level control flow graphs.  There
+were some experiments with a backend using the LLVM JIT.  Current work
+includes a backend that produces CLI bytecode.
+
+The Backend interface
+-----------------------
+
+The interface (which is not yet completely stable) is documented in
+`pypy/jit/codegen/model.py`_.
+
+
+
+.. include:: ../_ref.txt

Modified: pypy/dist/pypy/doc/jit/theory.txt
==============================================================================
--- pypy/dist/pypy/doc/jit/theory.txt	(original)
+++ pypy/dist/pypy/doc/jit/theory.txt	Tue Mar 18 16:48:33 2008
@@ -909,16 +909,9 @@
 Backends
 ====================
 
-The compilers produced by the timeshifter are linked with one of our
-backends, which are written by hand in RPython.  We currently have a
-backend for producing IA32/i386 machine code in memory, PowerPC machine
-code in memory, or (for testing) further low-level control flow graphs.
+See Backends_.
 
-The Backend interface
------------------------
-
-The interface (which is not yet completely stable) is documented in
-`pypy/jit/codegen/model.py`_.
+.. _Backends: backend.html
 
 
 Results



More information about the Pypy-commit mailing list