mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
The block optimizer pass allows the use of sources of the preceding block if the block is a follower and not a target. This causes issues when trying to remove FREE instructions: if the source is not in the block of the FREE, then the FREE and source are still removed. Therefore the other successor blocks, which must consume or FREE the temporary, will still contain the FREE opline. This opline will now refer to a temporary that doesn't exist anymore, which most of the time results in a crash. For these kind of non-local scenarios, we'll let the SSA based optimizations handle those cases. Closes GH-11251.
34 lines
693 B
PHP
34 lines
693 B
PHP
--TEST--
|
|
GH-11245: In some specific cases SWITCH with one default statement will cause segfault (VAR variation)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=0x7FFFBFFF
|
|
opcache.opt_debug_level=0x20000
|
|
opcache.preload=
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
function xx() { return "somegarbage"; }
|
|
switch (xx()) {
|
|
default:
|
|
if (!empty($xx)) {return;}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
$_main:
|
|
; (lines=4, args=0, vars=1, tmps=1)
|
|
; (after optimizer)
|
|
; %s
|
|
0000 T1 = ISSET_ISEMPTY_CV (empty) CV0($xx)
|
|
0001 JMPNZ T1 0003
|
|
0002 RETURN null
|
|
0003 RETURN int(1)
|
|
|
|
xx:
|
|
; (lines=1, args=0, vars=0, tmps=0)
|
|
; (after optimizer)
|
|
; %s
|
|
0000 RETURN string("somegarbage")
|