Project

General

Profile

Download (13.2 KB) Statistics
| Branch: | Tag: | Revision:
1
(* ----------------------------------------------------------------------------
2
 * SchedMCore - A MultiCore Scheduling Framework
3
 * Copyright (C) 2009-2011, ONERA, Toulouse, FRANCE - LIFL, Lille, FRANCE
4
 *
5
 * This file is part of Prelude
6
 *
7
 * Prelude is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public License
9
 * as published by the Free Software Foundation ; either version 2 of
10
 * the License, or (at your option) any later version.
11
 *
12
 * Prelude is distributed in the hope that it will be useful, but
13
 * WITHOUT ANY WARRANTY ; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this program ; if not, write to the Free Software
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20
 * USA
21
 *---------------------------------------------------------------------------- *)
22
open Corelang
23
open LustreSpec
24
open Format
25
open Utils
26

    
27
(* Prints [v] as [pp_fun] would do, but adds a backslash at each end of line,
28
   following the C convention for multiple lines macro *)
29
let pp_as_c_macro pp_fun fmt v =
30
  let (out, flush, newline, spaces) = pp_get_all_formatter_output_functions fmt () in
31
  let macro_newline () = (out "\\" 0 1; newline ()) in
32
  begin
33
    pp_set_all_formatter_output_functions fmt out flush macro_newline spaces;
34
    pp_fun fmt v;
35
    pp_set_all_formatter_output_functions fmt out flush newline spaces;
36
  end
37

    
38

    
39
let pp_var_name fmt id = fprintf fmt "%s" id.var_id
40

    
41
let pp_eq_lhs = fprintf_list ~sep:", " pp_print_string
42

    
43
let rec pp_const fmt c = 
44
  match c with
45
    | Const_int i -> pp_print_int fmt i
46
    | Const_real r -> pp_print_string fmt r
47
    | Const_float r -> pp_print_float fmt r
48
    | Const_tag  t -> pp_print_string fmt t
49
    | Const_array ca -> Format.fprintf fmt "[%a]" (Utils.fprintf_list ~sep:"," pp_const) ca
50

    
51
and pp_var fmt id = fprintf fmt "%s%s: %a" (if id.var_dec_const then "const " else "") id.var_id Types.print_ty id.var_type
52

    
53
and pp_node_var fmt id = fprintf fmt "%s%s: %a%a" (if id.var_dec_const then "const " else "") id.var_id Types.print_node_ty id.var_type Clocks.print_ck_suffix id.var_clock
54

    
55
and pp_expr fmt expr =
56
  match expr.expr_desc with
57
    | Expr_const c -> pp_const fmt c
58
    | Expr_ident id -> Format.fprintf fmt "%s" id
59
(*    | Expr_cst_array (c, e) -> fprintf fmt "%a^%a" pp_expr e pp_const c *)
60
    | Expr_array a -> fprintf fmt "[%a]" pp_tuple a
61
    | Expr_access (a, d) -> fprintf fmt "%a[%a]" pp_expr a Dimension.pp_dimension d
62
    | Expr_power (a, d) -> fprintf fmt "(%a^%a)" pp_expr a Dimension.pp_dimension d
63
    | Expr_tuple el -> fprintf fmt "(%a)" pp_tuple el
64
    | Expr_ite (c, t, e) -> fprintf fmt "(if %a then %a else %a)" pp_expr c pp_expr t pp_expr e
65
    | Expr_arrow (e1, e2) -> fprintf fmt "(%a -> %a)" pp_expr e1 pp_expr e2
66
    | Expr_fby (e1, e2) -> fprintf fmt "%a fby %a" pp_expr e1 pp_expr e2
67
    | Expr_pre e -> fprintf fmt "pre %a" pp_expr e
68
    | Expr_when (e, id, l) -> fprintf fmt "%a when %s(%s)" pp_expr e l id
69
    | Expr_merge (id, hl) -> 
70
      fprintf fmt "merge %s %a" id pp_handlers hl
