Lines Matching refs:srcw

1062 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)  in sljit_emit_return()  argument
1068 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
1070 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
1168 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1174 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1176 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1194 srcw = (sljit_u8)srcw; in sljit_emit_op1()
1199 srcw = (sljit_s8)srcw; in sljit_emit_op1()
1204 srcw = (sljit_u16)srcw; in sljit_emit_op1()
1209 srcw = (sljit_s16)srcw; in sljit_emit_op1()
1214 srcw = (sljit_u32)srcw; in sljit_emit_op1()
1219 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1228 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw)); in sljit_emit_op1()
1232 FAIL_IF(emit_op_mem(compiler, mem_flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1251 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op1()
1318 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1321 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1322 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1329 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_LR, src, srcw, TMP_REG1)); in sljit_emit_op_src()
1351 return emit_op_mem(compiler, WORD_SIZE | SIGNED, op, src, srcw, TMP_REG1); in sljit_emit_op_src()
1433 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1442 emit_fop_mem(compiler, (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE, TMP_FREG1, src, srcw); in sljit_emit_fop1_conv_sw_from_f64()
1455 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1464 …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()
1469 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1471 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1504 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1512 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1518 …er, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x1) : mem_flags, dst_r, src, srcw); in sljit_emit_fop1()
1724 sljit_s32 src, sljit_sw srcw) in emit_cmp_to0() argument
1730 ADJUST_LOCAL_OFFSET(src, srcw); in emit_cmp_to0()
1738 …PTR_FAIL_IF(emit_op_mem(compiler, inv_bits ? INT_SIZE : WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in emit_cmp_to0()
1742 PTR_FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in emit_cmp_to0()
1758 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
1763 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
1764 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
1768 FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src, srcw, TMP_REG1)); in sljit_emit_ijump()
1778 jump->u.target = srcw; in sljit_emit_ijump()
1787 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
1790 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
1797 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
1850 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
1856 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
1860 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
1861 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_cmov()
1863 srcw = 0; in sljit_emit_cmov()