Re: [PATCH] target/mips: Remove XBurst Media eXtension Unit dead code

2021-02-17 Thread Richard Henderson
On 2/17/21 10:58 AM, Philippe Mathieu-Daudé wrote: > All these unimplemented MXU opcodes end up calling > gen_reserved_instruction() which is the default switch > case in decode_opc_mxu(). > > The translate.c file is already big enough and hard to maintain, > remove 1k+ lines of unnecessary code a

[PATCH] target/mips: Remove XBurst Media eXtension Unit dead code

2021-02-17 Thread Philippe Mathieu-Daudé
All these unimplemented MXU opcodes end up calling gen_reserved_instruction() which is the default switch case in decode_opc_mxu(). The translate.c file is already big enough and hard to maintain, remove 1k+ lines of unnecessary code and /* TODO */ comments. Signed-off-by: Philippe Mathieu-Daudé