clash-ghc-1.4.0: src-bin-common/Clash/GHCi/Common.hs
{-|
Copyright : (C) 2021, QBayLogic
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <devops@qbaylogic.com>
-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE QuasiQuotes #-}
module Clash.GHCi.Common
( checkImportDirs
, checkMonoLocalBinds
, checkMonoLocalBindsMod
, getMainTopEntity
) where
-- Clash
import Clash.Driver.Types (ClashOpts (..), BindingMap)
import Clash.Netlist.Types (TopEntityT(..))
-- The GHC interface
#if MIN_VERSION_ghc(9,0,0)
import qualified GHC.Data.EnumSet as GHC (member)
import GHC.Utils.Panic (GhcException (..), throwGhcException)
import qualified GHC
(DynFlags, ModSummary (..), extensionFlags, moduleName, moduleNameString)
#else
import qualified EnumSet as GHC (member)
import Panic (GhcException (..), throwGhcException)
import qualified GHC (DynFlags, ModSummary (..), Module (..),
extensionFlags, moduleNameString)
#endif
import Clash.Core.Name (nameOcc)
import Clash.Core.Var (varName)
import Clash.Normalize.Util (collectCallGraphUniques, callGraph)
import qualified Clash.Util.Interpolate as I
import Clash.Util (ClashException(..), HasCallStack, noSrcSpan)
import Clash.Unique (getUnique)
import Control.Exception (throw)
import Data.List (isSuffixOf)
import qualified Data.Text as Text
import qualified Data.HashSet as HashSet
import qualified GHC.LanguageExtensions as LangExt (Extension (..))
import Control.Monad (forM_, unless, when)
import System.Directory (doesDirectoryExist)
import System.IO (hPutStrLn, stderr)
getMainTopEntity
:: HasCallStack
=> String
-- ^ Module name
-> BindingMap
-- ^ Map of global binders
-> [TopEntityT]
-- ^ List of top entities loaded by LoadModules
-> String
-- ^ string passed with -main-is
-> IO (TopEntityT, [TopEntityT])
-- ^ Throws exception if -main-is was set, but no such top entity was found.
-- Otherwise, returns main top entity and all top entities (transitively) used
-- in the main top entity.
getMainTopEntity modName bindingMap topEnts nm =
case filter isNm topEnts of
[] -> throw $ ClashException noSrcSpan [I.i|
Could not find top entity called #{show nm} in #{show modName}
|] Nothing
[t] ->
let
closure0 = collectCallGraphUniques (callGraph bindingMap (topId t))
closure1 = HashSet.delete (getUnique (topId t)) closure0
in
pure (t, filter ((`HashSet.member` closure1) . getUnique . topId) topEnts)
ts ->
error $ [I.i|
Internal error: multiple top entities called #{nm} (#{map topId ts})
found in #{modName}.
|]
where
isNm (TopEntityT{topId}) =
let topIdNm = Text.unpack (nameOcc (varName topId)) in
topIdNm == nm || ('.':nm) `isSuffixOf` topIdNm
-- | Checks whether MonoLocalBinds and MonomorphismRestricton language extensions
-- are enabled or not in modules.
checkMonoLocalBindsMod :: GHC.ModSummary -> IO ()
checkMonoLocalBindsMod x = do
unless (active LangExt.MonoLocalBinds . GHC.ms_hspp_opts $ x)
(hPutStrLn stderr $ msg LangExt.MonoLocalBinds x)
unless (active LangExt.MonomorphismRestriction . GHC.ms_hspp_opts $ x)
(hPutStrLn stderr $ msg LangExt.MonomorphismRestriction x)
where
msg ext = messageWith ext . GHC.moduleNameString . GHC.moduleName . GHC.ms_mod
-- | Checks whether MonoLocalBinds and MonomorphismRestriction language extensions
-- are enabled when generating the HDL directly e.g. in GHCi. modules.
checkMonoLocalBinds :: GHC.DynFlags -> IO ()
checkMonoLocalBinds dflags = do
unless (active LangExt.MonoLocalBinds dflags)
(hPutStrLn stderr $ messageWith LangExt.MonoLocalBinds "")
unless (active LangExt.MonomorphismRestriction dflags)
(hPutStrLn stderr $ messageWith LangExt.MonomorphismRestriction "")
messageWith :: LangExt.Extension -> String -> String
messageWith ext srcModule
| srcModule == [] = msgStem ++ "."
| otherwise = msgStem ++ " in module: " ++ srcModule
where
msgStem = "Warning: Extension " <> show ext <>
" is disabled. This might lead to unexpected logic duplication"
active :: LangExt.Extension -> GHC.DynFlags -> Bool
active ext = GHC.member ext . GHC.extensionFlags
checkImportDirs :: Foldable t => ClashOpts -> t FilePath -> IO ()
checkImportDirs opts idirs = when (opt_checkIDir opts) $
forM_ idirs $ \dir -> do
doesDirectoryExist dir >>= \case
False -> throwGhcException (CmdLineError $ "Missing directory: " ++ dir)
_ -> return ()