/openbmc/qemu/target/riscv/insn_trans/ |
H A D | trans_xventanacondops.c.inc | 21 return gen_logic(ctx, a, gen_czero_eqz); 26 return gen_logic(ctx, a, gen_czero_nez);
|
H A D | trans_rvzicond.c.inc | 47 return gen_logic(ctx, a, gen_czero_eqz); 54 return gen_logic(ctx, a, gen_czero_nez);
|
H A D | trans_rvb.c.inc | 100 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 D | trans_rvi.c.inc | 731 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 D | mips16e_translate.c.inc | 989 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 D | micromips_translate.c.inc | 740 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 D | nanomips_translate.c.inc | 1235 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 D | translate.c | 2730 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 D | translate.c | 831 static bool gen_logic(DisasContext *ctx, arg_r *a, in gen_logic() function
|