1<html> 2<head> 3<title>pcre2_jit_match specification</title> 4</head> 5<body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB"> 6<h1>pcre2_jit_match man page</h1> 7<p> 8Return to the <a href="index.html">PCRE2 index page</a>. 9</p> 10<p> 11This page is part of the PCRE2 HTML documentation. It was generated 12automatically from the original man page. If there is any nonsense in it, 13please consult the man page, in case the conversion went wrong. 14<br> 15<br><b> 16SYNOPSIS 17</b><br> 18<P> 19<b>#include <pcre2.h></b> 20</P> 21<P> 22<b>int pcre2_jit_match(const pcre2_code *<i>code</i>, PCRE2_SPTR <i>subject</i>,</b> 23<b> PCRE2_SIZE <i>length</i>, PCRE2_SIZE <i>startoffset</i>,</b> 24<b> uint32_t <i>options</i>, pcre2_match_data *<i>match_data</i>,</b> 25<b> pcre2_match_context *<i>mcontext</i>);</b> 26</P> 27<br><b> 28DESCRIPTION 29</b><br> 30<P> 31This function matches a compiled regular expression that has been successfully 32processed by the JIT compiler against a given subject string, using a matching 33algorithm that is similar to Perl's. It is a "fast path" interface to JIT, and 34it bypasses some of the sanity checks that <b>pcre2_match()</b> applies. 35Its arguments are exactly the same as for 36<a href="pcre2_match.html"><b>pcre2_match()</b>.</a> 37</P> 38<P> 39The supported options are PCRE2_NOTBOL, PCRE2_NOTEOL, PCRE2_NOTEMPTY, 40PCRE2_NOTEMPTY_ATSTART, PCRE2_PARTIAL_HARD, and PCRE2_PARTIAL_SOFT. Unsupported 41options are ignored. The subject string is not checked for UTF validity. 42</P> 43<P> 44The return values are the same as for <b>pcre2_match()</b> plus 45PCRE2_ERROR_JIT_BADOPTION if a matching mode (partial or complete) is requested 46that was not compiled. For details of partial matching, see the 47<a href="pcre2partial.html"><b>pcre2partial</b></a> 48page. 49</P> 50<P> 51There is a complete description of the PCRE2 native API in the 52<a href="pcre2api.html"><b>pcre2api</b></a> 53page and a description of the JIT API in the 54<a href="pcre2jit.html"><b>pcre2jit</b></a> 55page. 56<p> 57Return to the <a href="index.html">PCRE2 index page</a>. 58</p> 59