summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fixed ZE specific compile warnings (Bug #55629)Dmitry Stogov2011-09-131-4/+4
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* reduced size of temp_variariableDmitry Stogov2010-10-221-6/+3
|
* - Strip out the typehint *checks* only. They are still parsed, and they areDerick Rethans2010-10-191-0/+3
| | | | | still accessible through the reflection API.
* Reduced initial VM stack size to fit into zend_mm segment and eliminate ↵Dmitry Stogov2010-07-071-1/+1
| | | | extra segment allocation
* - Fixed bug #51905 (ReflectionParameter fails if default value is an array ↵Felipe Pena2010-05-261-0/+2
| | | | with an access to self::)
* Added caches to eliminate repeatable run-time bindings of functions, ↵Dmitry Stogov2010-05-241-0/+17
| | | | classes, constants, methods and properties
* Added a number of small performance tweaks and optimizationsDmitry Stogov2010-04-201-19/+40
| | | | | | | . ZEND_RECV now always has IS_CV as its result . ZEND_CATCH now has to be used only with constant class names . ZEND_FETCH_DIM_? may fetch array and dimension operans in a different order
* Changed the structure of op_array.opcodes. The constant values are moved ↵Dmitry Stogov2010-04-201-3/+4
| | | | from opcode operands into a separate literal table
* Fixed bug #50723 (Bug in garbage collector causes crash)Dmitry Stogov2010-02-021-1/+1
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* - Fixed warnings (Kalle)Felipe Pena2009-09-131-1/+1
|
* Fixed bug #46074 (Bus error during running PHP CLI under IRIX 6.5.30)Dmitry Stogov2009-09-031-12/+49
|
* Fixed ability to call user functions from user opcodes without recursionDmitry Stogov2009-08-181-0/+2
|
* - fix build (void alarm)Pierre Joye2009-06-091-5/+5
|
* MFH: Added zend_eval_stringl and made create_function(), etc. binary-safeMatt Wilmas2009-06-051-0/+2
|
* MFH: better fix for #48409 , #48428 , #48228Arnaud Le Blanc2009-06-051-0/+21
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-3/+3
|
* - Removed direct executor recursion.Dmitry Stogov2008-06-111-2/+2
| | | | | - Use fastcall calling convention in executor on x86.
* Selected better initial VM stack sizeDmitry Stogov2008-04-151-1/+1
|
* exit_on_timeout patchRasmus Lerdorf2008-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | After the sigsetjmp change, this is patch #2 in an effort to get some sanity restored to signal handling in PHP. This patch does two things. First, it makes it possible to reset the timeout without resetting the signal handlers. This is important for cases where an extension may have deferred signals in its MINIT in order to implement critical sections. It also lays the groundwork for cleaning up our signal handling and perhaps eventually implementing our own signal deferring mechanism so we can have true critical sections. The second thing this does is to make it possible to terminate the current child process (only for Apache1 at the moment) on a timeout. There are a number of extensions that are unhappy about being longjmp'ed out of and when this happens on a timeout they are left in an inconsistent state. By turning on exit_on_timeout you can now force the process to terminate on a timeout which will clean up any hanging locks and/or memory left hanging after the longjmp.
* MFH: Dropped zend.ze1_compatibility_modeFelipe Pena2008-03-181-8/+1
| | | | | [DOC]
* Fixed warningDmitry Stogov2008-03-121-3/+3
|
* Fixed typesDmitry Stogov2008-01-291-3/+3
|
* fix typeStanislav Malyshev2008-01-281-1/+1
|
* Changed EG(argument_stack) implementation.Dmitry Stogov2008-01-241-10/+138
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-3/+3
|
* MFH: Fixed compiler warningsJani Taskinen2007-07-211-2/+2
|
* WIN64 supportDmitry Stogov2007-04-161-2/+2
|
* - Fixed bug #35106 (nested foreach fails when array variable has a reference).Dmitry Stogov2007-01-101-0/+6
| | | | | | | - Fixed bug #36214 (__get method works properly only when conditional operator is used). - Fixed bug #39449 (Overloaded array properties do not work correctly). - Fixed bug #39990 (Cannot "foreach" over overloaded properties).
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - MFH: Fix #38465 (ReflectionParameter fails if default value is an access ↵Johannes Schlüter2006-10-181-0/+1
| | | | to self::
* Restore ZE1 compatibility mode (Zend Engine part - the modules patchesZeev Suraski2006-06-051-1/+8
| | | | | will follow later today)
* Keeping consistent arg_stack during arguments freeing (Exception from ↵Dmitry Stogov2006-05-311-1/+3
| | | | destructor may use inconsistent arg_stack for backtrace).
* - MFH as discussedMarcus Boerger2006-05-091-17/+10
| | | | | | | | | | | | | | | | | | | | | . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type)
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* MFH (removed unnecesary call to zval_ptr_dtor)Dmitry Stogov2005-09-191-1/+1
|
* Fixed bug #34199 (if($obj)/if(!$obj) inconsistency)Dmitry Stogov2005-09-121-0/+18
|
* Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() ↵Dmitry Stogov2005-09-091-0/+1
| | | | functions to not call __autoload().
* Bump up the yearfoobar2005-08-031-1/+1
|
* Export zend_do_fcall() helper from executorDmitry Stogov2005-06-241-0/+1
|
* rename to zend_Stanislav Malyshev2005-06-161-2/+2
|
* export zval gettersStanislav Malyshev2005-06-161-0/+10
|
* USER_OPCODE API is improvet.Dmitry Stogov2005-06-161-0/+2
| | | | | Implemented ability to dispatch from user handler to internal handler of another opcode.
* Fix so that extensions like xdebug, can overload opcodes in all execution ↵Dmitry Stogov2005-06-101-0/+7
| | | | modes including goto/switch