Searched refs:ARITH_ADD (Results 1 – 4 of 4) sorted by relevance
/external/qemu/tcg/arm/ |
D | tcg-target.c | 285 ARITH_ADD = 0x4, enumerator 866 tcg_out_dat_reg(s, cond, ARITH_ADD, in tcg_out_goto() 894 tcg_out_dat_imm(s, cond, ARITH_ADD, TCG_REG_R14, TCG_REG_PC, 4); in tcg_out_call() 997 tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_R0, TCG_AREG0, in tcg_out_qemu_ld() 1007 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R0, TCG_REG_R0, in tcg_out_qemu_ld() 1126 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R8, addr_reg, in tcg_out_qemu_ld() 1217 tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_R0, in tcg_out_qemu_st() 1227 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R0, TCG_REG_R0, in tcg_out_qemu_st() 1353 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R13, TCG_REG_R13, 0x10); in tcg_out_qemu_st() 1366 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R1, addr_reg, in tcg_out_qemu_st() [all …]
|
/external/qemu/tcg/i386/ |
D | tcg-target.c | 247 #define OPC_ADD_GvEv (OPC_ARITH_GvEv | (ARITH_ADD << 3)) 288 #define ARITH_ADD 0 macro 658 if (!cf && (c == ARITH_ADD || c == ARITH_SUB) && (val == 1 || val == -1)) { in tgen_arithi() 659 int is_inc = (c == ARITH_ADD) ^ (val < 0); in tgen_arithi() 709 tgen_arithi(s, ARITH_ADD + P_REXW, reg, val, 0); in tcg_out_addi() 931 tgen_arithi(s, ARITH_ADD, args[0], 1, 0); in tcg_out_setcond2() 1245 tgen_arithr(s, ARITH_ADD + P_REXW, TCG_REG_RDI, base); in tcg_out_qemu_ld() 1422 tgen_arithr(s, ARITH_ADD + P_REXW, TCG_REG_RDI, base); in tcg_out_qemu_st() 1533 tgen_arithr(s, ARITH_ADD + rexw, a0, a1); in tcg_out_op() 1540 c = ARITH_ADD; in tcg_out_op() [all …]
|
/external/qemu/tcg/sparc/ |
D | tcg-target.c | 224 #define ARITH_ADD (INSN_OP(2) | INSN_OP3(0x00)) macro 431 tcg_out_arithi(s, reg, reg, val, ARITH_ADD); in tcg_out_addi() 434 tcg_out_arith(s, reg, reg, TCG_REG_I5, ARITH_ADD); in tcg_out_addi() 781 tcg_out_arith(s, arg1, TCG_AREG0, arg1, ARITH_ADD); in tcg_out_qemu_ld() 882 tcg_out_arith(s, arg0, arg0, arg1, ARITH_ADD); in tcg_out_qemu_ld() 885 tcg_out_arith(s, arg0, addr_reg, arg1, ARITH_ADD); in tcg_out_qemu_ld() 993 tcg_out_arith(s, arg1, TCG_AREG0, arg1, ARITH_ADD); in tcg_out_qemu_st() 1062 tcg_out_arith(s, arg0, arg0, arg1, ARITH_ADD); in tcg_out_qemu_st() 1065 tcg_out_arith(s, arg0, addr_reg, arg1, ARITH_ADD); in tcg_out_qemu_st() 1214 c = ARITH_ADD; in tcg_out_op()
|
/external/qemu/tcg/x86_64/ |
D | tcg-target.c | 187 #define ARITH_ADD 0 macro 414 if ((c == ARITH_ADD && val == 1) || (c == ARITH_SUB && val == -1)) { in tgen_arithi32() 417 } else if ((c == ARITH_ADD && val == -1) || (c == ARITH_SUB && val == 1)) { in tgen_arithi32() 437 if ((c == ARITH_ADD && val == 1) || (c == ARITH_SUB && val == -1)) { in tgen_arithi64() 440 } else if ((c == ARITH_ADD && val == -1) || (c == ARITH_SUB && val == 1)) { in tgen_arithi64() 463 tgen_arithi64(s, ARITH_ADD, reg, val); in tcg_out_addi() 1028 c = ARITH_ADD; in tcg_out_op() 1050 c = ARITH_ADD; in tcg_out_op()
|