summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
Commit message (Expand)AuthorAgeFilesLines
* Pack zend_constant.flags and zend_constant.module_number into reserved space ...Dmitry Stogov2018-07-261-2/+2
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
* Fixed typoDmitry Stogov2018-07-191-2/+2
* Improved "Fast Shutdown".Dmitry Stogov2018-07-171-19/+7
* Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized d...Dmitry Stogov2018-07-041-2/+2
* API cleanup. Removed unused functions (kept compatibility macros).Dmitry Stogov2018-07-041-17/+0
* Lazy function copying from op_cache SHM into process memoryDmitry Stogov2018-06-251-3/+4
* Merge branch 'PHP-7.2'Nikita Popov2018-06-221-0/+1
|\
| * Fixed bug #76520Nikita Popov2018-06-221-0/+1
| * year++Xinchen Hui2018-01-021-1/+1
* | Removed "dead" code (zend_hash_update() never fails)Dmitry Stogov2018-06-011-4/+8
* | Use zend_string_release_ex() instread of zend_string_release() in places, whe...Dmitry Stogov2018-05-281-12/+12
* | zend_fcall_info_cache.calling_scope is not used by zend_call_function() and d...Dmitry Stogov2018-05-031-8/+1
* | Optimize zend_hash_real_init()Dmitry Stogov2018-03-231-1/+1
* | Completely hide GC implementation details into zend_gc.cDmitry Stogov2018-02-271-1/+1
* | Use ZEND_CLOSURE_OBJECT() macro to resolve closure op_array to closure object...Dmitry Stogov2018-01-111-2/+1
* | Revert "Use ZEND_CLOSURE_OBJECT() macro to resolve closure op_array to closur...Dmitry Stogov2018-01-111-1/+2
* | Use ZEND_CLOSURE_OBJECT() macro to resolve closure op_array to closure object...Dmitry Stogov2018-01-111-2/+1
* | Trailing whitespacesGabriel Caruso2018-01-031-1/+1
* | year++Xinchen Hui2018-01-021-1/+1
* | Merge branch 'PHP-7.2'Xinchen Hui2017-12-281-2/+4
|\ \ | |/
| * Fixed bug #75742 (potential memleak in internal classes's static members)Xinchen Hui2017-12-281-2/+4
* | zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initia...Dmitry Stogov2017-12-271-1/+1
* | zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initia...Dmitry Stogov2017-12-271-4/+3
* | Use zend_hash_find() instead of zend_hash_find_ptr() to avoid double checkDmitry Stogov2017-12-271-4/+4
* | Use zend_string_equal*() API for zend_string equality check instead of direct...Dmitry Stogov2017-12-041-2/+1
* | Use cheaper functionsDmitry Stogov2017-12-041-3/+3
* | Introduced zend_hash_find_ex() that may avoid unnecessary hash value check.Dmitry Stogov2017-11-241-1/+1
* | Prevent reference-counting on persistent zvals (internal constants, default p...Dmitry Stogov2017-10-301-1/+1
* | Merge branch 'master' into rc_debugDmitry Stogov2017-10-301-1/+2
|\ \
| * | Fix invalid read in zend_use_undefined_constant()Nikita Popov2017-10-281-1/+2
* | | Merge branch 'master' into rc_debugDmitry Stogov2017-10-271-1/+1
|\ \ \ | |/ /
| * | Use per-request heap instead of system oneDmitry Stogov2017-10-271-1/+1
* | | Encapsulate reference-counting primitives.Dmitry Stogov2017-10-271-1/+1
|/ /
* | Reverted constant related change (this should be handled togrther with ohter ...Dmitry Stogov2017-10-261-1/+1
* | Removed useless reallocationsDmitry Stogov2017-10-261-1/+1
* | Always use IS_CONSTANT_AST (IS_CONSTANT is removed).Dmitry Stogov2017-10-101-72/+45
* | Use zval_ptr_dtor_nogc() in places where circular zvals are not possibleDmitry Stogov2017-10-091-2/+2
* | Refactored array creation API. array_init() and array_init_size() are convert...Dmitry Stogov2017-09-201-2/+1
|/
* Value of EG(user_exception_handler) should't relive request boundaryDmitry Stogov2017-07-121-0/+1
* Drop dead abstract method check from zend_call_function()Nikita Popov2017-07-041-22/+6
* further sync for vim mode linesAnatol Belski2017-07-041-0/+2
* Split zend_init_execute_data() into zend_init_func_execute_data() and zend_in...Dmitry Stogov2017-06-291-1/+1
* Removed deprecated checks.Dmitry Stogov2017-06-271-9/+0
* Removed EG(valid_symbol_table). Used EG(active) instead.Dmitry Stogov2017-06-261-2/+0
* Remove superfluous semicolonsTom Van Looy2017-06-261-2/+2
* Only compute callback name in error casesNikita Popov2017-06-251-8/+3
* Reseet EG(active) a bit early.Dmitry Stogov2017-06-231-4/+2
* shutdown_executor() refactoring (reuse opcache fast request shutdown code)Dmitry Stogov2017-06-221-111/+95
* We don't need any special handling for CG(unclean_shutdown) at this point, be...Dmitry Stogov2017-06-211-3/+0