71
    | Expr_appl (id, e, r) -> pp_app fmt id e r
72
    | Expr_uclock _
73
    | Expr_dclock _
74
    | Expr_phclock _ -> assert false
75

    
76
and pp_tuple fmt el =
77
 fprintf_list ~sep:"," pp_expr fmt el
78

    
79
and pp_handler fmt (t, h) =
80
 fprintf fmt "(%s -> %a)" t pp_expr h
81

    
82
and pp_handlers fmt hl =
83
 fprintf_list ~sep:" " pp_handler fmt hl
84

    
85
and pp_app fmt id e r =
86
  match r with
87
  | None ->
88
    (match id, e.expr_desc with
89
    | "+", Expr_tuple([e1;e2]) -> fprintf fmt "(%a + %a)" pp_expr e1 pp_expr e2
90
    | "uminus", _ -> fprintf fmt "(- %a)" pp_expr e
91
    | "-", Expr_tuple([e1;e2]) -> fprintf fmt "(%a - %a)" pp_expr e1 pp_expr e2
92
    | "*", Expr_tuple([e1;e2]) -> fprintf fmt "(%a * %a)" pp_expr e1 pp_expr e2
93
    | "/", Expr_tuple([e1;e2]) -> fprintf fmt "(%a / %a)" pp_expr e1 pp_expr e2
94
    | "mod", Expr_tuple([e1;e2]) -> fprintf fmt "(%a mod %a)" pp_expr e1 pp_expr e2
95
    | "&&", Expr_tuple([e1;e2]) -> fprintf fmt "(%a and %a)" pp_expr e1 pp_expr e2
96
    | "||", Expr_tuple([e1;e2]) -> fprintf fmt "(%a or %a)" pp_expr e1 pp_expr e2
97
    | "xor", Expr_tuple([e1;e2]) -> fprintf fmt "(%a xor %a)" pp_expr e1 pp_expr e2
98
    | "impl", Expr_tuple([e1;e2]) -> fprintf fmt "(%a => %a)" pp_expr e1 pp_expr e2
99
    | "<", Expr_tuple([e1;e2]) -> fprintf fmt "(%a < %a)" pp_expr e1 pp_expr e2
100
    | "<=", Expr_tuple([e1;e2]) -> fprintf fmt "(%a <= %a)" pp_expr e1 pp_expr e2
101
    | ">", Expr_tuple([e1;e2]) -> fprintf fmt "(%a > %a)" pp_expr e1 pp_expr e2
102
    | ">=", Expr_tuple([e1;e2]) -> fprintf fmt "(%a >= %a)" pp_expr e1 pp_expr e2
103
    | "!=", Expr_tuple([e1;e2]) -> fprintf fmt "(%a != %a)" pp_expr e1 pp_expr e2
104
    | "=", Expr_tuple([e1;e2]) -> fprintf fmt "(%a = %a)" pp_expr e1 pp_expr e2
105
    | "not", _ -> fprintf fmt "(not %a)" pp_expr e
106
    | _, Expr_tuple _ -> fprintf fmt "%s %a" id pp_expr e
107
    | _ -> fprintf fmt "%s (%a)" id pp_expr e
108
)
109
  | Some (x, l) -> fprintf fmt "%s (%a) every %s(%s)" id pp_expr e l x 
110
	
111
let pp_node_eq fmt eq = 
112
  fprintf fmt "%a = %a;" 
113
    pp_eq_lhs eq.eq_lhs
114
    pp_expr eq.eq_rhs
115

    
116
let pp_node_eqs = fprintf_list ~sep:"@ " pp_node_eq 
117

    
118
let pp_node_args = fprintf_list ~sep:"; " pp_node_var 
119

    
120
let pp_var_type_dec fmt ty =
121
  let rec pp_var_struct_type_field fmt (label, tdesc) =
122
    fprintf fmt "%a : %a" pp_var_type_dec_desc tdesc pp_print_string label
123
  and pp_var_type_dec_desc fmt tdesc =
