Lines Matching refs:srcw

982 		sljit_s32 src, sljit_sw srcw,  in load_word()  argument
990 FAIL_IF(make_addr_bxy(compiler, &addr, src, srcw, tmp1)); in load_word()
992 FAIL_IF(make_addr_bx(compiler, &addr, src, srcw, tmp1)); in load_word()
1028 sljit_s32 src, sljit_sw srcw) in emit_move() argument
1033 return push_load_imm_inst(compiler, dst_r, srcw); in emit_move()
1036 return load_word(compiler, dst_r, src, srcw, (compiler->mode & SLJIT_32) != 0); in emit_move()
1229 sljit_sw srcw) in emit_siy() argument
1257 …return push_inst(compiler, ins | ((sljit_ins)(srcw & 0xff) << 32) | R28A(dst_r) | disp_s20((sljit_… in emit_siy()
1866 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1() argument
1875 CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw)); in sljit_emit_op1()
1877 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op1()
1940 srcw = (sljit_sw)((sljit_u8)(srcw)); in sljit_emit_op1()
1943 srcw = (sljit_sw)((sljit_s8)(srcw)); in sljit_emit_op1()
1946 srcw = (sljit_sw)((sljit_u16)(srcw)); in sljit_emit_op1()
1949 srcw = (sljit_sw)((sljit_s16)(srcw)); in sljit_emit_op1()
1952 srcw = (sljit_sw)((sljit_u32)(srcw)); in sljit_emit_op1()
1956 srcw = (sljit_sw)((sljit_s32)(srcw)); in sljit_emit_op1()
1959 return push_load_imm_inst(compiler, gpr(dst), srcw); in sljit_emit_op1()
1967 FAIL_IF(make_addr_bxy(compiler, &mem, src, srcw, tmp1)); in sljit_emit_op1()
2021 FAIL_IF(push_load_imm_inst(compiler, reg, srcw)); in sljit_emit_op1()
2051 FAIL_IF(make_addr_bxy(compiler, &mem, src, srcw, tmp1)); in sljit_emit_op1()
2095 FAIL_IF(load_word(compiler, src_r, src, srcw, src & SLJIT_32)); in sljit_emit_op1()
2746 sljit_s32 op, sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src() argument
2751 CHECK(check_sljit_emit_op_src(compiler, op, src, srcw)); in sljit_emit_op_src()
2752 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_op_src()
2758 FAIL_IF(load_word(compiler, tmp1, src, srcw, 0)); in sljit_emit_op_src()
2841 sljit_s32 src, sljit_sw srcw) in emit_float() argument
2848 FAIL_IF(make_addr_bx(compiler, &addr, src, srcw, tmp1)); in emit_float()
2854 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64() argument
2860 FAIL_IF(float_mem(compiler, FLOAT_LOAD | (op & SLJIT_32), TMP_FREG1, src, srcw)); in sljit_emit_fop1_conv_sw_from_f64()
2880 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw() argument
2886 FAIL_IF(push_load_imm_inst(compiler, tmp0, srcw)); in sljit_emit_fop1_conv_f64_from_sw()
2890 FAIL_IF(load_word(compiler, tmp0, src, srcw, GET_OPCODE(op) >= SLJIT_CONV_F64_FROM_S32)); in sljit_emit_fop1_conv_f64_from_sw()
2931 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1() argument
2938 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw); in sljit_emit_fop1()
2943 …FAIL_IF(emit_float(compiler, 0xb3040000 /* ldebr */, 0xed0000000004 /* ldeb */, dst_r, src, srcw)); in sljit_emit_fop1()
2946 …m(compiler, FLOAT_LOAD | (op == SLJIT_CONV_F32_FROM_F64 ? 0 : (op & SLJIT_32)), dst_r, src, srcw)); in sljit_emit_fop1()
3136 …s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw) in sljit_emit_ijump() argument
3141 CHECK(check_sljit_emit_ijump(compiler, type, src, srcw)); in sljit_emit_ijump()
3144 SLJIT_ASSERT(!(srcw & 1)); /* target address must be even */ in sljit_emit_ijump()
3145 FAIL_IF(push_load_imm_inst(compiler, src_r, srcw)); in sljit_emit_ijump()
3148 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_ijump()
3149 FAIL_IF(load_word(compiler, src_r, src, srcw, 0 /* 64-bit */)); in sljit_emit_ijump()
3161 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
3164 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
3169 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
3170 FAIL_IF(load_word(compiler, tmp1, src, srcw, 0 /* 64-bit */)); in sljit_emit_icall()
3189 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
3264 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov() argument
3271 CHECK(check_sljit_emit_cmov(compiler, type, dst_reg, src, srcw)); in sljit_emit_cmov()
3275 FAIL_IF(push_load_imm_inst(compiler, src_r, srcw)); in sljit_emit_cmov()