Home
last modified time | relevance | path

Searched refs:EXT_TYPE_UNUSED (Results 1 – 7 of 7) sorted by relevance

/PHP-5.5/ext/opcache/Optimizer/
H A Dzend_optimizer_internal.h45 # define RESULT_USED(op) (((op->result_type & IS_VAR) && !(op->result_type & EXT_TYPE_UNUSED)) || o…
46 # define RESULT_UNUSED(op) ((op->result_type & EXT_TYPE_UNUSED) != 0)
50 # define RESULT_USED(op) ((op->result.op_type == IS_VAR && (op->result.u.EA.type & EXT_TYPE_UNUSED)…
51 …ine RESULT_UNUSED(op) ((op->result.op_type == IS_VAR) && (op->result.u.EA.type == EXT_TYPE_UNUSED))
H A Dpass3.c427 ZEND_RESULT_TYPE(opline) = IS_VAR | EXT_TYPE_UNUSED;
431 ZEND_RESULT(opline).EA.type |= EXT_TYPE_UNUSED;
H A Dblock_pass.c1956 ZEND_RESULT_TYPE(opline) |= EXT_TYPE_UNUSED; in zend_t_usage()
1958 ZEND_RESULT(opline).EA.type |= EXT_TYPE_UNUSED; in zend_t_usage()
2004 (ZEND_RESULT_TYPE(opline) & EXT_TYPE_UNUSED) && in zend_t_usage()
2006 ZEND_RESULT_TYPE(opline) &= ~EXT_TYPE_UNUSED; in zend_t_usage()
2011 (ZEND_RESULT(opline).EA.type & EXT_TYPE_UNUSED) != 0) { in zend_t_usage()
2012 ZEND_RESULT(opline).EA.type &= ~EXT_TYPE_UNUSED; in zend_t_usage()
/PHP-5.5/Zend/
H A Dzend_compile.h416 #define EXT_TYPE_UNUSED (1<<5) macro
H A Dzend_compile.c1058 opline->result_type = IS_UNUSED | EXT_TYPE_UNUSED; in zend_do_assign_ref()
1474 opline->result_type |= EXT_TYPE_UNUSED; in zend_do_free()
1489 opline->result_type |= EXT_TYPE_UNUSED; in zend_do_free()
6029 CG(active_op_array)->opcodes[CG(active_op_array)->last-1].result_type |= EXT_TYPE_UNUSED; in zend_do_fetch_static_variable()
6083 CG(active_op_array)->opcodes[CG(active_op_array)->last-1].result_type |= EXT_TYPE_UNUSED; in zend_do_fetch_global_variable()
H A Dzend_execute.c63 #define RETURN_VALUE_USED(opline) (!((opline)->result_type & EXT_TYPE_UNUSED))
/PHP-5.5/
H A DNEWS3235 EXT_TYPE_UNUSED flag any more. This is a very rare and useless case.

Completed in 91 milliseconds