-
Notifications
You must be signed in to change notification settings - Fork 24.6k
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
Static Hermes for React Native #48531
base: main
Are you sure you want to change the base?
Conversation
Hey @piaskowyk, Removal of Legacy Debugger — unfortunately, we still depend on these codepaths in some apps in the Meta codebase. We're going to need some validation/updates on our side around this, so that's at least one blocker. Am taking a look to understand. |
Hey @huntie 👋 |
Thanks for the PR and I apologize that this took so much time. It completely slipped from the list of PRs I had to review. I'll have a closer look at it on Monday. |
Hi @piaskowyk, thanks for working on this. I think it is great work!
We are more than happy to collaborate to make the PR work in all the scenario we need! 😄 |
Thanks for taking a look at it 🙌
|
Thanks for the answers! These are my thoughts on the open questions you have.
Yep, seems reasonable. We can have a USE_S_HERMES will have priority on USE_HERMES.
This is a question for @huntie... But AFAIU, this is an internal limitation only, so I'd say that we should just keep the files you removed there until we cleared the ground internally and then we can remove them |
Yup it can be Also on Android the situation is a bit different as we prebuild Hermes for the user. I think the easiest and most straightforward solution is that we ask the Hermes team to point As an alternative, we can just update our builds to download from react-native/packages/react-native/ReactAndroid/hermes-engine/build.gradle.kts Lines 80 to 85 in 4535e62
If we want to make this toggleable for the users, we'll have to produce 2 Hermes artifacts (which I don't think it's worth the effort). |
Can someone comment on a hopefully unwarrented worry about OTA updates like Expo Update not working anymore with static hermes? As I understand many companies, esp. startups chose RN for its back-then unique OTA capability (Flutter got it in late 23 thanks to shorebird.dev so it's not a unique selling point anymore today). Seems to me that Static Hermes conflicts with the OTA usecase, as Apple seems to draw the line when it comes to "over the air binary downloads", at least they did so far with native Objective-C Apps that tried to download binary artifacts and dynamically executed them, and banned a lot of Apps who did that a while ago from the store. But static Hermes means no more Hermes interpreter.. right? So will OTA Updates still work, or is that not clarified yet? Am I just seeing problems where there aren't any? Thanks for clarifcation. |
@hkochniss |
Thanks for the answer, interesting talk. Still not sure this will be possible on iOS, given that executing raw assembly instructions without an Apple safeguard seems prohibited, maybe he meant "on Android only", as I don't see an Interpreter executing this assembly. Would like clarification from one of the core team members. Basically see comment here |
@hkochniss There is a lot of confusion in the communication and it is largely our fault. In 2023, we presented Static Hermes at RN EU, as a next generation of Hermes that was able to compile JS code to native code. This was an experimental version, not ready to be shipped. What we are experimenting with at Meta and what could be maybe ready to be brought to the OSS community, is this second version. More than static Hermes, you should consider it a Hermes 2.0, or a New Hermes. But it will not have the Static Hermes connotation of compiling JS code to native code. This PR aims to provide a way to use this New Hermes, with JIT and other optimizations, in React Native, but there won't be any JS --> Native compilation. As far as we know, OTA will keep working fine with this new version of Hermes. That said, we are still experimenting with the Static aspects of Hermes, but the team encountered issues that needs to be solved before having a version ready to be shipped. Some issues are related to having typed and untyped code in the same codebase, for example. For sure, we will look into the OTA aspect of Static Hermes before shipping it to the OSS. If you want to learn more, Tzvetan was on the React Native Radio talking about Static Hermes last week. |
Many thanks for this excellent explenation, I think this helps a lot of people eventually understand the (current) direction and what to expect. |
Summary:
This PR proposes changes to React Native to adopt the latest version of static Hermes. I've already made required changes for Hermes code, which you can view facebook/hermes#1566
Here's an overview of what's included:
Remarks
.hermesversion
file as a temporary workaround to test static Hermes from a specific commit until the proper tag is created.d6c8fe6f1a1135aa2528b775bbd4662c625c0088
- facebook/hermes@d6c8fe6 which is the newest commit for (08.01.2025)Benchmarks
The new implementation of Hermes offers a significant performance boost. Below are results of
nBody
benchmark.Tested on physical devices:
Benchmark source code
Changelog:
[GENERAL] [CHANGED] - Support for Static Hermes
Test Plan:
Just run RNTester app.