driver: Store an ExternalModuleGraph in the EPS
We now store an ExternalModuleGraph in the EPS. When an new interface is loaded, the module graph is extended with a node for the loaded interface. The result is a partial module graph. If you want to run a transitive closure query on the graph you must first force the transitive closure to be loaded by using `loadExternalGraphBelow`. The primary advantage (for now) is that the transitive dependency calculation does not have to be repeated in getLinkDeps. If your module had many dependencies and many splices, performing this calculation at every splice site took a significant amount of time. We might also want to use this module graph in future for considering questions such as reachability of rules or accessibilty of instance imported by levelled imported. This patch removes another place in the compiler where transitive dependency is calculated in an ad-hoc manner. In general, the transitive dependency calculation should be cached and computed using a ModuleGraph abstraction. The transitive dependency query required by getLinkDeps operates on a graph without hs-boot nodes. If a linkable from a module in a loop is needed, then all modules in the loop are necessary to be available to execute that module. Therefore there is a query in `ModuleGraph` and `ExternalModuleGraph` which allows a transitive closure query to be performed on a graph without loops. ------------------------- Metric Decrease: MultiLayerModulesTH_Make MultiLayerModulesTH_OneShot Metric Increase: mhu-perf -------------------------
parent
8ef2dad6
No related branches found
No related tags found
Pipeline #105218 canceled
Stage: tool-lint
Stage: quick-build
Stage: full-build
Stage: packaging
Stage: testing
Showing
- compiler/GHC/Driver/Backpack.hs 6 additions, 2 deletionscompiler/GHC/Driver/Backpack.hs
- compiler/GHC/Driver/Errors/Ppr.hs 1 addition, 0 deletionscompiler/GHC/Driver/Errors/Ppr.hs
- compiler/GHC/Driver/Main.hs 1 addition, 0 deletionscompiler/GHC/Driver/Main.hs
- compiler/GHC/Driver/Make.hs 92 additions, 26 deletionscompiler/GHC/Driver/Make.hs
- compiler/GHC/Driver/MakeFile.hs 1 addition, 0 deletionscompiler/GHC/Driver/MakeFile.hs
- compiler/GHC/Iface/Load.hs 111 additions, 0 deletionscompiler/GHC/Iface/Load.hs
- compiler/GHC/Linker/Deps.hs 42 additions, 131 deletionscompiler/GHC/Linker/Deps.hs
- compiler/GHC/Linker/Loader.hs 89 additions, 6 deletionscompiler/GHC/Linker/Loader.hs
- compiler/GHC/Unit/External.hs 4 additions, 0 deletionscompiler/GHC/Unit/External.hs
- compiler/GHC/Unit/Module/External/Graph.hs 244 additions, 0 deletionscompiler/GHC/Unit/Module/External/Graph.hs
- compiler/GHC/Unit/Module/Graph.hs 63 additions, 35 deletionscompiler/GHC/Unit/Module/Graph.hs
- compiler/GHC/Unit/Module/ModNodeKey.hs 12 additions, 0 deletionscompiler/GHC/Unit/Module/ModNodeKey.hs
- compiler/ghc.cabal.in 2 additions, 0 deletionscompiler/ghc.cabal.in
- testsuite/tests/backpack/reexport/bkpreex02.stderr 3 additions, 3 deletionstestsuite/tests/backpack/reexport/bkpreex02.stderr
- testsuite/tests/backpack/reexport/bkpreex03.stdout 2 additions, 2 deletionstestsuite/tests/backpack/reexport/bkpreex03.stdout
- testsuite/tests/backpack/should_compile/bkp09.stderr 1 addition, 1 deletiontestsuite/tests/backpack/should_compile/bkp09.stderr
- testsuite/tests/backpack/should_compile/bkp14.stderr 2 additions, 2 deletionstestsuite/tests/backpack/should_compile/bkp14.stderr
- testsuite/tests/backpack/should_compile/bkp15.stderr 1 addition, 1 deletiontestsuite/tests/backpack/should_compile/bkp15.stderr
- testsuite/tests/backpack/should_compile/bkp31.stderr 2 additions, 2 deletionstestsuite/tests/backpack/should_compile/bkp31.stderr
- testsuite/tests/backpack/should_compile/bkp32.stderr 2 additions, 2 deletionstestsuite/tests/backpack/should_compile/bkp32.stderr
Loading
Please register or sign in to comment