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
|
module TypedFlatCurryGoodies where
import Directory ( doesFileExist )
import Distribution ( getLoadPathForModule, lookupModuleSource
, stripCurrySuffix )
import FilePath ( (</>) )
import IOExts
import List ( find, maximum, nub, union )
import Maybe ( fromJust )
import Pretty ( pretty )
import System ( exitWith )
import FlatCurry.Annotated.Goodies
import FlatCurry.Annotated.Pretty ( ppExp )
import FlatCurry.Annotated.Types
import FlatCurry.Annotated.TypeInference ( inferProg )
import FlatCurry.Files
import PackageConfig ( packagePath )
import ToolOptions
import VerifierState
type TAProg = AProg TypeExpr
type TAFuncDecl = AFuncDecl TypeExpr
type TARule = ARule TypeExpr
type TAExpr = AExpr TypeExpr
type TABranchExpr = ABranchExpr TypeExpr
type TAPattern = APattern TypeExpr
readTypedFlatCurry :: String -> IO TAProg
readTypedFlatCurry mname = do
prog <- readFlatCurry mname
inferProg prog >>=
either (\e -> putStrLn ("Error during FlatCurry type inference:\n" ++ e) >>
exitWith 1)
return
readTypedFlatCurryWithSpec :: Options -> String -> IO TAProg
readTypedFlatCurryWithSpec opts mname = do
whenStatus opts $ putStr $
"Loading typed FlatCurry program '" ++ mname ++ "'..."
prog <- readTypedFlatCurry mname
loadpath <- getLoadPathForModule specName
mbspec <- lookupModuleSource (loadpath ++ [packagePath </> "include"])
specName
maybe ( whenStatus opts (putStrLn "done") >> return prog )
(\ (_,specname) -> do
let specpath = stripCurrySuffix specname
when (optVerb opts > 0) $ putStr $
"'" ++ (if optVerb opts > 1 then specpath else specName) ++ "'..."
specprog <- readTypedFlatCurry specpath
whenStatus opts $ putStrLn "done"
return (unionTAProg prog (rnmProg mname specprog))
)
mbspec
where
specName = mname ++ "_SPEC"
unionTAProg :: TAProg -> TAProg -> TAProg
unionTAProg (AProg name imps1 types1 funcs1 ops1)
(AProg _ imps2 types2 funcs2 ops2) =
AProg name (filter (/=name) (union imps1 imps2))
(types1++types2) (funcs1++funcs2) (ops1++ops2)
getAllFunctions :: IORef VState -> [TAFuncDecl] -> [QName] -> IO [TAFuncDecl]
getAllFunctions vstref currfuncs newfuns = do
currmods <- readIORef vstref >>= return . currTAProgs
getAllFuncs currmods newfuns
where
getAllFuncs _ [] = return (reverse currfuncs)
getAllFuncs currmods (newfun:newfuncs)
| newfun `elem` standardConstructors ++ map funcName currfuncs
|| isPrimOp newfun
= getAllFunctions vstref currfuncs newfuncs
| fst newfun `elem` map progName currmods
= maybe
(
getAllFunctions vstref currfuncs newfuncs)
(\fdecl -> getAllFunctions vstref
(fdecl : currfuncs)
(newfuncs ++ nub (funcsOfFuncDecl fdecl)))
(find (\fd -> funcName fd == newfun)
(progFuncs
(fromJust (find (\m -> progName m == fst newfun) currmods))))
| otherwise
= do let mname = fst newfun
putStrLn $ "Loading module '" ++ mname ++ "' for '"++ snd newfun ++"'"
newmod <- readTypedFlatCurry mname
modifyIORef vstref (addProgToState newmod)
getAllFunctions vstref currfuncs (newfun:newfuncs)
funcsOfFuncDecl :: TAFuncDecl -> [QName]
funcsOfFuncDecl fd =
nub (trRule (\_ _ e -> funcsOfExp e) (\_ _ -> []) (funcRule fd))
where
funcsOfExp = trExpr (\_ _ -> [])
(\_ _ -> [])
(\_ _ (qn,_) fs -> qn : concat fs)
(\_ bs fs -> concatMap snd bs ++ fs)
(\_ _ -> id)
(\_ -> (++))
(\_ _ fs fss -> concat (fs:fss))
(\_ -> id)
(\_ fs _ -> fs)
ndExpr :: TAExpr -> Bool
ndExpr = trExpr (\_ _ -> False)
(\_ _ -> False)
(\_ _ _ nds -> or nds)
(\_ bs nd -> nd || any snd bs)
(\_ _ _ -> True)
(\_ _ _ -> True)
(\_ _ nd bs -> nd || or bs)
(\_ -> id)
(\_ nd _ -> nd)
ppTAExpr :: TAExpr -> String
ppTAExpr e = pretty 200 (ppExp e)
setAnnPattern :: TypeExpr -> TAPattern -> TAPattern
setAnnPattern ann (ALPattern _ lit) = ALPattern ann lit
setAnnPattern ann (APattern _ aqn vars) = APattern ann aqn vars
isPrimOp :: QName -> Bool
isPrimOp (mn,fn) = mn=="Prelude" && fn `elem` map fst preludePrimOps
preludePrimOps :: [(String,String)]
preludePrimOps =
[("==","=")
,("/=","/=")
,("+","+")
,("-","-")
,("negate","-")
,("*","*")
,("div","div")
,("mod","mod")
,("rem","rem")
,(">",">")
,(">=",">=")
,("<","<")
,("<=","<=")
,("not","not")
,("&&","and")
,("||","or")
,("otherwise","true")
,("apply","apply")
]
primCons :: [(String,String)]
primCons =
[("True","true")
,("False","false")
,("[]","nil")
,(":","insert")
,("(,)","mk-pair")
,("LT","LT")
,("EQ","EQ")
,("GT","GT")
,("Nothing","Nothing")
,("Just","Just")
,("Left","Left")
,("Right","Right")
]
standardConstructors :: [QName]
standardConstructors =
map (pre . fst) primCons ++ [pre "()", pre "(,)", pre "(,,)"]
etaExpandFuncDecl :: TAFuncDecl -> TAFuncDecl
etaExpandFuncDecl fdecl@(AFunc _ _ _ _ (AExternal _ _)) = fdecl
etaExpandFuncDecl (AFunc qn ar vis texp (ARule tr args rhs)) =
AFunc qn (ar + length etavars) vis texp
(ARule tr (args ++ etavars)
(applyExp rhs (map (\ (v,t) -> AVar t v) etavars)))
where
freshvar = maximum (0 : map fst args ++ allVars rhs) + 1
argtypes = argTypes texp
etavars = zip [freshvar ..] (drop ar argtypes)
applyExp exp [] = exp
applyExp exp vars@(v1:vs) = case exp of
AComb te ct (qf,qt) cargs -> case ct of
FuncPartCall m -> applyExp (AComb (dropArgTypes 1 te)
(if m==1 then FuncCall
else FuncPartCall (m-1))
(qf,qt)
(cargs ++ [v1]))
vs
_ -> applyExp (AComb (dropArgTypes 1 te) FuncCall
(pre "apply", FuncType (annExpr v1) te) [exp, v1]) vs
ACase te ct e brs -> ACase (adjustType te) ct e
(map (\ (ABranch p be) -> ABranch p (applyExp be vars)) brs)
AOr te e1 e2 -> AOr (adjustType te) (applyExp e1 vars) (applyExp e2 vars)
ALet te bs e -> ALet (adjustType te) bs (applyExp e vars)
AFree te fvs e -> AFree (adjustType te) fvs (applyExp e vars)
ATyped te e ty -> ATyped (adjustType te) (applyExp e vars) (adjustType ty)
AVar te _ -> applyExp (AComb (dropArgTypes 1 te) FuncCall
(pre "apply", FuncType (annExpr v1) te)
[exp, v1]) vs
ALit _ _ -> error "etaExpandFuncDecl: cannot apply literal"
where
adjustType ty = dropArgTypes (length vars) ty
dropArgTypes n ty
| n==0 = ty
| otherwise = case ty of FuncType _ rt -> dropArgTypes (n-1) rt
_ -> error "dropArgTypes: too few argument types"
pre :: String -> QName
pre f = ("Prelude",f)
showQName :: QName -> String
showQName (mn,fn) = mn ++ "." ++ fn
|