Exemple #1
0
 def _trace_and_compile_from_bridge(self, metainterp_sd, jitdriver_sd):
     # 'jitdriver_sd' corresponds to the outermost one, i.e. the one
     # of the jit_merge_point where we started the loop, even if the
     # loop itself may contain temporarily recursion into other
     # jitdrivers.
     from pypy.jit.metainterp.pyjitpl import MetaInterp
     metainterp = MetaInterp(metainterp_sd, jitdriver_sd)
     metainterp.handle_guard_failure(self)
Exemple #2
0
 def _trace_and_compile_from_bridge(self, metainterp_sd, jitdriver_sd):
     # 'jitdriver_sd' corresponds to the outermost one, i.e. the one
     # of the jit_merge_point where we started the loop, even if the
     # loop itself may contain temporarily recursion into other
     # jitdrivers.
     from pypy.jit.metainterp.pyjitpl import MetaInterp
     metainterp = MetaInterp(metainterp_sd, jitdriver_sd)
     metainterp.handle_guard_failure(self)
Exemple #3
0
 def handle_fail(self, metainterp_sd):
     from pypy.jit.metainterp.pyjitpl import MetaInterp
     metainterp = MetaInterp(metainterp_sd)
     token = metainterp_sd.cpu.get_latest_force_token()
     all_virtuals = self.fetch_data(token)
     if all_virtuals is None:
         all_virtuals = []
     metainterp._already_allocated_resume_virtuals = all_virtuals
     return metainterp.handle_guard_failure(self)
Exemple #4
0
 def handle_fail(self, metainterp_sd):
     from pypy.jit.metainterp.pyjitpl import MetaInterp
     metainterp = MetaInterp(metainterp_sd)
     return metainterp.handle_guard_failure(self)