-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmif_array_sc_vector.sv
146 lines (128 loc) · 3.58 KB
/
mif_array_sc_vector.sv
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
//==============================================================================
//
// The code is generated by Intel Compiler for SystemC, version 1.5.12
// see more information at https://github.com/intel/systemc-compiler
//
//==============================================================================
//==============================================================================
//
// Module: Top ()
//
module Top // "top"
(
input logic clk
);
// Variables generated for SystemC signals
logic rstn;
logic req[3];
logic [15:0] p_data[2][3];
logic p_clk[2];
logic p_rstn[2];
logic p_req[2][3];
// Local parameters generated for C++ constants
localparam logic [31:0] N = 3;
localparam logic [31:0] M = 2;
// Assignments generated for C++ channel arrays
assign p_clk[0] = clk;
assign p_clk[1] = clk;
assign p_rstn[0] = rstn;
assign p_rstn[1] = rstn;
assign p_req[0][0] = req[0];
assign p_req[0][1] = req[1];
assign p_req[0][2] = req[2];
assign p_req[1][0] = req[0];
assign p_req[1][1] = req[1];
assign p_req[1][2] = req[2];
//------------------------------------------------------------------------------
// Clocked THREAD: p_threadProc (test_array_sc_vector.cpp:28:5)
// Thread-local variables
logic [15:0] p_data_next[2][3];
// Next-state combinational logic
always_comb begin : p_threadProc_comb // test_array_sc_vector.cpp:28:5
p_threadProc_func;
end
function void p_threadProc_func;
p_data_next[0] = p_data[0];
for (integer i_1 = 0; i_1 < 3; ++i_1)
begin
p_data_next[0][i_1] = p_req[0][i_1] ? i_1 : 0;
end
endfunction
// Synchronous register update
always_ff @(posedge p_clk[0] or negedge p_rstn[0])
begin : p_threadProc_ff
if ( ~p_rstn[0] ) begin
for (integer i = 0; i < 3; ++i)
begin
p_data[0][i] <= 0;
end
end
else begin
p_data[0] <= p_data_next[0];
end
end
//------------------------------------------------------------------------------
// Clocked THREAD: p_threadProc0 (test_array_sc_vector.cpp:28:5)
// Next-state combinational logic
always_comb begin : p_threadProc0_comb // test_array_sc_vector.cpp:28:5
p_threadProc0_func;
end
function void p_threadProc0_func;
p_data_next[1] = p_data[1];
for (integer i_1 = 0; i_1 < 3; ++i_1)
begin
p_data_next[1][i_1] = p_req[1][i_1] ? i_1 : 0;
end
endfunction
// Synchronous register update
always_ff @(posedge p_clk[1] or negedge p_rstn[1])
begin : p_threadProc0_ff
if ( ~p_rstn[1] ) begin
for (integer i = 0; i < 3; ++i)
begin
p_data[1][i] <= 0;
end
end
else begin
p_data[1] <= p_data_next[1];
end
end
//------------------------------------------------------------------------------
// Clocked THREAD: mainProc (test_array_sc_vector.cpp:72:5)
// Thread-local variables
logic req_next[3];
// Next-state combinational logic
always_comb begin : mainProc_comb // test_array_sc_vector.cpp:72:5
mainProc_func;
end
function void mainProc_func;
logic [15:0] TMP_0;
integer i_2;
logic [15:0] x;
req_next = req;
for (integer i_1 = 0; i_1 < M; ++i_1)
begin
for (integer j = 0; j < N; ++j)
begin
i_2 = j;
// Call getData() begin
TMP_0 = p_data[i_1][i_2];
// Call getData() end
x = TMP_0;
end
end
endfunction
// Synchronous register update
always_ff @(posedge clk or negedge rstn)
begin : mainProc_ff
if ( ~rstn ) begin
for (integer i = 0; i < N; ++i)
begin
req[i] <= 0;
end
end
else begin
req <= req_next;
end
end
endmodule