Lines Matching refs:ccend
814 static BOOL check_opcode_types(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend) in check_opcode_types() argument
821 while (cc < ccend) in check_opcode_types()
1290 …atic void set_private_data_ptrs(compiler_common *common, int *private_data_start, PCRE2_SPTR ccend) in set_private_data_ptrs() argument
1299 while (cc < ccend) in set_private_data_ptrs()
1472 static int get_framesize(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, BOOL recursive, … in get_framesize() argument
1489 if (ccend == NULL) in get_framesize()
1491 ccend = bracketend(cc) - (1 + LINK_SIZE); in get_framesize()
1502 while (cc < ccend) in get_framesize()
1657 static void init_frame(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, int stackpos, int … in init_frame() argument
1671 if (ccend == NULL) in init_frame()
1673 ccend = bracketend(cc) - (1 + LINK_SIZE); in init_frame()
1679 while (cc < ccend) in init_frame()
1779 …ivate_data_copy_length(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, BOOL needs_contro… in get_private_data_copy_length() argument
1785 while (cc < ccend) in get_private_data_copy_length()
1900 SLJIT_ASSERT(cc == ccend); in get_private_data_copy_length()
1904 static void copy_private_data(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, in copy_private_data() argument
1961 if (cc >= ccend) in copy_private_data()
2223 SLJIT_ASSERT(cc == ccend && stackptr == stacktop && (save || (tmp1empty && tmp2empty))); in copy_private_data()
6633 …ile_charn_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, jump_list **backt… in compile_charn_matchingpath() argument
6645 if (cc >= ccend) in compile_charn_matchingpath()
9266 PCRE2_SPTR ccend = cc + 1; in compile_control_verb_matchingpath() local
9269 ccend += 2 + cc[1]; in compile_control_verb_matchingpath()
9277 return ccend; in compile_control_verb_matchingpath()
9288 return ccend; in compile_control_verb_matchingpath()
9293 …then_trap_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrack_common … in compile_then_trap_matchingpath() argument
9304 BACKTRACK_AS(then_trap_backtrack)->framesize = get_framesize(common, cc, ccend, FALSE, &needs_contr… in compile_then_trap_matchingpath()
9321 init_frame(common, cc, ccend, size - 1, 0, FALSE); in compile_then_trap_matchingpath()
9324 static void compile_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrac… in compile_matchingpath() argument
9331 SLJIT_ASSERT(*ccend == OP_END || (*ccend >= OP_ALT && *ccend <= OP_KETRPOS)); in compile_matchingpath()
9335 SLJIT_ASSERT(*ccend != OP_END && common->control_head_ptr != 0); in compile_matchingpath()
9339 compile_then_trap_matchingpath(common, cc, ccend, parent); in compile_matchingpath()
9342 while (cc < ccend) in compile_matchingpath()
9394 …cc = compile_charn_matchingpath(common, cc, ccend, parent->top != NULL ? &parent->top->nextbacktra… in compile_matchingpath()
9633 SLJIT_ASSERT(cc == ccend); in compile_matchingpath()
10708 PCRE2_SPTR ccend = bracketend(cc) - (1 + LINK_SIZE); in compile_recurse() local
10711 int private_data_size = get_private_data_copy_length(common, ccbegin, ccend, needs_control_head); in compile_recurse()
10734 copy_private_data(common, ccbegin, ccend, TRUE, private_data_size + framesize + alternativesize, fr… in compile_recurse()
10809 copy_private_data(common, ccbegin, ccend, FALSE, private_data_size + framesize + alternativesize, f… in compile_recurse()
10841 PCRE2_SPTR ccend; in jit_compile() local
10931 ccend = bracketend(common->start); in jit_compile()
10944 SLJIT_ASSERT(*common->start == OP_BRA && ccend[-(1 + LINK_SIZE)] == OP_KET); in jit_compile()
10949 if (!check_opcode_types(common, common->start, ccend)) in jit_compile()
11005 total_length = ccend - common->start; in jit_compile()
11015 set_private_data_ptrs(common, &private_data_size, ccend); in jit_compile()
11128 compile_matchingpath(common, common->start, ccend, &rootbacktrack); in jit_compile()