{-# LANGUAGE NoMonomorphismRestriction #-} {-# LANGUAGE TypeSynonymInstances #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE TupleSections #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE ScopedTypeVariables #-} module Language.Haskell.Liquid.GhcInterface ( -- * extract all information needed for verification getGhcInfo -- * visitors , CBVisitable (..) ) where import IdInfo import InstEnv import qualified Data.Foldable as F import Bag (bagToList) import ErrUtils import Panic import GHC hiding (Target) import DriverPhases (Phase(..)) import DriverPipeline (compileFile) import Text.PrettyPrint.HughesPJ import HscTypes hiding (Target) import TidyPgm (tidyProgram) import Literal import CoreSyn import Var import Name (getSrcSpan) import CoreMonad (liftIO) import DataCon import qualified TyCon as TC import HscMain import Module import Language.Haskell.Liquid.Desugar.HscMain (hscDesugarWithLoc) import qualified Control.Exception as Ex import GHC.Paths (libdir) import System.FilePath ( replaceExtension , dropExtension , takeFileName , splitFileName , combine , dropFileName , normalise) import DynFlags import Control.Arrow (second) import Control.Monad (filterM, foldM, zipWithM, when, forM, forM_, liftM, (<=<)) import Control.DeepSeq import Control.Applicative hiding (empty) import Data.Monoid hiding ((<>)) import Data.List (partition, intercalate, foldl', find, (\\), delete, nub) import Data.Maybe (fromMaybe, catMaybes, maybeToList) import qualified Data.HashSet as S import qualified Data.HashMap.Strict as M import qualified Data.Text as T import System.Console.CmdArgs.Verbosity (whenLoud) import System.Directory (removeFile, createDirectory, doesFileExist) import Language.Fixpoint.Types hiding (Expr) import Language.Fixpoint.Misc import Language.Haskell.Liquid.Types import Language.Haskell.Liquid.RefType import Language.Haskell.Liquid.ANFTransform import Language.Haskell.Liquid.Bare import Language.Haskell.Liquid.GhcMisc import Language.Haskell.Liquid.Misc import Language.Haskell.Liquid.PrettyPrint import Language.Haskell.Liquid.CmdLine (withPragmas) import Language.Haskell.Liquid.Parse import Language.Fixpoint.Parse hiding (brackets, comma) import Language.Fixpoint.Names import Language.Fixpoint.Files import qualified Language.Haskell.Liquid.Measure as Ms -------------------------------------------------------------------- getGhcInfo :: Config -> FilePath -> IO (Either ErrorResult GhcInfo) -------------------------------------------------------------------- getGhcInfo cfg target = (Right <$> getGhcInfo' cfg target) `Ex.catch` (\(e :: SourceError) -> handle e) `Ex.catch` (\(e :: Error) -> handle e) `Ex.catch` (\(e :: [Error]) -> handle e) where handle = return . Left . result getGhcInfo' cfg0 target = runGhc (Just libdir) $ do liftIO $ cleanFiles target addTarget =<< guessTarget target Nothing (name,tgtSpec) <- liftIO $ parseSpec target cfg <- liftIO $ withPragmas cfg0 target $ Ms.pragmas tgtSpec let paths = idirs cfg updateDynFlags cfg liftIO $ whenLoud $ putStrLn ("paths = " ++ show paths) let name' = ModName Target (getModName name) impNames <- allDepNames <$> depanal [] False impSpecs <- getSpecs (real cfg) (totality cfg) target paths impNames [Spec, Hs, LHs] compileCFiles =<< liftIO (foldM (\c (f,_,s) -> withPragmas c f (Ms.pragmas s)) cfg impSpecs) impSpecs' <- forM impSpecs $ \(f,n,s) -> do when (not $ isSpecImport n) $ addTarget =<< guessTarget f Nothing return (n,s) load LoadAllTargets modguts <- getGhcModGuts1 target hscEnv <- getSession coreBinds <- liftIO $ anormalize (not $ nocaseexpand cfg) hscEnv modguts let impVs = importVars coreBinds let defVs = definedVars coreBinds let useVs = readVars coreBinds let letVs = letVars coreBinds let derVs = derivedVars coreBinds $ mgi_is_dfun modguts (spec, imps, incs) <- moduleSpec cfg coreBinds (impVs ++ defVs) letVs name' modguts tgtSpec impSpecs' liftIO $ whenLoud $ putStrLn $ "Module Imports: " ++ show imps hqualFiles <- moduleHquals modguts paths target imps incs return $ GI hscEnv coreBinds derVs impVs letVs useVs hqualFiles imps incs spec derivedVars :: CoreProgram -> Maybe [DFunId] -> [Id] derivedVars cbs (Just fds) = concatMap (derivedVs cbs) fds derivedVars cbs Nothing = [] derivedVs :: CoreProgram -> DFunId -> [Id] derivedVs cbs fd = concatMap bindersOf cbf ++ deps where cbf = filter f cbs f (NonRec x _) = eqFd x f (Rec xes ) = any eqFd (fst <$> xes) eqFd x = varName x == varName fd deps :: [Id] deps = concatMap dep $ (unfoldingInfo . idInfo <$> concatMap bindersOf cbf) dep (DFunUnfolding _ _ e) = concatMap grapDep e dep _ = [] grapDep :: CoreExpr -> [Id] grapDep (Var x) = [x] grapDep _ = [] updateDynFlags cfg = do df <- getSessionDynFlags let df' = df { importPaths = idirs cfg ++ importPaths df , libraryPaths = idirs cfg ++ libraryPaths df , includePaths = idirs cfg ++ includePaths df , profAuto = ProfAutoCalls , ghcLink = LinkInMemory --FIXME: this *should* be HscNothing, but that prevents us from -- looking up *unexported* names in another source module.. , hscTarget = HscInterpreted -- HscNothing , ghcMode = CompManager -- prevent GHC from printing anything , log_action = \_ _ _ _ _ -> return () -- , verbosity = 3 } `xopt_set` Opt_MagicHash -- `gopt_set` Opt_Hpc `gopt_set` Opt_ImplicitImportQualified `gopt_set` Opt_PIC (df'',_,_) <- parseDynamicFlags df' (map noLoc $ ghcOptions cfg) setSessionDynFlags $ df'' -- {profAuto = ProfAutoAll} compileCFiles cfg = do df <- getSessionDynFlags setSessionDynFlags $ df { includePaths = nub $ idirs cfg ++ includePaths df , importPaths = nub $ idirs cfg ++ importPaths df , libraryPaths = nub $ idirs cfg ++ libraryPaths df } hsc <- getSession os <- mapM (\x -> liftIO $ compileFile hsc StopLn (x,Nothing)) (nub $ cFiles cfg) df <- getSessionDynFlags setSessionDynFlags $ df { ldInputs = map (FileOption "") os ++ ldInputs df } mgi_namestring = moduleNameString . moduleName . mgi_module importVars = freeVars S.empty definedVars = concatMap defs where defs (NonRec x _) = [x] defs (Rec xes) = map fst xes ------------------------------------------------------------------ -- | Extracting CoreBindings From File --------------------------- ------------------------------------------------------------------ getGhcModGuts1 :: FilePath -> Ghc MGIModGuts getGhcModGuts1 fn = do modGraph <- getModuleGraph case find ((== fn) . msHsFilePath) modGraph of Just modSummary -> do -- mod_guts <- modSummaryModGuts modSummary mod_p <- parseModule modSummary mod_guts <- coreModule <$> (desugarModuleWithLoc =<< typecheckModule (ignoreInline mod_p)) let deriv = getDerivedDictionaries mod_guts mod_p return $! (miModGuts (Just deriv) mod_guts) Nothing -> exitWithPanic "Ghc Interface: Unable to get GhcModGuts" getDerivedDictionaries cm mod = filter ((`elem` pdFuns) . shortPpr) dFuns where hsmod = unLoc $ pm_parsed_source mod decls = unLoc <$> hsmodDecls hsmod tyClD = [d | TyClD d <- decls] tyDec = filter isDataDecl tyClD inst = mkInst <$> tyDec mkInst x = (tcdLName x, dd_derivs $ tcdDataDefn x) mkDic = \(x, y) -> "$f" ++ showPpr y ++ showPpr x pdFuns = mkDic <$> [(c, d) | (c, ds) <- inst, d <- F.concat ds] dFuns = is_dfun <$> (instEnvElts $ mg_inst_env cm) shortPpr = symbolString . dropModuleNames . symbol -- Generates Simplified ModGuts (INLINED, etc.) but without SrcSpan getGhcModGutsSimpl1 fn = do modGraph <- getModuleGraph case find ((== fn) . msHsFilePath) modGraph of Just modSummary -> do mod_guts <- coreModule `fmap` (desugarModule =<< typecheckModule =<< liftM ignoreInline (parseModule modSummary)) hsc_env <- getSession simpl_guts <- liftIO $ hscSimplify hsc_env mod_guts (cg,_) <- liftIO $ tidyProgram hsc_env simpl_guts liftIO $ putStrLn "************************* CoreGuts ****************************************" liftIO $ putStrLn (showPpr $ cg_binds cg) return $! (miModGuts Nothing mod_guts) { mgi_binds = cg_binds cg } Nothing -> error "GhcInterface : getGhcModGutsSimpl1" peepGHCSimple fn = do z <- compileToCoreSimplified fn liftIO $ putStrLn "************************* peepGHCSimple Core Module ************************" liftIO $ putStrLn $ showPpr z liftIO $ putStrLn "************************* peepGHCSimple Bindings ***************************" liftIO $ putStrLn $ showPpr (cm_binds z) errorstar "Done peepGHCSimple" cleanFiles :: FilePath -> IO () -- deleteBinFilez fn = mapM_ (tryIgnore "delete binaries" . removeFileIfExists) -- $ (fn `replaceExtension`) `fmap` exts -- where -- exts = ["hi", "o"] cleanFiles fn = do forM_ bins (tryIgnore "delete binaries" . removeFileIfExists) tryIgnore "create temp directory" $ createDirectory dir where bins = replaceExtension fn <$> ["hi", "o"] dir = tempDirectory fn removeFileIfExists f = doesFileExist f >>= (`when` removeFile f) -------------------------------------------------------------------------------- -- | Desugaring (Taken from GHC, modified to hold onto Loc in Ticks) ----------- -------------------------------------------------------------------------------- desugarModuleWithLoc :: TypecheckedModule -> Ghc DesugaredModule desugarModuleWithLoc tcm = do let ms = pm_mod_summary $ tm_parsed_module tcm -- let ms = modSummary tcm let (tcg, _) = tm_internals_ tcm hsc_env <- getSession let hsc_env_tmp = hsc_env { hsc_dflags = ms_hspp_opts ms } guts <- liftIO $ hscDesugarWithLoc hsc_env_tmp ms tcg return $ DesugaredModule { dm_typechecked_module = tcm, dm_core_module = guts } -------------------------------------------------------------------------------- -- | Extracting Qualifiers ----------------------------------------------------- -------------------------------------------------------------------------------- moduleHquals mg paths target imps incs = do hqs <- specIncludes Hquals paths incs hqs' <- moduleImports [Hquals] paths (mgi_namestring mg : imps) hqs'' <- liftIO $ filterM doesFileExist [extFileName Hquals target] let rv = sortNub $ hqs'' ++ hqs ++ (snd <$> hqs') liftIO $ whenLoud $ putStrLn $ "Reading Qualifiers From: " ++ show rv return rv -------------------------------------------------------------------------------- -- | Extracting Specifications (Measures + Assumptions) ------------------------ -------------------------------------------------------------------------------- moduleSpec cfg cbs vars defVars target mg tgtSpec impSpecs = do addImports impSpecs addContext $ IIModule $ moduleName $ mgi_module mg env <- getSession let specs = (target,tgtSpec):impSpecs let imps = sortNub $ impNames ++ [ symbolString x | (_,spec) <- specs , x <- Ms.imports spec ] ghcSpec <- liftIO $ makeGhcSpec cfg target cbs vars defVars exports env specs return (ghcSpec, imps, Ms.includes tgtSpec) where exports = mgi_exports mg name = mgi_namestring mg impNames = map (getModString.fst) impSpecs addImports = mapM (addContext . IIDecl . qualImportDecl . getModName . fst) allDepNames = concatMap (map declNameString . ms_textual_imps) declNameString = moduleNameString . unLoc . ideclName . unLoc depNames = map fst . dep_mods . mgi_deps dirImportNames = map moduleName . moduleEnvKeys . mgi_dir_imps targetName = dropExtension . takeFileName -- starName fn = combine dir ('*':f) where (dir, f) = splitFileName fn starName = ("*" ++) patErrorName = "PatErr" realSpecName = "Real" notRealSpecName = "NotReal" getSpecs rflag tflag target paths names exts = do fs' <- sortNub <$> moduleImports exts paths names patSpec <- getPatSpec paths tflag rlSpec <- getRealSpec paths rflag let fs = patSpec ++ rlSpec ++ fs' liftIO $ whenLoud $ putStrLn ("getSpecs: " ++ show fs) transParseSpecs exts paths (S.singleton target) mempty (map snd fs) getPatSpec paths totalitycheck | totalitycheck = (map (patErrorName, )) . maybeToList <$> moduleFile paths patErrorName Spec | otherwise = return [] getRealSpec paths freal | freal = (map (realSpecName, )) . maybeToList <$> moduleFile paths realSpecName Spec | otherwise = (map (notRealSpecName, )) . maybeToList <$> moduleFile paths notRealSpecName Spec transParseSpecs _ _ _ specs [] = return specs transParseSpecs exts paths seenFiles specs newFiles = do newSpecs <- liftIO $ mapM (\f -> addFst3 f <$> parseSpec f) newFiles impFiles <- moduleImports exts paths $ specsImports newSpecs let seenFiles' = seenFiles `S.union` (S.fromList newFiles) let specs' = specs ++ map (third noTerm) newSpecs let newFiles' = [f | (_,f) <- impFiles, not (f `S.member` seenFiles')] transParseSpecs exts paths seenFiles' specs' newFiles' where specsImports ss = nub $ concatMap (map symbolString . Ms.imports . thd3) ss noTerm spec = spec { Ms.decr=mempty, Ms.lazy=mempty, Ms.termexprs=mempty } third f (a,b,c) = (a,b,f c) parseSpec :: FilePath -> IO (ModName, Ms.BareSpec) parseSpec file = do whenLoud $ putStrLn $ "parseSpec: " ++ file either Ex.throw return . specParser file =<< readFile file specParser file str | isExtFile Spec file = specSpecificationP file str | isExtFile Hs file = hsSpecificationP file str | isExtFile LHs file = lhsSpecificationP file str | otherwise = exitWithPanic $ "SpecParser: Cannot Parse File " ++ file moduleImports :: GhcMonad m => [Ext] -> [FilePath] -> [String] -> m [(String, FilePath)] moduleImports exts paths names = liftM concat $ forM names $ \name -> do map (name,) . catMaybes <$> mapM (moduleFile paths name) exts moduleFile :: GhcMonad m => [FilePath] -> String -> Ext -> m (Maybe FilePath) moduleFile paths name ext | ext `elem` [Hs, LHs] = do mg <- getModuleGraph case find ((==name) . moduleNameString . ms_mod_name) mg of Nothing -> liftIO $ getFileInDirs (extModuleName name ext) paths Just ms -> return $ normalise <$> ml_hs_file (ms_location ms) | otherwise = liftIO $ getFileInDirs (extModuleName name ext) paths isJust Nothing = False isJust (Just a) = True --moduleImports ext paths names -- = liftIO $ liftM catMaybes $ forM extNames (namePath paths) -- where extNames = (`extModuleName` ext) <$> names -- namePath paths fileName = getFileInDirs fileName paths --namePath_debug paths name -- = do res <- getFileInDirs name paths -- case res of -- Just p -> putStrLn $ "namePath: name = " ++ name ++ " expanded to: " ++ (show p) -- Nothing -> putStrLn $ "namePath: name = " ++ name ++ " not found in: " ++ (show paths) -- return res specIncludes :: GhcMonad m => Ext -> [FilePath] -> [FilePath] -> m [FilePath] specIncludes ext paths reqs = do let libFile = extFileNameR ext $ symbolString preludeName let incFiles = catMaybes $ reqFile ext <$> reqs liftIO $ forM (libFile : incFiles) (`findFileInDirs` paths) reqFile ext s | isExtFile ext s = Just s | otherwise = Nothing ------------------------------------------------------------------------------ -------------------------------- A CoreBind Visitor -------------------------- ------------------------------------------------------------------------------ -- TODO: syb-shrinkage class CBVisitable a where freeVars :: S.HashSet Var -> a -> [Var] readVars :: a -> [Var] letVars :: a -> [Var] literals :: a -> [Literal] instance CBVisitable [CoreBind] where freeVars env cbs = (sortNub xs) \\ ys where xs = concatMap (freeVars env) cbs ys = concatMap bindings cbs readVars = concatMap readVars letVars = concatMap letVars literals = concatMap literals instance CBVisitable CoreBind where freeVars env (NonRec x e) = freeVars (extendEnv env [x]) e freeVars env (Rec xes) = concatMap (freeVars env') es where (xs,es) = unzip xes env' = extendEnv env xs readVars (NonRec _ e) = readVars e readVars (Rec xes) = concat [x `delete` nubReadVars e |(x, e) <- xes] where nubReadVars = sortNub . readVars letVars (NonRec x e) = x : letVars e letVars (Rec xes) = xs ++ concatMap letVars es where (xs, es) = unzip xes literals (NonRec _ e) = literals e literals (Rec xes) = concatMap literals $ map snd xes instance CBVisitable (Expr Var) where freeVars = exprFreeVars readVars = exprReadVars letVars = exprLetVars literals = exprLiterals exprFreeVars = go where go env (Var x) = if x `S.member` env then [] else [x] go env (App e a) = (go env e) ++ (go env a) go env (Lam x e) = go (extendEnv env [x]) e go env (Let b e) = (freeVars env b) ++ (go (extendEnv env (bindings b)) e) go env (Tick _ e) = go env e go env (Cast e _) = go env e go env (Case e x _ cs) = (go env e) ++ (concatMap (freeVars (extendEnv env [x])) cs) go _ _ = [] exprReadVars = go where go (Var x) = [x] go (App e a) = concatMap go [e, a] go (Lam _ e) = go e go (Let b e) = readVars b ++ go e go (Tick _ e) = go e go (Cast e _) = go e go (Case e _ _ cs) = (go e) ++ (concatMap readVars cs) go _ = [] exprLetVars = go where go (Var _) = [] go (App e a) = concatMap go [e, a] go (Lam x e) = x : go e go (Let b e) = letVars b ++ go e go (Tick _ e) = go e go (Cast e _) = go e go (Case e x _ cs) = x : go e ++ concatMap letVars cs go _ = [] exprLiterals = go where go (Lit l) = [l] go (App e a) = concatMap go [e, a] go (Let b e) = literals b ++ go e go (Lam _ e) = go e go (Tick _ e) = go e go (Cast e _) = go e go (Case e _ _ cs) = (go e) ++ (concatMap literals cs) go _ = [] instance CBVisitable (Alt Var) where freeVars env (a, xs, e) = freeVars env a ++ freeVars (extendEnv env xs) e readVars (_,_, e) = readVars e letVars (_,xs,e) = xs ++ letVars e literals (c,_, e) = literals c ++ literals e instance CBVisitable AltCon where freeVars _ (DataAlt dc) = dataConImplicitIds dc freeVars _ _ = [] readVars _ = [] letVars _ = [] literals (LitAlt l) = [l] literals _ = [] extendEnv = foldl' (flip S.insert) -- names = (map varName) . bindings -- bindings (NonRec x _) = [x] bindings (Rec xes ) = map fst xes -------------------------------------------------------------------- ------ Strictness -------------------------------------------------- -------------------------------------------------------------------- instance NFData Var instance NFData SrcSpan instance PPrint GhcSpec where pprint spec = (text "******* Target Variables ********************") $$ (pprint $ tgtVars spec) $$ (text "******* Type Signatures *********************") $$ (pprintLongList $ tySigs spec) $$ (text "******* Assumed Type Signatures *************") $$ (pprintLongList $ asmSigs spec) $$ (text "******* DataCon Specifications (Measure) ****") $$ (pprintLongList $ ctors spec) $$ (text "******* Measure Specifications **************") $$ (pprintLongList $ meas spec) instance PPrint GhcInfo where pprint info = (text "*************** Imports *********************") $+$ (intersperse comma $ text <$> imports info) $+$ (text "*************** Includes ********************") $+$ (intersperse comma $ text <$> includes info) $+$ (text "*************** Imported Variables **********") $+$ (pprDoc $ impVars info) $+$ (text "*************** Defined Variables ***********") $+$ (pprDoc $ defVars info) $+$ (text "*************** Specification ***************") $+$ (pprint $ spec info) $+$ (text "*************** Core Bindings ***************") $+$ (pprint $ cbs info) instance Show GhcInfo where show = showpp instance PPrint [CoreBind] where pprint = pprDoc . tidyCBs instance PPrint TargetVars where pprint AllVars = text "All Variables" pprint (Only vs) = text "Only Variables: " <+> pprint vs ------------------------------------------------------------------------ -- Dealing With Errors ------------------------------------------------- ------------------------------------------------------------------------ -- | Throw a panic exception exitWithPanic :: String -> a exitWithPanic = Ex.throw . errOther . text -- | Convert a GHC error into one of ours instance Result SourceError where result = (`Crash` "Invalid Source") . concatMap errMsgErrors . bagToList . srcErrorMessages errMsgErrors e = [ ErrGhc (errMsgSpan e) (pprint e)]