[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 02/12] S/390 disassembler fixes
From: |
Aurelien Jarno |
Subject: |
Re: [Qemu-devel] [PATCH 02/12] S/390 disassembler fixes |
Date: |
Thu, 22 Oct 2009 23:51:58 +0200 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
On Wed, Oct 21, 2009 at 03:52:23PM +0200, Ulrich Hecht wrote:
> enable zArch (64-bit) instructions
> enable disassembler for both s390 and s390x
>
> Signed-off-by: Ulrich Hecht <address@hidden>
> ---
> configure | 2 +-
> disas.c | 3 +++
> s390-dis.c | 4 ++--
> 3 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/configure b/configure
> index ca6d45c..350c742 100755
> --- a/configure
> +++ b/configure
> @@ -2386,7 +2386,7 @@ for i in $ARCH $TARGET_BASE_ARCH ; do
> ppc*)
> echo "CONFIG_PPC_DIS=y" >> $config_target_mak
> ;;
> - s390)
> + s390*)
> echo "CONFIG_S390_DIS=y" >> $config_target_mak
> ;;
> sh4)
> diff --git a/disas.c b/disas.c
> index ce342bc..14c8901 100644
> --- a/disas.c
> +++ b/disas.c
> @@ -195,6 +195,9 @@ void target_disas(FILE *out, target_ulong code,
> target_ulong size, int flags)
> #elif defined(TARGET_CRIS)
> disasm_info.mach = bfd_mach_cris_v32;
> print_insn = print_insn_crisv32;
> +#elif defined(TARGET_S390X)
> + disasm_info.mach = bfd_mach_s390_64;
> + print_insn = print_insn_s390;
> #elif defined(TARGET_MICROBLAZE)
> disasm_info.mach = bfd_arch_microblaze;
> print_insn = print_insn_microblaze;
> diff --git a/s390-dis.c b/s390-dis.c
> index 86dd84f..9a73a57 100644
> --- a/s390-dis.c
> +++ b/s390-dis.c
> @@ -191,10 +191,10 @@ init_disasm (struct disassemble_info *info)
> // switch (info->mach)
> // {
> // case bfd_mach_s390_31:
> - current_arch_mask = 1 << S390_OPCODE_ESA;
> +// current_arch_mask = 1 << S390_OPCODE_ESA;
> // break;
> // case bfd_mach_s390_64:
> -// current_arch_mask = 1 << S390_OPCODE_ZARCH;
> + current_arch_mask = 1 << S390_OPCODE_ZARCH;
> // break;
> // default:
> // abort ();
I do wonder why we keep everything commented, and not use the case at
all? Especially given above, the code does:
disasm_info.mach = bfd_mach_s390_64;
--
Aurelien Jarno GPG: 1024D/F1BCDB73
address@hidden http://www.aurel32.net
- [Qemu-devel] [PATCH 03/12] S/390 CPU emulation, (continued)
- [Qemu-devel] [PATCH 03/12] S/390 CPU emulation, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 04/12] S/390 host build system support, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 05/12] S/390 target build system support, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 06/12] S/390 host support for TCG, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 07/12] linux-user: S/390 64-bit (s390x) support, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 08/12] linux-user: don't do locking in single-threaded processes, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 09/12] linux-user: dup3, fallocate syscalls, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 10/12] linux-user: define a couple of syscalls for non-uid16 targets, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 11/12] linux-user: getpriority errno fix, Ulrich Hecht, 2009/10/21
- [Qemu-devel] [PATCH 12/12] enable CPU_QuadU for s390x, Ulrich Hecht, 2009/10/21
- Re: [Qemu-devel] [PATCH 02/12] S/390 disassembler fixes,
Aurelien Jarno <=
- [Qemu-devel] Re: [PATCH 01/12] TCG "sync" op, Aurelien Jarno, 2009/10/22