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