124
  match tdesc with 
125
    | Tydec_any -> fprintf fmt "<any>"
126
    | Tydec_int -> fprintf fmt "int"
127
    | Tydec_real -> fprintf fmt "real"
128
    | Tydec_float -> fprintf fmt "float"
129
    | Tydec_bool -> fprintf fmt "bool"
130
    | Tydec_clock t -> fprintf fmt "%a clock" pp_var_type_dec_desc t
131
    | Tydec_const t -> fprintf fmt "%s" t
132
    | Tydec_enum id_list -> fprintf fmt "enum {%a }" (fprintf_list ~sep:", " pp_print_string) id_list
133
    | Tydec_struct f_list -> fprintf fmt "struct {%a }" (fprintf_list ~sep:"; " pp_var_struct_type_field) f_list
134
    | Tydec_array (s, t) -> fprintf fmt "%a^%a" pp_var_type_dec_desc t Dimension.pp_dimension s
135
in pp_var_type_dec_desc fmt ty.ty_dec_desc
136

    
137
(* let rec pp_var_type fmt ty =  *)
138
(*   fprintf fmt "%a" (match ty.tdesc with  *)
139
(*     | Tvar | Tarrow | Tlink | Tunivar -> assert false *)
140
(*     | Tint -> pp_print_string fmt "int" *)
141
(*     | Treal -> pp_print_string fmt "real" *)
142
(*     | Tbool -> pp_print_string fmt "bool" *)
143
(*     | Trat -> pp_print_string fmt "rat" *)
144
(*     | Tclock -> pp_print_string fmt "clock"  *)
145
(*     | Ttuple tel -> fprintf_list ~sep:" * " pp_var_type fmt tel *)
146
(*   ) *)
147

    
148

    
149
let pp_econst fmt c = 
150
  match c with
151
    | EConst_int i -> pp_print_int fmt i
152
    | EConst_real r -> pp_print_string fmt r
153
    | EConst_float r -> pp_print_float fmt r
154
    | EConst_bool b -> pp_print_bool fmt b
155
    | EConst_string s -> pp_print_string fmt ("\"" ^ s ^ "\"")
156

    
157
let rec pp_eexpr fmt eexpr = 
158
  match eexpr.eexpr_desc with
159
    | EExpr_const c -> pp_econst fmt c
160
    | EExpr_ident id -> pp_print_string fmt id
161
    | EExpr_tuple el -> fprintf_list ~sep:"," pp_eexpr fmt el
162
    | EExpr_arrow (e1, e2) -> fprintf fmt "%a -> %a" pp_eexpr e1 pp_eexpr e2
163
    | EExpr_fby (e1, e2) -> fprintf fmt "%a fby %a" pp_eexpr e1 pp_eexpr e2
164
    (* | EExpr_concat (e1, e2) -> fprintf fmt "%a::%a" pp_eexpr e1 pp_eexpr e2 *)
165
    (* | EExpr_tail e -> fprintf fmt "tail %a" pp_eexpr e *)
166
    | EExpr_pre e -> fprintf fmt "pre %a" pp_eexpr e
167
    | EExpr_when (e, id) -> fprintf fmt "%a when %s" pp_eexpr e id
168
    | EExpr_merge (id, e1, e2) -> 
169
      fprintf fmt "merge (%s, %a, %a)" id pp_eexpr e1 pp_eexpr e2
170
    | EExpr_appl (id, e, r) -> pp_eapp fmt id e r
171
    | EExpr_forall (vars, e) -> fprintf fmt "forall %a; %a" pp_node_args vars pp_eexpr e 
172
    | EExpr_exists (vars, e) -> fprintf fmt "exists %a; %a" pp_node_args vars pp_eexpr e 
173

    
174

    
175
    (* | EExpr_whennot _ *)
176
    (* | EExpr_uclock _ *)
177
    (* | EExpr_dclock _ *)
178
    (* | EExpr_phclock _ -> assert false *)
179
and pp_eapp fmt id e r =
180
  match r with
