2010-06-15 10:49:03 +02:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Heptagon *)
|
|
|
|
(* *)
|
|
|
|
(* Author : Marc Pouzet *)
|
|
|
|
(* Organization : Demons, LRI, University of Paris-Sud, Orsay *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
(* Object code internal representation *)
|
|
|
|
|
2011-04-12 14:07:05 +02:00
|
|
|
(** See the manual for the semantics of the language *)
|
2011-03-08 13:41:28 +01:00
|
|
|
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
open Misc
|
|
|
|
open Names
|
2010-07-23 19:45:19 +02:00
|
|
|
open Idents
|
2010-07-07 11:17:18 +02:00
|
|
|
open Types
|
2010-07-13 14:03:39 +02:00
|
|
|
open Signature
|
2010-07-08 17:17:00 +02:00
|
|
|
open Location
|
2010-07-07 15:11:32 +02:00
|
|
|
|
2010-09-13 09:03:15 +02:00
|
|
|
type class_name = qualname
|
2010-09-09 00:35:06 +02:00
|
|
|
type op_name = qualname
|
2011-01-20 23:05:18 +01:00
|
|
|
type obj_ident = var_ident
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
type type_dec =
|
2011-01-20 23:05:18 +01:00
|
|
|
{ t_name : type_name;
|
2010-07-07 15:11:32 +02:00
|
|
|
t_desc : tdesc;
|
2010-07-08 17:17:00 +02:00
|
|
|
t_loc : location }
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
and tdesc =
|
2010-06-26 16:53:25 +02:00
|
|
|
| Type_abs
|
2010-07-26 17:41:52 +02:00
|
|
|
| Type_alias of ty
|
2010-09-13 13:44:26 +02:00
|
|
|
| Type_enum of constructor_name list
|
2010-07-13 14:03:39 +02:00
|
|
|
| Type_struct of structure
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2010-07-08 17:17:00 +02:00
|
|
|
type const_dec = {
|
2010-09-13 09:03:15 +02:00
|
|
|
c_name : qualname;
|
2010-07-08 17:17:00 +02:00
|
|
|
c_value : static_exp;
|
2010-07-13 14:03:39 +02:00
|
|
|
c_type : ty;
|
2010-07-08 17:17:00 +02:00
|
|
|
c_loc : location }
|
|
|
|
|
2010-11-05 15:36:11 +01:00
|
|
|
type pattern = { pat_desc : pat_desc; pat_ty : ty; pat_loc : location }
|
2010-07-07 11:17:18 +02:00
|
|
|
|
2010-11-05 15:36:11 +01:00
|
|
|
and pat_desc =
|
2010-07-07 15:11:32 +02:00
|
|
|
| Lvar of var_ident
|
|
|
|
| Lmem of var_ident
|
2010-11-05 15:36:11 +01:00
|
|
|
| Lfield of pattern * field_name
|
|
|
|
| Larray of pattern * exp
|
2010-07-07 11:17:18 +02:00
|
|
|
|
2010-07-08 17:17:00 +02:00
|
|
|
and exp = { e_desc : exp_desc; e_ty : ty; e_loc : location }
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2010-07-07 11:17:18 +02:00
|
|
|
and exp_desc =
|
2011-01-24 16:07:26 +01:00
|
|
|
| Epattern of pattern
|
2010-07-07 11:17:18 +02:00
|
|
|
| Econst of static_exp
|
|
|
|
| Eop of op_name * exp list
|
|
|
|
| Estruct of type_name * (field_name * exp) list
|
|
|
|
| Earray of exp list
|
2010-06-16 11:32:13 +02:00
|
|
|
|
2010-11-05 15:36:11 +01:00
|
|
|
type obj_ref =
|
2011-01-20 23:05:18 +01:00
|
|
|
| Oobj of obj_ident
|
|
|
|
| Oarray of obj_ident * pattern
|
2010-07-07 11:17:18 +02:00
|
|
|
|
|
|
|
type method_name =
|
|
|
|
| Mreset
|
|
|
|
| Mstep
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
type act =
|
2010-11-05 15:36:11 +01:00
|
|
|
| Aassgn of pattern * exp
|
2011-04-28 15:20:21 +02:00
|
|
|
| Aop of op_name * exp list
|
2010-11-05 15:36:11 +01:00
|
|
|
| Acall of pattern list * obj_ref * method_name * exp list
|
2010-07-07 15:11:32 +02:00
|
|
|
| Acase of exp * (constructor_name * block) list
|
2011-04-18 15:38:42 +02:00
|
|
|
| Afor of var_dec * exp * exp * block
|
2011-03-08 13:41:28 +01:00
|
|
|
| Ablock of block
|
2010-07-07 11:17:18 +02:00
|
|
|
|
2010-07-22 09:36:22 +02:00
|
|
|
and block =
|
|
|
|
{ b_locals : var_dec list;
|
|
|
|
b_body : act list }
|
2010-06-15 10:49:03 +02:00
|
|
|
|
2010-07-22 09:36:22 +02:00
|
|
|
and var_dec =
|
2010-07-07 15:11:32 +02:00
|
|
|
{ v_ident : var_ident;
|
2011-02-07 14:24:17 +01:00
|
|
|
v_type : ty;
|
2011-04-12 14:07:05 +02:00
|
|
|
v_mutable : bool;
|
2010-07-08 17:17:00 +02:00
|
|
|
v_loc : location }
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
type obj_dec =
|
2011-01-20 23:05:18 +01:00
|
|
|
{ o_ident : obj_ident;
|
|
|
|
o_class : class_name;
|
2010-07-22 09:44:57 +02:00
|
|
|
o_params : static_exp list;
|
2011-04-12 14:07:05 +02:00
|
|
|
(** size of the array if the declaration is an array of obj *)
|
|
|
|
o_size : static_exp option;
|
2010-07-08 17:17:00 +02:00
|
|
|
o_loc : location }
|
2010-07-07 09:44:23 +02:00
|
|
|
|
|
|
|
type method_def =
|
2010-07-09 09:31:12 +02:00
|
|
|
{ m_name : method_name;
|
2010-07-08 17:17:00 +02:00
|
|
|
m_inputs : var_dec list;
|
|
|
|
m_outputs : var_dec list;
|
2010-07-21 15:53:50 +02:00
|
|
|
m_body : block; }
|
2010-07-07 09:44:23 +02:00
|
|
|
|
|
|
|
type class_def =
|
2010-07-08 17:17:00 +02:00
|
|
|
{ cd_name : class_name;
|
2011-04-12 14:07:05 +02:00
|
|
|
(** when false, the class is a function with static parameters
|
|
|
|
calling other functions with parameters *)
|
|
|
|
cd_stateful : bool;
|
2010-07-08 17:17:00 +02:00
|
|
|
cd_mems : var_dec list;
|
|
|
|
cd_objs : obj_dec list;
|
2010-07-15 11:31:32 +02:00
|
|
|
cd_params : param list;
|
2010-07-08 17:17:00 +02:00
|
|
|
cd_methods: method_def list;
|
|
|
|
cd_loc : location }
|
2010-07-07 09:44:23 +02:00
|
|
|
|
2011-03-21 14:30:19 +01:00
|
|
|
|
2010-07-07 09:44:23 +02:00
|
|
|
type program =
|
2011-02-07 14:24:17 +01:00
|
|
|
{ p_modname : modul;
|
2011-04-18 19:20:03 +02:00
|
|
|
p_opened : modul list;
|
|
|
|
p_desc : program_desc list }
|
|
|
|
|
|
|
|
and program_desc =
|
2011-04-19 18:45:56 +02:00
|
|
|
| Pclass of class_def
|
|
|
|
| Pconst of const_dec
|
|
|
|
| Ptype of type_dec
|
2010-06-15 10:49:03 +02:00
|
|
|
|