Lines Matching refs:src1w

2002 	sljit_s32 src1, sljit_sw src1w,  in sljit_emit_op2()  argument
2008 CHECK(check_sljit_emit_op2(compiler, op, 0, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
2010 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_op2()
2031 emit_op_mem(compiler, WORD_SIZE, TMP_REG1, src1, src1w, TMP_REG1); in sljit_emit_op2()
2032 src1w = TMP_REG1; in sljit_emit_op2()
2034 src1w = src1; in sljit_emit_op2()
2036 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_reg, (sljit_uw)src1w, (sljit_uw)src2w); in sljit_emit_op2()
2044 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u() argument
2048 CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w)); in sljit_emit_op2u()
2051 return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w); in sljit_emit_op2u()
2056 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2r() argument
2060 CHECK(check_sljit_emit_op2r(compiler, op, dst_reg, src1, src1w, src2, src2w)); in sljit_emit_op2r()
2065 return sljit_emit_op2(compiler, op, dst_reg, 0, src1, src1w, src2, src2w); in sljit_emit_op2r()
2336 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp() argument
2342 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w)); in sljit_emit_fop1_cmp()
2410 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2() argument
2416 CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_fop2()
2418 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fop2()
2425 FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_32) | FPU_LOAD, TMP_FREG1, src1, src1w)); in sljit_emit_fop2()
3109 sljit_s32 src1, sljit_sw src1w, in sljit_emit_select() argument
3115 CHECK(check_sljit_emit_select(compiler, type, dst_reg, src1, src1w, src2_reg)); in sljit_emit_select()
3117 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_select()
3121 src1w = 0; in sljit_emit_select()
3127 …FAIL_IF(emit_op_mem(compiler, WORD_SIZE, (src2_reg != dst_reg) ? dst_reg : TMP_REG1, src1, src1w, … in sljit_emit_select()
3131 src1w = 0; in sljit_emit_select()
3135 src1w = 0; in sljit_emit_select()
3147 tmp = (sljit_uw)src1w; in sljit_emit_select()
3156 tmp = get_imm((sljit_uw)src1w); in sljit_emit_select()
3162 tmp = get_imm(~(sljit_uw)src1w); in sljit_emit_select()
3170 tmp = (sljit_uw)src1w; in sljit_emit_select()
3179 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fselect() argument
3183 CHECK(check_sljit_emit_fselect(compiler, type, dst_freg, src1, src1w, src2_freg)); in sljit_emit_fselect()
3185 ADJUST_LOCAL_OFFSET(src1, src1w); in sljit_emit_fselect()
3192 src1w = 0; in sljit_emit_fselect()
3199 FAIL_IF(emit_fop_mem(compiler, (type & SLJIT_32) | FPU_LOAD, TMP_FREG2, src1, src1w)); in sljit_emit_fselect()