Searched refs:catch_op_num (Results 1 - 3 of 3) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_vm_def.h5019 zend_uint catch_op_num = 0, finally_op_num = 0; variable
5039 catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
5072 if (!catch_op_num ||
5073 catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
5104 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) {
5109 } else if (catch_op_num) {
5110 ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
H A Dzend_vm_execute.h979 zend_uint catch_op_num = 0, finally_op_num = 0; local
999 catch_op_num = EX(op_array)->try_catch_array[i].catch_op;
1032 if (!catch_op_num ||
1033 catch_op_num >= EX(op_array)->brk_cont_array[i].brk) {
1064 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) {
1069 } else if (catch_op_num) {
1070 ZEND_VM_SET_OPCODE(&EX(op_array)->opcodes[catch_op_num]);
[all...]
H A Dzend_opcode.c576 zend_uint catch_op_num = 0, finally_op_num = 0; local
586 catch_op_num = op_array->try_catch_array[i].catch_op;
590 if (finally_op_num && (!catch_op_num || catch_op_num >= finally_op_num)) {
594 } else if (catch_op_num) {
597 op_array->opcodes[op_num].op2.opline_num = catch_op_num;

Completed in 63 milliseconds