Lines Matching refs:srcw

641 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)  in sljit_emit_return()  argument
644 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
647 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
992 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
997 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
999 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1010 …eturn emit_op(compiler, SLJIT_MOV, flags | WORD_DATA | MOVE_OP, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1013 …ags | BYTE_DATA | MOVE_OP, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw); in sljit_emit_op1()
1016 …A | SIGNED_DATA | MOVE_OP, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw); in sljit_emit_op1()
1019 …gs | HALF_DATA | MOVE_OP, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw); in sljit_emit_op1()
1022 … | SIGNED_DATA | MOVE_OP, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw); in sljit_emit_op1()
1026 return emit_op(compiler, op, flags, dst, dstw, TMP_REG1, 0, src, srcw); in sljit_emit_op1()
1089 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
1092 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
1093 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
1100 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_LINK, src, srcw)); in sljit_emit_op_src()
1146 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
1149 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_sw_from_f64()
1166 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
1173 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1175 FAIL_IF(load_immediate(compiler, TMP_REG1, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
1177 srcw = 0; in sljit_emit_fop1_conv_f64_from_sw()
1183 srcw = FLOAT_TMP_MEM_OFFSET; in sljit_emit_fop1_conv_f64_from_sw()
1186 FAIL_IF(emit_op_mem2(compiler, SINGLE_DATA | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw)); in sljit_emit_fop1_conv_f64_from_sw()
1213 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
1222 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
1230 FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, dst_r, src, srcw, dst, dstw)); in sljit_emit_fop1()
1514 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
1520 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
1521 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
1529 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
1540 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_ijump()
1552 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
1555 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
1558 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
1559 FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, TMP_REG1, src, srcw)); in sljit_emit_icall()
1570 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
1621 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
1624 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
1627 return sljit_emit_cmov_generic(compiler, type, dst_reg, src, srcw);; in sljit_emit_cmov()