Lines Matching refs:ccend

1068 static BOOL check_opcode_types(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend)  in check_opcode_types()  argument
1076 while (cc < ccend) in check_opcode_types()
1746 …atic void set_private_data_ptrs(compiler_common *common, int *private_data_start, PCRE2_SPTR ccend) in set_private_data_ptrs() argument
1755 while (cc < ccend) in set_private_data_ptrs()
1932 static int get_framesize(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, BOOL recursive, … in get_framesize() argument
1949 if (ccend == NULL) in get_framesize()
1951 ccend = bracketend(cc) - (1 + LINK_SIZE); in get_framesize()
1962 while (cc < ccend) in get_framesize()
2118 static void init_frame(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, int stackpos, int … in init_frame() argument
2132 if (ccend == NULL) in init_frame()
2134 ccend = bracketend(cc) - (1 + LINK_SIZE); in init_frame()
2140 while (cc < ccend) in init_frame()
2318 static int get_recurse_data_length(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, in get_recurse_data_length() argument
2337 while (cc < ccend) in get_recurse_data_length()
2516 SLJIT_ASSERT(cc == ccend); in get_recurse_data_length()
2544 static void copy_recurse_data(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, in copy_recurse_data() argument
2639 while (cc < ccend) in copy_recurse_data()
2958 SLJIT_ASSERT(cc == ccend && stackptr == stacktop); in copy_recurse_data()
8902 …ile_charn_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, jump_list **backt… in compile_charn_matchingpath() argument
8914 if (cc >= ccend) in compile_charn_matchingpath()
11795 PCRE2_SPTR ccend = cc + 1; in compile_control_verb_matchingpath() local
11799 ccend += 2 + cc[1]; in compile_control_verb_matchingpath()
11807 return ccend; in compile_control_verb_matchingpath()
11819 return ccend; in compile_control_verb_matchingpath()
11824 …then_trap_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrack_common … in compile_then_trap_matchingpath() argument
11835 BACKTRACK_AS(then_trap_backtrack)->framesize = get_framesize(common, cc, ccend, FALSE, &needs_contr… in compile_then_trap_matchingpath()
11852 init_frame(common, cc, ccend, size - 1, 0); in compile_then_trap_matchingpath()
11855 static void compile_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrac… in compile_matchingpath() argument
11862 SLJIT_ASSERT(*ccend == OP_END || (*ccend >= OP_ALT && *ccend <= OP_KETRPOS)); in compile_matchingpath()
11866 SLJIT_ASSERT(*ccend != OP_END && common->control_head_ptr != 0); in compile_matchingpath()
11870 compile_then_trap_matchingpath(common, cc, ccend, parent); in compile_matchingpath()
11873 while (cc < ccend) in compile_matchingpath()
11925 …cc = compile_charn_matchingpath(common, cc, ccend, parent->top != NULL ? &parent->top->nextbacktra… in compile_matchingpath()
12168 SLJIT_ASSERT(cc == ccend); in compile_matchingpath()
13250 PCRE2_SPTR ccend = bracketend(cc) - (1 + LINK_SIZE); in compile_recurse() local
13254 int private_data_size = get_recurse_data_length(common, ccbegin, ccend, &needs_control_head, &has_q… in compile_recurse()
13288 copy_recurse_data(common, ccbegin, ccend, recurse_copy_from_global, local_size, private_data_size +… in compile_recurse()
13347 …copy_recurse_data(common, ccbegin, ccend, recurse_swap_global, local_size, private_data_size + loc… in compile_recurse()
13399 copy_recurse_data(common, ccbegin, ccend, recurse_copy_private_to_global, local_size, private_data_… in compile_recurse()
13412 …copy_recurse_data(common, ccbegin, ccend, recurse_copy_shared_to_global, local_size, private_data_… in compile_recurse()
13424 …copy_recurse_data(common, ccbegin, ccend, recurse_copy_kept_shared_to_global, local_size, private_… in compile_recurse()
13449 copy_recurse_data(common, ccbegin, ccend, recurse_swap_global, local_size, private_data_size + loca… in compile_recurse()
13472 PCRE2_SPTR ccend; in jit_compile() local
13580 ccend = bracketend(common->start); in jit_compile()
13593 SLJIT_ASSERT(*common->start == OP_BRA && ccend[-(1 + LINK_SIZE)] == OP_KET); in jit_compile()
13598 if (!check_opcode_types(common, common->start, ccend)) in jit_compile()
13654 total_length = ccend - common->start; in jit_compile()
13668 set_private_data_ptrs(common, &private_data_size, ccend); in jit_compile()
13776 compile_matchingpath(common, common->start, ccend, &rootbacktrack); in jit_compile()