clash-ghc-0.4: src-ghc/CLaSH/GHC/LoadModules.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TemplateHaskell #-}
module CLaSH.GHC.LoadModules
( loadModules
)
where
-- External Modules
#ifdef STANDALONE
import System.Exit (ExitCode (..))
import System.IO (hGetLine)
import System.Process (runInteractiveCommand,
waitForProcess)
#else
import qualified GHC.Paths
#endif
-- GHC API
import CLaSH.GHC.Compat.DynFlags (dopt_set, dopt_unset)
import CLaSH.GHC.Compat.GHC (defaultErrorHandler)
import qualified CoreSyn
import DynFlags (GeneralFlag (..))
import qualified DynFlags
import qualified GHC
import qualified HscMain
import qualified HscTypes
import qualified MonadUtils
import qualified Panic
import qualified TidyPgm
import qualified TcRnMonad
import qualified TcRnTypes
import qualified UniqFM
import qualified FamInst
import qualified FamInstEnv
-- Internal Modules
import CLaSH.GHC.LoadInterfaceFiles
import CLaSH.Util (curLoc,first)
#ifdef STANDALONE
ghcLibDir :: IO FilePath
ghcLibDir = do (libDir,exitCode) <- getProcessOutput "ghc --print-libdir"
case exitCode of
ExitSuccess -> return libDir
ExitFailure i -> error $ "Calling GHC failed with: " ++ show i
getProcessOutput :: String -> IO (String, ExitCode)
getProcessOutput command =
-- Create the process
do (_, pOut, _, handle) <- runInteractiveCommand command
-- Wait for the process to finish and store its exit code
exitCode <- waitForProcess handle
-- Get the standard output.
output <- hGetLine pOut
-- return both the output and the exit code.
return (output, exitCode)
#else
ghcLibDir :: IO FilePath
ghcLibDir = return GHC.Paths.libdir
#endif
loadModules ::
String
-> Maybe (DynFlags.DynFlags)
-> IO ( [(CoreSyn.CoreBndr, CoreSyn.CoreExpr)] -- Binders
, [(CoreSyn.CoreBndr,Int)] -- Class operations
, [CoreSyn.CoreBndr] -- Unlocatable Expressions
, FamInstEnv.FamInstEnvs
)
loadModules modName dflagsM = defaultErrorHandler $ do
libDir <- MonadUtils.liftIO ghcLibDir
GHC.runGhc (Just libDir) $ do
dflags <- case dflagsM of
Just df -> return df
Nothing -> do
df <- GHC.getSessionDynFlags
let dfEn = foldl DynFlags.xopt_set df
[ DynFlags.Opt_TemplateHaskell
, DynFlags.Opt_DataKinds
, DynFlags.Opt_TypeOperators
, DynFlags.Opt_FlexibleContexts
, DynFlags.Opt_ConstraintKinds
, DynFlags.Opt_TypeFamilies
]
let dfDis = foldl DynFlags.xopt_unset dfEn
[ DynFlags.Opt_ImplicitPrelude
, DynFlags.Opt_MonomorphismRestriction
]
return dfDis
let dflags1 = dflags { DynFlags.ctxtStkDepth = 1000
, DynFlags.optLevel = 2
, DynFlags.ghcMode = GHC.CompManager
, DynFlags.ghcLink = GHC.LinkInMemory
, DynFlags.hscTarget = DynFlags.defaultObjectTarget
(DynFlags.targetPlatform dflags)
}
let dflags2 = wantedOptimizationFlags dflags1
let ghcDynamic = case lookup "GHC Dynamic" (DynFlags.compilerInfo dflags) of
Just "YES" -> True
_ -> False
let dflags3 = if ghcDynamic then DynFlags.gopt_set dflags2 DynFlags.Opt_BuildDynamicToo
else dflags2
_ <- GHC.setSessionDynFlags dflags3
target <- GHC.guessTarget modName Nothing
GHC.setTargets [target]
ldRes <- GHC.load GHC.LoadAllTargets
case ldRes of
GHC.Succeeded -> do
modGraph <- GHC.getModuleGraph
let modGraph' = map disableOptimizationsFlags modGraph
tidiedMods <- mapM (\m -> do { pMod <- parseModule m
; tcMod <- GHC.typecheckModule pMod
; dsMod <- fmap GHC.coreModule $ GHC.desugarModule tcMod
; hsc_env <- GHC.getSession
; simpl_guts <- MonadUtils.liftIO $ HscMain.hscSimplify hsc_env dsMod
; (tidy_guts,_) <- MonadUtils.liftIO $ TidyPgm.tidyProgram hsc_env simpl_guts
; let pgm = HscTypes.cg_binds tidy_guts
; let modFamInstEnv = TcRnTypes.tcg_fam_inst_env $ fst $ GHC.tm_internals_ tcMod
; return (CoreSyn.flattenBinds pgm,modFamInstEnv)
}
) modGraph'
let (binders,modFamInstEnvs) = first concat $ unzip tidiedMods
modFamInstEnvs' = foldr UniqFM.plusUFM UniqFM.emptyUFM modFamInstEnvs
(externalBndrs,clsOps,unlocatable) <- loadExternalExprs
(map snd binders)
(map fst binders)
hscEnv <- GHC.getSession
famInstEnvs <- TcRnMonad.liftIO $ TcRnMonad.initTcForLookup hscEnv FamInst.tcGetFamInstEnvs
return (binders ++ externalBndrs,clsOps,unlocatable,(fst famInstEnvs,modFamInstEnvs'))
GHC.Failed -> Panic.pgmError $ $(curLoc) ++ "failed to load module: " ++ modName
parseModule :: GHC.GhcMonad m => GHC.ModSummary -> m GHC.ParsedModule
parseModule modSum = do
(GHC.ParsedModule pmModSum pmParsedSource extraSrc) <-
GHC.parseModule modSum
return (GHC.ParsedModule
(disableOptimizationsFlags pmModSum)
pmParsedSource extraSrc)
disableOptimizationsFlags :: GHC.ModSummary -> GHC.ModSummary
disableOptimizationsFlags ms@(GHC.ModSummary {..})
= ms {GHC.ms_hspp_opts = dflags}
where
dflags = wantedOptimizationFlags (ms_hspp_opts
{DynFlags.optLevel = 2, DynFlags.ctxtStkDepth = 1000})
wantedOptimizationFlags :: GHC.DynFlags -> GHC.DynFlags
wantedOptimizationFlags df = foldl dopt_unset (foldl dopt_set df wanted) unwanted
where
wanted = [ Opt_CSE -- CSE
, Opt_FullLaziness -- Floats let-bindings outside enclosing lambdas
, Opt_Specialise -- Specialise on types, specialise type-class-overloaded function defined in this module for the types
, Opt_DoLambdaEtaExpansion -- transform nested series of lambdas into one with multiple arguments, helps us achieve only top-level lambdas
, Opt_CaseMerge -- We want fewer case-statements
, Opt_DictsCheap -- Makes dictionaries seem cheap to optimizer: hopefully inline
, Opt_SimpleListLiterals -- Avoids 'build' rule
, Opt_ExposeAllUnfoldings -- We need all the unfoldings we can get
, Opt_ForceRecomp -- Force recompilation: never bad
, Opt_EnableRewriteRules -- Reduce number of functions
, Opt_SimplPreInlining -- Inlines simple functions, we only care about the major first-order structure
, Opt_Strictness -- Strictness analysis helps with dead-code analysis
, Opt_StaticArgumentTransformation -- Turn on the static argument transformation, which turns a recursive function into a non-recursive one with a local recursive loop.
, Opt_FloatIn -- Moves let-bindings inwards, although it defeats the normal-form with a single top-level let-binding, it helps with other transformations
, Opt_DictsStrict -- Hopefully helps remove class method selectors
, Opt_DmdTxDictSel -- I think demand and strictness are related, strictness helps with dead-code, enable
]
unwanted = [ Opt_LiberateCase -- Perform unrolling of recursive RHS: avoid
, Opt_SpecConstr -- Creates local-functions: avoid
, Opt_IgnoreAsserts -- We don't care about assertions
, Opt_DoEtaReduction -- We want eta-expansion
, Opt_UnboxStrictFields -- Unboxed types are not handled properly: avoid
, Opt_UnboxSmallStrictFields -- Unboxed types are not handled properly: avoid
, Opt_Vectorise -- Don't care
, Opt_VectorisationAvoidance -- Don't care
, Opt_RegsGraph -- Don't care
, Opt_RegsGraph -- Don't care
, Opt_PedanticBottoms -- Stops eta-expansion through case: avoid
, Opt_LlvmTBAA -- Don't care
, Opt_CmmSink -- Don't care
, Opt_CmmElimCommonBlocks -- Don't care
, Opt_OmitYields -- Don't care
, Opt_IgnoreInterfacePragmas -- We need all the unfoldings we can get
, Opt_OmitInterfacePragmas -- We need all the unfoldings we can get
, Opt_IrrefutableTuples -- Introduce irrefutPatError: avoid
, Opt_Loopification -- STG pass, don't care
]