181
  | None ->
182
    (match id, e.eexpr_desc with
183
    | "+", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a + %a)" pp_eexpr e1 pp_eexpr e2
184
    | "uminus", _ -> fprintf fmt "(- %a)" pp_eexpr e
185
    | "-", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a - %a)" pp_eexpr e1 pp_eexpr e2
186
    | "*", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a * %a)" pp_eexpr e1 pp_eexpr e2
187
    | "/", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a / %a)" pp_eexpr e1 pp_eexpr e2
188
    | "mod", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a mod %a)" pp_eexpr e1 pp_eexpr e2
189
    | "&&", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a && %a)" pp_eexpr e1 pp_eexpr e2
190
    | "||", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a || %a)" pp_eexpr e1 pp_eexpr e2
191
    | "xor", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a ^^ %a)" pp_eexpr e1 pp_eexpr e2
192
    | "impl", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a ==> %a)" pp_eexpr e1 pp_eexpr e2
193
    | "<", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a < %a)" pp_eexpr e1 pp_eexpr e2
194
    | "<=", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a <= %a)" pp_eexpr e1 pp_eexpr e2
195
    | ">", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a > %a)" pp_eexpr e1 pp_eexpr e2
196
    | ">=", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a >= %a)" pp_eexpr e1 pp_eexpr e2
197
    | "!=", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a != %a)" pp_eexpr e1 pp_eexpr e2
198
    | "=", EExpr_tuple([e1;e2]) -> fprintf fmt "(%a == %a)" pp_eexpr e1 pp_eexpr e2
199
    | "not", _ -> fprintf fmt "(! %a)" pp_eexpr e
200
    | "ite", EExpr_tuple([e1;e2;e3]) -> fprintf fmt "(if %a then %a else %a)" pp_eexpr e1 pp_eexpr e2 pp_eexpr e3
201
    | _ -> fprintf fmt "%s (%a)" id pp_eexpr e)
202
  | Some x -> fprintf fmt "%s (%a) every %s" id pp_eexpr e x 
203

    
204
  
205
let pp_ensures fmt e =
206
  match e with
207
    | EnsuresExpr e -> fprintf fmt "ensures %a;@ " pp_eexpr e
208
    | SpecObserverNode (name, args) -> fprintf fmt "observer %s (%a);@ " name (fprintf_list ~sep:", " pp_eexpr) args
209
 
210
let pp_spec fmt spec =
211
  fprintf fmt "@[<hov 2>(*@@ ";
212
  fprintf_list ~sep:"" (fun fmt r -> fprintf fmt "requires %a;@ " pp_eexpr r) fmt spec.requires;
213
  fprintf_list ~sep:"" pp_ensures fmt spec.ensures;
214
  fprintf_list ~sep:"@ " (fun fmt (name, assumes, requires) -> 
215
    fprintf fmt "behavior %s:@[@ %a@ %a@]" 
216
      name
217
      (fprintf_list ~sep:"@ " (fun fmt r -> fprintf fmt "assumes %a;" pp_eexpr r)) assumes
218
      (fprintf_list ~sep:"@ " pp_ensures) requires
219
  ) fmt spec.behaviors;
220
  fprintf fmt "@]*)";
221
  ()
222

    
223
let pp_node fmt nd = 
224
fprintf fmt "@[<v 0>%a%tnode %s (%a) returns (%a)@.%a%alet@.@[<h 2>   @ @[%a@]@ @]@.tel@]@."
225
  (fun fmt s -> match s with Some s -> pp_spec fmt s | _ -> ()) nd.node_spec
226
  (fun fmt -> match nd.node_spec with None -> () | Some _ -> Format.fprintf fmt "@.") 
227
  nd.node_id
228
  pp_node_args nd.node_inputs
229
  pp_node_args nd.node_outputs
230
  (fun fmt locals ->
231
  match locals with [] -> () | _ ->
232
    fprintf fmt "@[<v 4>var %a@]@ " 
233
      (fprintf_list ~sep:"@ " 
234
	 (fun fmt v -> fprintf fmt "%a;" pp_node_var v))
235
      locals
236
  ) nd.node_locals
