ca1a6cb86f90bd704d64e8ce7d56028a117a799c
[matthijs/master-project/cλash.git] / Translator.hs
1 module Main(main) where
2 import GHC
3 import CoreSyn
4 import qualified CoreUtils
5 import qualified Var
6 import qualified Type
7 import qualified TyCon
8 import qualified DataCon
9 import qualified Maybe
10 import qualified Module
11 import qualified Control.Monad.State as State
12 import Name
13 import Data.Generics
14 import NameEnv ( lookupNameEnv )
15 import HscTypes ( cm_binds, cm_types )
16 import MonadUtils ( liftIO )
17 import Outputable ( showSDoc, ppr )
18 import GHC.Paths ( libdir )
19 import DynFlags ( defaultDynFlags )
20 import List ( find )
21 import qualified List
22 import qualified Monad
23
24 -- The following modules come from the ForSyDe project. They are really
25 -- internal modules, so ForSyDe.cabal has to be modified prior to installing
26 -- ForSyDe to get access to these modules.
27 import qualified ForSyDe.Backend.VHDL.AST as AST
28 import qualified ForSyDe.Backend.VHDL.Ppr
29 import qualified ForSyDe.Backend.VHDL.FileIO
30 import qualified ForSyDe.Backend.Ppr
31 -- This is needed for rendering the pretty printed VHDL
32 import Text.PrettyPrint.HughesPJ (render)
33
34 main = 
35     do
36       defaultErrorHandler defaultDynFlags $ do
37         runGhc (Just libdir) $ do
38           dflags <- getSessionDynFlags
39           setSessionDynFlags dflags
40           --target <- guessTarget "adder.hs" Nothing
41           --liftIO (print (showSDoc (ppr (target))))
42           --liftIO $ printTarget target
43           --setTargets [target]
44           --load LoadAllTargets
45           --core <- GHC.compileToCoreSimplified "Adders.hs"
46           core <- GHC.compileToCoreSimplified "Adders.hs"
47           --liftIO $ printBinds (cm_binds core)
48           let binds = Maybe.mapMaybe (findBind (cm_binds core)) ["dff"]
49           liftIO $ printBinds binds
50           -- Turn bind into VHDL
51           let (vhdl, sess) = State.runState (mkVHDL binds) (VHDLSession 0 [])
52           liftIO $ putStr $ render $ ForSyDe.Backend.Ppr.ppr vhdl
53           liftIO $ ForSyDe.Backend.VHDL.FileIO.writeDesignFile vhdl "../vhdl/vhdl/output.vhdl"
54           liftIO $ putStr $ "\n\nFinal session:\n" ++ show sess
55           return ()
56   where
57     -- Turns the given bind into VHDL
58     mkVHDL binds = do
59       -- Add the builtin functions
60       mapM (uncurry addFunc) builtin_funcs
61       -- Create entities and architectures for them
62       units <- mapM expandBind binds
63       return $ AST.DesignFile 
64         []
65         (concat units)
66
67 printTarget (Target (TargetFile file (Just x)) obj Nothing) =
68   print $ show file
69
70 printBinds [] = putStr "done\n\n"
71 printBinds (b:bs) = do
72   printBind b
73   putStr "\n"
74   printBinds bs
75
76 printBind (NonRec b expr) = do
77   putStr "NonRec: "
78   printBind' (b, expr)
79
80 printBind (Rec binds) = do
81   putStr "Rec: \n"  
82   foldl1 (>>) (map printBind' binds)
83
84 printBind' (b, expr) = do
85   putStr $ getOccString b
86   putStr $ showSDoc $ ppr expr
87   putStr "\n"
88
89 findBind :: [CoreBind] -> String -> Maybe CoreBind
90 findBind binds lookfor =
91   -- This ignores Recs and compares the name of the bind with lookfor,
92   -- disregarding any namespaces in OccName and extra attributes in Name and
93   -- Var.
94   find (\b -> case b of 
95     Rec l -> False
96     NonRec var _ -> lookfor == (occNameString $ nameOccName $ getName var)
97   ) binds
98
99 getPortMapEntry ::
100   SignalNameMap  -- The port name to bind to
101   -> SignalNameMap 
102                             -- The signal or port to bind to it
103   -> AST.AssocElem          -- The resulting port map entry
104   
105 -- Accepts a port name and an argument to map to it.
106 -- Returns the appropriate line for in the port map
107 getPortMapEntry (Single (portname, _)) (Single (signame, _)) = 
108   (Just portname) AST.:=>: (AST.ADName (AST.NSimple signame))
109 expandExpr ::
110   [(CoreBndr, SignalNameMap)] 
111                                          -- A list of bindings in effect
112   -> CoreExpr                            -- The expression to expand
113   -> VHDLState (
114        [AST.SigDec],                     -- Needed signal declarations
115        [AST.ConcSm],                     -- Needed component instantations and
116                                          -- signal assignments.
117        [SignalNameMap],       -- The signal names corresponding to
118                                          -- the expression's arguments
119        SignalNameMap)         -- The signal names corresponding to
120                                          -- the expression's result.
121 expandExpr binds lam@(Lam b expr) = do
122   -- Generate a new signal to which we will expect this argument to be bound.
123   signal_name <- uniqueName ("arg_" ++ getOccString b)
124   -- Find the type of the binder
125   let (arg_ty, _) = Type.splitFunTy (CoreUtils.exprType lam)
126   -- Create signal names for the binder
127   -- TODO: We assume arguments are ports here
128   let arg_signal = getPortNameMapForTy signal_name arg_ty (useAsPort arg_ty)
129   -- Create the corresponding signal declarations
130   let signal_decls = mkSignalsFromMap arg_signal
131   -- Add the binder to the list of binds
132   let binds' = (b, arg_signal) : binds
133   -- Expand the rest of the expression
134   (signal_decls', statements', arg_signals', res_signal') <- expandExpr binds' expr
135   -- Properly merge the results
136   return (signal_decls ++ signal_decls',
137           statements',
138           arg_signal : arg_signals',
139           res_signal')
140
141 expandExpr binds (Var id) =
142   return ([], [], [], bind)
143   where
144     -- Lookup the id in our binds map
145     bind = Maybe.fromMaybe
146       (error $ "Argument " ++ getOccString id ++ "is unknown")
147       (lookup id binds)
148
149 expandExpr binds l@(Let (NonRec b bexpr) expr) = do
150   (signal_decls, statements, arg_signals, res_signals) <- expandExpr binds bexpr
151   let binds' = (b, res_signals) : binds
152   (signal_decls', statements', arg_signals', res_signals') <- expandExpr binds' expr
153   return (
154     signal_decls ++ signal_decls',
155     statements ++ statements',
156     arg_signals',
157     res_signals')
158
159 expandExpr binds app@(App _ _) = do
160   -- Is this a data constructor application?
161   case CoreUtils.exprIsConApp_maybe app of
162     -- Is this a tuple construction?
163     Just (dc, args) -> if DataCon.isTupleCon dc 
164       then
165         expandBuildTupleExpr binds (dataConAppArgs dc args)
166       else
167         error "Data constructors other than tuples not supported"
168     otherise ->
169       -- Normal function application, should map to a component instantiation
170       let ((Var f), args) = collectArgs app in
171       expandApplicationExpr binds (CoreUtils.exprType app) f args
172
173 expandExpr binds expr@(Case (Var v) b _ alts) =
174   case alts of
175     [alt] -> expandSingleAltCaseExpr binds v b alt
176     otherwise -> error $ "Multiple alternative case expression not supported: " ++ (showSDoc $ ppr expr)
177
178 expandExpr binds expr@(Case _ b _ _) =
179   error $ "Case expression with non-variable scrutinee not supported: " ++ (showSDoc $ ppr expr)
180
181 expandExpr binds expr = 
182   error $ "Unsupported expression: " ++ (showSDoc $ ppr $ expr)
183
184 -- Expands the construction of a tuple into VHDL
185 expandBuildTupleExpr ::
186   [(CoreBndr, SignalNameMap)] 
187                                          -- A list of bindings in effect
188   -> [CoreExpr]                          -- A list of expressions to put in the tuple
189   -> VHDLState ( [AST.SigDec], [AST.ConcSm], [SignalNameMap], SignalNameMap)
190                                          -- See expandExpr
191 expandBuildTupleExpr binds args = do
192   -- Split the tuple constructor arguments into types and actual values.
193   -- Expand each of the values in the tuple
194   (signals_declss, statementss, arg_signalss, res_signals) <-
195     (Monad.liftM List.unzip4) $ mapM (expandExpr binds) args
196   if any (not . null) arg_signalss
197     then error "Putting high order functions in tuples not supported"
198     else
199       return (
200         concat signals_declss,
201         concat statementss,
202         [],
203         Tuple res_signals)
204
205 -- Expands the most simple case expression that scrutinizes a plain variable
206 -- and has a single alternative. This simple form currently allows only for
207 -- unpacking tuple variables.
208 expandSingleAltCaseExpr ::
209   [(CoreBndr, SignalNameMap)] 
210                             -- A list of bindings in effect
211   -> Var.Var                -- The scrutinee
212   -> CoreBndr               -- The binder to bind the scrutinee to
213   -> CoreAlt                -- The single alternative
214   -> VHDLState ( [AST.SigDec], [AST.ConcSm], [SignalNameMap], SignalNameMap)
215                                          -- See expandExpr
216
217 expandSingleAltCaseExpr binds v b alt@(DataAlt datacon, bind_vars, expr) =
218   if not (DataCon.isTupleCon datacon) 
219     then
220       error $ "Dataconstructors other than tuple constructors not supported in case pattern of alternative: " ++ (showSDoc $ ppr alt)
221     else
222       let
223         -- Lookup the scrutinee (which must be a variable bound to a tuple) in
224         -- the existing bindings list and get the portname map for each of
225         -- it's elements.
226         Tuple tuple_ports = Maybe.fromMaybe 
227           (error $ "Case expression uses unknown scrutinee " ++ getOccString v)
228           (lookup v binds)
229         -- TODO include b in the binds list
230         -- Merge our existing binds with the new binds.
231         binds' = (zip bind_vars tuple_ports) ++ binds 
232       in
233         -- Expand the expression with the new binds list
234         expandExpr binds' expr
235
236 expandSingleAltCaseExpr _ _ _ alt =
237   error $ "Case patterns other than data constructors not supported in case alternative: " ++ (showSDoc $ ppr alt)
238       
239
240 -- Expands the application of argument to a function into VHDL
241 expandApplicationExpr ::
242   [(CoreBndr, SignalNameMap)] 
243                                          -- A list of bindings in effect
244   -> Type                                -- The result type of the function call
245   -> Var.Var                             -- The function to call
246   -> [CoreExpr]                          -- A list of argumetns to apply to the function
247   -> VHDLState ( [AST.SigDec], [AST.ConcSm], [SignalNameMap], SignalNameMap)
248                                          -- See expandExpr
249 expandApplicationExpr binds ty f args = do
250   let name = getOccString f
251   -- Generate a unique name for the application
252   appname <- uniqueName ("app_" ++ name)
253   -- Lookup the hwfunction to instantiate
254   HWFunction vhdl_id inports outport <- getHWFunc (appToHsFunction f args ty)
255   -- Expand each of the args, so each of them is reduced to output signals
256   (arg_signal_decls, arg_statements, arg_res_signals) <- expandArgs binds args
257   -- Bind each of the input ports to the expanded arguments
258   let inmaps = concat $ zipWith createAssocElems inports arg_res_signals
259   -- Create signal names for our result
260   -- TODO: We assume the result is a port here
261   let res_signal = getPortNameMapForTy (appname ++ "_out") ty (useAsPort ty)
262   -- Create the corresponding signal declarations
263   let signal_decls = mkSignalsFromMap res_signal
264   -- Bind each of the output ports to our output signals
265   let outmaps = mapOutputPorts outport res_signal
266   -- Instantiate the component
267   let component = AST.CSISm $ AST.CompInsSm
268         (AST.unsafeVHDLBasicId appname)
269         (AST.IUEntity (AST.NSimple vhdl_id))
270         (AST.PMapAspect (inmaps ++ outmaps))
271   -- Merge the generated declarations
272   return (
273     signal_decls ++ arg_signal_decls,
274     component : arg_statements,
275     [], -- We don't take any extra arguments; we don't support higher order functions yet
276     res_signal)
277   
278 -- Creates a list of AssocElems (port map lines) that maps the given signals
279 -- to the given ports.
280 createAssocElems ::
281   SignalNameMap      -- The port names to bind to
282   -> SignalNameMap   -- The signals to bind to it
283   -> [AST.AssocElem]            -- The resulting port map lines
284   
285 createAssocElems (Single (port_id, _)) (Single (signal_id, _)) = 
286   [(Just port_id) AST.:=>: (AST.ADName (AST.NSimple signal_id))]
287
288 createAssocElems (Tuple ports) (Tuple signals) = 
289   concat $ zipWith createAssocElems ports signals
290
291 -- Generate a signal declaration for a signal with the given name and the
292 -- given type and no value. Also returns the id of the signal.
293 mkSignal :: String -> AST.TypeMark -> (AST.VHDLId, AST.SigDec)
294 mkSignal name ty =
295   (id, mkSignalFromId id ty)
296   where 
297     id = AST.unsafeVHDLBasicId name
298
299 mkSignalFromId :: AST.VHDLId -> AST.TypeMark -> AST.SigDec
300 mkSignalFromId id ty =
301   AST.SigDec id ty Nothing
302
303 -- Generates signal declarations for all the signals in the given map
304 mkSignalsFromMap ::
305   SignalNameMap 
306   -> [AST.SigDec]
307
308 mkSignalsFromMap (Single (id, ty)) =
309   [mkSignalFromId id ty]
310
311 mkSignalsFromMap (Tuple signals) =
312   concat $ map mkSignalsFromMap signals
313
314 expandArgs :: 
315   [(CoreBndr, SignalNameMap)] -- A list of bindings in effect
316   -> [CoreExpr]                          -- The arguments to expand
317   -> VHDLState ([AST.SigDec], [AST.ConcSm], [SignalNameMap])  
318                                          -- The resulting signal declarations,
319                                          -- component instantiations and a
320                                          -- VHDLName for each of the
321                                          -- expressions passed in.
322 expandArgs binds (e:exprs) = do
323   -- Expand the first expression
324   (signal_decls, statements, arg_signals, res_signal) <- expandExpr binds e
325   if not (null arg_signals)
326     then error $ "Passing functions as arguments not supported: " ++ (showSDoc $ ppr e)
327     else do
328       (signal_decls', statements', res_signals') <- expandArgs binds exprs
329       return (
330         signal_decls ++ signal_decls',
331         statements ++ statements',
332         res_signal : res_signals')
333
334 expandArgs _ [] = return ([], [], [])
335
336 -- Extract the arguments from a data constructor application (that is, the
337 -- normal args, leaving out the type args).
338 dataConAppArgs :: DataCon -> [CoreExpr] -> [CoreExpr]
339 dataConAppArgs dc args =
340     drop tycount args
341   where
342     tycount = length $ DataCon.dataConAllTyVars dc
343
344 mapOutputPorts ::
345   SignalNameMap      -- The output portnames of the component
346   -> SignalNameMap   -- The output portnames and/or signals to map these to
347   -> [AST.AssocElem]            -- The resulting output ports
348
349 -- Map the output port of a component to the output port of the containing
350 -- entity.
351 mapOutputPorts (Single (portname, _)) (Single (signalname, _)) =
352   [(Just portname) AST.:=>: (AST.ADName (AST.NSimple signalname))]
353
354 -- Map matching output ports in the tuple
355 mapOutputPorts (Tuple ports) (Tuple signals) =
356   concat (zipWith mapOutputPorts ports signals)
357
358 expandBind ::
359   CoreBind                        -- The binder to expand into VHDL
360   -> VHDLState [AST.LibraryUnit]  -- The resulting VHDL
361
362 expandBind (Rec _) = error "Recursive binders not supported"
363
364 expandBind bind@(NonRec var expr) = do
365   -- Create the function signature
366   let ty = CoreUtils.exprType expr
367   let hsfunc = mkHsFunction var ty
368   hwfunc <- mkHWFunction bind hsfunc
369   -- Add it to the session
370   addFunc hsfunc hwfunc 
371   arch <- getArchitecture hsfunc hwfunc expr
372   let entity = getEntity hwfunc
373   return $ [
374     AST.LUEntity entity,
375     AST.LUArch arch ]
376
377 getArchitecture ::
378   HsFunction                -- The function interface
379   -> HWFunction             -- The function to generate an architecture for
380   -> CoreExpr               -- The expression that is bound to the function
381   -> VHDLState AST.ArchBody -- The resulting architecture
382    
383 getArchitecture hsfunc hwfunc expr = do
384   -- Unpack our hwfunc
385   let HWFunction vhdl_id inports outport = hwfunc
386   -- Expand the expression into an architecture body
387   (signal_decls, statements, arg_signals, res_signal) <- expandExpr [] expr
388   let (inport_assigns, instate_map)  = concat_elements $ unzip $ zipWith3 createSignalAssignments arg_signals inports (hsArgs hsfunc)
389   let (outport_assigns, outstate_map) = createSignalAssignments outport res_signal (hsRes hsfunc)
390   return $ AST.ArchBody
391     (AST.unsafeVHDLBasicId "structural")
392     (AST.NSimple vhdl_id)
393     (map AST.BDISD signal_decls)
394     (inport_assigns ++ outport_assigns ++ statements)
395
396 -- Generate a VHDL entity declaration for the given function
397 getEntity :: HWFunction -> AST.EntityDec  
398 getEntity (HWFunction vhdl_id inports outport) = 
399   AST.EntityDec vhdl_id ports
400   where
401     ports = 
402       (concat $ map (mkIfaceSigDecs AST.In) inports)
403       ++ mkIfaceSigDecs AST.Out outport
404
405 mkIfaceSigDecs ::
406   AST.Mode                        -- The port's mode (In or Out)
407   -> SignalNameMap        -- The ports to generate a map for
408   -> [AST.IfaceSigDec]            -- The resulting ports
409   
410 mkIfaceSigDecs mode (Single (port_id, ty)) =
411   [AST.IfaceSigDec port_id mode ty]
412
413 mkIfaceSigDecs mode (Tuple ports) =
414   concat $ map (mkIfaceSigDecs mode) ports
415
416 -- Unused values (state) don't generate ports
417 mkIfaceSigDecs mode Unused =
418   []
419
420 -- Create concurrent assignments of one map of signals to another. The maps
421 -- should have a similar form.
422 createSignalAssignments ::
423   SignalNameMap           -- The signals to assign to
424   -> SignalNameMap        -- The signals to assign
425   -> HsUseMap             -- What function does each of the signals have?
426   -> ([AST.ConcSm],       -- The resulting assignments
427       [(Int, AST.VHDLId)]) -- The resulting state -> signal mappings
428
429 -- A simple assignment of one signal to another (greatly complicated because
430 -- signal assignments can be conditional with multiple conditions in VHDL).
431 createSignalAssignments (Single (dst, _)) (Single (src, _)) (Single Port)=
432     ([AST.CSSASm assign], [])
433   where
434     src_name  = AST.NSimple src
435     src_expr  = AST.PrimName src_name
436     src_wform = AST.Wform [AST.WformElem src_expr Nothing]
437     dst_name  = (AST.NSimple dst)
438     assign    = dst_name AST.:<==: (AST.ConWforms [] src_wform Nothing)
439
440 createSignalAssignments (Tuple dsts) (Tuple srcs) (Tuple uses) =
441   concat_elements $ unzip $ zipWith3 createSignalAssignments dsts srcs uses
442
443 createSignalAssignments Unused (Single (src, _)) (Single (State n)) =
444   -- Write state
445   ([], [(n, src)])
446
447 createSignalAssignments (Single (dst, _)) Unused (Single (State n)) =
448   -- Read state
449   ([], [(n, dst)])
450
451 createSignalAssignments dst src use =
452   error $ "Non matching source and destination: " ++ show dst ++ " <= " ++  show src ++ " (Used as " ++ show use ++ ")"
453
454 type SignalNameMap = HsValueMap (AST.VHDLId, AST.TypeMark)
455
456 -- | A datatype that maps each of the single values in a haskell structure to
457 -- a mapto. The map has the same structure as the haskell type mapped, ie
458 -- nested tuples etc.
459 data HsValueMap mapto =
460   Tuple [HsValueMap mapto]
461   | Single mapto
462   | Unused
463   deriving (Show, Eq)
464
465 -- | Creates a HsValueMap with the same structure as the given type, using the
466 --   given function for mapping the single types.
467 mkHsValueMap ::
468   ((Type, s) -> (HsValueMap mapto, s))
469                                 -- ^ A function to map single value Types
470                                 --   (basically anything but tuples) to a
471                                 --   HsValueMap (not limited to the Single
472                                 --   constructor) Also accepts and produces a
473                                 --   state that will be passed on between
474                                 --   each call to the function.
475   -> s                          -- ^ The initial state
476   -> Type                       -- ^ The type to map to a HsValueMap
477   -> (HsValueMap mapto, s)      -- ^ The resulting map and state
478
479 mkHsValueMap f s ty =
480   case Type.splitTyConApp_maybe ty of
481     Just (tycon, args) ->
482       if (TyCon.isTupleTyCon tycon) 
483         then
484           let (args', s') = mapTuple f s args in
485           -- Handle tuple construction especially
486           (Tuple args', s')
487         else
488           -- And let f handle the rest
489           f (ty, s)
490     -- And let f handle the rest
491     Nothing -> f (ty, s)
492   where
493     mapTuple f s (ty:tys) =
494       let (map, s') = mkHsValueMap f s ty in
495       let (maps, s'') = mapTuple f s' tys in
496       (map: maps, s'')
497     mapTuple f s [] = ([], s)
498
499 -- Generate a port name map (or multiple for tuple types) in the given direction for
500 -- each type given.
501 getPortNameMapForTys :: String -> Int -> [Type] -> [HsUseMap] -> [SignalNameMap]
502 getPortNameMapForTys prefix num [] [] = [] 
503 getPortNameMapForTys prefix num (t:ts) (u:us) =
504   (getPortNameMapForTy (prefix ++ show num) t u) : getPortNameMapForTys prefix (num + 1) ts us
505
506 getPortNameMapForTy :: String -> Type -> HsUseMap -> SignalNameMap
507 getPortNameMapForTy name _ (Single (State _)) =
508   Unused
509
510 getPortNameMapForTy name ty use =
511   if (TyCon.isTupleTyCon tycon) then
512     let (Tuple uses) = use in
513     -- Expand tuples we find
514     Tuple (getPortNameMapForTys name 0 args uses)
515   else -- Assume it's a type constructor application, ie simple data type
516     Single ((AST.unsafeVHDLBasicId name), (vhdl_ty ty))
517   where
518     (tycon, args) = Type.splitTyConApp ty 
519
520 data HWFunction = HWFunction { -- A function that is available in hardware
521   vhdlId    :: AST.VHDLId,
522   inPorts   :: [SignalNameMap],
523   outPort   :: SignalNameMap
524   --entity    :: AST.EntityDec
525 } deriving (Show)
526
527 -- Turns a CoreExpr describing a function into a description of its input and
528 -- output ports.
529 mkHWFunction ::
530   CoreBind                                   -- The core binder to generate the interface for
531   -> HsFunction                              -- The HsFunction describing the function
532   -> VHDLState HWFunction                    -- The function interface
533
534 mkHWFunction (NonRec var expr) hsfunc =
535     return $ HWFunction (mkVHDLId name) inports outport
536   where
537     name = getOccString var
538     ty = CoreUtils.exprType expr
539     (args, res) = Type.splitFunTys ty
540     inports = case args of
541       -- Handle a single port specially, to prevent an extra 0 in the name
542       [port] -> [getPortNameMapForTy "portin" port (head $ hsArgs hsfunc)]
543       ps     -> getPortNameMapForTys "portin" 0 ps (hsArgs hsfunc)
544     outport = getPortNameMapForTy "portout" res (hsRes hsfunc)
545
546 mkHWFunction (Rec _) _ =
547   error "Recursive binders not supported"
548
549 -- | How is a given (single) value in a function's type (ie, argument or
550 -- return value) used?
551 data HsValueUse = 
552   Port        -- ^ Use it as a port (input or output)
553   | State Int -- ^ Use it as state (input or output). The int is used to
554               --   match input state to output state.
555   deriving (Show, Eq)
556
557 useAsPort :: Type -> HsUseMap
558 useAsPort = fst . (mkHsValueMap (\(ty, s) -> (Single Port, s)) 0)
559 useAsState :: Type -> HsUseMap
560 useAsState = fst . (mkHsValueMap (\(ty, s) -> (Single $ State s, s + 1)) 0)
561
562 type HsUseMap = HsValueMap HsValueUse
563
564 -- | This type describes a particular use of a Haskell function and is used to
565 --   look up an appropriate hardware description.  
566 data HsFunction = HsFunction {
567   hsName :: String,                      -- ^ What was the name of the original Haskell function?
568   hsArgs :: [HsUseMap],                  -- ^ How are the arguments used?
569   hsRes  :: HsUseMap                     -- ^ How is the result value used?
570 } deriving (Show, Eq)
571
572 -- | Translate a function application to a HsFunction. i.e., which function
573 --   do you need to translate this function application.
574 appToHsFunction ::
575   Var.Var         -- ^ The function to call
576   -> [CoreExpr]   -- ^ The function arguments
577   -> Type         -- ^ The return type
578   -> HsFunction   -- ^ The needed HsFunction
579
580 appToHsFunction f args ty =
581   HsFunction hsname hsargs hsres
582   where
583     hsargs = map (useAsPort . CoreUtils.exprType) args
584     hsres  = useAsPort ty
585     hsname = getOccString f
586
587 -- | Translate a top level function declaration to a HsFunction. i.e., which
588 --   interface will be provided by this function. This function essentially
589 --   defines the "calling convention" for hardware models.
590 mkHsFunction ::
591   Var.Var         -- ^ The function defined
592   -> Type         -- ^ The function type (including arguments!)
593   -> HsFunction   -- ^ The resulting HsFunction
594
595 mkHsFunction f ty =
596   HsFunction hsname hsargs hsres
597   where
598     hsname  = getOccString f
599     (arg_tys, res_ty) = Type.splitFunTys ty
600     -- The last argument must be state
601     state_ty = last arg_tys
602     state    = useAsState state_ty
603     -- All but the last argument are inports
604     inports = map useAsPort (init arg_tys)
605     hsargs   = inports ++ [state]
606     hsres    = case splitTupleType res_ty of
607       -- Result type must be a two tuple (state, ports)
608       Just [outstate_ty, outport_ty] -> if Type.coreEqType state_ty outstate_ty
609         then
610           Tuple [state, useAsPort outport_ty]
611         else
612           error $ "Input state type of function " ++ hsname ++ ": " ++ (showSDoc $ ppr state_ty) ++ " does not match output state type: " ++ (showSDoc $ ppr outstate_ty)
613       otherwise                -> error $ "Return type of top-level function " ++ hsname ++ " must be a two-tuple containing a state and output ports."
614
615 data VHDLSession = VHDLSession {
616   nameCount :: Int,                       -- A counter that can be used to generate unique names
617   funcs     :: [(HsFunction, HWFunction)] -- All functions available
618 } deriving (Show)
619
620 type VHDLState = State.State VHDLSession
621
622 -- Add the function to the session
623 addFunc :: HsFunction -> HWFunction -> VHDLState ()
624 addFunc hsfunc hwfunc = do
625   fs <- State.gets funcs -- Get the funcs element from the session
626   State.modify (\x -> x {funcs = (hsfunc, hwfunc) : fs }) -- Prepend name and f
627
628 -- Lookup the function with the given name in the current session. Errors if
629 -- it was not found.
630 getHWFunc :: HsFunction -> VHDLState HWFunction
631 getHWFunc hsfunc = do
632   fs <- State.gets funcs -- Get the funcs element from the session
633   return $ Maybe.fromMaybe
634     (error $ "Function " ++ (hsName hsfunc) ++ "is unknown? This should not happen!")
635     (lookup hsfunc fs)
636
637 -- | Splits a tuple type into a list of element types, or Nothing if the type
638 --   is not a tuple type.
639 splitTupleType ::
640   Type              -- ^ The type to split
641   -> Maybe [Type]   -- ^ The tuples element types
642
643 splitTupleType ty =
644   case Type.splitTyConApp_maybe ty of
645     Just (tycon, args) -> if TyCon.isTupleTyCon tycon 
646       then
647         Just args
648       else
649         Nothing
650     Nothing -> Nothing
651
652 -- Makes the given name unique by appending a unique number.
653 -- This does not do any checking against existing names, so it only guarantees
654 -- uniqueness with other names generated by uniqueName.
655 uniqueName :: String -> VHDLState String
656 uniqueName name = do
657   count <- State.gets nameCount -- Get the funcs element from the session
658   State.modify (\s -> s {nameCount = count + 1})
659   return $ name ++ "_" ++ (show count)
660
661 -- Shortcut
662 mkVHDLId :: String -> AST.VHDLId
663 mkVHDLId = AST.unsafeVHDLBasicId
664
665 -- Concatenate each of the lists of lists inside the given tuple.
666 -- Since the element types in the lists might differ, we can't generalize
667 -- this (unless we pass in f twice).
668 concat_elements :: ([[a]], [[b]]) -> ([a], [b])
669 concat_elements (a, b) = (concat a, concat b)
670
671 builtin_funcs = 
672   [ 
673     (HsFunction "hwxor" [(Single Port), (Single Port)] (Single Port), HWFunction (mkVHDLId "hwxor") [Single (mkVHDLId "a", vhdl_bit_ty), Single (mkVHDLId "b", vhdl_bit_ty)] (Single (mkVHDLId "o", vhdl_bit_ty))),
674     (HsFunction "hwand" [(Single Port), (Single Port)] (Single Port), HWFunction (mkVHDLId "hwand") [Single (mkVHDLId "a", vhdl_bit_ty), Single (mkVHDLId "b", vhdl_bit_ty)] (Single (mkVHDLId "o", vhdl_bit_ty))),
675     (HsFunction "hwor" [(Single Port), (Single Port)] (Single Port), HWFunction (mkVHDLId "hwor") [Single (mkVHDLId "a", vhdl_bit_ty), Single (mkVHDLId "b", vhdl_bit_ty)] (Single (mkVHDLId "o", vhdl_bit_ty))),
676     (HsFunction "hwnot" [(Single Port)] (Single Port), HWFunction (mkVHDLId "hwnot") [Single (mkVHDLId "i", vhdl_bit_ty)] (Single (mkVHDLId "o", vhdl_bit_ty)))
677   ]
678
679 vhdl_bit_ty :: AST.TypeMark
680 vhdl_bit_ty = AST.unsafeVHDLBasicId "Bit"
681
682 -- Translate a Haskell type to a VHDL type
683 vhdl_ty :: Type -> AST.TypeMark
684 vhdl_ty ty = Maybe.fromMaybe
685   (error $ "Unsupported Haskell type: " ++ (showSDoc $ ppr ty))
686   (vhdl_ty_maybe ty)
687
688 -- Translate a Haskell type to a VHDL type
689 vhdl_ty_maybe :: Type -> Maybe AST.TypeMark
690 vhdl_ty_maybe ty =
691   case Type.splitTyConApp_maybe ty of
692     Just (tycon, args) ->
693       let name = TyCon.tyConName tycon in
694         -- TODO: Do something more robust than string matching
695         case getOccString name of
696           "Bit"      -> Just vhdl_bit_ty
697           otherwise  -> Nothing
698     otherwise -> Nothing
699
700 -- vim: set ts=8 sw=2 sts=2 expandtab: