-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_name_conflict1.cpp
76 lines (62 loc) · 1.45 KB
/
test_name_conflict1.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
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
#include "sct_assert.h"
#include "systemc.h"
using namespace sc_core;
// Local variables name conflicts with empty method names
class mod_if : public sc_module, sc_interface
{
public:
sc_in_clk clk;
sc_signal<bool> rstn;
sc_signal<int> s;
SC_CTOR(mod_if)
{
SC_METHOD(empty_proc);
SC_METHOD(local_var); sensitive << s;
SC_CTHREAD(reg_var, clk.pos()); async_reset_signal_is(rstn, 0);
}
void empty_proc() {
int i = 1;
s = i + 1;
}
void local_var()
{
int i = 1;
int sum = i + 1;
}
void reg_var()
{
int i = 0;
wait();
while (true) {
long sum = i;
wait();
}
}
};
SC_MODULE(Top)
{
sc_in_clk clk;
mod_if minst{"minst"};
mod_if* marr[2];
SC_CTOR(Top) {
minst.clk(clk);
for (int i = 0; i < 2; ++i) {
marr[i] = new mod_if("mod_if");
marr[i]->clk(clk);
}
}
};
int sc_main(int argc, char *argv[])
{
sc_clock clk{"clk", 10, SC_NS};
Top top{"top"};
top.clk(clk);
sc_start();
return 0;
}