Lines Matching refs:sljit_s32
128 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst()
137 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const()
147 sljit_s32 dst = inst[0] & 0x1f; in modify_imm64_const()
155 static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_… in detect_jump_type()
218 sljit_s32 dst; in sljit_generate_code()
327 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
381 static sljit_ins logical_imm(sljit_sw imm, sljit_s32 len) in logical_imm()
383 sljit_s32 negated, ones, right; in logical_imm()
391 if (len == 16 && ((sljit_s32)imm == 0 || (sljit_s32)imm == -1)) in logical_imm()
396 || (len == 16 && (sljit_s32)imm != 0 && (sljit_s32)imm != -1)); in logical_imm()
445 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw simm) in load_immediate()
448 sljit_s32 i, zeros, ones, first; in load_immediate()
547 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit… in emit_op_imm()
554 sljit_s32 op = (flags & 0xffff); in emit_op_imm()
555 sljit_s32 reg; in emit_op_imm()
840 static sljit_s32 emit_set_delta(struct sljit_compiler *compiler, sljit_s32 dst, sljit_s32 reg, slji… in emit_set_delta()
859 static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, s… in getput_arg_fast()
920 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache()
944 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, in getput_arg()
945 sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in getput_arg()
948 sljit_s32 tmp_r, other_r; in getput_arg()
1070 static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s… in emit_op_mem()
1079 …LJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg… in emit_op_mem2()
1090 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
1091 sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
1092 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
1094 sljit_s32 i, tmp, offs, prev, saved_regs_size; in sljit_emit_enter()
1178 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
1179 sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
1180 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
1192 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
1194 sljit_s32 local_size; in sljit_emit_return()
1195 sljit_s32 i, tmp, offs, prev, saved_regs_size; in sljit_emit_return()
1273 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1305 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1306 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1307 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1309 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op1()
1310 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1()
1374 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1408 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1459 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1474 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1475 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1476 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1477 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1479 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op2()
1562 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1568 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1574 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1575 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1587 static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, slji… in emit_fop_mem()
1591 sljit_s32 other_r; in emit_fop_mem()
1640 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_sw_from_f64(struct sljit_compiler *compiler, slj… in sljit_emit_fop1_conv_sw_from_f64()
1641 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1642 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1644 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_fop1_conv_sw_from_f64()
1662 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_sw(struct sljit_compiler *compiler, slj… in sljit_emit_fop1_conv_f64_from_sw()
1663 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1664 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1666 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1678 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1691 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1692 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1693 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1695 sljit_s32 mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1_cmp()
1711 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1712 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1713 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1715 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1()
1758 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1759 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1760 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1761 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1763 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop2()
1809 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_fast_enter()
1822 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s3… in sljit_emit_fast_return()
1842 static sljit_uw get_cc(sljit_s32 type) in get_cc()
1913 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
1939 static SLJIT_INLINE struct sljit_jump* emit_cmp_to0(struct sljit_compiler *compiler, sljit_s32 type, in emit_cmp_to0()
1940 sljit_s32 src, sljit_sw srcw) in emit_cmp_to0()
1973 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2000 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2001 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2002 sljit_s32 type) in sljit_emit_op_flags()
2004 sljit_s32 dst_r, src_r, flags, mem_flags; in sljit_emit_op_flags()
2045 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2046 sljit_s32 dst_reg, in sljit_emit_cmov()
2047 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2057 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
2069 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2072 sljit_s32 dst_r; in sljit_emit_const()