Searched refs:SLJIT_FAST_CALL (Results 1 – 13 of 13) sorted by relevance
/PHP-7.4/ext/pcre/pcre2lib/ |
H A D | pcre2_jit_compile.c | 3056 add_jump(compiler, &common->stackalloc, JUMP(SLJIT_FAST_CALL)); in flush_stubs() 4296 add_jump(compiler, &common->anynewline, JUMP(SLJIT_FAST_CALL)); in check_newlinechar() 6524 add_jump(compiler, &common->getucdtype, JUMP(SLJIT_FAST_CALL)); in check_wordboundary() 6570 add_jump(compiler, &common->getucdtype, JUMP(SLJIT_FAST_CALL)); in check_wordboundary() 8587 add_jump(compiler, &common->hspace, JUMP(SLJIT_FAST_CALL)); in compile_char1_matchingpath() 8602 add_jump(compiler, &common->vspace, JUMP(SLJIT_FAST_CALL)); in compile_char1_matchingpath() 9022 add_jump(compiler, &common->getucd, JUMP(SLJIT_FAST_CALL)); in compile_ref_matchingpath() 9375 add_jump(compiler, &entry->entry_calls, JUMP(SLJIT_FAST_CALL)); in compile_recurse_matchingpath() 9377 JUMPTO(SLJIT_FAST_CALL, entry->entry_label); in compile_recurse_matchingpath() 12273 JUMPTO(SLJIT_FAST_CALL, entry->backtrack_label); in compile_recurse_backtrackingpath() [all …]
|
/PHP-7.4/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeARM_32.c | 1665 FAIL_IF(sljit_emit_ijump(compiler, SLJIT_FAST_CALL, SLJIT_IMM, in sljit_emit_op0() 2168 if (type >= SLJIT_FAST_CALL) in sljit_emit_jump() 2178 if (type >= SLJIT_FAST_CALL) { in sljit_emit_jump() 2186 if (type >= SLJIT_FAST_CALL) in sljit_emit_jump() 2454 set_jump(jump, compiler, JUMP_ADDR | ((type >= SLJIT_FAST_CALL) ? IS_BL : 0)); in sljit_emit_ijump() 2458 if (type >= SLJIT_FAST_CALL) in sljit_emit_ijump() 2461 if (type >= SLJIT_FAST_CALL) in sljit_emit_ijump()
|
H A D | sljitNativeARM_64.c | 1699 else if (type >= SLJIT_FAST_CALL) in sljit_emit_jump() 1704 PTR_FAIL_IF(push_inst(compiler, ((type >= SLJIT_FAST_CALL) ? BLR : BR) | RN(TMP_REG1))); in sljit_emit_jump() 1771 return push_inst(compiler, ((type >= SLJIT_FAST_CALL) ? BLR : BR) | RN(src)); in sljit_emit_ijump() 1777 set_jump(jump, compiler, JUMP_ADDR | ((type >= SLJIT_FAST_CALL) ? IS_BL : 0)); in sljit_emit_ijump() 1782 return push_inst(compiler, ((type >= SLJIT_FAST_CALL) ? BLR : BR) | RN(TMP_REG1)); in sljit_emit_ijump()
|
H A D | sljitNativeSPARC_common.c | 1367 if (type >= SLJIT_FAST_CALL) in sljit_emit_jump() 1372 …PTR_FAIL_IF(push_inst(compiler, JMPL | D(type >= SLJIT_FAST_CALL ? TMP_LINK : 0) | S1(TMP_REG1) | … in sljit_emit_jump() 1414 if (type >= SLJIT_FAST_CALL) in sljit_emit_ijump() 1425 …FAIL_IF(push_inst(compiler, JMPL | D(type >= SLJIT_FAST_CALL ? TMP_LINK : 0) | S1(src_r) | IMM(0),… in sljit_emit_ijump()
|
H A D | sljitLir.h | 1209 #define SLJIT_FAST_CALL 25 macro
|
H A D | sljitNativeARM_T2_32.c | 1309 FAIL_IF(sljit_emit_ijump(compiler, SLJIT_FAST_CALL, SLJIT_IMM, in sljit_emit_op0() 1312 FAIL_IF(sljit_emit_ijump(compiler, SLJIT_FAST_CALL, SLJIT_IMM, in sljit_emit_op0() 2116 if (type >= SLJIT_FAST_CALL) in sljit_emit_ijump() 2123 set_jump(jump, compiler, JUMP_ADDR | ((type >= SLJIT_FAST_CALL) ? IS_BL : 0)); in sljit_emit_ijump()
|
H A D | sljitNativeX86_32.c | 49 else if (type >= SLJIT_FAST_CALL) { in generate_far_jump_code()
|
H A D | sljitNativeX86_64.c | 72 *code_ptr++ = MOD_REG | (type >= SLJIT_FAST_CALL ? CALL_rm : JMP_rm) | reg_lmap[TMP_REG2]; in generate_far_jump_code()
|
H A D | sljitLir.c | 1587 CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_FAST_CALL); in check_sljit_emit_jump() 1723 CHECK_ARGUMENT(type >= SLJIT_JUMP && type <= SLJIT_FAST_CALL); in check_sljit_emit_ijump()
|
H A D | sljitNativeTILEGX_64.c | 2375 set_jump(jump, compiler, JUMP_ADDR | ((type >= SLJIT_FAST_CALL) ? IS_JAL : 0)); in sljit_emit_ijump() 2379 if (type >= SLJIT_FAST_CALL) { in sljit_emit_ijump()
|
H A D | sljitNativePPC_common.c | 1996 PTR_FAIL_IF(push_inst(compiler, BCCTR | bo_bi_flags | (type >= SLJIT_FAST_CALL ? 1 : 0))); in sljit_emit_jump() 2059 return push_inst(compiler, BCCTR | (20 << 21) | (type >= SLJIT_FAST_CALL ? 1 : 0)); in sljit_emit_ijump()
|
H A D | sljitNativeX86_common.c | 462 else if (type >= SLJIT_FAST_CALL) { in generate_near_jump_code() 2770 *inst |= (type >= SLJIT_FAST_CALL) ? CALL_rm : JMP_rm;
|
H A D | sljitNativeMIPS_common.c | 2073 set_jump(jump, compiler, JUMP_ADDR | ((type >= SLJIT_FAST_CALL) ? IS_JAL : 0)); in sljit_emit_ijump()
|
Completed in 149 milliseconds