[pypy-svn] r35821 - pypy/dist/pypy/doc
pedronis at codespeak.net
pedronis at codespeak.net
Fri Dec 15 19:45:22 CET 2006
Author: pedronis
Date: Fri Dec 15 19:45:21 2006
New Revision: 35821
Modified:
pypy/dist/pypy/doc/draft-jit-outline.txt
Log:
small fixes.
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 Fri Dec 15 19:45:21 2006
@@ -579,12 +579,12 @@
The mirror issue is that of *split points*. Splits are conditional
branches. There are two kinds of splits: the ones whose condition is
-itself a green variable, and the ones whose condition is red. A green
+itself on a green variable, and the ones whose condition is red. A green
split (i.e. the former) is left untouched by the timeshifting
transformation: as the condition will be known a compile-time, we know
-at compile-time which of the branches is followed.
+at compile-time which of the branches has to be followed.
-A red split is more delicate. It must generate in a conditional branch
+A red split is more delicate. It must generate a conditional branch
in the residual code. From a theoretical point of view, this is done by
emitting a conditional jump instruction, and then *forking* the
compile-time process in two identical copies: each copy follows one of
More information about the Pypy-commit
mailing list