summaryrefslogtreecommitdiff
path: root/Zend/zend_vm_def.h
Commit message (Expand)AuthorAgeFilesLines
* Fixed bug #44952 (isset() does not checks correctly variable variable)Dmitry Stogov2008-05-121-5/+5
* Use IS_CV for dirrent access to $this variableDmitry Stogov2008-05-071-1/+1
* Fixed possible memory leakDmitry Stogov2008-05-061-1/+2
* - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR)Dmitry Stogov2008-05-051-6/+14
* IS_CONST operands are always have is_ref==1 and refcount==2, so we can eliminateDmitry Stogov2008-04-301-2/+3
* Lazy EG(active_symbol_table) initializationDmitry Stogov2008-04-291-49/+101
* Optimized handlers for ZEND_RECV and ZEND_RECV_INIT opocdesDmitry Stogov2008-04-241-29/+16
* Optimized function call helperDmitry Stogov2008-04-211-34/+22
* Optimized ZEND_RETURN opcode to not allocate and copy return value if it is notDmitry Stogov2008-04-111-13/+13
* MFB 5.3: Rewrite scanner to be based on re2c instead of flexScott MacVicar2008-03-261-1/+1
* Implemented concept of "delayed early binding" that allows opcode caches to p...Dmitry Stogov2008-03-181-0/+13
* Optimized ZEND_FETCH_CLASS + ZEND_ADD_INTERFACE into single ZEND_ADD_INTERFAC...Dmitry Stogov2008-03-121-2/+2
* Better readability (USTR_BYTES)Felipe Pena2008-03-071-2/+2
* Optimized require_once() and include_once() by eliminationg open() syscall on seDmitry Stogov2008-03-051-17/+16
* Fixed shared memory corruption of opcode cachesDmitry Stogov2008-03-041-3/+0
* Fixed wrong result of cascading assignment to string offsetDmitry Stogov2008-03-041-11/+30
* - 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
* MFB: Fix segfaults when calling ctors staticallyHannes Magnusson2008-02-111-2/+1
* -Add comment that explains wh we need E_ERROR in those casesMarcus Boerger2008-02-021-0/+2
* - MFB static callable message messMarcus Boerger2008-02-021-1/+10
* Fixed compilation warningsDmitry Stogov2008-01-241-1/+1
* Changed EG(argument_stack) implementation.Dmitry Stogov2008-01-241-24/+24
* Additional executor specializationDmitry Stogov2008-01-231-55/+118
* Added garbage collectorDmitry Stogov2008-01-221-0/+4
* Eliminate unnecessary checks for INC/DEC IS_CVDmitry Stogov2008-01-211-4/+4
* Fixed unspecialized executorDmitry Stogov2008-01-111-1/+3
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
* executor optimizationDmitry Stogov2007-12-141-96/+135
* Fixed bug #43344 (Wrong error message for undefined namespace constant)Dmitry Stogov2007-12-071-1/+6
* Speed-up of ZEND_DO_FCALL and ZEND_INIT_FCALL_BY_NAME by lowercasing and calc...Dmitry Stogov2007-11-221-51/+40
* Safe exit from executor()Dmitry Stogov2007-11-211-1/+2
* dead codeDmitry Stogov2007-11-201-1/+0
* Optimization of zend_do_fcall_common_helper()Dmitry Stogov2007-11-201-28/+22
* Fixed bug #43136 (possible crash on script execution timeout. The EG(function...Dmitry Stogov2007-11-201-4/+0
* 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/+32
* Fixed variations of bug #35163Dmitry Stogov2007-10-231-2/+13
* Fixed bug #35163 (Array elements can lose references)Dmitry Stogov2007-10-231-0/+8
* Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-65/+65
* MFB: Fixed bug #42817 (clone() on a non-object does not result in a fatalIlia Alshanetsky2007-10-041-2/+2
* Fixed bug #42818 ($foo = clone(array()); leaks memory)Dmitry Stogov2007-10-031-1/+1
* Fixed bug #42772 (Storing $this in a static var fails while handling a cast t...Dmitry Stogov2007-10-031-7/+24
* wsDmitry Stogov2007-10-031-13/+13
* Fixed access to freed memory in tests/classes/__call_001.phptDmitry Stogov2007-10-021-2/+1
* Fixed bug #42819 (namespaces in indexes of constant arrays)Dmitry Stogov2007-10-021-1/+1
* Fixed bug #42802 (Namespace not supported in typehints)Dmitry Stogov2007-10-011-5/+5
* - Nuked unnecessary TSRMLS_FETCH().Jani Taskinen2007-09-271-3/+3
* Late Static Binding (Dmitry, Etienne Kneuss)Dmitry Stogov2007-09-261-54/+61
* - in case of ambiguity class name in namespace call __autoload() only afterDmitry Stogov2007-09-111-36/+42