[pypy-commit] pypy conditional_call_value: consider COND_CALL_VALUE in heapcache

fijal noreply at buildbot.pypy.org
Tue May 5 10:08:10 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: conditional_call_value
Changeset: r77140:3fe6d97fceee
Date: 2015-05-05 10:08 +0200
http://bitbucket.org/pypy/pypy/changeset/3fe6d97fceee/

Log:	consider COND_CALL_VALUE in heapcache

diff --git a/rpython/jit/metainterp/optimizeopt/heap.py b/rpython/jit/metainterp/optimizeopt/heap.py
--- a/rpython/jit/metainterp/optimizeopt/heap.py
+++ b/rpython/jit/metainterp/optimizeopt/heap.py
@@ -301,6 +301,7 @@
         if (opnum == rop.CALL or
             opnum == rop.CALL_PURE or
             opnum == rop.COND_CALL or
+            opnum == rop.COND_CALL_VALUE or
             opnum == rop.CALL_MAY_FORCE or
             opnum == rop.CALL_RELEASE_GIL or
             opnum == rop.CALL_ASSEMBLER):


More information about the pypy-commit mailing list