Lines Matching refs:sljit_s32
144 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst()
153 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const()
384 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
442 sljit_s32 negated; in logical_imm()
451 if (len == 16 && ((sljit_s32)imm == 0 || (sljit_s32)imm == -1)) in logical_imm()
456 || (len == 16 && (sljit_s32)imm != 0 && (sljit_s32)imm != -1)); in logical_imm()
507 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw simm) in load_immediate()
609 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit… in emit_op_imm()
616 sljit_s32 op = (flags & 0xffff); in emit_op_imm()
617 sljit_s32 reg; in emit_op_imm()
632 reg = (sljit_s32)((flags & ARG2_IMM) ? arg1 : arg2); in emit_op_imm()
898 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, in emit_op_mem()
899 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg) in emit_op_mem()
970 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
971 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
972 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
974 sljit_s32 prev, fprev, saved_regs_size, i, tmp; in sljit_emit_enter()
975 sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options); in sljit_emit_enter()
1145 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
1146 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
1147 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
1149 sljit_s32 saved_regs_size; in sljit_set_context()
1162 static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 is_return_to) in emit_stack_frame_release()
1164 sljit_s32 local_size, prev, fprev, i, tmp; in emit_stack_frame_release()
1253 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return_void(struct sljit_compiler *compiler) in sljit_emit_return_void()
1263 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return_to(struct sljit_compiler *compiler, in sljit_emit_return_to()
1264 sljit_s32 src, sljit_sw srcw) in sljit_emit_return_to()
1290 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1325 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1326 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1327 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1329 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op1()
1330 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1()
1379 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1419 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1420 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1421 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1422 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1424 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op2()
1471 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2u()
1472 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2u()
1473 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2u()
1482 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_shift_into(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_shift_into()
1483 sljit_s32 src_dst, in sljit_emit_shift_into()
1484 sljit_s32 src1, sljit_sw src1w, in sljit_emit_shift_into()
1485 sljit_s32 src2, sljit_sw src2w) in sljit_emit_shift_into()
1488 sljit_s32 is_left; in sljit_emit_shift_into()
1556 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1557 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1596 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1602 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1608 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1622 static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, slji… in emit_fop_mem()
1671 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()
1672 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1673 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1675 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_fop1_conv_sw_from_f64()
1693 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()
1694 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1695 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1697 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1708 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1721 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1722 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1723 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1725 sljit_s32 mem_flags = (op & SLJIT_32) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1_cmp()
1741 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1742 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1743 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1745 sljit_s32 dst_r, mem_flags = (op & SLJIT_32) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1()
1786 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1787 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1788 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1789 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1791 sljit_s32 dst_r, mem_flags = (op & SLJIT_32) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop2()
1834 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_fast_enter()
1851 static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type) in get_cc()
1954 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
1980 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_call()
1981 sljit_s32 arg_types) in sljit_emit_call()
1996 static SLJIT_INLINE struct sljit_jump* emit_cmp_to0(struct sljit_compiler *compiler, sljit_s32 type, in emit_cmp_to0()
1997 sljit_s32 src, sljit_sw srcw) in emit_cmp_to0()
2031 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2058 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_icall()
2059 sljit_s32 arg_types, in sljit_emit_icall()
2060 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
2086 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2087 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2088 sljit_s32 type) in sljit_emit_op_flags()
2090 sljit_s32 dst_r, src_r, flags, mem_flags; in sljit_emit_op_flags()
2134 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2135 sljit_s32 dst_reg, in sljit_emit_cmov()
2136 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2146 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
2157 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_mem()
2158 sljit_s32 reg, in sljit_emit_mem()
2159 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem()
2228 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem_update(struct sljit_compiler *compiler, sljit_s32… in sljit_emit_mem_update()
2229 sljit_s32 reg, in sljit_emit_mem_update()
2230 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem_update()
2282 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem_update(struct sljit_compiler *compiler, sljit_s3… in sljit_emit_fmem_update()
2283 sljit_s32 freg, in sljit_emit_fmem_update()
2284 sljit_s32 mem, sljit_sw memw) in sljit_emit_fmem_update()
2311 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 … in sljit_get_local_base()
2313 sljit_s32 dst_reg; in sljit_get_local_base()
2351 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2354 sljit_s32 dst_r; in sljit_emit_const()
2372 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2375 sljit_s32 dst_r; in sljit_emit_put_label()