Skip to content

Commit f396db9

Browse files
committed
Expose ZEND_JIT_EXIT_CHECK_EXCEPTION in exit info dump
1 parent 31aab19 commit f396db9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7943,6 +7943,9 @@ static void zend_jit_dump_exit_info(zend_jit_trace_info *t)
79437943
if (t->exit_info[i].flags & ZEND_JIT_EXIT_FREE_OP2) {
79447944
fprintf(stderr, "/FREE_OP2");
79457945
}
7946+
if (t->exit_info[i].flags & ZEND_JIT_EXIT_CHECK_EXCEPTION) {
7947+
fprintf(stderr, "/CHK_EXC");
7948+
}
79467949
for (j = 0; j < stack_size; j++) {
79477950
uint8_t type = STACK_TYPE(stack, j);
79487951
if (type != IS_UNKNOWN) {

0 commit comments

Comments
 (0)