Refactoring, tidyup and improve layering
[ghc-hetmet.git] / compiler / ghci / Debugger.hs
1 -----------------------------------------------------------------------------
2 --
3 -- GHCi Interactive debugging commands 
4 --
5 -- Pepe Iborra (supported by Google SoC) 2006
6 --
7 -- ToDo: lots of violation of layering here.  This module should
8 -- decide whether it is above the GHC API (import GHC and nothing
9 -- else) or below it.
10 -- 
11 -----------------------------------------------------------------------------
12
13 module Debugger (pprintClosureCommand) where
14
15 import Linker
16 import RtClosureInspect
17
18 import HscTypes
19 import IdInfo
20 --import Id
21 import Name
22 import Var hiding ( varName )
23 import VarSet
24 import VarEnv
25 import Name 
26 import UniqSupply
27 import Type
28 import TcType
29 import TcGadt
30 import GHC
31
32 import Outputable
33 import Pretty                    ( Mode(..), showDocWith )
34 import FastString
35 import SrcLoc
36
37 import Control.Exception
38 import Control.Monad
39 import Data.List
40 import Data.Maybe
41 import Data.IORef
42
43 import System.IO
44 import GHC.Exts
45
46 #include "HsVersions.h"
47
48 -------------------------------------
49 -- | The :print & friends commands
50 -------------------------------------
51 pprintClosureCommand :: Session -> Bool -> Bool -> String -> IO ()
52 pprintClosureCommand session bindThings force str = do 
53   tythings <- (catMaybes . concat) `liftM`
54                  mapM (\w -> GHC.parseName session w >>= 
55                                 mapM (GHC.lookupName session))
56                       (words str)
57   substs <- catMaybes `liftM` mapM (go session) 
58                                    [id | AnId id <- tythings]
59   mapM (applySubstToEnv session . skolemSubst) substs
60   return ()
61  where 
62
63    -- Do the obtainTerm--bindSuspensions-computeSubstitution dance
64    go :: Session -> Id -> IO (Maybe TvSubst)
65    go cms id = do 
66      mb_term <- obtainTerm cms force id 
67      maybe (return Nothing) `flip` mb_term $ \term_ -> do
68        term      <- tidyTermTyVars cms term_
69        term'     <- if not bindThings then return term 
70                      else bindSuspensions cms term                         
71        showterm  <- printTerm cms term'
72        unqual    <- GHC.getPrintUnqual cms
73        let showSDocForUserOneLine unqual doc = 
74                showDocWith LeftMode (doc (mkErrStyle unqual))
75        (putStrLn . showSDocForUserOneLine unqual) (ppr id <+> char '=' <+> showterm)
76      -- Before leaving, we compare the type obtained to see if it's more specific
77      --  Then, we extract a substitution, 
78      --  mapping the old tyvars to the reconstructed types.
79        let Just reconstructed_type = termType term
80
81      -- tcUnifyTys doesn't look through forall's, so we drop them from 
82      -- the original type, instead of sigma-typing the reconstructed type
83      -- In addition, we strip newtypes too, since the reconstructed type might
84      --   not have recovered them all
85            mb_subst = tcUnifyTys (const BindMe) 
86                                  [repType' $ dropForAlls$ idType id] 
87                                  [repType' $ reconstructed_type]  
88
89        ASSERT2 (isJust mb_subst, ppr reconstructed_type $$ (ppr$ idType id)) 
90         return mb_subst
91
92    applySubstToEnv :: Session -> TvSubst -> IO ()
93    applySubstToEnv cms subst | isEmptyTvSubst subst = return ()
94    applySubstToEnv cms@(Session ref) subst = do
95       hsc_env <- readIORef ref
96       inScope <- GHC.getBindings cms
97       let ictxt    = hsc_IC hsc_env
98           ids      = ic_tmp_ids ictxt
99           ids'     = map (\id -> id `setIdType` substTy subst (idType id)) ids
100           subst_dom= varEnvKeys$ getTvSubstEnv subst
101           subst_ran= varEnvElts$ getTvSubstEnv subst
102           new_tvs  = [ tv | t <- subst_ran, let Just tv = getTyVar_maybe t]  
103           ic_tyvars'= (`delVarSetListByKey` subst_dom) 
104                     . (`extendVarSetList`   new_tvs)
105                         $ ic_tyvars ictxt
106           ictxt'   = ictxt { ic_tmp_ids = ids'
107                            , ic_tyvars   = ic_tyvars' }
108       writeIORef ref (hsc_env {hsc_IC = ictxt'})
109
110           where delVarSetListByKey = foldl' delVarSetByKey
111
112    tidyTermTyVars :: Session -> Term -> IO Term
113    tidyTermTyVars (Session ref) t = do
114      hsc_env <- readIORef ref
115      let env_tvs      = ic_tyvars (hsc_IC hsc_env)
116          my_tvs       = termTyVars t
117          tvs          = env_tvs `minusVarSet` my_tvs
118          tyvarOccName = nameOccName . tyVarName 
119          tidyEnv      = (initTidyOccEnv (map tyvarOccName (varSetElems tvs))
120                         , env_tvs `intersectVarSet` my_tvs)
121      return$ mapTermType (snd . tidyOpenType tidyEnv) t
122
123 -- | Give names, and bind in the interactive environment, to all the suspensions
124 --   included (inductively) in a term
125 bindSuspensions :: Session -> Term -> IO Term
126 bindSuspensions cms@(Session ref) t = do 
127       hsc_env <- readIORef ref
128       inScope <- GHC.getBindings cms
129       let ictxt        = hsc_IC hsc_env
130           type_env     = ic_tmp_ids ictxt
131           prefix       = "_t"
132           alreadyUsedNames = map (occNameString . nameOccName . getName) inScope
133           availNames   = map ((prefix++) . show) [1..] \\ alreadyUsedNames 
134       availNames_var  <- newIORef availNames
135       (t', stuff)     <- foldTerm (nameSuspensionsAndGetInfos availNames_var) t
136       let (names, tys, hvals) = unzip3 stuff
137       let tys' = map mk_skol_ty tys
138       let ids = [ mkGlobalId VanillaGlobal name ty vanillaIdInfo
139                 | (name,ty) <- zip names tys']
140           new_tyvars   = tyVarsOfTypes tys'
141           old_tyvars   = ic_tyvars ictxt
142           new_ic       = ictxt { ic_tmp_ids = ids ++ ic_tmp_ids ictxt,
143                                  ic_tyvars   = old_tyvars `unionVarSet` new_tyvars }
144       extendLinkEnv (zip names hvals)
145       writeIORef ref (hsc_env {hsc_IC = new_ic })
146       return t'
147      where    
148
149 --    Processing suspensions. Give names and recopilate info
150         nameSuspensionsAndGetInfos :: IORef [String] -> TermFold (IO (Term, [(Name,Type,HValue)]))
151         nameSuspensionsAndGetInfos freeNames = TermFold 
152                       {
153                         fSuspension = doSuspension freeNames
154                       , fTerm = \ty dc v tt -> do 
155                                     tt' <- sequence tt 
156                                     let (terms,names) = unzip tt' 
157                                     return (Term ty dc v terms, concat names)
158                       , fPrim    = \ty n ->return (Prim ty n,[])
159                       }
160         doSuspension freeNames ct mb_ty hval Nothing = do
161           name <- atomicModifyIORef freeNames (\x->(tail x, head x))
162           n <- newGrimName cms name
163           let ty' = fromMaybe (error "unexpected") mb_ty
164           return (Suspension ct mb_ty hval (Just n), [(n,ty',hval)])
165
166
167 --  A custom Term printer to enable the use of Show instances
168 printTerm cms@(Session ref) = cPprTerm cPpr
169  where
170   cPpr = \p-> cPprShowable : cPprTermBase p 
171   cPprShowable prec t@Term{ty=ty, dc=dc, val=val} = do
172     let hasType = isEmptyVarSet (tyVarsOfType ty)  -- redundant
173         isEvaled = isFullyEvaluatedTerm t
174     if not isEvaled -- || not hasType
175      then return Nothing
176      else do 
177         hsc_env <- readIORef ref
178         dflags  <- GHC.getSessionDynFlags cms
179         do
180            (new_env, bname) <- bindToFreshName hsc_env ty "showme"
181            writeIORef ref (new_env)
182            let noop_log _ _ _ _ = return () 
183                expr = "show " ++ showSDoc (ppr bname)
184            GHC.setSessionDynFlags cms dflags{log_action=noop_log}
185            mb_txt <- withExtendedLinkEnv [(bname, val)] 
186                                          (GHC.compileExpr cms expr)
187            let myprec = 9 -- TODO Infix constructors
188            case mb_txt of 
189              Just txt -> return . Just . text . unsafeCoerce# 
190                            $ txt
191              Nothing  -> return Nothing
192          `finally` do 
193            writeIORef ref hsc_env
194            GHC.setSessionDynFlags cms dflags
195      
196   bindToFreshName hsc_env ty userName = do
197     name <- newGrimName cms userName 
198     let ictxt    = hsc_IC hsc_env
199         tmp_ids  = ic_tmp_ids ictxt
200         id       = mkGlobalId VanillaGlobal name ty vanillaIdInfo
201         new_ic   = ictxt { ic_tmp_ids = id : tmp_ids }
202     return (hsc_env {hsc_IC = new_ic }, name)
203
204 --    Create new uniques and give them sequentially numbered names
205 --    newGrimName :: Session -> String -> IO Name
206 newGrimName cms userName  = do
207     us <- mkSplitUniqSupply 'b'
208     let unique  = uniqFromSupply us
209         occname = mkOccName varName userName
210         name    = mkInternalName unique occname noSrcLoc
211     return name
212
213 skolemSubst subst = subst `setTvSubstEnv` 
214                       mapVarEnv mk_skol_ty (getTvSubstEnv subst)
215 mk_skol_ty ty | tyvars  <- varSetElems (tyVarsOfType ty)
216               , tyvars' <- map (mkTyVarTy . mk_skol_tv) tyvars
217               = substTyWith tyvars tyvars' ty
218 mk_skol_tv tv = mkTcTyVar (tyVarName tv) (tyVarKind tv) 
219                       (SkolemTv RuntimeUnkSkol)