| Commit message (Expand) | Author | Age | Files | Lines |
* | Disable stack reuse optimization for x86 PIC code. It may clobber local varia... | Dmitry Stogov | 2020-12-01 | 1 | -1/+1 |
* | Preallocate stack space for JIT in execute_ex() to eliminate JIT prologue/epi... | Dmitry Stogov | 2020-11-30 | 1 | -0/+6 |
* | Implement named parameters | Nikita Popov | 2020-07-31 | 1 | -1/+2 |
* | Implement nullsafe ?-> operator | Ilija Tovilo | 2020-07-24 | 1 | -1/+2 |
* | Implement match expression | Ilija Tovilo | 2020-07-09 | 1 | -1/+4 |
* | Throw Error when writing property of non-object | Nikita Popov | 2019-09-27 | 1 | -1/+1 |
* | Replace ZEND_ASSIGN_ADD (and others) by ZEND_ASSIGN_OP, ZEND_ASSIGN_DIM_OP, Z... | Dmitry Stogov | 2019-07-05 | 1 | -38/+30 |
* | Improve zend_binary_assign_op helpers. | Dmitry Stogov | 2019-07-04 | 1 | -27/+27 |
* | Optimization of INC/DEC helpers | Dmitry Stogov | 2019-07-03 | 1 | -7/+7 |
* | Register class before fetching parent | Nikita Popov | 2019-06-11 | 1 | -206/+204 |
* | Implement spread operator in arrays | CHU Zhaowei | 2019-05-13 | 1 | -1/+2 |
* | Adios, yearly copyright ranges | Zeev Suraski | 2019-01-30 | 1 | -1/+1 |
* | Implement ??= operator | Nikita Popov | 2019-01-22 | 1 | -1/+2 |
* | Implement typed properties | Nikita Popov | 2019-01-11 | 1 | -1/+10 |
* | Implement ZEND_ARRAY_KEY_EXISTS opcode to speed up array_key_exists() | Michael Moravec | 2018-12-26 | 1 | -1/+2 |
* | Update email addresses. We're still @Zend, but future proofing it... | Zeev Suraski | 2018-11-01 | 1 | -3/+3 |
* | Keep information about unresolved interfaces in zend_class_entry->interface_... | Dmitry Stogov | 2018-08-23 | 1 | -2/+0 |
* | Replace zend_class_entry->traits by persistent zend_class_entry->trait_names. | Dmitry Stogov | 2018-08-23 | 1 | -2/+0 |
* | Avoid live range references in opcodes | Nikita Popov | 2018-02-16 | 1 | -1/+0 |
* | Moved "zval.u2.cache_slot" into free room of "zend_op" | Dmitry Stogov | 2018-02-05 | 1 | -0/+2 |
* | Avoid repeatable ARG_SHOULD_BE_SENT_BY_REF() checks in FETCH_*FUNC_ARG and fo... | Dmitry Stogov | 2018-02-05 | 1 | -1/+2 |
* | Changed CATCH instruction format (extended_value moved into op2, op2 into res... | Dmitry Stogov | 2018-01-31 | 1 | -0/+1 |
* | Changed FETCH_CONSTANT instruction format (extended_value moved into op1) | Dmitry Stogov | 2018-01-31 | 1 | -1/+1 |
* | Changed FETCH_CLASS instruction format (extended_value moved into op1) | Dmitry Stogov | 2018-01-31 | 1 | -1/+0 |
* | Use fastcall calling convention | Dmitry Stogov | 2018-01-16 | 1 | -2/+2 |
* | year++ | Xinchen Hui | 2018-01-02 | 1 | -1/+1 |
* | Implement list() reference assignments | David Walker | 2017-12-09 | 1 | -2/+3 |
* | TYPE_CHECK instruction changed. Now it keeps in extended_value a type mask. | Dmitry Stogov | 2017-11-23 | 1 | -0/+1 |
* | Separate ISSET_ISEMPTY_CV/UNSET_CV from ISSET_ISEMPTY_VAR/UNSET_VAR | Dmitry Stogov | 2017-07-17 | 1 | -1/+3 |
* | Removed vim mode lines. zend_vm_opcodes.h loses these lines after regeneratio... | Dmitry Stogov | 2017-07-17 | 1 | -10/+0 |
* | further sync for vim mode lines | Anatol Belski | 2017-07-04 | 1 | -0/+10 |
* | Added ZEND_FUNC_NUM_ARGS, ZEND_FUNC_GET_ARGS instructions, to implement corre... | Dmitry Stogov | 2017-05-30 | 1 | -1/+3 |
* | Added ZEND_GET_CLASS, ZEMD_GET_CALLED_CLASS, ZEND_GET_TYPE instructions, to i... | Dmitry Stogov | 2017-05-25 | 1 | -1/+4 |
* | Added ZEND_COUNT instruction, to implement corresponding builtin. | Dmitry Stogov | 2017-05-25 | 1 | -1/+2 |
* | Added ZEND_IN_ARRAY instruction, implementing optimized in_array() builtin fu... | Dmitry Stogov | 2017-05-24 | 1 | -1/+2 |
* | Switch to HYBRID VM | Dmitry Stogov | 2017-05-17 | 1 | -1/+6 |
* | Implemented HYBRID VM instruction dispatch method that takes advantages of bo... | Dmitry Stogov | 2017-05-03 | 1 | -0/+1 |
* | Implement jumptable optimization | Nikita Popov | 2017-04-10 | 1 | -1/+3 |
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-02 | 1 | -1/+1 |
* | Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) | Dmitry Stogov | 2016-07-07 | 1 | -0/+1 |
* | Introduce new CHECK_VAR instruction to keep warnings about undefined variables. | Dmitry Stogov | 2016-06-30 | 1 | -0/+1 |
* | Implemented RFC: Fix inconsistent behavior of $this variable | Dmitry Stogov | 2016-06-16 | 1 | -1/+3 |
* | Split ZEND_SEND_VAR_NO_REF into ZEND_SEND_VAR_NO_REF and ZEND_SEND_VAR_NO_REF... | Dmitry Stogov | 2016-05-31 | 1 | -1/+1 |
* | Fixed bug #72213 (Finally leaks on nested exceptions). | Dmitry Stogov | 2016-05-25 | 1 | -2/+0 |
* | Eliminated checks for (func->op_array.fn_flags & ZEND_ACC_GENERATOR) in fast ... | Dmitry Stogov | 2016-05-13 | 1 | -0/+1 |
* | Added ability to avoid code generation for useless opcode handlers. | Dmitry Stogov | 2016-03-11 | 1 | -1/+3 |
* | Allow usage of "TMPVARCV" pattern for cases when there is no difference in ha... | Dmitry Stogov | 2016-03-11 | 1 | -0/+1 |
* | Consolidate op1/op2 vm flags | Nikita Popov | 2016-01-21 | 1 | -24/+14 |
* | Introduced BIND_STATIC opcode instead of FETCH_R/FETCH_W(static)+ASSIGN/ASSIG... | Dmitry Stogov | 2016-01-12 | 1 | -1/+2 |
* | Merge branch 'PHP-7.0' | Xinchen Hui | 2016-01-02 | 1 | -1/+1 |
|\ |
|