chiark / gitweb /
pcre3 (2:8.35-7.4) unstable; urgency=medium
[pcre3.git] / doc / pcre_assign_jit_stack.3
1 .TH PCRE_ASSIGN_JIT_STACK 3 "24 June 2012" "PCRE 8.30"
2 .SH NAME
3 PCRE - Perl-compatible regular expressions
4 .SH SYNOPSIS
5 .rs
6 .sp
7 .B #include <pcre.h>
8 .PP
9 .nf
10 .B void pcre_assign_jit_stack(pcre_extra *\fIextra\fP,
11 .B "     pcre_jit_callback \fIcallback\fP, void *\fIdata\fP);"
12 .sp
13 .B void pcre16_assign_jit_stack(pcre16_extra *\fIextra\fP,
14 .B "     pcre16_jit_callback \fIcallback\fP, void *\fIdata\fP);"
15 .sp
16 .B void pcre32_assign_jit_stack(pcre32_extra *\fIextra\fP,
17 .B "     pcre32_jit_callback \fIcallback\fP, void *\fIdata\fP);"
18 .fi
19 .
20 .SH DESCRIPTION
21 .rs
22 .sp
23 This function provides control over the memory used as a stack at run-time by a
24 call to \fBpcre[16|32]_exec()\fP with a pattern that has been successfully
25 compiled with JIT optimization. The arguments are:
26 .sp
27   extra     the data pointer returned by \fBpcre[16|32]_study()\fP
28   callback  a callback function
29   data      a JIT stack or a value to be passed to the callback
30               function
31 .P
32 If \fIcallback\fP is NULL and \fIdata\fP is NULL, an internal 32K block on
33 the machine stack is used.
34 .P
35 If \fIcallback\fP is NULL and \fIdata\fP is not NULL, \fIdata\fP must
36 be a valid JIT stack, the result of calling \fBpcre[16|32]_jit_stack_alloc()\fP.
37 .P
38 If \fIcallback\fP not NULL, it is called with \fIdata\fP as an argument at
39 the start of matching, in order to set up a JIT stack. If the result is NULL,
40 the internal 32K stack is used; otherwise the return value must be a valid JIT
41 stack, the result of calling \fBpcre[16|32]_jit_stack_alloc()\fP.
42 .P
43 You may safely assign the same JIT stack to multiple patterns, as long as they
44 are all matched in the same thread. In a multithread application, each thread
45 must use its own JIT stack. For more details, see the
46 .\" HREF
47 \fBpcrejit\fP
48 .\"
49 page.
50 .P
51 There is a complete description of the PCRE native API in the
52 .\" HREF
53 \fBpcreapi\fP
54 .\"
55 page and a description of the POSIX API in the
56 .\" HREF
57 \fBpcreposix\fP
58 .\"
59 page.