From: Anatol Belski Date: Thu, 16 Nov 2017 13:12:05 +0000 (+0100) Subject: Fix (*NO_JIT) usage when JIT is enabled X-Git-Tag: php-7.3.0alpha1~1009^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a370a6af647e27a334676a2c87bf686c6c973423;p=php Fix (*NO_JIT) usage when JIT is enabled If (*NO_JIT) is put into the pattern, the JIT compilation will still succeed but produce no code. The pattern will still have to be interpreted and is not suitable for the JIT fast path. This means, we still need to check the pattern info after JIT compilation and only set the flags when the JIT code was produced. --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 5386077f8c..615cece7cf 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -726,7 +726,10 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex) /* Enable PCRE JIT compiler */ rc = pcre2_jit_compile(re, PCRE2_JIT_COMPLETE); if (EXPECTED(rc >= 0)) { - poptions |= PREG_JIT; + size_t jit_size = 0; + if (!pcre2_pattern_info(re, PCRE2_INFO_JITSIZE, &jit_size) && jit_size > 0) { + poptions |= PREG_JIT; + } } else { pcre2_get_error_message(rc, error, sizeof(error)); php_error_docref(NULL, E_WARNING, "JIT compilation failed: %s", error); diff --git a/ext/pcre/tests/no_jit_bug70110.phpt b/ext/pcre/tests/no_jit_bug70110.phpt new file mode 100644 index 0000000000..d1ce7abc4e --- /dev/null +++ b/ext/pcre/tests/no_jit_bug70110.phpt @@ -0,0 +1,16 @@ +--TEST-- +Test (*NO_JIT) doesn't crash when JIT enabled +--SKIPIF-- + +--FILE-- + +==DONE== +--EXPECTF-- +int(1) +int(1) +==DONE==