-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_cthread_break_via_func.cpp
223 lines (177 loc) · 4.24 KB
/
test_cthread_break_via_func.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/******************************************************************************
* 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;
// break statement in loop in called function
class A : public sc_module
{
public:
sc_in<bool> clk{"clk"};
sc_signal<bool> nrst{"nrst"};
sc_in<bool> a{"a"};
sc_out<bool> b{"b"};
sc_out<bool> c{"c"};
sc_out<bool>* p;
int m;
int k;
int k1;
int k2;
int k3;
int k4;
int n;
int* q;
SC_CTOR(A) {
SC_CTHREAD(break_via_func1, clk.pos());
async_reset_signal_is(nrst, false);
SC_CTHREAD(break_via_func2, clk.pos());
async_reset_signal_is(nrst, false);
SC_CTHREAD(break_via_func3, clk.pos());
async_reset_signal_is(nrst, false);
SC_CTHREAD(break_via_func4, clk.pos());
async_reset_signal_is(nrst, false);
SC_CTHREAD(break_via_func5, clk.pos());
async_reset_signal_is(nrst, false);
SC_CTHREAD(fcall_break1, clk.pos());
async_reset_signal_is(nrst, false);
}
void f()
{
for (int i = 0; i < 2; i++) {
if (a.read()) break;
wait(); // 2
}
}
void g()
{
if (a) {
int kk = 3;
}
}
// @break in function, BUG in real design
void break_via_func1()
{
wait();
while (1) {
k1 = 1;
f();
k1 = 2;
sct_assert_level(1);
wait(); // 0
}
}
void break_via_func2()
{
wait();
while (1) {
k2 = 1;
f();
k2 = 2;
g();
sct_assert_level(1);
wait(); // 0
}
}
void break_via_func3()
{
wait();
while (1) {
k3 = 1;
if (b.read()) {
f();
k3 = 2;
}
if (c.read()) {
g();
k3 = 4;
}
wait(); // 0
}
}
// break in while loop in function
void f1()
{
while (a.read()) {
wait();
if (b.read()) break;
}
}
void break_via_func4()
{
wait();
while (1) {
f1();
sct_assert_level(1);
wait();
}
}
// break in function with return
sc_signal<int> si;
int f2()
{
int res = 1;
while (a.read() || b.read()) {
res = si.read();
wait();
if (res == 1) break;
}
return res;
}
void break_via_func5()
{
wait();
while (1) {
int i = f2();
f1();
sct_assert_level(1);
wait();
}
}
// --------------------------------------------------------------------------
int f3(int i) {
return (i+1);
}
// Break from loop followed by function call
void fcall_break1()
{
k4 = 0;
wait();
while (true)
{
for (int i = 0; i < 2; i++) {
if (a.read()) {
k4 = 1;
break;
}
wait(); // 2
}
k4 = f3(k4);
wait(); // 3
}
}
};
class B_top : public sc_module
{
public:
sc_signal<bool> clk{"clk"};
sc_signal<bool> a{"a"};
sc_signal<bool> b{"b"};
sc_signal<bool> c{"c"};
A a_mod{"a_mod"};
SC_CTOR(B_top) {
a_mod.clk(clk);
a_mod.a(a);
a_mod.b(b);
a_mod.c(c);
}
};
int sc_main(int argc, char* argv[])
{
B_top b_mod{"b_mod"};
sc_start();
return 0;
}