[pypy-svn] r35882 - pypy/dist/pypy/doc
pedronis at codespeak.net
pedronis at codespeak.net
Tue Dec 19 13:57:56 CET 2006
Author: pedronis
Date: Tue Dec 19 13:57:51 2006
New Revision: 35882
Modified:
pypy/dist/pypy/doc/draft-jit-outline.txt
pypy/dist/pypy/doc/jit.txt
Log:
move the short bit about backends to the new jit documentation
Modified: pypy/dist/pypy/doc/draft-jit-outline.txt
==============================================================================
--- pypy/dist/pypy/doc/draft-jit-outline.txt (original)
+++ pypy/dist/pypy/doc/draft-jit-outline.txt Tue Dec 19 13:57:51 2006
@@ -652,13 +652,16 @@
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.
The Backend interface
-----------------------
-...
-
+The interface (which is not yet completely stable) is documented in
+`pypy/jit/codegen/model.py`_.
.. _VMC: http://codespeak.net/svn/pypy/extradoc/talk/dls2006/pypy-vm-construction.pdf
Modified: pypy/dist/pypy/doc/jit.txt
==============================================================================
--- pypy/dist/pypy/doc/jit.txt (original)
+++ pypy/dist/pypy/doc/jit.txt Tue Dec 19 13:57:51 2006
@@ -243,12 +243,5 @@
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.
-
-The interface is documented in `pypy/jit/codegen/model.py`_.
-
.. include:: _ref.txt
More information about the Pypy-commit
mailing list