Source file socPredef.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
(** Synchronous Object Code for Predefined operators. *)
open Soc
open Data
let b = Data.Bool
let _r = Data.Real
let aa t1 t2 = ["i1", t1], ["out", t2]
let aaa t1 t2 t3 = ["i1", t1; "i2",t2], ["out", t3]
let _aab t1 t2 = ["i1", t1; "i2",t2], ["out", Bool]
let baaa t = ["cond", b; "xthen", t; "xelse", t], ["out", t]
let (soc_profile_of_types : Data.t list -> var list * var list) =
function
| [t1; t2] -> aa t1 t2
| [t1;t2;t3] -> aaa t1 t2 t3
| [Bool;t1;_t2;_t3] -> baaa t1
| tl ->
print_string ("Unsupported case: "^ (
String.concat "," (List.map SocUtils.string_of_type_ref tl)));
flush stdout;
assert false
let (soc_profile_of_types_nary : Data.t list -> var list * var list) =
fun vl ->
match vl with
| ta::Bool::[] -> ["i1", ta], ["out",Bool]
| _ ->
let inputs = List.mapi (fun i t -> assert(t=Bool); "i"^(string_of_int i),t) vl in
List.tl inputs, ["out",Bool]
let step11 lxm _str = {
name = "step";
lxm = lxm;
idx_ins = [0];
idx_outs = [0];
impl = Predef;
}
let step21 lxm _impl _str = {
name = "step";
lxm = lxm;
idx_ins = [0;1];
idx_outs = [0];
impl = Predef;
}
let make_soc key profile steps = {
key = key;
profile = profile;
clock_profile = [];
instances = [];
precedences = [];
step = steps;
memory = No_mem;
assertions = [];
}
let (get_mem_name : Soc.key -> Data.t -> string) =
fun (_k,_tl,_) _vt ->
"_memory"
let of_fby_soc_key :Lxm.t -> Soc.var_expr -> Soc.key -> Soc.t =
fun lxm _init sk ->
let _,tl,_ = sk in
let t = List.hd tl in
let pre_mem:var = (get_mem_name sk t, t) in
let prof = soc_profile_of_types tl in
let _v1,v2,vout =
match prof with ([v1;v2],[vout]) -> v1,v2,vout | _ -> assert false
in
{
key = sk;
profile = prof;
clock_profile = [];
instances = [];
memory = Mem t;
step = [
{
name = "get";
lxm = lxm;
idx_ins = [];
idx_outs = [0];
impl = Gaol([pre_mem],[Call([Var(vout)], Assign, [Var(pre_mem)], lxm
)]);
};
{
name = "set";
lxm = lxm;
idx_ins = [1];
idx_outs = [];
impl = Gaol([pre_mem],[Call([Var(pre_mem)], Assign, [Var(v2)], lxm)]);
};
];
precedences = ["set", ["get"]];
assertions = [];
}
let of_soc_key : Lxm.t -> Soc.key -> Soc.t =
fun lxm sk ->
let (id, tl, _) = sk in
let sp = soc_profile_of_types in
let sp_nary = soc_profile_of_types_nary in
match id with
| "Lustre::ruminus"
| "Lustre::iuminus"
| "Lustre::uminus"
| "Lustre::not"
| "Lustre::real2int"
| "Lustre::int2real"
| "Lustre::random_int"
-> (make_soc sk (sp tl) [step11 lxm id])
| "Lustre::mod"
| "Lustre::iplus"
| "Lustre::rplus"
| "Lustre::plus"
| "Lustre::times"
| "Lustre::itimes"
| "Lustre::rtimes"
| "Lustre::slash"
| "Lustre::islash"
| "Lustre::rslash"
| "Lustre::div"
| "Lustre::idiv"
| "Lustre::rdiv"
| "Lustre::minus"
| "Lustre::iminus"
| "Lustre::rminus"
| "Lustre::lt"
| "Lustre::gt"
| "Lustre::lte"
| "Lustre::gte"
| "Lustre::ilt"
| "Lustre::igt"
| "Lustre::ilte"
| "Lustre::igte"
| "Lustre::rlt"
| "Lustre::rgt"
| "Lustre::rlte"
| "Lustre::rgte"
| "Lustre::and"
| "Lustre::eq"
| "Lustre::neq"
| "Lustre::or"
| "Lustre::xor"
| "Lustre::impl" -> (make_soc sk (sp tl) [step21 lxm None id])
| "Lustre::current" -> (
match sk with
| _,tl, Curr(cc) -> (
assert(tl<>[]);
let t = List.hd (List.tl tl) in
let mem:var = (get_mem_name sk t, t) in
let prof:var list * var list = sp tl in
let cv,vin,vout =
match prof with ([cv;vin],[vout]) -> cv,vin,vout | _ -> assert false
in
{
key = sk;
profile = (sp tl);
clock_profile = [];
instances = [];
memory = Mem (t);
step = [
{
name = "step";
lxm = lxm;
idx_ins = [0;1];
idx_outs = [0];
impl =
Gaol([],
[Case((fst cv),[
(Lv6Id.string_of_long false cc, [Call([Var(mem)],
Assign, [Var(vin)],
lxm)])],
lxm);
Call([Var(vout)], Assign, [Var(mem)], lxm )])
};
];
precedences = [];
assertions = [];
}
)
| _,_tl, Nomore ->
raise (Lv6errors.Compile_error(lxm, "current applied on the base clock"))
| _,_, _ -> assert false
)
| "Lustre::pre" ->
let _,tl,_ = sk in
let t = List.hd tl in
let pre_mem:var = (get_mem_name sk t, t) in
let prof = sp tl in
let v1,vout = match prof with ([v1],[vout]) -> v1,vout | _ -> assert false in
{
key = sk;
profile = (sp tl);
clock_profile = [];
instances = [];
memory = Mem (t);
step = [
{
name = "get";
lxm = lxm;
idx_ins = [];
idx_outs = [0];
impl = Gaol([],[Call([Var(vout)], Assign, [Var(pre_mem)], lxm)]);
};
{
name = "set";
lxm = lxm;
idx_ins = [0];
idx_outs = [];
impl = Gaol([],[Call([Var(pre_mem)], Assign, [Var(v1)], lxm )]);
};
];
precedences = ["set", ["get"]];
assertions = [];
}
| "Lustre::arrow" ->
let prof = sp tl in
{
key = sk;
profile = prof;
clock_profile = [];
instances = [];
step = [
{
name = "step";
lxm = lxm;
idx_ins = [0;1];
idx_outs = [0];
impl = Predef;
}
];
precedences = [];
assertions = [];
memory = Mem Bool;
}
| "Lustre::if" -> {
key = sk;
profile = (sp tl);
clock_profile = [];
instances = [];
precedences = [];
assertions = [];
memory = No_mem;
step = [
{
name = "step";
lxm = lxm;
idx_ins = [0; 1; 2];
idx_outs = [0];
impl = Predef;
} ];
}
| "Lustre::nor" ->
let size = match sk with
| _,[Array(Bool,size);_],_ -> size
| _,bools,_ ->
if List.exists (fun t -> t<>Bool) bools then
failwith "type error in nor"
else
List.length bools
in
{
Soc.key = sk;
Soc.profile = sp_nary tl;
Soc.clock_profile = [];
Soc.instances = [] ;
Soc.step = [
{
name = "step";
lxm = lxm;
idx_ins = [0];
idx_outs = [0];
impl = Boolred(0, 0, size);
}
];
Soc.memory = No_mem;
Soc.precedences = [];
Soc.assertions = [];
}
| "Lustre::diese" ->
let size = match sk with
| _,[Array(Bool,size);_],_ -> size
| _,bools,_ ->
if List.exists (fun t -> t<>Bool) bools then
failwith "type error in #"
else
List.length bools
in
{
Soc.key = sk;
Soc.profile = sp_nary tl;
Soc.clock_profile = [];
Soc.instances = [] ;
Soc.step = [
{
name = "step";
lxm = lxm;
idx_ins = [0];
idx_outs = [0];
impl = Boolred(0,1, size);
}
];
Soc.memory = No_mem;
Soc.precedences = [];
Soc.assertions = [];
}
| _ ->
failwith ("*** The soc of "^id ^ " is not defined! \n")
(** Instancie un composant polymorphe avec un type concret. *)
let instanciate_soc: Soc.t -> Data.t -> Soc.t =
fun c concrete_type ->
let rec instanciate_type vt =
match vt with
| Alpha _ -> concrete_type
| Struct(sn, fl) ->
Struct(sn, List.map (fun (id,vt) -> (id,instanciate_type vt)) fl)
| Array(vt,i) -> Array(instanciate_type vt,i)
| vt -> vt
in
let new_profile =
List.map (fun (vn,vt) -> vn, instanciate_type vt) (fst c.profile),
List.map (fun (vn,vt) -> vn, instanciate_type vt) (snd c.profile)
in
let instanciate_key (key1, key2, key3) =
(key1, List.map instanciate_type key2, key3)
in
let new_key = instanciate_key c.key in
let new_instances =
List.map (fun (id,sk) -> (id,instanciate_key sk)) c.instances
in
{
c with
key = new_key;
profile = new_profile;
instances = new_instances;
}
let make_array_slice_soc : Lxm.t -> Lic.slice_info -> int -> Data.t -> Soc.t =
fun lxm si s t ->
let size = si.Lic.se_width in
let array_type_in = Array(t,s) in
let array_type_out = Array(t,size) in
let key_prof = [array_type_in; array_type_out] in
{
key = ("Lustre::array_slice", key_prof,
Slic(si.Lic.se_first,si.Lic.se_last,si.Lic.se_step));
profile = (["i1", array_type_in], ["out", array_type_out]);
clock_profile = [];
instances = [];
step = [
{
name = "step";
lxm = lxm;
idx_ins = [0];
idx_outs = [0];
impl = Predef;
};
];
precedences = [];
assertions = [];
memory = No_mem;
}
let make_array_soc: Lxm.t -> int -> Data.t -> Soc.t =
fun lxm i t ->
let iprof =
let res = ref [] in
for k=i downto 1 do
res:= ("i"^(string_of_int k),t) :: !res;
done;
!res
in
let array_type = Array(t,i) in
let key_prof = (List.map snd iprof) @ [array_type] in
{
key = ("Lustre::array", key_prof, Nomore);
profile = (iprof, ["out", array_type]);
clock_profile = [];
instances = [];
step = [
{
name = "step";
lxm = lxm;
idx_ins = SocUtils.gen_index_list i;
idx_outs = [0];
impl = Predef;
};
];
precedences = [];
assertions = [];
memory = No_mem;
}
let make_array_concat_soc: Lxm.t -> int -> int -> Data.t -> Soc.t =
fun lxm s1 s2 t ->
let iprof = (["i1", Array(t,s1); "i2", Array(t,s2)], ["out", Array(t,s1+s2)])in
let key_prof = [Array(t,s1); Array(t,s2); Array(t,s1+s2)] in
{
key = ("Lustre::concat", key_prof, Nomore);
profile = iprof;
clock_profile = [];
instances = [];
step = [
{
name = "step";
lxm = lxm;
idx_ins = [0;1];
idx_outs = [0];
impl = Predef;
};
];
precedences = [];
assertions = [];
memory = No_mem;
}
let make_hat_soc: Lxm.t -> int -> Data.t -> Soc.t =
fun lxm i t ->
let array_type =
match t with
| Data.Alpha _ -> assert false
| t -> Data.Array(t,i)
in
{
key = ("Lustre::hat", [t;array_type], Nomore);
profile = ([("i1", t)], ["out", array_type]);
clock_profile = [];
instances = [];
step = [
{
name = "step";
lxm = lxm ;
idx_ins = [0];
idx_outs = [0];
impl = Predef;
};
];
precedences = [];
assertions = [];
memory = No_mem;
}
let output_type_of_op op tl =
match op with
| "Lustre::eq"
| "Lustre::neq"
| "Lustre::lt" | "Lustre::rlt" | "Lustre::ilt"
| "Lustre::gt" | "Lustre::rgt" | "Lustre::igt"
| "Lustre::lte"| "Lustre::rlte" | "Lustre::ilte"
| "Lustre::gte"| "Lustre::rgte" | "Lustre::igte"
| "Lustre::nor"
| "Lustre::diese"
-> Bool
| "Lustre::real2int"
| "Lustre::random_int"
-> Int
| "Lustre::int2real"
-> Real
| "Lustre::if" -> assert(tl<>[]);List.hd (List.tl tl)
| "Lustre::hat" -> assert false
| "Lustre::array" -> assert false
| "Lustre::concat" -> assert false
| "Lustre::arrow" -> assert false
| "Lustre::current" -> assert false
| "Lustre::array_slice" -> assert false
| _ ->
List.hd tl
let (soc_interface_of_pos_op:
Lxm.t -> Lic.by_pos_op -> Data.t list -> Soc.var_expr option -> Soc.t) =
fun lxm op types fby_init_opt ->
match (op, types,fby_init_opt) with
| Lic.PREDEF_CALL ({Lxm.it=("Lustre","if"),[];_}),_ ,_ ->
let concrete_type = List.nth types 1 in
let soc = of_soc_key lxm ("Lustre::if", types@[concrete_type], Nomore) in
instanciate_soc soc concrete_type
| Lic.PREDEF_CALL {Lxm.it=(op,sargs);_}, _, _ ->
assert (sargs=[]);
let soc_name = Lv6Id.string_of_long false op in
let out_type = output_type_of_op soc_name types in
let soc = of_soc_key lxm (soc_name, types@[out_type], Nomore) in
soc
| Lic.FBY, _, Some init ->
let concrete_type = List.nth types 0 in
let soc = of_fby_soc_key lxm init (("Lustre::fby"),
types@[concrete_type], MemInit init) in
instanciate_soc soc concrete_type
| Lic.FBY, _, None -> assert false
| Lic.PRE, _, _ ->
let concrete_type = List.nth types 0 in
let soc = of_soc_key lxm (("Lustre::pre"), types@[concrete_type], Nomore) in
instanciate_soc soc concrete_type
| Lic.CURRENT (Some(cc)), _, _ ->
let concrete_type = try List.nth types 1 with _ -> assert false in
let soc = of_soc_key lxm (("Lustre::current"), types@[concrete_type], Curr(cc)) in
instanciate_soc soc concrete_type
| Lic.CURRENT None, _, _ ->
let concrete_type = try List.nth types 0 with _ -> assert false in
let soc = of_soc_key lxm (("Lustre::current"), types@[concrete_type], Nomore) in
instanciate_soc soc concrete_type
| Lic.ARROW, _, _ ->
let concrete_type = List.nth types 0 in
let soc = of_soc_key lxm (("Lustre::arrow"), types@[concrete_type],
MemInit(Const("_true", Data.Bool)))
in
let soc = instanciate_soc soc concrete_type in
soc
| Lic.HAT i,_, _ ->
let elt_type = List.nth types 0 in
(make_hat_soc lxm i elt_type)
| Lic.ARRAY, _, _ ->
let elt_type = List.nth types 0 in
let i = (List.length types) in
(make_array_soc lxm i elt_type)
| Lic.ARRAY_SLICE sinfo, [Array (t, s)], _ -> (make_array_slice_soc lxm sinfo s t)
| Lic.ARRAY_SLICE _sinfo, _, _ -> assert false
| Lic.CONCAT, [Array (t1, s1); Array (t2, s2)], _->
assert (t1=t2);
(make_array_concat_soc lxm s1 s2 t1)
| Lic.CONCAT , _, _ -> assert false
| Lic.CALL _,_,_ -> assert false
| Lic.CONST _ , _,_ -> assert false
| Lic.VAR_REF _, _,_ -> assert false
| Lic.CONST_REF _, _,_ -> assert false
| Lic.STRUCT_ACCESS _, _,_ -> assert false
| Lic.WHEN _, _,_ -> assert false
| Lic.TUPLE, _,_ -> assert false
| Lic.ARRAY_ACCES _, _,_ -> assert false