[pypy-svn] r17880 - pypy/dist/pypy/translator/tool

pedronis at codespeak.net pedronis at codespeak.net
Mon Sep 26 17:58:33 CEST 2005


Author: pedronis
Date: Mon Sep 26 17:58:32 2005
New Revision: 17880

Modified:
   pypy/dist/pypy/translator/tool/taskengine.py
Log:
added a string with a draft of tasks for translation,

?tasks are optional

there will be probably a global option to select between llvm/c versions of tasks

optional tasks can have a --dont-xxx option



Modified: pypy/dist/pypy/translator/tool/taskengine.py
==============================================================================
--- pypy/dist/pypy/translator/tool/taskengine.py	(original)
+++ pypy/dist/pypy/translator/tool/taskengine.py	Mon Sep 26 17:58:32 2005
@@ -102,7 +102,25 @@
     assert abc._plan('A', skip=['C']) == ['B', 'A']
    
 
-   
+""" sketch of tasks for translation:
+
+annotate:  # includes annotation and annotatation simplifications
+
+rtype: annotate
+
+source_llvm: backendoptimisations, rtype, annotate
+
+source_c: ?backendoptimisations, ?rtype, ?annotate
+
+compile_c : source_c
+
+compile_llvm: source_llvm
+
+run_c: compile_c
+
+run_llvm: compile_llvm
+
+"""
 
         
         



More information about the Pypy-commit mailing list