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
|
module Analysis.Residuation
( ResiduationInfo(..), residuationAnalysis, showResInfo )
where
import Data.List ( intercalate, union )
import Analysis.Types
import FlatCurry.Types
import FlatCurry.Goodies
data ResiduationInfo = MayResiduate
| NoResiduateIf [Int]
| NoResInfo
deriving (Show, Read, Eq)
lubNRI :: ResiduationInfo -> ResiduationInfo -> ResiduationInfo
lubNRI MayResiduate _ = MayResiduate
lubNRI NoResInfo nri = nri
lubNRI (NoResiduateIf _ ) MayResiduate = MayResiduate
lubNRI (NoResiduateIf xs) NoResInfo = NoResiduateIf xs
lubNRI (NoResiduateIf xs) (NoResiduateIf ys) = NoResiduateIf (unionS xs ys)
unionS :: Ord a => [a] -> [a] -> [a]
unionS [] ys = ys
unionS (x:xs) [] = x:xs
unionS (x:xs) (y:ys) | x==y = x : unionS xs ys
| x<y = x : unionS xs (y:ys)
| x>y = y : unionS (x:xs) ys
showResInfo :: AOutFormat -> ResiduationInfo -> String
showResInfo AText MayResiduate = "may residuate or has non-ground result"
showResInfo ANote MayResiduate = "residuate"
showResInfo AText (NoResiduateIf xs) =
"does not residuate" ++
case xs of
[] -> ""
[x] -> " if argument " ++ show x ++ " is ground"
_ -> " if arguments " ++ intercalate "," (map show xs) ++ " are ground"
showResInfo ANote (NoResiduateIf xs) =
"non-residuating" ++
if null xs then "" else " if " ++ intercalate "," (map show xs)
showResInfo AText NoResInfo = "unknown residuation behavior"
showResInfo ANote NoResInfo = "???"
residuationAnalysis :: Analysis ResiduationInfo
residuationAnalysis = dependencyFuncAnalysis "Residuation" NoResInfo nrFunc
nrFunc :: FuncDecl -> [(QName,ResiduationInfo)] -> ResiduationInfo
nrFunc (Func fn ar _ _ rule) calledFuncs = nrFuncRule fn ar calledFuncs rule
nrFuncRule :: QName -> Int -> [(QName,ResiduationInfo)] -> Rule
-> ResiduationInfo
nrFuncRule _ farity _ (External _) = NoResiduateIf [1 .. farity]
nrFuncRule _ _ calledFuncs (Rule args rhs) =
nrExp (map (\i -> (i, NoResiduateIf [i])) args) rhs
where
nrExp _ (Lit _) = NoResiduateIf []
nrExp amap (Var i) = maybe MayResiduate id (lookup i amap)
nrExp amap (Comb ct g es) = case ct of
FuncCall -> maybe NoResInfo checkNonResArgs (lookup g calledFuncs)
FuncPartCall _ -> maybe NoResInfo checkNonResPartArgs (lookup g calledFuncs)
_ -> if null es
then NoResiduateIf []
else foldr1 lubNRI (map (nrExp amap) es)
where
checkNonResArgs NoResInfo = NoResInfo
checkNonResArgs MayResiduate = MayResiduate
checkNonResArgs (NoResiduateIf xs) =
if null xs
then NoResiduateIf []
else foldr1 lubNRI (map (\i -> nrExp amap (es!!(i-1))) xs)
checkNonResPartArgs NoResInfo = NoResInfo
checkNonResPartArgs MayResiduate = MayResiduate
checkNonResPartArgs (NoResiduateIf xs) =
let pxs = filter (<= length es) xs
in if null pxs
then NoResiduateIf []
else foldr1 lubNRI (map (\i -> nrExp amap (es!!(i-1))) pxs)
nrExp amap (Case _ e bs) = foldr lubNRI nrcexp (map nrBranch bs)
where
nrcexp = nrExp amap e
nrBranch (Branch (LPattern _) be) = nrExp amap be
nrBranch (Branch (Pattern _ xs) be) =
nrExp (map (\x -> (x,nrcexp)) xs ++ amap) be
nrExp amap (Free _ e) = nrExp amap e
nrExp amap (Let bindings e) =
let initamap = map (\ (v,_) -> (v,NoResInfo)) bindings ++ amap
in nrExp (addBindings initamap bindings) e
where
addBindings amp [] = amp
addBindings amp ((v,be):bs) = addBindings ((v, nrExp amp be) : amp) bs
nrExp amap (Or e1 e2) = lubNRI (nrExp amap e1) (nrExp amap e2)
nrExp amap (Typed e _) = nrExp amap e
prelude :: String
prelude = "Prelude"
|