Re: [PATCH] target/m68k: Implement atomic test-and-set

2022-09-21 Thread Laurent Vivier
Le 29/08/2022 à 07:17, Richard Henderson a écrit : This is slightly more complicated than cas, because tas is allowed on data registers. Signed-off-by: Richard Henderson --- target/m68k/translate.c | 40 ++-- 1 file changed, 30 insertions(+), 10

Re: [PATCH] target/m68k: Implement atomic test-and-set

2022-09-14 Thread Laurent Vivier
Le 29/08/2022 à 07:17, Richard Henderson a écrit : This is slightly more complicated than cas, because tas is allowed on data registers. Signed-off-by: Richard Henderson --- target/m68k/translate.c | 40 ++-- 1 file changed, 30 insertions(+), 10

[PATCH] target/m68k: Implement atomic test-and-set

2022-08-28 Thread Richard Henderson
This is slightly more complicated than cas, because tas is allowed on data registers. Signed-off-by: Richard Henderson --- target/m68k/translate.c | 40 ++-- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/target/m68k/translate.c