Lines Matching refs:RD3

74 #define RD3(rd) ((sljit_ins)reg_map[rd])  macro
830 return push_inst16(compiler, ADDSI3 | IMM3(imm) | RD3(dst) | RN3(reg)); in emit_op_imm()
832 return push_inst16(compiler, SUBSI3 | IMM3(imm2) | RD3(dst) | RN3(reg)); in emit_op_imm()
868 return push_inst16(compiler, RSBSI | RD3(dst) | RN3(reg)); in emit_op_imm()
888 return push_inst16(compiler, SUBSI3 | IMM3(imm) | RD3(dst) | RN3(reg)); in emit_op_imm()
890 return push_inst16(compiler, ADDSI3 | IMM3(imm2) | RD3(dst) | RN3(reg)); in emit_op_imm()
941 return push_inst16(compiler, MVNS | RD3(dst) | RN3(reg)); in emit_op_imm()
964 return push_inst16(compiler, MOVS | RD3(dst) | RN3(reg)); in emit_op_imm()
972 return push_inst16(compiler, LSLSI | RD3(dst) | RN3(reg) | (imm << 6)); in emit_op_imm()
977 return push_inst16(compiler, LSRSI | RD3(dst) | RN3(reg) | (imm << 6)); in emit_op_imm()
982 return push_inst16(compiler, ASRSI | RD3(dst) | RN3(reg) | (imm << 6)); in emit_op_imm()
1022 return push_inst16(compiler, UXTB | RD3(dst) | RN3(arg2)); in emit_op_imm()
1027 return push_inst16(compiler, SXTB | RD3(dst) | RN3(arg2)); in emit_op_imm()
1032 return push_inst16(compiler, UXTH | RD3(dst) | RN3(arg2)); in emit_op_imm()
1037 return push_inst16(compiler, SXTH | RD3(dst) | RN3(arg2)); in emit_op_imm()
1051 return push_inst16(compiler, REV | RD3(dst) | RN3(arg2)); in emit_op_imm()
1058 FAIL_IF(push_inst16(compiler, REV16 | RD3(dst) | RN3(arg2))); in emit_op_imm()
1067 return push_inst16(compiler, (flags == SLJIT_REV_U16 ? UXTH : SXTH) | RD3(dst) | RN3(dst)); in emit_op_imm()
1072 return push_inst16(compiler, ADDS | RD3(dst) | RN3(arg1) | RM3(arg2)); in emit_op_imm()
1079 return push_inst16(compiler, ADCS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1085 return push_inst16(compiler, CMP | RD3(arg1) | RN3(arg2)); in emit_op_imm()
1089 return push_inst16(compiler, SUBS | RD3(dst) | RN3(arg1) | RM3(arg2)); in emit_op_imm()
1094 return push_inst16(compiler, SBCS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1106 return push_inst16(compiler, ANDS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1108 return push_inst16(compiler, TST | RD3(arg1) | RN3(arg2)); in emit_op_imm()
1112 return push_inst16(compiler, ORRS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1116 return push_inst16(compiler, EORS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1125 return push_inst16(compiler, LSLS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1134 return push_inst16(compiler, LSRS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1143 return push_inst16(compiler, ASRS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1152 return push_inst16(compiler, RORS | RD3(dst) | RN3(arg2)); in emit_op_imm()
1285 return push_inst16(compiler, sljit_mem16_imm5[flags] | RD3(reg) | RN3(tmp_reg)); in emit_op_mem()
1295 return push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(other_r)); in emit_op_mem()
1342 …return push_inst16(compiler, sljit_mem16_imm5[flags] | RD3(reg) | RN3(arg) | ((sljit_ins)argw << (… in emit_op_mem()
1358 return push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(tmp_reg)); in emit_op_mem()
2099 …FAIL_IF(push_inst16(compiler, (is_left ? LSLSI : LSRSI) | RD3(dst_reg) | RN3(src1_reg) | ((sljit_i… in sljit_emit_shift_into()
2118 FAIL_IF(push_inst16(compiler, (is_left ? LSLS : LSRS) | RD3(dst_reg) | RN3(src3))); in sljit_emit_shift_into()