heptagon/compiler/global/types.ml

54 lines
1.9 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
(* Heptagon *)
(* *)
(* Author : Marc Pouzet *)
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
(* *)
(**************************************************************************)
open Names
2010-07-08 17:41:00 +02:00
open Misc
2010-07-05 16:55:14 +02:00
open Location
2011-01-05 15:51:55 +01:00
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 constant_name
| Sint of int
| Sfloat of float
| Sbool of bool
| Sconstructor of constructor_name
| Sfield of field_name
| 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 ] *)
| Srecord of (field_name * static_exp) list (** { f1 = e1; f2 = e2; ... } *)
| Sop of fun_name * static_exp list (** defined ops for now in pervasives *)
2010-11-23 17:10:11 +01:00
and ty =
2011-01-20 23:05:18 +01:00
| Tprod of ty list (** Product type used for tuples *)
| Tid of type_name (** Usable type_name are alias or pervasives {bool,int,float} (see [Initial]) *)
2011-03-21 14:30:19 +01:00
| Tarray of ty * static_exp (** [base_type] * [size] *) (* TODO obc : array of prod ?? nonono *)
| Tmutable of ty (* TODO obc : do not hack it here *)
2010-11-23 17:10:11 +01:00
| Tunit
2010-07-07 12:15:02 +02:00
2011-01-20 23:05:18 +01:00
let invalid_type = Tprod [] (** Invalid type given to untyped expression etc. *)
let prod = function
2011-02-14 16:28:50 +01:00
| [] -> Tunit
| [ty] -> ty
| ty_list -> Tprod ty_list
2011-01-24 16:07:26 +01:00
let unprod = function
| Tprod l -> l
| t -> [t]
2010-08-24 17:24:22 +02:00
(** DO NOT use this after the typing, since it could give invalid_type *)
let mk_static_exp ?(loc = no_location) ?(ty = invalid_type) desc =
2010-07-05 16:55:14 +02:00
{ se_desc = desc; se_ty = ty; se_loc = loc }
2010-07-08 17:41:00 +02:00