Lines Matching refs:ccend
1073 static BOOL check_opcode_types(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend) in check_opcode_types() argument
1081 while (cc < ccend) in check_opcode_types()
1751 …atic void set_private_data_ptrs(compiler_common *common, int *private_data_start, PCRE2_SPTR ccend) in set_private_data_ptrs() argument
1760 while (cc < ccend) in set_private_data_ptrs()
1937 static int get_framesize(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, BOOL recursive, … in get_framesize() argument
1954 if (ccend == NULL) in get_framesize()
1956 ccend = bracketend(cc) - (1 + LINK_SIZE); in get_framesize()
1967 while (cc < ccend) in get_framesize()
2123 static void init_frame(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, int stackpos, int … in init_frame() argument
2137 if (ccend == NULL) in init_frame()
2139 ccend = bracketend(cc) - (1 + LINK_SIZE); in init_frame()
2145 while (cc < ccend) in init_frame()
2352 static int get_recurse_data_length(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, uint32… in get_recurse_data_length() argument
2367 while (cc < ccend) in get_recurse_data_length()
2580 SLJIT_ASSERT(cc == ccend); in get_recurse_data_length()
2604 static void copy_recurse_data(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, in copy_recurse_data() argument
2697 while (cc < ccend) in copy_recurse_data()
3032 SLJIT_ASSERT(cc == ccend && stackptr == stacktop); in copy_recurse_data()
9133 …ile_charn_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, jump_list **backt… in compile_charn_matchingpath() argument
9145 if (cc >= ccend) in compile_charn_matchingpath()
12026 PCRE2_SPTR ccend = cc + 1; in compile_control_verb_matchingpath() local
12030 ccend += 2 + cc[1]; in compile_control_verb_matchingpath()
12038 return ccend; in compile_control_verb_matchingpath()
12050 return ccend; in compile_control_verb_matchingpath()
12055 …then_trap_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrack_common … in compile_then_trap_matchingpath() argument
12066 BACKTRACK_AS(then_trap_backtrack)->framesize = get_framesize(common, cc, ccend, FALSE, &needs_contr… in compile_then_trap_matchingpath()
12083 init_frame(common, cc, ccend, size - 1, 0); in compile_then_trap_matchingpath()
12086 static void compile_matchingpath(compiler_common *common, PCRE2_SPTR cc, PCRE2_SPTR ccend, backtrac… in compile_matchingpath() argument
12093 SLJIT_ASSERT(*ccend == OP_END || (*ccend >= OP_ALT && *ccend <= OP_KETRPOS)); in compile_matchingpath()
12097 SLJIT_ASSERT(*ccend != OP_END && common->control_head_ptr != 0); in compile_matchingpath()
12101 compile_then_trap_matchingpath(common, cc, ccend, parent); in compile_matchingpath()
12104 while (cc < ccend) in compile_matchingpath()
12156 …cc = compile_charn_matchingpath(common, cc, ccend, parent->top != NULL ? &parent->top->nextbacktra… in compile_matchingpath()
12399 SLJIT_ASSERT(cc == ccend); in compile_matchingpath()
13481 PCRE2_SPTR ccend = bracketend(cc) - (1 + LINK_SIZE); in compile_recurse() local
13483 int private_data_size = get_recurse_data_length(common, ccbegin, ccend, &recurse_flags); in compile_recurse()
13517 copy_recurse_data(common, ccbegin, ccend, recurse_copy_from_global, local_size, private_data_size +… in compile_recurse()
13576 …copy_recurse_data(common, ccbegin, ccend, recurse_swap_global, local_size, private_data_size + loc… in compile_recurse()
13628 copy_recurse_data(common, ccbegin, ccend, recurse_copy_private_to_global, local_size, private_data_… in compile_recurse()
13641 …copy_recurse_data(common, ccbegin, ccend, recurse_copy_shared_to_global, local_size, private_data_… in compile_recurse()
13653 …copy_recurse_data(common, ccbegin, ccend, recurse_copy_kept_shared_to_global, local_size, private_… in compile_recurse()
13678 copy_recurse_data(common, ccbegin, ccend, recurse_swap_global, local_size, private_data_size + loca… in compile_recurse()
13701 PCRE2_SPTR ccend; in jit_compile() local
13809 ccend = bracketend(common->start); in jit_compile()
13822 SLJIT_ASSERT(*common->start == OP_BRA && ccend[-(1 + LINK_SIZE)] == OP_KET); in jit_compile()
13827 if (!check_opcode_types(common, common->start, ccend)) in jit_compile()
13883 total_length = ccend - common->start; in jit_compile()
13897 set_private_data_ptrs(common, &private_data_size, ccend); in jit_compile()
14006 compile_matchingpath(common, common->start, ccend, &rootbacktrack); in jit_compile()