-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Based on poking around Julia's `src/dump.c`, it's my understanding that a *disconnected* (backedge-free) `MethodInstance` needs to be cached in the module owning the `Method`. The implication is that Base methods that get called on package-defined objects cannot be cached on their own merits, so we should exclude such `MethodInstance`s. The way to fix this is to make such calls inferrable, in which case they will be cached in the package module thanks to their backedges.
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters