-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_mif_array_ptr.cpp
123 lines (99 loc) · 2.56 KB
/
test_mif_array_ptr.cpp
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
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
#include <systemc.h>
// Constant pointers, record and constant record in module and MIF
struct Rec {
sc_uint<4> a;
bool b;
int c;
};
struct mod_if : public sc_module, sc_interface
{
sc_signal<unsigned> s;
Rec r;
const Rec CR = {9, true, -2};
SC_HAS_PROCESS(mod_if);
mod_if(const sc_module_name& name) :
sc_module(name)
{
SC_METHOD (var_rec); sensitive << s;
}
sc_signal<int> t0;
void var_rec() {
r.a = s.read()+1;
r.b = r.a * CR.a;
int l = s.read() ? r.c : r.a.to_int();
t0 = l;
}
};
SC_MODULE(Top) {
sc_in_clk clk{"clk"};
sc_signal<bool> rst;
sc_signal<unsigned> t;
const Rec R = {9, true, -2};
const unsigned ca[2] = {11,12};
//const unsigned* cpa[2] = {}; -- not supported yet
int i = 42;
const int* pi = &i;
const int c = 43;
const int* pc = &c;
const int* pd;
mod_if* mif[2];
SC_CTOR(Top) {
for (int i = 0; i < 2; i++) {
mif[i] = new mod_if("mif");
}
pd = sc_new<int>(44);
// for (int i = 0; i < 2; i++) {
// cpa[i] = sc_new<unsigned>(2*i+1);
// }
SC_METHOD (const_ptr); sensitive << t;
SC_METHOD (const_ptr_arr); sensitive << t;
SC_METHOD (const_rec); sensitive << t;
SC_METHOD (mif_rec); sensitive << t;
}
sc_signal<int> t1;
void const_ptr() {
int l;
i = 41;
l = *pi;
l = *pc;
l = *pd;
t1 = l;
}
sc_signal<int> t2;
void const_ptr_arr() {
unsigned j = t.read();
unsigned lu;
lu = ca[j];
t2 = lu;
}
sc_signal<int> t3;
void const_rec() {
int k = R.b ? R.c : t.read();
k = R.a.to_int();
t3 = k;
}
sc_signal<int> t4;
void mif_rec() {
int k;
unsigned ii = t.read();
//k = mif[0]->r.a; // Error reported
//k = mif[ii]->r.c; // Error reported
k = mif[0]->CR.c;
k = mif[ii]->CR.a.to_int();
t4 = k;
}
};
int sc_main(int argc, char **argv)
{
sc_clock clk {"clk", sc_time(1, SC_NS)};
Top top{"top"};
top.clk(clk);
sc_start();
return 0;
}