Skip to content
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

Rollout TurboModuleBinding::Prototype #38220

Closed
wants to merge 1 commit into from

Conversation

javache
Copy link
Member

@javache javache commented Jul 6, 2023

Summary:
We ran an experiment to test different implementations of TurboModules HostObjects, as the current one has various inefficiencies, such as re-creating HostFunctions on every property access. The strategy we found to be most efficient and flexible longer-term is to represent the TurboModule with a plain JavaScript object and use a HostObject as its prototype. Whenever a property is accessed through the prototype, we cache the property value on the plain object, so it can be efficiently resolved by the VM for future accesses.

Changelog: [General] TurboModules are now exposed to JS as the prototype of a plain JS object, so methods can be cached

Differential Revision: D47258286

@facebook-github-bot facebook-github-bot added CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. p: Facebook Partner: Facebook Partner fb-exported labels Jul 6, 2023
@facebook-github-bot
Copy link
Contributor

This pull request was exported from Phabricator. Differential Revision: D47258286

@analysis-bot
Copy link

analysis-bot commented Jul 6, 2023

Platform Engine Arch Size (bytes) Diff
android hermes arm64-v8a 9,001,384 -531
android hermes armeabi-v7a 8,255,304 -676
android hermes x86 9,510,428 -628
android hermes x86_64 9,356,298 -643
android jsc arm64-v8a 9,614,455 -494
android jsc armeabi-v7a 8,740,948 -636
android jsc x86 9,701,305 -599
android jsc x86_64 9,947,880 -580

Base commit: 50f620a
Branch: main

@facebook-github-bot
Copy link
Contributor

This pull request was exported from Phabricator. Differential Revision: D47258286

@javache javache force-pushed the export-D47258286 branch from 5d1579a to 7f4fbd6 Compare July 10, 2023 09:55
javache added a commit to javache/react-native that referenced this pull request Jul 10, 2023
Summary:
Pull Request resolved: facebook#38220

We ran an experiment to test different implementations of TurboModules HostObjects, as the current one has various inefficiencies, such as re-creating HostFunctions on every property access. The strategy we found to be most efficient and flexible longer-term is to represent the TurboModule with a plain JavaScript object and use a HostObject as its prototype. Whenever a property is accessed through the prototype, we cache the property value on the plain object, so it can be efficiently resolved by the VM for future accesses.

Changelog: [General] TurboModules are now exposed to JS as the prototype of a plain JS object, so methods can be cached

Reviewed By: sammy-SC

Differential Revision: D47258286

fbshipit-source-id: 279b32051e5306365ac0f7c03e1d0751d1e26a51
Summary:
Pull Request resolved: facebook#38220

We ran an experiment to test different implementations of TurboModules HostObjects, as the current one has various inefficiencies, such as re-creating HostFunctions on every property access. The strategy we found to be most efficient and flexible longer-term is to represent the TurboModule with a plain JavaScript object and use a HostObject as its prototype. Whenever a property is accessed through the prototype, we cache the property value on the plain object, so it can be efficiently resolved by the VM for future accesses.

Changelog: [General] TurboModules are now exposed to JS as the prototype of a plain JS object, so methods can be cached

Reviewed By: sammy-SC

Differential Revision: D47258286

fbshipit-source-id: 8954e16dafb30551dd8c72cd88f800e6be79cce3
@facebook-github-bot
Copy link
Contributor

This pull request was exported from Phabricator. Differential Revision: D47258286

@javache javache force-pushed the export-D47258286 branch from 7f4fbd6 to 1c2f612 Compare July 10, 2023 10:03
@facebook-github-bot facebook-github-bot added the Merged This PR has been merged. label Jul 10, 2023
@facebook-github-bot
Copy link
Contributor

This pull request has been merged in 20dba39.

@javache javache deleted the export-D47258286 branch July 11, 2023 13:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. fb-exported Merged This PR has been merged. p: Facebook Partner: Facebook Partner
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants