History log of /PHP-7.1/Zend/zend_API.c (Results 176 – 200 of 828)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 70de6180 24-Aug-2014 Anatol Belski

fixes to %pd format usage


Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE
# b9a5db2b 21-Aug-2014 Dmitry Stogov

Fixed incorrect string length


Revision tags: php-5.5.16, php-5.4.32
# 8cda420f 20-Aug-2014 Dmitry Stogov

Fixed ext/pdo_*/tests/pdo_005.phpt tests failure


# 90d6f60b 17-Aug-2014 Anatol Belski

mostly fixes to spl, but also some other


# 864172d9 16-Aug-2014 Anatol Belski

further fixes to ext/standard and zend


# 1169de3e 16-Aug-2014 Anatol Belski

fix some cases with fast zpp


# b7e7a895 16-Aug-2014 Anatol Belski

several fixes -

- param parsing Z_PARAM_STR vs Z_PARAM_STRING
- some functions for new params
- etc


# cb25136f 16-Aug-2014 Anatol Belski

fix macros in the 5 basic extensions


# 8ee2a4a9 16-Aug-2014 Anatol Belski

first shot on merging the core fro the int64 branch


Revision tags: POST_PHPNG_MERGE, PRE_PHPNG_MERGE, php-5.6.0RC4, php-5.3.29
# dc70139d 11-Aug-2014 krakjoe

update zend_make_printable_zval to take TSRM context


Revision tags: php-5.5.16RC1, php-5.4.32RC1, php-5.3.29RC1, php-5.6.0RC3, php-5.5.15, php-5.4.31
# 42c4bcae 14-Jul-2014 Dmitry Stogov

Fixed ZTS build


# 27f38798 11-Jul-2014 Dmitry Stogov

Fast parameter parsing API

This API is experemental. It may be changed or removed.
It should be used only for really often used functions.
(Keep the original parsing code and wrap us

Fast parameter parsing API

This API is experemental. It may be changed or removed.
It should be used only for really often used functions.
(Keep the original parsing code and wrap usage with #ifndef FAST_ZPP)

show more ...


# 9d6e45a0 09-Jul-2014 Dmitry Stogov

Changed zend_make_printable_zval() to return "use_copy" instead of additional reference argument.
Improved branch prediction.


Revision tags: php-5.4.31RC1, php-5.5.15RC1
# 2ed8a170 07-Jul-2014 Dmitry Stogov

Refactored run_time_cache usage in object handlers


# c4d99ec9 02-Jul-2014 Dmitry Stogov

Removed EG(called_scope) and use corresponding value from EG(current_execute_data)


# 0a77dcd4 02-Jul-2014 Dmitry Stogov

Removed EG(in_execution). If EG(currentent_execute_data) is not NULL we are executing something.


# 63c057e3 02-Jul-2014 Dmitry Stogov

Removed EG(opline_ptr) and use corresponding value from EG(current_execute_data)


# 4b09dd69 02-Jul-2014 Dmitry Stogov

Removed EG(active_op_array) and use corresponding value from EG(current_execute_data)


# 412ad4b2 02-Jul-2014 Dmitry Stogov

Uinified call frame handling for user and internal functions.
Now EG(current_execute_data) always point to the call frame of the currently executed function.


Revision tags: php-5.6.0RC2
# b7715c7e 30-Jun-2014 Dmitry Stogov

Refactored parameter passing mechanism.

In PHP-5.6 and below each argument passed to user function was copies on VM stack twice.
Now we always have ZEND_INIT_FCALL (or simular) opcode th

Refactored parameter passing mechanism.

In PHP-5.6 and below each argument passed to user function was copies on VM stack twice.
Now we always have ZEND_INIT_FCALL (or simular) opcode that pushes "call frame" on top of VM stack.
"Call frame" is actually the same zend_execute_data structure.
All the following ZEND_SEND instructions push arguments on top of the stack in a way that they directly comes into corresponding CV variables of the called frame. Extra arguments are copied at the end of stack frame (after all CV and TMP variables) on function enterance.

There are two minor incompatibilities:
1) It's not allowed to decalre functions redefining arguments e.g. "function foo($a,$a) {}".
2) func_get_arg() and func_get args() return the current value of argument and not the original value that was sent.

show more ...


# f75c04ac 26-Jun-2014 Xinchen Hui

No need to initialize it


# a7ce96d0 26-Jun-2014 Xinchen Hui

More optimizations


# 64c5eb00 26-Jun-2014 Xinchen Hui

Let's assume the name is already lowercased


Revision tags: php-5.4.30, php-5.5.14
# 284141ca 24-Jun-2014 Xinchen Hui

Fixed _zend_get_parameters_array

it should not decrease the refcount (spotted by
register_shutdown_function in ext/mysqli/tests/bug49442.phpt)


Revision tags: php-5.6.0RC1
# e1b18e59 17-Jun-2014 Dmitry Stogov

Use arena allocator for zend_class_entry, zend_op_array and zend_property_info that live till the end of request


12345678910>>...34