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

pedronis at codespeak.net pedronis at codespeak.net
Tue Sep 13 17:08:26 CEST 2005


Author: pedronis
Date: Tue Sep 13 17:08:25 2005
New Revision: 17529

Modified:
   pypy/dist/pypy/doc/draft-dynamic-language-translation.txt
Log:
written some text about how the flow space plugs itself and an overview of its concrete operations.

Probably will need to change or be mostly trashed but it's a start.




Modified: pypy/dist/pypy/doc/draft-dynamic-language-translation.txt
==============================================================================
--- pypy/dist/pypy/doc/draft-dynamic-language-translation.txt	(original)
+++ pypy/dist/pypy/doc/draft-dynamic-language-translation.txt	Tue Sep 13 17:08:25 2005
@@ -202,7 +202,37 @@
 
 XXX
 
-Annotator
+In our bytecode-interpreter design evaluation responsibilities are
+split between the Object Space, frames and the so-called execution
+context. The latter two object kinds are properly part of the
+interpretation engine, while the object space implements all
+operations on values which are treated as black boxes by the engine.
+
+The Object Space plays the role of a factory for execution contexts,
+whose base implementation is supplied by the engine, and exposes hooks
+triggered when frames are entered, left and before each bytecode,
+allowing to gather a trace of the execution.
+
+Frames have run/resume methods which embed the interpretation loop,
+These methods take an execution context invoking the appropriate hooks
+at the corresponding situations.
+
+The Flow Object Space in our current design is responsible of
+constructing a flow graph for a single function using abstract
+interpretation.
+
+Concretely the Flow Space plugs itself in the interpreter as an object
+space, and supplying a derived execution context implementation.  It
+also wrap a fix-point loop around invocations of the frame resume
+method which is forced to execute one single bytecode through
+exceptions reaching this loop from the space operations'
+code and the specialised execution context.
+
+
+
+
+
+Annotator 
 ===================================
 
 XXX



More information about the Pypy-commit mailing list