1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
{-# OPTIONS_FRONTEND -Wno-incomplete-patterns #-}
module FlatCurry.Transform.Utils where
import Control.Monad.Trans.State
import FlatCurry.Types
import FlatCurry.Goodies ( branchExpr )
import Data.List ( sort, sum )
import FlatCurry.Transform.Types
infixr 5 ++-, \\-, &&-
recursiveFunc :: FuncDecl -> Bool
recursiveFunc (Func _ _ _ _ (External _)) = False
recursiveFunc (Func n _ _ _ (Rule _ b)) = recFunc n b
where
recFunc _ (Var _) = False
recFunc _ (Lit _) = False
recFunc f (Comb _ g es) = f == g || any (recFunc f) es
recFunc f (Or e1 e2) = any (recFunc f) [e1,e2]
recFunc f (Typed e _) = recFunc f e
recFunc f (Free _ e) = recFunc f e
recFunc f (Let vs e) = any (recFunc f) (e : map snd vs)
recFunc f (Case _ e bs) = any (recFunc f) (e : map branchExpr bs)
funcCalls :: FuncDecl -> [QName]
funcCalls (Func _ _ _ _ (External _)) = []
funcCalls (Func _ _ _ _ (Rule _ b)) = getCalls b
where
getCalls (Var _) = []
getCalls (Lit _) = []
getCalls (Let vs e) = mergeMap (getCalls . snd) vs ++- getCalls e
getCalls (Or e1 e2) = getCalls e1 ++- getCalls e2
getCalls (Free _ e) = getCalls e
getCalls (Comb ct n es) = if isFunc ct
then [n] ++- mergeMap getCalls es
else mergeMap getCalls es
getCalls (Case _ e bs) = getCalls e ++- mergeMap (getCalls . branchExpr) bs
getCalls (Typed e _) = getCalls e
isFunc :: CombType -> Bool
isFunc FuncCall = True
isFunc (FuncPartCall _) = True
isFunc ConsCall = False
isFunc (ConsPartCall _) = False
isCons :: CombType -> Bool
isCons = not . isFunc
isPart :: CombType -> Bool
isPart FuncCall = False
isPart (FuncPartCall _) = True
isPart ConsCall = False
isPart (ConsPartCall _) = True
isApp :: CombType -> Bool
isApp = not . isPart
missingVars :: Expr -> Int
missingVars (Var _) = 0
missingVars (Lit _) = 0
missingVars (Comb FuncCall _ _) = 0
missingVars (Comb ConsCall _ _) = 0
missingVars (Comb (FuncPartCall n) _ _) = n
missingVars (Comb (ConsPartCall n) _ _) = n
missingVars (Free _ e) = missingVars e
missingVars (Typed e _) = missingVars e
missingVars (Let _ e) = missingVars e
missingVars (Case _ _ _) = 0
missingVars (Or e1 e2) = let n1 = missingVars e1
n2 = missingVars e2
in if n1 == n2 then n1 else 0
ground :: Expr -> Bool
ground (Var _) = True
ground (Lit _) = True
ground (Comb ct _ es) = ct == ConsCall && all ground es
ground (Free _ _) = False
ground (Or _ _) = False
ground (Typed e _) = ground e
ground (Let _ _) = False
ground (Case _ _ _) = False
recursive :: VarIndex -> Expr -> Bool
recursive x (Var y) = x == y
recursive _ (Lit _) = False
recursive x (Comb _ _ es) = any (recursive x) es
recursive x (Or e1 e2) = any (recursive x) [e1,e2]
recursive x (Typed e _) = recursive x e
recursive x (Free vs e)
| x `elem` vs = False
| otherwise = recursive x e
recursive x (Let vs e)
| x `elem` map fst vs = False
| otherwise = any (recursive x) (e : map snd vs)
recursive x (Case _ e bs) = recursive x e && any recursiveBranch bs
where recursiveBranch (Branch (LPattern _) be) = recursive x be
recursiveBranch (Branch (Pattern _ vs) be)
| x `elem` vs = False
| otherwise = recursive x be
nonRecursive :: VarIndex -> Expr -> Bool
nonRecursive x = not . recursive x
replace :: Expr -> Path -> Expr -> Expr
replace _ [] w = w
replace (Free vs e) (0:ps) w = Free vs (replace e ps w)
replace (Or e1 e2) (0:ps) w = Or (replace e1 ps w) e2
replace (Or e1 e2) (1:ps) w = Or e1 (replace e2 ps w)
replace (Typed e t) (0:ps) w = Typed (replace e ps w) t
replace (Comb t n es) (p:ps) w = Comb t n (x ++ [replace e ps w] ++ y)
where (x,e:y) = splitAt p es
replace (Let bs e) (p:ps) w
| p == -1 = Let bs (replace e ps w)
| otherwise = Let bs' e
where (x, (v,ve):y) = splitAt p bs
bs' = (x ++ [(v, replace ve ps w)] ++ y)
replace (Case t e bs) (p:ps) w
| p == -1 = Case t (replace e ps w) bs
| otherwise = Case t e bs'
where (x, (Branch f be):y) = splitAt p bs
bs' = (x ++ [Branch f (replace be ps w)] ++ y)
max1 :: [Int] -> Int
max1 = foldr max 0
newVar :: Expr -> VarIndex
newVar (Var v) = v+1
newVar (Lit _) = 1
newVar (Comb _ _ es) = foldr (max . newVar) 1 es
newVar (Free vs e) = max (max1 vs + 1) (newVar e)
newVar (Or e1 e2) = max (newVar e1) (newVar e2)
newVar (Typed e _) = newVar e
newVar (Let vs e) = max (newVar e) (foldr maxLet 1 vs)
where maxLet (v,le) m = m `max` (v+1) `max` newVar le
newVar (Case _ e bs) = max (newVar e) (foldr (max . maxBranch) 1 bs)
where maxBranch (Branch (Pattern _ vs) be) = max (max1 vs + 1) (newVar be)
maxBranch (Branch (LPattern _) be) = newVar be
hasVar :: VarIndex -> Expr -> Bool
hasVar x e = uses x e > 0
uses :: VarIndex -> Expr -> Int
uses x (Var v) = if x == v then 1 else 0
uses _ (Lit _) = 0
uses x (Comb _ _ es) = sum (map (uses x) es)
uses x (Free vs e) = if x `elem` vs then 0 else uses x e
uses x (Or e1 e2) = uses x e1 + uses x e2
uses x (Typed e _) = uses x e
uses x (Let vs e) = if x `elem` map fst vs then 0 else sum (map (uses x . snd) vs) + uses x e
uses x (Case _ e bs) = uses x e + sum (map useBranch bs)
where useBranch (Branch (Pattern _ vs) be) = if x `elem` vs then 0 else uses x be
useBranch (Branch (LPattern _) be) = uses x be
freeVars :: Expr -> [VarIndex]
freeVars (Var v) = [v]
freeVars (Lit _) = []
freeVars (Comb _ _ es) = mergeMap freeVars es
freeVars (Free vs e) = freeVars e \\- sort vs
freeVars (Or e1 e2) = freeVars e1 ++- freeVars e2
freeVars (Typed e _) = freeVars e
freeVars (Let vs e) = mergeMap freeVars (e : map snd vs) \\- sort (map fst vs)
freeVars (Case _ e bs) = freeVars e ++- mergeMap freeBranch bs
where freeBranch (Branch (Pattern _ vs) be) = freeVars be \\- vs
freeBranch (Branch (LPattern _) be) = freeVars be
strict :: VarIndex -> Expr -> Bool
strict _ (Var _) = False
strict _ (Lit _) = False
strict _ (Or _ _) = False
strict x (Typed e _) = strict x e
strict x (Let vs e) = let es = e : map snd vs
in sum (map (uses x) es) == 1 &&
length (filter (strict x) es) == 1
strict x (Free _ e) = strict x e
strict x (Comb _ n es) = isApply && not (any (hasVar x) (tail es))
where isApply = n == ("Prelude","apply") && length es > 0 && head es == Var x
strict x (Case _ e bs)
| e == Var x = not (any (hasVar x) (map branchExpr bs))
| strictBranch False bs = not (hasVar x e)
| otherwise = not (hasVar x e) && any (strict x) (map branchExpr bs)
where strictBranch found [] = found
strictBranch found ((Branch _ e'):bs')
| e' == Var x = strictBranch True bs'
| otherwise = not (hasVar x e') && strictBranch found bs'
idSub :: VarIndex -> Expr
idSub x = Var x
(@>) :: (Eq a) => (a,b) -> (a -> b) -> (a -> b)
(x,e) @> s = \v -> if x == v then e else s v
(-\) :: (VarIndex -> Expr) -> [VarIndex] -> (VarIndex -> Expr)
s -\ xs = \v -> if v `elem` xs then Var v else s v
sub :: (Int -> Expr) -> Expr -> Expr
sub s (Var v) = s v
sub _ (Lit l) = Lit l
sub s (Or e1 e2) = Or (sub s e1) (sub s e2)
sub s (Typed e t) = Typed (sub s e) t
sub s (Comb t n es) = Comb t n (map (sub s) es)
sub s (Free vs e) = Free vs (sub (s -\ vs) e)
sub s (Let vs e) = Let (map (mapSnd (sub s')) vs) (sub s' e)
where s' = s -\ map fst vs
sub s (Case t e bs) = Case t (sub s e) (map branchSub bs)
where branchSub (Branch p@(Pattern _ vs) be) = Branch p (sub (s -\ vs) be)
branchSub (Branch p@(LPattern _ ) be) = Branch p (sub s be)
rename :: VarIndex -> (VarIndex -> VarIndex) -> Expr -> (Expr,VarIndex)
rename n s e = runState (ren s e) n
ren :: (VarIndex -> VarIndex) -> Expr -> Names Expr
ren s (Var v) = return $ Var (s v)
ren _ (Lit l) = return $ Lit l
ren s (Free vs e) = do s' <- extend vs s
e' <- ren s' e
return $ Free (map s' vs) e'
ren s (Let vs e) = do s' <- extend (map fst vs) s
vs' <- mapM (renPair s') vs
e' <- ren s' e
return $ Let vs' e'
where renPair t (v,le) = do le' <- ren t le
return (t v, le')
ren s (Or e1 e2) = do e1' <- ren s e1
e2' <- ren s e2
return $ Or e1' e2'
ren s (Typed e t) = do e' <- ren s e
return $ Typed e' t
ren s (Comb t n es) = do es' <- mapM (ren s) es
return $ Comb t n es'
ren s (Case t e bs) = do e' <- ren s e
bs' <- mapM branchRen bs
return $ Case t e' bs'
where
branchRen (Branch (Pattern n vs) be) = do s' <- extend vs s
be' <- ren s' be
return $ Branch (Pattern n (map s' vs)) be'
branchRen (Branch (LPattern l) be) = do be' <- ren s be
return $ Branch (LPattern l) be'
extend :: [Int] -> (Int -> Int) -> Names (Int -> Int)
extend [] s = return s
extend (v:vs) s
| v == -1 = extend vs s
| v >= 0 = do n <- fresh
extend vs ((v,n) @> s)
| otherwise = do n <- fresh
extend vs ((v,-n) @> s)
primType :: String -> QName
primType "int" = ("Prelude","Int")
primType "char" = ("Prelude","Char")
primType "float" = ("Prelude","Float")
primCon :: String -> QName
primCon "int" = ("","int")
primCon "char" = ("","char")
primCon "float" = ("","float")
litCon :: Literal -> QName
litCon (Intc _) = ("","int")
litCon (Charc _) = ("","char")
litCon (Floatc _) = ("","float")
litBranchCon :: [BranchExpr] -> QName
litBranchCon (Branch (LPattern l) _ : _) = litCon l
isLitBranch :: [BranchExpr] -> Bool
isLitBranch (Branch (LPattern _) _ : _) = True
isLitBranch (Branch (Pattern _ _) _ : _) = False
fork :: (a -> c) -> (b -> d) -> (a,b) -> (c,d)
fork f g (x,y) = (f x, g y)
mapFst :: (a -> c) -> (a,b) -> (c,b)
mapFst f = fork f id
mapSnd :: (b -> d) -> (a,b) -> (a,d)
mapSnd g = fork id g
mergeMap :: (Ord b) => (a -> [b]) -> [a] -> [b]
mergeMap f = merge . map f
merge :: (Ord a) => [[a]] -> [a]
merge xs = case xs of
[] -> []
[x] -> x
_ -> merge (pair xs)
where pair ys = case ys of
(z1:z2:zs) -> (z1 ++- z2) : pair zs
_ -> ys
(++-) :: (Ord a) => [a] -> [a] -> [a]
[] ++- ys = ys
(x:xs) ++- [] = x : xs
(x:xs) ++- (y:ys) = case compare x y of
LT -> x : (xs ++- (y:ys))
EQ -> x : (xs ++- ys)
GT -> y : ((x:xs) ++- ys)
(\\-) :: (Ord a) => [a] -> [a] -> [a]
[] \\- _ = []
(x:xs) \\- [] = x:xs
(x:xs) \\- (y:ys) = case compare x y of
LT -> x : (xs \\- (y:ys))
EQ -> xs \\- ys
GT -> (x:xs) \\- ys
(&&-) :: (Ord a) => [a] -> [a] -> [a]
[] &&- _ = []
(_:_) &&- [] = []
(x:xs) &&- (y:ys) = case compare x y of
LT -> xs &&- (y:ys)
EQ -> x : (xs &&- ys)
GT -> (x:xs) &&- ys
type Names a = State VarIndex a
fresh :: Names VarIndex
fresh = do v <- get
put (v+1)
return v
newtype ReWriter a =
ReWriter { runRewriter :: VarIndex -> (a, [Step], VarIndex, Bool) }
instance Functor ReWriter
where
fmap _ _ = error "ReWriter.fmap"
instance Applicative ReWriter where
pure x = ReWriter $ \v -> (x,[],v,False)
_ <*> _ = error "ReWriter.<*>"
instance Monad ReWriter where
return = pure
(ReWriter h) >>= f
= ReWriter $ \v ->
case h v of
(e1, steps1, v1, seen1) ->
case f e1 of
(ReWriter g) ->
case g v1 of
(e2, steps2, v2, seen2) -> (e2, steps1 ++ steps2, v2, seen1 || seen2)
curVar :: ReWriter VarIndex
curVar = ReWriter $ \v -> (v,[],v,False)
update :: a -> Step -> VarIndex -> ReWriter a
update e step dv = ReWriter $ \v -> case v+dv of
n -> (e, [step], n, True)
|