This module contains operations to execute the front end of the Curry system.
Author: Bernd Brassel, Michael Hanus, Bjoern Peemoeller, Finn Teegen
Version: December 2020
defaultParams
:: FrontendParams
The default parameters of the front end. |
rcParams
:: IO FrontendParams
The default parameters of the front end as configured by the compiler specific resource configuration file. |
setQuiet
:: Bool -> FrontendParams -> FrontendParams
Set quiet mode of the front end. |
setExtended
:: Bool -> FrontendParams -> FrontendParams
Set extended mode of the front end. |
setCpp
:: Bool -> FrontendParams -> FrontendParams
Set cpp mode of the front end. |
addDefinition
:: (String,Int) -> FrontendParams -> FrontendParams
Add cpp definition of the front end. |
setDefinitions
:: [(String,Int)] -> FrontendParams -> FrontendParams
Set cpp definitions of the front end. |
setOverlapWarn
:: Bool -> FrontendParams -> FrontendParams
Set overlap warn mode of the front end. |
setFullPath
:: [String] -> FrontendParams -> FrontendParams
Set the full path of the front end. |
setHtmlDir
:: String -> FrontendParams -> FrontendParams
Set the htmldir parameter of the front end. |
setLogfile
:: String -> FrontendParams -> FrontendParams
Set the logfile parameter of the front end. |
setSpecials
:: String -> FrontendParams -> FrontendParams
Set additional specials parameters of the front end. |
addTarget
:: FrontendTarget -> FrontendParams -> FrontendParams
Add an additional front end target. |
setFrontendPath
:: String -> FrontendParams -> FrontendParams
Sets the path to the frontend executable. |
callFrontend
:: FrontendTarget -> String -> IO ()
In order to make sure that compiler generated files (like .fcy, .fint, .acy) are up to date, one can call the front end of the Curry compiler with this action. |
callFrontendWithParams
:: FrontendTarget -> FrontendParams -> String -> IO ()
In order to make sure that compiler generated files (like .fcy, .fint, .acy) are up to date, one can call the front end of the Curry compiler with this action where various parameters can be set. |
Data type for representing the different target files that can be produced by the front end of the Curry compiler.
Constructors:
FCY
:: FrontendTarget
: FlatCurry file ending with .fcy
TFCY
:: FrontendTarget
: Typed FlatCurry file ending with .tfcy
FINT
:: FrontendTarget
: FlatCurry interface file ending with .fint
ACY
:: FrontendTarget
: AbstractCurry file ending with .acy
UACY
:: FrontendTarget
: Untyped (without type checking) AbstractCurry file ending with .uacy
HTML
:: FrontendTarget
: colored HTML representation of source program
CY
:: FrontendTarget
: source representation employed by the frontend
TOKS
:: FrontendTarget
: token stream of source program
TAFCY
:: FrontendTarget
AST
:: FrontendTarget
: abstract syntax tree ending with .sast
SAST
:: FrontendTarget
: shortened abstract syntax tree ending with .sast
COMMS
:: FrontendTarget
: comments stream ending with .cycom
Abstract data type for representing parameters supported by the front end of the Curry compiler.
Constructors:
FrontendParams
:: Bool -> Bool -> Bool -> [(String,Int)] -> Bool -> (Maybe [String]) -> (Maybe String) -> (Maybe String) -> [FrontendTarget] -> String -> String -> FrontendParams
Fields:
quiet
:: Bool
extended
:: Bool
cpp
:: Bool
definitions
:: [(String,Int)]
overlapWarn
:: Bool
fullPath
:: (Maybe [String])
htmldir
:: (Maybe String)
logfile
:: (Maybe String)
targets
:: [FrontendTarget]
specials
:: String
frontendPath
:: String
The default parameters of the front end. |
The default parameters of the front end as configured by the compiler specific resource configuration file. |
Set quiet mode of the front end.
|
Set extended mode of the front end.
|
Set cpp mode of the front end.
|
Add cpp definition of the front end.
|
Set cpp definitions of the front end.
|
Set overlap warn mode of the front end.
|
Set the full path of the front end. If this parameter is set, the front end searches all modules in this path (instead of using the default path).
|
Set the htmldir parameter of the front end. Relevant for HTML generation.
|
Set the logfile parameter of the front end. If this parameter is set, all messages produced by the front end are stored in this file.
|
Set additional specials parameters of the front end. These parameters are specific for the current front end and should be used with care, since their form might change in the future.
|
Add an additional front end target.
|
Sets the path to the frontend executable.
|
In order to make sure that compiler generated files (like .fcy, .fint, .acy) are up to date, one can call the front end of the Curry compiler with this action. If the front end returns with an error, an exception is raised.
|
In order to make sure that compiler generated files (like .fcy, .fint, .acy) are up to date, one can call the front end of the Curry compiler with this action where various parameters can be set. If the front end returns with an error, an exception is raised.
|