Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: | Matt Wilmas | 2009-06-04 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming | ||||
* | Fixed bug #48004 (Error handler prevents creation of default object) | Dmitry Stogov | 2009-04-21 | 1 | -4/+2 |
| | |||||
* | Fixed bug #48004 (Error handler prevents creation of default object) | Dmitry Stogov | 2009-04-21 | 1 | -10/+10 |
| | |||||
* | Inline only the most useful code | Dmitry Stogov | 2009-03-18 | 1 | -7/+7 |
| | |||||
* | Fixed bug #47704 (crashes on some "bad" operations with string offsets) | Dmitry Stogov | 2009-03-18 | 1 | -19/+5 |
| | | | | | Removed unnecessary checks | ||||
* | Fixed speed degradation on gcc-4.3 because of less agressive inlining | Dmitry Stogov | 2009-03-11 | 1 | -79/+67 |
| | |||||
* | MFH: | Felipe Pena | 2009-01-05 | 1 | -3/+3 |
| | | | | | | - Fixed bug #46701 (Creating associative array with long values in the key fails on 32bit linux) Patch by Shire | ||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | - MFH: Removed some TSRMLS_FETCH()s | Felipe Pena | 2008-08-15 | 1 | -4/+2 |
| | |||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 1 | -24/+24 |
| | |||||
* | Fixed bug #44660 (Indexed and reference assignment to propery of non-object ↵ | Dmitry Stogov | 2008-07-26 | 1 | -0/+1 |
| | | | | don't trigger warning) | ||||
* | Fixed crashes and memory leak for objects with NULL ↵ | Dmitry Stogov | 2008-07-26 | 1 | -0/+5 |
| | | | | write_property/has_property/unset_property handlers | ||||
* | Added support for lambda functions and closures | Dmitry Stogov | 2008-07-14 | 1 | -0/+1 |
| | |||||
* | Removed redundant code | Dmitry Stogov | 2008-07-01 | 1 | -16/+1 |
| | |||||
* | - Removed direct executor recursion. | Dmitry Stogov | 2008-06-11 | 1 | -22/+2 |
| | | | | | - Use fastcall calling convention in executor on x86. | ||||
* | MFH: Fixed bug #44681 (Resources used as array keys get converted to 0) | Matt Wilmas | 2008-05-09 | 1 | -3/+3 |
| | |||||
* | GC fix | Dmitry Stogov | 2008-05-06 | 1 | -6/+12 |
| | |||||
* | - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR) | Dmitry Stogov | 2008-05-05 | 1 | -16/+16 |
| | | | | | | - Fixed bug #44913 (Segfault when using return in combination with nested loops and continue 2) | ||||
* | Lazy EG(active_symbol_table) initialization | Dmitry Stogov | 2008-04-29 | 1 | -17/+37 |
| | |||||
* | Optimized handlers for ZEND_RECV and ZEND_RECV_INIT opocdes | Dmitry Stogov | 2008-04-24 | 1 | -9/+0 |
| | |||||
* | MFH: Dropped zend.ze1_compatibility_mode | Felipe Pena | 2008-03-18 | 1 | -89/+5 |
| | | | | | [DOC] | ||||
* | Cosmetics (removed space on error message) | Felipe Pena | 2008-03-08 | 1 | -4/+4 |
| | |||||
* | Fixed bug #39018 (Error control operator '@' fails to suppress ↵ | Felipe Pena | 2008-03-08 | 1 | -1/+3 |
| | | | | "Uninitialized string offset") | ||||
* | Fixed wrong result of cascading assignment to string offset | Dmitry Stogov | 2008-03-04 | 1 | -2/+3 |
| | | | | | | | Fixed memory corruption on cascading assignment of IS_TMP_VAR into string offset Fixed opcode caches shared memory corruption on cascading assignment of IS_CONST into string offset | ||||
* | Removed redundant refcount manipulations | Dmitry Stogov | 2008-02-18 | 1 | -10/+0 |
| | |||||
* | Changed EG(argument_stack) implementation. | Dmitry Stogov | 2008-01-24 | 1 | -2/+2 |
| | |||||
* | fix build | Stanislav Malyshev | 2008-01-23 | 1 | -1/+1 |
| | |||||
* | Additional executor specialization | Dmitry Stogov | 2008-01-23 | 1 | -124/+64 |
| | |||||
* | Added garbage collector | Dmitry Stogov | 2008-01-22 | 1 | -3/+6 |
| | |||||
* | Changed exception handling. Now each op_array doesn't contain ↵ | Dmitry Stogov | 2008-01-21 | 1 | -7/+6 |
| | | | | ZEND_HANDLE_EXCEPTION opcode in the end | ||||
* | Fixed bug #43851 (Memory corrution on reuse of assigned value) | Dmitry Stogov | 2008-01-15 | 1 | -3/+3 |
| | |||||
* | Simplified assignment to string offset | Dmitry Stogov | 2008-01-11 | 1 | -28/+19 |
| | |||||
* | Fixed bug #39346 (Unsetting a static variable inside a destructor causes ↵ | Dmitry Stogov | 2008-01-11 | 1 | -12/+13 |
| | | | | segfault later on) | ||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Fixed possible memory corruption | Dmitry Stogov | 2007-12-28 | 1 | -0/+2 |
| | |||||
* | executor optimization | Dmitry Stogov | 2007-12-14 | 1 | -281/+317 |
| | |||||
* | Fixed bug #43128 (Very long class name causes segfault) | Dmitry Stogov | 2007-11-22 | 1 | -6/+1 |
| | |||||
* | Safe exit from executor() | Dmitry Stogov | 2007-11-21 | 1 | -2/+5 |
| | |||||
* | ZEND_FETCH_DIM optimization | Dmitry Stogov | 2007-11-20 | 1 | -60/+70 |
| | |||||
* | Fixed bug #43136 (possible crash on script execution timeout. The ↵ | Dmitry Stogov | 2007-11-20 | 1 | -0/+1 |
| | | | | EG(function_state_ptr) is completely removed, EG(current_execute_data)->function_state must be used instead) | ||||
* | MFH: Added macros for managing zval refcounts and is_ref statuses | Yiduo (David) Wang | 2007-10-07 | 1 | -69/+69 |
| | |||||
* | Fixed bug #42802 (Namespace not supported in typehints) | Dmitry Stogov | 2007-10-01 | 1 | -6/+6 |
| | |||||
* | Added support for Late Static Binding. (Dmitry, Etienne Kneuss) | Dmitry Stogov | 2007-09-29 | 1 | -0/+11 |
| | |||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -3/+3 |
| | |||||
* | MFH: Use SEPARATE_ZVAL_IF_NOT_REF for cleaner code. | Jani Taskinen | 2007-07-19 | 1 | -7/+6 |
| | |||||
* | Commit previously missing patch for bug #41919 | Ilia Alshanetsky | 2007-07-12 | 1 | -1/+6 |
| | |||||
* | Fixed bug #41919 | Dmitry Stogov | 2007-07-09 | 1 | -0/+4 |
| | |||||
* | fix #41813 (segmentation fault when using string offset as an object) | Antony Dovgal | 2007-06-27 | 1 | -0/+4 |
| | | | | | patch by judas dot iscariote at gmail dot com | ||||
* | MFH: fix #41608 (segfault on a weird code with objects and switch()) | Antony Dovgal | 2007-06-06 | 1 | -1/+1 |
| | |||||
* | WIN64 support | Dmitry Stogov | 2007-04-16 | 1 | -5/+5 |
| |