Typecheck multiple modules at the same time
angerman asked me to outline how one might go about fixing #1409 (mutually recursive modules without hs-boot). Here is the most recent plan based on #10681 and discussion with SPJ.
- *The general approach.** Traditionally, users write hs-boot files, which compile to hi-boot files that are subsequently used for compilation. The approach that SPJ and I would like to take is to replace this step with a new one that typechecks all of the hs files at once.
- *More details.** Let's suppose we have A.hs and B.hs which import each other, A imports B using a
SOURCE
import, but no B.hs-boot is defined.
We ask GHC to typecheck A.hs and B.hs together to produce hi-boot files for each of the modules. To implement this, we need both a new major mode for this operation (similar to ghc -c
); and GhcMake needs to be adjusted to call this step on every SCC in the import graph, when one or more modules in the import graph do not have an hs-boot file. This part of the implementation is a bit annoying and was what thwarted me when I've made some stabs at this issue in the past. Probably the easiest thing to do initially is to fix up GhcMake to call your new frontend (you'll put it in HscMain
) on every SCC. An easy way to check progress here is to get ghc --make
to print out SCCs before it starts compiling them.
GHC needs to learn how to typecheck multiple modules at the same time. Let's talk a little bit about how typechecking works today: by the time we are at HscMain
we generally have a ModSummary
per source module to be compiled. You pass the ModSummary to something like tcRnModule
and you get back out a TcGblEnv
containing the results of typechecking. Look at hscIncrementalCompile
: if you're compiling a module proper, we desugar and optimize it properly (finish
) and then create an interface for it; if we're only typechecking (finishTypecheckOnly
) we go straight to generating the interface file after checking.
All of these functions assume, of course, that only one module is being typechecked at a time. So you must break this assumption. This comes in multiple steps. First, the actual typechecking, tcRnModule
needs to be adjusted. Notice tcRnModule
takes a single HsParsedModule
; now you need to feed it multiple parsed modules. You probably want a new function for this? What should this function look like? Trace further into initTc
: notice that the TcGblEnv
structure assumes that there is only one module being compiled at a time tcg_mod
(and other modules). So this assumption needs to be broken.
Now, trace into the main body of typechecking tcRnModuleTcRnM
. Normally the way we go about doing things is we rename imports, and then we rename and typecheck declarations. Clearly each of your parsed modules needs to have their imports resolved separately; furthermore, they might import each other. This needs to be made to work. I think this will have to be totally reimplemented, because you are going to have to deal with cases like:
module A(T) where
import B(T)
module B(T) where
import A(T)
This is obviously nonsense and your algorithm needs to identify this and kill it. Once you've done this you should have a separate tcg_rdr_env
for each of the parsed modules. tcRnImports
sets up a pile of other variables in TcGblEnv
too (see bottom) and I'm not sure what should be done with those.
Now we need to rename and typecheck the top-level declarations. Renaming of imported entities should proceed straightforwardly because you set up the GlobalRdrEnv correctly, but you need to give the correct module to each of the top-level declarations. Maybe assume no Template Haskell for now because I have no idea how that's supposed to work. The crux of the matter, though, is that once you've renamed all of the declarations, you now need to compute SCCs over ALL of the modules, because how else are you going to typecheck two mutually recursive declarations over two modules. At this point the one-module assumption of TcGblEnv shouldn't be a problem anymore because when we're dealing with renamed source everything knows its name.
There's a little bit more about the export list (tcRnExports
) but you've probably already handled this to handle the recursive imports correctly.
Finally, what you'll get out in the end is a big pile of types from DIFFERENT modules tcg_type_env
(and all of the other things: instances, etc. Though, I guess if an instance is defined in one module of a recursive module loop, it should be in scope everywhere?!) So now in the final stage, serializing to interface files, we need to disentangle everything and put the declarations for each module into a separate interface file per module. Maybe best to have kept them separate to begin with.
To conclude, adding support for typechecking multiple modules at once will probably involve rewriting large swathes of the renamer and top-level typechecking driver, but everything past that should basically be unchanged.