summaryrefslogtreecommitdiff
path: root/Zend/zend_vm_execute.h
Commit message (Expand)AuthorAgeFilesLines
* . Added support for using static HEREDOCs to initialize static variables and ...Dmitry Stogov2008-07-261-25/+230
* Fixed crashes and memory leak for objects with NULL write_property/has_proper...Dmitry Stogov2008-07-261-36/+204
* Fixed is_callable/call_user_func mess that had done different things for very...Dmitry Stogov2008-07-261-0/+30
* Fixed bug #45178 (memory corruption on assignment result of "new" by reference)Dmitry Stogov2008-07-241-0/+24
* LSB parent/self forwardingDmitry Stogov2008-07-241-20/+70
* Fixed is_callable() to support closures and return appropriate function nameDmitry Stogov2008-07-141-1/+1
* Added support for lambda functions and closuresDmitry Stogov2008-07-141-0/+76
* - Removed direct executor recursion.Dmitry Stogov2008-06-111-1155/+1279
* - Fixed bug #45089 (__callStatic $name case sensitivity)Felipe Pena2008-06-031-90/+110
* MFH: small CSE optimizationsDmitry Stogov2008-05-161-224/+240
* Fixed bug #44952 (isset() does not checks correctly variable variable)Dmitry Stogov2008-05-121-20/+20
* Use IS_CV for dirrent access to $this variableDmitry Stogov2008-05-071-5/+10
* Fixed possible memory leakDmitry Stogov2008-05-061-1/+2
* Regenerate zend_vm_execute.hDmitry Stogov2008-05-061-4/+12
* - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR)Dmitry Stogov2008-05-051-16/+8
* IS_CONST operands are always have is_ref==1 and refcount==2, so we can elimin...Dmitry Stogov2008-04-301-24/+28
* Lazy EG(active_symbol_table) initializationDmitry Stogov2008-04-291-171/+374
* Optimized handlers for ZEND_RECV and ZEND_RECV_INIT opocdesDmitry Stogov2008-04-241-29/+16
* Optimized function call helperDmitry Stogov2008-04-211-33/+22
* Optimized ZEND_RETURN opcode to not allocate and copy return value if it is notDmitry Stogov2008-04-111-43/+49
* MFH: Implemented "jump label" operator (limited "goto")Felipe Pena2008-03-281-5/+27
* MFH: Dropped zend.ze1_compatibility_modeFelipe Pena2008-03-181-76/+4
* Implemented concept of "delayed early binding" that allows opcode caches to p...Dmitry Stogov2008-03-181-25/+38
* - Rewrite scanner to be based on re2c instead of flexMarcus Boerger2008-03-161-4/+4
* Optimized ZEND_FETCH_CLASS + ZEND_ADD_INTERFACE into single ZEND_ADD_INTERFAC...Dmitry Stogov2008-03-121-40/+40
* Optimized require_once() and include_once() by eliminationg open() syscall on...Dmitry Stogov2008-03-051-56/+48
* Fixed shared memory corruption of opcode cachesDmitry Stogov2008-03-041-3/+0
* Fixed wrong result of cascading assignment to string offsetDmitry Stogov2008-03-041-98/+270
* - MFH Add E_DEPRECATED (Lars Strojny, Felipe Pena, Marcus)Marcus Boerger2008-02-231-1/+1
* Fixed bug #44184 (Double free of loop-variable on exception)Dmitry Stogov2008-02-201-3/+4
* Fix segfaults when calling "ctors statically"Hannes Magnusson2008-02-111-30/+121
* Fixed comilation warningsDmitry Stogov2008-01-241-1/+1
* Changed EG(argument_stack) implementation.Dmitry Stogov2008-01-241-44/+45
* Fixed error messageDmitry Stogov2008-01-241-240/+96
* Additional executor specializationDmitry Stogov2008-01-231-491/+1281
* Added garbage collectorDmitry Stogov2008-01-221-0/+51
* Eliminate unnecessary checks for INC/DEC IS_CVDmitry Stogov2008-01-211-8/+8
* Fixed unspecialized executorDmitry Stogov2008-01-111-2/+6
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
* executor optimizationDmitry Stogov2007-12-141-764/+1181
* Fixed bug #43344 (Wrong error message for undefined namespace constant)Dmitry Stogov2007-12-071-3/+18
* Fixed compilation on WindowsDmitry Stogov2007-11-231-1/+1
* Fixed bug #43128 (Very long class name causes segfault)Dmitry Stogov2007-11-221-4/+5
* Speed-up of ZEND_DO_FCALL and ZEND_INIT_FCALL_BY_NAME by lowercasing and calc...Dmitry Stogov2007-11-221-128/+88
* Safe exit from executor()Dmitry Stogov2007-11-211-1/+6
* - MFH Improved version of ternary shortcut (Marcus)Johannes Schlüter2007-11-211-0/+128
* Optimization of zend_do_fcall_common_helper()Dmitry Stogov2007-11-201-28/+21
* Fixed bug #43136 (possible crash on script execution timeout. The EG(function...Dmitry Stogov2007-11-201-9/+1
* Fixed bug #43175 (__destruct() throwing an exception with __call() causes seg...Dmitry Stogov2007-11-061-2/+3
* Fixed bug #43201 (Crash on using unitialized vals and __get/__set)Dmitry Stogov2007-11-061-0/+344