summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
Commit message (Expand)AuthorAgeFilesLines
...
* Simply use 0/1 instead as dmitry suggestedXinchen Hui2015-09-301-1/+0
* Make ZEND_ECHO and removed ZEND_PRINT distinguishableXinchen Hui2015-09-291-3/+4
* Added zend_internal_function.reserved[] fields, to allow extensions keep addi...Dmitry Stogov2015-09-291-0/+1
* Fixed bug #70532 (respect set_exception_handler in phpdbg)Bob Weinand2015-09-231-0/+1
* ZEND_COMPILE_GUARDS compiler optionJoe Watkins2015-09-231-0/+3
* Removed unused functionsDmitry Stogov2015-08-261-2/+0
* Get rid of memcpy() in MAKE_NOP()Dmitry Stogov2015-08-061-5/+7
* Get rid of ZEND_FAST_CALL_UNBOUNDDmitry Stogov2015-08-041-1/+0
* Move most "finally" related code-generation from pass_two() to compiler.Dmitry Stogov2015-08-041-1/+1
* Try to fix finally issueNikita Popov2015-08-041-1/+2
* Fix valgrind errors in phpdbgBob Weinand2015-08-041-1/+1
* We cannot safely assume that all op array will be refcount 0 after executionBob Weinand2015-07-221-1/+1
* Remove FAST_CALL_FROM_CATCHNikita Popov2015-07-211-2/+1
* Add an option to not generate INIT_FCALL ops for user functions tooBob Weinand2015-07-211-6/+9
* Resolve GOTO at compile time and replace it with sequnce of FREE/FE_FREE and ...Dmitry Stogov2015-07-101-2/+3
* Exception thrown by "return" statement (from TMP destructors) shouldn't be ca...Dmitry Stogov2015-07-101-1/+3
* Squashed commit of the following:Dmitry Stogov2015-07-101-39/+28
* Fixed exception catching on break/continueDmitry Stogov2015-07-091-1/+2
* Fix too early terminated temporary range with break/cont/gotoBob Weinand2015-07-091-1/+1
* Fixed invalid live-range detectionDmitry Stogov2015-07-091-1/+3
* Remove loop_var_stackNikita Popov2015-07-071-1/+1
* Fixed bug #62210 (Exceptions can leak temporary variables. As a part of the f...Dmitry Stogov2015-07-071-27/+35
* Use ZSTR_ API to access zend_string elements (this is just renaming without s...Dmitry Stogov2015-06-301-1/+1
* Fix accidental function related flag value reuseBob Weinand2015-06-221-1/+1
* Fix bad run_time_cache with Closure::call()Bob Weinand2015-06-211-0/+2
* Improved class type hints checks, by caching resolved class entries in run-ti...Dmitry Stogov2015-06-171-2/+0
* Complete fix for problems related to bug #69802Dmitry Stogov2015-06-161-0/+3
* Revert "We are allowed to break ABI now..."Xinchen Hui2015-06-131-11/+11
* We are allowed to break ABI now...Xinchen Hui2015-06-131-11/+11
* Cache the class_name typehint key in arg_infoBob Weinand2015-06-121-0/+2
* Remove zend_init_listNikita Popov2015-05-291-4/+0
* Remove ZEND_BRK/ZEND_CONT from VMNikita Popov2015-05-231-0/+5
* Drop FREE_ON_RETURN flag, check brk_cont->start insteadNikita Popov2015-05-231-2/+0
* Drop THIS_HASHVAL defineNikita Popov2015-05-231-10/+0
* Mark first call frames of stack segment with ZEND_CALL_ALLOCATED flag to simp...Dmitry Stogov2015-05-121-0/+1
* Avoid unnecessary reference counter incrementation on $this when call methodsDmitry Stogov2015-05-071-0/+1
* Rebase Joe's anon classes implementationkrakjoe2015-04-261-0/+2
* Fixed compiler warningKalle Sommer Nielsen2015-04-231-1/+1
* Use fast method to check if first arguments should be passed by reference (no...Dmitry Stogov2015-04-221-0/+30
* Move more stuff to file_contextNikita Popov2015-04-211-20/+30
* Fixed bug #69388Nikita Popov2015-04-201-6/+17
* Properly define ZEND_OP_DATA in zend_vm_def.hBob Weinand2015-04-191-2/+0
* Mark call frames to closures with ZEND_CALL_CLOSURE flag to avoid expensive c...Dmitry Stogov2015-04-161-3/+11
* Squashed commit of the following:Dmitry Stogov2015-04-101-2/+5
* Convert fatal errors into EngineExceptionsDmitry Stogov2015-04-011-0/+1
* Improved type hinting:Dmitry Stogov2015-03-201-3/+13
* Refactor as to not use call info, but add the flag to the op_array.Anthony Ferrara2015-03-191-5/+7
* Fix return type separation with references. It now includes a check in the op...Anthony Ferrara2015-03-181-0/+3
* Merge in master, fix merge conflicts and update patch to support exceptions e...Anthony Ferrara2015-03-181-11/+7
|\
| * fix syntax for the Visual studio compatAnatol Belski2015-03-131-3/+2