Searched refs:SLJIT_REWRITABLE_JUMP (Results 1 – 13 of 13) sorted by relevance
/external/pcre/dist2/src/sljit/ |
D | sljitLir.c | 384 SLJIT_COMPILE_ASSERT(SLJIT_REWRITABLE_JUMP != SLJIT_F32_OP, in sljit_create_compiler() 1594 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_I32_OP))); in check_sljit_emit_jump() 1611 fprintf(compiler->verbose, " jump%s %s%s\n", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", in check_sljit_emit_jump() 1623 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP))); in check_sljit_emit_call() 1656 !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", call_arg_names[arg_types & SLJIT_DEF_MASK]); in check_sljit_emit_call() 1679 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_I32_OP))); in check_sljit_emit_cmp() 1687 fprintf(compiler->verbose, " cmp%s %s%s, ", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", in check_sljit_emit_cmp() 1704 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_F32_OP))); in check_sljit_emit_fcmp() 1712 fprintf(compiler->verbose, " fcmp%s %s%s, ", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", in check_sljit_emit_fcmp() 1785 !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", call_arg_names[arg_types & SLJIT_DEF_MASK]); in check_sljit_emit_icall() [all …]
|
D | sljitNativeARM_32.c | 408 if (jump->flags & SLJIT_REWRITABLE_JUMP) in detect_jump_type() 859 else if (jump->flags & SLJIT_REWRITABLE_JUMP) { in sljit_generate_code() 2236 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump() 2247 if (jump->flags & SLJIT_REWRITABLE_JUMP) { in sljit_emit_jump() 2257 if (!(jump->flags & SLJIT_REWRITABLE_JUMP)) in sljit_emit_jump()
|
D | sljitNativeMIPS_common.c | 322 if (jump->flags & (SLJIT_REWRITABLE_JUMP | IS_CALL)) in detect_jump_type() 325 if (jump->flags & SLJIT_REWRITABLE_JUMP) in detect_jump_type() 1848 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump() 1960 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_cmp()
|
D | sljitLir.h | 1229 #define SLJIT_REWRITABLE_JUMP 0x1000 macro
|
D | sljitNativeARM_64.c | 159 if (jump->flags & SLJIT_REWRITABLE_JUMP) { in detect_jump_type() 1683 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump() 1725 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in emit_cmp_to0()
|
D | sljitNativeS390X.c | 1188 if ((jump->flags & SLJIT_REWRITABLE_JUMP) || (jump->flags & JUMP_ADDR)) { in sljit_generate_code() 1280 if ((jump->flags & SLJIT_REWRITABLE_JUMP) || (jump->flags & JUMP_ADDR)) { in sljit_generate_code() 2548 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump()
|
D | sljitNativeX86_64.c | 46 …int short_addr = !(jump->flags & SLJIT_REWRITABLE_JUMP) && !(jump->flags & JUMP_LABEL) && (jump->u… in generate_far_jump_code()
|
D | sljitNativeSPARC_common.c | 225 if (jump->flags & SLJIT_REWRITABLE_JUMP) in detect_jump_type() 1342 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump()
|
D | sljitNativePPC_common.c | 266 if (jump->flags & (SLJIT_REWRITABLE_JUMP | IS_CALL)) in detect_jump_type() 269 if (jump->flags & SLJIT_REWRITABLE_JUMP) in detect_jump_type() 1983 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump()
|
D | sljitNativeMIPS_32.c | 626 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_call()
|
D | sljitNativeMIPS_64.c | 630 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_call()
|
D | sljitNativeARM_T2_32.c | 244 if (jump->flags & SLJIT_REWRITABLE_JUMP) in detect_jump_type() 1844 set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP); in sljit_emit_jump()
|
D | sljitNativeX86_common.c | 540 if (!(jump->flags & SLJIT_REWRITABLE_JUMP)) in sljit_generate_code() 2713 set_jump(jump, compiler, (type & SLJIT_REWRITABLE_JUMP) | ((type & 0xff) << TYPE_SHIFT));
|