237
  (fun fmt checks ->
238
  match checks with [] -> () | _ ->
239
    fprintf fmt "@[<v 4>check@ %a@]@ " 
240
      (fprintf_list ~sep:"@ " 
241
	 (fun fmt d -> fprintf fmt "%a" Dimension.pp_dimension d))
242
      checks
243
  ) nd.node_checks
244
  pp_node_eqs nd.node_eqs
245
(*fprintf fmt "@ /* Scheduling: %a */ @ " (fprintf_list ~sep:", " pp_print_string) (Scheduling.schedule_node nd)*)
246

    
247
let pp_imported_node fmt ind = 
248
  fprintf fmt "@[<v>node %s (%a) returns (%a) %t@]"
249
    ind.nodei_id
250
    pp_node_args ind.nodei_inputs
251
    pp_node_args ind.nodei_outputs
252
    (fun fmt -> if ind.nodei_stateless then Format.fprintf fmt "stateless") 
253

    
254
let pp_imported_fun fmt ind = 
255
  fprintf fmt "@[<v>function %s (%a) returns (%a)@]"
256
    ind.fun_id
257
    pp_node_args ind.fun_inputs
258
    pp_node_args ind.fun_outputs
259

    
260
let pp_decl fmt decl =
261
  match decl.top_decl_desc with
262
  | Node nd -> fprintf fmt "%a@ " pp_node nd
263
  | ImportedNode ind ->
264
    fprintf fmt "imported %a;@ " pp_imported_node ind
265
  | ImportedFun ind ->
266
    fprintf fmt "%a;@ " pp_imported_fun ind
267
  | Consts clist -> (
268
    fprintf fmt "const %a@ " 
269
      (fprintf_list ~sep:"@ " (fun fmt cdecl ->
270
	fprintf fmt "%s = %a;"
271
	  cdecl.const_id pp_const cdecl.const_value)) clist)
272
  | Open s -> fprintf fmt "open \"%s\"" s
273

    
274

    
275
let pp_prog fmt prog = 
276
  fprintf_list ~sep:"@ " pp_decl fmt prog
277

    
278
let pp_short_decl fmt decl =
279
  match decl.top_decl_desc with
280
  | Node nd -> fprintf fmt "node %s@ " nd.node_id
281
  | ImportedNode ind -> fprintf fmt "imported node %s" ind.nodei_id
282
  | ImportedFun ind -> fprintf fmt "function %s" ind.fun_id
283
  | Consts clist -> (
284
    fprintf fmt "const %a@ " 
285
      (fprintf_list ~sep:"@ " (fun fmt cdecl ->
286
	pp_print_string fmt cdecl.const_id)) clist)
287
  | Open s -> fprintf fmt "open \"%s\"" s
288

    
289
let pp_lusi fmt decl = 
290
  match decl.top_decl_desc with
291
  | Node nd ->  
292
    fprintf fmt 
293
      "@[<v>node %s (%a) returns (%a);@ @]@ "
294
      nd.node_id
295
      pp_node_args nd.node_inputs
296
      pp_node_args nd.node_outputs
297
  | ImportedNode _ | ImportedFun _ | Consts _ | Open _ -> ()
298

    
299

    
300

    
301

    
302
let pp_lusi_header fmt filename prog =
303
  fprintf fmt "(* Generated Lustre Interface file from %s *)@." filename;
304
  fprintf fmt "(* generated by Lustre-C compiler version %s, %a *)@." Version.number pp_date (Unix.gmtime (Unix.time ()));
305
  fprintf fmt "(* feel free to mask some of the nodes by removing them from this file. *)@.@.";
306
  List.iter (fprintf fmt "%a@." pp_lusi) prog    
307
  
308
(* Local Variables: *)
309
(* compile-command:"make -C .." *)
310
(* End: *)
(39-39/46)