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
|
(********************************************************************************************)
|
14
|
(* Translation function *)
|
15
|
(********************************************************************************************)
|
16
|
(* USELESS
|
17
|
let makefile_opt print basename dependencies makefile_fmt machines =
|
18
|
(* If a main node is identified, generate a main target for it *)
|
19
|
match !Options.main_node with
|
20
|
| "" -> ()
|
21
|
| main_node -> (
|
22
|
match Machine_code.get_machine_opt main_node machines with
|
23
|
| None -> Format.eprintf "Unable to find a main node named %s@.@?" main_node; ()
|
24
|
| Some _ -> print basename !Options.main_node dependencies makefile_fmt
|
25
|
)
|
26
|
*)
|
27
|
|
28
|
let gen_files funs basename prog machines dependencies header_file source_lib_file source_main_file makefile_file machines =
|
29
|
let header_out = open_out header_file in
|
30
|
let header_fmt = formatter_of_out_channel header_out in
|
31
|
let source_lib_out = open_out source_lib_file in
|
32
|
let source_lib_fmt = formatter_of_out_channel source_lib_out in
|
33
|
|
34
|
let print_header, print_lib_c, print_main_c, print_makefile = funs in
|
35
|
(* Generating H file *)
|
36
|
print_header header_fmt basename prog machines dependencies;
|
37
|
|
38
|
(* Generating Lib C file *)
|
39
|
print_lib_c source_lib_fmt basename prog machines dependencies;
|
40
|
|
41
|
close_out header_out;
|
42
|
close_out source_lib_out;
|
43
|
|
44
|
match !Options.main_node with
|
45
|
| "" -> () (* No main node: we do not genenrate main nor makefile *)
|
46
|
| main_node -> (
|
47
|
match Machine_code.get_machine_opt main_node machines with
|
48
|
| None -> Format.eprintf "Unable to find a main node named %s@.@?" main_node; assert false
|
49
|
| Some m -> begin
|
50
|
let source_main_out = open_out source_main_file in
|
51
|
let source_main_fmt = formatter_of_out_channel source_main_out in
|
52
|
let makefile_out = open_out makefile_file in
|
53
|
let makefile_fmt = formatter_of_out_channel makefile_out in
|
54
|
|
55
|
(* Generating Main C file *)
|
56
|
print_main_c source_main_fmt m basename prog machines dependencies;
|
57
|
|
58
|
(* Generating Makefile *)
|
59
|
print_makefile basename main_node dependencies makefile_fmt;
|
60
|
|
61
|
close_out source_main_out;
|
62
|
close_out makefile_out
|
63
|
|
64
|
end
|
65
|
)
|
66
|
|
67
|
let translate_to_c header source_lib source_main makefile basename prog machines dependencies =
|
68
|
|
69
|
match !Options.spec with
|
70
|
| "no" -> begin
|
71
|
let module HeaderMod = C_backend_header.EmptyMod in
|
72
|
let module SourceMod = C_backend_src.EmptyMod in
|
73
|
let module SourceMainMod = C_backend_main.EmptyMod in
|
74
|
let module MakefileMod = C_backend_makefile.EmptyMod in
|
75
|
|
76
|
let module Header = C_backend_header.Main (HeaderMod) in
|
77
|
let module Source = C_backend_src.Main (SourceMod) in
|
78
|
let module SourceMain = C_backend_main.Main (SourceMainMod) in
|
79
|
let module Makefile = C_backend_makefile.Main (MakefileMod) in
|
80
|
|
81
|
let funs =
|
82
|
Header.print_alloc_header,
|
83
|
Source.print_lib_c,
|
84
|
SourceMain.print_main_c,
|
85
|
Makefile.print_makefile
|
86
|
in
|
87
|
gen_files
|
88
|
funs basename prog machines dependencies
|
89
|
header source_lib source_main makefile machines
|
90
|
|
91
|
end
|
92
|
| "acsl" -> begin
|
93
|
|
94
|
let module HeaderMod = C_backend_header.EmptyMod in
|
95
|
let module SourceMod = C_backend_src.EmptyMod in
|
96
|
let module SourceMainMod = C_backend_main.EmptyMod in
|
97
|
let module MakefileMod = C_backend_spec.MakefileMod in
|
98
|
|
99
|
let module Header = C_backend_header.Main (HeaderMod) in
|
100
|
let module Source = C_backend_src.Main (SourceMod) in
|
101
|
let module SourceMain = C_backend_main.Main (SourceMainMod) in
|
102
|
let module Makefile = C_backend_makefile.Main (MakefileMod) in
|
103
|
|
104
|
let funs =
|
105
|
Header.print_alloc_header,
|
106
|
Source.print_lib_c,
|
107
|
SourceMain.print_main_c,
|
108
|
Makefile.print_makefile
|
109
|
in
|
110
|
gen_files
|
111
|
funs basename prog machines dependencies
|
112
|
header source_lib source_main makefile machines
|
113
|
|
114
|
end
|
115
|
| "c" -> begin
|
116
|
assert false (* not implemented yet *)
|
117
|
end
|
118
|
| _ -> assert false
|
119
|
(* Local Variables: *)
|
120
|
(* compile-command:"make -C ../../.." *)
|
121
|
(* End: *)
|