qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Richard Henderson <richard.henderson@linaro.org>, qemu-devel@nongnu.org
Cc: Thomas Huth <thuth@redhat.com>
Subject: Re: [PATCH v2 14/15] disas: Remove CRIS disassembler
Date: Thu, 5 Sep 2024 12:42:49 +0200	[thread overview]
Message-ID: <c24f9c04-b794-4a67-9e99-4a6f0ed217d1@linaro.org> (raw)
In-Reply-To: <a88452bd-eb61-43a3-a557-0e552ab3bb27@linaro.org>

On 5/9/24 03:30, Richard Henderson wrote:
> On 9/4/24 07:36, Philippe Mathieu-Daudé wrote:
>> --- a/include/disas/dis-asm.h
>> +++ b/include/disas/dis-asm.h
>> @@ -232,10 +232,6 @@ enum bfd_architecture
>>   #define bfd_mach_avrxmega5  105
>>   #define bfd_mach_avrxmega6  106
>>   #define bfd_mach_avrxmega7  107
>> -  bfd_arch_cris,       /* Axis CRIS */
>> -#define bfd_mach_cris_v0_v10   255
>> -#define bfd_mach_cris_v32      32
>> -#define bfd_mach_cris_v10_v32  1032
>>     bfd_arch_microblaze, /* Xilinx MicroBlaze.  */
>>     bfd_arch_moxie,      /* The Moxie core.  */
>>     bfd_arch_ia64,      /* HP/Intel ia64 */
>> @@ -448,8 +444,6 @@ int print_insn_w65              (bfd_vma, 
>> disassemble_info*);
>>  int print_insn_d10v             (bfd_vma, disassemble_info*);
>>  int print_insn_v850             (bfd_vma, disassemble_info*);
>>  int print_insn_tic30            (bfd_vma, disassemble_info*);
>> -int print_insn_crisv32          (bfd_vma, disassemble_info*);
>> -int print_insn_crisv10          (bfd_vma, disassemble_info*);
>>  int print_insn_microblaze       (bfd_vma, disassemble_info*);
>>  int print_insn_ia64             (bfd_vma, disassemble_info*);
>>  int print_insn_xtensa           (bfd_vma, disassemble_info*);
> 
> 
> This is probably worth leaving alone, since it's all imported.
> There is lots of other stuff in there (even in these hunks)
> that is not relevant to qemu.

This is no more an import, see addition in commit
aae1746c72 ("target/loongarch: Add disassembler")
and removals in 9992f57978..333f944c15 6c3014858c:

. 6c3014858c target/nios2: Remove the deprecated Nios II target
. 9992f57978 disas: Remove old libopcode s390 disassembler
. 333f944c15 disas: Remove old libopcode ppc disassembler
. 457248a54c disas: Remove old libopcode i386 disassembler
. 82f96346e1 disas: Remove old libopcode arm disassembler

I don't mind discarding this patch, but I'd like to know
how we can be consistent with this file and the future
removals.

Thanks,

Phil.



  reply	other threads:[~2024-09-05 10:43 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-04 14:35 [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Philippe Mathieu-Daudé
2024-09-04 14:35 ` [PATCH v2 01/15] tests/tcg: Remove CRIS libc test files Philippe Mathieu-Daudé
2024-09-04 14:47   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 02/15] tests/tcg: Remove CRIS bare " Philippe Mathieu-Daudé
2024-09-04 14:41   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 03/15] buildsys: Remove CRIS cross container Philippe Mathieu-Daudé
2024-09-04 14:43   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 04/15] linux-user: Remove support for CRIS target Philippe Mathieu-Daudé
2024-09-04 14:45   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 05/15] hw/cris: Remove the axis-dev88 machine Philippe Mathieu-Daudé
2024-09-04 15:26   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 06/15] hw/cris: Remove image loader helper Philippe Mathieu-Daudé
2024-09-04 15:28   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 07/15] hw/intc: Remove TYPE_ETRAX_FS_PIC device Philippe Mathieu-Daudé
2024-09-04 15:31   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 08/15] hw/char: Remove TYPE_ETRAX_FS_SERIAL device Philippe Mathieu-Daudé
2024-09-04 15:45   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 09/15] hw/net: Remove TYPE_ETRAX_FS_ETH device Philippe Mathieu-Daudé
2024-09-04 16:04   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 10/15] hw/dma: Remove ETRAX_FS DMA device Philippe Mathieu-Daudé
2024-09-04 16:05   ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 11/15] hw/timer: Remove TYPE_ETRAX_FS_TIMER device Philippe Mathieu-Daudé
2024-09-04 16:07   ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 12/15] system: Remove support for CRIS target Philippe Mathieu-Daudé
2024-09-04 16:08   ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 13/15] target/cris: Remove the deprecated " Philippe Mathieu-Daudé
2024-09-04 16:13   ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 14/15] disas: Remove CRIS disassembler Philippe Mathieu-Daudé
2024-09-04 16:15   ` Thomas Huth
2024-09-05  1:30   ` Richard Henderson
2024-09-05 10:42     ` Philippe Mathieu-Daudé [this message]
2024-09-04 14:36 ` [PATCH v2 15/15] seccomp: Remove check for CRIS host Philippe Mathieu-Daudé
2024-09-04 16:18   ` Thomas Huth
2024-09-05  7:48   ` Paolo Bonzini
2024-09-05 10:43     ` Philippe Mathieu-Daudé
2024-09-05  1:31 ` [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Richard Henderson
2024-09-09 13:24 ` Philippe Mathieu-Daudé
2024-09-09 13:59   ` Edgar E. Iglesias
2024-09-09 14:14     ` Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c24f9c04-b794-4a67-9e99-4a6f0ed217d1@linaro.org \
    --to=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).