Searched refs:compiler (Results 1 - 25 of 1394) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/scripts/
H A Dgcc-version.sh9 compiler="$*"
11 MAJ_MIN=$(echo __GNUC__ __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/scripts/
H A Dgcc-version.sh9 compiler="$*"
11 MAJ_MIN=$(echo __GNUC__ __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/scripts/
H A Dgcc-version.sh9 compiler="$*"
11 MAJ_MIN=$(echo __GNUC__ __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pcre-8.31/sljit/
H A DsljitNativePPC_32.c2 * Stack-less Just-In-Time compiler
29 static int load_immediate(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm));
35 return push_inst(compiler, ORI | S(ZERO_REG) | A(reg) | IMM(imm));
37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS;
44 static SLJIT_INLINE int emit_single_op(struct sljit_compiler *compiler, int op, int flags, argument
52 return push_inst(compiler, ADDI | D(dst) | A(src1) | compiler->imm);
57 return push_inst(compiler, ADDI
240 emit_const(struct sljit_compiler *compiler, int reg, sljit_w init_value) argument
[all...]
H A DsljitLir.c2 * Stack-less Just-In-Time compiler
31 if (SLJIT_UNLIKELY(compiler->error)) \
32 return compiler->error; \
37 if (SLJIT_UNLIKELY(compiler->error)) \
43 if (SLJIT_UNLIKELY(compiler->error)) \
50 return compiler->error; \
62 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
78 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
201 (i) += compiler
243 struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compiler)); local
308 sljit_free_compiler(struct sljit_compiler *compiler) argument
377 ensure_buf(struct sljit_compiler *compiler, int size) argument
395 ensure_abuf(struct sljit_compiler *compiler, int size) argument
413 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
429 reverse_buf(struct sljit_compiler *compiler) argument
445 set_label(struct sljit_label *label, struct sljit_compiler *compiler) argument
456 set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, int flags) argument
467 set_const(struct sljit_const *const_, struct sljit_compiler *compiler) argument
591 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
701 check_sljit_generate_code(struct sljit_compiler *compiler) argument
720 check_sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
740 check_sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
767 check_sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
796 check_sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
815 check_sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
834 check_sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
848 check_sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
886 check_sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
935 check_sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
944 check_sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
982 check_sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1018 check_sljit_emit_label(struct sljit_compiler *compiler) argument
1029 check_sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1050 check_sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1078 check_sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1107 check_sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1128 check_sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1153 check_sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1172 check_sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
1192 emit_mov_before_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1258 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1325 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1354 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1385 sljit_free_compiler(struct sljit_compiler *compiler) argument
1391 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
1400 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
1408 sljit_generate_code(struct sljit_compiler *compiler) argument
1421 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1432 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1442 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1452 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw, int args, int temporaries, int saveds, int local_size) argument
1465 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1474 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1482 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1496 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1519 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1535 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1549 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1566 sljit_emit_label(struct sljit_compiler *compiler) argument
1573 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1581 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1595 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1623 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1633 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1644 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1654 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w initval) argument
[all...]
H A DsljitNativeARM_Thumb2.c2 * Stack-less Just-In-Time compiler
179 static int push_inst16(struct sljit_compiler *compiler, sljit_ins inst) argument
184 ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_uh));
187 compiler->size++;
191 static int push_inst32(struct sljit_compiler *compiler, sljit_ins inst) argument
193 sljit_uh *ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_ins));
197 compiler->size += 2;
201 static SLJIT_INLINE int emit_imm32_const(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
203 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) |
205 return push_inst32(compiler, MOV
346 sljit_generate_code(struct sljit_compiler *compiler) argument
477 load_immediate(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
512 emit_op_imm(struct sljit_compiler *compiler, int flags, int dst, sljit_uw arg1, sljit_uw arg2) argument
888 emit_set_delta(struct sljit_compiler *compiler, int dst, int reg, sljit_w value) argument
909 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1016 getput_arg(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
1115 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1124 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1178 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1198 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1252 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1296 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1425 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1513 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1534 emit_fop_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1584 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1633 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1680 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1700 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1781 sljit_emit_label(struct sljit_compiler *compiler) argument
1797 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1830 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1860 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1908 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
H A DsljitNativeMIPS_common.c2 * Stack-less Just-In-Time compiler
181 static int push_inst(struct sljit_compiler *compiler, sljit_ins ins, int delay_slot) argument
183 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
186 compiler->size++;
187 compiler->delay_slot = delay_slot;
292 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) argument
307 check_sljit_generate_code(compiler);
308 reverse_buf(compiler);
310 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins));
312 buf = compiler
457 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
509 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
524 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
602 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
643 getput_arg(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
777 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
786 emit_op(struct sljit_compiler *compiler, int op, int flags, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
916 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
946 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1020 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1077 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1105 emit_fpu_data_transfer(struct sljit_compiler *compiler, int fpu_reg, int load, int arg, sljit_w argw) argument
1143 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1212 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1265 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1278 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1299 sljit_emit_label(struct sljit_compiler *compiler) argument
1342 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1458 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1585 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1666 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1724 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1811 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pcre-8.31/sljit/
H A DsljitNativePPC_32.c2 * Stack-less Just-In-Time compiler
29 static int load_immediate(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm));
35 return push_inst(compiler, ORI | S(ZERO_REG) | A(reg) | IMM(imm));
37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS;
44 static SLJIT_INLINE int emit_single_op(struct sljit_compiler *compiler, int op, int flags, argument
52 return push_inst(compiler, ADDI | D(dst) | A(src1) | compiler->imm);
57 return push_inst(compiler, ADDI
240 emit_const(struct sljit_compiler *compiler, int reg, sljit_w init_value) argument
[all...]
H A DsljitLir.c2 * Stack-less Just-In-Time compiler
31 if (SLJIT_UNLIKELY(compiler->error)) \
32 return compiler->error; \
37 if (SLJIT_UNLIKELY(compiler->error)) \
43 if (SLJIT_UNLIKELY(compiler->error)) \
50 return compiler->error; \
62 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
78 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
201 (i) += compiler
243 struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compiler)); local
308 sljit_free_compiler(struct sljit_compiler *compiler) argument
377 ensure_buf(struct sljit_compiler *compiler, int size) argument
395 ensure_abuf(struct sljit_compiler *compiler, int size) argument
413 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
429 reverse_buf(struct sljit_compiler *compiler) argument
445 set_label(struct sljit_label *label, struct sljit_compiler *compiler) argument
456 set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, int flags) argument
467 set_const(struct sljit_const *const_, struct sljit_compiler *compiler) argument
591 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
701 check_sljit_generate_code(struct sljit_compiler *compiler) argument
720 check_sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
740 check_sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
767 check_sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
796 check_sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
815 check_sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
834 check_sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
848 check_sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
886 check_sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
935 check_sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
944 check_sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
982 check_sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1018 check_sljit_emit_label(struct sljit_compiler *compiler) argument
1029 check_sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1050 check_sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1078 check_sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1107 check_sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1128 check_sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1153 check_sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1172 check_sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
1192 emit_mov_before_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1258 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1325 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1354 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1385 sljit_free_compiler(struct sljit_compiler *compiler) argument
1391 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
1400 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
1408 sljit_generate_code(struct sljit_compiler *compiler) argument
1421 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1432 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1442 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1452 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw, int args, int temporaries, int saveds, int local_size) argument
1465 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1474 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1482 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1496 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1519 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1535 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1549 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1566 sljit_emit_label(struct sljit_compiler *compiler) argument
1573 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1581 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1595 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1623 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1633 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1644 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1654 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w initval) argument
[all...]
H A DsljitNativeARM_Thumb2.c2 * Stack-less Just-In-Time compiler
179 static int push_inst16(struct sljit_compiler *compiler, sljit_ins inst) argument
184 ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_uh));
187 compiler->size++;
191 static int push_inst32(struct sljit_compiler *compiler, sljit_ins inst) argument
193 sljit_uh *ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_ins));
197 compiler->size += 2;
201 static SLJIT_INLINE int emit_imm32_const(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
203 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) |
205 return push_inst32(compiler, MOV
346 sljit_generate_code(struct sljit_compiler *compiler) argument
477 load_immediate(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
512 emit_op_imm(struct sljit_compiler *compiler, int flags, int dst, sljit_uw arg1, sljit_uw arg2) argument
888 emit_set_delta(struct sljit_compiler *compiler, int dst, int reg, sljit_w value) argument
909 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1016 getput_arg(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
1115 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1124 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1178 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1198 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1252 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1296 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1425 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1513 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1534 emit_fop_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1584 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1633 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1680 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1700 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1781 sljit_emit_label(struct sljit_compiler *compiler) argument
1797 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1830 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1860 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1908 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
H A DsljitNativeMIPS_common.c2 * Stack-less Just-In-Time compiler
181 static int push_inst(struct sljit_compiler *compiler, sljit_ins ins, int delay_slot) argument
183 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
186 compiler->size++;
187 compiler->delay_slot = delay_slot;
292 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) argument
307 check_sljit_generate_code(compiler);
308 reverse_buf(compiler);
310 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins));
312 buf = compiler
457 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
509 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
524 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
602 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
643 getput_arg(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
777 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
786 emit_op(struct sljit_compiler *compiler, int op, int flags, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
916 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
946 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1020 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1077 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1105 emit_fpu_data_transfer(struct sljit_compiler *compiler, int fpu_reg, int load, int arg, sljit_w argw) argument
1143 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1212 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1265 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1278 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1299 sljit_emit_label(struct sljit_compiler *compiler) argument
1342 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1458 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1585 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1666 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1724 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1811 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pcre-8.31/sljit/
H A DsljitNativePPC_32.c2 * Stack-less Just-In-Time compiler
29 static int load_immediate(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm));
35 return push_inst(compiler, ORI | S(ZERO_REG) | A(reg) | IMM(imm));
37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS;
44 static SLJIT_INLINE int emit_single_op(struct sljit_compiler *compiler, int op, int flags, argument
52 return push_inst(compiler, ADDI | D(dst) | A(src1) | compiler->imm);
57 return push_inst(compiler, ADDI
240 emit_const(struct sljit_compiler *compiler, int reg, sljit_w init_value) argument
[all...]
H A DsljitLir.c2 * Stack-less Just-In-Time compiler
31 if (SLJIT_UNLIKELY(compiler->error)) \
32 return compiler->error; \
37 if (SLJIT_UNLIKELY(compiler->error)) \
43 if (SLJIT_UNLIKELY(compiler->error)) \
50 return compiler->error; \
62 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
78 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
201 (i) += compiler
243 struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compiler)); local
308 sljit_free_compiler(struct sljit_compiler *compiler) argument
377 ensure_buf(struct sljit_compiler *compiler, int size) argument
395 ensure_abuf(struct sljit_compiler *compiler, int size) argument
413 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
429 reverse_buf(struct sljit_compiler *compiler) argument
445 set_label(struct sljit_label *label, struct sljit_compiler *compiler) argument
456 set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, int flags) argument
467 set_const(struct sljit_const *const_, struct sljit_compiler *compiler) argument
591 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
701 check_sljit_generate_code(struct sljit_compiler *compiler) argument
720 check_sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
740 check_sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
767 check_sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
796 check_sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
815 check_sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
834 check_sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
848 check_sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
886 check_sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
935 check_sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
944 check_sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
982 check_sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1018 check_sljit_emit_label(struct sljit_compiler *compiler) argument
1029 check_sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1050 check_sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1078 check_sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1107 check_sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1128 check_sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1153 check_sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1172 check_sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
1192 emit_mov_before_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1258 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1325 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1354 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1385 sljit_free_compiler(struct sljit_compiler *compiler) argument
1391 sljit_alloc_memory(struct sljit_compiler *compiler, int size) argument
1400 sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose) argument
1408 sljit_generate_code(struct sljit_compiler *compiler) argument
1421 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1432 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1442 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1452 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw, int args, int temporaries, int saveds, int local_size) argument
1465 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1474 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1482 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1496 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1519 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1535 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1549 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1566 sljit_emit_label(struct sljit_compiler *compiler) argument
1573 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1581 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1595 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1623 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1633 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1644 sljit_get_local_base(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w offset) argument
1654 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w initval) argument
[all...]
H A DsljitNativeARM_Thumb2.c2 * Stack-less Just-In-Time compiler
179 static int push_inst16(struct sljit_compiler *compiler, sljit_ins inst) argument
184 ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_uh));
187 compiler->size++;
191 static int push_inst32(struct sljit_compiler *compiler, sljit_ins inst) argument
193 sljit_uh *ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_ins));
197 compiler->size += 2;
201 static SLJIT_INLINE int emit_imm32_const(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
203 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) |
205 return push_inst32(compiler, MOV
346 sljit_generate_code(struct sljit_compiler *compiler) argument
477 load_immediate(struct sljit_compiler *compiler, int dst, sljit_uw imm) argument
512 emit_op_imm(struct sljit_compiler *compiler, int flags, int dst, sljit_uw arg1, sljit_uw arg2) argument
888 emit_set_delta(struct sljit_compiler *compiler, int dst, int reg, sljit_w value) argument
909 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1016 getput_arg(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
1115 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1124 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1178 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
1198 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
1252 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
1296 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1425 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1513 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1534 emit_fop_mem(struct sljit_compiler *compiler, int flags, int reg, int arg, sljit_w argw) argument
1584 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1633 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1680 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1700 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1781 sljit_emit_label(struct sljit_compiler *compiler) argument
1797 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1830 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1860 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1908 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
H A DsljitNativeMIPS_common.c2 * Stack-less Just-In-Time compiler
181 static int push_inst(struct sljit_compiler *compiler, sljit_ins ins, int delay_slot) argument
183 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
186 compiler->size++;
187 compiler->delay_slot = delay_slot;
292 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) argument
307 check_sljit_generate_code(compiler);
308 reverse_buf(compiler);
310 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins));
312 buf = compiler
457 sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
509 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
524 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
602 getput_arg_fast(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
643 getput_arg(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw, int next_arg, sljit_w next_argw) argument
777 emit_op_mem(struct sljit_compiler *compiler, int flags, int reg_ar, int arg, sljit_w argw) argument
786 emit_op(struct sljit_compiler *compiler, int op, int flags, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
916 sljit_emit_op0(struct sljit_compiler *compiler, int op) argument
946 sljit_emit_op1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1020 sljit_emit_op2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1077 sljit_emit_op_custom(struct sljit_compiler *compiler, void *instruction, int size) argument
1105 emit_fpu_data_transfer(struct sljit_compiler *compiler, int fpu_reg, int load, int arg, sljit_w argw) argument
1143 sljit_emit_fop1(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src, sljit_w srcw) argument
1212 sljit_emit_fop2(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1265 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
1278 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
1299 sljit_emit_label(struct sljit_compiler *compiler) argument
1342 sljit_emit_jump(struct sljit_compiler *compiler, int type) argument
1458 sljit_emit_cmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1585 sljit_emit_fcmp(struct sljit_compiler *compiler, int type, int src1, sljit_w src1w, int src2, sljit_w src2w) argument
1666 sljit_emit_ijump(struct sljit_compiler *compiler, int type, int src, sljit_w srcw) argument
1724 sljit_emit_cond_value(struct sljit_compiler *compiler, int op, int dst, sljit_w dstw, int type) argument
1811 sljit_emit_const(struct sljit_compiler *compiler, int dst, sljit_w dstw, sljit_w init_value) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/scripts/
H A Dgcc-version.sh17 compiler="$*"
19 if [ ${#compiler} -eq 0 ]; then
20 echo "Error: No compiler specified."
25 MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1)
26 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
28 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -xc - | tail -n 1)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/scripts/
H A Dgcc-version.sh17 compiler="$*"
19 if [ ${#compiler} -eq 0 ]; then
20 echo "Error: No compiler specified."
25 MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1)
26 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
28 PATCHLEVEL=$(echo __GNUC_PATCHLEVEL__ | $compiler -E -xc - | tail -n 1)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dgcd.h4 #include <linux/compiler.h>
H A Dlcm.h4 #include <linux/compiler.h>
H A Dbcd.h4 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dgcd.h4 #include <linux/compiler.h>
H A Dlcm.h4 #include <linux/compiler.h>
H A Dbcd.h4 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/mips/include/asm/
H A Dr4k-timer.h11 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mips/include/asm/
H A Dr4k-timer.h11 #include <linux/compiler.h>

Completed in 383 milliseconds

1234567891011>>