Home
last modified time | relevance | path

Searched refs:IS_VAR (Results 1 – 12 of 12) 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…
47 # define SAME_VAR(op1, op2) ((((op1 ## _type & IS_VAR) && (op2 ## _type & IS_VAR)) || (op1 ## _type…
50 # define RESULT_USED(op) ((op->result.op_type == IS_VAR && (op->result.u.EA.type & EXT_TYPE_UNUSED)…
51 # define RESULT_UNUSED(op) ((op->result.op_type == IS_VAR) && (op->result.u.EA.type == EXT_TYPE_UNU…
52 # define SAME_VAR(op1, op2) (((op1.op_type == IS_VAR && op2.op_type == IS_VAR) || (op1.op_type == …
H A Doptimize_temp_vars_5.c97 if (ZEND_RESULT_TYPE(opline) & (IS_VAR | IS_TMP_VAR | IS_CONST)) {
103 if (ZEND_RESULT_TYPE(opline) & (IS_VAR | IS_TMP_VAR)) {
117 if ((ZEND_OP1_TYPE(opline) & (IS_VAR | IS_TMP_VAR))
138 if ((ZEND_OP2_TYPE(opline) & (IS_VAR | IS_TMP_VAR))
170 ZEND_OP2_TYPE(opline + 1) & (IS_VAR | IS_TMP_VAR)) {
181 if (ZEND_RESULT_TYPE(opline) & (IS_VAR | IS_TMP_VAR | IS_CONST)) {
184 if (ZEND_RESULT_TYPE(opline) & (IS_VAR | IS_TMP_VAR)) {
H A Dpass1_5.c298 if (op->op1_type == IS_VAR && op->op1.var == var) {
305 } else if (op->op2_type == IS_VAR && op->op2.var == var) {
316 if (use->op1_type == IS_VAR && use->op1.var == var) {
322 } else if (use->op2_type == IS_VAR && use->op2.var == var) {
H A Dpass3.c65 if ((ZEND_OP2_TYPE(opline) == IS_VAR || ZEND_OP2_TYPE(opline) == IS_CV)
88 if ((ZEND_OP1_TYPE(opline) == IS_VAR || ZEND_OP1_TYPE(opline) == IS_CV)
427 ZEND_RESULT_TYPE(opline) = IS_VAR | EXT_TYPE_UNUSED;
429 ZEND_RESULT_TYPE(opline) = IS_VAR;
H A Dblock_pass.c536 # define VAR_NUM_EX(op) ((op ## _type & (IS_TMP_VAR|IS_VAR))?VAR_NUM((op).var):(op).var)
729 if((ZEND_OP1_TYPE(opline) & IS_VAR) && in zend_optimize_block()
1762 if (!(last_op->op1_type & (IS_VAR|IS_TMP_VAR))) { in zend_jmp_optimization()
1844 if ((op ## _type & (IS_VAR | IS_TMP_VAR)) && \
1856 if ((op.op_type == IS_VAR || op.op_type == IS_TMP_VAR) && \
1954 if (ZEND_RESULT_TYPE(opline) == IS_VAR) { in zend_t_usage()
1985 if (ZEND_OP1_TYPE(opline) == IS_VAR || ZEND_OP1_TYPE(opline) == IS_TMP_VAR) { in zend_t_usage()
1994 if (ZEND_OP1_TYPE(opline) == IS_VAR || ZEND_OP1_TYPE(opline) == IS_TMP_VAR) { in zend_t_usage()
1997 if (ZEND_OP2_TYPE(opline) == IS_VAR || ZEND_OP2_TYPE(opline) == IS_TMP_VAR) { in zend_t_usage()
2003 if ((ZEND_RESULT_TYPE(opline) & IS_VAR) && in zend_t_usage()
[all …]
/PHP-5.5/Zend/
H A Dzend_vm_execute.h13421 if ((IS_VAR == IS_CV || IS_VAR == IS_VAR) && in ZEND_FE_RESET_SPEC_VAR_HANDLER()
13741 if (IS_VAR == IS_VAR || IS_VAR == IS_CV) { in ZEND_JMP_SET_VAR_SPEC_VAR_HANDLER()
13793 if (IS_VAR == IS_VAR || IS_VAR == IS_CV) { in ZEND_QM_ASSIGN_VAR_SPEC_VAR_HANDLER()
15529 if (IS_VAR==IS_VAR) { in ZEND_CASE_SPEC_VAR_CONST_HANDLER()
17887 if (IS_VAR==IS_VAR) { in ZEND_CASE_SPEC_VAR_TMP_HANDLER()
20205 if (IS_VAR==IS_VAR) { in ZEND_CASE_SPEC_VAR_VAR_HANDLER()
20427 if (IS_VAR == IS_CV || IS_VAR == IS_VAR) { in ZEND_UNSET_DIM_SPEC_VAR_VAR_HANDLER()
20445 if (IS_VAR == IS_CV || IS_VAR == IS_VAR) { in ZEND_UNSET_DIM_SPEC_VAR_VAR_HANDLER()
20451 if (IS_VAR == IS_CV || IS_VAR == IS_VAR) { in ZEND_UNSET_DIM_SPEC_VAR_VAR_HANDLER()
23676 if (IS_VAR==IS_VAR) { in ZEND_CASE_SPEC_VAR_CV_HANDLER()
[all …]
H A Dzend_vm_def.h462 if (OP1_TYPE == IS_VAR && !OP1_FREE) {
1101 if (OP1_TYPE == IS_VAR && !free_op1.var) {
1765 if (OP1_TYPE == IS_VAR && OP1_FREE) {
1786 if (OP2_TYPE == IS_VAR &&
2683 if (OP2_TYPE == IS_VAR && OP2_FREE &&
3118 if (OP1_TYPE == IS_VAR &&
3349 if (OP1_TYPE==IS_VAR) {
3970 if (OP1_TYPE != IS_VAR || container) {
4066 if (OP1_TYPE != IS_VAR || container) {
4742 if (OP1_TYPE == IS_VAR || OP1_TYPE == IS_CV) {
[all …]
H A Dzend_compile.c635 opline->op2_type = IS_VAR; in zend_do_binary_assign_op()
647 opline->result_type = IS_VAR; in zend_do_binary_assign_op()
736 opline.result_type = IS_VAR; in zend_do_fetch_static_member()
761 opline.result_type = IS_VAR; in zend_do_fetch_static_member()
815 opline.result_type = IS_VAR; in fetch_array_dim()
822 opline.result_type = IS_VAR; in fetch_array_dim()
1019 opline->result_type = IS_VAR; in zend_do_assign()
1191 opline->result_type = IS_VAR; in zend_do_pre_incdec()
2037 opline->result_type = IS_VAR; in zend_do_clone()
2604 case IS_VAR: in zend_do_pass_param()
[all …]
H A Dzend_execute.c360 case IS_VAR: in _get_zval_ptr()
454 } else if (op_type == IS_VAR) { in _get_zval_ptr_ptr()
H A Dzend_compile.h412 #define IS_VAR (1<<2) macro
/PHP-5.5/Zend/tests/
H A Dobject_handlers.phpt118 // IS_VAR
134 // IS_VAR + conversion
/PHP-5.5/
H A D.gdbinit541 set $optype = "IS_VAR"

Completed in 192 milliseconds