mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
The aim of this PR is twofold:
- Reduce the number of highly similar TMP|VAR handlers
- Avoid ZVAL_DEREF in most of these cases
This is achieved by guaranteeing that all zend_compile_expr() calls, as well as
all other compile calls with BP_VAR_{R,IS}, will result in a TMP variable. This
implies that the result will not contain an IS_INDIRECT or IS_REFERENCE value,
which was mostly already the case, with two exceptions:
- Calls to return-by-reference functions. Because return-by-reference functions
are quite rare, this is solved by delegating the DEREF to the RETURN_BY_REF
handler, which will examine the stack to check whether the caller expects a
VAR or TMP to understand whether the DEREF is needed. Internal functions will
also need to adjust by calling the zend_return_unwrap_ref() function.
- By-reference assignments, including both $a = &$b, as well as $a = [&$b]. When
the result of these expressions is used in a BP_VAR_R context, the reference
is unwrapped via a ZEND_QM_ASSIGN opcode beforehand. This is exceptionally
rare.
Closes GH-20628
78 lines
1.5 KiB
PHP
78 lines
1.5 KiB
PHP
--TEST--
|
|
Basic print functionality
|
|
--INI--
|
|
opcache.enable_cli=0
|
|
--PHPDBG--
|
|
p foo
|
|
p class \Foo\bar
|
|
p
|
|
p e
|
|
q
|
|
--EXPECTF--
|
|
[Successful compilation of %s]
|
|
prompt> [User Function foo (8 ops)]
|
|
|
|
foo:
|
|
; (lines=8, args=1, vars=1, tmps=%d)
|
|
; %s:14-16
|
|
L0014 0000 CV0($baz) = RECV 1
|
|
L0015 0001 INIT_FCALL %d %d string("var_dump")
|
|
L0015 0002 INIT_FCALL %d %d string("strrev")
|
|
L0015 0003 SEND_VAR CV0($baz) 1
|
|
L0015 0004 T1 = DO_ICALL
|
|
L0015 0005 SEND_VAL T1 1
|
|
L0015 0006 DO_ICALL
|
|
L0016 0007 RETURN null
|
|
prompt> [User Class: Foo\Bar (2 methods)]
|
|
|
|
Foo\Bar::Foo:
|
|
; (lines=5, args=1, vars=1, tmps=%d)
|
|
; %s:5-7
|
|
L0005 0000 CV0($bar) = RECV 1
|
|
L0006 0001 INIT_NS_FCALL_BY_NAME 1 string("Foo\\var_dump")
|
|
L0006 0002 SEND_VAR_EX CV0($bar) 1
|
|
L0006 0003 DO_FCALL
|
|
L0007 0004 RETURN null
|
|
|
|
Foo\Bar::baz:
|
|
; (lines=1, args=0, vars=0, tmps=%d)
|
|
; %s:9-9
|
|
L0009 0000 RETURN null
|
|
prompt> [Not Executing!]
|
|
prompt> [Context %s (9 ops)]
|
|
|
|
$_main:
|
|
; (lines=9, args=0, vars=0, tmps=%d)
|
|
; %s:1-21
|
|
L0018 0000 T0 = NEW 0 string("Foo\\Bar")
|
|
L0018 0001 DO_FCALL
|
|
L0018 0002 INIT_METHOD_CALL 1 T0 string("Foo")
|
|
L0018 0003 SEND_VAL_EX string("test \"quotes\"") 1
|
|
L0018 0004 DO_FCALL
|
|
L0019 0005 INIT_FCALL %d %d string("foo")
|
|
L0019 0006 SEND_VAL string("test") 1
|
|
L0019 0007 DO_FCALL
|
|
L0021 0008 RETURN int(1)
|
|
prompt>
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace Foo {
|
|
class Bar {
|
|
function Foo($bar) {
|
|
var_dump($bar);
|
|
}
|
|
|
|
function baz() { }
|
|
}
|
|
}
|
|
|
|
namespace {
|
|
function foo($baz) {
|
|
var_dump(strrev($baz));
|
|
}
|
|
|
|
(new \Foo\Bar)->Foo('test "quotes"');
|
|
foo("test");
|
|
}
|