Project

General

Profile

Download (32.7 KB) Statistics
| Branch: | Tag: | Revision:
1
(********************************************************************)
2
(*                                                                  *)
3
(*  The LustreC compiler toolset   /  The LustreC Development Team  *)
4
(*  Copyright 2012 -    --   ONERA - CNRS - INPT                    *)
5
(*                                                                  *)
6
(*  LustreC is free software, distributed WITHOUT ANY WARRANTY      *)
7
(*  under the terms of the GNU Lesser General Public License        *)
8
(*  version 2.1.                                                    *)
9
(*                                                                  *)
10
(********************************************************************)
11

    
12
open Format
13
open Lustre_types
14
open Machine_code_types
15
open Corelang
16
open Machine_code_common
17
open C_backend_common
18

    
19
module type MODIFIERS_SRC =
20
sig
21
end
22

    
23
module EmptyMod =
24
struct
25
end
26

    
27
module Main = functor (Mod: MODIFIERS_SRC) -> 
28
struct
29

    
30
(********************************************************************************************)
31
(*                    Instruction Printing functions                                        *)
32
(********************************************************************************************)
33

    
34

    
35
(* Computes the depth to which multi-dimension array assignments should be expanded.
36
   It equals the maximum number of nested static array constructions accessible from root [v].
37
*)
38
  let rec expansion_depth v =
39
    match v.value_desc with
40
    | Cst cst -> expansion_depth_cst cst
41
    | Var _ -> 0
42
    | Fun (_, vl) -> List.fold_right (fun v -> max (expansion_depth v)) vl 0
43
    | Array vl    -> 1 + List.fold_right (fun v -> max (expansion_depth v)) vl 0
44
    | Access (v, i) -> max 0 (expansion_depth v - 1)
45
    | Power (v, n)  -> 0 (*1 + expansion_depth v*)
46
  and expansion_depth_cst c = 
47
    match c with
48
      Const_array cl -> 1 + List.fold_right (fun c -> max (expansion_depth_cst c)) cl 0
49
    | _ -> 0
50
  
51
  let rec merge_static_loop_profiles lp1 lp2 =
52
    match lp1, lp2 with
53
    | []      , _        -> lp2
54
    | _       , []       -> lp1
55
    | p1 :: q1, p2 :: q2 -> (p1 || p2) :: merge_static_loop_profiles q1 q2
56

    
57
(* Returns a list of bool values, indicating whether the indices must be static or not *)
58
  let rec static_loop_profile v =
59
    match v.value_desc with
60
    | Cst cst  -> static_loop_profile_cst cst
61
    | Var _  -> []
62
    | Fun (_, vl) -> List.fold_right (fun v lp -> merge_static_loop_profiles lp (static_loop_profile v)) vl []
63
    | Array vl    -> true :: List.fold_right (fun v lp -> merge_static_loop_profiles lp (static_loop_profile v)) vl []
64
    | Access (v, i) -> (match (static_loop_profile v) with [] -> [] | _ :: q -> q)
65
    | Power (v, n)  -> false :: static_loop_profile v
66
  and static_loop_profile_cst cst =
67
    match cst with
68
      Const_array cl -> List.fold_right 
69
	(fun c lp -> merge_static_loop_profiles lp (static_loop_profile_cst c))
70
	cl 
71
	[]
72
    | _ -> [] 
73
  
74
  
75
let rec is_const_index v =
76
  match v.value_desc with
77
  | Cst (Const_int _) -> true
78
  | Fun (_, vl)       -> List.for_all is_const_index vl
79
  | _                 -> false
80

    
81
type loop_index = LVar of ident | LInt of int ref | LAcc of value_t
82
(*
83
let rec value_offsets v offsets =
84
 match v, offsets with
85
 | _                        , []          -> v
86
 | Power (v, n)             , _ :: q      -> value_offsets v q
87
 | Array vl                 , LInt r :: q -> value_offsets (List.nth vl !r) q
88
 | Cst (Const_array cl)     , LInt r :: q -> value_offsets (Cst (List.nth cl !r)) q
89
 | Fun (f, vl)              , _           -> Fun (f, List.map (fun v -> value_offsets v offsets) vl)
90
 | _                        , LInt r :: q -> value_offsets (Access (v, Cst (Const_int !r))) q
91
 | _                        , LVar i :: q -> value_offsets (Access (v, Var i)) q
92
*)
93
(* Computes the list of nested loop variables together with their dimension bounds.
94
   - LInt r stands for loop expansion (no loop variable, but int loop index)
95
   - LVar v stands for loop variable v
96
*)
97
let rec mk_loop_variables m ty depth =
98
 match (Types.repr ty).Types.tdesc, depth with
