Lines Matching refs:srcw

744 	sljit_s32 src, sljit_sw srcw)  in sljit_emit_return_to()  argument
747 CHECK(check_sljit_emit_return_to(compiler, src, srcw)); in sljit_emit_return_to()
752 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_return_to()
754 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in sljit_emit_return_to()
756 srcw = 0; in sljit_emit_return_to()
762 return sljit_emit_ijump(compiler, SLJIT_JUMP, src, srcw); in sljit_emit_return_to()
902 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
905 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
910 ADJUST_LOCAL_OFFSET(src, srcw); in sljit_emit_icall()
911 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in sljit_emit_icall()
917 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in sljit_emit_icall()
931 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
958 static sljit_s32 emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw) in emit_fast_return() argument
982 inst = emit_x86_instruction(compiler, 1, 0, 0, src, srcw); in emit_fast_return()
1132 sljit_s32 src, sljit_sw srcw) in emit_mov_int() argument
1141 if (!sign || ((sljit_u32)srcw <= 0x7fffffff)) in emit_mov_int()
1142 …return emit_do_imm32(compiler, reg_map[dst] <= 7 ? 0 : REX_B, U8(MOV_r_i32 | reg_lmap[dst]), srcw); in emit_mov_int()
1144 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw); in emit_mov_int()
1150 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw); in emit_mov_int()
1163 inst = emit_x86_instruction(compiler, 1, dst_r, 0, src, srcw); in emit_mov_int()
1168 EMIT_MOV(compiler, dst_r, 0, src, srcw); in emit_mov_int()
1186 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_uw() argument
1197 EMIT_MOV(compiler, TMP_REG1, 0, src, srcw); in sljit_emit_fop1_conv_f64_from_uw()
1200 …_do_imm32(compiler, reg_map[TMP_REG1] <= 7 ? 0 : REX_B, U8(MOV_r_i32 | reg_lmap[TMP_REG1]), srcw)); in sljit_emit_fop1_conv_f64_from_uw()
1212 EMIT_MOV(compiler, TMP_REG1, 0, src, srcw); in sljit_emit_fop1_conv_f64_from_uw()