Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Reduced size of zend_op on 64-bit systems. | Dmitry Stogov | 2014-12-12 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the main idea - the smaller the zend_op structure, the lees memory traffic is required to load VM instructions during execution. The patch reduces the size of each opcode from 48 to 32 bytes (saves 16 bytes for each opcode, and applications use thousands of opoceds). This reduced the number of CPU cache misses by 12% and improved performance of real-life apps by 1-2%. The patch affects how constants and jump targets are represented in VM during execution. Previously they were implemented as absolute 64-bit pointers. Now they are relative 32-bit offsets. In run-time constant now should be accessed as: RT_CONSTANT(op_array, opine->op1) instead of opline->op1.zv EX_CONSTANT(opline->op1) instead of opline->op1.zv Jump targets: OP_JMP_ADDR(opline, opline->op2) instead of opline->op2.jmp_addr The patch doesn't change zend_op representation for 32-bit systems. They still use absolute addresses. The compile-time representation is also kept the same. | |||||
* | | Made phpdbg compatible with new engine | Bob Weinand | 2014-10-24 | 1 | -196/+19 | |
|\ \ | |/ | ||||||
| * | Merge phpdbg into PHP-5.6 | Bob Weinand | 2014-10-24 | 1 | -17/+5 | |
| | | ||||||
* | | Fixed list() behavior inconsistency (string handling is disabled for all ↵ | Dmitry Stogov | 2014-10-05 | 1 | -1/+1 | |
| | | | | | | | | cases, ArrayAccess objects handling is enabled for all cases, ZEND_FETCH_DIM_TMP_VAR opcode is renamed into ZEND_FETCH_LIST, ZEND_FETCH_ADD_LOCK flag is removed). | |||||
* | | Use zval_ptr_dtor_nogc() to free IS_TMP_VAR operands. | Dmitry Stogov | 2014-09-23 | 1 | -1/+0 | |
| | | | | | | | | Removed ZEND_SWITCH_FREE opcode (ZEND_FREE used instead). | |||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 | |
| | | ||||||
* | | Removed ZEND_QM_ASSIGN_VAR and ZEND_JMP_SET_VAR opcodes (in PHPNG they did ↵ | Dmitry Stogov | 2014-09-11 | 1 | -9/+0 | |
| | | | | | | | | exacly the same as ZEND_QM_ASSIGN and ZEND_JMP_SET) | |||||
* | | master renames phase 2 | Anatol Belski | 2014-08-25 | 1 | -2/+2 | |
|/ | ||||||
* | Merge sapi/phpdbg into PHP-5.6 | Bob Weinand | 2014-04-21 | 1 | -0/+5 | |
| | ||||||
* | Merge branch 'phpdbg' into PHP-5.6 | Johannes Schlüter | 2014-01-18 | 1 | -7/+9 | |
| | ||||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'master' of sapi/phpdbg into PHP-5.6 | Bob Weinand | 2013-12-20 | 1 | -0/+361 | |
Including phpdbg. |