-
Notifications
You must be signed in to change notification settings - Fork 70
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
Performance: V8 JSI calls are 4-6 times slower than Hermes/JSC (iOS) #185
Comments
hi @ammarahm-ed, sorry for late response. besides #179 locking issue, people also reported performance regression from v8 11, so i had downgraded v8 to 10 for android. unfortunately, v8-ios doesn't support v8 10, i will try to upgrade to newer v8 to see if that helps. |
After opening the issue here, I made some changes to the V8 jsi runtime that resulted in 3-4x performance improvement in function calls. Some of those might be overkill but I can open a PR if you want to take a look some time. |
that's awesome, 3-4x improvement is much. appreciated if you could help to create a PR when you get a chance. |
hey @ammarahm-ed could you share some more insights on what you did to improve JSI performance? |
I will see if I can find the changes I made to the runtime and share with you. |
Hey Kudo, I have been doing some testing to check v8 JSI performance compared to Hermes/JSC and I have found out that it's 4-6 times slower than Hermes/JSC. The issue seems to be related to the V8 JSI implementation rather than a v8 issue.
All benchmarks below were run on the same iPhone 6S device.
React Native v8 JSI:

Pure v8 (v10.x) calls vs v8 JSI in a NativeScript app take only 200ms:

JSC JSI (Fastest of all):

Hermes JSI:
Repro Expo Sample: https://github.com/ammarahm-ed/v8-jsi-benchmarks-ios
The issue might be related to: #179
The text was updated successfully, but these errors were encountered: