heptagon/compiler/global/types.ml

43 lines
1.6 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
(* Heptagon *)
(* *)
(* Author : Marc Pouzet *)
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
(* *)
(**************************************************************************)
open Names
2010-07-05 16:55:14 +02:00
open Location
type ty = | Tprod of ty list | Tid of longname | Tarray of ty * static_exp
2010-07-05 16:55:14 +02:00
type static_exp = { se_desc: static_exp_desc; se_ty: ty; se_loc: location }
and static_exp_desc =
| Svar of name
| Sint of int
| Sfloat of float
| Sbool of bool
| Sconstructor of longname
| Stuple of static_exp list
| Sarray_power of static_exp * static_exp (** power : 0^n : [0,0,0,0,0,..] *)
| Sarray of static_exp list (** [ e1, e2, e3 ] *)
2010-07-06 09:15:20 +02:00
| Srecord of (longname * static_exp) list (** { f1 = e1; f2 = e2; ... } *)
| Sop of longname * static_exp list (** defined ops for now in pervasives *)
2010-06-16 17:03:45 +02:00
let invalid_type = Tprod []
2010-07-05 16:55:14 +02:00
let mk_static_exp ?(loc = no_location) ?(ty = invalid_type) =
{ se_desc = desc; se_ty = ty; se_loc = loc }
open Pp_tools
open Format
let rec print_type ff = function
| Tprod ty_list ->
fprintf ff "@[<hov2>%a@]" (print_list_r print_type "(" " *" ")") ty_list
| Tid id -> print_longname ff id
| Tarray (ty, n) ->
2010-06-30 17:20:56 +02:00
fprintf ff "@[<hov2>%a^%a@]" print_type ty print_static_exp n