]> ruin.nu Git - proglang.git/blob - Typecheck.hs
added not
[proglang.git] / Typecheck.hs
1 module Typecheck (typeCheckExp, typeCheckStm, typeCheckVar) where 
2
3 import Abssyntax
4 import Control.Monad.State
5 import Data.Map as Map
6 import Prelude hiding (lookup)
7
8 type Types = Map Ident Type
9
10 inList :: Eq a => a -> [a] -> Bool
11 inList _ [] = False
12 inList a (x:xs) = if a == x then True else inList a xs
13
14 typeCheckExp :: (MonadState Types m) => Exp -> m Type
15 typeCheckExp (BiOpExp e o e') = do
16         t1 <- typeCheckExp e
17         t2 <- typeCheckExp e'
18         if not(t1 == t2) then fail "The parameters for the binary operator aren't equal" 
19                 else if inList o [Eq,NEq] then return TBool
20                         else if not(t1 == TInt) then fail "The parameters need to be of type int" 
21                                 else if inList o [Plus,Minus,Times,Div]
22                                         then return TInt
23                                         else return TBool
24 typeCheckExp (EVar i) = typeCheckVar i
25 typeCheckExp (EAss i e) = do
26         a <- typeCheckVar i
27         b <- typeCheckExp e
28         if a == b then return a else fail "FEL!"
29 typeCheckExp (EInt i) = return TInt
30 typeCheckExp (EBool b) = return TBool
31 typeCheckExp EReadI = return TInt
32 typeCheckExp EReadB = return TBool
33 typeCheckExp (ExpT t e) = do
34         t2 <- typeCheckExp e
35         if t == t2 then return t else fail "FEL!"
36 typeCheckExp EDefault = return NoType
37 typeCheckExp (EPost i op) = do
38         TInt <- typeCheckVar i
39         return TInt
40 typeCheckExp (ENeg e) = do
41         TInt <- typeCheckExp e
42         return TInt
43 typeCheckExp (ENot e) = do
44         TBool <- typeCheckExp e
45         return TBool
46
47 typeCheckVar :: (MonadState Types m) => Ident -> m Type 
48 typeCheckVar i = do
49         e <- get
50         lookup i e
51
52 typeCheckStm :: (MonadState Types m) => Stm -> m Type 
53 typeCheckStm SNoop = return NoType
54 typeCheckStm (SExp e) = do 
55         typeCheckExp e
56         return NoType
57 typeCheckStm (SBlock ss) = do 
58         mapM typeCheckStm ss
59         return NoType
60 typeCheckStm (SIf e s s') = do
61         TBool <- typeCheckExp e
62         NoType <- typeCheckStm s
63         NoType <- typeCheckStm s
64         return NoType
65 typeCheckStm (SWhile e s) = do
66         TBool <- typeCheckExp e
67         NoType <- typeCheckStm s
68         return NoType
69 typeCheckStm (SDecl t i e) = do
70         t2 <- typeCheckExp e
71         if t == t2 || t2 == NoType then do
72                 m <- get
73                 case insertLookupWithKey (\k a1 a2 -> a1) i t m of 
74                         (Nothing,m') -> put m'
75                         _ -> fail $ "Duplicate variable declaration: "++show i
76                 return NoType
77                 else fail $ "Illegal to assign an expression of type "++show t2++" to variable "++show i++" of type "++show t
78 typeCheckStm (SPrint e) = do
79         typeCheckExp e
80         return NoType