diff --git a/.circleci/config.yml b/.circleci/config.yml index 835d145a003..a11ad56f74c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -185,10 +185,6 @@ jobs: -d opcache.jit_max_root_traces=100000 \ -d opcache.jit_max_side_traces=100000 \ -d opcache.jit_max_exit_counters=100000 \ - -d opcache.jit_hot_loop=1 \ - -d opcache.jit_hot_func=1 \ - -d opcache.jit_hot_return=1 \ - -d opcache.jit_hot_side_exit=1 \ -d opcache.jit=tracing \ -P -q -x -j2 \ -g FAIL,BORK,LEAK,XLEAK \ diff --git a/.github/actions/test-linux/action.yml b/.github/actions/test-linux/action.yml index 1b1edf26cc9..a1a0ab33cf8 100644 --- a/.github/actions/test-linux/action.yml +++ b/.github/actions/test-linux/action.yml @@ -47,10 +47,6 @@ runs: -d opcache.jit_max_root_traces=100000 \ -d opcache.jit_max_side_traces=100000 \ -d opcache.jit_max_exit_counters=100000 \ - -d opcache.jit_hot_loop=1 \ - -d opcache.jit_hot_func=1 \ - -d opcache.jit_hot_return=1 \ - -d opcache.jit_hot_side_exit=1 \ -j$(/usr/bin/nproc) \ -g FAIL,BORK,LEAK,XLEAK \ --no-progress \ diff --git a/.github/actions/test-macos/action.yml b/.github/actions/test-macos/action.yml index 20a89b53d52..4997c81d2ef 100644 --- a/.github/actions/test-macos/action.yml +++ b/.github/actions/test-macos/action.yml @@ -26,10 +26,6 @@ runs: -d opcache.jit_max_root_traces=100000 \ -d opcache.jit_max_side_traces=100000 \ -d opcache.jit_max_exit_counters=100000 \ - -d opcache.jit_hot_loop=1 \ - -d opcache.jit_hot_func=1 \ - -d opcache.jit_hot_return=1 \ - -d opcache.jit_hot_side_exit=1 \ -j$(sysctl -n hw.ncpu) \ -g FAIL,BORK,LEAK,XLEAK \ --no-progress \ diff --git a/.github/scripts/windows/test_task.bat b/.github/scripts/windows/test_task.bat index c997eee5cb7..08be50d4d07 100644 --- a/.github/scripts/windows/test_task.bat +++ b/.github/scripts/windows/test_task.bat @@ -83,7 +83,7 @@ set OPENSSL_CONF= rem set SSLEAY_CONF= rem prepare for OPcache -if "%OPCACHE%" equ "1" set OPCACHE_OPTS=-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit_hot_loop=1 -d opcache.jit_hot_func=1 -d opcache.jit_hot_return=1 -d opcache.jit_hot_side_exit=1 -d opcache.jit=tracing +if "%OPCACHE%" equ "1" set OPCACHE_OPTS=-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit=tracing rem work-around for failing to dl(mysqli) with OPcache (https://github.com/php/php-src/issues/8508) if "%OPCACHE%" equ "1" set OPCACHE_OPTS=%OPCACHE_OPTS% -d extension=mysqli diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 04ecbb83c74..0e650bf2276 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -383,10 +383,6 @@ jobs: echo opcache.jit_max_root_traces=100000 >> /etc/php.d/opcache.ini echo opcache.jit_max_side_traces=100000 >> /etc/php.d/opcache.ini echo opcache.jit_max_exit_counters=100000 >> /etc/php.d/opcache.ini - echo opcache.jit_hot_loop=1 >> /etc/php.d/opcache.ini - echo opcache.jit_hot_func=1 >> /etc/php.d/opcache.ini - echo opcache.jit_hot_return=1 >> /etc/php.d/opcache.ini - echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini echo memory_limit=-1 >> /etc/php.d/opcache.ini php -v - name: Test AMPHP diff --git a/.travis.yml b/.travis.yml index b404096e515..b29b9b56510 100644 --- a/.travis.yml +++ b/.travis.yml @@ -85,7 +85,7 @@ before_script: # Run PHPs run-tests.php script: - - travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit_hot_loop=1 -d opcache.jit_hot_func=1 -d opcache.jit_hot_return=1 -d opcache.jit_hot_side_exit=1 + - travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 - sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");' after_success: