From 241cbed4a992e31e718f56f831d7dd30fec5b55b Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Tue, 16 Feb 2010 14:10:13 -0800 Subject: tcg: Optional target implementation of ANDC. Previously ANDC was always implemented by tcg-op.h with an explicit NOT opcode. Allow a target implementation. Signed-off-by: Richard Henderson Signed-off-by: Blue Swirl --- tcg/tcg-opc.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tcg/tcg-opc.h') diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h index 89db3b49b..6d855a767 100644 --- a/tcg/tcg-opc.h +++ b/tcg/tcg-opc.h @@ -109,6 +109,9 @@ DEF2(not_i32, 1, 1, 0, 0) #ifdef TCG_TARGET_HAS_neg_i32 DEF2(neg_i32, 1, 1, 0, 0) #endif +#ifdef TCG_TARGET_HAS_andc_i32 +DEF2(andc_i32, 1, 2, 0, 0) +#endif #if TCG_TARGET_REG_BITS == 64 DEF2(mov_i64, 1, 1, 0, 0) @@ -185,6 +188,9 @@ DEF2(not_i64, 1, 1, 0, 0) #ifdef TCG_TARGET_HAS_neg_i64 DEF2(neg_i64, 1, 1, 0, 0) #endif +#ifdef TCG_TARGET_HAS_andc_i64 +DEF2(andc_i64, 1, 2, 0, 0) +#endif #endif /* QEMU specific */ -- cgit v1.2.3