Skip to content
Snippets Groups Projects
compiledData.ml 17.7 KiB
Newer Older
(** Time-stamp: <modified the 14/03/2008 (at 10:59) by Erwan Jahier> *)
Erwan Jahier's avatar
Erwan Jahier committed

(*----------------------------------------------------------------------
Erwan Jahier's avatar
Erwan Jahier committed
	date :
------------------------------------------------------------------------

	DESCRIPTION :

	Définition des structures de données utilisée pour la compil,
Erwan Jahier's avatar
Erwan Jahier committed
	plus des utilitaires pour les messages d'erreurs, de bug etc.
Erwan Jahier's avatar
Erwan Jahier committed
	N.B. on utilise beaucoup l'adjectif "effectif", qui signifie
	simplement "correct".

	REMARQUE GENERALE :

	D'une manière générale, la compil d'une entité syntaxique
	"toto" est implémentée par une fonction check_toto, qui
	prend en entrée (entr'autre) un toto et renvoie un
	toto_eff.

	TYPES DE DONNEES :

	- type_eff :
	dénotation de type effectif, implémente l'équivalence des types,
	construit à partir d'une type_exp.

	- const_eff :
	dénotation de constante effective,
	construit à partir d'une val_exp => IL S'AGIT DE LA REPRESENTATION
	INTERNE DES CONSTANTES STATIQUES 

Erwan Jahier's avatar
Erwan Jahier committed
	déclaration de variable,
	construit à partir de var_info.

	- val_eff :
	union entre const_eff et var_info_eff.
Erwan Jahier's avatar
Erwan Jahier committed

	- slice_info_eff :
Erwan Jahier's avatar
Erwan Jahier committed
	dénotation de tranche de tableau,
	construit à partir de slice_info.

	- left_eff :
	version compilée de left_part

Erwan Jahier's avatar
Erwan Jahier committed
	version compilée de eq_info 

Erwan Jahier's avatar
Erwan Jahier committed
	dénotation d'opération,
	peut être  predef ou utilisateur,
Erwan Jahier's avatar
Erwan Jahier committed
	construit à partir de node_exp.
Erwan Jahier's avatar
Erwan Jahier committed

	- static_arg_eff :
	déclaration d'un static arg

	- pack_env :
	la "grosse" structure de données qui gère la compilation
	des packages => implémentée dans CheckGlobal pour la partie type/const/function
	(initialisation) et dans CheckNode pour la partie node/template qui
Erwan Jahier's avatar
Erwan Jahier committed
	est faite à la demande.

	- local_env :
	structure qui gère l'environnement de compilation
	d'un noeud/template.

	TYPES FONCTIONNEL :

	- id_solver (en fait, une structure qui contient plusieurs fonctions,
	  une pour traiter les constantes, une pour traiter les types)

	UTILITAIRES :

	- type_of_const_eff : renvoie le type_eff d'une const_eff
	- string_of_type_eff : pretty-print d'un type_eff 
	- string_of_const_eff : pretty-print d'une const_eff 
	- string_of_node_key : pretty-print d'un node_key
Erwan Jahier's avatar
Erwan Jahier committed
	_ string_of_slice_eff :

----------------------------------------------------------------------*)

open Printf 
open Lxm
open SyntaxTree
Erwan Jahier's avatar
Erwan Jahier committed
open SyntaxTreeCore
Erwan Jahier's avatar
Erwan Jahier committed

(*---------------------------------------------------------------------
Type : id_solver
-----------------------------------------------------------------------
	Joue le rôle d'environnemnt : contient des fonctions
	pour résoudre les réferences aux idents.
	(voir par exemple EvalConst, EvalType)

N.B. On fournit les constructeurs des id_solver courants, voir :
Erwan Jahier's avatar
Erwan Jahier committed
----------------------------------------------------------------------*)
type id_solver = {
  id2const : Ident.idref -> Lxm.t -> const_eff;
  id2type  : Ident.idref -> Lxm.t -> type_eff;
  id2node  : Ident.idref -> static_arg_eff list -> Lxm.t -> node_exp_eff;
  id2var   : Ident.t -> Lxm.t -> var_info_eff;
  symbols  : SymbolTab.t;
Erwan Jahier's avatar
Erwan Jahier committed
}
Erwan Jahier's avatar
Erwan Jahier committed
(*---------------------------------------------------------------------
  Type : type_eff
  -----------------------------------------------------------------------
  Dénotation de type immédiat : l'équivalence sémantique des types
  EST l'équivalence structurelle des type_eff. 
  Par rapport à une type_exp :
  - pas d'alias
  - taille des tableaux résolues
  ----------------------------------------------------------------------*)
Erwan Jahier's avatar
Erwan Jahier committed
and type_eff =
  | Int_type_eff
  | Real_type_eff
  | External_type_eff of Ident.long
  | Enum_type_eff     of Ident.long * (Ident.long list)
  | Array_type_eff    of type_eff * int
  | Struct_type_eff   of Ident.long * (Ident.t * (type_eff * const_eff option)) list
      (*---------------------------------------------------------------------
	Type : slice_eff
	-----------------------------------------------------------------------
	Dénotation de tranche de tableau correcte :
Erwan Jahier's avatar
Erwan Jahier committed
	si A est le tableau d'entrée, alors S est le tableau
	de sortie avec :
	S[i] = A[first + i*step] pour i = 0 .. width
	----------------------------------------------------------------------*)
and slice_info_eff = {
  se_first : int;
  se_last : int;
  se_step : int;
  se_width : int (* ??? *)
Erwan Jahier's avatar
Erwan Jahier committed
}
Erwan Jahier's avatar
Erwan Jahier committed
(*---------------------------------------------------------------------
  Type : left_eff
  -----------------------------------------------------------------------
  Version checkée des left_part
  (les idents, les index et les tranches sont résolus)
Erwan Jahier's avatar
Erwan Jahier committed

  N.B. On conserve aussi le type effectif de chaque noeud
  bien qu'il soit possible de le retrouver. 
  (voir type_of_left_eff)
Erwan Jahier's avatar
Erwan Jahier committed

  N.B. On garde aussi l'info source des idents au cas ou.
  ----------------------------------------------------------------------*)
Erwan Jahier's avatar
Erwan Jahier committed
and left_eff =
  | LeftVarEff   of (var_info_eff * Lxm.t)
  | LeftFieldEff of (left_eff * Ident.t * type_eff)
  | LeftArrayEff of (left_eff * int * type_eff)
  | LeftSliceEff of (left_eff * slice_info_eff * type_eff)


and eq_info_eff = left_eff list * val_exp_eff

and val_exp_eff =
  | CallByPosEff  of (by_pos_op_eff srcflagged * operands_eff)
  | CallByNameEff of
      (by_name_op_eff srcflagged * (Ident.t srcflagged * val_exp_eff) list)

and operands_eff = OperEff of val_exp_eff list

and by_name_op_eff =
  | STRUCT_eff of Ident.idref
  | STRUCT_anonymous_eff


and by_pos_op_eff =
  | CALL_eff of node_exp_eff srcflagged
      (* XXX quid des operateur predef ? 

	 J'ai envie de les virer de la et de les mettre dans la table
	 des noeuds normaux via le fichier predef.

	 J'ai juste un doute pour la gestion de la surcharge...

	 bon, on verra plus tard.
      *)
  | PRE_eff

  | ICONST_eff of Ident.t
  | RCONST_eff of Ident.t
  | IDENT_eff  of Ident.idref

  | TRUE_eff
  | FALSE_eff
  | NOT_eff
  | CURRENT_eff
  | REAL2INT_eff
  | INT2REAL_eff
  | AND_eff
  | OR_eff
  | XOR_eff
  | IMPL_eff
  | EQ_eff
  | NEQ_eff
  | LT_eff
  | LTE_eff
  | GT_eff
  | GTE_eff
  | DIV_eff
  | MOD_eff
  | IF_eff
  | NOR_eff
  | DIESE_eff 
      
  | UMINUS_eff
  | MINUS_eff
  | PLUS_eff
  | SLASH_eff
  | TIMES_eff
  | POWER_eff 

  | ARROW_eff
  | FBY_eff
  | WHEN_eff
  | HAT_eff
  | CONCAT_eff
  | TUPLE_eff
  | ARRAY_eff
  | WITH_eff

  | ARRAY_ACCES_eff of val_exp_eff
  | ARRAY_SLICE_eff of slice_info_eff
  | STRUCT_ACCESS_eff of Ident.t
  | MERGE_eff         of (Ident.t * (Ident.t list))  
  | ITERATOR_eff      of (Ident.t * Ident.t * val_exp_eff)
   

Erwan Jahier's avatar
Erwan Jahier committed
(*---------------------------------------------------------------------
  Type : const_eff
  -----------------------------------------------------------------------
  Dénotation de constante immédiate
  N.B. les const_eff "portent" leur type :
  - il est implicite pour bool, int, real, 
  - explicite pour extern, enum et struct
  - pour array c'est le TYPE DES ELEMENTS QU'ON TRIMBALE 
  VOIR => type_of_const_eff
  ----------------------------------------------------------------------*)
Erwan Jahier's avatar
Erwan Jahier committed
and const_eff =
    Bool_const_eff of bool
  | Int_const_eff of int
  | Real_const_eff of float
      (* type atomique non predef : on précise le type *)
  | Extern_const_eff of (Ident.long * type_eff)
  | Enum_const_eff   of (Ident.long * type_eff)
      (* type structure : liste (champ,valeur) + type structure *)
  | Struct_const_eff of ((Ident.t * const_eff) list * type_eff)
      (* type tableau : liste des valeurs + type des elts + taille *)
  | Array_const_eff of (const_eff array * type_eff)
      (*---------------------------------------------------------------------
	Type: val_eff	
	-----------------------------------------------------------------------
Erwan Jahier's avatar
Erwan Jahier committed
	Une constante ou une variable
	=> item de la table des symboles de valeurs
	----------------------------------------------------------------------*)
Erwan Jahier's avatar
Erwan Jahier committed
and val_eff =
      (*---------------------------------------------------------------------
	Type: var_info_eff	
	-----------------------------------------------------------------------
Erwan Jahier's avatar
Erwan Jahier committed
	Info associée à un ident de variable
	----------------------------------------------------------------------*)
      (* ICI à completer/modifier sans doute *)
and var_info_eff = {
  var_name_eff   : Ident.t ;
  var_nature_eff : var_nature ;
  var_type_eff   : type_eff ;
  (*   var_clock_eff  : clock_eff	 *)
Erwan Jahier's avatar
Erwan Jahier committed
}
and clock_eff = (* XXX generalize me!*)
Erwan Jahier's avatar
Erwan Jahier committed

(**********************************************************************************)
(** [node_exp_eff] correspond à une instance de template (ou, cas
    limite, de noeud sans param statique).

    La clé est un couple ident/liste d'arguments statiques effectifs

    N.B. une horloge formelle est soit None (base) soit l'index d'une
    entrée (0..nb entrées-1). Les formal-clocks sont crées au cours du
    type-checking (et pas du clock-checking)
*)
  node_key_eff : node_key ;
  inlist_eff   : type_eff list ;
  outlist_eff  : type_eff list ;
  loclist_eff  : type_eff list option; (* extern and abstract do not have local vars *)
  clock_inlist_eff  : int option list ;
  clock_outlist_eff : int option list ;
  def_eff      : node_def_eff;
  has_mem_eff  : bool;
  is_safe_eff  : bool;
Erwan Jahier's avatar
Erwan Jahier committed
}
and node_def_eff =
  | ExternEff
  | AbstractEff
  | BodyEff of node_body_eff

