-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_const_prop_switch.cpp
88 lines (69 loc) · 1.6 KB
/
test_const_prop_switch.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
/******************************************************************************
* 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<int> din;
void test_method () {
int x = 0;
x++;
int y = 0;
switch (x) {
case 0:
y = 1;
break;
case 1+1:
y = 3;
break;
}
sct_assert_const(y == 0);
switch (x) {
case 0:
y+=1;
break;
case 1:
y+=2;
break;
case 2:
y+=3;
break;
default:
y = -1;
break;
}
sct_assert_const(x == 1);
sct_assert_const(y == 2);
switch (din.read()) {
case 0:
x = 12;
y = 1;
break;
case 1:
x = 12;
y = 2;
break;
default:
x = 12;
y = 2;
break;
}
sct_assert_const(x == 12);
sct_assert_unknown(y);
}
};
int sc_main (int argc, char ** argv ) {
top t_inst{"t_inst"};
sc_start();
return 0;
}