Lines Matching refs:sljit_s32

291 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)  in push_inst()
303 static SLJIT_INLINE sljit_ins invert_branch(sljit_s32 flags) in invert_branch()
475 sljit_s32 reg = *inst; in put_label_set()
674 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
744 static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s…
752 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
753 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
754 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
757 sljit_s32 args, i, tmp, offs; in sljit_emit_enter()
790 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
795 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
811 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
812 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
813 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
828 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
830 sljit_s32 local_size, i, tmp, offs; in sljit_emit_return()
848 …FAIL_IF(push_inst(compiler, STACK_LOAD | base | TA(RETURN_ADDR_REG) | IMM(local_size - (sljit_s32)… in sljit_emit_return()
849 offs = local_size - (sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1); in sljit_emit_return()
854 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
860 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
915 static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar… in getput_arg_fast()
933 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache()
956 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, slj… in getput_arg()
958 sljit_s32 tmp_ar, base, delay_slot; in getput_arg()
1044 static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s… in emit_op_mem()
1046 sljit_s32 tmp_ar, base, delay_slot; in emit_op_mem()
1081 …LJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg… in emit_op_mem2()
1088 static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, in emit_op()
1089 sljit_s32 dst, sljit_sw dstw, in emit_op()
1090 sljit_s32 src1, sljit_sw src1w, in emit_op()
1091 sljit_s32 src2, sljit_sw src2w) in emit_op()
1097 sljit_s32 dst_r = TMP_REG2; in emit_op()
1098 sljit_s32 src1_r; in emit_op()
1100 sljit_s32 sugg_src2_r = TMP_REG2; in emit_op()
1221 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1224 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1303 static sljit_s32 emit_prefetch(struct sljit_compiler *compiler, in emit_prefetch()
1304 sljit_s32 src, sljit_sw srcw) in emit_prefetch()
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()
1332 sljit_s32 flags = 0; in sljit_emit_op1()
1361 …, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s32)srcw : srcw); in sljit_emit_op1()
1395 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1396 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1397 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1398 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1403 sljit_s32 flags = 0; in sljit_emit_op2()
1419 src1w = (sljit_s32)src1w; in sljit_emit_op2()
1421 src2w = (sljit_s32)src2w; in sljit_emit_op2()
1470 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1471 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1502 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1508 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1514 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1515 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1530 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()
1531 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1532 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1537 sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONV_SW_FROM_F64) << 21; in sljit_emit_fop1_conv_sw_from_f64()
1558 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()
1559 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1560 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1565 sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_SW) << 21; in sljit_emit_fop1_conv_f64_from_sw()
1568 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1579 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1596 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1597 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1598 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1633 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1634 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1635 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1637 sljit_s32 dst_r; in sljit_emit_fop1()
1682 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1683 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1684 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1685 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1687 sljit_s32 dst_r, flags = 0; in sljit_emit_fop2()
1764 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 in sljit_emit_fast_enter()
1840 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
1844 sljit_s32 flags = 0; in sljit_emit_jump()
1845 sljit_s32 delay_check = UNMOVABLE_INS; in sljit_emit_jump()
1935 …I_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmp()
1936 sljit_s32 src1, sljit_sw src1w, in sljit_emit_cmp()
1937 sljit_s32 src2, sljit_sw src2w) in sljit_emit_cmp()
1940 sljit_s32 flags; in sljit_emit_cmp()
2065 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2097 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2098 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2099 sljit_s32 type) in sljit_emit_op_flags()
2101 sljit_s32 src_ar, dst_ar; in sljit_emit_op_flags()
2102 sljit_s32 saved_op = op; in sljit_emit_op_flags()
2104 sljit_s32 mem_type = WORD_DATA; in sljit_emit_op_flags()
2106 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
2191 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2192 sljit_s32 dst_reg, in sljit_emit_cmov()
2193 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2207 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
2262 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2265 sljit_s32 dst_r; in sljit_emit_const()
2284 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2287 sljit_s32 dst_r; in sljit_emit_put_label()