コード例 #1
0
 def task_jittest_lltype(self):
     """ Run with the JIT on top of the llgraph backend
     """
     # parent process loop: spawn a child, wait for the child to finish,
     # print a message, and restart
     from rpython.translator.goal import unixcheckpoint
     unixcheckpoint.restartable_point(auto='run')
     # load the module rpython/jit/tl/jittest.py, which you can hack at
     # and restart without needing to restart the whole translation process
     from rpython.jit.tl import jittest
     jittest.jittest(self)
コード例 #2
0
ファイル: driver.py プロジェクト: yuyichao/pypy
 def task_jittest_lltype(self):
     """ Run with the JIT on top of the llgraph backend
     """
     # parent process loop: spawn a child, wait for the child to finish,
     # print a message, and restart
     from rpython.translator.goal import unixcheckpoint
     unixcheckpoint.restartable_point(auto='run')
     # load the module rpython/jit/tl/jittest.py, which you can hack at
     # and restart without needing to restart the whole translation process
     from rpython.jit.tl import jittest
     jittest.jittest(self)