Lines Matching refs:srcw

1244 	sljit_s32 src, sljit_sw srcw)  in sljit_emit_op1()  argument
1250 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1252 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1270 srcw = (sljit_u8)srcw; in sljit_emit_op1()
1275 srcw = (sljit_s8)srcw; in sljit_emit_op1()
1280 srcw = (sljit_u16)srcw; in sljit_emit_op1()
1285 srcw = (sljit_s16)srcw; in sljit_emit_op1()
1290 srcw = (sljit_u32)srcw; in sljit_emit_op1()
1296 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1305 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw)); in sljit_emit_op1()
1309 FAIL_IF(emit_op_mem(compiler, mem_flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1325 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op1()
1403 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1406 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1407 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1414 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_LR, src, srcw, TMP_REG1)); in sljit_emit_op_src()
1436 return emit_op_mem(compiler, WORD_SIZE | SIGNED, op, src, srcw, TMP_REG1); in sljit_emit_op_src()
1519 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1528 emit_fop_mem(compiler, (op & SLJIT_32) ? INT_SIZE : WORD_SIZE, TMP_FREG1, src, srcw); in sljit_emit_fop1_conv_sw_from_f64()
1541 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1550 …GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32) ? INT_SIZE : WORD_SIZE), TMP_REG1, src, srcw, TMP_REG1); in sljit_emit_fop1_conv_f64_from_sw()
1555 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1557 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1590 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1598 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1604 …er, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x1) : mem_flags, dst_r, src, srcw); in sljit_emit_fop1()
1832 sljit_s32 src, sljit_sw srcw) in emit_cmp_to0() argument
1838 ADJUST_LOCAL_OFFSET(src, srcw); in emit_cmp_to0()
1846 …PTR_FAIL_IF(emit_op_mem(compiler, inv_bits ? INT_SIZE : WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in emit_cmp_to0()
1850 PTR_FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in emit_cmp_to0()
1866 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
1871 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
1872 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
1876 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_ijump()
1886 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
1895 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
1899 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
1900 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
1903 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_icall()
1922 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
1975 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
1981 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
1985 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
1986 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_cmov()
1988 srcw = 0; in sljit_emit_cmov()