Home
last modified time | relevance | path

Searched refs:gen_logic (Results 1 – 9 of 9) sorted by relevance

/openbmc/qemu/target/riscv/insn_trans/
H A Dtrans_xventanacondops.c.inc21 return gen_logic(ctx, a, gen_czero_eqz);
26 return gen_logic(ctx, a, gen_czero_nez);
H A Dtrans_rvzicond.c.inc47 return gen_logic(ctx, a, gen_czero_eqz);
54 return gen_logic(ctx, a, gen_czero_nez);
H A Dtrans_rvb.c.inc100 return gen_logic(ctx, a, tcg_gen_andc_tl);
106 return gen_logic(ctx, a, tcg_gen_orc_tl);
112 return gen_logic(ctx, a, tcg_gen_eqv_tl);
H A Dtrans_rvi.c.inc731 return gen_logic(ctx, a, tcg_gen_xor_tl);
736 return gen_logic(ctx, a, tcg_gen_or_tl);
741 return gen_logic(ctx, a, tcg_gen_and_tl);
/openbmc/qemu/target/mips/tcg/
H A Dmips16e_translate.c.inc989 gen_logic(ctx, OPC_XOR, 24, rx, ry);
995 gen_logic(ctx, OPC_AND, rx, rx, ry);
998 gen_logic(ctx, OPC_OR, rx, rx, ry);
1001 gen_logic(ctx, OPC_XOR, rx, rx, ry);
1004 gen_logic(ctx, OPC_NOR, rx, ry, 0);
H A Dmicromips_translate.c.inc740 gen_logic(ctx, OPC_NOR, rd, rs, 0);
746 gen_logic(ctx, OPC_XOR, rd, rd, rs);
752 gen_logic(ctx, OPC_AND, rd, rd, rs);
758 gen_logic(ctx, OPC_OR, rd, rd, rs);
875 gen_logic(ctx, OPC_NOR, rt, rs, 0);
878 gen_logic(ctx, OPC_AND, rt, rt, rs);
915 gen_logic(ctx, OPC_XOR, rt, rt, rs);
918 gen_logic(ctx, OPC_OR, rt, rt, rs);
1723 gen_logic(ctx, mips32_op, rd, rs, rt);
H A Dnanomips_translate.c.inc1235 gen_logic(ctx, OPC_NOR, rt, rs, 0);
1238 gen_logic(ctx, OPC_AND, rt, rt, rs);
1241 gen_logic(ctx, OPC_XOR, rt, rt, rs);
1244 gen_logic(ctx, OPC_OR, rt, rt, rs);
1315 gen_logic(ctx, OPC_AND, rd, rs, rt);
1318 gen_logic(ctx, OPC_OR, rd, rs, rt);
1321 gen_logic(ctx, OPC_NOR, rd, rs, rt);
1324 gen_logic(ctx, OPC_XOR, rd, rs, rt);
H A Dtranslate.c2730 static void gen_logic(DisasContext *ctx, uint32_t opc, in gen_logic() function
13273 gen_logic(ctx, op1, rd, rs, rt); in decode_opc_special()
/openbmc/qemu/target/riscv/
H A Dtranslate.c831 static bool gen_logic(DisasContext *ctx, arg_r *a, in gen_logic() function