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
When a new method node is selected, ReadyToRunLanguage.DecompileMethod is sequentially scanning all methods just to find out matching the R2RMethod instance. This is causing a hit on switch methods. The effect is particularly pronounced in a large ready to run binary, such as System.Private.CoreLib.dll.
We maybe able to reduce the hit by indexing the R2RMethod object instances by their method tokens.
The text was updated successfully, but these errors were encountered:
When a new method node is selected,
ReadyToRunLanguage.DecompileMethod
is sequentially scanning all methods just to find out matching theR2RMethod
instance. This is causing a hit on switch methods. The effect is particularly pronounced in a large ready to run binary, such asSystem.Private.CoreLib.dll
.We maybe able to reduce the hit by indexing the
R2RMethod
object instances by their method tokens.The text was updated successfully, but these errors were encountered: