Lines Matching refs:jumptable
5552 HashTable *jumptable = NULL; in zend_compile_switch() local
5565 ALLOC_HASHTABLE(jumptable); in zend_compile_switch()
5566 zend_hash_init(jumptable, cases->children, NULL, NULL, 0); in zend_compile_switch()
5568 ZVAL_ARR(&jumptable_op.u.constant, jumptable); in zend_compile_switch()
5626 if (jumptable) { in zend_compile_switch()
5633 zend_hash_index_add(jumptable, Z_LVAL_P(cond_zv), &jmp_target); in zend_compile_switch()
5636 zend_hash_add(jumptable, Z_STR_P(cond_zv), &jmp_target); in zend_compile_switch()
5642 if (jumptable) { in zend_compile_switch()
5655 if (jumptable) { in zend_compile_switch()
5735 HashTable *jumptable = NULL; in zend_compile_match() local
5754 ALLOC_HASHTABLE(jumptable); in zend_compile_match()
5755 zend_hash_init(jumptable, num_conds, NULL, NULL, 0); in zend_compile_match()
5757 ZVAL_ARR(&jumptable_op.u.constant, jumptable); in zend_compile_match()
5811 if (jumptable) { in zend_compile_match()
5836 if (jumptable) { in zend_compile_match()
5842 zend_hash_index_add(jumptable, Z_LVAL_P(cond_zv), &jmp_target); in zend_compile_match()
5845 zend_hash_add(jumptable, Z_STR_P(cond_zv), &jmp_target); in zend_compile_match()
5856 if (jumptable) { in zend_compile_match()