2828798a3df1e1a555a13c66111d9296dac31cda
[cc1516.git] / gen.icl
1 implementation module gen
2
3 import StdMisc
4 import StdList
5 import StdOverloaded
6 import StdString
7 from StdFunc import id, const
8 import StdTuple
9 import StdEnum
10
11 import Data.Func
12 import qualified Data.Map as Map
13 import Data.List
14 import Data.Either
15 import Data.Tuple
16 import Data.Functor
17 import Data.Monoid
18 import Data.Maybe
19 import Control.Applicative
20 import Control.Monad
21 import Control.Monad.Trans
22 from Text import class Text(concat), instance Text String
23
24 import AST
25 import RWST
26
27 TRUE :== -1
28 FALSE :== 0
29 :: Instr = Instr String [Arg] String
30 | Lab Label
31 :: Label :== String
32 :: Arg = L Label | Lit Int | Raw String
33 :: SSMProgram :== [Instr]
34 :: GenError = Error String
35 :: Addressbook :== 'Map'.Map String Address
36 :: Address = LAB String Int Int | ADDR Int
37 :: Gen a :== RWST () SSMProgram (Addressbook, [Label]) (Either GenError) a
38
39 labelStream :: [Label]
40 labelStream = ["lbl_" +++ toString i\\i<-[1..]]
41
42 defaultAddressBook :: [FunDecl] -> Addressbook
43 defaultAddressBook fd = extend "1printint" (LAB "1printint" 1 0)
44 $ extend "1printchar" (LAB "1printchar" 1 1)
45 $ extend "read" (LAB "read" 0 2)
46 $ extend "1readint" (LAB "1readint" 0 3)
47 $ extend "isEmpty" (LAB "isempty" 1 4)
48 $ addFuncs fd 5
49 where
50 addFuncs [] _ = 'Map'.newMap
51 addFuncs [(FunDecl _ k args _ _ _):xs] n =
52 extend k (LAB k (length args) n) $ addFuncs xs (n+1)
53
54 gen :: AST -> Either String String
55 gen (AST fds) = case evalRWST prog () (defaultAddressBook fds, labelStream) of
56 Left (Error e) = Left e
57 Right (_, p) = Right $ toString p
58 where
59 prog = tell [
60 Instr "bsr" [L "main"] "",
61 Instr "halt" [] ""
62 ] >>| tell (programContext fds)
63 >>| mapM_ g fds
64
65 programContext :: [FunDecl] -> SSMProgram
66 programContext x = [Lab "1func"
67 :fS ["1printint" ,"1printchar"
68 ,"read" ,"1readint"
69 ,"isEmpty":map (\(FunDecl _ k _ _ _ _)->k) x] 0] ++ context
70 where
71
72 fS :: [String] Int -> SSMProgram
73 fS [] _ = []
74 fS [k:xs] n = [
75 Instr "lds" [Lit 0] ""
76 ,Instr "ldc" [Lit n] $ "branch to: " +++ k
77 ,Instr "eq" [] ""
78 ,Instr "ajs" [Lit -1] ""
79 ,Instr "bsr" [L k] ""
80 :fS xs $ n+1]
81 context :: SSMProgram
82 context = [Lab "1printint"
83 ,Instr "link" [Lit 0] ""
84 ,Instr "ldl" [Lit -2] "load first argument"
85 ,Instr "trap" [Lit 0] "print int"
86 ,Instr "unlink" [] ""
87 ,Instr "ret" [] ""
88 ,Lab "1printchar"
89 ,Instr "link" [Lit 0] ""
90 ,Instr "ldl" [Lit -2] "load first argument"
91 ,Instr "trap" [Lit 1] "print char"
92 ,Instr "unlink" [] ""
93 ,Instr "ret" [] ""
94 ,Lab "read"
95 ,Instr "link" [Lit 0] ""
96 ,Instr "trap" [Lit 11] "read char"
97 ,Instr "str" [Raw "RR"] ""
98 ,Instr "unlink" [] ""
99 ,Instr "ret" [] ""
100 ,Lab "isempty"
101 ,Instr "link" [Lit 0] ""
102 ,Instr "ldl" [Lit -2] "load prt to list"
103 ,Instr "lda" [Lit 0] "derefrence ptr"
104 ,Instr "ldc" [Lit 0] ""
105 ,Instr "eq" [] "test for null pointer"
106 ,Instr "str" [Raw "RR"] ""
107 ,Instr "unlink" [] ""
108 ,Instr "ret" [] ""
109 ,Lab "read"
110 ]
111
112 getAdressbook :: Gen Addressbook
113 getAdressbook = gets fst
114
115 updateAdressbook :: (Addressbook -> Addressbook) -> Gen Addressbook
116 updateAdressbook f = modify (appFst f) >>| getAdressbook
117
118 extend :: String Address Addressbook -> Addressbook
119 extend k pl g = 'Map'.put k pl g
120
121 fresh :: Gen Label
122 fresh = gets snd >>= \vars->
123 modify (appSnd $ const $ tail vars) >>|
124 pure (head vars)
125
126 class g a :: a -> Gen ()
127
128 instance g Op1 where
129 g UnNegation = tell [Instr "not" [] ""]
130 g UnMinus = tell [Instr "neg" [] ""]
131
132 instance g Op2 where
133 g o = tell [Instr s [] ""]
134 where
135 s = case o of
136 BiPlus = "add"
137 BiMinus = "sub"
138 BiTimes = "mul"
139 BiDivide = "div"
140 BiMod = "mod"
141 BiEquals = "eq"
142 BiLesser = "lt"
143 BiGreater = "gt"
144 BiLesserEq = "le"
145 BiGreaterEq = "ge"
146 BiUnEqual = "ne"
147 BiAnd = "and"
148 BiOr = "or"
149 BiCons = abort "Shit, Cons, how to deal with this?"
150
151 instance g FieldSelector where
152 g FieldFst = tell [Instr "lda" [Lit -1] "fst"]
153 g FieldSnd = tell [Instr "lda" [Lit 0] "snd"]
154 g FieldHd = tell [Instr "lda" [Lit -1] "hd"]
155 g FieldTl = tell [Instr "lda" [Lit 0] "tl"]
156
157 instance g Expr where
158 g (IntExpr _ i) = tell [Instr "ldc" [Lit i] ""]
159 g (CharExpr _ c) = tell [Instr "ldc" [Lit (toInt c)] ""]
160 g (BoolExpr _ b) = tell [Instr "ldc" [Lit (if b TRUE FALSE)] ""]
161 g (EmptyListExpr _) = tell [Instr "ldc" [Lit 0] ""]
162 >>| tell [Instr "sth" [] ""]
163 g (Op1Expr _ o e) = g e >>| g o
164 g (Op2Expr _ e1 BiCons e2) = g e2 >>| g e1
165 >>| tell [Instr "sth" [] ""]
166 >>| tell [Instr "ajs" [Lit -1] ""]
167 >>| tell [Instr "sth" [] ""]
168 g (Op2Expr _ e1 op e2) = g e1 >>| g e2 >>| g op
169 g (TupleExpr _ (e1,e2)) = g e1
170 >>| g e2
171 >>| tell [Instr "stmh" [Lit 2] ""]
172 g (VarExpr _ (VarDef k fs)) = getAdressbook >>= \ab->case 'Map'.get k ab of
173 Just (ADDR t) = tell [Instr "ldl" [Lit t] ""] >>| mapM_ g fs >>| pure ()
174 Just (LAB l _ fn) = tell
175 [Instr "ldc" [Lit fn] ""
176 ,Instr "sth" [] ""
177 ,Instr "ldc" [Lit 0] ""
178 ,Instr "sth" [] ""]
179 g (FunExpr _ k es fs) = getAdressbook >>= \ab->case 'Map'.get k ab of
180 //Identifier points to function
181 Just (LAB l arity fn) = if (arity <> (length es))
182 ( tell
183 [Instr "ldc" [Lit fn] "Store function number"
184 ,Instr "sth" [] ""
185 ,Instr "ldc" [Lit $ length es] "Store arity"
186 ,Instr "sth" [] ""
187 ,Instr "ajs" [Lit -1] ""]
188 >>| mapM_ g es
189 >>| if (isEmpty es) (pure ()) (tell
190 [Instr "stmh" [Lit $ length es] "Store arguments"
191 ,Instr "ajs" [Lit -1] ""]))
192 ( mapM_ g es
193 >>| jump "bsr" k
194 >>| tell
195 [Instr "ajs" [Lit $ ~(length es)] "Clean arguments"
196 ,Instr "ldr" [Raw "RR"] ""])
197 //Identifier points to variable, thus higher order function
198 Just (ADDR t) = liftT (Left $ Error "FunExpr to addr")
199 Nothing = liftT (Left $ Error "Undefined function!!!")
200
201 jump :: String String -> Gen ()
202 jump instr k = getAdressbook >>= \ab->case 'Map'.get k ab of
203 Nothing = liftT (Left $ Error $ concat ["PANIC: ", k, " not found as function"])
204 Just (LAB t _ _) = tell [Instr instr [L t] (k +++"()")]
205 Just (ADDR t) = liftT (Left $ Error "Address as jump???")
206
207 instance g Stmt where
208 g (IfStmt cond th el) =
209 fresh >>= \elseLabel->
210 fresh >>= \endLabel->
211 g cond >>|
212 tell [Instr "brf" [L elseLabel] "branch else"] >>|
213 mapM_ g th >>|
214 tell [Instr "bra" [L endLabel] "branch end if"] >>|
215 tell [Lab elseLabel] >>|
216 mapM_ g el >>|
217 tell [Lab endLabel]
218 g (WhileStmt cond th) =
219 fresh >>= \startLabel->
220 fresh >>= \endLabel ->
221 tell [Lab startLabel] >>|
222 g cond >>|
223 tell [Instr "brf" [L endLabel] "branch end while"] >>|
224 mapM_ g th >>|
225 tell [Instr "bra" [L startLabel] "branch start while"] >>|
226 tell [Lab endLabel]
227 g (AssStmt (VarDef k fs) e) =
228 g e >>| getAdressbook >>= \ab->case 'Map'.get k ab of
229 Nothing = liftT (Left $ Error $ concat ["PANIC: ", k, " not found as var"])
230 Just (LAB t _ _) = liftT (Left $ Error $ "PANIC: cannot assign to function")
231 Just (ADDR t) = tell [Instr "stl" [Lit t] ""]
232 g (FunStmt k es fs) = mapM_ g es
233 >>| jump "bsr" k
234 >>| tell [Instr "ajs" [Lit (~(length es))] ""] //clean up args
235 >>| mapM_ g fs
236 >>| pure ()
237 g (ReturnStmt Nothing) = tell [Instr "unlink" [] ""]
238 >>| tell [Instr "ret" [] ""]
239 g (ReturnStmt (Just e)) = g e
240 >>| tell [Instr "str" [Raw "RR"] ""]
241 >>| g (ReturnStmt Nothing)
242
243 foldVarDecl :: Int VarDecl -> Gen Int
244 foldVarDecl x (VarDecl _ mt k e) = g e
245 >>| annote x k
246 >>| updateAdressbook (extend k (ADDR x))
247 >>| pure (x + 1)
248
249 addVars :: [String] -> (Addressbook -> Addressbook)
250 addVars [] = id
251 addVars [x:xs] = \ab->extend x (ADDR (-2 - (length xs))) (addVars xs ab)
252
253 instance g FunDecl where
254 g (FunDecl _ k args _ vds stms) =
255 //varDecls can call the enclosing function, so first reserve a label for it
256 getAdressbook >>= \oldMap ->
257 updateAdressbook (addVars args) >>|
258 tell [Lab k] >>|
259 tell [Instr "link" [Lit 0] ""] >>|
260 //add the vars
261 foldM foldVarDecl 1 vds >>|
262 //and the statements
263 mapM_ g stms >>|
264 //Ugly hack to always return
265 g (ReturnStmt Nothing) >>|
266 updateAdressbook (const oldMap) >>| pure ()
267
268 annote :: Int String -> Gen ()
269 annote pos key =
270 tell [Instr "annote" [Raw "MP", Lit pos, Lit pos, Raw "green", Raw key] ""]
271
272 class print a :: a -> [String]
273
274 instance print Instr where
275 print (Lab l) = [l, ":", "\n"]
276 print (Instr i args com) = ["\t", i] ++ print args ++ [" ;", com, "\n"]
277
278 instance print [Arg] where
279 print args = (map toString args)
280
281 instance toString Arg where
282 toString (L l) = l
283 toString (Lit int) = toString int
284 toString (Raw s) = s
285
286 instance toString SSMProgram where
287 toString p = concat $ intersperse " " $ map (\i-> concat $ intersperse " " $ print i) p