Lines Matching refs:srcw
303 …_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw) in sljit_emit_return() argument
309 CHECK(check_sljit_emit_return(compiler, op, src, srcw)); in sljit_emit_return()
311 FAIL_IF(emit_mov_before_return(compiler, op, src, srcw)); in sljit_emit_return()
612 …_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src_ptr, sljit_sw srcw) in call_with_args() argument
634 ADJUST_LOCAL_OFFSET(src, srcw); in call_with_args()
635 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in call_with_args()
648 …_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src_ptr, sljit_sw srcw) in call_with_args() argument
697 ADJUST_LOCAL_OFFSET(src, srcw); in call_with_args()
698 EMIT_MOV(compiler, TMP_REG2, 0, src, srcw); in call_with_args()
750 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall() argument
753 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
755 FAIL_IF(call_with_args(compiler, arg_types, &src, srcw)); in sljit_emit_icall()
762 return sljit_emit_ijump(compiler, type, src, srcw); in sljit_emit_icall()
802 static sljit_s32 emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw) in emit_fast_return() argument
826 inst = emit_x86_instruction(compiler, 1, 0, 0, src, srcw); in emit_fast_return()
846 sljit_s32 src, sljit_sw srcw) in emit_mov_int() argument
858 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int()
859 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw); in emit_mov_int()
864 return emit_load_imm64(compiler, dst, srcw); in emit_mov_int()
867 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw); in emit_mov_int()
880 inst = emit_x86_instruction(compiler, 1, dst_r, 0, src, srcw); in emit_mov_int()
885 FAIL_IF(emit_mov(compiler, dst_r, 0, src, srcw)); in emit_mov_int()