switch_entry     1767 Zend/zend_compile.c 		zend_switch_entry switch_entry;
switch_entry     1769 Zend/zend_compile.c 		switch_entry.cond.op_type = IS_UNUSED;
switch_entry     1770 Zend/zend_compile.c 		switch_entry.default_case = 0;
switch_entry     1771 Zend/zend_compile.c 		switch_entry.control_var = 0;
switch_entry     1773 Zend/zend_compile.c 		zend_stack_push(&CG(switch_cond_stack), (void *) &switch_entry, sizeof(switch_entry));
switch_entry     2775 Zend/zend_compile.c static int generate_free_switch_expr(const zend_switch_entry *switch_entry TSRMLS_DC) /* {{{ */
switch_entry     2779 Zend/zend_compile.c 	if (switch_entry->cond.op_type != IS_VAR && switch_entry->cond.op_type != IS_TMP_VAR) {
switch_entry     2780 Zend/zend_compile.c 		return (switch_entry->cond.op_type == IS_UNUSED);
switch_entry     2785 Zend/zend_compile.c 	opline->opcode = (switch_entry->cond.op_type == IS_TMP_VAR) ? ZEND_FREE : ZEND_SWITCH_FREE;
switch_entry     2786 Zend/zend_compile.c 	SET_NODE(opline->op1, &switch_entry->cond);
switch_entry     4986 Zend/zend_compile.c 	zend_switch_entry switch_entry;
switch_entry     4988 Zend/zend_compile.c 	switch_entry.cond = *cond;
switch_entry     4989 Zend/zend_compile.c 	switch_entry.default_case = -1;
switch_entry     4990 Zend/zend_compile.c 	switch_entry.control_var = -1;
switch_entry     4991 Zend/zend_compile.c 	zend_stack_push(&CG(switch_cond_stack), (void *) &switch_entry, sizeof(switch_entry));