• Home
  • Raw
  • Download

Lines Matching refs:sljit_s32

137 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)  in push_inst()
146 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const()
235 sljit_s32 dst; in sljit_generate_code()
377 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type) in sljit_has_cpu_feature()
431 static sljit_ins logical_imm(sljit_sw imm, sljit_s32 len) in logical_imm()
433 sljit_s32 negated, ones, right; in logical_imm()
441 if (len == 16 && ((sljit_s32)imm == 0 || (sljit_s32)imm == -1)) in logical_imm()
446 || (len == 16 && (sljit_s32)imm != 0 && (sljit_s32)imm != -1)); in logical_imm()
497 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw simm) in load_immediate()
500 sljit_s32 i, zeros, ones, first; in load_immediate()
599 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit… in emit_op_imm()
606 sljit_s32 op = (flags & 0xffff); in emit_op_imm()
607 sljit_s32 reg; in emit_op_imm()
852 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, in emit_op_mem()
853 sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg) in emit_op_mem()
909 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter()
910 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_emit_enter()
911 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter()
913 sljit_s32 args, i, tmp, offs, prev, saved_regs_size; in sljit_emit_enter()
1035 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, in sljit_set_context()
1036 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context()
1037 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context()
1039 sljit_s32 saved_regs_size; in sljit_set_context()
1053 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op,… in sljit_emit_return()
1055 sljit_s32 local_size; in sljit_emit_return()
1056 sljit_s32 i, tmp, offs, prev, saved_regs_size; in sljit_emit_return()
1122 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) in sljit_emit_op0()
1157 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op1()
1158 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op1()
1159 sljit_s32 src, sljit_sw srcw) in sljit_emit_op1()
1161 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op1()
1162 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1()
1210 srcw = (sljit_s32)srcw; in sljit_emit_op1()
1253 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op2()
1254 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op2()
1255 sljit_s32 src1, sljit_sw src1w, in sljit_emit_op2()
1256 sljit_s32 src2, sljit_sw src2w) in sljit_emit_op2()
1258 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op2()
1308 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_src(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_op_src()
1309 sljit_s32 src, sljit_sw srcw) in sljit_emit_op_src()
1348 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg) in sljit_get_register_index()
1354 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg) in sljit_get_float_register_index()
1360 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler, in sljit_emit_op_custom()
1361 void *instruction, sljit_s32 size) in sljit_emit_op_custom()
1373 static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, slji… in emit_fop_mem()
1422 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()
1423 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_sw_from_f64()
1424 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_sw_from_f64()
1426 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_fop1_conv_sw_from_f64()
1444 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()
1445 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1_conv_f64_from_sw()
1446 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1_conv_f64_from_sw()
1448 sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_conv_f64_from_sw()
1460 srcw = (sljit_s32)srcw; in sljit_emit_fop1_conv_f64_from_sw()
1473 static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1_cmp()
1474 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop1_cmp()
1475 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop1_cmp()
1477 sljit_s32 mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1_cmp()
1493 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop1()
1494 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop1()
1495 sljit_s32 src, sljit_sw srcw) in sljit_emit_fop1()
1497 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1()
1538 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, in sljit_emit_fop2()
1539 sljit_s32 dst, sljit_sw dstw, in sljit_emit_fop2()
1540 sljit_s32 src1, sljit_sw src1w, in sljit_emit_fop2()
1541 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2()
1543 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop2()
1586 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 in sljit_emit_fast_enter()
1603 static sljit_uw get_cc(sljit_s32 type) in get_cc()
1674 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type) in sljit_emit_jump()
1700 …_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_call()
1701 sljit_s32 arg_types) in sljit_emit_call()
1714 static SLJIT_INLINE struct sljit_jump* emit_cmp_to0(struct sljit_compiler *compiler, sljit_s32 type, in emit_cmp_to0()
1715 sljit_s32 src, sljit_sw srcw) in emit_cmp_to0()
1749 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type… in sljit_emit_ijump()
1776 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_icall()
1777 sljit_s32 arg_types, in sljit_emit_icall()
1778 sljit_s32 src, sljit_sw srcw) in sljit_emit_icall()
1791 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 o… in sljit_emit_op_flags()
1792 sljit_s32 dst, sljit_sw dstw, in sljit_emit_op_flags()
1793 sljit_s32 type) in sljit_emit_op_flags()
1795 sljit_s32 dst_r, src_r, flags, mem_flags; in sljit_emit_op_flags()
1839 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_cmov()
1840 sljit_s32 dst_reg, in sljit_emit_cmov()
1841 sljit_s32 src, sljit_sw srcw) in sljit_emit_cmov()
1851 srcw = (sljit_s32)srcw; in sljit_emit_cmov()
1863 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_mem()
1864 sljit_s32 reg, in sljit_emit_mem()
1865 sljit_s32 mem, sljit_sw memw) in sljit_emit_mem()
1913 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type, in sljit_emit_fmem()
1914 sljit_s32 freg, in sljit_emit_fmem()
1915 sljit_s32 mem, sljit_sw memw) in sljit_emit_fmem()
1942 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 in sljit_get_local_base()
1944 sljit_s32 dst_reg; in sljit_get_local_base()
1982 …E struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_const()
1985 sljit_s32 dst_r; in sljit_emit_const()
2003 … sljit_put_label* sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw ds… in sljit_emit_put_label()
2006 sljit_s32 dst_r; in sljit_emit_put_label()
2028 sljit_s32 dst; in sljit_set_jump_addr()