Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - MFH: Removed some TSRMLS_FETCH()s | Felipe Pena | 2008-08-15 | 1 | -8/+6 | |
| | ||||||
* | - MFH Improve exception linking | Marcus Boerger | 2008-08-14 | 1 | -12/+9 | |
| | ||||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 1 | -6/+6 | |
| | ||||||
* | MFH: Add E_USER_DEPRECATED (patch by Lars Strojny) | Hannes Magnusson | 2008-07-21 | 1 | -0/+1 | |
| | ||||||
* | implemented again zend-multibyte for PHP 5.3 | Rui Hirokawa | 2008-06-29 | 1 | -0/+3 | |
| | ||||||
* | Lazy EG(active_symbol_table) initialization | Dmitry Stogov | 2008-04-29 | 1 | -0/+3 | |
| | ||||||
* | Fixed bug #44226 (Throwing an exception causes crash in multithreaded SAPI) | Dmitry Stogov | 2008-04-17 | 1 | -0/+24 | |
| | ||||||
* | Optimized ZEND_RETURN opcode to not allocate and copy return value if it is not | Dmitry Stogov | 2008-04-11 | 1 | -9/+1 | |
| | | | | | used. | |||||
* | Make the sigsetjmp change more robust. On systems that don't have | Rasmus Lerdorf | 2008-03-18 | 1 | -1/+1 | |
| | | | | | | | sigsetjmp use setjmp. Windows is of course weird in that it seems to have sigsetjmp but not sigjmp_buf (??) so force it to use setjmp in config.w32.h.in | |||||
* | Use sigsetjmp and siglongjmp instead of setjmp/longjmp in order to be | Rasmus Lerdorf | 2008-03-18 | 1 | -1/+1 | |
| | | | | | | | | | consistent in how we deal with the signal mask. POSIX doesn't specify what to do with the signal mask in setjmp/longjmp which has resulted in the signal mask getting saved on *BSD and not getting saved on Linux. Making the behaviour explicit via sigsetjmp/siglongjmp gives us consistency and saves expensive sigprocmask() syscalls on *BSD. | |||||
* | MFH: Dropped zend.ze1_compatibility_mode | Felipe Pena | 2008-03-18 | 1 | -1/+0 | |
| | | | | | [DOC] | |||||
* | Implemented concept of "delayed early binding" that allows opcode caches to ↵ | Dmitry Stogov | 2008-03-18 | 1 | -10/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo-code explains how it should be used in opcode cache. function cache_compile_file($filename) { if (!is_cached($filename)) { ... orig_compiler_options = CG(compiler_optins); CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES | ZEND_COMPILE_DELAYED_BINDING; $op_array = orig_compile_file($filename); CG(compiler_options) = orig_copiler_options; ... } else { $op_array = restore_from_cache($filename); } zend_do_delayed_early_binding($op_array); } | |||||
* | - Rewrite scanner to be based on re2c instead of flex | Marcus Boerger | 2008-03-16 | 1 | -21/+14 | |
| | | | | | | | | | The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt | |||||
* | User error handlers no longer catch supressed errors (patch by Etienne Kneuss) | Felipe Pena | 2008-03-08 | 1 | -1/+2 | |
| | ||||||
* | Optimized require_once() and include_once() by eliminationg open() syscall ↵ | Dmitry Stogov | 2008-03-05 | 1 | -0/+2 | |
| | | | | on second usage. | |||||
* | - MFH Add E_DEPRECATED (Lars Strojny, Felipe Pena, Marcus) | Marcus Boerger | 2008-02-23 | 1 | -1/+2 | |
| | | | | | [DOC] Finally added deprecation messages | |||||
* | - MFH: Send the debug info to stderr instead of stdout. | Derick Rethans | 2008-01-28 | 1 | -11/+11 | |
| | ||||||
* | - MFH: Show GC statistics if GC benchmarking is enabled. | Derick Rethans | 2008-01-24 | 1 | -0/+14 | |
| | | | | | #- Discussed this with Dmitry. | |||||
* | Added garbage collector | Dmitry Stogov | 2008-01-22 | 1 | -0/+20 | |
| | ||||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -2/+2 | |
| | ||||||
* | - MFH from HEAD: | Jani Taskinen | 2007-11-02 | 1 | -235/+238 | |
| | | | | | | | | | | | | . Folding tags . Parameter parsing . SPL debug info . array function improvements (not all yet) . Improvements to function calling with call_user_* functions . Improvements to debugging info in var_dump/print_r # I propably forgot already something but this all was pretty close tied # to each other so it wasn't possible to do it in parts. | |||||
* | - MFH debug object helper | Marcus Boerger | 2007-10-11 | 1 | -18/+21 | |
| | ||||||
* | MFH: Added macros for managing zval refcounts and is_ref statuses | Yiduo (David) Wang | 2007-10-07 | 1 | -3/+3 | |
| | ||||||
* | MFH: Fixed compiler warnings | Jani Taskinen | 2007-07-21 | 1 | -2/+2 | |
| | ||||||
* | MFH: fix build on Tru64 | Antony Dovgal | 2007-04-26 | 1 | -1/+1 | |
| | ||||||
* | fix #40815 (using strings like "class::func" and static methods in ↵ | Antony Dovgal | 2007-03-15 | 1 | -0/+3 | |
| | | | | set_exception_handler() might result in crash) | |||||
* | - Avoid sprintf, even when checked copy'n'paste or changes lead to errors | Marcus Boerger | 2007-02-24 | 1 | -5/+3 | |
| | ||||||
* | Fixed bug #39969 (ini setting short_open_tag has no effect when using ↵ | Dmitry Stogov | 2007-01-12 | 1 | -4/+22 | |
| | | | | --enable-maintainer-zts) | |||||
* | Fixed bug #35634 (Erroneous "Class declarations may not be nested" error ↵ | Dmitry Stogov | 2007-01-11 | 1 | -1/+18 | |
| | | | | raised). (Carl P. Corliss) | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -2/+2 | |
| | ||||||
* | that was not intentional | Antony Dovgal | 2006-12-28 | 1 | -2/+2 | |
| | | | | | thanks Nuno | |||||
* | MFH | Antony Dovgal | 2006-12-28 | 1 | -11/+2 | |
| | ||||||
* | is_numeric_string() optimization | Ilia Alshanetsky | 2006-12-26 | 1 | -1/+1 | |
| | | | | | # Original Patch by Matt Wilmas | |||||
* | MFH: use BSD licensed implementation of double-to-string utilities instead ↵ | Antony Dovgal | 2006-12-06 | 1 | -0/+2 | |
| | | | | | | | of LGPL one this patch also fixes thread safety issues in zend_strtod() | |||||
* | Fixed bug #39344 (Unnecessary calls to OnModify callback routine for an ↵ | Dmitry Stogov | 2006-11-08 | 1 | -3/+4 | |
| | | | | extension INI directive). (wharmby at uk dot ibm dot com, Dmitry) | |||||
* | - MFH: Fix issue with some mangeled properties | Marcus Boerger | 2006-11-03 | 1 | -2/+2 | |
| | ||||||
* | Fixed bug #39140 (Uncaught exception may cause crash) | Dmitry Stogov | 2006-10-16 | 1 | -0/+2 | |
| | ||||||
* | MFH(r-1.376): Preserve EG(return_value_ptr_ptr) when calling ↵ | Sara Golemon | 2006-10-06 | 1 | -0/+3 | |
| | | | | | | | zend_execute_scripts() Reapplying this since it looks like we'll be doing a PHP 5.2 RC6 after all | |||||
* | Revert until 5.2's release since we're in RC stage | Sara Golemon | 2006-10-06 | 1 | -3/+0 | |
| | ||||||
* | MFH(r-1.376): Preserve EG(return_value_ptr_ptr) when calling ↵ | Sara Golemon | 2006-10-05 | 1 | -0/+3 | |
| | | | | zend_execute_scripts() | |||||
* | MFH: fix #38779 (engine crashes when require()'ing file with syntax error ↵ | Antony Dovgal | 2006-09-11 | 1 | -0/+1 | |
| | | | | through userspace stream wrapper) | |||||
* | Use proper write callback | Ilia Alshanetsky | 2006-08-19 | 1 | -1/+1 | |
| | ||||||
* | - Better fix for #34505 and related, drop zend_unmangle_property_name_ex() | Marcus Boerger | 2006-07-24 | 1 | -1/+1 | |
| | ||||||
* | fetch tsrm_ls, don't use it uninitialized | Antony Dovgal | 2006-07-19 | 1 | -1/+1 | |
| | ||||||
* | New memory manager | Dmitry Stogov | 2006-07-18 | 1 | -17/+1 | |
| | ||||||
* | MFH: initialize EG(exit_status) in ZTS mode | Antony Dovgal | 2006-07-12 | 1 | -0/+1 | |
| | ||||||
* | MFH: Added hook for compile_string() | Stefan Esser | 2006-06-13 | 1 | -0/+1 | |
| | ||||||
* | Make zend_print_zval_r_ex() use the write callback function. | Ilia Alshanetsky | 2006-06-11 | 1 | -22/+31 | |
| | ||||||
* | Restore ZE1 compatibility mode (Zend Engine part - the modules patches | Zeev Suraski | 2006-06-05 | 1 | -0/+1 | |
| | | | | | will follow later today) | |||||
* | SAPI globals are destroied at this point and reporting errors about memory ↵ | Dmitry Stogov | 2006-06-02 | 1 | -1/+1 | |
| | | | | leaks can cause crash. |