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 the same module is compiled multiple times then it significantly increases memory usage.
There are few enhancements which could be applied:
For each module compilation new ModuleCollector is created to collect instruction coverage of this module instance. This could be skipped when module with same ModuleUri previously compiled is fully covered.
If 1st enhancement is not enough then we can introduce configuration parameter which will control how many ModuleCollector instances of the same module (same uri) could be kept in memory. When the threshold exceeds then merging could be performed on the fly.
The text was updated successfully, but these errors were encountered:
When the same module is compiled multiple times then it significantly increases memory usage.
There are few enhancements which could be applied:
ModuleCollector
is created to collect instruction coverage of this module instance. This could be skipped when module with sameModuleUri
previously compiled is fully covered.ModuleCollector
instances of the same module (same uri) could be kept in memory. When the threshold exceeds then merging could be performed on the fly.The text was updated successfully, but these errors were encountered: