Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Typing for Core.
All expressions and streams in Core are accompanied by a representation of the types of the underlying expressions used or carried by the streams. This information is needed by the compiler to generate code, since it must initialize variables and equivalent representations for those types in the target languages.
Synopsis
- data Type :: * -> * where
- Bool :: Type Bool
- Int8 :: Type Int8
- Int16 :: Type Int16
- Int32 :: Type Int32
- Int64 :: Type Int64
- Word8 :: Type Word8
- Word16 :: Type Word16
- Word32 :: Type Word32
- Word64 :: Type Word64
- Float :: Type Float
- Double :: Type Double
- Array :: forall n t. (KnownNat n, Typed t, Typed (InnerType t), Flatten t (InnerType t)) => Type t -> Type (Array n t)
- Struct :: (Typed a, Struct a) => a -> Type a
- class (Show a, Typeable a) => Typed a where
- typeOf :: Type a
- simpleType :: Type a -> SimpleType
- data UType = forall a.Typeable a => UType {}
- data SimpleType where
- SBool :: SimpleType
- SInt8 :: SimpleType
- SInt16 :: SimpleType
- SInt32 :: SimpleType
- SInt64 :: SimpleType
- SWord8 :: SimpleType
- SWord16 :: SimpleType
- SWord32 :: SimpleType
- SWord64 :: SimpleType
- SFloat :: SimpleType
- SDouble :: SimpleType
- SArray :: Type t -> SimpleType
- SStruct :: SimpleType
- tysize :: forall n t. KnownNat n => Type (Array n t) -> Int
- tylength :: forall n t. KnownNat n => Type (Array n t) -> Int
- data Value a = forall s t.(Typeable t, KnownSymbol s, Show t) => Value (Type t) (Field s t)
- toValues :: Struct a => a -> [Value a]
- data Field (s :: Symbol) t = Field t
- typename :: Struct a => a -> String
- class Struct a
- fieldname :: forall s t. KnownSymbol s => Field s t -> String
- accessorname :: forall a s t. (Struct a, KnownSymbol s) => (a -> Field s t) -> String
Documentation
data Type :: * -> * where Source #
A Type representing the types of expressions or values handled by Copilot Core.
Note that both arrays and structs use dependently typed features. In the former, the length of the array is part of the type. In the latter, the names of the fields are part of the type.
Bool :: Type Bool | |
Int8 :: Type Int8 | |
Int16 :: Type Int16 | |
Int32 :: Type Int32 | |
Int64 :: Type Int64 | |
Word8 :: Type Word8 | |
Word16 :: Type Word16 | |
Word32 :: Type Word32 | |
Word64 :: Type Word64 | |
Float :: Type Float | |
Double :: Type Double | |
Array :: forall n t. (KnownNat n, Typed t, Typed (InnerType t), Flatten t (InnerType t)) => Type t -> Type (Array n t) | |
Struct :: (Typed a, Struct a) => a -> Type a |
class (Show a, Typeable a) => Typed a where Source #
A typed expression, from which we can obtain the two type representations
used by Copilot: Type
and SimpleType
.
simpleType :: Type a -> SimpleType Source #
Instances
Typed Bool Source # | |
Defined in Copilot.Core.Type | |
Typed Double Source # | |
Defined in Copilot.Core.Type | |
Typed Float Source # | |
Defined in Copilot.Core.Type | |
Typed Int8 Source # | |
Defined in Copilot.Core.Type | |
Typed Int16 Source # | |
Defined in Copilot.Core.Type | |
Typed Int32 Source # | |
Defined in Copilot.Core.Type | |
Typed Int64 Source # | |
Defined in Copilot.Core.Type | |
Typed Word8 Source # | |
Defined in Copilot.Core.Type | |
Typed Word16 Source # | |
Defined in Copilot.Core.Type | |
Typed Word32 Source # | |
Defined in Copilot.Core.Type | |
Typed Word64 Source # | |
Defined in Copilot.Core.Type | |
(Typeable t, Typed t, KnownNat n, Flatten t (InnerType t), Typed (InnerType t)) => Typed (Array n t) Source # | |
Defined in Copilot.Core.Type |
A untyped type (no phantom type).
data SimpleType where Source #
A simple, monomorphic representation of types that facilitates putting variables in heterogeneous lists and environments in spite of their types being different.
SBool :: SimpleType | |
SInt8 :: SimpleType | |
SInt16 :: SimpleType | |
SInt32 :: SimpleType | |
SInt64 :: SimpleType | |
SWord8 :: SimpleType | |
SWord16 :: SimpleType | |
SWord32 :: SimpleType | |
SWord64 :: SimpleType | |
SFloat :: SimpleType | |
SDouble :: SimpleType | |
SArray :: Type t -> SimpleType | |
SStruct :: SimpleType |
Instances
Eq SimpleType Source # | Type equality, used to help type inference. |
Defined in Copilot.Core.Type (==) :: SimpleType -> SimpleType -> Bool # (/=) :: SimpleType -> SimpleType -> Bool # |
tysize :: forall n t. KnownNat n => Type (Array n t) -> Int Source #
Return the total (nested) size of an array from its type
tylength :: forall n t. KnownNat n => Type (Array n t) -> Int Source #
Return the length of an array from its type
The field of a struct, together with a representation of its type.
toValues :: Struct a => a -> [Value a] Source #
Transforms all the struct's fields into a list of values.
data Field (s :: Symbol) t Source #
A field in a struct. The name of the field is a literal at the type level.
Field t |
The value of that is a product or struct, defined as a constructor with several fields.
accessorname :: forall a s t. (Struct a, KnownSymbol s) => (a -> Field s t) -> String Source #
Extract the name of an accessor (a function that returns a field of a struct).