[project @ 2001-03-23 16:36:20 by simonmar]
[ghc-hetmet.git] / ghc / compiler / main / CodeOutput.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section{Code output phase}
5
6 \begin{code}
7 module CodeOutput( codeOutput ) where
8
9 #include "HsVersions.h"
10
11 #ifndef OMIT_NATIVE_CODEGEN
12 import UniqSupply       ( mkSplitUniqSupply )
13 import AsmCodeGen       ( nativeCodeGen )
14 #endif
15
16 #ifdef ILX
17 import IlxGen           ( ilxGen )
18 #endif
19
20 import JavaGen          ( javaGen )
21 import qualified PrintJava
22
23 import DriverState      ( v_HCHeader )
24 import TyCon            ( TyCon )
25 import Id               ( Id )
26 import CoreSyn          ( CoreBind )
27 import OccurAnal        ( occurAnalyseBinds )
28 import StgSyn           ( StgBinding )
29 import AbsCSyn          ( AbstractC )
30 import PprAbsC          ( dumpRealC, writeRealC )
31 import Module           ( Module )
32 import CmdLineOpts
33 import ErrUtils         ( dumpIfSet_dyn, showPass )
34 import Outputable
35 import CmdLineOpts      ( DynFlags, HscLang(..), dopt_OutName )
36 import TmpFiles         ( newTempName )
37
38 import IOExts
39 import IO
40 \end{code}
41
42
43 %************************************************************************
44 %*                                                                      *
45 \subsection{Steering}
46 %*                                                                      *
47 %************************************************************************
48
49 \begin{code}
50 codeOutput :: DynFlags
51            -> Module
52            -> [TyCon]                   -- Local tycons
53            -> [CoreBind]                -- Core bindings
54            -> [(StgBinding,[Id])]       -- The STG program with SRTs
55            -> SDoc              -- C stubs for foreign exported functions
56            -> SDoc              -- Header file prototype for foreign exported functions
57            -> AbstractC         -- Compiled abstract C
58            -> IO (Maybe FilePath, Maybe FilePath)
59 codeOutput dflags mod_name tycons core_binds stg_binds 
60            c_code h_code flat_abstractC
61   = -- You can have C (c_output) or assembly-language (ncg_output),
62     -- but not both.  [Allowing for both gives a space leak on
63     -- flat_abstractC.  WDP 94/10]
64
65     -- Dunno if the above comment is still meaningful now.  JRS 001024.
66
67     do  { showPass dflags "CodeOutput"
68         ; let filenm = dopt_OutName dflags 
69         ; stub_names <- outputForeignStubs dflags c_code h_code
70         ; case dopt_HscLang dflags of
71              HscInterpreted -> return stub_names
72              HscAsm         -> outputAsm dflags filenm flat_abstractC
73                                >> return stub_names
74              HscC           -> outputC dflags filenm flat_abstractC     
75                                >> return stub_names
76              HscJava        -> outputJava dflags filenm mod_name tycons core_binds
77                                >> return stub_names
78 #ifdef ILX
79              HscILX         -> outputIlx dflags filenm mod_name tycons stg_binds
80                                >> return stub_names
81 #endif
82         }
83
84 doOutput :: String -> (Handle -> IO ()) -> IO ()
85 doOutput filenm io_action
86   = (do handle <- openFile filenm WriteMode
87         io_action handle
88         hClose handle)
89     `catch` (\err -> pprPanic "Failed to open or write code output file" 
90                               (text filenm))
91 \end{code}
92
93
94 %************************************************************************
95 %*                                                                      *
96 \subsection{C}
97 %*                                                                      *
98 %************************************************************************
99
100 \begin{code}
101 outputC dflags filenm flat_absC
102   = do dumpIfSet_dyn dflags Opt_D_dump_realC "Real C" (dumpRealC flat_absC)
103        header <- readIORef v_HCHeader
104        doOutput filenm $ \ h -> do
105           hPutStr h header
106           writeRealC h flat_absC
107 \end{code}
108
109
110 %************************************************************************
111 %*                                                                      *
112 \subsection{Assembler}
113 %*                                                                      *
114 %************************************************************************
115
116 \begin{code}
117 outputAsm dflags filenm flat_absC
118
119 #ifndef OMIT_NATIVE_CODEGEN
120
121   = do ncg_uniqs <- mkSplitUniqSupply 'n'
122        let (stix_final, ncg_output_d) = _scc_ "NativeCodeGen" 
123                                         nativeCodeGen flat_absC ncg_uniqs
124        dumpIfSet_dyn dflags Opt_D_dump_stix "Final stix code" stix_final
125        dumpIfSet_dyn dflags Opt_D_dump_asm "Asm code" ncg_output_d
126        _scc_ "OutputAsm" doOutput filenm ( \f -> printForAsm f ncg_output_d)
127   where
128
129 #else /* OMIT_NATIVE_CODEGEN */
130
131   = pprPanic "This compiler was built without a native code generator"
132              (text "Use -fvia-C instead")
133
134 #endif
135 \end{code}
136
137
138 %************************************************************************
139 %*                                                                      *
140 \subsection{Java}
141 %*                                                                      *
142 %************************************************************************
143
144 \begin{code}
145 outputJava dflags filenm mod tycons core_binds
146   = doOutput filenm (\ f -> printForUser f alwaysQualify pp_java)
147         -- User style printing for now to keep indentation
148   where
149     occ_anal_binds = occurAnalyseBinds core_binds
150         -- Make sure we have up to date dead-var information
151     java_code = javaGen mod [{- Should be imports-}] tycons occ_anal_binds
152     pp_java   = PrintJava.compilationUnit java_code
153 \end{code}
154
155
156 %************************************************************************
157 %*                                                                      *
158 \subsection{Ilx}
159 %*                                                                      *
160 %************************************************************************
161
162 \begin{code}
163 #ifdef ILX
164 outputIlx dflags filename mod tycons stg_binds
165   =  doOutput filename (\ f -> printForC f pp_ilx)
166   where
167     pp_ilx = ilxGen mod tycons stg_binds
168 #endif
169 \end{code}
170
171
172 %************************************************************************
173 %*                                                                      *
174 \subsection{Foreign import/export}
175 %*                                                                      *
176 %************************************************************************
177
178 \begin{code}
179 outputForeignStubs dflags c_code h_code
180   = do
181         dumpIfSet_dyn dflags Opt_D_dump_foreign
182                       "Foreign export header file" stub_h_output_d
183
184         maybe_stub_h_file
185            <- outputForeignStubs_help True{-.h output-} stub_h_output_w
186
187         dumpIfSet_dyn dflags Opt_D_dump_foreign
188                       "Foreign export stubs" stub_c_output_d
189
190         maybe_stub_c_file
191            <- outputForeignStubs_help False{-not .h-} stub_c_output_w
192
193         return (maybe_stub_h_file, maybe_stub_c_file)
194   where
195     -- C stubs for "foreign export"ed functions.
196     stub_c_output_d = pprCode CStyle c_code
197     stub_c_output_w = showSDoc stub_c_output_d
198
199     -- Header file protos for "foreign export"ed functions.
200     stub_h_output_d = pprCode CStyle h_code
201     stub_h_output_w = showSDoc stub_h_output_d
202
203
204 -- Don't use doOutput for dumping the f. export stubs
205 -- since it is more than likely that the stubs file will
206 -- turn out to be empty, in which case no file should be created.
207 outputForeignStubs_help is_header ""      = return Nothing
208 outputForeignStubs_help is_header doc_str 
209    = do fname <- newTempName suffix
210         writeFile fname (include_prefix ++ doc_str)
211         return (Just fname)
212   where
213     suffix
214        | is_header   = "h_stub"
215        | otherwise   = "c_stub"
216     include_prefix
217        | is_header   = "#include \"HsFFI.h\"\n"
218        | otherwise   = "#include \"RtsAPI.h\"\n"
219 \end{code}
220