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
|
module Curry2SMT where
import IOExts
import List ( isPrefixOf )
import Maybe ( fromJust, fromMaybe )
import FlatCurry.Annotated.Goodies ( argTypes, resultType )
import FlatCurry.Annotated.Types
import BoolExp
import TypedFlatCurryGoodies
import VerifierState
funcs2SMT :: IORef VState -> [QName] -> IO String
funcs2SMT vstref qns = do
funs <- getAllFunctions vstref [] qns
return $ unlines (map ftype2SMT funs ++ [""] ++ map fdecl2SMT funs)
ftype2SMT :: TAFuncDecl -> String
ftype2SMT (AFunc qn _ _ texp _) =
asLisp ["declare-fun", transOpName qn,
asLisp (map (smtBE . polytype2SMTExp) (argTypes texp)),
smtBE (polytype2SMTExp (resultType texp))]
fdecl2SMT :: TAFuncDecl -> String
fdecl2SMT (AFunc qn _ _ _ rule) = unlines
["; define '" ++ showQName qn ++ "' by axiomatization of defining rules:",
smtBE (rule2SMT rule)]
where
rule2SMT (AExternal _ s) =
assertSMT $ bEqu (BTerm (transOpName qn) []) (BTerm ("External:" ++ s) [])
rule2SMT (ARule _ vs exp) =
assertSMT $ forallBinding (map (\ (v,t) -> (v, polytype2SMTExp t)) vs)
(if ndExpr exp
then exp2SMT (Just lhs) exp
else bEqu lhs (exp2SMT Nothing exp))
where
lhs = BTerm (transOpName qn) (map (BVar . fst) vs)
exp2SMT :: Maybe BoolExp -> TAExpr -> BoolExp
exp2SMT lhs exp = case exp of
AVar _ i -> makeRHS (BVar i)
ALit _ l -> makeRHS (lit2bool l)
AComb _ _ (qn,_) args ->
makeRHS (BTerm (transOpName qn) (map (exp2SMT Nothing) args))
ACase _ _ e brs -> let be = exp2SMT Nothing e
in branches2SMT be brs
ALet _ bs e -> letBinding (map (\ ((v,_),be) -> (v, exp2SMT Nothing be)) bs)
(exp2SMT lhs e)
ATyped _ e _ -> exp2SMT lhs e
AFree _ fvs e -> forallBinding (map (\ (v,t) -> (v, polytype2SMTExp t)) fvs)
(exp2SMT lhs e)
AOr _ e1 e2 -> Disj [exp2SMT lhs e1, exp2SMT lhs e2]
where
makeRHS rhs = maybe rhs (\l -> bEqu l rhs) lhs
branches2SMT _ [] = error "branches2SMT: empty branch list"
branches2SMT be [ABranch p e] = branch2SMT be p e
branches2SMT be (ABranch p e : brs@(_:_)) =
BTerm "ite" [patternTest p be,
branch2SMT be p e,
branches2SMT be brs]
branch2SMT _ (ALPattern _ _) e = exp2SMT lhs e
branch2SMT be (APattern _ (qf,_) ps) e = case ps of
[] -> exp2SMT lhs e
_ -> letBinding (map (\ (s,v) -> (v, BTerm s [be]))
(zip (selectors qf) (map fst ps)))
(exp2SMT lhs e)
patternTest :: TAPattern -> BoolExp -> BoolExp
patternTest (ALPattern _ l) be = bEqu be (lit2bool l)
patternTest (APattern ty (qf,_) _) be = constructorTest qf be ty
constructorTest :: QName -> BoolExp -> TypeExpr -> BoolExp
constructorTest qn be vartype
| qn == pre "[]"
= bEqu be (BTerm "as" [BTerm "nil" [], polytype2SMTExp vartype])
| qn `elem` map pre ["[]","True","False","LT","EQ","GT","Nothing"]
= bEqu be (BTerm (transOpName qn) [])
| qn `elem` map pre ["Just","Left","Right"]
= BTerm ("is-" ++ snd qn) [be]
| otherwise
= BTerm ("is-" ++ transOpName qn) [be]
selectors :: QName -> [String]
selectors qf | qf == ("Prelude",":") = ["head","tail"]
| qf == ("Prelude","Left") = ["left"]
| qf == ("Prelude","Right") = ["right"]
| qf == ("Prelude","Just") = ["just"]
| otherwise = map (genSelName qf) [1..]
polytype2SMTExp :: TypeExpr -> BoolExp
polytype2SMTExp = type2SMTExp [] False
type2SMTExp :: [QName] -> Bool -> TypeExpr -> BoolExp
type2SMTExp tdcl _ (TVar i) =
BTerm (if null tdcl then "TVar" else 'T':show i) []
type2SMTExp tdcl _ (FuncType dom ran) =
BTerm "Func" (map (type2SMTExp tdcl True) [dom,ran])
type2SMTExp tdcl nested (TCons qc@(mn,tc) targs)
| mn=="Prelude" && tc == "Char"
= BTerm "Int" []
| mn=="Prelude" && tc == "[]" && length targs == 1
= BTerm "List" argtypes
| mn=="Prelude" && tc == "(,)" && length targs == 2
= BTerm "Pair" argtypes
| mn=="Prelude" = BTerm tc argtypes
| null tdcl
= BTerm (tcons2SMT qc) argtypes
| otherwise
= if qc `elem` tdcl
then if nested
then error $ "Type '" ++ showQName qc ++
"': nested recursive types not supported by SMT!"
else BTerm (tcons2SMT qc) []
else BTerm (tcons2SMT (mn,tc)) argtypes
where
argtypes = map (type2SMTExp tdcl True) targs
tcons2SMT :: QName -> String
tcons2SMT (mn,tc) = mn ++ "_" ++ tc
tdecl2SMT :: TypeDecl -> String
tdecl2SMT (TypeSyn tc _ _ _) =
error $ "Cannot translate type synonym '" ++ showQName tc ++ "' into SMT!"
tdecl2SMT (Type tc _ tvars consdecls) =
"(declare-datatypes (" ++ unwords (map (\v -> 'T':show v) tvars) ++ ") " ++
"((" ++ unwords (tcons2SMT tc : map tconsdecl consdecls) ++ ")))"
where
tconsdecl (Cons qn _ _ texps) =
let cname = transOpName qn
in if null texps
then cname
else "(" ++ unwords (cname : map (texp2sel qn) (zip [1..] texps))
++ ")"
texp2sel cname (i,texp) =
"(" ++ genSelName cname i ++ " " ++
smtBE (type2SMTExp [tc] False texp) ++ ")"
genSelName :: QName -> Int -> String
genSelName qc i = "sel" ++ show i ++ transOpName qc
pat2bool :: TAPattern -> BoolExp
pat2bool (ALPattern _ l) = lit2bool l
pat2bool (APattern ty (qf,_) ps)
| qf == pre "[]" && null ps
= BTerm "as" [BTerm "nil" [], polytype2SMTExp ty]
| otherwise
= BTerm (transOpName qf) (map (BVar . fst) ps)
lit2bool :: Literal -> BoolExp
lit2bool (Intc i) = BTerm (show i) []
lit2bool (Floatc i) = BTerm (show i) []
lit2bool (Charc i) = BTerm (show (ord i)) []
transOpName :: QName -> String
transOpName (mn,fn)
| mn=="Prelude" = fromMaybe (mn ++ "_" ++ fn)
(lookup fn (primCons ++ preludePrimOps))
| otherwise = mn ++ "_" ++ fn
untransOpName :: String -> Maybe QName
untransOpName s
| "is-" `isPrefixOf` s
= Nothing
| otherwise
= let (mn,ufn) = break (=='_') s
in if null ufn
then Nothing
else Just (mn, tail ufn)
|