[project @ 2000-12-07 08:22:53 by simonpj]
[ghc-hetmet.git] / ghc / compiler / main / HscMain.lhs
index 603c993..aa407b1 100644 (file)
@@ -14,11 +14,11 @@ module HscMain ( HscResult(..), hscMain,
 
 #ifdef GHCI
 import RdrHsSyn                ( RdrNameHsExpr )
-import CoreToStg       ( coreToStgExpr )
 import StringBuffer    ( stringToStringBuffer, freeStringBuffer )
 import Unique          ( Uniquable(..) )
 import Type            ( splitTyConApp_maybe )
 import PrelNames       ( ioTyConKey )
+import ByteCodeGen     ( byteCodeGen )
 #endif
 
 import HsSyn
@@ -27,7 +27,7 @@ import StringBuffer   ( hGetStringBuffer )
 import Parser
 import Lex             ( PState(..), ParseResult(..) )
 import SrcLoc          ( mkSrcLoc )
-import Rename
+import Rename          ( checkOldIface, renameModule, renameExpr, closeIfaceDecls )
 import Rules           ( emptyRuleBase )
 import PrelInfo                ( wiredInThingEnv, wiredInThings )
 import PrelNames       ( knownKeyNames )
@@ -40,7 +40,8 @@ import Desugar
 import SimplCore
 import CoreUtils       ( coreBindsSize )
 import CoreTidy                ( tidyCorePgm )
-import CoreToStg       ( topCoreBindsToStg )
+import CoreSat
+import CoreToStg       ( coreToStg, coreExprToStg )
 import StgSyn          ( collectFinalStgBinders )
 import SimplStg                ( stg2stg )
 import CodeGen         ( codeGen )
@@ -138,8 +139,11 @@ hscMain ghci_mode dflags source_unchanged location maybe_old_iface hst hit pcs
 -- we definitely expect to have the old interface available
 hscNoRecomp ghci_mode dflags location (Just old_iface) hst hit pcs_ch
  | ghci_mode == OneShot
- = let bomb = panic "hscNoRecomp:OneShot"
-   in  return (HscNoRecomp pcs_ch bomb bomb)
+ = do {
+      hPutStrLn stderr "compilation IS NOT required";
+      let { bomb = panic "hscNoRecomp:OneShot" };
+      return (HscNoRecomp pcs_ch bomb bomb)
+      }
  | otherwise
  = do {
       hPutStr stderr "compilation IS NOT required";
@@ -174,7 +178,7 @@ hscRecomp ghci_mode dflags location maybe_checked_iface hst hit pcs_ch
        ; when (verbosity dflags >= 1) $
                hPutStr stderr "compilation IS required";
          -- mode -v1 tries to keep everything on one line
-         when (verbosity dflags /= 1) $
+         when (verbosity dflags > 1) $
                hPutStrLn stderr "";
 
          -- what target are we shooting for?
@@ -278,7 +282,7 @@ myParseModule dflags src_filename
       buf <- hGetStringBuffer True{-expand tabs-} src_filename
 
       let glaexts | dopt Opt_GlasgowExts dflags = 1#
-                 | otherwise                 = 0#
+                 | otherwise                   = 0#
 
       case parse buf PState{ bol = 0#, atbol = 1#,
                             context = [], glasgow_exts = glaexts,
@@ -341,19 +345,23 @@ restOfCodeGeneration dflags toInterp this_mod imported_module_names cost_centre_
 
 
 dsThenSimplThenTidy dflags pcs hst this_mod print_unqual is_exported tc_result
- = do --------------------------  Desugaring ----------------
+ = do ------------------  Desugaring ---------------------------------
       -- _scc_     "DeSugar"
       (desugared, rules, h_code, c_code, fe_binders) 
          <- deSugar dflags pcs hst this_mod print_unqual tc_result
 
-      --------------------------  Main Core-language transformations ----------------
+      ------------------  Main Core-language transformations ---------
       -- _scc_     "Core2Core"
       (simplified, orphan_rules) 
          <- core2core dflags pcs hst is_exported desugared rules
 
+      -- Do saturation and convert to A-normal form
+      --    NOTE: future passes cannot transform the syntax, only annotate it
+      saturated <- coreSatPgm dflags simplified
+
       -- Do the final tidy-up
       (pcs', tidy_binds, tidy_orphan_rules) 
-         <- tidyCorePgm dflags this_mod pcs simplified orphan_rules
+         <- tidyCorePgm dflags this_mod pcs saturated orphan_rules
       
       return (pcs', tidy_binds, tidy_orphan_rules, (fe_binders,h_code,c_code))
 
@@ -365,8 +373,11 @@ myCoreToStg dflags this_mod tidy_binds
       -- simplifier, which for reasons I don't understand, persists
       -- thoroughout code generation
 
+      --let bcos = byteCodeGen tidy_binds
+      --putStrLn (showSDoc (vcat (map ppr bcos)))
+
       -- _scc_     "Core2Stg"
-      stg_binds <- topCoreBindsToStg dflags this_mod tidy_binds
+      stg_binds <- coreToStg dflags this_mod tidy_binds
 
       -- _scc_     "Stg2Stg"
       (stg_binds2, cost_centre_info) <- stg2stg dflags this_mod stg_binds
@@ -445,10 +456,13 @@ hscExpr dflags hst hit pcs0 this_module expr
                -- Simplify it
        simpl_expr <- simplifyExpr dflags pcs2 hst ds_expr;
 
+               -- Saturate it
+       sat_expr <- coreSatExpr dflags simpl_expr;
+
                -- Convert to STG
-       stg_expr <- coreToStgExpr dflags simpl_expr;
+       let stg_expr = coreExprToStg sat_expr;
 
-               -- ToDo: need to do StgVarInfo?  or SRTs?
+               -- ToDo: need to do SRTs?
 
                -- Convert to InterpSyn
        unlinked_iexpr <- stgExprToInterpSyn dflags stg_expr;
@@ -511,12 +525,12 @@ initPersistentCompilerState
 initPersistentRenamerState :: IO PersistentRenamerState
   = do ns <- mkSplitUniqSupply 'r'
        return (
-        PRS { prsOrig  = Orig { origNames  = initOrigNames,
+        PRS { prsOrig  = Orig { origNS    = ns,
+                               origNames  = initOrigNames,
                                origIParam = emptyFM },
              prsDecls = (emptyNameEnv, 0),
              prsInsts = (emptyBag, 0),
-             prsRules = (emptyBag, 0),
-             prsNS    = ns
+             prsRules = (emptyBag, 0)
             }
         )