Home
last modified time | relevance | path

Searched refs:finally_op_num (Results 1 – 4 of 4) sorted by relevance

/PHP-5.6/Zend/
H A Dzend_opcode.c541 zend_uint finally_op_num = 0; in zend_resolve_fast_call() local
546 finally_op_num = op_array->try_catch_array[i].finally_op; in zend_resolve_fast_call()
550 if (finally_op_num) { in zend_resolve_fast_call()
552 ZEND_ASSERT(op_array->opcodes[finally_op_num - 2].opcode == ZEND_FAST_CALL); in zend_resolve_fast_call()
555 op_array->opcodes[fast_call].op2.opline_num = finally_op_num - 2; in zend_resolve_fast_call()
641 zend_uint catch_op_num = 0, finally_op_num = 0; in zend_resolve_finally_ret() local
648 finally_op_num = op_array->try_catch_array[i].finally_op; in zend_resolve_finally_ret()
655 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) { in zend_resolve_finally_ret()
658 op_array->opcodes[op_num].op2.opline_num = finally_op_num; in zend_resolve_finally_ret()
H A Dzend_generators.c171 zend_uint op_num, finally_op_num; in zend_generator_dtor_storage() local
183 finally_op_num = 0; in zend_generator_dtor_storage()
192 finally_op_num = try_catch->finally_op; in zend_generator_dtor_storage()
198 if (finally_op_num) { in zend_generator_dtor_storage()
199 ex->opline = &ex->op_array->opcodes[finally_op_num]; in zend_generator_dtor_storage()
H A Dzend_vm_def.h5239 zend_uint catch_op_num = 0, finally_op_num = 0, finally_op_end = 0; variable
5262 finally_op_num = EX(op_array)->try_catch_array[i].finally_op;
5332 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) {
5339 ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]);
H A Dzend_vm_execute.h1172 zend_uint catch_op_num = 0, finally_op_num = 0, finally_op_end = 0; in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER() local
1195 finally_op_num = EX(op_array)->try_catch_array[i].finally_op; in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
1265 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) { in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
1272 ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[finally_op_num]); in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()

Completed in 107 milliseconds