File tree 6 files changed +14
-14
lines changed
6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -220,9 +220,9 @@ arm_task:
220
220
-d zend_extension=opcache.so
221
221
-d opcache.enable_cli=1
222
222
-d opcache.jit_buffer_size=64M
223
- -d opcache.jit_max_root_traces=1000000
224
- -d opcache.jit_max_side_traces=1000000
225
- -d opcache.jit_max_exit_counters=1000000
223
+ -d opcache.jit_max_root_traces=100000
224
+ -d opcache.jit_max_side_traces=100000
225
+ -d opcache.jit_max_exit_counters=100000
226
226
-d opcache.jit_hot_loop=1
227
227
-d opcache.jit_hot_func=1
228
228
-d opcache.jit_hot_return=1
Original file line number Diff line number Diff line change 44
44
-d opcache.jit=${{ inputs.jitType }} \
45
45
-d opcache.protect_memory=1 \
46
46
-d opcache.jit_buffer_size=64M \
47
- -d opcache.jit_max_root_traces=1000000 \
48
- -d opcache.jit_max_side_traces=1000000 \
49
- -d opcache.jit_max_exit_counters=1000000 \
47
+ -d opcache.jit_max_root_traces=100000 \
48
+ -d opcache.jit_max_side_traces=100000 \
49
+ -d opcache.jit_max_exit_counters=100000 \
50
50
-d opcache.jit_hot_loop=1 \
51
51
-d opcache.jit_hot_func=1 \
52
52
-d opcache.jit_hot_return=1 \
Original file line number Diff line number Diff line change 23
23
-d opcache.jit=${{ inputs.jitType }} \
24
24
-d opcache.protect_memory=1 \
25
25
-d opcache.jit_buffer_size=64M \
26
- -d opcache.jit_max_root_traces=1000000 \
27
- -d opcache.jit_max_side_traces=1000000 \
28
- -d opcache.jit_max_exit_counters=1000000 \
26
+ -d opcache.jit_max_root_traces=100000 \
27
+ -d opcache.jit_max_side_traces=100000 \
28
+ -d opcache.jit_max_exit_counters=100000 \
29
29
-d opcache.jit_hot_loop=1 \
30
30
-d opcache.jit_hot_func=1 \
31
31
-d opcache.jit_hot_return=1 \
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ set OPENSSL_CONF=
83
83
rem set SSLEAY_CONF=
84
84
85
85
rem prepare for OPcache
86
- 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=1000000 -d opcache.jit_max_side_traces=1000000 -d opcache.jit_max_exit_counters=1000000 -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
86
+ 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
87
87
rem work-around for failing to dl(mysqli) with OPcache (https://github.com/php/php-src/issues/8508)
88
88
if " %OPCACHE% " equ " 1" set OPCACHE_OPTS = %OPCACHE_OPTS% -d extension=mysqli
89
89
Original file line number Diff line number Diff line change @@ -380,9 +380,9 @@ jobs:
380
380
echo opcache.enable_cli=1 >> /etc/php.d/opcache.ini
381
381
echo opcache.protect_memory=1 >> /etc/php.d/opcache.ini
382
382
echo opcache.jit_buffer_size=1G >> /etc/php.d/opcache.ini
383
- echo opcache.jit_max_root_traces=1000000 >> /etc/php.d/opcache.ini
384
- echo opcache.jit_max_side_traces=1000000 >> /etc/php.d/opcache.ini
385
- echo opcache.jit_max_exit_counters=1000000 >> /etc/php.d/opcache.ini
383
+ echo opcache.jit_max_root_traces=100000 >> /etc/php.d/opcache.ini
384
+ echo opcache.jit_max_side_traces=100000 >> /etc/php.d/opcache.ini
385
+ echo opcache.jit_max_exit_counters=100000 >> /etc/php.d/opcache.ini
386
386
echo opcache.jit_hot_loop=1 >> /etc/php.d/opcache.ini
387
387
echo opcache.jit_hot_func=1 >> /etc/php.d/opcache.ini
388
388
echo opcache.jit_hot_return=1 >> /etc/php.d/opcache.ini
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ before_script:
85
85
86
86
# Run PHPs run-tests.php
87
87
script :
88
- - travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=1000000 -d opcache.jit_max_side_traces=1000000 -d opcache.jit_max_exit_counters=1000000 -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
88
+ - 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
89
89
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
90
90
91
91
after_success :
You can’t perform that action at this time.
0 commit comments