[pypy-svn] r33974 - in pypy/dist/pypy: jit/codegen/i386/test jit/timeshifter jit/timeshifter/test objspace/flow objspace/flow/test rlib rpython

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Oct 31 18:35:07 CET 2006


Author: cfbolz
Date: Tue Oct 31 18:35:01 2006
New Revision: 33974

Added:
   pypy/dist/pypy/rlib/unroll.py
      - copied unchanged from r33967, pypy/dist/pypy/rpython/unroll.py
Removed:
   pypy/dist/pypy/rpython/unroll.py
Modified:
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py
   pypy/dist/pypy/jit/timeshifter/hrtyper.py
   pypy/dist/pypy/jit/timeshifter/rtimeshift.py
   pypy/dist/pypy/jit/timeshifter/test/test_timeshift.py
   pypy/dist/pypy/objspace/flow/framestate.py
   pypy/dist/pypy/objspace/flow/objspace.py
   pypy/dist/pypy/objspace/flow/test/test_unroll.py
   pypy/dist/pypy/rpython/rtuple.py
Log:
moving unroll


Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py	Tue Oct 31 18:35:01 2006
@@ -4,7 +4,7 @@
 from pypy.rpython.objectmodel import keepalive_until_here
 from pypy.jit.timeshifter.test import test_timeshift
 from pypy.translator.c.genc import CStandaloneBuilder
-from pypy.rpython.unroll import unrolling_iterable
+from pypy.rlib.unroll import unrolling_iterable
 from pypy.jit.codegen.i386.rgenop import RI386GenOp
 from pypy.jit.conftest import Benchmark
 

Modified: pypy/dist/pypy/jit/timeshifter/hrtyper.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/hrtyper.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/hrtyper.py	Tue Oct 31 18:35:01 2006
@@ -5,7 +5,7 @@
 from pypy.annotation import model as annmodel
 from pypy.annotation.pairtype import pair, pairtype
 from pypy.rpython.annlowlevel import PseudoHighLevelCallable
-from pypy.rpython.unroll import unrolling_iterable
+from pypy.rlib.unroll import unrolling_iterable
 from pypy.rpython import annlowlevel
 from pypy.rpython.rtyper import RPythonTyper, LowLevelOpList, TyperError
 from pypy.rpython.rmodel import Repr, inputconst

Modified: pypy/dist/pypy/jit/timeshifter/rtimeshift.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/rtimeshift.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/rtimeshift.py	Tue Oct 31 18:35:01 2006
@@ -3,7 +3,7 @@
 from pypy.rpython.lltypesystem import lltype, lloperation, llmemory
 from pypy.jit.hintannotator.model import originalconcretetype
 from pypy.jit.timeshifter import rvalue
-from pypy.rpython.unroll import unrolling_iterable
+from pypy.rlib.unroll import unrolling_iterable
 from pypy.rpython.annlowlevel import cachedtype, base_ptr_lltype
 from pypy.rpython.annlowlevel import cast_instance_to_base_ptr
 from pypy.rpython.annlowlevel import cast_base_ptr_to_instance

Modified: pypy/dist/pypy/jit/timeshifter/test/test_timeshift.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/test/test_timeshift.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/test/test_timeshift.py	Tue Oct 31 18:35:01 2006
@@ -8,7 +8,7 @@
 from pypy.objspace.flow.model import summary
 from pypy.rpython.lltypesystem import lltype, llmemory, rstr
 from pypy.rpython.objectmodel import hint, keepalive_until_here
-from pypy.rpython.unroll import unrolling_iterable
+from pypy.rlib.unroll import unrolling_iterable
 from pypy.rpython.annlowlevel import PseudoHighLevelCallable
 from pypy.rpython.module.support import LLSupport
 from pypy.annotation import model as annmodel

Modified: pypy/dist/pypy/objspace/flow/framestate.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/framestate.py	(original)
+++ pypy/dist/pypy/objspace/flow/framestate.py	Tue Oct 31 18:35:01 2006
@@ -1,7 +1,7 @@
 from pypy.interpreter.pyframe import PyFrame, SuspendedUnroller
 from pypy.interpreter.error import OperationError
 from pypy.rpython.objectmodel import instantiate
-from pypy.rpython.unroll import SpecTag
+from pypy.rlib.unroll import SpecTag
 from pypy.objspace.flow.model import *
 
 class FrameState:

Modified: pypy/dist/pypy/objspace/flow/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/objspace.py	(original)
+++ pypy/dist/pypy/objspace/flow/objspace.py	Tue Oct 31 18:35:01 2006
@@ -7,7 +7,7 @@
 from pypy.objspace.flow.model import *
 from pypy.objspace.flow import flowcontext
 from pypy.objspace.flow.operation import FunctionByName
-from pypy.rpython.unroll import unrolling_iterable, _unroller
+from pypy.rlib.unroll import unrolling_iterable, _unroller
 
 debug = 0
 

Modified: pypy/dist/pypy/objspace/flow/test/test_unroll.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/test/test_unroll.py	(original)
+++ pypy/dist/pypy/objspace/flow/test/test_unroll.py	Tue Oct 31 18:35:01 2006
@@ -1,5 +1,5 @@
 from pypy.objspace.flow.test.test_objspace import Base
-from pypy.rpython.unroll import unrolling_zero, unrolling_iterable
+from pypy.rlib.unroll import unrolling_zero, unrolling_iterable
 
 class TestUnroll(Base):
 

Modified: pypy/dist/pypy/rpython/rtuple.py
==============================================================================
--- pypy/dist/pypy/rpython/rtuple.py	(original)
+++ pypy/dist/pypy/rpython/rtuple.py	Tue Oct 31 18:35:01 2006
@@ -9,7 +9,7 @@
 from pypy.rpython.rslice import AbstractSliceRepr
 from pypy.rpython.lltypesystem.lltype import Void, Signed 
 from pypy.rlib.rarithmetic import intmask
-from pypy.rpython.unroll import unrolling_iterable
+from pypy.rlib.unroll import unrolling_iterable
 
 class __extend__(annmodel.SomeTuple):
     def rtyper_makerepr(self, rtyper):



More information about the Pypy-commit mailing list