#
2d069f64 |
| 27-Sep-2014 |
Andrea Faulds |
Merge branch 'coalesce_operator' * coalesce_operator: Extended coalesce operator test case for ordering/short-circuiting Ensure not evaluated twice Added test Initial
Merge branch 'coalesce_operator' * coalesce_operator: Extended coalesce operator test case for ordering/short-circuiting Ensure not evaluated twice Added test Initial coalesce operator implementation
show more ...
|
Revision tags: php-5.6.2 |
|
#
06103d65 |
| 23-Sep-2014 |
Dmitry Stogov |
Use zval_ptr_dtor_nogc() to free IS_TMP_VAR operands. Removed ZEND_SWITCH_FREE opcode (ZEND_FREE used instead). |
Revision tags: php-5.4.33 |
|
#
69e7c9d8 |
| 16-Sep-2014 |
Nikita Popov |
Initial coalesce operator implementation |
Revision tags: php-5.5.17, 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) |
Revision tags: php-5.5.17RC1, php-5.4.33RC1, php-5.6.0, POST_AST_MERGE, PRE_AST_MERGE, POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE, php-5.5.16, php-5.4.32, 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 |
|
#
af7cb169 |
| 14-Jul-2014 |
Dmitry Stogov |
Implemented builtin instruction for strlen() |
#
7dfb4f6b |
| 14-Jul-2014 |
Dmitry Stogov |
Implemented builtin instruction for type check functions - is_*() |
#
6c8db864 |
| 11-Jul-2014 |
Dmitry Stogov |
Implemented builtin instruction for strlen() |
#
de306e70 |
| 10-Jul-2014 |
Dmitry Stogov |
Implement call_user_func() and call_user_func_array() using special opcodes. In some rare cases it leads to insignificant changes in error messages. |
Revision tags: php-5.4.31RC1, php-5.5.15RC1 |
|
#
b36aaea6 |
| 07-Jul-2014 |
Dmitry Stogov |
ZEND_SEND_VAR and ZEND_SEND_VAL specialization |
#
c2910334 |
| 07-Jul-2014 |
Stanislav Malyshev |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Make sure the generator script also creates a newline at the end of file Add newline at end of file to prevent compilation warning
|
Revision tags: php-5.6.0RC2 |
|
#
c5fec9e0 |
| 30-Jun-2014 |
Lior Kaplan |
Add newline at end of file to prevent compilation warning The newline was removed at commit 50d50c2f |
#
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, php-5.6.0RC1, php-5.5.14RC1, php-5.4.30RC1 |
|
#
e499c3d2 |
| 06-Jun-2014 |
Dmitry Stogov |
Introduced new BIND_GLOBAL instraction instead of FETCH_W+ASSIGN_REF pair that caused a lot of useles checks |
Revision tags: php-5.6.0beta4, php-5.4.29, php-5.5.13, php-5.5.13RC1, php-5.6.0beta3, php-5.4.29RC1, php-5.6.0beta2, php-5.5.12, php-5.4.28, php-5.4.28RC1, php-5.5.12RC1, php-5.6.0beta1, php-5.4.27, php-5.5.11, php-5.5.11RC1, php-5.4.27RC1, php-5.5.10, php-5.4.26, php-5.6.0alpha3, php-5.4.26RC1, php-5.5.10RC1, php-5.6.0alpha2, php-5.5.9, php-5.4.25, php-5.5.9RC1, php-5.4.25RC1, php-5.6.0alpha1, php-5.5.8, php-5.4.24, php-5.4.24RC1, php-5.5.8RC1, php-5.5.7, php-5.4.23, php-5.3.28, php-5.5.7RC1, php-5.4.23RC1 |
|
#
aff56f3c |
| 19-Nov-2013 |
datibbaw |
add T_POW (**) operator Fixed recognition of the operator Added opcode, still doing multiply instead of pow() opcode now always returns int(42) The right answer, b
add T_POW (**) operator Fixed recognition of the operator Added opcode, still doing multiply instead of pow() opcode now always returns int(42) The right answer, but always a float Yanked code from pow() implementation. Should not handle negative long as exponent ourselves Added test cases from pow() Moved precedence higher than '~' Added GMP operator overloading Added ZEND_ASSIGN_POW (**=) operator. Added pow() as a language construct. Adjusted test cases for changed precedence. Reduced pow() to shell function around ZEND_API pow_function() Reduced test case to only contain edge cases Added overloading test case Moved unary minus above T_POW Revert "Added pow() as a language construct." Bad bad bad idea. This reverts commit f60b98cf7a8371233d800a6faa286ddba4432d02. Reverted unary minus behaviour due to previous revert. Convert arrays to int(0) Exponent with array as a base becomes int(0) Rebase against master Fixed tokenizer test case
show more ...
|
#
aba775fd |
| 26-Dec-2013 |
Xinchen Hui |
Fixed warning "No new line at end of file" |
Revision tags: php-5.4.22, php-5.5.6, php-5.4.22RC1, php-5.5.6RC1, php-5.4.21, php-5.5.5, php-5.4.21RC1, php-5.5.5RC1, php-5.5.4, php-5.4.20, php-5.5.4RC1, php-5.4.20RC1 |
|
#
2c47dfba |
| 29-Aug-2013 |
Nikita Popov |
Implement argument unpacking RFC: https://wiki.php.net/rfc/argument_unpacking |
#
c081ce62 |
| 03-Jan-2014 |
Xinchen Hui |
Bump year |
#
47c90277 |
| 03-Jan-2014 |
Xinchen Hui |
Bump year |
#
c0d060f5 |
| 03-Jan-2014 |
Xinchen Hui |
Bump year |
#
704866d6 |
| 22-Dec-2013 |
krakjoe |
opcodes |
#
d455377f |
| 22-Dec-2013 |
krakjoe |
opcodes |
#
2a1b6056 |
| 22-Dec-2013 |
krakjoe |
Merge branch 'PHP-5.5' into PHP-5.6 * PHP-5.5: stop warnings from unused opcode map - BFN - Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries) patch by: mi
Merge branch 'PHP-5.5' into PHP-5.6 * PHP-5.5: stop warnings from unused opcode map - BFN - Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries) patch by: michael at orlitzky dot com Included new .c file in build too Fixed little typo in zend_vm_gen.php Moved to new file, killing a lot of warnings
show more ...
|
#
247ec0d8 |
| 22-Dec-2013 |
krakjoe |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: stop warnings from unused opcode map - BFN
|
#
b1df00a7 |
| 22-Dec-2013 |
krakjoe |
stop warnings from unused opcode map |
#
0dd27656 |
| 21-Dec-2013 |
Bob Weinand |
Merge branch 'PHP-5.4' into PHP-5.5 Conflicts: Zend/zend_vm_opcodes.h
|