Searched refs:try_catch_offset (Results 1 – 5 of 5) sorted by relevance
/php-src/Zend/ |
H A D | zend_generators.c | 246 uint32_t op_num, try_catch_offset; in zend_generator_dtor_storage() local 289 try_catch_offset = -1; in zend_generator_dtor_storage() 298 try_catch_offset = i; in zend_generator_dtor_storage() 303 while (try_catch_offset != (uint32_t) -1) { in zend_generator_dtor_storage() 304 zend_try_catch_element *try_catch = &ex->func->op_array.try_catch_array[try_catch_offset]; in zend_generator_dtor_storage() 351 try_catch_offset--; in zend_generator_dtor_storage()
|
H A D | zend_compile.c | 66 uint32_t try_catch_offset; member 335 CG(context).try_catch_offset = -1; in zend_oparray_context_begin() 1234 uint32_t try_catch_offset = op_array->last_try_catch++; in zend_add_try_element() local 1240 elem = &op_array->try_catch_array[try_catch_offset]; in zend_add_try_element() 1246 return try_catch_offset; in zend_add_try_element() 5612 opline->op1.num = loop_var->try_catch_offset; in zend_handle_loops_and_finally_ex() 6614 uint32_t try_catch_offset; in zend_compile_try() local 6647 fast_call.try_catch_offset = try_catch_offset; in zend_compile_try() 6651 CG(context).try_catch_offset = try_catch_offset; in zend_compile_try() 6749 opline->op1.num = try_catch_offset; in zend_compile_try() [all …]
|
H A D | zend_compile.h | 202 uint32_t try_catch_offset; member
|
H A D | zend_vm_def.h | 8029 ZEND_VM_HELPER(zend_dispatch_try_catch_finally_helper, ANY, ANY, uint32_t try_catch_offset, uint32_… in ZEND_VM_HELPER() argument 8035 for (; try_catch_offset != (uint32_t) -1; try_catch_offset--) { in ZEND_VM_HELPER() 8037 &EX(func)->op_array.try_catch_array[try_catch_offset]; in ZEND_VM_HELPER() 8112 …ZEND_VM_DISPATCH_TO_HELPER(zend_dispatch_try_catch_finally_helper, try_catch_offset, -1, op_num, 0… 8176 …ZEND_VM_DISPATCH_TO_HELPER(zend_dispatch_try_catch_finally_helper, try_catch_offset, current_try_c… 8572 …ZEND_VM_DISPATCH_TO_HELPER(zend_dispatch_try_catch_finally_helper, try_catch_offset, current_try_c…
|
H A D | zend_vm_execute.h | 3176 … ZEND_FASTCALL zend_dispatch_try_catch_finally_helper_SPEC(uint32_t try_catch_offset, uint32_t op_… in zend_dispatch_try_catch_finally_helper_SPEC() argument 3182 for (; try_catch_offset != (uint32_t) -1; try_catch_offset--) { in zend_dispatch_try_catch_finally_helper_SPEC() 3184 &EX(func)->op_array.try_catch_array[try_catch_offset]; in zend_dispatch_try_catch_finally_helper_SPEC()
|
Completed in 262 milliseconds