summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/unit/control/wait/wait.cpp
blob: bc3044caa8bcccc1bc43143d44930c37e1025990 (plain)
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
/*****************************************************************************

  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
  more contributor license agreements.  See the NOTICE file distributed
  with this work for additional information regarding copyright ownership.
  Accellera licenses this file to you under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with the
  License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  implied.  See the License for the specific language governing
  permissions and limitations under the License.

 *****************************************************************************/

/*****************************************************************************

  wait.cpp -- 

  Original Author: Daniel Aarno, Intel, Corp 2015-07-23

 *****************************************************************************/

/*****************************************************************************

  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
  changes you are making here.

      Name, Affiliation, Date:
  Description of Modification:

 *****************************************************************************/

#include <systemc>

using sc_core::sc_time;
using sc_core::SC_US;

namespace {
int first_line = 0;

bool endsWith(const std::string &str, const std::string &ending) {
    if (ending.size() > str.size()) {
        return false;
    }
    return std::equal(ending.rbegin(), ending.rend(), str.rbegin());
}

bool waitFunIsTrue() {
  if (sc_core::sc_time_stamp() < sc_time(2000, SC_US)) {
    return false;
  }

  if (sc_core::sc_time_stamp() < sc_time(3000, SC_US)) {
    sc_time delay(10, SC_US);
    SC_WAITN(delay);
    return false;
  }

  if (sc_core::sc_time_stamp() < sc_time(4000, SC_US)) {
    return false;
  }

  return true;
}

SC_MODULE(Wait) {
  SC_CTOR(Wait) : clk( "clk", 10, SC_US, 0.5, 100, SC_US) {
    SC_THREAD(thread);
    sensitive << clk;
  }

  void thread() {
    sc_time delay(10, SC_US);
    wait(delay);  // 1st

    first_line = __LINE__ + 1;
    SC_WAITN(delay);  // Wait some time
    wait(delay);  // 2nd

    SC_WAIT();  // Wait for clk
    wait(delay);  // 3rd

    SC_WAIT_UNTIL(sc_core::sc_time_stamp() > sc_time(1000, SC_US));
    wait(delay);  // 4th

    SC_WAIT_UNTIL(waitFunIsTrue());
  }

  sc_core::sc_clock clk;
};

}  // namespace

int sc_main(int argc, char ** argv) {
  Wait w("dut");

  sc_core::sc_process_handle hnd( sc_core::sc_find_object("dut.thread") );
  const sc_core::sc_process_b *thread
    = dynamic_cast<sc_core::sc_process_b*>(hnd.get_process_object());
  sc_assert(hnd.valid() && thread);

  sc_assert(thread->file == NULL);  // 1st wait(delay)
  sc_assert(thread->lineno == 0);
  sc_core::sc_start(sc_time(15, SC_US));

  int lineno = first_line;
  sc_assert(endsWith(thread->file, "wait.cpp"));  // SC_WAITN
  sc_assert(thread->lineno == lineno);
  sc_core::sc_start(sc_time(10, SC_US));
  sc_assert(thread->file == NULL);  // 2nd wait(delay)
  sc_assert(thread->lineno == 0);
  sc_core::sc_start(sc_time(10, SC_US));

  lineno += 3;
  sc_assert(endsWith(thread->file, "wait.cpp"));  // SC_WAIT
  sc_assert(thread->lineno == lineno);
  sc_core::sc_start(sc_time(70, SC_US));
  sc_assert(thread->file == NULL);  // 3rd wait(delay)
  sc_assert(thread->lineno == 0);
  sc_core::sc_start(sc_time(10, SC_US));

  lineno += 3;
  sc_assert(endsWith(thread->file, "wait.cpp"));  // SC_WAIT_UNTIL
  sc_assert(thread->lineno == lineno);
  sc_core::sc_start(sc_time(900, SC_US));
  sc_assert(thread->file == NULL);  // 4th wait(delay)
  sc_assert(thread->lineno == 0);

  // Ensure that SC_WAIT_UNTIL can handle nested wait calls
  sc_core::sc_start(sc_time(10, SC_US));
  lineno += 3;
  sc_assert(endsWith(thread->file, "wait.cpp"));  // 2nd SC_WAIT_UNTIL
  sc_assert(thread->lineno == lineno);
  sc_core::sc_start(sc_time(980, SC_US));  // time should be 2005
  sc_assert(endsWith(thread->file, "wait.cpp"));  // SC_WAITN in waitFunIsTrue
  sc_assert(thread->lineno == 60);
  sc_core::sc_start(sc_time(95, SC_US));
  sc_assert(endsWith(thread->file, "wait.cpp"));
  sc_assert(thread->lineno == 60);
  sc_core::sc_start(sc_time(910, SC_US));
  sc_assert(endsWith(thread->file, "wait.cpp"));  // 2nd SC_WAIT_UNTIL
  sc_assert(thread->lineno == lineno);
  sc_core::sc_start(sc_time(1000, SC_US));
  sc_assert(thread->file == NULL);  // done
  sc_assert(thread->lineno == 0);

  return 0;
}