• Home
  • Raw
  • Download

Lines Matching refs:src1w

1063 	sljit_s32 src1, sljit_sw src1w,  in emit_op()  argument
1090 FAIL_IF(load_immediate(compiler, TMP_REG1, src1w)); in emit_op()
1094 FAIL_IF(emit_op_mem(compiler, input_flags | LOAD_DATA, TMP_REG1, src1, src1w, TMP_REG1)); in emit_op()
1329 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2() argument
1335 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1337 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
1343 if ((src1 & SLJIT_IMM) && src1w == 0) in sljit_emit_op2()
1353 src1w = (sljit_s32)(src1w); in sljit_emit_op2()
1366 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM1, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1371 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1373 if (TEST_SL_IMM(src1, src1w)) { in sljit_emit_op2()
1374 compiler->imm = src1w & 0xffff; in sljit_emit_op2()
1379 …return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2 | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1381 if (TEST_SH_IMM(src1, src1w)) { in sljit_emit_op2()
1382 compiler->imm = (src1w >> 16) & 0xffff; in sljit_emit_op2()
1388 …return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2 | ALT_FORM4, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1390 if (TEST_ADD_IMM(src1, src1w)) { in sljit_emit_op2()
1391 compiler->imm = src1w & 0xffffffff; in sljit_emit_op2()
1398 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1400 if (TEST_SL_IMM(src1, src1w)) { in sljit_emit_op2()
1401 compiler->imm = src1w & 0xffff; in sljit_emit_op2()
1405 …TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY)) ? ALT_FORM4 : 0), dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1408 return emit_op(compiler, SLJIT_ADDC, flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1415 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1417 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1422 …mpiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM2 | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1424 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM3, dst, dstw, src1, src1w, src2, s… in sljit_emit_op2()
1428 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM2, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1433 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1435 if (TEST_SL_IMM(src1, src1w)) { in sljit_emit_op2()
1436 compiler->imm = src1w & 0xffff; in sljit_emit_op2()
1441 …return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2 | ALT_FORM3, dst, dstw, src1, src1w, TMP_RE… in sljit_emit_op2()
1446 …return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM2 | ALT_FORM4, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1453 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM4 | ALT_FORM5, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1455 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM4, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1460 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1463 …TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY)) ? ALT_FORM5 : 0), dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1466 return emit_op(compiler, SLJIT_SUBC, flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1476 return emit_op(compiler, SLJIT_MUL, flags | ALT_FORM1, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1478 if (TEST_SL_IMM(src1, src1w)) { in sljit_emit_op2()
1479 compiler->imm = src1w & 0xffff; in sljit_emit_op2()
1485 return emit_op(compiler, SLJIT_MUL, flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1494 … return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM1, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1496 if (TEST_UL_IMM(src1, src1w)) { in sljit_emit_op2()
1497 compiler->imm = src1w; in sljit_emit_op2()
1502 … return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1504 if (TEST_UH_IMM(src1, src1w)) { in sljit_emit_op2()
1505 compiler->imm = (src1w >> 16) & 0xffff; in sljit_emit_op2()
1513 … return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1515 if (TEST_UI_IMM(src1, src1w)) { in sljit_emit_op2()
1516 compiler->imm = src1w; in sljit_emit_op2()
1520 return emit_op(compiler, GET_OPCODE(op), flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1531 return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM1, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2()
1533 return emit_op(compiler, GET_OPCODE(op), flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1751 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
1755 FAIL_IF(emit_op_mem(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, TMP_REG1)); in sljit_emit_fop1_cmp()
1819 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
1825 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
1827 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
1833 FAIL_IF(emit_op_mem(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, TMP_REG1)); in sljit_emit_fop2()