free-compiler-0.3.0.0: A Haskell to Coq compiler.

Safe HaskellSafe
LanguageHaskell2010

FreeC.IR.Syntax.Name

Description

This module contains the definition of names of our intermediate language.

Synopsis

Documentation

data Name Source #

An identifier or a symbolic name.

The constructors of this type do not contain source spans because Names are intended to be comparable. They are used as keys to identify nodes of the dependency graph for example.

Constructors

Ident String

An identifier, e.g. Ident "f" for a function f.

Symbol String

A symbolic name, e.g. Symbol "+" for (+).

Instances
Eq Name Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Methods

(==) :: Name -> Name -> Bool Source #

(/=) :: Name -> Name -> Bool Source #

Ord Name Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Show Name Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Pretty Name Source #

Pretty instance for identifiers and symbols.

Instance details

Defined in FreeC.IR.Syntax.Name

Methods

pretty :: Name -> Doc #

prettyList :: [Name] -> Doc #

Parseable Name Source #

Names can be parsed.

Instance details

Defined in FreeC.Frontend.IR.Parser

Methods

parseIR' :: Parser Name Source #

identFromName :: Name -> Maybe String Source #

Extracts an identifier from a name. Returns Nothing if the given name is a symbol and not an identifier.

data QName Source #

A qualifiable Name.

Constructors

Qual ModName Name

A qualified Name.

UnQual Name

An unqualified Name.

Instances
Eq QName Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Methods

(==) :: QName -> QName -> Bool Source #

(/=) :: QName -> QName -> Bool Source #

Ord QName Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Show QName Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Pretty QName Source #

Pretty instance for qualifiable identifiers and symbols.

Instance details

Defined in FreeC.IR.Syntax.Name

Methods

pretty :: QName -> Doc #

prettyList :: [QName] -> Doc #

FromJSON QName

All Haskell names in the interface file are qualified.

Instance details

Defined in FreeC.Environment.ModuleInterface.Decoder

Methods

parseJSON :: Value -> Parser QName

parseJSONList :: Value -> Parser [QName]

ToJSON QName 
Instance details

Defined in FreeC.Environment.ModuleInterface.Encoder

Methods

toJSON :: QName -> Value

toEncoding :: QName -> Encoding

toJSONList :: [QName] -> Value

toEncodingList :: [QName] -> Encoding

Parseable QName Source #

Qualifiable names can be parsed.

Instance details

Defined in FreeC.Frontend.IR.Parser

Methods

parseIR' :: Parser QName Source #

nameFromQName :: QName -> Name Source #

Extracts the name of a qualifiable name.

identFromQName :: QName -> Maybe String Source #

Extracts an identifier from a qualifiable name.

toQual :: ModName -> QName -> QName Source #

Converts a qualifiable name to a name that is qualified with the given module name.

toUnQual :: QName -> QName Source #

Converts a qualifiable name to an unqualified name.

data Scope Source #

Data type for the different name spaces of the intermediate representation.

Similar to Haskell, type and function names live in separate name spaces.

Additionally, there is a name space for fresh identifiers without a corresponding IR node. If a fresh identifier is introduced and used as an IR variable or type variable name, the corresponding entry lives in the value or type scope respectively. The FreshScope contains only IR identifiers that were generated such that their renamed counterpart of the target language can be used as a fresh identifier by the back end.

Instances
Eq Scope Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Methods

(==) :: Scope -> Scope -> Bool Source #

(/=) :: Scope -> Scope -> Bool Source #

Ord Scope Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Show Scope Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

type ScopedName = (Scope, QName) Source #

A QName with additional information about its name space.

type TypeVarIdent = String Source #

The name of a type variable.

type ModName = String Source #

The name of a module.

type VarName = QName Source #

The name of a function or built-in operator used in prefix notation, e.g. f x y or (+) n m

type ConName = QName Source #

The name of a constructor used in prefix notation, e.g. (:) x xs.

type TypeConName = QName Source #

The name of a type or type constructor, e.g. Integer or [] a

data DeclIdent Source #

The name of a top-level declaration including location information.

Instances
Eq DeclIdent Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Show DeclIdent Source # 
Instance details

Defined in FreeC.IR.Syntax.Name

Pretty DeclIdent Source #

Pretty instance for names of declarations.

Instance details

Defined in FreeC.IR.Syntax.Name

class HasDeclIdent node where Source #

Type class for AST nodes with a declaration identifier.

Methods

declIdent :: node -> DeclIdent Source #

Gets the name of the given AST node.

Instances
HasDeclIdent ConDecl Source #

Instance to get the name of a constructor declaration.

Instance details

Defined in FreeC.IR.Syntax.TypeDecl

HasDeclIdent TypeDecl Source #

Instance to get the name of a type synonym or data type declaration.

Instance details

Defined in FreeC.IR.Syntax.TypeDecl

HasDeclIdent Bind Source #

Instance to get the name of a let-binding.

Instance details

Defined in FreeC.IR.Syntax.Expr

HasDeclIdent VarPat Source #

Instance to get the name of a let-binding.

Instance details

Defined in FreeC.IR.Syntax.Expr

HasDeclIdent FuncDecl Source #

Instance to get the name of a function declaration.

Instance details

Defined in FreeC.IR.Syntax.FuncDecl

declQName :: HasDeclIdent node => node -> QName Source #

Gets the qualified name of the given AST node.

declName :: HasDeclIdent node => node -> Name Source #

Gets the unqualified name of the given AST node.

internalIdentChar :: Char Source #

The character that is used to mark internal identifiers.

This is used to generate fresh identifiers that don't conflict with user- defined identifiers.

isInternalIdent :: String -> Bool Source #

Tests whether the given identifier was generated for internal use only (i.e., contains internalIdentChar).

isInternalName :: Name -> Bool Source #

Tests whether the given name was generated for internal use only (i.e., it is an identifier that matches isInternalIdent).

isInternalQName :: QName -> Bool Source #

Tests whether the given qualifiable name was generated for internal use only (i.e., the qualified name is internal according to isInternalName).