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()
619 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
699 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
700 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
701 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
703 sljit_s32 args, i, tmp, offs; in sljit_emit_enter()
710 offs = -(sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
715 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
720 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
724 …SLJIT_ASSERT(offs == -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1… in sljit_emit_enter()
766 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
767 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
768 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
779 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
781 sljit_s32 i, tmp, offs; in sljit_emit_return()
801 offs = -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1); in sljit_emit_return()
806 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
812 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
986 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, in emit_op_mem()
987 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg) in emit_op_mem()
990 sljit_s32 offs_reg; in emit_op_mem()
1038 high_short = (sljit_s32)(argw + ((argw & 0x8000) << 1)) & ~0xffff; in emit_op_mem()
1061 static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 input_flags, in emit_op()
1062 sljit_s32 dst, sljit_sw dstw, in emit_op()
1063 sljit_s32 src1, sljit_sw src1w, in emit_op()
1064 sljit_s32 src2, sljit_sw src2w) in emit_op()
1069 sljit_s32 dst_r = TMP_REG2; in emit_op()
1070 sljit_s32 src1_r; in emit_op()
1071 sljit_s32 src2_r; in emit_op()
1072 sljit_s32 sugg_src2_r = TMP_REG2; in emit_op()
1073 …sljit_s32 flags = input_flags & (ALT_FORM1 | ALT_FORM2 | ALT_FORM3 | ALT_FORM4 | ALT_FORM5 | ALT_S… in emit_op()
1123 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1126 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1173 static sljit_s32 emit_prefetch(struct sljit_compiler *compiler, in emit_prefetch()
1174 sljit_s32 src, sljit_sw srcw) in emit_prefetch()
1201 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1202 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1203 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1205 sljit_s32 flags = HAS_FLAGS(op) ? ALT_SET_FLAGS : 0; in sljit_emit_op1()
1206 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1()
1260 return EMIT_MOV(SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, (sljit_s32)); in sljit_emit_op1()
1327 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1328 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1329 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1330 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1332 sljit_s32 flags = HAS_FLAGS(op) ? ALT_SET_FLAGS : 0; in sljit_emit_op2()
1353 src1w = (sljit_s32)(src1w); in sljit_emit_op2()
1355 src2w = (sljit_s32)(src2w); in sljit_emit_op2()
1539 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1540 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1568 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1574 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1580 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1581 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1611 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()
1612 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1613 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1672 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()
1673 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1674 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1678 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1682 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1711 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1712 sljit_s32 invert_sign = 1; in sljit_emit_fop1_conv_f64_from_sw()
1750 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1751 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1752 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1767 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1768 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1769 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1771 sljit_s32 dst_r; in sljit_emit_fop1()
1817 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1818 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1819 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1820 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1822 sljit_s32 dst_r; in sljit_emit_fop2()
1872 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_fast_enter()
1906 static sljit_ins get_bo_bi_flags(sljit_s32 type) in get_bo_bi_flags()
1969 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
2001 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_call()
2002 sljit_s32 arg_types) in sljit_emit_call()
2019 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2022 sljit_s32 src_r; in sljit_emit_ijump()
2063 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_icall()
2064 sljit_s32 arg_types, in sljit_emit_icall()
2065 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
2088 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2089 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2090 sljit_s32 type) in sljit_emit_op_flags()
2092 sljit_s32 reg, input_flags, cr_bit, invert; in sljit_emit_op_flags()
2093 sljit_s32 saved_op = op; in sljit_emit_op_flags()
2218 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2219 sljit_s32 dst_reg, in sljit_emit_cmov()
2220 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2228 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_mem()
2229 sljit_s32 reg, in sljit_emit_mem()
2230 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem()
2232 sljit_s32 mem_flags; in sljit_emit_mem()
2322 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_fmem()
2323 sljit_s32 freg, in sljit_emit_fmem()
2324 sljit_s32 mem, sljit_sw memw) in sljit_emit_fmem()
2326 sljit_s32 mem_flags; in sljit_emit_fmem()
2361 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2364 sljit_s32 dst_r; in sljit_emit_const()
2383 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2386 sljit_s32 dst_r; in sljit_emit_put_label()