[pypy-svn] r35778 - pypy/dist/pypy/doc

arigo at codespeak.net arigo at codespeak.net
Fri Dec 15 10:58:32 CET 2006


Author: arigo
Date: Fri Dec 15 10:58:29 2006
New Revision: 35778

Modified:
   pypy/dist/pypy/doc/index.txt
   pypy/dist/pypy/doc/rtyper.txt
Log:
Links.


Modified: pypy/dist/pypy/doc/index.txt
==============================================================================
--- pypy/dist/pypy/doc/index.txt	(original)
+++ pypy/dist/pypy/doc/index.txt	Fri Dec 15 10:58:29 2006
@@ -51,8 +51,8 @@
 `bytecode interpreter`_ explains the basic mechanisms 
 of the bytecode interpreter and virtual machine. 
 
-`translation`_ offers the beginnings of documentation 
-about our low level code generator backends. 
+`translation`_ is a detailed overview of our translation process.  The
+rtyper_ is the largest component of our translation process.
 
 `dynamic-language translation`_ is a paper that describes
 the translation process, especially the flow object space
@@ -319,6 +319,7 @@
 .. _`jit backends`: jit.html#backends
 .. _`hint-annotator`: jit.html#hint-annotator
 .. _`timeshifter`: jit.html#timeshifter
+.. _rtyper: rtyper.html
 .. _`low-level type system`: rtyper.html#low-level-type
 .. _`object-oriented type system`: rtyper.html#oo-type
 .. _`Stackless Transform`: translation.html#the-stackless-transform

Modified: pypy/dist/pypy/doc/rtyper.txt
==============================================================================
--- pypy/dist/pypy/doc/rtyper.txt	(original)
+++ pypy/dist/pypy/doc/rtyper.txt	Fri Dec 15 10:58:29 2006
@@ -717,7 +717,7 @@
 
 The LLInterpreter is a simple piece of code that is able to interpret flow
 graphs. This is very useful for testing purposes, especially if you work on
-the `RPython Typer`_. The most useful interface for it is the ``interpret``
+the RPython Typer. The most useful interface for it is the ``interpret``
 function in the file `pypy/rpython/test/test_llinterp.py`_. It takes as
 arguments a function and a list of arguments with which the function is
 supposed to be called. Then it generates the flow graph, annotates it
@@ -759,5 +759,4 @@
 
 .. _annotator: translation.html#the-annotation-pass
 .. _llvm: translation.html#the-llvm-back-end
-.. _`rpython typer`:
 .. include:: _ref.txt



More information about the Pypy-commit mailing list