Lines Matching refs:try_catch
1690 zend_try_catch_element *try_catch = local
1693 if (op_num < try_catch->catch_op && ex) {
1695 cleanup_live_vars(execute_data, op_num, try_catch->catch_op);
1696 ZEND_VM_SET_OPCODE(&EX(func)->op_array.opcodes[try_catch->catch_op]);
1699 } else if (op_num < try_catch->finally_op) {
1701 zval *fast_call = EX_VAR(EX(func)->op_array.opcodes[try_catch->finally_end].op1.var);
1702 cleanup_live_vars(execute_data, op_num, try_catch->finally_op);
1706 ZEND_VM_SET_OPCODE(&EX(func)->op_array.opcodes[try_catch->finally_op]);
1709 } else if (op_num < try_catch->finally_end) {
1710 zval *fast_call = EX_VAR(EX(func)->op_array.opcodes[try_catch->finally_end].op1.var);
1765 zend_try_catch_element *try_catch = &EX(func)->op_array.try_catch_array[i]; local
1766 if (try_catch->try_op > throw_op_num) {
1770 if (throw_op_num < try_catch->catch_op || throw_op_num < try_catch->finally_end) {