|
Hi, derick
I try to fix this bug.
First I found you add ZEND_QM_ASSIGN overloaded by this issue fix: https://bugs.xdebug.org/view.php?id=1414.
I try to reproduce 0001414, but I found normal variable assignment always use ZEND_ASSIGN(both php7.0.22 and php7.1.9 with opcache enable).
In php7.1.9 with opcache, there are not ZEND_QM_ASSIGN:
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:3 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:3 ZEND_ASSIGN
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:5 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:5 ZEND_ASSIGN
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:7 ZEND_RETURN
and the opcache log:
Wed Sep 27 17:32:35 2017 (24236): Message Cached script '/home/rokety/Github/xdebug/test.php'
Wed Sep 27 17:32:35 2017 (24236): Message Cached script '/home/rokety/t.php'
In php7.0.22 with opcache:
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_QM_ASSIGN
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:2 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:3 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:3 ZEND_ASSIGN
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_QM_ASSIGN
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:4 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:5 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:5 ZEND_ASSIGN
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_STMT
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_FCALL_BEGIN
/home/rokety/t.php:2 ZEND_EXT_STMT
/home/rokety/t.php:2 ZEND_ASSIGN
/home/rokety/t.php:3 ZEND_EXT_STMT
/home/rokety/t.php:3 ZEND_PRE_INC
/home/rokety/t.php:4 ZEND_EXT_STMT
/home/rokety/t.php:4 ZEND_QM_ASSIGN
/home/rokety/t.php:4 ZEND_ASSIGN
/home/rokety/t.php:5 ZEND_RETURN
/home/rokety/Github/xdebug/test.php:6 ZEND_EXT_FCALL_END
/home/rokety/Github/xdebug/test.php:7 ZEND_RETURN
and the opcache log:
Wed Sep 27 17:38:30 2017 (27745): Message Cached script '/home/rokety/Github/xdebug/test.php'
Wed Sep 27 17:38:30 2017 (27745): Message Added key 'test.php:170192:170248'
Wed Sep 27 17:38:30 2017 (27745): Message Cached script '/home/rokety/t.php' |