Home
last modified time | relevance | path

Searched refs:next_op (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/ext/opcache/Optimizer/
H A Dpass1_5.c139 zend_op *next_op = opline + 1; variable
150 while (next_op->opcode == ZEND_ADD_STRING || next_op->opcode == ZEND_ADD_CHAR) {
154 if (next_op->opcode == ZEND_ADD_CHAR) {
159 next_op++;
164 last_op = next_op;
185 next_op = opline + 1;
186 while (next_op < last_op) {
187 if (next_op->opcode == ZEND_ADD_STRING) {
188 memcpy(ptr, ZEND_OP2_LITERAL(next_op).value.str.val, ZEND_OP2_LITERAL(next_op).value.str.len);
195 MAKE_NOP(next_op);
[all …]
H A Dpass3.c410 zend_op *next_op = opline + 1; variable
412 if (next_op >= end) {
415 if (next_op->opcode == ZEND_FREE &&
416 ZEND_OP1(next_op).var == ZEND_RESULT(opline).var) {
417 MAKE_NOP(next_op);
/PHP-5.5/Zend/
H A Dzend_opcode.c430 zend_op *next_op; in get_next_op() local
443 next_op = &(op_array->opcodes[next_op_num]); in get_next_op()
445 init_op(next_op TSRMLS_CC); in get_next_op()
447 return next_op; in get_next_op()

Completed in 11 milliseconds