definition:
|
computeCompactFlatCurry :: [Option] -> String -> IO Prog
computeCompactFlatCurry orgoptions progname =
let options = addImport2Options orgoptions in
if (elem Exports options) && (any isMainOption options)
then error
"CompactFlat: Options 'Main' and 'Exports' can't be be used together!"
else do
putStr "CompactFlat: Searching relevant functions in module "
prog <- readCurrentFlatCurry progname
resultprog <- makeCompactFlatCurry prog options
putStrLn $ "CompactFlat: Number of functions after optimization: " ++
show (length (moduleFuns resultprog))
return resultprog
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Computes a single FlatCurry program containing all functions potentially
--- called from a set of main functions.
--- This is done by merging all imported FlatCurry modules (these are loaded
--- demand-driven so that modules that contains no potentially called functions
--- are not loaded) and removing the imported functions that are definitely
--- not used.
--- @param options - list of options
--- @param progname - name of the Curry program that should be compacted
--- @return the compact FlatCurry program
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
computeCompactFlatCurry
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Option] -> String -> Prelude.IO FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|