uint32_t i;
zend_op *opline;
- uint32_t try_catch_offset = zend_add_try_element(
- get_next_op_number(CG(active_op_array)));
+ uint32_t try_catch_offset;
uint32_t *jmp_opnums = safe_emalloc(sizeof(uint32_t), catches->children, 0);
+ HashPosition hpos;
if (catches->children == 0 && !finally_ast) {
zend_error_noreturn(E_COMPILE_ERROR, "Cannot use try without catch or finally");
}
+ /* label: try { } must not be equal to try { label: } */
+ if (CG(context).labels) {
+ zval *labelzv;
+ zend_hash_internal_pointer_end_ex(CG(context).labels, &hpos);
+ if ((labelzv = zend_hash_get_current_data_ex(CG(context).labels, &hpos))) {
+ zend_label *label = Z_PTR_P(labelzv);
+ if (label->opline_num == get_next_op_number(CG(active_op_array))) {
+ /* using a NOP doesn't work here, it would be removed by opcache */
+ zend_emit_jump(get_next_op_number(CG(active_op_array)) + 1);
+ }
+ }
+ }
+
+ try_catch_offset = zend_add_try_element(get_next_op_number(CG(active_op_array)));
+
zend_compile_stmt(try_ast);
if (catches->children != 0) {