On 5/17/22 09:47, Víctor Colombo wrote:
+static bool trans_ADDG6S(DisasContext *ctx, arg_X *a)
+{
+const uint64_t nibbles = 0x0f0f0f0f0f0f0f0fULL,
+ carry_bits = 0x1010101010101010ULL;
+TCGv t0, t1, t2;
+
+REQUIRE_INSNS_FLAGS2(ctx, BCDA_ISA206);
+
+t0 = tcg_temp_
From: Matheus Ferst
Implements the following Power ISA v2.06 instruction:
addg6s: Add and Generate Sixes
Signed-off-by: Matheus Ferst
Signed-off-by: Víctor Colombo
---
target/ppc/insn32.decode | 4 +++
target/ppc/translate/fixedpoint-impl.c.inc | 35 ++