On Thu, Jan 31, 2019 at 10:44 AM Dmitry Stogov <dmi...@zend.com> wrote:
> Hi Internals, > > > I'm glad to finally propose including JIT into PHP. > > > https://wiki.php.net/rfc/jit > > > In the current state it may be included both into PHP-8, where we are > going to continue active improvement, and into PHP-7.4, as an experimental > feature. > > > Thanks. Dmitry. > I would like to check if the JIT provides an improvement for PHP-Parser. Unfortunately I'm getting a segfault when running the tests. Should be reproducible with git clone g...@github.com:nikic/PHP-Parser.git cd PHP-Parser composer install php-jit vendor/bin/phpunit I tried to debug this. Unfortunately my gdb doesn't seem to work with JIT: It hangs when the script starts running, on line Zend/zend_gdb.c:84 in zend_gdb_register_code. I don't know if that's a bug or I need to do something additional here (I'm using GNU gdb (Ubuntu 8.1-0ubuntu3) 8.1.0.20180409-git). Nikita