Skip to content

Commit de9b28f

Browse files
committed
Merge branch 'master' into jit-dynasm
2 parents 267347f + 26a6d20 commit de9b28f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Zend/zend_vm_def.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7783,6 +7783,8 @@ ZEND_VM_HANDLER(158, ZEND_CALL_TRAMPOLINE, ANY, ANY)
77837783
zend_execute_data *call;
77847784
USE_OPLINE
77857785

7786+
SAVE_OPLINE();
7787+
77867788
args = emalloc(sizeof(zend_array));
77877789
zend_hash_init(args, num_args, NULL, ZVAL_PTR_DTOR, 0);
77887790
if (num_args) {
@@ -7798,7 +7800,6 @@ ZEND_VM_HANDLER(158, ZEND_CALL_TRAMPOLINE, ANY, ANY)
77987800
} ZEND_HASH_FILL_END();
77997801
}
78007802

7801-
SAVE_OPLINE();
78027803
call = execute_data;
78037804
execute_data = EG(current_execute_data) = EX(prev_execute_data);
78047805

Zend/zend_vm_execute.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1906,6 +1906,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_CALL_TRAMPOLINE_SPEC_HANDLER(Z
19061906
zend_execute_data *call;
19071907
USE_OPLINE
19081908

1909+
SAVE_OPLINE();
1910+
19091911
args = emalloc(sizeof(zend_array));
19101912
zend_hash_init(args, num_args, NULL, ZVAL_PTR_DTOR, 0);
19111913
if (num_args) {
@@ -1921,7 +1923,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_CALL_TRAMPOLINE_SPEC_HANDLER(Z
19211923
} ZEND_HASH_FILL_END();
19221924
}
19231925

1924-
SAVE_OPLINE();
19251926
call = execute_data;
19261927
execute_data = EG(current_execute_data) = EX(prev_execute_data);
19271928

0 commit comments

Comments
 (0)