Lines Matching refs:try_catch_offset
66 uint32_t try_catch_offset; member
339 CG(context).try_catch_offset = -1; in zend_oparray_context_begin()
1229 uint32_t try_catch_offset = op_array->last_try_catch++; in zend_add_try_element() local
1235 elem = &op_array->try_catch_array[try_catch_offset]; in zend_add_try_element()
1241 return try_catch_offset; in zend_add_try_element()
5607 opline->op1.num = loop_var->try_catch_offset; in zend_handle_loops_and_finally_ex()
6609 uint32_t try_catch_offset; in zend_compile_try() local
6612 uint32_t orig_try_catch_offset = CG(context).try_catch_offset; in zend_compile_try()
6629 try_catch_offset = zend_add_try_element(get_next_op_number()); in zend_compile_try()
6642 fast_call.try_catch_offset = try_catch_offset; in zend_compile_try()
6646 CG(context).try_catch_offset = try_catch_offset; in zend_compile_try()
6677 CG(active_op_array)->try_catch_array[try_catch_offset].catch_op = opnum_catch; in zend_compile_try()
6744 opline->op1.num = try_catch_offset; in zend_compile_try()
6752 CG(active_op_array)->try_catch_array[try_catch_offset].finally_op = opnum_jmp + 1; in zend_compile_try()
6753 CG(active_op_array)->try_catch_array[try_catch_offset].finally_end in zend_compile_try()
6769 CG(context).try_catch_offset = orig_try_catch_offset; in zend_compile_try()