Author: Richard Plangger <[email protected]>
Branch: s390x-backend
Changeset: r80394:70f5409c0a1c
Date: 2015-10-22 15:19 +0200
http://bitbucket.org/pypy/pypy/changeset/70f5409c0a1c/
Log: instrs float division
diff --git a/rpython/jit/backend/zarch/instructions.py
b/rpython/jit/backend/zarch/instructions.py
--- a/rpython/jit/backend/zarch/instructions.py
+++ b/rpython/jit/backend/zarch/instructions.py
@@ -118,7 +118,7 @@
'AEB': ('rxe', ['\xED','\x0A'], 'r,bidl,-'),
'ADB': ('rxe', ['\xED','\x1A'], 'r,bidl,-'),
- # SUBSTRACT
+ # SUBSTRACTION
'SEBR': ('rre', ['\xB3','\x0B']),
'SDBR': ('rre', ['\xB3','\x1B']),
'SEB': ('rxe', ['\xED','\x0B'], 'r,bidl,-'),
@@ -128,7 +128,11 @@
'MDBR': ('rre', ['\xB3','\x1C']),
'MDB': ('rxe', ['\xED','\x1C'], 'r,bidl,-'),
-
+ # DIVISION
+ 'DEBR': ('rre', ['\xB3','\x0D']),
+ 'DDBR': ('rre', ['\xB3','\x1D']),
+ 'DEB': ('rxe', ['\xED','\x0D'], 'r,bidl,-'),
+ 'DDB': ('rxe', ['\xED','\x1D'], 'r,bidl,-'),
}
all_mnemonic_codes = {
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit