[pypy-svn] r66602 - pypy/branch/pyjitpl5/pypy/jit/backend

arigo at codespeak.net arigo at codespeak.net
Fri Jul 24 18:16:24 CEST 2009


Author: arigo
Date: Fri Jul 24 18:16:19 2009
New Revision: 66602

Added:
   pypy/branch/pyjitpl5/pypy/jit/backend/model.py.merge.tmp
      - copied, changed from r66600, pypy/branch/pyjitpl5/pypy/jit/backend/model.py
Log:
merging of svn+ssh://codespeak.net/svn/pypy/branch/pyjitpl5-optimize4/pypy/jit/backend/model.py
revisions 66237 to 66600:

    ------------------------------------------------------------------------
    r66591 | arigo | 2009-07-24 16:07:33 +0200 (Fri, 24 Jul 2009) | 2 lines
    
    Fix x86 for NEW_WITH_VTABLE not taking the descr any more.
    
    ------------------------------------------------------------------------
    r66241 | arigo | 2009-07-15 18:36:01 +0200 (Wed, 15 Jul 2009) | 4 lines
    
    A branch in which to attempt refactoring of optimize4
    to take optimize3's idea of separating InstanceNodes and
    InstanceValues.
    
    ------------------------------------------------------------------------


Copied: pypy/branch/pyjitpl5/pypy/jit/backend/model.py.merge.tmp (from r66600, pypy/branch/pyjitpl5/pypy/jit/backend/model.py)
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/model.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/model.py.merge.tmp	Fri Jul 24 18:16:19 2009
@@ -1,5 +1,8 @@
 class AbstractCPU(object):
 
+    def set_class_sizes(self, class_sizes):
+        self.class_sizes = class_sizes
+
     def setup_once(self):
         """Called once by the front-end when the program starts."""
         pass



More information about the Pypy-commit mailing list