Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Copy default properties of internal classes for different threads | Johannes Schlüter | 2012-04-11 | 1 | -0/+5 | |
| | | ||||||
* | | Fixed module numbering | Dmitry Stogov | 2012-03-05 | 1 | -2/+1 | |
| | | ||||||
* | | MFH: Fix bug #61165 (Segfault - strip_tags()) | Xinchen Hui | 2012-03-02 | 1 | -2/+6 | |
| | | ||||||
* | | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 | |
| | | ||||||
* | | Fixed Bug #60173 (Wrong error message on reflective trait instantiation) | Stefan Marr | 2011-10-31 | 1 | -1/+3 | |
| | | ||||||
* | | Fixed ZE specific compile warnings (Bug #55629) | Dmitry Stogov | 2011-09-13 | 1 | -52/+53 | |
| | | ||||||
* | | Revert r316345 which fixes all the tests again | Hannes Magnusson | 2011-09-07 | 1 | -8/+0 | |
| | | ||||||
* | | - reject paths with trainling spaces using the very good new zend arg | Pierre Joye | 2011-09-07 | 1 | -0/+8 | |
| | | ||||||
* | | Callable typehint following the rules of is_callable($arg, false); | Hannes Magnusson | 2011-08-16 | 1 | -0/+2 | |
| | | ||||||
* | | - Revert r314387 | Felipe Pena | 2011-08-07 | 1 | -1/+1 | |
| | | | | | | | | | | (property_info.name has the mangled name) | |||||
* | | Use property_info.name here instead since *name might be free'ed at this point | Rasmus Lerdorf | 2011-08-07 | 1 | -1/+1 | |
| | | | | | | | | | | @dmitry please review | |||||
* | | - Added missing PHP_FE_END/ZEND_FE_END | Felipe Pena | 2011-08-06 | 1 | -2/+2 | |
| | | ||||||
* | | Another potential missing va_end() found by Coverity | Rasmus Lerdorf | 2011-08-05 | 1 | -0/+1 | |
| | | ||||||
* | | - Added a check for an enviroment variable (ZEND_DONT_UNLOAD_MODULES) that, if | Derick Rethans | 2011-07-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | set, prevents PHP from dl_closing() modules on shutdown. - This makes it possible to spot memory leaks with valgrind in shared modules. | |||||
* | | - Minor optimization taking the computed hash of interned strings | Felipe Pena | 2011-07-10 | 1 | -14/+15 | |
| | | ||||||
* | | - Minor optimization, use the computed hash when available | Felipe Pena | 2011-07-10 | 1 | -4/+12 | |
| | | ||||||
* | | - Missing fixes for grammar fix 's/valid path/a valid path/' | Felipe Pena | 2011-06-09 | 1 | -1/+1 | |
| | | ||||||
* | | s/valid path/a valid path/ | Felipe Pena | 2011-06-08 | 1 | -2/+2 | |
| | | ||||||
* | | - Added new parameter parsing option (p - for valid path (string without ↵ | Felipe Pena | 2011-06-06 | 1 | -2/+9 | |
| | | | | | | | | | | | | | | | | null byte in the middle)) # The tests will be fixed in the next commits | |||||
* | | scalar types cleanup | Stanislav Malyshev | 2011-06-03 | 1 | -5/+0 | |
| | | ||||||
* | | MFH: Fixed bug #54910 (Crash when calling call_user_func with unknown ↵ | Dmitry Stogov | 2011-05-31 | 1 | -0/+5 | |
| | | | | | | | | function name) | |||||
* | | - fix bug #54423, fix build in trunk, introduce by previous related commit | Pierre Joye | 2011-03-31 | 1 | -1/+1 | |
| | | ||||||
* | | fix bug #54423 (classes from dl()'ed extensions are not destroyed) | Antony Dovgal | 2011-03-31 | 1 | -0/+17 | |
| | | ||||||
* | | - Fixed bug #53717 (checking the number of arguments is wrong in ↵ | Felipe Pena | 2011-01-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | zend_parse_method_parameters_ex()) patch by: klaus at triendl dot eu | |||||
* | | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 | |
| | | ||||||
* | | zend_collect_module_handlers() has to be called after zend_extensions ↵ | Dmitry Stogov | 2010-10-15 | 1 | -2/+1 | |
| | | | | | | | | startup, because they can register additional 'hidden' extensions | |||||
* | | marked char pointer arguments as const in lots of | Hartmut Holzgraefe | 2010-10-14 | 1 | -14/+15 | |
| | | | | | | | | | | | | places where strings pointed to are not modified to prevent compiler warnings about discarded qualifiers ... | |||||
* | | - Improved memory usage | Dmitry Stogov | 2010-09-15 | 1 | -26/+32 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . zend_function.pass_rest_by_reference is replaced by ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags . zend_function.return_reference is replaced by ZEND_ACC_RETURN_REFERENCE in zend_function.fn_flags . zend_arg_info.required_num_args removed. it was needed only for internal functions. Now the first arg_info for internal function (which has special meaning) is represented by zend_internal_function_info structure. . zend_op_array.size, size_var, size_literal, current_brk_cont, backpatch_count moved into CG(context), because they are used only during compilation. . zend_op_array.start_op is moved into EG(start_op), because it's used only for 'interactive' execution of single top-level op-array. . zend_op_array.done_pass_two is replaced by ZEND_ACC_DONE_PASS_TWO in zend_op_array.fn_flags. . op_array.vars array is trimmed (reallocated) during pass_two. . zend_class_entry.constants_updated is replaced by ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags . the size of zend_class_entry is reduced by sharing the same memory space by different information for internal and user classes. See zend_class_inttry.info union. | |||||
* | | Fixed support for static properties of internal classes | Dmitry Stogov | 2010-08-11 | 1 | -5/+8 | |
| | | ||||||
* | | - Fix ZTS build | Felipe Pena | 2010-07-06 | 1 | -2/+2 | |
| | | ||||||
* | | eliminated unnecessary iterations during request startup/shutdown | Dmitry Stogov | 2010-07-06 | 1 | -7/+159 | |
| | | ||||||
* | | Conditional compilation is replaced by macro | Dmitry Stogov | 2010-05-26 | 1 | -10/+2 | |
| | | ||||||
* | | fix zend_std_get_static_property() in ZTS mode | Antony Dovgal | 2010-05-25 | 1 | -0/+8 | |
| | | ||||||
* | | - Interned string related callbacks moved turned from compiler_globals into ↵ | Dmitry Stogov | 2010-05-25 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | real globals - Updated API version number | |||||
* | | Added support for numeric & scalar type hint as defined within | Ilia Alshanetsky | 2010-05-24 | 1 | -0/+4 | |
| | | | | | | | | | | http://wiki.php.net/rfc/typecheckingstrictandweak RFC | |||||
* | | Fixed ZTS build | Dmitry Stogov | 2010-05-24 | 1 | -1/+1 | |
| | | ||||||
* | | Added caches to eliminate repeatable run-time bindings of functions, ↵ | Dmitry Stogov | 2010-05-24 | 1 | -47/+69 | |
| | | | | | | | | classes, constants, methods and properties | |||||
* | | - Added scalar typehinting. | Derick Rethans | 2010-05-20 | 1 | -0/+1 | |
| | | ||||||
* | | - Fixed bug #51827 (Bad warning when register_shutdown_function called with ↵ | Felipe Pena | 2010-05-14 | 1 | -3/+3 | |
| | | | | | | | | wrong num of parameters) | |||||
* | | Fixed a possible memory corruption because of unexpected call-time pass by ↵ | Dmitry Stogov | 2010-05-11 | 1 | -0/+6 | |
| | | | | | | | | refernce and following memory clobbering through callbacks. | |||||
* | | spread some more const | Johannes Schlüter | 2010-04-28 | 1 | -4/+4 | |
| | | ||||||
* | | Added concept of interned strings. All strings constants known at compile ↵ | Dmitry Stogov | 2010-04-20 | 1 | -9/+25 | |
| | | | | | | | | time are allocated in a single copy and never changed. | |||||
* | | Changed the structure of op_array.opcodes. The constant values are moved ↵ | Dmitry Stogov | 2010-04-20 | 1 | -17/+17 | |
|/ | | | | from opcode operands into a separate literal table | |||||
* | - those are in 5.3.2 now, merge to 5.3.2 section is coming | Pierre Joye | 2010-02-11 | 1 | -1/+0 | |
| | ||||||
* | sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-05 | 1 | -1/+1 | |
| | ||||||
* | fix flags handling in zend_parse_method_parameters_ex | Stanislav Malyshev | 2009-12-24 | 1 | -1/+1 | |
| | ||||||
* | Reverted accidental change | Dmitry Stogov | 2009-11-30 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #50261 (Crash When Calling Parent Constructor with call_user_func()) | Dmitry Stogov | 2009-11-30 | 1 | -11/+49 | |
| | ||||||
* | - don't hide early declaration | Pierre Joye | 2009-09-05 | 1 | -6/+6 | |
| | ||||||
* | Fix bug #48575 - Use dlopen() just like all the other *nixes instead of OSX ↵ | Scott MacVicar | 2009-08-06 | 1 | -1/+1 | |
| | | | | specific code. |