-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_const_prop_deep_fork.cpp
103 lines (78 loc) · 1.58 KB
/
test_const_prop_deep_fork.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
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
//
// Created by ripopov on 7/6/18.
//
#include <systemc.h>
#include <sct_assert.h>
SC_MODULE(top)
{
SC_CTOR(top)
{
SC_METHOD(test_method);
sensitive << din;
}
sc_signal<bool> din{"din", 0};
int yg;
int
fork0(int &x1)
{
int &ygr = yg;
ygr++;
if (din) {
x1 = 1;
return x1 + ygr++;
}
else {
x1 = 2;
return x1 + ygr++;
}
}
int
fork1(int &x2)
{
if (din) {
fork0(x2);
yg++;
if (x2 != 3)
x2 = 3;
else
x2 = 3;
return yg;
}
else {
fork0(x2);
x2 = (yg == 4) ? yg - 1 : 3;
if (x2 != 3)
x2 = 3;
yg++;
return yg;
}
}
void
test_method()
{
yg = 0;
int x = 0;
int y = 0;
y = fork0(x);
sct_assert_const(yg == 2);
sct_assert_unknown(x);
sct_assert_unknown(y);
y = fork1(x);
sct_assert_const(yg == 5);
sct_assert_const(y == 5);
sct_assert_const(x == 3);
}
};
int
sc_main(int argc, char **argv)
{
top t_inst{"t_inst"};
sc_start();
return 0;
}