-
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
[PoC] Implement some internal functions in plain PHP #18204
base: master
Are you sure you want to change the base?
Conversation
Interesting. I wonder if preload scales well, or whether at some point with enough code we'll have a noticeable startup delay due to code compilation. It may be possible to store them in the binary as compiled opcodes, with the file cache mechanism. |
I would be in favor of this. |
With a 2 args closure, native is faster (1.04 times). |
Unsurprisingly, I'm also in favor of this for the maintenance aspect alone. However as a long-term goal I would find it important to be able to mix and match native and userland methods within a single class, similarly to Java’s As an example, For the implementation I would therefore be in favor of putting the implementation right into the stub files and to indicate somehow if the function / method is a stub or whether it contains the implementation. That would also allow downstream consumers to use the stub-files as-is. |
We have got issue with preloading and FPM using multiple pools with different user / groups and then using permissions for some operations so this would need to be properly tested. There is currently an ugly hack for single user but if there are multiple different users, then it might not work - I haven't tested it for some time but there were issues around it. |
Well this setup has already issues with opcache (clearing locks), just wondering if basically required preloading could make it even worse. |
@bukka @nielsdos yes, I used |
This is a very quick PoC of @staabm's idea in #17536 (comment).
This PR implements
array_find()
and related functions in plain PHP, and removes the C implementation.Idea
As seen in #17536, internal functions implemented in C are not necessarily faster than plain PHP ones. Therefore, it may be beneficial to implement internal functions in plain PHP code.
Aside from performance, this would have the following benefits:
Implementation
This PR is mostly a mean to demonstrate the concept and open the discussion, and not a proper implementation. For instance, I use
opcache.preload
to loadarray.php
.Although a proper implementation would use a similar mechanism.
The
.php
files could be either embed in the binary, or installed separately on the file system. Both have pros and cons.Benchmarks
I'm using the same benchmark script as in #17536.
The plain PHP implementations is 1.08 times faster than master on my machine:
When JIT is enabled in both branches, this branch is 2.30 times faster than master:
This is because JIT is able to inline the callback into
array_find()
in this benchmark, eliminating the function call overhead entirely, which is not possible with the C implementation. (JIT heuristics would probably blacklist some trace entry points afterarray_find()
is used with many different callbacks, but this is something we can tune.) In general, plain PHP code gives more optimizations opportunities to the JIT.