]> ruin.nu Git - proglang.git/blob - Compiler.hs
adding compiler
[proglang.git] / Compiler.hs
1 -- automatically generated by BNF Converter
2 module Main where
3
4
5 import IO ( stdin, hGetContents )
6 import System ( getArgs, getProgName )
7
8 import Lexsyntax
9 import Parsyntax
10 import Skelsyntax
11 import Printsyntax
12 import Abssyntax
13
14 import Typecheck
15 import Compile
16 import Control.Monad.State
17 import Data.Map as Map hiding (showTree,map)
18
19 import ErrM
20
21 type ParseFun a = [Token] -> Err a
22
23 myLLexer = myLexer
24
25 type Verbosity = Int
26
27 putStrV :: Verbosity -> String -> IO ()
28 putStrV v s = if v > 1 then putStrLn s else return ()
29
30 runFile :: Verbosity -> ParseFun Stms -> FilePath -> IO ()
31 runFile v p f = readFile f >>= run v p
32
33 run :: Verbosity -> ParseFun Stms -> String -> IO ()
34 run v p s = let ts = myLLexer s in case p ts of
35         Bad s    -> do
36                 putStrLn "\nParse              Failed...\n"
37                 putStrV v "Tokens:"
38                 putStrV v $ show ts
39                 putStrLn s
40         Ok (Program s) -> do
41                 runStateT (mapM typeCheckStm s) [empty]
42                 putStr $ concat (map compileStm s) 
43                 return ()
44
45 showTree :: (Show a, Print a) => Int -> a -> IO ()
46 showTree v tree
47  = do
48       putStrV v $ "\n[Abstract Syntax]\n\n" ++ show tree
49       putStrV v $ "\n[Linearized tree]\n\n" ++ printTree tree
50
51 main :: IO ()
52 main = do args <- getArgs
53           case args of
54             [] -> hGetContents stdin >>= run 2 pStms
55             "-s":fs -> mapM_ (runFile 0 pStms) fs
56             fs -> mapM_ (runFile 2 pStms) fs
57
58
59
60
61