pcre2_jit_match.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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>
  8. Return to the <a href="index.html">PCRE2 index page</a>.
  9. </p>
  10. <p>
  11. This page is part of the PCRE2 HTML documentation. It was generated
  12. automatically from the original man page. If there is any nonsense in it,
  13. please consult the man page, in case the conversion went wrong.
  14. <br>
  15. <br><b>
  16. SYNOPSIS
  17. </b><br>
  18. <P>
  19. <b>#include &#60;pcre2.h&#62;</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>
  28. DESCRIPTION
  29. </b><br>
  30. <P>
  31. This function matches a compiled regular expression that has been successfully
  32. processed by the JIT compiler against a given subject string, using a matching
  33. algorithm that is similar to Perl's. It is a "fast path" interface to JIT, and
  34. it bypasses some of the sanity checks that <b>pcre2_match()</b> applies.
  35. Its arguments are exactly the same as for
  36. <a href="pcre2_match.html"><b>pcre2_match()</b>,</a>
  37. except that the subject string must be specified with a length;
  38. PCRE2_ZERO_TERMINATED is not supported.
  39. </P>
  40. <P>
  41. The supported options are PCRE2_NOTBOL, PCRE2_NOTEOL, PCRE2_NOTEMPTY,
  42. PCRE2_NOTEMPTY_ATSTART, PCRE2_PARTIAL_HARD, and PCRE2_PARTIAL_SOFT. Unsupported
  43. options are ignored. The subject string is not checked for UTF validity.
  44. </P>
  45. <P>
  46. The return values are the same as for <b>pcre2_match()</b> plus
  47. PCRE2_ERROR_JIT_BADOPTION if a matching mode (partial or complete) is requested
  48. that was not compiled. For details of partial matching, see the
  49. <a href="pcre2partial.html"><b>pcre2partial</b></a>
  50. page.
  51. </P>
  52. <P>
  53. There is a complete description of the PCRE2 native API in the
  54. <a href="pcre2api.html"><b>pcre2api</b></a>
  55. page and a description of the JIT API in the
  56. <a href="pcre2jit.html"><b>pcre2jit</b></a>
  57. page.
  58. <p>
  59. Return to the <a href="index.html">PCRE2 index page</a>.
  60. </p>