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
|
module FlatCurry.Typed.Read where
import FilePath ( (</>) )
import IOExts
import List ( find, nub )
import Maybe ( fromJust )
import FlatCurry.Annotated.Files ( readTypedFlatCurry )
import FlatCurry.Annotated.Goodies
import System.CurryPath ( getLoadPathForModule, lookupModuleSource
, stripCurrySuffix )
import FlatCurry.Typed.Goodies
import FlatCurry.Typed.Names
import FlatCurry.Typed.Simplify
import FlatCurry.Typed.Types
import PackageConfig ( packagePath )
import ToolOptions
import VerifierState
readSimpTypedFlatCurryWithSpec :: Options -> String -> IO TAProg
readSimpTypedFlatCurryWithSpec opts mname =
readTypedFlatCurryWithSpec opts mname >>= return . simpProg
readTypedFlatCurryWithSpec :: Options -> String -> IO TAProg
readTypedFlatCurryWithSpec opts mname = do
printWhenStatus opts $ "Loading typed FlatCurry program '" ++ mname ++ "'"
prog <- readTypedFlatCurry mname
loadpath <- getLoadPathForModule specName
mbspec <- lookupModuleSource (loadpath ++ [packagePath </> "include"])
specName
maybe (return prog)
(\ (_,specname) -> do
let specpath = stripCurrySuffix specname
printWhenStatus opts $ "Adding '" ++
(if optVerb opts > 1 then specpath else specName) ++ "'"
specprog <- readTypedFlatCurry specpath
return (unionTAProg prog (rnmProg mname specprog))
)
mbspec
where
specName = mname ++ "_SPEC"
getAllFunctions :: IORef VState -> [QName] -> IO [TAFuncDecl]
getAllFunctions vstref newfuns = do
currmods <- readIORef vstref >>= return . currTAProgs
getAllFuncs currmods [] newfuns
where
getAllFuncs _ currfuncs [] = return (reverse currfuncs)
getAllFuncs currmods currfuncs (newfun:newfuncs)
| newfun `elem` map (pre . fst) transPrimCons ++ map funcName currfuncs
|| isPrimOp newfun
= getAllFuncs currmods currfuncs newfuncs
| fst newfun `elem` map progName currmods
= maybe
(
getAllFuncs currmods currfuncs newfuncs)
(\fdecl -> getAllFuncs currmods (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
opts <- readVerifyInfoRef vstref >>= return . toolOpts
printWhenStatus opts $
"Loading module '" ++ mname ++ "' for '"++ snd newfun ++"'"
newmod <- readTypedFlatCurry mname >>= return . simpProg
modifyIORef vstref (addProgToState newmod)
getAllFuncs (newmod : currmods) currfuncs (newfun:newfuncs)
|