1PCRE2_JIT_STACK_CREATE(3)  Library Functions Manual  PCRE2_JIT_STACK_CREATE(3)
2
3
4

NAME

6       PCRE2 - Perl-compatible regular expressions (revised API)
7

SYNOPSIS

9
10       #include <pcre2.h>
11
12       pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE startsize,
13         PCRE2_SIZE maxsize, pcre2_general_context *gcontext);
14

DESCRIPTION

16
17       This function is used to create a stack for use by the code compiled by
18       the JIT compiler. The first two arguments are a starting size  for  the
19       stack,  and  a  maximum  size to which it is allowed to grow. The final
20       argument is a general context, for memory allocation functions, or NULL
21       for  standard  memory  allocation.  The result can be passed to the JIT
22       run-time code by  calling  pcre2_jit_stack_assign()  to  associate  the
23       stack  with  a  compiled  pattern,  which  can  then  be  processed  by
24       pcre2_match(). If the "fast path"  JIT  matcher,  pcre2_jit_match()  is
25       used,  the stack can be passed directly as an argument. A maximum stack
26       size of 512K to 1M should be more than enough for any pattern. For more
27       details, see the pcre2jit page.
28
29       There is a complete description of the PCRE2 native API in the pcre2api
30       page and a description of the POSIX API in the pcre2posix page.
31
32
33
34PCRE2 10.00                    03 November 2014      PCRE2_JIT_STACK_CREATE(3)
Impressum