99
 | Types.Tarray (d, ty'), 0       ->
100
   let v = mk_loop_var m () in
101
   (d, LVar v) :: mk_loop_variables m ty' 0
102
 | Types.Tarray (d, ty'), _       ->
103
   let r = ref (-1) in
104
   (d, LInt r) :: mk_loop_variables m ty' (depth - 1)
105
 | _                    , 0       -> []
106
 | _                              -> assert false
107

    
108
let reorder_loop_variables loop_vars =
109
  let (int_loops, var_loops) = 
110
    List.partition (function (d, LInt _) -> true | _ -> false) loop_vars 
111
  in
112
  var_loops @ int_loops
113

    
114
(* Prints a one loop variable suffix for arrays *)
115
let pp_loop_var m fmt lv =
116
 match snd lv with
117
 | LVar v -> fprintf fmt "[%s]" v
118
 | LInt r -> fprintf fmt "[%d]" !r
119
 | LAcc i -> fprintf fmt "[%a]" (pp_val m) i
120

    
121
(* Prints a suffix of loop variables for arrays *)
122
let pp_suffix m fmt loop_vars =
123
 Utils.fprintf_list ~sep:"" (pp_loop_var m) fmt loop_vars
124

    
125
(* Prints a value expression [v], with internal function calls only.
126
   [pp_var] is a printer for variables (typically [pp_c_var_read]),
127
   but an offset suffix may be added for array variables
128
*)
129
(* Prints a constant value before a suffix (needs casting) *)
130
let rec pp_c_const_suffix var_type fmt c =
131
  match c with
132
    | Const_int i          -> pp_print_int fmt i
133
    | Const_real (_, _, s) -> pp_print_string fmt s
134
    | Const_tag t          -> pp_c_tag fmt t
135
    | Const_array ca       -> let var_type = Types.array_element_type var_type in
136
                              fprintf fmt "(%a[]){%a }" (pp_c_type "") var_type (Utils.fprintf_list ~sep:", " (pp_c_const_suffix var_type)) ca
137
    | Const_struct fl       -> fprintf fmt "{%a }" (Utils.fprintf_list ~sep:", " (fun fmt (f, c) -> (pp_c_const_suffix (Types.struct_field_type var_type f)) fmt c)) fl
138
    | Const_string _
139
      | Const_modeid _ -> assert false (* string occurs in annotations not in C *)
140

    
141

    
142
(* Prints a [value] of type [var_type] indexed by the suffix list [loop_vars] *)
143
let rec pp_value_suffix m self var_type loop_vars pp_value fmt value =
144
  (*Format.eprintf "pp_value_suffix: %a %a %a@." Types.print_ty var_type Machine_code.pp_val value pp_suffix loop_vars;*)
145
  let pp_suffix = pp_suffix m in
146
  (
147
    match loop_vars, value.value_desc with
148
    | (x, LAcc i) :: q, _ when is_const_index i ->
149
       let r = ref (Dimension.size_const_dimension (dimension_of_value i)) in
150
       pp_value_suffix m self var_type ((x, LInt r)::q) pp_value fmt value
151
    | (_, LInt r) :: q, Cst (Const_array cl) ->
152
       let var_type = Types.array_element_type var_type in
153
       pp_value_suffix m self var_type q pp_value fmt (mk_val (Cst (List.nth cl !r)) Type_predef.type_int)
154
    | (_, LInt r) :: q, Array vl      ->
155
       let var_type = Types.array_element_type var_type in
156
       pp_value_suffix m self var_type q pp_value fmt (List.nth vl !r)
157
    | loop_var    :: q, Array vl      ->
158
       let var_type = Types.array_element_type var_type in
159
       Format.fprintf fmt "(%a[]){%a }%a" (pp_c_type "") var_type (Utils.fprintf_list ~sep:", " (pp_value_suffix m self var_type q pp_value)) vl pp_suffix [loop_var]
160
    | []              , Array vl      ->
161
       let var_type = Types.array_element_type var_type in
162
       Format.fprintf fmt "(%a[]){%a }" (pp_c_type "") var_type (Utils.fprintf_list ~sep:", " (pp_value_suffix m self var_type [] pp_value)) vl
163
    | _           :: q, Power (v, n)  ->
164
       pp_value_suffix m self var_type q pp_value fmt v
165
    | _               , Fun (n, vl)   ->
166
       pp_basic_lib_fun (Types.is_int_type value.value_type) n (pp_value_suffix m self var_type loop_vars pp_value) fmt vl
167
    | _               , Access (v, i) ->
168
       let var_type = Type_predef.type_array (Dimension.mkdim_var ()) var_type in
169
       pp_value_suffix m self var_type ((Dimension.mkdim_var (), LAcc i) :: loop_vars) pp_value fmt v
170
    | _               , Var v    ->
171
       if is_memory m v then (
172
         (* array memory vars are represented by an indirection to a local var with the right type,
173
	    in order to avoid casting everywhere. *)
174
         if Types.is_array_type v.var_type
175
         then Format.fprintf fmt "%a%a" pp_value v pp_suffix loop_vars
176
         else Format.fprintf fmt "%s->_reg.%a%a" self pp_value v pp_suffix loop_vars
177
       )
178
       else (
179
         Format.fprintf fmt "%a%a" pp_value v pp_suffix loop_vars
180
       )
181
    | _               , Cst cst       -> pp_c_const_suffix var_type fmt cst
182
    | _               , _             -> (Format.eprintf "internal error: C_backend_src.pp_value_suffix %a %a %a@." Types.print_ty var_type (pp_val m) value pp_suffix loop_vars; assert false)
183
  )
184
   
185
(* Subsumes C_backend_common.pp_c_val to cope with aggressive substitution
186
   which may yield constant arrays in expressions.
187
   Type is needed to correctly print constant arrays.
188
 *)
189
let pp_c_val m self pp_var fmt v =
190
  pp_value_suffix m self v.value_type [] pp_var fmt v
191

    
192
let pp_basic_assign pp_var fmt typ var_name value =
193
  if Types.is_real_type typ && !Options.mpfr
194
  then
195
    Mpfr.pp_inject_assign pp_var fmt var_name value
196
  else
197
    fprintf fmt "%a = %a;" 
198
      pp_var var_name
199
      pp_var value
200

    
201
(* type_directed assignment: array vs. statically sized type
202
   - [var_type]: type of variable to be assigned
203
   - [var_name]: name of variable to be assigned
204
   - [value]: assigned value
205
   - [pp_var]: printer for variables
206
*)
207
let pp_assign m self pp_var fmt var_type var_name value =
208
  let depth = expansion_depth value in
209
  (*Format.eprintf "pp_assign %a %a %a %d@." Types.print_ty var_type pp_val var_name pp_val value depth;*)
210
  let loop_vars = mk_loop_variables m var_type depth in
211
  let reordered_loop_vars = reorder_loop_variables loop_vars in
212
  let rec aux typ fmt vars =
213
    match vars with
214
    | [] ->
215
       pp_basic_assign (pp_value_suffix m self var_type loop_vars pp_var) fmt typ var_name value
216
    | (d, LVar i) :: q ->
217
       let typ' = Types.array_element_type typ in
218
      (*eprintf "pp_aux %a %s@." Dimension.pp_dimension d i;*)
219
      fprintf fmt "@[<v 2>{@,int %s;@,for(%s=0;%s<%a;%s++)@,%a @]@,}"
220
	i i i pp_c_dimension d i
221
	(aux typ') q
222
    | (d, LInt r) :: q ->
223
       (*eprintf "pp_aux %a %d@." Dimension.pp_dimension d (!r);*)
224
       let typ' = Types.array_element_type typ in
225
       let szl = Utils.enumerate (Dimension.size_const_dimension d) in
226
       fprintf fmt "@[<v 2>{@,%a@]@,}"
227
	       (Utils.fprintf_list ~sep:"@," (fun fmt i -> r := i; aux typ' fmt q)) szl
228
    | _ -> assert false
229
  in
230
  begin
231
    reset_loop_counter ();
232
    (*reset_addr_counter ();*)
233
    aux var_type fmt reordered_loop_vars;
234
    (*Format.eprintf "end pp_assign@.";*)
235
  end
236

    
237
let pp_machine_reset (m: machine_t) self fmt inst =
238
  let (node, static) =
239
    try
240
      List.assoc inst m.minstances
241
    with Not_found -> (Format.eprintf "internal error: pp_machine_reset %s %s %s:@." m.mname.node_id self inst; raise Not_found) in
242
  fprintf fmt "%a(%a%t%s->%s);"
243
    pp_machine_reset_name (node_name node)
244
    (Utils.fprintf_list ~sep:", " Dimension.pp_dimension) static
245
    (Utils.pp_final_char_if_non_empty ", " static)
246
    self inst
247

    
248
let pp_machine_init (m: machine_t) self fmt inst =
249
  let (node, static) =
250
    try
251
      List.assoc inst m.minstances
252
    with Not_found -> (Format.eprintf "internal error: pp_machine_init %s %s %s@." m.mname.node_id self inst; raise Not_found) in
253
  fprintf fmt "%a(%a%t%s->%s);"
254
    pp_machine_init_name (node_name node)
255
    (Utils.fprintf_list ~sep:", " Dimension.pp_dimension) static
256
    (Utils.pp_final_char_if_non_empty ", " static)
257
    self inst
258

    
259
let pp_machine_clear (m: machine_t) self fmt inst =
260
  let (node, static) =
261
    try
262
      List.assoc inst m.minstances
263
    with Not_found -> (Format.eprintf "internal error: pp_machine_clear %s %s %s@." m.mname.node_id self inst; raise Not_found) in
264
  fprintf fmt "%a(%a%t%s->%s);"
265
    pp_machine_clear_name (node_name node)
266
    (Utils.fprintf_list ~sep:", " Dimension.pp_dimension) static
267
    (Utils.pp_final_char_if_non_empty ", " static)
268
    self inst
269

    
270
let has_c_prototype funname dependencies =
271
  let imported_node_opt = (* We select the last imported node with the name funname.
272
			       The order of evaluation of dependencies should be
273
			       compatible with overloading. (Not checked yet) *) 
274
      List.fold_left
275
	(fun res (Dep (_, _, decls, _)) -> 
276
	  match res with
277
	  | Some _ -> res
278
	  | None -> 
279
	    let matched = fun t -> match t.top_decl_desc with 
280
	      | ImportedNode nd -> nd.nodei_id = funname 
281
	      | _ -> false
282
	    in
283
	    if List.exists matched decls then (
284
	      match (List.find matched decls).top_decl_desc with
285
	      | ImportedNode nd -> Some nd
286
	      | _ -> assert false
287
	    )
288
	    else
289
	      None
290
	) None dependencies in
291
    match imported_node_opt with
292
    | None -> false
293
    | Some nd -> (match nd.nodei_prototype with Some "C" -> true | _ -> false)
294
(*
295
let pp_instance_call dependencies m self fmt i (inputs: value_t list) (outputs: var_decl list) =
296
  try (* stateful node instance *)
297
    let (n,_) = List.assoc i m.minstances in
298
    let (input_types, _) = Typing.get_type_of_call n in
299
    let inputs = List.combine input_types inputs in
300
    fprintf fmt "%a (%a%t%a%t%s->%s);"
301
      pp_machine_step_name (node_name n)
302
      (Utils.fprintf_list ~sep:", " (pp_c_val self (pp_c_var_read m))) inputs
303
      (Utils.pp_final_char_if_non_empty ", " inputs) 
304
      (Utils.fprintf_list ~sep:", " (pp_c_var_write m)) outputs
305
      (Utils.pp_final_char_if_non_empty ", " outputs)
306
      self
307
      i
308
  with Not_found -> (* stateless node instance *)
309
    let (n,_) = List.assoc i m.mcalls in
310
    let (input_types, output_types) = Typing.get_type_of_call n in
311
    let inputs = List.combine input_types inputs in
312
    if has_c_prototype i dependencies
313
    then (* external C function *)
314
      let outputs = List.map2 (fun t v -> t, Var v) output_types outputs in
315
      fprintf fmt "%a = %s(%a);"
316
	(Utils.fprintf_list ~sep:", " (pp_c_val self (pp_c_var_read m))) outputs
317
	i
318
	(Utils.fprintf_list ~sep:", " (pp_c_val self (pp_c_var_read m))) inputs
319
    else
320
      fprintf fmt "%a (%a%t%a);"
321
	pp_machine_step_name (node_name n)
322
	(Utils.fprintf_list ~sep:", " (pp_c_val self (pp_c_var_read m))) inputs
323
	(Utils.pp_final_char_if_non_empty ", " inputs) 
324
	(Utils.fprintf_list ~sep:", " (pp_c_var_write m)) outputs 
325
*)
326
let rec pp_conditional dependencies (m: machine_t) self fmt c tl el =
327
  fprintf fmt "@[<v 2>if (%a) {%t%a@]@,@[<v 2>} else {%t%a@]@,}"
328
    (pp_c_val m self (pp_c_var_read m)) c
329
    (Utils.pp_newline_if_non_empty tl)
330
    (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) tl
331
    (Utils.pp_newline_if_non_empty el)
332
    (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) el
333

    
334
and pp_machine_instr dependencies (m: machine_t) self fmt instr =
335
  match get_instr_desc instr with 
336
  | MNoReset _ -> ()
337
  | MReset i ->
338
    pp_machine_reset m self fmt i
339
  | MLocalAssign (i,v) ->
340
    pp_assign
341
      m self (pp_c_var_read m) fmt
342
      i.var_type (mk_val (Var i) i.var_type) v
343
  | MStateAssign (i,v) ->
344
    pp_assign
345
      m self (pp_c_var_read m) fmt
346
      i.var_type (mk_val (Var i) i.var_type) v
347
  | MStep ([i0], i, vl) when Basic_library.is_value_internal_fun (mk_val (Fun (i, vl)) i0.var_type)  ->
348
    pp_machine_instr dependencies m self fmt 
349
      (update_instr_desc instr (MLocalAssign (i0, mk_val (Fun (i, vl)) i0.var_type)))
350
  | MStep (il, i, vl) when !Options.mpfr && Mpfr.is_homomorphic_fun i ->
351
     pp_instance_call m self fmt i vl il
352
  | MStep ([i0], i, vl) when has_c_prototype i dependencies -> 
353
    fprintf fmt "%a = %s(%a);" 
354
      (pp_c_val m self (pp_c_var_read m)) (mk_val (Var i0) i0.var_type)
355
      i
356
      (Utils.fprintf_list ~sep:", " (pp_c_val m self (pp_c_var_read m))) vl
357
  | MStep (il, i, vl) ->
358
    pp_basic_instance_call m self fmt i vl il
359
  | MBranch (_, []) -> (Format.eprintf "internal error: C_backend_src.pp_machine_instr %a@." (pp_instr m) instr; assert false)
360
  | MBranch (g, hl) ->
361
    if let t = fst (List.hd hl) in t = tag_true || t = tag_false
362
    then (* boolean case, needs special treatment in C because truth value is not unique *)
363
	 (* may disappear if we optimize code by replacing last branch test with default *)
364
      let tl = try List.assoc tag_true  hl with Not_found -> [] in
365
      let el = try List.assoc tag_false hl with Not_found -> [] in
366
      pp_conditional dependencies m self fmt g tl el
367
    else (* enum type case *)
368
      (*let g_typ = Typing.type_const Location.dummy_loc (Const_tag (fst (List.hd hl))) in*)
369
      fprintf fmt "@[<v 2>switch(%a) {@,%a@,}@]"
370
	(pp_c_val m self (pp_c_var_read m)) g
371
	(Utils.fprintf_list ~sep:"@," (pp_machine_branch dependencies m self)) hl
372
  | MComment s  -> 
373
      fprintf fmt "/*%s*/@ " s
374

    
375

    
376
and pp_machine_branch dependencies m self fmt (t, h) =
377
  fprintf fmt "@[<v 2>case %a:@,%a@,break;@]"
378
    pp_c_tag t
379
    (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) h
380

    
381

    
382
(********************************************************************************************)
383
(*                         C file Printing functions                                        *)
384
(********************************************************************************************)
385

    
386
let print_const_def fmt cdecl =
387
  if !Options.mpfr && Types.is_real_type (Types.array_base_type cdecl.const_type)
388
  then
389
    fprintf fmt "%a;@." 
390
      (pp_c_type cdecl.const_id) (Types.dynamic_type cdecl.const_type) 
391
  else
392
    fprintf fmt "%a = %a;@." 
393
      (pp_c_type cdecl.const_id) cdecl.const_type
394
      pp_c_const cdecl.const_value 
395

    
396

    
397
let print_alloc_instance fmt (i, (m, static)) =
398
  fprintf fmt "_alloc->%s = %a (%a);@,"
399
    i
400
    pp_machine_alloc_name (node_name m)
401
    (Utils.fprintf_list ~sep:", " Dimension.pp_dimension) static
402

    
403
let print_dealloc_instance fmt (i, (m, _)) =
404
  fprintf fmt "%a (_alloc->%s);@,"
405
    pp_machine_dealloc_name (node_name m)
406
    i
407

    
408
let print_alloc_const fmt m =
409
  let const_locals = List.filter (fun vdecl -> vdecl.var_dec_const) m.mstep.step_locals in
410
  fprintf fmt "%a%t"
411
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) const_locals
412
    (Utils.pp_final_char_if_non_empty ";@," const_locals)
413

    
414
let print_alloc_array fmt vdecl =
415
  let base_type = Types.array_base_type vdecl.var_type in
416
  let size_types = Types.array_type_multi_dimension vdecl.var_type in
417
  let size_type = Dimension.multi_dimension_product vdecl.var_loc size_types in
418
  fprintf fmt "_alloc->_reg.%s = (%a*) malloc((%a)*sizeof(%a));@,assert(_alloc->%s);@,"
419
    vdecl.var_id
420
    (pp_c_type "") base_type
421
    Dimension.pp_dimension size_type
422
    (pp_c_type "") base_type
423
    vdecl.var_id
424

    
425
let print_dealloc_array fmt vdecl =
426
  fprintf fmt "free (_alloc->_reg.%s);@,"
427
    vdecl.var_id
428

    
429
let print_alloc_code fmt m =
430
  let array_mem = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
431
  fprintf fmt "%a *_alloc;@,_alloc = (%a *) malloc(sizeof(%a));@,assert(_alloc);@,%a%areturn _alloc;"
432
    pp_machine_memtype_name m.mname.node_id
433
    pp_machine_memtype_name m.mname.node_id
434
    pp_machine_memtype_name m.mname.node_id
435
    (Utils.fprintf_list ~sep:"" print_alloc_array) array_mem
436
    (Utils.fprintf_list ~sep:"" print_alloc_instance) m.minstances
437

    
438
let print_dealloc_code fmt m =
439
  let array_mem = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
440
  fprintf fmt "%a%afree (_alloc);@,return;"
441
    (Utils.fprintf_list ~sep:"" print_dealloc_array) array_mem
442
    (Utils.fprintf_list ~sep:"" print_dealloc_instance) m.minstances
443

    
444
let print_stateless_init_code dependencies fmt m self =
445
  let minit = List.map (fun i -> match get_instr_desc i with MReset i -> i | _ -> assert false) m.minit in
446
  let array_mems = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
447
  fprintf fmt "@[<v 2>%a {@,%a%t%a%t%a%treturn;@]@,}@.@."
448
    (print_init_prototype self) (m.mname.node_id, m.mstatic)
449
    (* array mems *) 
450
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_array_mem self)) array_mems
451
    (Utils.pp_final_char_if_non_empty ";@," array_mems)
452
    (* memory initialization *)
453
    (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mmemory
454
    (Utils.pp_newline_if_non_empty m.mmemory)
455
    (* sub-machines initialization *)
456
    (Utils.fprintf_list ~sep:"@," (pp_machine_init m self)) minit
457
    (Utils.pp_newline_if_non_empty m.minit)
458

    
459
let print_stateless_clear_code dependencies fmt m self =
460
  let minit = List.map (fun i -> match get_instr_desc i with MReset i -> i | _ -> assert false) m.minit in
461
  let array_mems = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
462
  fprintf fmt "@[<v 2>%a {@,%a%t%a%t%a%treturn;@]@,}@.@."
463
    (print_clear_prototype self) (m.mname.node_id, m.mstatic)
464
    (* array mems *)
465
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_array_mem self)) array_mems
466
    (Utils.pp_final_char_if_non_empty ";@," array_mems)
467
    (* memory clear *)
468
    (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mmemory
469
    (Utils.pp_newline_if_non_empty m.mmemory)
470
    (* sub-machines clear*)
471
    (Utils.fprintf_list ~sep:"@," (pp_machine_clear m self)) minit
472
    (Utils.pp_newline_if_non_empty m.minit)
473

    
474
let print_stateless_code dependencies fmt m =
475
  let self = "__ERROR__" in
476
  if not (!Options.ansi && is_generic_node { top_decl_desc = Node m.mname; top_decl_loc = Location.dummy_loc; top_decl_owner = ""; top_decl_itf = false })
477
  then
478
    (* C99 code *)
479
    fprintf fmt "@[<v 2>%a {@,%a%t%a%t@,%a%a%t%a%t%t@]@,}@.@."
480
      print_stateless_prototype (m.mname.node_id, m.mstep.step_inputs, m.mstep.step_outputs)
481
      (* locals *)
482
      (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) m.mstep.step_locals
483
      (Utils.pp_final_char_if_non_empty ";@," m.mstep.step_locals)
484
      (* locals initialization *)
485
      (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mstep.step_locals
486
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
487
      (* check assertions *)
488
      (pp_c_checks self) m
489
      (* instrs *)
490
      (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) m.mstep.step_instrs
491
      (Utils.pp_newline_if_non_empty m.mstep.step_instrs)
492
      (* locals clear *)
493
      (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mstep.step_locals
494
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
495
      (fun fmt -> fprintf fmt "return;")
496
  else
497
    (* C90 code *)
498
    let (gen_locals, base_locals) = List.partition (fun v -> Types.is_generic_type v.var_type) m.mstep.step_locals in
499
    let gen_calls = List.map (fun e -> let (id, _, _) = call_of_expr e in mk_call_var_decl e.expr_loc id) m.mname.node_gencalls in
500
    fprintf fmt "@[<v 2>%a {@,%a%t%a%t@,%a%a%t%a%t%t@]@,}@.@."
501
      print_stateless_prototype (m.mname.node_id, (m.mstep.step_inputs@gen_locals@gen_calls), m.mstep.step_outputs)
502
      (* locals *)
503
      (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) base_locals
504
      (Utils.pp_final_char_if_non_empty ";" base_locals)
505
      (* locals initialization *)
506
      (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mstep.step_locals
507
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
508
      (* check assertions *)
509
      (pp_c_checks self) m
510
      (* instrs *)
511
      (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) m.mstep.step_instrs
512
      (Utils.pp_newline_if_non_empty m.mstep.step_instrs)
513
      (* locals clear *)
514
      (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mstep.step_locals
515
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
516
      (fun fmt -> fprintf fmt "return;")
517

    
518
let print_reset_code dependencies fmt m self =
519
  let const_locals = List.filter (fun vdecl -> vdecl.var_dec_const) m.mstep.step_locals in
520
  fprintf fmt "@[<v 2>%a {@,%a%t@,%a%treturn;@]@,}@.@."
521
    (print_reset_prototype self) (m.mname.node_id, m.mstatic)
522
    (* constant locals decl *)
523
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) const_locals
524
    (Utils.pp_final_char_if_non_empty ";" const_locals)
525
    (* instrs *)
526
    (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) m.minit
527
    (Utils.pp_newline_if_non_empty m.minit)
528

    
529
let print_init_code dependencies fmt m self =
530
  let minit = List.map (fun i -> match get_instr_desc i with MReset i -> i | _ -> assert false) m.minit in
531
  let array_mems = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
532
  fprintf fmt "@[<v 2>%a {@,%a%t%a%t%a%treturn;@]@,}@.@."
533
    (print_init_prototype self) (m.mname.node_id, m.mstatic)
534
    (* array mems *) 
535
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_array_mem self)) array_mems
536
    (Utils.pp_final_char_if_non_empty ";@," array_mems)
537
    (* memory initialization *)
538
    (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mmemory
539
    (Utils.pp_newline_if_non_empty m.mmemory)
540
    (* sub-machines initialization *)
541
    (Utils.fprintf_list ~sep:"@," (pp_machine_init m self)) minit
542
    (Utils.pp_newline_if_non_empty m.minit)
543

    
544
let print_clear_code dependencies fmt m self =
545
  let minit = List.map (fun i -> match get_instr_desc i with MReset i -> i | _ -> assert false) m.minit in
546
  let array_mems = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
547
  fprintf fmt "@[<v 2>%a {@,%a%t%a%t%a%treturn;@]@,}@.@."
548
    (print_clear_prototype self) (m.mname.node_id, m.mstatic)
549
    (* array mems *)
550
    (Utils.fprintf_list ~sep:";@," (pp_c_decl_array_mem self)) array_mems
551
    (Utils.pp_final_char_if_non_empty ";@," array_mems)
552
    (* memory clear *)
553
    (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mmemory
554
    (Utils.pp_newline_if_non_empty m.mmemory)
555
    (* sub-machines clear*)
556
    (Utils.fprintf_list ~sep:"@," (pp_machine_clear m self)) minit
557
    (Utils.pp_newline_if_non_empty m.minit)
558

    
559
let print_step_code dependencies fmt m self =
560
  if not (!Options.ansi && is_generic_node { top_decl_desc = Node m.mname; top_decl_loc = Location.dummy_loc; top_decl_owner = ""; top_decl_itf = false })
561
  then
562
    (* C99 code *)
563
    let array_mems = List.filter (fun v -> Types.is_array_type v.var_type) m.mmemory in
564
    fprintf fmt "@[<v 2>%a {@,%a%t%a%t%a%t@,%a%a%t%a%t%t@]@,}@.@."
565
      (print_step_prototype self) (m.mname.node_id, m.mstep.step_inputs, m.mstep.step_outputs)
566
      (* locals *)
567
      (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) m.mstep.step_locals
568
      (Utils.pp_final_char_if_non_empty ";@," m.mstep.step_locals)
569
      (* array mems *)
570
      (Utils.fprintf_list ~sep:";@," (pp_c_decl_array_mem self)) array_mems
571
      (Utils.pp_final_char_if_non_empty ";@," array_mems)
572
      (* locals initialization *)
573
      (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mstep.step_locals
574
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
575
      (* check assertions *)
576
      (pp_c_checks self) m
577
      (* instrs *)
578
      (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) m.mstep.step_instrs
579
      (Utils.pp_newline_if_non_empty m.mstep.step_instrs)
580
      (* locals clear *)
581
      (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mstep.step_locals
582
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
583
      (fun fmt -> fprintf fmt "return;")
584
  else
585
    (* C90 code *)
586
    let (gen_locals, base_locals) = List.partition (fun v -> Types.is_generic_type v.var_type) m.mstep.step_locals in
587
    let gen_calls = List.map (fun e -> let (id, _, _) = call_of_expr e in mk_call_var_decl e.expr_loc id) m.mname.node_gencalls in
588
    fprintf fmt "@[<v 2>%a {@,%a%t%a%t@,%a%a%t%a%t%t@]@,}@.@."
589
      (print_step_prototype self) (m.mname.node_id, (m.mstep.step_inputs@gen_locals@gen_calls), m.mstep.step_outputs)
590
      (* locals *)
591
      (Utils.fprintf_list ~sep:";@," (pp_c_decl_local_var m)) base_locals
592
      (Utils.pp_final_char_if_non_empty ";" base_locals)
593
      (* locals initialization *)
594
      (Utils.fprintf_list ~sep:"@," (pp_initialize m self (pp_c_var_read m))) m.mstep.step_locals
595
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
596
      (* check assertions *)
597
      (pp_c_checks self) m
598
      (* instrs *)
599
      (Utils.fprintf_list ~sep:"@," (pp_machine_instr dependencies m self)) m.mstep.step_instrs
600
      (Utils.pp_newline_if_non_empty m.mstep.step_instrs)
601
      (* locals clear *)
602
      (Utils.fprintf_list ~sep:"@," (pp_clear m self (pp_c_var_read m))) m.mstep.step_locals
603
      (Utils.pp_newline_if_non_empty m.mstep.step_locals)
604
      (fun fmt -> fprintf fmt "return;")
605

    
606

    
607
(********************************************************************************************)
608
(*                     MAIN C file Printing functions                                       *)
609
(********************************************************************************************)
610

    
611
let print_global_init_code fmt basename prog dependencies =
612
  let baseNAME = file_to_module_name basename in
613
  let constants = List.map const_of_top (get_consts prog) in
614
  fprintf fmt "@[<v 2>%a {@,static %s init = 0;@,@[<v 2>if (!init) { @,init = 1;@,%a%t%a@]@,}@,return;@]@,}@.@."
615
    print_global_init_prototype baseNAME
616
    (pp_c_basic_type_desc Type_predef.type_bool)
617
    (* constants *) 
618
    (Utils.fprintf_list ~sep:"@," (pp_const_initialize empty_machine (pp_c_var_read empty_machine))) constants
619
    (Utils.pp_final_char_if_non_empty "@," dependencies)
620
    (* dependencies initialization *)
621
    (Utils.fprintf_list ~sep:"@," print_import_init) dependencies
622

    
623
let print_global_clear_code  fmt basename prog dependencies =
624
  let baseNAME = file_to_module_name basename in
625
  let constants = List.map const_of_top (get_consts prog) in
626
  fprintf fmt "@[<v 2>%a {@,static %s clear = 0;@,@[<v 2>if (!clear) { @,clear = 1;@,%a%t%a@]@,}@,return;@]@,}@.@."
627
    print_global_clear_prototype baseNAME
628
    (pp_c_basic_type_desc Type_predef.type_bool)
629
    (* constants *) 
630
    (Utils.fprintf_list ~sep:"@," (pp_const_clear (pp_c_var_read empty_machine))) constants
631
    (Utils.pp_final_char_if_non_empty "@," dependencies)
632
    (* dependencies initialization *)
633
    (Utils.fprintf_list ~sep:"@," print_import_clear) dependencies
634

    
635
let print_machine dependencies fmt m =
636
  if fst (get_stateless_status m) then
637
    begin
638
      (* Step function *)
639
      print_stateless_code dependencies fmt m
640
    end
641
  else
642
    begin
643
      (* Alloc functions, only if non static mode *)
644
      if (not !Options.static_mem) then  
645
	begin
646
	  fprintf fmt "@[<v 2>%a {@,%a%a@]@,}@.@."
647
	    print_alloc_prototype (m.mname.node_id, m.mstatic)
648
	    print_alloc_const m
649
	    print_alloc_code m;
650

    
651
	  fprintf fmt "@[<v 2>%a {@,%a%a@]@,}@.@."
652
	    print_dealloc_prototype m.mname.node_id
653
	    print_alloc_const m
654
	    print_dealloc_code m;
655
	end;
656
      let self = mk_self m in
657
      (* Reset function *)
658
      print_reset_code dependencies fmt m self;
659
      (* Step function *)
660
      print_step_code dependencies fmt m self;
661
      
662
      if !Options.mpfr then
663
	begin
664
          (* Init function *)
665
	  print_init_code dependencies fmt m self;
666
          (* Clear function *)
667
	  print_clear_code dependencies fmt m self;
668
	end
669
    end
670

    
671
let print_import_standard source_fmt =
672
  begin
673
    fprintf source_fmt "#include <assert.h>@.";
674
    if Machine_types.has_machine_type () then
675
      begin
676
	fprintf source_fmt "#include <stdint.h>@."
677
      end;
678
    if not !Options.static_mem then
679
      begin
680
	fprintf source_fmt "#include <stdlib.h>@.";
681
      end;
682
    if !Options.mpfr then
683
      begin
684
	fprintf source_fmt "#include <mpfr.h>@.";
685
      end
686
  end
687

    
688
let print_lib_c source_fmt basename prog machines dependencies =
689
  print_import_standard source_fmt;
690
  print_import_prototype source_fmt (Dep (true, basename, [], true (* assuming it is stateful *)));
691
  pp_print_newline source_fmt ();
692
  (* Print the svn version number and the supported C standard (C90 or C99) *)
693
  print_version source_fmt;
694
  (* Print the prototype of imported nodes *)
695
  fprintf source_fmt "/* Import dependencies */@.";
696
  fprintf source_fmt "@[<v>";
697
  List.iter (print_import_prototype source_fmt) dependencies;
698
  fprintf source_fmt "@]@.";
699
  (* Print consts *)
700
  fprintf source_fmt "/* Global constants (definitions) */@.";
701
  fprintf source_fmt "@[<v>";
702
  List.iter (fun c -> print_const_def source_fmt (const_of_top c)) (get_consts prog);
703
  fprintf source_fmt "@]@.";
704
  if !Options.mpfr then
705
    begin
706
      fprintf source_fmt "/* Global constants initialization */@.";
707
      print_global_init_code source_fmt basename prog dependencies;
708
      fprintf source_fmt "/* Global constants clearing */@.";
709
      print_global_clear_code source_fmt basename prog dependencies;
710
    end;
711
  if not !Options.static_mem then
712
    begin
713
      fprintf source_fmt "/* External allocation function prototypes */@.";
714
      fprintf source_fmt "@[<v>";
715
      List.iter (print_extern_alloc_prototypes source_fmt) dependencies;
716
      fprintf source_fmt "@]@.";
717
      fprintf source_fmt "/* Node allocation function prototypes */@.";
718
      fprintf source_fmt "@[<v>";
719
      List.iter
720
	(fun m -> fprintf source_fmt "%a;@.@.%a;@.@."
721
	  print_alloc_prototype (m.mname.node_id, m.mstatic)
722
	  print_dealloc_prototype m.mname.node_id
723
	)
724
	machines;
725
      fprintf source_fmt "@]@.";
726
    end;
727

    
728
  (* Print the struct definitions of all machines. *)
729
  fprintf source_fmt "/* Struct definitions */@.";
730
  fprintf source_fmt "@[<v>";
731
  List.iter (print_machine_struct source_fmt) machines;
732
  fprintf source_fmt "@]@.";
733
  pp_print_newline source_fmt ();
734
  (* Print nodes one by one (in the previous order) *)
735
  List.iter (print_machine dependencies source_fmt) machines;
736
 end
737

    
738
(* Local Variables: *)
739
(* compile-command:"make -C ../../.." *)
740
(* End: *)
(11-11/11)