summaryrefslogtreecommitdiff
path: root/Language/C.hs
blob: 35cf4329514589666ee52a0a22cf9714b182d671 (plain)
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
module Language.C where


data Program = Program [FunDef]
  deriving (Show)

data FunDef
    = FunDef Type Name [(Type, Name)] StExpr
    | ProcDef Name [(Type, Name)] [Stmt]
  deriving (Show, Eq)

data Type
    = TInt Bits
    | TUInt Bits
    | TFloat
    | TDouble
    | TPtr Type
  deriving (Show, Eq)

data Bits = B8 | B16 | B32 | B64
  deriving (Show, Eq)

newtype Name = Name String
  deriving (Show, Eq, Ord)

-- Statement expression: conceptually gcc's ({ ... })
data StExpr = StExpr [Stmt] Expr
  deriving (Show, Eq)

data Stmt
    = SDecl Type Name (Maybe Expr)
    | SAsg Name Expr
    | SStore Name Expr Expr  -- ^ name[expr] = expr
    | SCall Name [Expr]
    -- | @SFor ty i lo hi body@: @for (ty i = lo; i < hi; i++) body@
    | SFor Type Name Expr Expr [Stmt]
    | SIf Expr [Stmt] [Stmt]
  deriving (Show, Eq)

data Expr
    = EOp Expr String Expr
    | ENot Expr  -- ^ @!expr@
    | ELit String
    | EVar Name
    | ECall Name [Expr]
    | EIndex Name Expr
    | EPtrTo Expr
    | ESizeOf Type
  deriving (Show, Eq)


fundefName :: FunDef -> Name
fundefName (FunDef _ n _ _) = n
fundefName (ProcDef n _ _) = n