package strymonas-pure

  1. Overview
  2. Docs
type label = string
type varname = string
type fieldname = string
type ctype = {
  1. typ : typ;
  2. specs : spec list;
}
and typ =
  1. | Tvoid
  2. | Tbool
  3. | Tchar
  4. | Tshort
  5. | Tint
  6. | Tlong
  7. | Tint64
  8. | Tuint
  9. | Tulong
  10. | Tfloat
  11. | Tdouble
  12. | Tnamed of string
  13. | Tptr of ctype
  14. | Tarray of int * ctype
and spec =
  1. | S_const
  2. | S_volatile
  3. | S_restrict
  4. | S_static
  5. | S_extern
  6. | S_inline
type constant =
  1. | Const_num of string
  2. | Const_char of char
  3. | Const_string of string
type binary_operator =
  1. | ADD
  2. | SUB
  3. | MUL
  4. | DIV
  5. | MOD
  6. | AND
  7. | OR
  8. | BAND
  9. | BOR
  10. | XOR
  11. | SHL
  12. | SHR
  13. | EQ
  14. | NE
  15. | LT
  16. | GT
  17. | LE
  18. | GE
type unary_operator =
  1. | MINUS
  2. | PLUS
  3. | NOT
  4. | BNOT
  5. | MEMOF
  6. | ADDROF
type binary_modifier =
  1. | ASSIGN
  2. | ADD_ASSIGN
  3. | SUB_ASSIGN
  4. | MUL_ASSIGN
  5. | DIV_ASSIGN
  6. | MOD_ASSIGN
  7. | BAND_ASSIGN
  8. | BOR_ASSIGN
  9. | XOR_ASSIGN
  10. | SHL_ASSIGN
  11. | SHR_ASSIGN
type unary_modifier =
  1. | POSINCR
  2. | POSDECR
type expression =
  1. | Nothing
  2. | Const of constant
  3. | Var of varname
  4. | Unary of unary_operator * expression
  5. | Label_addr of label
  6. | Binary of binary_operator * expression * expression
  7. | Cond of expression * expression * expression
  8. | Cast of ctype * expression
  9. | Call of expression * expression list
  10. | Comma of simple_statement list * expression
  11. | Index of expression * expression
  12. | Memberof of expression * fieldname
  13. | Memberofptr of expression * fieldname
and init_expression =
  1. | Init_none
  2. | Init_single of expression
  3. | Init_compound of (init_designator * init_expression) list
and init_designator =
  1. | Indes_none
  2. | Indes_field of string * init_designator
  3. | Indes_index of expression * init_designator
  4. | Indes_index_range of expression * expression
and simple_statement =
  1. | NOP
  2. | CALL of expression * expression list
  3. | UNMOD of unary_modifier * expression
  4. | BIMOD of binary_modifier * expression * expression
and let_or_statement =
  1. | LET of definition
  2. | STMT of simple_statement
and statement =
  1. | SIMPLE of let_or_statement
  2. | BLOCK of block
  3. | IF of expression * block * block
  4. | WHILE of expression * block
  5. | DOWHILE of expression * block
  6. | FOR of let_or_statement * expression * simple_statement * block
  7. | BREAK
  8. | CONTINUE
  9. | RETURN of expression
  10. | SWITCH of expression * block
  11. | CASE of expression * block
  12. | CASERANGE of expression * expression * block
  13. | DEFAULT of block
  14. | LABEL of label
  15. | GOTO of label
  16. | COMPGOTO of expression
and block = statement list
and typedname = varname * ctype
and definition = typedname * init_expression
type declaration =
  1. | FUNDEF of ctype * varname * typedname list * block
  2. | DECDEF of definition
  3. | PROTO of typedname * varname * typedname list
  4. | TYPEDEF of typedname
OCaml

Innovation. Community. Security.