Home
last modified time | relevance | path

Searched refs:SLJIT_SUB (Results 1 – 17 of 17) sorted by relevance

/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c4263 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP1, 0); in move_back()
4280 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP1, 0); in move_back()
4421 OP2(SLJIT_SUB, TMP1, 0, TMP1, 0, SLJIT_IMM, 0xc2); in do_utfreadchar_invalid()
4435 OP2(SLJIT_SUB, TMP2, 0, TMP2, 0, SLJIT_IMM, 0x80); in do_utfreadchar_invalid()
4449 OP2(SLJIT_SUB, TMP2, 0, TMP2, 0, SLJIT_IMM, 0x80); in do_utfreadchar_invalid()
4492 OP2(SLJIT_SUB, TMP2, 0, TMP2, 0, SLJIT_IMM, 0x80); in do_utfreadchar_invalid()
4525 OP2(SLJIT_SUB, TMP2, 0, TMP2, 0, SLJIT_IMM, 0x80); in do_utfreadchar_invalid()
7003 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP2, 0); in do_casefulcmp()
7090 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP2, 0); in do_caselesscmp()
9096 OP2(SLJIT_SUB, TMP2, 0, TMP2, 0, STR_PTR, 0); in compile_ref_matchingpath()
[all …]
H A Dpcre2_jit_simd_inc.h284 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP2, 0); in fast_forward_char_simd()
322 OP2(SLJIT_SUB | SLJIT_SET_GREATER, SLJIT_UNUSED, 0, STR_PTR, 0, STR_END, 0); in fast_forward_char_simd()
440 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP2, 0); in fast_requested_char_simd()
533 OP2(SLJIT_SUB | SLJIT_SET_LESS, SLJIT_UNUSED, 0, TMP1, 0, STR_END, 0); in fast_forward_char_pair_simd()
631 OP2(SLJIT_SUB, TMP1, 0, STR_PTR, 0, SLJIT_IMM, diff); in fast_forward_char_pair_simd()
689 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, TMP2, 0); in fast_forward_char_pair_simd()
753 OP2(SLJIT_SUB, STR_PTR, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(offs1)); in fast_forward_char_pair_simd()
1066 OP2(SLJIT_SUB | SLJIT_SET_LESS, SLJIT_UNUSED, 0, STR_END, 0, SLJIT_R0, 0); in fast_forward_char_pair_simd()
/PHP-8.0/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_common.c1409 case SLJIT_SUB: in sljit_emit_op2()
1414 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1416 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1421 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM2 | ALT_FORM3, dst, dstw, src1, sr… in sljit_emit_op2()
1423 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1 | ALT_FORM3, dst, dstw, src1, src1w, src2, s… in sljit_emit_op2()
1427 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM2, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1436 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM3, dst, dstw, src2, src2w, TMP_REG2, 0); in sljit_emit_op2()
1452 …return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM4 | ALT_FORM5, dst, dstw, src1, src1w, TMP_REG… in sljit_emit_op2()
1454 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM4, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
1462 …return emit_op(compiler, SLJIT_SUB, flags | ((GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY))… in sljit_emit_op2()
H A DsljitLir.h981 #define SLJIT_SUB (SLJIT_OP2_BASE + 2) macro
982 #define SLJIT_SUB32 (SLJIT_SUB | SLJIT_I32_OP)
H A DsljitNativeARM_32.c971 FAIL_IF(emit_op(compiler, SLJIT_SUB, ALLOW_IMM, SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size)); in sljit_emit_enter()
1134 case SLJIT_SUB: in emit_single_op()
1507 op = SLJIT_SUB | GET_ALL_FLAGS(op); in emit_op()
1511 if (GET_OPCODE(op) == SLJIT_SUB) { in emit_op()
1543 op = SLJIT_SUB | GET_ALL_FLAGS(op); in emit_op()
1728 …return sljit_emit_op2(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
1754 case SLJIT_SUB: in sljit_emit_op2()
H A DsljitNativePPC_32.c131 case SLJIT_SUB: in emit_single_op()
H A DsljitNativeSPARC_32.c101 case SLJIT_SUB: in emit_single_op()
H A DsljitNativeARM_T2_32.c642 case SLJIT_SUB: in emit_op_imm()
811 case SLJIT_SUB: in emit_op_imm()
1102 FAIL_IF(emit_op_imm(compiler, SLJIT_SUB | ARG2_IMM, SLJIT_SP, SLJIT_SP, local_size)); in sljit_emit_enter()
1410 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
H A DsljitNativeARM_64.c622 if (arg1 == 0 && op != SLJIT_ADD && op != SLJIT_SUB) in emit_op_imm()
650 case SLJIT_SUB: in emit_op_imm()
805 case SLJIT_SUB: in emit_op_imm()
H A DsljitNativePPC_64.c266 case SLJIT_SUB: in emit_single_op()
H A DsljitNativeSPARC_common.c926 return emit_op(compiler, SLJIT_SUB, flags | IMM_OP, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
958 case SLJIT_SUB: in sljit_emit_op2()
H A DsljitNativeTILEGX_64.c1748 case SLJIT_SUB: in emit_single_op()
2233 …return emit_op(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), IMM_OP, dst, dstw, SLJIT_IMM, 0, src, srcw… in sljit_emit_op1()
2255 case SLJIT_SUB: in sljit_emit_op2()
H A DsljitNativeMIPS_32.c237 case SLJIT_SUB: in emit_single_op()
H A DsljitNativeMIPS_64.c328 case SLJIT_SUB: in emit_single_op()
H A DsljitLir.c1281 case SLJIT_SUB: in check_sljit_emit_op2()
2192 PTR_FAIL_IF(sljit_emit_op2(compiler, SLJIT_SUB | flags | (type & SLJIT_I32_OP), in sljit_emit_cmp()
H A DsljitNativeMIPS_common.c1379 …return emit_op(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), flags | IMM_OP, dst, dstw, SLJIT_IMM, 0, s… in sljit_emit_op1()
1428 case SLJIT_SUB: in sljit_emit_op2()
H A DsljitNativeX86_common.c2315 case SLJIT_SUB:

Completed in 105 milliseconds