[pypy-svn] r62777 - pypy/trunk/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Mon Mar 9 19:20:36 CET 2009


Author: fijal
Date: Mon Mar  9 19:20:35 2009
New Revision: 62777

Modified:
   pypy/trunk/pypy/jit/metainterp/support.py
Log:
kill kill kill


Modified: pypy/trunk/pypy/jit/metainterp/support.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/support.py	(original)
+++ pypy/trunk/pypy/jit/metainterp/support.py	Mon Mar  9 19:20:35 2009
@@ -222,20 +222,3 @@
     rtyper._builtin_func_for_spec_cache[key] = (c_func, LIST_OR_DICT)
     #
     return c_func, LIST_OR_DICT
-
-def raise_exc_value(tp, value):
-    from pypy.rpython.llinterp import LLException
-    raise LLException(tp, value)
-
-class Entry(ExtRegistryEntry):
-    _about_ = raise_exc_value
-
-    def compute_result_annotation(self, s_tp, s_value):
-        return annmodel.s_ImpossibleValue
-
-    def specialize_call(self, hop):
-        v_list = [hop.inputarg(hop.args_r[0], arg=0),
-                  hop.inputarg(hop.args_r[1], arg=1)]
-        hop.has_implicit_exception(Exception)
-        hop.exception_is_here()
-        return hop.genop('raise_exc_value', v_list)



More information about the Pypy-commit mailing list