[pypy-commit] pypy jit-dynamic-getarrayitem: added these to base model

alex_gaynor noreply at buildbot.pypy.org
Mon Nov 14 21:08:03 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: jit-dynamic-getarrayitem
Changeset: r49417:46c3f314a1e7
Date: 2011-11-14 12:51 -0500
http://bitbucket.org/pypy/pypy/changeset/46c3f314a1e7/

Log:	added these to base model

diff --git a/pypy/jit/backend/model.py b/pypy/jit/backend/model.py
--- a/pypy/jit/backend/model.py
+++ b/pypy/jit/backend/model.py
@@ -195,6 +195,15 @@
         raise NotImplementedError
 
     @staticmethod
+    def interiorfielddescrof(A, fieldname):
+        raise NotImplementedError
+
+    @staticmethod
+    def interiorfielddescrof_dynamic(offset, width, fieldsize, is_pointer,
+        is_float, is_signed):
+        raise NotImplementedError
+
+    @staticmethod
     def arraydescrof(A):
         raise NotImplementedError
 


More information about the pypy-commit mailing list