aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/DVeriloggen.v
blob: bf8197e824663a315e3e68c16768ae4813be1fb7 (plain)
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
(*
 * Vericert: Verified high-level synthesis.
 * Copyright (C) 2023 ___ ___ <___@______.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *)

Require Import compcert.common.AST.
Require compcert.common.Errors.
Require Import compcert.lib.Maps.

Require Import vericert.common.Vericertlib.
Require Import vericert.hls.AssocMap.
Require Import vericert.hls.DHTL.
Require Import vericert.hls.ValueInt.
Require Import vericert.hls.Verilog.

Definition transl_list_fun (a : node * Verilog.stmnt) :=
  let (n, stmnt) := a in
  (Vlit (posToValue n), stmnt).

Definition transl_list st := map transl_list_fun st.

Definition scl_to_Vdecl_fun (a : reg * (option io * scl_decl)) :=
  match a with (r, (io, VScalar sz)) => (Vdecl io r sz) end.

Definition scl_to_Vdecl scldecl := map scl_to_Vdecl_fun scldecl.

Definition arr_to_Vdeclarr_fun (a : reg * (option io * arr_decl)) :=
  match a with (r, (io, VArray sz l)) => (Vdeclarr io r sz l) end.

Definition arr_to_Vdeclarr arrdecl := map arr_to_Vdeclarr_fun arrdecl.

Definition inst_ram clk ram :=
  Valways (Vnegedge clk)
          (Vcond (Vbinop Vne (Vvar (ram_u_en ram)) (Vvar (ram_en ram)))
                 (Vseq (Vcond (Vvar (ram_wr_en ram))
                              (Vnonblock (Vvari (ram_mem ram) (Vvar (ram_addr ram)))
                                         (Vvar (ram_d_in ram)))
                              (Vnonblock (Vvar (ram_d_out ram))
                                         (Vvari (ram_mem ram) (Vvar (ram_addr ram)))))
                       (Vnonblock (Vvar (ram_en ram)) (Vvar (ram_u_en ram))))
                 Vskip).

Definition transl_module (m : DHTL.module) : Verilog.module :=
  let case_el_data := list_to_stmnt (transl_list (PTree.elements m.(mod_datapath))) in
  (* let nstate := (max_reg_module m + 1)%positive in *)
  match m.(DHTL.mod_ram) with
  | Some ram =>
    let body :=
       Valways (Vposedge m.(DHTL.mod_clk)) (Vcond (Vbinop Veq (Vvar m.(DHTL.mod_reset)) (Vlit (ZToValue 1)))
                                                  (Vnonblock (Vvar m.(DHTL.mod_st)) (Vlit (posToValue m.(DHTL.mod_entrypoint))))
(Vcase (Vvar (DHTL.mod_st m)) case_el_data (Some Vskip)))
        (*         :: Valways (Vposedge m.(DHTL.mod_clk)) (Vcond (Vbinop Veq (Vvar m.(DHTL.mod_reset)) (Vlit (ZToValue 1))) *)
        (* (Vnonblock (Vvar (DHTL.mod_st m)) (Vlit (posToValue m.(DHTL.mod_entrypoint)))) (Vnonblock (Vvar (DHTL.mod_st m)) (Vvar m.(DHTL.mod_st)))) *)
                :: inst_ram m.(DHTL.mod_clk) ram
                :: List.map Vdeclaration ((* Vdecl None nstate 32 ::  *)
                     (arr_to_Vdeclarr (AssocMap.elements m.(mod_arrdecls))
                     ++ scl_to_Vdecl (AssocMap.elements m.(mod_scldecls)))) in
    Verilog.mkmodule m.(DHTL.mod_start)
                     m.(DHTL.mod_reset)
                     m.(DHTL.mod_clk)
                     m.(DHTL.mod_finish)
                     m.(DHTL.mod_return)
                     m.(DHTL.mod_st)
                     m.(DHTL.mod_stk)
                     m.(DHTL.mod_stk_len)
                     m.(DHTL.mod_params)
                     body
                     m.(DHTL.mod_entrypoint)
  | None =>
    let body :=
        Valways (Vposedge m.(DHTL.mod_clk)) (Vcond (Vbinop Veq (Vvar m.(DHTL.mod_reset)) (Vlit (ZToValue 1)))
                                                  (Vnonblock (Vvar m.(DHTL.mod_st)) (Vlit (posToValue m.(DHTL.mod_entrypoint))))
(Vcase (Vvar (DHTL.mod_st m)) case_el_data (Some Vskip)))
                (* :: Valways (Vposedge m.(DHTL.mod_clk)) (Vcond (Vbinop Veq (Vvar m.(DHTL.mod_reset)) (Vlit (ZToValue 1))) *)
        (* (Vnonblock (Vvar (DHTL.mod_st m)) (Vlit (posToValue m.(DHTL.mod_entrypoint)))) *)
        (* (Vnonblock (Vvar (DHTL.mod_st m)) (Vvar m.(DHTL.mod_st)))) *)
                :: List.map Vdeclaration ((* Vdecl None (DHTL.mod_st m) 32 ::  *)arr_to_Vdeclarr (AssocMap.elements m.(mod_arrdecls))
                                                          ++ scl_to_Vdecl (AssocMap.elements m.(mod_scldecls))) in
    Verilog.mkmodule m.(DHTL.mod_start)
                     m.(DHTL.mod_reset)
                     m.(DHTL.mod_clk)
                     m.(DHTL.mod_finish)
                     m.(DHTL.mod_return)
                     m.(DHTL.mod_st)
                     m.(DHTL.mod_stk)
                     m.(DHTL.mod_stk_len)
                     m.(DHTL.mod_params)
                     body
                     m.(DHTL.mod_entrypoint)
  end.

Definition transl_fundef := transf_fundef transl_module.

Definition transl_program (p: DHTL.program) : Verilog.program :=
  transform_program transl_fundef p.