and node_body_eff = {
  asserts_eff : (val_eff srcflagged) list;
  eqs_eff     : (eq_info_eff srcflagged) list;
}

(* key used  for type, constant, and clock tables *)
Erwan Jahier's avatar
Erwan Jahier committed
and node_key = item_key * static_arg_eff list
and static_arg_eff =
Erwan Jahier's avatar
Erwan Jahier committed
  | ConstStaticArgEff of (Ident.t * const_eff)
  | TypeStaticArgEff  of (Ident.t * type_eff)
  | NodeStaticArgEff  of (Ident.t * node_exp_eff)

(****************************************************************************)
Erwan Jahier's avatar
Erwan Jahier committed

   Au cours du check, on conserve le statut des idents :
   
   - Checking => en cours de traitement, permet de lever les récursions
   - Checked  => traité et correct
   - Incorrect => déjà marqué comme incorrect (pas besoin d'un nouveau
Erwan Jahier's avatar
Erwan Jahier committed
   message d'erreur)
Erwan Jahier's avatar
Erwan Jahier committed

let (profile_of_node_exp_eff : node_exp_eff -> type_eff list * type_eff list) =
  fun ne -> 
    (ne.inlist_eff, ne.outlist_eff)

(****************************************************************************)
(* currently not used *)


(* type world_env = { *)
(*   wenv_src : SyntaxTree.pack_or_model list; *)
(*   wenv_mod_srcs : (Ident.t, SyntaxTree.model_info srcflagged) Hashtbl.t ; *)
(*   wenv_pack_srcs :  (Ident.t, SyntaxTree.pack_info srcflagged) Hashtbl.t ; *)
(*   wenv_pack_envs : (Ident.t, pack_env) Hashtbl.t ; *)
(* } *)
(* and pack_env = { *)
(*   penv_world : world_env ; *)
(*   (* penv_src : SyntaxTree.package ; *) *)
(*   penv_type_table  : (Ident.t, type_eff check_flag)   Hashtbl.t ; *)
(*   penv_const_table : (Ident.t, const_eff check_flag)  Hashtbl.t ; *)
(*   penv_oper_table  : (Ident.t, node_half_eff) Hashtbl.t ; *)
(*   penv_node_table : (node_key, node_exp_eff check_flag) Hashtbl.t *)
(* } *)

(* the local tables are indexed by Ident.t, because local idents (var,const, flow)
   cannot have any package name. 

   and for nodes, the only possibility to have an entry in this table is via the
   static parameters. But for the time being, we cannot have parametrised nodes
   in argument of parametric node (can we?)
   
   i.e.  
        min_4 = min_n<< 4, toto<<2>> >> ;

   is not allowed (I think). One has to to something like:

      toto_2 = toto<<2>>;
      min_4 = min_n<< 4, toto_2 >> ;

   It would not be difficult to handle that here though.
*)
type local_env = {
  lenv_node_key : node_key ;
(*   lenv_globals : pack_env ; *)
  lenv_types : (Ident.t, type_eff) Hashtbl.t ;
  lenv_const : (Ident.t, const_eff) Hashtbl.t ; 
  lenv_nodes : (Ident.t, node_exp_eff) Hashtbl.t ; 

  lenv_vars  : (Ident.t, var_info_eff) Hashtbl.t ; 
Erwan Jahier's avatar
Erwan Jahier committed
}


let (lookup_type: local_env -> Ident.idref -> Lxm.t -> type_eff) = 
  fun env id lxm -> 
    Hashtbl.find env.lenv_types (Ident.name_of_idref id)

let (lookup_node: local_env -> Ident.idref -> static_arg_eff list -> Lxm.t -> 
  fun env id sargs lmx -> Hashtbl.find env.lenv_nodes (Ident.name_of_idref id)
    
let (lookup_const: local_env -> Ident.idref -> Lxm.t -> const_eff) = 
  fun env id lmx ->  
    Hashtbl.find env.lenv_const (Ident.name_of_idref id) 
	  
let (lookup_var: local_env -> Ident.t -> Lxm.t -> var_info_eff) = 
  fun env id lmx ->  
    Hashtbl.find env.lenv_vars id

	  
let (make_local_env : node_key -> local_env) =
  fun nk ->
    let res =
      {
	lenv_node_key = nk;
	lenv_types = Hashtbl.create 0;
	lenv_const = Hashtbl.create 0;
	lenv_nodes = Hashtbl.create 0;
	lenv_vars  = Hashtbl.create 0;
      (* fill tables using static arg info *)
	   | ConstStaticArgEff(id,ce) -> Hashtbl.add res.lenv_const id ce
	   | TypeStaticArgEff(id,te)  -> Hashtbl.add res.lenv_types id te
	   | NodeStaticArgEff(id, ne) -> Hashtbl.add res.lenv_nodes id ne
	)
	(snd nk);
      res

(****************************************************************************)
Erwan Jahier's avatar
Erwan Jahier committed
(* Utilitaires liés aux node_key *)
let (make_simple_node_key : Ident.long -> node_key) =
  fun nkey -> (nkey, [])
let (type_of_const_eff: const_eff -> type_eff) =
  function
    | Bool_const_eff v -> Bool_type_eff
    | Int_const_eff  v -> Int_type_eff
    | Real_const_eff v -> Real_type_eff 
    | Extern_const_eff (s,  teff) -> teff
    | Enum_const_eff   (s,  teff) -> teff
    | Struct_const_eff (fl, teff) -> teff
    | Array_const_eff  (ct, teff) -> Array_type_eff (teff, Array.length ct)
	
Erwan Jahier's avatar
Erwan Jahier committed

let (type_eff_of_left_eff: left_eff -> type_eff) =
  function
    | LeftVarEff (vi_eff,lxm)   -> vi_eff.var_type_eff 
    | LeftFieldEff(_, _, t_eff) -> t_eff 
    | LeftArrayEff(_, _, t_eff) -> t_eff
    | LeftSliceEff(_, _, t_eff) -> t_eff 
Erwan Jahier's avatar
Erwan Jahier committed


let rec string_of_const_eff = (
  function
      Bool_const_eff true -> "true"
    | Bool_const_eff false -> "false"
    | Int_const_eff i -> sprintf "%d" i
    | Real_const_eff r -> sprintf "%f" r
    | Extern_const_eff (s,t) -> (Ident.string_of_long s)
    | Enum_const_eff   (s,t) -> (Ident.string_of_long s)
    | Struct_const_eff (fl, t) -> (
	let string_of_field = 
	  function (id, veff) -> 
	    (Ident.to_string id)^" = "^(string_of_const_eff veff)
	in
	let flst = List.map string_of_field fl in
	  (string_of_type_eff t)^"{"^(String.concat "; " flst)^"}"
      )
    | Array_const_eff (ctab, t) -> (
	let vl = Array.to_list(Array.map string_of_const_eff ctab) in
	  "["^(String.concat ", " vl)^"]"
      )
Erwan Jahier's avatar
Erwan Jahier committed
)

Erwan Jahier's avatar
Erwan Jahier committed
and string_of_type_eff = function
    Bool_type_eff -> "bool"
  | Int_type_eff  -> "int"
  | Real_type_eff -> "real"
  | External_type_eff i -> Ident.string_of_long i
  | Enum_type_eff (i, sl) -> 
      assert (sl <>[]);
      let f sep acc s  = acc ^ sep ^ (Ident.string_of_long s) in
	(List.fold_left (f ", ")  (f "" "enum {" (List.hd sl)) (List.tl sl)) ^ "}"
  | Array_type_eff (ty, sz) -> sprintf "%s^%d" (string_of_type_eff ty) sz
  | Struct_type_eff (i, fl) -> 
      assert (fl <>[]);
      let f sep acc (id, (type_eff, const_eff_opt))  = 
Erwan Jahier's avatar
Erwan Jahier committed
	acc ^ sep ^ (Ident.to_string id) ^ " : " ^
	  (string_of_type_eff type_eff) ^
	  match const_eff_opt with
	      None -> ""
	    | Some ce -> " (" ^ (string_of_const_eff ce) ^ ")"
      in
	(List.fold_left (f "; ")  (f "" " {" (List.hd fl)) (List.tl fl)) ^ "}"
	
and string_of_type_eff_list = function
    []  -> ""
  | [x] -> (string_of_type_eff x)
  | l   -> (String.concat " * " (List.map string_of_type_eff l)
)


Erwan Jahier's avatar
Erwan Jahier committed
let rec string_of_node_key (nkey: node_key) = (
  let arg2string (sa : static_arg_eff) =
    match sa with
      | ConstStaticArgEff (id, ceff) -> sprintf "const %s" (string_of_const_eff ceff)
      | TypeStaticArgEff  (id, teff) -> sprintf "type %s" (string_of_type_eff teff)
      | NodeStaticArgEff  (id, opeff) ->
	  sprintf "node %s" (string_of_node_key opeff.node_key_eff)
      | (ik, []) -> Ident.string_of_long ik
      | (ik, salst) ->
	  let astrings = List.map arg2string salst in
	    sprintf "%s<<%s>>" (Ident.string_of_long ik) (String.concat ", " astrings)
Erwan Jahier's avatar
Erwan Jahier committed
)

let (string_of_var_info_eff: var_info_eff -> string) =
  fun x -> 
    (Ident.to_string x.var_name_eff) ^ ":"^(string_of_type_eff x.var_type_eff)
(*     ^ (string_of_var_noture x.var_nature_eff) *)
let (string_of_node_exp_eff: node_exp_eff -> string) =
    (string_of_node_key neff.node_key_eff) ^ 
      (String.concat ", " (List.map string_of_type_eff neff.inlist_eff)) ^
      (String.concat ", " (List.map string_of_type_eff neff.outlist_eff)) ^
      ") on clock XXX" ^
(*       (if neff.body_eff = None then "<abstract or extern>" else "< ... a body ...>" ) ^ *)
      "\n"

Erwan Jahier's avatar
Erwan Jahier committed
let string_of_clock (ck : clock_eff) = (
Erwan Jahier's avatar
Erwan Jahier committed
  match ck with
Erwan Jahier's avatar
Erwan Jahier committed
      BaseClockEff -> "<base>"
   |  VarClockEff veff -> (Ident.to_string veff.var_name_eff)
Erwan Jahier's avatar
Erwan Jahier committed
)


(*---------------------------------------------------------------------
Une erreur associée à un noeud + 1 lexeme dans le fichier source
----------------------------------------------------------------------*)
exception Compile_node_error of node_key * Lxm.t * string
exception Global_node_error of node_key * string

(*---------------------------------------------------------------------
Formatage standard des erreurs de compil
----------------------------------------------------------------------*)
let node_error_string nkey = (
   Printf.sprintf "While checking %s" (string_of_node_key nkey)
)

(*---------------------------------------------------------------------
Message d'erreur (associé à un lexeme) sur stderr
----------------------------------------------------------------------*)
let print_compile_node_error nkey lxm msg = (
   Printf.eprintf "%s\n" (node_error_string nkey);
Erwan Jahier's avatar
Erwan Jahier committed
  Errors.print_compile_error lxm msg ;
Erwan Jahier's avatar
Erwan Jahier committed
   flush stderr
)

let print_global_node_error nkey msg = (
   Printf.eprintf "%s\n" (node_error_string nkey);
Erwan Jahier's avatar
Erwan Jahier committed
  Errors.print_global_error msg ;
Erwan Jahier's avatar
Erwan Jahier committed
   flush stderr
)