Re: [PATCH 2/3] target/mips: implement Octeon-specific BBIT instructions

2022-06-08 Thread Pavel Dovgalyuk
On 07.06.2022 20:06, Richard Henderson wrote: On 6/7/22 01:59, Pavel Dovgalyuk wrote: +# Branch on bit set or clear +# BBIT0  110010 . . +# BBIT032    110110 . . +# BBIT1  111010 . . +# BBIT132    10 . ...

Re: [PATCH 2/3] target/mips: implement Octeon-specific BBIT instructions

2022-06-07 Thread Richard Henderson
On 6/7/22 01:59, Pavel Dovgalyuk wrote: +# Branch on bit set or clear +# BBIT0 110010 . . +# BBIT032110110 . . +# BBIT1 111010 . . +# BBIT13210 . . + +BBIT 11 set:1 sh

[PATCH 2/3] target/mips: implement Octeon-specific BBIT instructions

2022-06-07 Thread Pavel Dovgalyuk
This patch introduces Octeon-specific decoder and implements check-bit-and-jump instructions. Signed-off-by: Pavel Dovgalyuk --- target/mips/tcg/meson.build|2 + target/mips/tcg/octeon.decode | 14 ++ target/mips/tcg/octeon_translate.c | 53 ++