summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed situation, when CHECH_EXCEPTION() might change value of "opline" variab...Dmitry Stogov2015-07-081-2/+12
* Use NULL where possible for exception classAaron Piotrowski2015-07-071-5/+5
* Fixed bug #62210 (Exceptions can leak temporary variables. As a part of the f...Dmitry Stogov2015-07-071-71/+60
* Fixed use after free on closure_call_leak_with_exception.phptXinchen Hui2015-07-071-2/+1
* Fix crash when exception occurs during nested ropeNikita Popov2015-07-061-1/+2
* Replace references to PHP_WIN32 and TSRM_WIN32 with ZEND_WIN32 in Zend/, this...Kalle Sommer Nielsen2015-07-041-1/+1
* Remove need to pass error levelAaron Piotrowski2015-07-031-5/+5
* Enable throwing custom exceptions from errorsAaron Piotrowski2015-07-031-5/+5
* Use ZSTR_ API to access zend_string elements (this is just renaming without s...Dmitry Stogov2015-06-301-39/+39
* Improved zend_string API (Francois Laupretre)Dmitry Stogov2015-06-291-3/+3
* Fix rope memory leaks upon exceptionBob Weinand2015-06-281-0/+15
* Fix warning in zend_execute.c by explicit castBob Weinand2015-06-261-1/+1
* Fix Closure leak in aborted INIT_DYNAMIC_FCALLBob Weinand2015-06-261-0/+3
* Fixed bug #69905 (null ptr deref and segfault in ZEND_FETCH_DIM_RW_SPEC_VAR_U...Dmitry Stogov2015-06-231-2/+2
* Fix segfault with scalar passed to typehint with not loaded classBob Weinand2015-06-211-1/+5
* Fix generator memory leakNikita Popov2015-06-201-0/+150
* Fix potential writes into wrong memory, ensure vm_stack integrityBob Weinand2015-06-201-1/+3
* Fixed bug #69889Nikita Popov2015-06-201-3/+7
* Revert "Fix bug #69871 (short-circuiting failure with smart_branch)"Xinchen Hui2015-06-191-14/+2
* Fix bug #69871 (short-circuiting failure with smart_branch)Bob Weinand2015-06-181-2/+14
* Improved class type hints checks, by caching resolved class entries in run-ti...Dmitry Stogov2015-06-171-42/+98
* Cache the class_name typehint key in arg_infoBob Weinand2015-06-121-1/+6
* fix bad formatted "undefined offset" notice when key is negativeMárcio Almada2015-06-101-2/+2
* Delay checks for undefined CV variables after checks for fast paths.Dmitry Stogov2015-06-051-0/+10
* Separate rare used increment/decrement/assign_op of overloaded properies into...Dmitry Stogov2015-06-031-0/+127
* Reorder conditions to check for fast paths first.Dmitry Stogov2015-06-011-10/+18
* Drop FREE_ON_RETURN flag, check brk_cont->start insteadNikita Popov2015-05-231-10/+6
* Show argument causing TypeException in traceNikita Popov2015-05-201-10/+0
* Merged FE_FETCH_R[W] with the following ASSIGN[_REF] when assigne to CV.Dmitry Stogov2015-05-131-7/+8
* Mark first call frames of stack segment with ZEND_CALL_ALLOCATED flag to simp...Dmitry Stogov2015-05-121-1/+1
* Avoid unnecessary reference counter incrementation on $this when call methodsDmitry Stogov2015-05-071-1/+6
* Fixed repeatable opcodes on CALL VM without global registersDmitry Stogov2015-04-291-1/+3
* Paired instuctions frequientiy used together (e.g. comparisons + conditional ...Dmitry Stogov2015-04-291-3/+32
* Make ZEND_RECV_INIT and ZEND_BIND_GLOBALS opcodes to be "repeatabe" with inne...Dmitry Stogov2015-04-291-0/+6
* Optimize opcodes for fast pathDmitry Stogov2015-04-281-9/+15
* Micro optimizationsDmitry Stogov2015-04-281-4/+6
* Use fast method to check if first arguments should be passed by reference (no...Dmitry Stogov2015-04-221-0/+1
* Fixed mem leak in assign_to_obj with referenceXinchen Hui2015-04-211-11/+16
* Fixed reference countingDmitry Stogov2015-04-201-4/+6
* Fixed memory-leakDmitry Stogov2015-04-171-1/+1
* Safe destruction (variables and arguments may need to be cuptured by exception)Dmitry Stogov2015-04-161-1/+9
* Micro optimizations for the more frequently pathsDmitry Stogov2015-04-161-8/+6
* Optimization of stack-frame constructionDmitry Stogov2015-04-151-2/+2
* Avoid double refcountingDmitry Stogov2015-04-151-18/+23
* Fix leak when calling ->get() on tmp propertyNikita Popov2015-04-141-4/+4
* Merge branch 'coroutineDelegation' of https://github.com/bwoebi/php-srcBob Weinand2015-04-141-0/+10
|\
| * Added yield from operatorBob Weinand2015-03-071-1/+1
| * WIPNikita Popov2015-02-281-0/+10
* | Fixed typoDmitry Stogov2015-04-081-1/+1
* | Improved reference countingDmitry Stogov2015-04-031-10/+11