#
dcfe5877 |
| 28-Nov-2014 |
Dmitry Stogov |
Rename EX_VAR_2() into ZEND_CALL_VAR() and EX_VAR_NUM_2() into ZEND_CALL_VAR_NUM().
|
#
216ef321 |
| 27-Nov-2014 |
Dmitry Stogov |
Changed "finally" handling. Removed EX(fast_ret) and EX(delayed_exception). Allocate and use additional IS_TMP_VAR slot on VM stack instead.
|
Revision tags: php-5.6.4RC1, php-5.5.20RC1, php-5.6.3, php-5.5.19, php-5.4.35, php-5.6.3RC1, php-5.5.19RC1, php-5.5.18 |
|
#
c00424e4 |
| 15-Oct-2014 |
Anatol Belski |
bring back all the TSRMLS_FETCH() stuff for better comparability with the mainstream
|
Revision tags: php-5.4.34, php-5.5.18RC1, php-5.6.1 |
|
#
06d0230a |
| 26-Sep-2014 |
Anatol Belski |
cleanup TSRMLS_FETCH
|
Revision tags: php-5.6.2 |
|
#
7cef08c5 |
| 23-Sep-2014 |
Dmitry Stogov |
Allocate copies of internal functions inherited in user classes at CG(arena), instead of permanent heap (malloc).
|
Revision tags: php-5.4.33 |
|
#
69e7c9d8 |
| 16-Sep-2014 |
Nikita Popov |
Initial coalesce operator implementation
|
Revision tags: php-5.5.17 |
|
#
383a0773 |
| 15-Sep-2014 |
Anatol Belski |
fix signed/unsigned mismatch
|
Revision tags: php-5.6.1RC1 |
|
#
82096dc1 |
| 11-Sep-2014 |
Dmitry Stogov |
Removed ZEND_QM_ASSIGN_VAR and ZEND_JMP_SET_VAR opcodes (in PHPNG they did exacly the same as ZEND_QM_ASSIGN and ZEND_JMP_SET)
|
#
9e753531 |
| 03-Sep-2014 |
Nikita Popov |
Use zval_ptr_dtor_nogc to destroy literals Also move the definition of zval_ptr_dtor_nogc to zend_variables.h (from zend_execute.h/.c) as it's used in a few places.
|
Revision tags: php-5.5.17RC1, php-5.4.33RC1 |
|
#
ee552b62 |
| 27-Aug-2014 |
Dmitry Stogov |
Reorder fields for better nenory consumtion and data locality on 64-bit systems
|
#
b1f53ca4 |
| 27-Aug-2014 |
Dmitry Stogov |
Use efree_size() instead of efree() where posible
|
Revision tags: php-5.6.0 |
|
#
59848e3f |
| 25-Aug-2014 |
Nikita Popov |
Remove ZEND_ACC_INTERACTIVE and CG(interactive) As far as I can discern these are leftovers of the interactive shell implementation that was used before PHP 5.4. Now the readline ext
Remove ZEND_ACC_INTERACTIVE and CG(interactive) As far as I can discern these are leftovers of the interactive shell implementation that was used before PHP 5.4. Now the readline ext makes use of normal eval calls for this. So, dropping these until there is evidence to the contrary, as they currently wouldn't work anyway.
show more ...
|
Revision tags: POST_AST_MERGE, PRE_AST_MERGE |
|
#
6f9f0bf2 |
| 25-Aug-2014 |
Anatol Belski |
master renames phase 2
|
#
c3e3c98e |
| 25-Aug-2014 |
Anatol Belski |
master renames phase 1
|
Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE, php-5.5.16, php-5.4.32 |
|
#
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, php-5.5.16RC1, php-5.4.32RC1, php-5.3.29RC1, php-5.6.0RC3, php-5.5.15, php-5.4.31 |
|
#
8ff00e6e |
| 19-Jul-2014 |
Xinchen Hui |
Improve fix for #66608
|
#
9ce1a36a |
| 19-Jul-2014 |
Xinchen Hui |
Fixed segfault with empty break
|
#
f604b61e |
| 19-Jul-2014 |
Xinchen Hui |
New added opcodes don't need to be resloved
|
#
de433d4c |
| 18-Jul-2014 |
Xinchen Hui |
Fixed bug #66608 (Incorrect behavior with nested "finally" blocks)
|
#
f589713c |
| 15-Jul-2014 |
Nikita Popov |
Preliminary function decl support Problem: __FUNCTION__ etc don't work anymore, due to lexer/parser interdependency.
|
Revision tags: php-5.4.31RC1, php-5.5.15RC1, php-5.6.0RC2 |
|
#
1d1226af |
| 01-Jul-2014 |
Xinchen Hui |
Suppress warning "cast from pointer to integer of different size"
|
#
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 ...
|
Revision tags: php-5.4.30, php-5.5.14 |
|
#
657762ee |
| 19-Jun-2014 |
Nikita Popov |
AST stage 2.4
|
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
|
Revision tags: php-5.5.14RC1 |
|
#
14e6ee7f |
| 11-Jun-2014 |
Dmitry Stogov |
Use absolute addresses as branch targets for NEW, FE_RESET and FE_FETCH
|