-
Notifications
You must be signed in to change notification settings - Fork 7.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frameless call optimization broke IN_ARRAY DFA transformation #18050
Comments
cc @iluuu1994 |
@nielsdos Are you already looking into this? If not, I can do so. |
I didn't yet look into this, I would have to refresh my memory first of how the callee info is stored etc. |
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 14, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
iluuu1994
added a commit
to iluuu1994/php-src
that referenced
this issue
Mar 17, 2025
in_array() calls are compiled to frameless calls. Adjust the optimization appropriately. Luckily, frameless opcodes simplify the optimization quite a bit. Fixes phpGH-18050
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
The following code:
Resulted in this output (under opcache.opt_debug_level=0x400000):
But I expected this output instead (like in 8.3) (under opcache.opt_debug_level=0x400000):
PHP Version
8.4+
Operating System
No response
The text was updated successfully, but these errors were encountered: