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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
|
module BindingOpt (main, transformFlatProg) where
import Control.Monad ( when, unless )
import Curry.Compiler.Distribution ( installDir, curryCompiler )
import Data.List
import Data.Maybe ( fromJust, isJust )
import System.Environment ( getArgs )
import System.CPUTime ( getCPUTime )
import FlatCurry.Types hiding (Cons)
import FlatCurry.Files
import FlatCurry.Goodies
import System.CurryPath ( runModuleAction )
import System.Directory ( renameFile )
import System.FilePath ( (</>), (<.>), normalise, pathSeparator
, takeExtension, dropExtension )
import System.Process ( system, exitWith )
import Analysis.Types
import Analysis.ProgInfo
import Analysis.RequiredValues
import CASS.Server ( analyzeGeneric, analyzePublic, analyzeInterface )
import System.CurryPath ( currySubdir, addCurrySubdir, splitModuleFileName )
import Text.CSV
data Options = Options { verbosity :: Int
, withAnalysis :: Bool
, eqvTrans :: Bool
, loadProg :: Bool
}
defaultOptions :: Options
defaultOptions = Options 1 True True False
systemBanner :: String
systemBanner =
let bannerText = "Curry Binding Optimizer (version of 07/01/2021)"
bannerLine = take (length bannerText) (repeat '=')
in bannerLine ++ "\n" ++ bannerText ++ "\n" ++ bannerLine
usageComment :: String
= unlines
[ "Usage: curry-transbooleq [option] ... [module or FlatCurry file] ..."
, " -v<n> : set verbosity level (n=0|1|2|3)"
, " -f : fast transformation without analysis"
, " (uses only information about the standard prelude)"
, " -s : transform only (===) but not (==)"
, " -l : load optimized module into Curry system"
, " -h, -? : show this help text"
]
main :: IO ()
main = getArgs >>= checkArgs defaultOptions
mainCallError :: [String] -> IO ()
mainCallError args = do
putStrLn $ systemBanner
++ "\nIllegal arguments: " ++ unwords args
++ "\n" ++ usageComment
exitWith 1
checkArgs :: Options -> [String] -> IO ()
checkArgs opts args = case args of
[] -> mainCallError []
('-':'v':d:[]):margs -> let v = ord d - ord '0'
in if v >= 0 && v < 4
then checkArgs opts { verbosity = v } margs
else mainCallError args
"-f" : margs -> checkArgs opts { withAnalysis = False } margs
"-s" : margs -> checkArgs opts { eqvTrans = False } margs
"-l" : margs -> checkArgs opts { loadProg = True } margs
"-h" : _ -> putStr (systemBanner++'\n':usageComment)
"-?" : _ -> putStr (systemBanner++'\n':usageComment)
mods -> do printVerbose opts 1 systemBanner
mapM_ (transformBoolEq opts) mods
printVerbose :: Options -> Int -> String -> IO ()
printVerbose opts printlevel message =
unless (null message || verbosity opts < printlevel) $ putStrLn message
transformBoolEq :: Options -> String -> IO ()
transformBoolEq opts name = do
if takeExtension name == ".fcy"
then do prog <- readFlatCurryFile name
let modname = modNameOfFcyName (normalise (dropExtension name))
transformAndStoreFlatProg opts modname name prog
else runModuleAction
(\mn -> readFlatCurry mn >>=
transformAndStoreFlatProg opts mn (flatCurryFileName mn))
name
modNameOfFcyName :: String -> String
modNameOfFcyName name =
let wosuffix = normalise (dropExtension name)
[dir,wosubdir] = splitOn (currySubdir ++ [pathSeparator]) wosuffix
in
dir </> intercalate "." (split (==pathSeparator) wosubdir)
transformAndStoreFlatProg :: Options -> String -> String -> Prog -> IO ()
transformAndStoreFlatProg opts modname fcyfile prog = do
printVerbose opts 1 $ "Reading and analyzing module '" ++ modname ++ "'..."
starttime <- getCPUTime
(newprog, transformed) <- transformFlatProg opts modname prog
let optfcyfile = fcyfile ++ "_OPT"
when transformed $ writeFCY optfcyfile newprog
stoptime <- getCPUTime
printVerbose opts 2 $ "Transformation time for " ++ modname ++ ": " ++
show (stoptime-starttime) ++ " msecs"
when transformed $ do
printVerbose opts 2 $ "Transformed program stored in " ++ optfcyfile
renameFile optfcyfile fcyfile
printVerbose opts 2 $ " ...and moved to " ++ fcyfile
when (loadProg opts) $ do
system $ curryComp ++ " -Dbindingoptimization=no :l " ++ modname
return ()
where curryComp = installDir </> "bin" </> curryCompiler
transformFlatProg :: Options -> String -> Prog -> IO (Prog, Bool)
transformFlatProg opts modname
(Prog mname imports tdecls fdecls opdecls)= do
lookupreqinfo <-
if withAnalysis opts
then do (mreqinfo,reqinfo) <- loadAnalysisWithImports reqValueAnalysis
modname imports
printVerbose opts 2 $
"\nResult of \"RequiredValue\" analysis:\n" ++
showInfos (showAFType AText)
(if verbosity opts == 3 then reqinfo else mreqinfo)
return (flip lookupProgInfo reqinfo)
else return (flip lookup preludeBoolReqValues)
let (stats,newfdecls) = unzip (map (transformFuncDecl opts lookupreqinfo)
fdecls)
numtranseqs = totalTransEqs stats
numtranseqv = totalTransEqv stats
numbeqs = totalBEqs stats
csvfname = mname ++ "_BOPTSTATS.csv"
printVerbose opts 2 $ statSummary stats
printVerbose opts 1 $
"Total number of transformed (dis)equalities: " ++
show numtranseqs ++ " (===) " ++
(if eqvTrans opts then " and " ++ show numtranseqv ++ " (==)" else "") ++
" (out of " ++ show numbeqs ++ ")"
unless (verbosity opts < 2) $ do
writeCSVFile csvfname (stats2csv stats)
putStrLn ("Detailed statistics written to '" ++ csvfname ++"'")
return ( Prog mname imports tdecls newfdecls opdecls
, numtranseqs + numtranseqv > 0)
loadAnalysisWithImports :: (Read a, Show a) => Analysis a -> String -> [String]
-> IO (ProgInfo a,ProgInfo a)
loadAnalysisWithImports analysis modname imports = do
maininfo <- analyzeGeneric analysis modname >>= return . either id error
impinfos <- mapM (\m -> analyzePublic analysis m >>=
return . either id error)
imports
return $ (maininfo, foldr1 combineProgInfo (maininfo:impinfos))
showInfos :: (a -> String) -> ProgInfo a -> String
showInfos showi =
unlines . map (\ (qn,i) -> snd qn ++ ": " ++ showi i)
. (\p -> fst p ++ snd p) . progInfo2Lists
transformFuncDecl :: Options -> (QName -> Maybe AFType) -> FuncDecl
-> (TransStat, FuncDecl)
transformFuncDecl opts lookupreqinfo fdecl@(Func qf@(_,fn) ar vis texp rule) =
if containsBeqRule opts rule
then
let (tst,trule) = transformRule opts lookupreqinfo (initTState qf) rule
in ( TransStat fn beqs (numTransEqs tst) (numTransEqv tst)
, Func qf ar vis texp trule )
else (TransStat fn 0 0 0, fdecl)
where
beqs = numberBeqRule opts rule
data TState = TState { currFunc :: QName
, numTransEqs :: Int
, numTransEqv :: Int
}
initTState :: QName -> TState
initTState qf = TState qf 0 0
incNumEqs :: TState -> TState
incNumEqs tst = tst { numTransEqs = numTransEqs tst + 1 }
incNumEqv :: TState -> TState
incNumEqv tst = tst { numTransEqv = numTransEqv tst + 1 }
transformRule :: Options -> (QName -> Maybe AFType) -> TState -> Rule
-> (TState,Rule)
transformRule _ _ tst (External s) = (tst, External s)
transformRule opts lookupreqinfo tstr (Rule args rhs) =
let (te,tste) = transformExp tstr rhs Any
in (tste, Rule args te)
where
transformExp tst (Var i) _ = (Var i, tst)
transformExp tst (Lit v) _ = (Lit v, tst)
transformExp tst0 exp@(Comb ct qf es) reqval
| reqval == aTrue && isBoolEqualCall opts True exp
= case checkBoolEqualCall opts True (Comb ct qf tes) of
Just (eqs,targs) -> ( Comb FuncCall (pre "constrEq") targs
, (if eqs then incNumEqs else incNumEqv) tst1 )
Nothing -> error "Internal error: Nothing in transfromExp"
| reqval == aFalse && isBoolEqualCall opts False exp
= case checkBoolEqualCall opts False (Comb ct qf tes) of
Just (eqs,targs) -> ( Comb FuncCall (pre "not")
[Comb FuncCall (pre "constrEq") targs]
, (if eqs then incNumEqs else incNumEqv) tst1 )
Nothing -> error "Internal error: Nothing in transfromExp"
| qf == pre "$" && length es == 2 &&
(isFuncPartCall (head es) || isConsPartCall (head es))
= transformExp tst0 (reduceDollar es) reqval
| otherwise
= (Comb ct qf tes, tst1)
where
reqargtypes = argumentTypesFor (lookupreqinfo qf) reqval
(tes,tst1) = transformExps tst0 (zip es reqargtypes)
transformExp tst0 (Free vars e) reqval =
let (te,tst1) = transformExp tst0 e reqval
in (Free vars te, tst1)
transformExp tst0 (Or e1 e2) reqval =
let (te1,tst1) = transformExp tst0 e1 reqval
(te2,tst2) = transformExp tst1 e2 reqval
in (Or te1 te2, tst2)
transformExp tst0 (Typed e t) reqval =
let (te,tst1) = transformExp tst0 e reqval
in (Typed te t, tst1)
transformExp tst0 (Case ct e bs) reqval =
let (te ,tst1) = transformExp tst0 e (caseArgType bs)
(tbs,tst2) = transformBranches tst1 bs reqval
in (Case ct te tbs, tst2)
transformExp tst0 (Let bs e) reqval =
let (tbes,tst1) = transformExps tst0 (zip (map snd bs) (repeat Any))
(te,tst2) = transformExp tst1 e reqval
in (Let (zip (map fst bs) tbes) te, tst2)
transformExps tst [] = ([],tst)
transformExps tst ((exp,rv):exps) =
let (te, tste ) = transformExp tst exp rv
(tes,tstes) = transformExps tste exps
in (te:tes, tstes)
transformBranches tst [] _ = ([],tst)
transformBranches tst (br:brs) reqval =
let (tbr,tst1) = transformBranch tst br reqval
(tbrs,tst2) = transformBranches tst1 brs reqval
in (tbr:tbrs, tst2)
transformBranch tst (Branch pat be) reqval =
let (tbe,tstb) = transformExp tst be reqval
in (Branch pat tbe, tstb)
checkBoolEqualCall :: Options -> Bool -> Expr -> Maybe (Bool, [Expr])
checkBoolEqualCall opts eq exp = case exp of
Comb FuncCall qf es ->
if isEqNameOrInst qf && length es > 1
then Just (isEqsNameOrInst qf,
drop (length es - 2) es)
else if qf == pre "apply"
then case es of
[Comb FuncCall qfa [Comb FuncCall qfe [_],e1],e2] ->
if qfa == pre "apply" && isEqNameOrInst qfe
then Just (isEqsNameOrInst qfe, [e1,e2])
else Nothing
[Comb FuncCall qfa [Comb FuncCall qfe [],e1],e2] ->
if qfa == pre "apply" && isEqNameOrInst qfe
then Just (isEqsNameOrInst qfe, [e1,e2])
else Nothing
_ -> Nothing
else Nothing
_ -> Nothing
where
isEqNameOrInst qf = isEqsNameOrInst qf || isEqvNameOrInst qf
isEqsNameOrInst qf@(_,f) =
if eq then qf == pre "===" || "_impl#===#Prelude.Data#" `isPrefixOf` f
else qf == pre "/=="
isEqvNameOrInst qf@(_,f) =
eqvTrans opts &&
if eq then qf == pre "==" || "_impl#==#Prelude.Eq#" `isPrefixOf` f
else qf == pre "/=" || "_impl#/=#Prelude.Eq#" `isPrefixOf` f
isBoolEqualCall :: Options -> Bool -> Expr -> Bool
isBoolEqualCall opts eq exp = isJust (checkBoolEqualCall opts eq exp)
reduceDollar :: [Expr] -> Expr
reduceDollar args = case args of
[Comb (FuncPartCall n) qf es, arg2]
-> Comb (if n==1 then FuncCall else (FuncPartCall (n-1))) qf (es++[arg2])
[Comb (ConsPartCall n) qf es, arg2]
-> Comb (if n==1 then ConsCall else (ConsPartCall (n-1))) qf (es++[arg2])
_ -> error "reduceDollar"
caseArgType :: [BranchExpr] -> AType
caseArgType branches
| not (null (tail branches)) &&
branches!!1 == Branch (Pattern (pre "False") []) failedFC
= aCons (pre "True")
| length nfbranches /= 1
= Any
| otherwise = getPatCons (head nfbranches)
where
failedFC = Comb FuncCall (pre "failed") []
nfbranches = filter (\ (Branch _ be) -> be /= failedFC) branches
getPatCons (Branch (Pattern qc _) _) = aCons qc
getPatCons (Branch (LPattern _) _) = Any
argumentTypesFor :: Maybe AFType -> AType -> [AType]
argumentTypesFor Nothing _ = repeat Any
argumentTypesFor (Just EmptyFunc) _ = repeat Any
argumentTypesFor (Just (AFType rtypes)) reqval =
maybe (
maybe (
if (reqval==Any || reqval==AnyC) && not (null rtypes)
then foldr1 lubArgs (map fst rtypes)
else repeat Any)
fst
(find ((`elem` [AnyC,Any]) . snd) rtypes))
fst
(find ((==reqval) . snd) rtypes)
where
lubArgs xs ys = map (uncurry lubAType) (zip xs ys)
containsBeqRule :: Options -> Rule -> Bool
containsBeqRule _ (External _) = False
containsBeqRule opts (Rule _ rhs) = containsBeqExp rhs
where
containsBeqExp (Var _) = False
containsBeqExp (Lit _) = False
containsBeqExp exp@(Comb _ _ es) =
isBoolEqualCall opts True exp || isBoolEqualCall opts False exp ||
any containsBeqExp es
containsBeqExp (Free _ e ) = containsBeqExp e
containsBeqExp (Or e1 e2 ) = containsBeqExp e1 || containsBeqExp e2
containsBeqExp (Typed e _ ) = containsBeqExp e
containsBeqExp (Case _ e bs) = containsBeqExp e || any containsBeqBranch bs
containsBeqExp (Let bs e ) = containsBeqExp e ||
any containsBeqExp (map snd bs)
containsBeqBranch (Branch _ be) = containsBeqExp be
numberBeqRule :: Options -> Rule -> Int
numberBeqRule _ (External _) = 0
numberBeqRule opts (Rule _ rhs) = numberBeqExp rhs
where
numberBeqExp (Var _) = 0
numberBeqExp (Lit _) = 0
numberBeqExp exp@(Comb _ _ es) =
case checkBoolEqualCall opts True exp of
Just (_,targs) -> 1 + sum (map numberBeqExp targs)
Nothing -> case checkBoolEqualCall opts False exp of
Just (_,fargs) -> 1 + sum (map numberBeqExp fargs)
Nothing -> sum (map numberBeqExp es)
numberBeqExp (Free _ e) = numberBeqExp e
numberBeqExp (Or e1 e2) = numberBeqExp e1 + numberBeqExp e2
numberBeqExp (Typed e _) = numberBeqExp e
numberBeqExp (Case _ e bs) = numberBeqExp e + sum (map numberBeqBranch bs)
numberBeqExp (Let bs e) = numberBeqExp e + sum (map numberBeqExp (map snd bs))
numberBeqBranch (Branch _ be) = numberBeqExp be
pre :: String -> QName
pre n = ("Prelude", n)
loadPreludeBoolReqValues :: IO [(QName, AFType)]
loadPreludeBoolReqValues = do
maininfo <- analyzeInterface reqValueAnalysis "Prelude" >>=
return . either id error
return (filter (hasBoolReqValue . snd) maininfo)
where
hasBoolReqValue EmptyFunc = False
hasBoolReqValue (AFType rtypes) =
maybe False (const True) (find (isBoolReqValue . snd) rtypes)
isBoolReqValue rt = rt == aFalse || rt == aTrue
preludeBoolReqValues :: [(QName, AFType)]
preludeBoolReqValues =
[(pre "&&", AFType [([Any,Any],aFalse), ([aTrue,aTrue],aTrue)])
,(pre "not", AFType [([aTrue],aFalse), ([aFalse],aTrue)])
,(pre "||", AFType [([aFalse,aFalse],aFalse), ([Any,Any],aTrue)])
,(pre "&", AFType [([aTrue,aTrue],aTrue)])
,(pre "solve", AFType [([aTrue],aTrue)])
,(pre "&&>", AFType [([aTrue,Any],AnyC)])
]
aCons :: QName -> AType
aCons qn = Cons [qn]
aFalse :: AType
aFalse = aCons (pre "False")
aTrue :: AType
aTrue = aCons (pre "True")
data TransStat = TransStat String Int Int Int
totalTransEqs :: [TransStat] -> Int
totalTransEqs = sum . map (\ (TransStat _ _ teqs _) -> teqs)
totalTransEqv :: [TransStat] -> Int
totalTransEqv = sum . map (\ (TransStat _ _ _ teqv) -> teqv)
totalBEqs :: [TransStat] -> Int
totalBEqs = sum . map (\ (TransStat _ beqs _ _) -> beqs)
statSummary :: [TransStat] -> String
statSummary = concatMap showSum
where
showSum (TransStat fn _ teqs teqv) =
if teqs + teqv == 0
then ""
else (if teqs > 0
then showFun fn ++ showNOccs teqs ++
" of (===) transformed into (=:=)\n"
else "") ++
(if teqv > 0
then showFun fn ++ showNOccs teqv ++
" of (==) transformed into (=:=)\n"
else "")
showFun fn = "Function " ++ fn ++ ": "
showNOccs n = if n==1 then "one occurrence" else show n ++ " occurrences"
stats2csv :: [TransStat] -> [[String]]
stats2csv stats =
["Function","Boolean equalities",
"Transformed equalities", "Transformed equivalences"] :
map (\ (TransStat fn beqs teqs teqv) -> fn : map show [beqs, teqs, teqv])
stats
|