Re: [PATCH v4 11/17] target/m68k: Implement TPF in terms of TRAPcc

2022-05-25 Thread Laurent Vivier
Le 30/04/2022 à 19:53, Richard Henderson a écrit : TPF stands for "trap false", and is a long-form nop for ColdFire. Re-use the immediate consumption code from trapcc; the insn will already expand to a nop because of the TCG_COND_NEVER test within do_trapcc. Signed-off-by: Richard Henderson

Re: [PATCH v4 11/17] target/m68k: Implement TPF in terms of TRAPcc

2022-05-22 Thread Philippe Mathieu-Daudé via
On 30/4/22 19:53, Richard Henderson wrote: TPF stands for "trap false", and is a long-form nop for ColdFire. Re-use the immediate consumption code from trapcc; the insn will already expand to a nop because of the TCG_COND_NEVER test within do_trapcc. Signed-off-by: Richard Henderson ---

[PATCH v4 11/17] target/m68k: Implement TPF in terms of TRAPcc

2022-04-30 Thread Richard Henderson
TPF stands for "trap false", and is a long-form nop for ColdFire. Re-use the immediate consumption code from trapcc; the insn will already expand to a nop because of the TCG_COND_NEVER test within do_trapcc. Signed-off-by: Richard Henderson --- target/m68k/translate.c | 18 +- 1