Lines Matching refs:sljit_s32
250 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst()
259 static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_… in detect_jump_type()
352 sljit_s32 reg = *inst; in put_label_set()
618 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
698 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
699 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
700 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
702 sljit_s32 args, i, tmp, offs; in sljit_emit_enter()
709 offs = -(sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
714 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
719 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
723 …SLJIT_ASSERT(offs == -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1… in sljit_emit_enter()
765 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
766 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
767 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
778 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
780 sljit_s32 i, tmp, offs; in sljit_emit_return()
800 offs = -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1); in sljit_emit_return()
805 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
811 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
985 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, in emit_op_mem()
986 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg) in emit_op_mem()
989 sljit_s32 offs_reg; in emit_op_mem()
1037 high_short = (sljit_s32)(argw + ((argw & 0x8000) << 1)) & ~0xffff; in emit_op_mem()
1060 static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 input_flags, in emit_op()
1061 sljit_s32 dst, sljit_sw dstw, in emit_op()
1062 sljit_s32 src1, sljit_sw src1w, in emit_op()
1063 sljit_s32 src2, sljit_sw src2w) in emit_op()
1068 sljit_s32 dst_r = TMP_REG2; in emit_op()
1069 sljit_s32 src1_r; in emit_op()
1070 sljit_s32 src2_r; in emit_op()
1071 sljit_s32 sugg_src2_r = TMP_REG2; in emit_op()
1072 …sljit_s32 flags = input_flags & (ALT_FORM1 | ALT_FORM2 | ALT_FORM3 | ALT_FORM4 | ALT_FORM5 | ALT_S… in emit_op()
1122 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1125 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1172 static sljit_s32 emit_prefetch(struct sljit_compiler *compiler, in emit_prefetch()
1173 sljit_s32 src, sljit_sw srcw) in emit_prefetch()
1200 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1201 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1202 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1204 sljit_s32 flags = HAS_FLAGS(op) ? ALT_SET_FLAGS : 0; in sljit_emit_op1()
1205 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1()
1259 return EMIT_MOV(SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, (sljit_s32)); in sljit_emit_op1()
1326 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1327 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1328 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1329 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1331 sljit_s32 flags = HAS_FLAGS(op) ? ALT_SET_FLAGS : 0; in sljit_emit_op2()
1352 src1w = (sljit_s32)(src1w); in sljit_emit_op2()
1354 src2w = (sljit_s32)(src2w); in sljit_emit_op2()
1538 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1539 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1567 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1573 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1579 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1580 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1610 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()
1611 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1612 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1671 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()
1672 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1673 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1677 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1681 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1710 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1711 sljit_s32 invert_sign = 1; in sljit_emit_fop1_conv_f64_from_sw()
1749 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1750 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1751 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1766 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1767 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1768 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1770 sljit_s32 dst_r; in sljit_emit_fop1()
1816 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1817 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1818 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1819 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1821 sljit_s32 dst_r; in sljit_emit_fop2()
1871 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_fast_enter()
1905 static sljit_ins get_bo_bi_flags(sljit_s32 type) in get_bo_bi_flags()
1968 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
2000 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_call()
2001 sljit_s32 arg_types) in sljit_emit_call()
2018 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2021 sljit_s32 src_r; in sljit_emit_ijump()
2062 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_icall()
2063 sljit_s32 arg_types, in sljit_emit_icall()
2064 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
2087 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2088 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2089 sljit_s32 type) in sljit_emit_op_flags()
2091 sljit_s32 reg, input_flags, cr_bit, invert; in sljit_emit_op_flags()
2092 sljit_s32 saved_op = op; in sljit_emit_op_flags()
2217 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2218 sljit_s32 dst_reg, in sljit_emit_cmov()
2219 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2227 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_mem()
2228 sljit_s32 reg, in sljit_emit_mem()
2229 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem()
2231 sljit_s32 mem_flags; in sljit_emit_mem()
2321 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_fmem()
2322 sljit_s32 freg, in sljit_emit_fmem()
2323 sljit_s32 mem, sljit_sw memw) in sljit_emit_fmem()
2325 sljit_s32 mem_flags; in sljit_emit_fmem()
2360 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2363 sljit_s32 dst_r; in sljit_emit_const()
2382 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2385 sljit_s32 dst_r; in sljit_emit_put_label()