-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCIndet.cpp
323 lines (276 loc) · 11.4 KB
/
SCIndet.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
/*-----------------------------------------------------------------------------+
| |
| SCL - Simulation Class Library |
| |
| (c) 1994-98 Marc Diefenbruch, Wolfgang Textor |
| University of Essen, Germany |
| |
+---------------+-------------------+---------------+-------------------+------+
| Module | File | Created | Project | |
+---------------+-------------------+---------------+-------------------+------+
| SCIndet | SCIndet.cc | 25. Apr 1996 | SCL | |
+---------------+-------------------+---------------+-------------------+------+
| |
| Change Log |
| |
| Nr. Date Description |
| ----- -------- ------------------------------------------------------ |
| 001 |
| 000 --.--.-- Neu angelegt |
| |
+-----------------------------------------------------------------------------*/
/* Lineal
00000000001111111111222222222233333333334444444444555555555566666666667777777777
01234567890123456789012345678901234567890123456789012345678901234567890123456789
*/
#include <stdio.h>
#include <time.h>
#include <chrono>
#include "SCStream.h"
#include "SCIndet.h"
#include "SCRunnable.h"
#include "SCScheduler.h"
#include "SCProcess.h"
#include "SCTimeEvent.h"
#include "SCActiveRunnable.h"
#include "SCDebug.h"
#include "SCStateType.h"
#include "SCTransition.h"
#include "SCProcessType.h"
#include "SCProcessTypeList.h"
#if _SC_DMALLOC
#include <dmalloc.h>
#endif
using namespace std::chrono;
SCIndet::SCIndet (SCIndetType pIndetType,
SCTime theStopTime,
SCBoolean preEnabTrans,
SCBoolean errors,
SCNatural numErrors,
SCBoolean deadCode,
SCName2PropFuncPtr * stopAtom) :
SCObject(SC_INDET, NULL),
type(pIndetType),
prefetchEnabledTransitions(preEnabTrans),
findErrors(errors),
maxNumOfErrors(numErrors),
numOfErrors(0),
reportDeadCode(deadCode),
executedTransitions(0),
hasStopTime(theStopTime != 0.0),
stopTime(theStopTime),
numOfDeadlocks(0),
numOfSignalDrops(0),
numOfSignalLosses(0),
numOfFailedProcessCreations(0),
numOfMissingReceivers(0),
numOfFailedAssertions(0),
numOfCycleDetections(0),
errorDumpActive(false),
stopCondition(stopAtom)
{
realStartTime = std::chrono::high_resolution_clock::now(); // remember start time for run time calculation is Display method
if (findErrors && maxNumOfErrors == 0)
maxNumOfErrors = UINT_MAX;
}
SCIndet::~SCIndet (void)
{
}
SCActiveRunnableList * SCIndet::ActiveRunnables(SCTimeEventSaveList *activeQueue) const
{
SCTimeEventIter iter(*activeQueue);
SCTimeEvent * timeEvent;
SCTime currentTime;
SCEnabledTransitionList * enabledTransitionList;
SCActiveRunnable * activeRunnable;
SCActiveRunnableList * activeRunnableList;
SCAutomaton * automaton;
timeEvent = iter++; // timeEvent holds now first
// element of activeQueue
assert(timeEvent);
currentTime = timeEvent->GetTime(); // currentTime = time of
// first timeEvent in activeQueue
assert(currentTime >= SCScheduler::GetCurrentTime());
SCScheduler::SetCurrentTime(currentTime); // adjust scheduler time if
// necessary
activeRunnableList = new SCActiveRunnableList(true, NULL);
assert(activeRunnableList);
// Search all runnables with minimal wakeup time and store
// them in activeRunnableList:
while (timeEvent && // events left?
timeEvent->GetTime() == currentTime) // event time minimal?
{
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCIndet::ActiveRunnables(): checking " << *timeEvent << std::endl;
#endif
if (timeEvent->IsAutomaton()) // runnable is a process
{ // or procedure?
automaton = (SCAutomaton *)timeEvent->GetRunnable();
assert(automaton);
if (automaton->IsInState() && prefetchEnabledTransitions)
{ // process executing State() method?
enabledTransitionList = automaton->RetrieveEnabledTransitions();
// retrieve or calculate set of
// enabled transitions
assert (enabledTransitionList); // if process is in activeQueue
// it MUST have enabled transitions
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCIndet::ActiveRunnables(): adding ";
scValidationDebugLog << *automaton << " with ";
scValidationDebugLog << enabledTransitionList->NumOfElems();
scValidationDebugLog << " enabled transitions";
#endif
#if _SC_SIMULATION_DEBUG
scSimulationDebugLog << "SCIndet::ActiveRunnables(): adding ";
scSimulationDebugLog << *automaton << std::endl;
#endif
}
else // process executing Request method!
{
enabledTransitionList = NULL; // empty transition list marks
// process in Request method!
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCIndet::ActiveRunnables(): ";
scValidationDebugLog << "adding requesting or calling ";
scValidationDebugLog << *automaton;
#endif
#if _SC_SIMULATION_DEBUG
scSimulationDebugLog << "SCIndet::ActiveRunnables(): ";
scSimulationDebugLog << "adding ";
scSimulationDebugLog << *automaton << "." << std::endl;
#endif
}
}
else // runnable is machine, timer or path!
{
#if _SC_VALIDATION_DEBUG || _SC_SIMULATION_DEBUG
SCRunnable * runnable = timeEvent->GetRunnable();
assert(runnable);
#endif
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCIndet::ActiveRunnables(): adding ";
scValidationDebugLog << *runnable;
#endif
#if _SC_SIMULATION_DEBUG
scSimulationDebugLog << "SCIndet::ActiveRunnables(): adding ";
scSimulationDebugLog << *runnable << "." << endl;
#endif
enabledTransitionList = NULL;
}
#if _SC_VALIDATION_DEBUG
if (type == scIndetVerification)
scValidationDebugLog << " (" << NumOfSuccessors() << " buechi successors)." << std::endl;
else
scValidationDebugLog << "." << std::endl;
#endif
activeRunnable = new SCActiveRunnable(timeEvent,
enabledTransitionList,
NumOfSuccessors());
// an active runnable consists
// of a runnable and a set of
assert(activeRunnable); // enabled transitions
activeRunnableList->InsertAfter(activeRunnable);
// insert active runnable in
// active runnable list
timeEvent = iter++;
} // while
return activeRunnableList;
}
SCStream& operator<< (SCStream& pStream, const SCIndet& pData)
{
return pData.Display(pStream); // virtuelle Funktion aufrufen
}
SCStream& SCIndet::Display(SCStream& pStream) const
{
SCProcessTypeList * processTypeList = SCProcessType::GetProcessTypeList();
SCTransition * transition;
SCProcessType * processType;
SCStateType * stateType;
if (executedTransitions == 0) // Called for start message?
{
if (hasStopTime)
{
pStream << "Max. model time: " << stopTime << std::endl;
}
pStream << "Error detection: ";
if (findErrors)
{
pStream << "activated";
if (maxNumOfErrors < UINT_MAX)
{
pStream << " (limited to " << maxNumOfErrors << " errors)";
}
pStream << std::endl;
}
else
pStream << "not activated" << std::endl;
return pStream;
}
realEndTime = std::chrono::high_resolution_clock::now();
realExecTime = std::chrono::duration_cast<milliseconds>( realEndTime - realStartTime ).count();
pStream << "real exec time: " << realExecTime << " ms" << std::endl;
pStream << "Executed transitions: " << executedTransitions << std::endl;
if (realExecTime > 0)
{
pStream << "Transitions per second: " << (float)executedTransitions / ((float)realExecTime / 1000.0) << std::endl;
}
if (maxNumOfErrors)
{
pStream << std::endl << "Error report:" << std::endl;
if (numOfErrors > 0)
{
pStream << " Deadlocks: " << numOfDeadlocks << std::endl;
pStream << " Implicit signal consumptions: " << numOfSignalDrops << std::endl;
pStream << " Overflows of input queues: " << numOfSignalLosses << std::endl;
pStream << " Derouted outputs: " << numOfMissingReceivers << std::endl;
pStream << " Failed process creations: " << numOfFailedProcessCreations << std::endl;
pStream << " Violated assertions: " << numOfFailedAssertions << std::endl;
pStream << " Detected cycles: " << numOfCycleDetections << std::endl << std::endl;
}
else
{
pStream << " No errors found." << std::endl;
}
}
assert (processTypeList);
if (reportDeadCode)
{
SCProcessTypeIter piter(*processTypeList);
SCBoolean foundDeadCode = false;
pStream << std::endl << "Dead code report:" << std::endl;
for (processType = piter++;
processType;
processType = piter++)
{
SCStateTypeIter siter(*processType->GetStateList());
for (stateType = siter++;
stateType;
stateType = siter++)
{
SCTransitionIter titer(*stateType->GetNormalInputs());
if (!stateType->IsReached())
{
pStream << " Process " << *processType << ", " << *stateType;
pStream << " not reached." << std::endl;
foundDeadCode = true;
continue;
}
for (transition = titer++;
transition;
transition = titer++)
{
if (!transition->IsExecuted())
{
pStream << " Process " << *processType << ", " << *stateType;
pStream << " " << *transition << " not executed." << std::endl;
foundDeadCode = true;
}
}
}
}
if (!foundDeadCode)
pStream << " No dead code found." << std::endl;
pStream << std::endl;
}
return pStream;
}