You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During class copying, it's likely that many copies of the same string will be made, for example the names of properties and inherited methods.
We can avoid this by putting interned strings into PTHREADS_ZG(resolve), allowing strings with the same origin pointer to reuse the same destination string. This will both improve performance and reduce memory usage.
The text was updated successfully, but these errors were encountered:
During class copying, it's likely that many copies of the same string will be made, for example the names of properties and inherited methods.
We can avoid this by putting interned strings into
PTHREADS_ZG(resolve)
, allowing strings with the same origin pointer to reuse the same destination string. This will both improve performance and reduce memory usage.The text was updated successfully, but these errors were encountered: