History log of /PHP-8.0/Zend/zend_vm_execute.h (Results 251 – 275 of 1857)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 78a1d769 15-Feb-2019 Dmitry Stogov

Reduce slow code size


# adf2f397 14-Feb-2019 Nikita Popov

Fix build without global regs


# 626bc3a2 12-Feb-2019 Dmitry Stogov

More accurate handling of global registers (allow VM with single global register)


# a302d116 26-Nov-2018 Nikita Popov

Don't silence fatal errors with @


# bb3a3c15 07-Feb-2019 Dmitry Stogov

Simplify checks


# f45e0ce9 07-Feb-2019 Dmitry Stogov

Remove ZEND_OVERLOADED_FUNCTION and corresponding call_method object handler


# 1a4ffcd2 07-Feb-2019 Nikita Popov

Fix DIM_OBJ specialization in zend_vm_get_opcode_handler_func

DIM_OBJ also specializes over ASSIGN_STATIC_PROP nowadays.


# 1a304d35 01-Feb-2019 Dmitry Stogov

More accurate get_properties() usage.


# b7f05885 01-Feb-2019 Dmitry Stogov

Reuse cache_slot


# 91ef4124 31-Jan-2019 Dmitry Stogov

Refactor zend_object_handlers API to pass zend_object* and zend_string* insted of zval(s).


# 340c6d39 31-Jan-2019 Nikita Popov

Revert "Don't silence fatal errors with @"

This reverts commit abd36289e26cc0365e82373699aba4c1ffff464d.

This wasn't ready for merging yet, there are still some test
failures.


# abd36289 26-Nov-2018 Nikita Popov

Don't silence fatal errors with @


# a81202ac 30-Jan-2019 Zeev Suraski

Adios, yearly copyright ranges


# 02557f87 30-Jan-2019 Zeev Suraski

Adios, yearly copyright ranges


# 6c73b50c 29-Jan-2019 Nikita Popov

Remove static calls to non-static methods


# a50198d0 15-Jan-2019 Nikita Popov

Implement ??= operator

RFC: https://wiki.php.net/rfc/null_coalesce_equal_operator

$a ??= $b is $a ?? ($a = $b), with the difference that $a is only
evaluated once, to the degree

Implement ??= operator

RFC: https://wiki.php.net/rfc/null_coalesce_equal_operator

$a ??= $b is $a ?? ($a = $b), with the difference that $a is only
evaluated once, to the degree that this is possible. In particular
in $a[foo()] ?? $b function foo() is only ever called once.
However, the variable access themselves will be reevaluated.

show more ...


# 0941f258 17-Jan-2019 Dmitry Stogov

Removed useless Z_REFCOUNTED_P() checks.


# 8661b6dd 16-Jan-2019 Dmitry Stogov

Reduce slow code size


# fd27fd4a 16-Jan-2019 Dmitry Stogov

Fixed and improved incorrect usage of value_type argument.


# 0b21a4ba 15-Jan-2019 Dmitry Stogov

Separated zend_assign_to_typed_prop()


# cd43a462 15-Jan-2019 Anatol Belski

Fix param list for build without global reg


# 938ba93f 15-Jan-2019 Dmitry Stogov

Separated zend_binary_assign_op_typed_ref() and zend_binary_assign_op_typed_prop() helpers


# 239305d1 15-Jan-2019 Dmitry Stogov

Fixed uninitialized result of PRE_INC/PRE_DEC in case of exception.
Separated increment/decrement of typed reference into helper.


# 92045053 14-Jan-2019 Dmitry Stogov

Fixed bug #77263 (Segfault when using 2 RecursiveFilterIterator)


# e219ec14 07-Jan-2019 Nikita Popov

Implement typed properties

RFC: https://wiki.php.net/rfc/typed_properties_v2

This is a squash of PR #3734, which is a squash of PR #3313.

Co-authored-by: Bob Weinand <bobwe

Implement typed properties

RFC: https://wiki.php.net/rfc/typed_properties_v2

This is a squash of PR #3734, which is a squash of PR #3313.

Co-authored-by: Bob Weinand <bobwei9@hotmail.com>
Co-authored-by: Joe Watkins <krakjoe@php.net>
Co-authored-by: Dmitry Stogov <dmitry@zend.com>

show more ...


1...<<11121314151617181920>>...75