Lines Matching refs:try_catch_offset
63 uint32_t try_catch_offset; member
314 CG(context).try_catch_offset = -1; in zend_oparray_context_begin()
1158 uint32_t try_catch_offset = op_array->last_try_catch++; in zend_add_try_element() local
1164 elem = &op_array->try_catch_array[try_catch_offset]; in zend_add_try_element()
1170 return try_catch_offset; in zend_add_try_element()
5094 opline->op1.num = loop_var->try_catch_offset; in zend_handle_loops_and_finally_ex()
6096 uint32_t try_catch_offset; in zend_compile_try() local
6099 uint32_t orig_try_catch_offset = CG(context).try_catch_offset; in zend_compile_try()
6116 try_catch_offset = zend_add_try_element(get_next_op_number()); in zend_compile_try()
6129 fast_call.try_catch_offset = try_catch_offset; in zend_compile_try()
6133 CG(context).try_catch_offset = try_catch_offset; in zend_compile_try()
6164 CG(active_op_array)->try_catch_array[try_catch_offset].catch_op = opnum_catch; in zend_compile_try()
6231 opline->op1.num = try_catch_offset; in zend_compile_try()
6239 CG(active_op_array)->try_catch_array[try_catch_offset].finally_op = opnum_jmp + 1; in zend_compile_try()
6240 CG(active_op_array)->try_catch_array[try_catch_offset].finally_end in zend_compile_try()
6256 CG(context).try_catch_offset = orig_try_catch_offset; in zend_compile_try()