[pypy-commit] pypy ppc-jit-backend: remove obsolete information about old guard encoding style

hager noreply at buildbot.pypy.org
Fri Mar 2 12:36:32 CET 2012


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r53105:4c2db371ef83
Date: 2012-03-02 03:35 -0800
http://bitbucket.org/pypy/pypy/changeset/4c2db371ef83/

Log:	remove obsolete information about old guard encoding style

diff --git a/pypy/jit/backend/ppc/ppc_assembler.py b/pypy/jit/backend/ppc/ppc_assembler.py
--- a/pypy/jit/backend/ppc/ppc_assembler.py
+++ b/pypy/jit/backend/ppc/ppc_assembler.py
@@ -66,16 +66,6 @@
 
 class AssemblerPPC(OpAssembler):
 
-    FLOAT_TYPE = '\xED'
-    REF_TYPE   = '\xEE'
-    INT_TYPE   = '\xEF'
-
-    STACK_LOC = '\xFC'
-    IMM_LOC = '\xFD'
-    # REG_LOC is empty
-    EMPTY_LOC = '\xFE'
-    END_OF_LOCS = '\xFF'
-
     FORCE_INDEX_AREA            = len(r.MANAGED_REGS) * WORD
     ENCODING_AREA               = len(r.MANAGED_REGS) * WORD
     OFFSET_SPP_TO_GPR_SAVE_AREA = (FORCE_INDEX + FLOAT_INT_CONVERSION


More information about the pypy-commit mailing list