feat: PCRE2 JIT

This commit is contained in:
wfjsw
2022-08-25 02:38:05 +08:00
parent 7b094ea84e
commit 0d81b636be
4 changed files with 55 additions and 9 deletions

View File

@@ -85,6 +85,9 @@ class Regex {
private:
#if WITH_PCRE2
pcre2_code *m_pc;
pcre2_match_context *m_pmc;
int m_pcje;
pcre2_jit_stack *m_pcjs;
#else
pcre *m_pc = NULL;
pcre_extra *m_pce = NULL;