[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 01/13] target-s390x: fix exception for invalid opera
From: |
Aurelien Jarno |
Subject: |
[Qemu-devel] [PATCH 01/13] target-s390x: fix exception for invalid operation code |
Date: |
Mon, 1 Jun 2015 23:24:45 +0200 |
When an operation code is not recognized (ie invalid instruction) an
operation exception should be generated instead of a specification
exception. The latter is for valid opcode, with invalid operands or
modifiers.
This give a very basic GDB support in the guest, as it uses the invalid
opcode 0x0001 to generate a trap.
Cc: Alexander Graf <address@hidden>
Cc: Richard Henderson <address@hidden>
Signed-off-by: Aurelien Jarno <address@hidden>
---
target-s390x/translate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target-s390x/translate.c b/target-s390x/translate.c
index d508bc2..c7ebd21 100644
--- a/target-s390x/translate.c
+++ b/target-s390x/translate.c
@@ -320,7 +320,7 @@ static void gen_program_exception(DisasContext *s, int code)
static inline void gen_illegal_opcode(DisasContext *s)
{
- gen_program_exception(s, PGM_SPECIFICATION);
+ gen_program_exception(s, PGM_OPERATION);
}
#ifndef CONFIG_USER_ONLY
--
2.1.4
- [Qemu-devel] [PATCH 09/13] target-s390x: implement TRANSLATE EXTENDED instruction, (continued)
- [Qemu-devel] [PATCH 05/13] target-s390x: move STORE CLOCK FAST to the correct facility, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 04/13] target-s390x: change CHRL and CGHRL format to RIL-b, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 08/13] target-s390x: implement TRANSLATE AND TEST instruction, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 01/13] target-s390x: fix exception for invalid operation code,
Aurelien Jarno <=
- [Qemu-devel] [PATCH 07/13] target-s390x: implement LOAD FP INTEGER instructions, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 11/13] target-s390x: implement miscellaneous-instruction-extensions facility, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 10/13] target-s390x: implement LPDFR and LNDFR instructions, Aurelien Jarno, 2015/06/01
- [Qemu-devel] [PATCH 13/13] target-s390x: implement high-word facility, Aurelien Jarno, 2015/06/01