From f24cb33e5ed11a2888fc1de2948897f5c46f4684 Mon Sep 17 00:00:00 2001 From: aurel32 Date: Tue, 21 Oct 2008 11:28:59 +0000 Subject: TCG: add logical operations found on alpha and powerpc processors - andc_i32/i64 t0, t1, t2 - eqv_i32/i64 t0, t1, t2 - nand_i32/i64 t0, t1, t2 - nor_i32/i64 t0, t1, t2 - orc_i32/i64 t0, t1, t2 Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5501 c046a42c-6fe2-441c-8c8c-71466251a162 --- tcg/README | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'tcg/README') diff --git a/tcg/README b/tcg/README index 2eeb669..3efef60 100644 --- a/tcg/README +++ b/tcg/README @@ -205,6 +205,26 @@ t0=t1^t2 t0=~t1 +* andc_i32/i64 t0, t1, t2 + +t0=t1&~t2 + +* eqv_i32/i64 t0, t1, t2 + +t0=~(t1^t2) + +* nand_i32/i64 t0, t1, t2 + +t0=~(t1&t2) + +* nor_i32/i64 t0, t1, t2 + +t0=~(t1|t2) + +* orc_i32/i64 t0, t1, t2 + +t0=t1|~t2 + ********* Shifts * shl_i32/i64 t0, t1, t2 -- cgit v1.1