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()
673 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
743 static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s…
751 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
752 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
753 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
756 sljit_s32 args, i, tmp, offs; in sljit_emit_enter()
789 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
794 offs -= (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_enter()
810 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
811 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
812 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
827 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
829 sljit_s32 local_size, i, tmp, offs; in sljit_emit_return()
847 …FAIL_IF(push_inst(compiler, STACK_LOAD | base | TA(RETURN_ADDR_REG) | IMM(local_size - (sljit_s32)… in sljit_emit_return()
848 offs = local_size - (sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1); in sljit_emit_return()
853 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
859 offs += (sljit_s32)(sizeof(sljit_sw)); in sljit_emit_return()
914 static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar… in getput_arg_fast()
932 static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw) in can_cache()
955 static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, slj… in getput_arg()
957 sljit_s32 tmp_ar, base, delay_slot; in getput_arg()
1043 static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s… in emit_op_mem()
1045 sljit_s32 tmp_ar, base, delay_slot; in emit_op_mem()
1080 …LJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg… in emit_op_mem2()
1087 static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, in emit_op()
1088 sljit_s32 dst, sljit_sw dstw, in emit_op()
1089 sljit_s32 src1, sljit_sw src1w, in emit_op()
1090 sljit_s32 src2, sljit_sw src2w) in emit_op()
1096 sljit_s32 dst_r = TMP_REG2; in emit_op()
1097 sljit_s32 src1_r; in emit_op()
1099 sljit_s32 sugg_src2_r = TMP_REG2; in emit_op()
1220 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1223 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1302 static sljit_s32 emit_prefetch(struct sljit_compiler *compiler, in emit_prefetch()
1303 sljit_s32 src, sljit_sw srcw) in emit_prefetch()
1324 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1325 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1326 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1331 sljit_s32 flags = 0; in sljit_emit_op1()
1360 …, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s32)srcw : srcw); in sljit_emit_op1()
1393 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1394 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1395 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1396 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1401 sljit_s32 flags = 0; in sljit_emit_op2()
1417 src1w = (sljit_s32)src1w; in sljit_emit_op2()
1419 src2w = (sljit_s32)src2w; in sljit_emit_op2()
1465 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1466 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1497 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1503 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1509 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1510 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1525 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()
1526 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1527 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1532 sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONV_SW_FROM_F64) << 21; in sljit_emit_fop1_conv_sw_from_f64()
1553 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()
1554 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1555 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1560 sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_SW) << 21; in sljit_emit_fop1_conv_f64_from_sw()
1563 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1574 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1591 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1592 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1593 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1628 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1629 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1630 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1632 sljit_s32 dst_r; in sljit_emit_fop1()
1677 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1678 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1679 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1680 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1682 sljit_s32 dst_r, flags = 0; in sljit_emit_fop2()
1759 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 in sljit_emit_fast_enter()
1835 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
1839 sljit_s32 flags = 0; in sljit_emit_jump()
1840 sljit_s32 delay_check = UNMOVABLE_INS; in sljit_emit_jump()
1932 …I_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmp()
1933 sljit_s32 src1, sljit_sw src1w, in sljit_emit_cmp()
1934 sljit_s32 src2, sljit_sw src2w) in sljit_emit_cmp()
1937 sljit_s32 flags; in sljit_emit_cmp()
2062 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
2094 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
2095 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
2096 sljit_s32 type) in sljit_emit_op_flags()
2098 sljit_s32 src_ar, dst_ar; in sljit_emit_op_flags()
2099 sljit_s32 saved_op = op; in sljit_emit_op_flags()
2101 sljit_s32 mem_type = WORD_DATA; in sljit_emit_op_flags()
2103 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
2184 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
2185 sljit_s32 dst_reg, in sljit_emit_cmov()
2186 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
2200 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
2257 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
2260 sljit_s32 dst_r; in sljit_emit_const()
2279 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2282 sljit_s32 dst_r; in sljit_emit_put_label()