[pypy-commit] pypy jitframe-on-heap: remove dead code

fijal noreply at buildbot.pypy.org
Fri Jan 25 18:09:31 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r60470:8ccfdb07a4fb
Date: 2013-01-25 19:08 +0200
http://bitbucket.org/pypy/pypy/changeset/8ccfdb07a4fb/

Log:	remove dead code

diff --git a/rpython/jit/backend/x86/regalloc.py b/rpython/jit/backend/x86/regalloc.py
--- a/rpython/jit/backend/x86/regalloc.py
+++ b/rpython/jit/backend/x86/regalloc.py
@@ -58,27 +58,6 @@
     no_lower_byte_regs = []
     save_around_call_regs = [eax, ecx, edx, esi, edi, r8, r9, r10]
 
-    REGLOC_TO_GCROOTMAP_REG_INDEX = {
-        ebx: 1,
-        r12: 2,
-        r13: 3,
-        r14: 4,
-        r15: 5,
-    }
-    #REGLOC_TO_COPY_AREA_OFS = {
-    #    ecx: MY_COPY_OF_REGS + 0 * WORD,
-    #    ebx: MY_COPY_OF_REGS + 1 * WORD,
-    #    esi: MY_COPY_OF_REGS + 2 * WORD,
-    #    edi: MY_COPY_OF_REGS + 3 * WORD,
-    #    r8:  MY_COPY_OF_REGS + 4 * WORD,
-    #    r9:  MY_COPY_OF_REGS + 5 * WORD,
-    #    r10: MY_COPY_OF_REGS + 6 * WORD,
-    #    r12: MY_COPY_OF_REGS + 7 * WORD,
-    #    r13: MY_COPY_OF_REGS + 8 * WORD,
-    #    r14: MY_COPY_OF_REGS + 9 * WORD,
-    #3    r15: MY_COPY_OF_REGS + 10 * WORD,
-    #}
-
 class X86XMMRegisterManager(RegisterManager):
 
     box_types = [FLOAT]


More information about the pypy-commit mailing list