#
cbbaea08 |
| 29-Jan-2015 |
Andrea Faulds |
Fix merge error
|
Revision tags: php-5.5.21RC1, php-5.6.5RC1 |
|
#
75a225d0 |
| 27-Dec-2014 |
Andrea Faulds |
Do not make scalar type hints reserved words, merely reserve class name
|
Revision tags: POST_NATIVE_TLS_MERGE, PRE_NATIVE_TLS_MERGE, php-5.5.20, php-5.4.36, php-5.6.4 |
|
#
c3c0f531 |
| 13-Dec-2014 |
Andrea Faulds |
Scalar type hints with ZPP casting rules
|
#
e9f99e3d |
| 09-Feb-2015 |
Márcio Almada |
Márcio Almada remove dead tokens: T_CHARACTER, T_BAD_CHARACTER.
|
#
d8b7a448 |
| 19-Jan-2015 |
Andrea Faulds |
Fix associativity to match Perl
|
#
797dee59 |
| 19-Jan-2015 |
Andrea Faulds |
Blast off to space.
|
#
c8576c5a |
| 08-Jan-2015 |
Levi Morrison |
Implement return types RFC is documented here: https://wiki.php.net/rfc/return_types
|
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, php-5.4.34, php-5.5.18RC1, php-5.6.1, php-5.6.2, php-5.4.33, php-5.5.17, php-5.6.1RC1 |
|
#
4d3e4d3b |
| 10-Sep-2014 |
Nikita Popov |
Remove assignment of new by reference
|
#
fc33f52d |
| 15-Jan-2015 |
Xinchen Hui |
bump year
|
#
0579e827 |
| 15-Jan-2015 |
Xinchen Hui |
bump year
|
#
73c1be26 |
| 15-Jan-2015 |
Xinchen Hui |
Bump year
|
#
b7a7b1a6 |
| 03-Jan-2015 |
Stanislav Malyshev |
trailing whitespace removal
|
#
d51fb69c |
| 05-Dec-2014 |
Guilherme Blanco |
Removed parsing support traits to have extends and implements.
|
#
f48c2327 |
| 01-Dec-2014 |
Guilherme Blanco |
Decoupled class declaration statement into more granular pieces.
|
#
bdeb220f |
| 13-Dec-2014 |
Anatol Belski |
first shot remove TSRMLS_* things
|
#
094d409b |
| 22-Nov-2014 |
Guilherme Blanco |
Removed ZEND_ACC_FINAL_CLASS which is unnecessary. This also fixed some currently defined classes as final which were just not being considered as such before.
|
#
c6d0c55a |
| 07-Dec-2014 |
Nikita Popov |
Fix arrow operator precedence I accidentially added => as the highest-precedence operator...
|
#
cf581178 |
| 28-Oct-2014 |
Anatol Belski |
fix "inconsistent dll linkage" warning caused by bison stdlib.h might not be always using _STDLIB_H, that will move bison to redeclare the malloc/free prototypes.
|
#
d9d16d2e |
| 28-Oct-2014 |
Anatol Belski |
fix datatype mismatch warnings
|
#
c00424e4 |
| 15-Oct-2014 |
Anatol Belski |
bring back all the TSRMLS_FETCH() stuff for better comparability with the mainstream
|
#
06d0230a |
| 26-Sep-2014 |
Anatol Belski |
cleanup TSRMLS_FETCH
|
#
d11734b4 |
| 25-Sep-2014 |
Anatol Belski |
reworked the patch, less new stuff but worky TLS is already used in TSRM, the way exporting the tsrm cache through a thread local variable is not portable. Additionally, the current
reworked the patch, less new stuff but worky TLS is already used in TSRM, the way exporting the tsrm cache through a thread local variable is not portable. Additionally, the current patch suffers from bugs which are hard to find, but prevent it to be worky with apache. What is done here is mainly uses the idea from the RFC patch, but - __thread variable is removed - offset math and declarations are removed - extra macros and definitions are removed What is done merely is - use an inline function to access the tsrm cache. The function uses the portable tsrm_tls_get macro which is cheap - all the TSRM_* macros are set to placebo. Thus this opens the way remove them later Except that, the logic is old. TSRMLS_FETCH will have to be done once per thread, then tsrm_get_ls_cache() can be used. Things seeming to be worky are cli, cli server and apache. I also tried to enable bz2 shared and it has worked out of the box. The change is yet minimal diffing to the current master bus is a worky start, IMHO. Though will have to recheck the other previously done SAPIs - embed and cgi. The offsets can be added to the tsrm_resource_type struct, then it'll not be needed to declare them in the userspace. Even the "done" member type can be changed to int16 or smaller, then adding the offset as int16 will not change the struct size. As well on the todo might be removing the hashed storage, thread_id != thread_id and linked list logic in favour of the explicit TLS operations.
show more ...
|
#
b3aebda9 |
| 20-Sep-2014 |
krakjoe |
native tls initial patch
|
#
69e7c9d8 |
| 16-Sep-2014 |
Nikita Popov |
Initial coalesce operator implementation
|
Revision tags: php-5.5.17RC1, php-5.4.33RC1 |
|
#
545fd516 |
| 29-Aug-2014 |
Nikita Popov |
Don't distinguish between ast/list in parser This removes the need to use $<ast>{n} or $<list>$ casts in the reduction actions. Keeping the distinction in the parser doesn't rea
Don't distinguish between ast/list in parser This removes the need to use $<ast>{n} or $<list>$ casts in the reduction actions. Keeping the distinction in the parser doesn't really give us any benefit and only makes changing the grammar harder.
show more ...
|