Home | History | Annotate | Download | only in sljit

Lines Matching refs:other_r

893 	sljit_si other_r, shift;
922 other_r = OFFS_REG(arg);
925 if (!argw && IS_3_LO_REGS(reg, arg, other_r))
926 FAIL_IF(push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(other_r)));
928 FAIL_IF(push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(other_r) | (argw << 4)));
1005 sljit_si tmp_r, other_r;
1019 other_r = OFFS_REG(arg);
1023 if (!other_r) {
1031 other_r = TMP_REG3;
1037 other_r = TMP_REG3;
1046 other_r = TMP_REG3;
1052 if (!argw && IS_3_LO_REGS(reg, arg, other_r)) {
1053 FAIL_IF(push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(other_r)));
1054 return push_inst16(compiler, ADD | SET_REGS44(arg, other_r));
1056 FAIL_IF(push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(other_r) | (argw << 4)));
1057 return push_inst32(compiler, ADD_W | RD4(arg) | RN4(arg) | RM4(other_r) | (argw << 6));