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
|
{-# OPTIONS_FRONTEND -Wno-incomplete-patterns #-}
module RW.Build where
import AbstractCurry.Build
import AbstractCurry.Types as ACT
import AbstractCurry.Select
import FlatCurry.Types as FCT
import Data.List
import Data.Function
import Data.Maybe
import Debug.Trace
import qualified Data.Set as Set
fromIndex0 :: [a] -> [Int]
fromIndex0 = fromIndex 0
fromIndex :: Int -> [a] -> [Int]
fromIndex i xs = take (length xs) [i ..]
varName :: Int -> String
varName j | j < 26 = [['a'..]!!j]
| otherwise = [['a'..]!!(j `mod` 26)] ++ (show $ j `div` 26)
appendIf :: Bool -> [a] -> a -> [a]
appendIf True xs x = xs ++ [x]
appendIf False xs _ = xs
optimizeSingleConstructor :: [a] -> [b] -> [b]
optimizeSingleConstructor xs ys = case xs of
[_] -> drop 1 ys
_ -> ys
consArity :: CConsDecl -> Int
consArity (CCons _ _ tes) = length tes
consArity (CRecord _ _ fds) = length fds
consTypeExpressions :: CConsDecl -> [CTypeExpr]
consTypeExpressions (CCons _ _ tes) = tes
consTypeExpressions (CRecord _ _ fds) = map getTE fds
where
getTE (CField _ _ te) = te
isPolymorphic :: CTypeDecl -> Bool
isPolymorphic (CType _ _ tvs _ _) = not $ null tvs
isMonomorphic :: CTypeDecl -> Bool
isMonomorphic = not . isPolymorphic
typeVars :: CTypeDecl -> [CTVarIName]
typeVars (CType _ _ tvs _ _) = tvs
typeVars (CTypeSyn _ _ tvs _) = tvs
typeVars (CNewType _ _ tvs _ _) = tvs
unwrapApply :: CTypeExpr -> [CTypeExpr]
unwrapApply te = case te of
CTApply a b -> unwrapApply a ++ [b]
_ -> [te]
consVars :: CConsDecl -> [CTVarIName]
consVars (CCons _ _ tes) = [expr2name x | x <- tes, isTypeVar x]
where
expr2name e = case e of
(CTVar n) -> n
_ -> error "consVars: not a type variable"
isTypeVar :: CTypeExpr -> Bool
isTypeVar te = case te of
CTVar _ -> True
_ -> False
genericTypeVariable :: CTypeExpr
genericTypeVariable = CTVar (0, "a")
classConstraint :: String -> String -> [CTVarIName] -> [CConstraint]
classConstraint className module' = map (\n -> ((module', className), CTVar n))
returnTypeExpr :: Bool -> CTypeExpr -> CTypeExpr -> CTypeExpr
returnTypeExpr True te format = format ~> (CTApply (CTApply (CTCons ("Prelude", "(,)")) te) format)
returnTypeExpr False _ format = format ~> CTVar (0, "a")
combineWithR :: FCT.QName -> [CExpr] -> CExpr
combineWithR op = foldr1 (\x y -> applyF op [x,y])
combineWithL :: FCT.QName -> [CExpr] -> CExpr
combineWithL op = foldl1 (\x y -> applyF op [x,y])
concatExpr :: [CExpr] -> CExpr
concatExpr = combineWithR (pre "++")
applyExpr :: [CExpr] -> CExpr
applyExpr = combineWithR (pre ".")
equalsExpr :: CExpr -> CExpr -> CExpr
equalsExpr e1 e2 = applyF (pre "==") [e1, e2]
otherwiseExpr :: CExpr
otherwiseExpr = CSymbol $ pre "otherwise"
returnExpr :: CExpr -> CStatement
returnExpr e = CSExpr (CApply (CSymbol (pre "return")) e)
typeDeclToTypeExpr :: CTypeDecl -> CTypeExpr
typeDeclToTypeExpr decl = case decl of
(CType name _ [] _ _) -> CTCons name
(CType name _ tvs _ _) -> let type' = CTCons name : map CTVar tvs
in foldl1 CTApply type'
typeDeclToName :: CTypeDecl -> String
typeDeclToName decl = case decl of
(CType (_, name) _ _ _ _) -> name
isTypeSyn :: CTypeDecl -> Bool
isTypeSyn t = case t of
(CTypeSyn _ _ _ _) -> True
_ -> False
showTypeExpr :: CTypeExpr -> String
showTypeExpr (CTApply a b) = showTypeExpr a ++ " " ++ showTypeExpr b
showTypeExpr (CTCons (_, name)) = name
showTypeExpr (CTVar (_, name)) = name
showTypeExpr (CFuncType a b) = "(" ++ showTypeExpr a ++ " -> " ++ showTypeExpr b ++ ")"
theCons :: ACT.QName -> CTypeDecl -> CConsDecl
theCons cn = fromJust . find ((== cn) . consName) . typeCons
anonPattern :: CPattern
anonPattern = CPVar (0, "_")
listRestPattern :: [CPattern] -> CPattern
listRestPattern xs = case xs of
[] -> pNil
_ -> foldr1 (\x y -> CPComb (pre ":") [x,y]) xs
consToPolyPattern :: CConsDecl -> CPattern
consToPolyPattern (CCons name _ tes) = CPComb name pats
where
pats = map convert tes
convert te = case te of
CTVar (i, n) -> CPVar (i, n ++ "'")
_ -> anonPattern
anonDuplicates (x:xs) | x == anonPattern = x : anonDuplicates xs
| otherwise = x : anonDuplicates (substitute x anonPattern xs)
anonDuplicates [] = []
substitute v1 v2 = map (\x -> if x == v1 then v2 else x)
undefinedConstructorRule :: CConsDecl -> CRule
undefinedConstructorRule cons = case cons of
(CCons name _ tes) -> CRule [CPComb name (map (\i -> CPVar (i, varName i)) (fromIndex0 tes))] (CSimpleRhs (CSymbol ("Huh?", "undefined")) [])
_ -> CRule [] (CSimpleRhs (CSymbol ("Huh?", "fail")) [])
instances :: ACT.CurryProg -> [ACT.CInstanceDecl]
instances (CurryProg _ _ _ _ is _ _ _) = is
instanceName :: ACT.CInstanceDecl -> ACT.QName
instanceName (CInstance name _ _ _) = name
flatProgToAbstract :: FCT.Prog -> ACT.CurryProg
flatProgToAbstract (FCT.Prog name is ts _ _) = ACT.CurryProg name is Nothing [] [] (filter (not . isPrefixOf "_Dict#" . typeDeclToName) (map flatTypeDeclToAbstract ts)) [] []
where
flatTypeDeclToAbstract t = case t of
(FCT.Type qn vis tvar cds) -> ACT.CType qn (flatVisiblityToAbstract vis) (map flatTypeVarToAbstract tvar) (map flatConstrDeclToAbstract cds) []
(FCT.TypeNew qn vis tvar c) -> ACT.CType qn (flatVisiblityToAbstract vis) (map flatTypeVarToAbstract tvar) [flatNewConsToAbstractCons c] []
flatVisiblityToAbstract v = case v of
FCT.Public -> ACT.Public
FCT.Private -> ACT.Private
flatTypeVarToAbstract (index, _) = (index, varName index)
flatConstrDeclToAbstract (FCT.Cons qn _ vis tes) = ACT.CCons qn (flatVisiblityToAbstract vis) (map flatTypeExprToAbstract tes)
flatNewConsToAbstractCons (FCT.NewCons qn vis te) = ACT.CCons qn (flatVisiblityToAbstract vis) [flatTypeExprToAbstract te]
flatTypeExprToAbstract fte = case fte of
FCT.TVar index -> ACT.CTVar (index, varName index)
FCT.FuncType t1 t2 -> ACT.CFuncType (flatTypeExprToAbstract t1) (flatTypeExprToAbstract t2)
FCT.TCons qn tes -> case tes of
[] -> ACT.CTCons qn
_ -> applyTC qn (map flatTypeExprToAbstract tes)
_ -> error "flatTypeExprToAbstract: forall quantifier not supported yet"
whenJust :: Maybe a -> (a -> Bool) -> Bool
whenJust (Just x) f = f x
whenJust Nothing _ = False
none :: (a -> Bool) -> [a] -> Bool
none f = not . any f
snd3 :: (a, b, c) -> b
snd3 (_, x, _) = x |