last_try_catch   2918 Zend/zend_compile.c 	int try_catch_offset = CG(active_op_array)->last_try_catch++;
last_try_catch   2920 Zend/zend_compile.c 	CG(active_op_array)->try_catch_array = erealloc(CG(active_op_array)->try_catch_array, sizeof(zend_try_catch_element)*CG(active_op_array)->last_try_catch);
last_try_catch    296 Zend/zend_compile.h 	int last_try_catch;
last_try_catch    184 Zend/zend_generators.c 	for (i = 0; i < ex->op_array->last_try_catch; i++) {
last_try_catch     92 Zend/zend_opcode.c 	op_array->last_try_catch = 0;
last_try_catch    496 Zend/zend_opcode.c 	for (i = 0; i < op_array->last_try_catch; i++) {
last_try_catch    522 Zend/zend_opcode.c 	for (i = 0; i < op_array->last_try_catch; i++) {
last_try_catch    543 Zend/zend_opcode.c 	for (i = 0; i < op_array->last_try_catch; i++) {
last_try_catch    564 Zend/zend_opcode.c 	zend_uint i = op_array->last_try_catch;
last_try_catch    643 Zend/zend_opcode.c 	for (i = 0; i < op_array->last_try_catch; i++) {
last_try_catch   5230 Zend/zend_vm_def.h 	for (i=0; i<EG(active_op_array)->last_try_catch; i++) {
last_try_catch   1186 Zend/zend_vm_execute.h 	for (i=0; i<EG(active_op_array)->last_try_catch; i++) {
last_try_catch    170 ext/opcache/Optimizer/block_pass.c 	if (op_array->last_try_catch) {
last_try_catch    172 ext/opcache/Optimizer/block_pass.c 		cfg->try = ecalloc(op_array->last_try_catch, sizeof(zend_code_block *));
last_try_catch    173 ext/opcache/Optimizer/block_pass.c 		cfg->catch = ecalloc(op_array->last_try_catch, sizeof(zend_code_block *));
last_try_catch    174 ext/opcache/Optimizer/block_pass.c 		for (i = 0; i< op_array->last_try_catch; i++) {
last_try_catch    526 ext/opcache/Optimizer/block_pass.c 	if (op_array->last_try_catch) {
last_try_catch    528 ext/opcache/Optimizer/block_pass.c 		for (i=0; i< op_array->last_try_catch; i++) {
last_try_catch   1253 ext/opcache/Optimizer/block_pass.c 	if (op_array->last_try_catch) {
last_try_catch   1255 ext/opcache/Optimizer/block_pass.c 		for (i = 0, j = 0; i< op_array->last_try_catch; i++) {
last_try_catch   1262 ext/opcache/Optimizer/block_pass.c 		op_array->last_try_catch = j;
last_try_catch   1415 ext/opcache/Optimizer/block_pass.c 						   op_array->last_try_catch == 0 &&
last_try_catch    102 ext/opcache/Optimizer/nop_removal.c 		for (j = 0; j < op_array->last_try_catch; j++) {
last_try_catch    438 ext/opcache/zend_persist.c 		zend_accel_store(op_array->try_catch_array, sizeof(zend_try_catch_element) * op_array->last_try_catch);
last_try_catch    237 ext/opcache/zend_persist_calc.c 		ADD_DUP_SIZE(op_array->try_catch_array, sizeof(zend_try_catch_element) * op_array->last_try_catch);