Project

General

Profile

Download (4.82 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
(********************************************************************************************)
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 -> begin
49
      Global.main_node := main_node;
50
      Format.eprintf "Code generation error: %a@." Corelang.pp_error LustreSpec.Main_not_found;
51
      raise (Corelang.Error (Location.dummy_loc, LustreSpec.Main_not_found))
52
    end
53
    | Some m -> begin
54
      let source_main_out = open_out source_main_file in
55
      let source_main_fmt = formatter_of_out_channel source_main_out in
56
      let makefile_out = open_out makefile_file in
57
      let makefile_fmt = formatter_of_out_channel makefile_out in
58

    
59
      (* Generating Main C file *)
60
      print_main_c source_main_fmt m basename prog machines dependencies;
61
      
62
      (* Generating Makefile *)
63
     print_makefile basename main_node dependencies makefile_fmt;
64

    
65
     close_out source_main_out;
66
     close_out makefile_out
67

    
68
    end
69
  )
70

    
71
let translate_to_c header source_lib source_main makefile basename prog machines dependencies  =
72

    
73
  match !Options.spec with
74
  | "no" -> begin
75
    let module HeaderMod = C_backend_header.EmptyMod in
76
    let module SourceMod = C_backend_src.EmptyMod in
77
    let module SourceMainMod = C_backend_main.EmptyMod in
78
    let module MakefileMod = C_backend_makefile.EmptyMod in
79

    
80
    let module Header = C_backend_header.Main (HeaderMod) in
81
    let module Source = C_backend_src.Main (SourceMod) in
82
    let module SourceMain = C_backend_main.Main (SourceMainMod) in
83
    let module Makefile = C_backend_makefile.Main (MakefileMod) in
84
        
85
    let funs = 
86
      Header.print_alloc_header, 
87
      Source.print_lib_c, 
88
      SourceMain.print_main_c, 
89
      Makefile.print_makefile 
90
    in
91
    gen_files 
92
      funs basename prog machines dependencies 
93
      header source_lib source_main makefile machines
94

    
95
  end
96
  | "acsl" -> begin
97

    
98
    let module HeaderMod = C_backend_header.EmptyMod in
99
    let module SourceMod = C_backend_src.EmptyMod in
100
    let module SourceMainMod = C_backend_main.EmptyMod in
101
    let module MakefileMod = C_backend_spec.MakefileMod in
102

    
103
    let module Header = C_backend_header.Main (HeaderMod) in
104
    let module Source = C_backend_src.Main (SourceMod) in
105
    let module SourceMain = C_backend_main.Main (SourceMainMod) in
106
    let module Makefile = C_backend_makefile.Main (MakefileMod) in
107
        
108
    let funs = 
109
      Header.print_alloc_header, 
110
      Source.print_lib_c,
111
      SourceMain.print_main_c,
112
      Makefile.print_makefile 
113
    in
114
    gen_files
115
      funs basename prog machines dependencies
116
      header source_lib source_main makefile machines
117

    
118
  end
119
  | "c" -> begin
120
    assert false (* not implemented yet *)
121
  end
122
  | _ -> assert false
123
(* Local Variables: *)
124
(* compile-command:"make -C ../../.." *)
125
(* End: *)
(1-1/7)