-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCIndetStackTrace.cpp
415 lines (325 loc) · 13.2 KB
/
SCIndetStackTrace.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/*-----------------------------------------------------------------------------+
| |
| SCL - Simulation Class Library |
| |
| (c) 1994-98 Marc Diefenbruch, Wolfgang Textor |
| University of Essen, Germany |
| |
+-----------------+--------------------+---------------+------------------+----+
| Module | File | Created | Project | |
+-----------------+--------------------+---------------+------------------+----+
|SCIndetStackTrace|SCIndetStackTrace.cc| 25. Apr 1996 | SCL | |
+-----------------+--------------------+---------------+------------------+----+
| |
| Change Log |
| |
| Nr. Date Description |
| ----- -------- ------------------------------------------------------ |
| 001 |
| 000 --.--.-- Neu angelegt |
| |
+-----------------------------------------------------------------------------*/
/* Lineal
00000000001111111111222222222233333333334444444444555555555566666666667777777777
01234567890123456789012345678901234567890123456789012345678901234567890123456789
*/
#include "SCIndetStackTrace.h"
#include "SCProcess.h"
#include "SCMachine.h"
#include "SCTimerControl.h"
#include "SCTimeEvent.h"
#include "SCEnabledTransition.h"
#include "SCTraceControl.h"
#include "SCProcessType.h"
#include "SCProcedureType.h"
#include "SCProcessTypeList.h"
#include "SCMachineList.h"
#include "SCProcessList.h"
#include "SCPath.h"
#include "SCStackElem.h"
#include "SCScheduler.h"
#if _SC_DMALLOC
#include <dmalloc.h>
#endif
#if _SC_NOINLINES
#include "SCIndetStackTrace.inl.h"
#endif
SCIndetStackTrace::SCIndetStackTrace(SCIndetVal * indetVal,
SCTrace * errTrace) :
SCIndet(scIndetStackTrace, 0.0, true),
theIndetVal(indetVal),
curStackPos(NULL),
curDepth(0),
errorTracing(errTrace),
finish1(false),
finish2(false),
finish3(false),
lastElem(NULL)
{
assert (errorTracing);
}
SCIndetStackTrace::~SCIndetStackTrace (void)
{
if (lastElem)
{
delete lastElem;
}
}
SCRunnable *SCIndetStackTrace::ChooseRunnable (SCTimeEventSaveList *activeQueue)
{
SCRunnable * lastRunnable = NULL; // Initialize with NULL,
// in case of end of stack.
SCTimeEvent * timeEvent;
if (curStackPos == NULL) // called first time ?
{
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() started " << std::endl;
#endif
origVerbose = SCScheduler::IsVerbose(); // save original verbosity
SCScheduler::SetIsVerbose(false); // be quiet while error
// dumping
StartMessage(); // print start message
RestoreStartState(); // reset system to its
// initial state (this can
// be a long jump!)
assert (curStackPos); // is restored to start
// start now
}
// We look in the following stackElem to see
// which runnable was executed last. This is
// the runnable we must choose now
// (last of next = current !) :
curStackPos = curStackPos->GetNextElem(); // get successor state
action:
if (curStackPos) // Not end of stack.
{
// test if we trace for cycle detection and if
// we have reached the elem which closes the
// cycle (this is an element an the first stack):
if (theIndetVal->lastError == scErrorCycleDetected &&
curStackPos == theIndetVal->cycleClosingElem)
{
errorTracing->LogEvent (scTraceCycleEnd);
}
lastRunnable = curStackPos->GetLastActiveRunnable();
assert(lastRunnable);
timeEvent = activeQueue->LookupRunnable(lastRunnable);
assert(timeEvent);
SCScheduler::SetCurrentTime(timeEvent->GetTime());
// adjust scheduler time if
// necessary
delete activeQueue->Remove(timeEvent);
curDepth++;
if (!finish1 && // still running in first stack ?
!curStackPos->GetNextElem() && // reached last element of stack ?
theIndetVal->isInCycleDetection) // cycle detection active?
{
if (theIndetVal->lastError == scErrorCycleDetected)
{
errorTracing->LogEvent (scTraceCycleStart);
}
}
}
else // end of stack (i.e. we have
{ // reached the predecessor
// state of the 'error' state
// now)
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() end of stack reached" << std::endl;
#endif
if (!finish1 && // Validator run in cylce
theIndetVal->isInCycleDetection) // detection mode when dump
{ // was started
assert(theIndetVal->theSecondStack);
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() processing second stack..." << std::endl;
#endif
curStackPos = theIndetVal->theSecondStack->Root();
assert(curStackPos);
// leave out first stack elem since it is
// already stored as last element of first
// stack:
curStackPos = curStackPos->GetNextElem();
finish1 = true;
goto action;
}
if (!finish2 && theIndetVal->lastTransition)
{
// create stack elem for error state (this is not
// yet done by validator)
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() creating last stack element" << std::endl;
#endif
curStackPos = new SCStackElem(NULL, 0, NULL,
theIndetVal->lastRunnableIsAutomaton,
theIndetVal->lastRunnable,
theIndetVal->lastRunnableID,
new SCEnabledTransition(*theIndetVal->lastTransition),
theIndetVal->lastSuccessor,
SC_BS0);
assert (curStackPos);
finish2 = true;
lastElem = (SCStackElem *)curStackPos;
goto action;
}
// For deadlock errors (which occur inside ChooseRunnable() of
// SCIndetVal) we must log the error here:
if (theIndetVal->lastError == scErrorDeadlock)
{
errorTracing->LogEvent (scTraceDeadlock);
assert(activeQueue->IsEmpty());
}
errorTracing->LogEvent (scTraceSchedulerStop);
// now we must restore the things we have changed
// at the start of the error dump:
SCScheduler::SetIndet(theIndetVal);
EndMessage();
SCTraceControl::RemoveTrace (errorTracing);
delete errorTracing;
errorTracing = NULL;
SCScheduler::SetIsVerbose (origVerbose);
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() finished " << std::endl;
scStackTraceDebugLog.GetStream().flush();
#endif
return theIndetVal->ChooseRunnable(activeQueue);
}
#if _SC_STACKTRACE_DEBUG
assert(curStackPos);
if (lastRunnable)
{
scStackTraceDebugLog << "SCIndetStackTrace::ChooseRunnable() choose ";
scStackTraceDebugLog << *lastRunnable << ", depth = " << curStackPos->depth << std::endl;
}
#endif
return lastRunnable;
}
SCEnabledTransition *SCIndetStackTrace::ChooseTransition (void)
{
SCEnabledTransitionList * enabledTransitionList = NULL;
SCEnabledTransition * enabledTransition;
SCAutomaton * automaton;
assert (curStackPos);
assert (curStackPos->IsLastActiveRunnableAutomaton()); // Pointless, if it is a machine.
assert (curStackPos->GetLastTransition());
automaton = (SCAutomaton *)curStackPos->GetLastActiveRunnable();
assert(automaton);
// We must remove the enabled transitions of the automaton:
// If we don't do this here the SCAutomaton::State() method
// thinks that the automaton is still active because the
// enabledTransitionList ist not NULL.
if (automaton->GetEnabledTransitions())
{
enabledTransitionList = automaton->RetrieveEnabledTransitions();
assert(enabledTransitionList);
delete enabledTransitionList;
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseTransition() enabled transitions retrieved" << std::endl;
#endif
}
// Use the transition stored on the stack:
assert(curStackPos->GetLastTransition());
enabledTransition = new SCEnabledTransition(*curStackPos->GetLastTransition());
assert (enabledTransition);
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::ChooseTransition() ";
scStackTraceDebugLog << "executing " << *enabledTransition << std::endl;
#endif
return enabledTransition;
}
void SCIndetStackTrace::RestoreStartState (void)
{
SCStackElem * stackElem;
SCMem * state;
SCMachineIter * iterM =NULL;
SCProcessTypeIter * iterPT;
SCProcessIter * iterP;
SCMachine * machine;
SCProcessType * processType;
SCProcess * process;
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() started" << std::endl;
#endif
// get start state:
stackElem = theIndetVal->theFirstStack->Root();
state = stackElem->GetState();
assert(state);
// set modified flags of all runnables
// (Reason: we want to disable all backtracking optimizations
// since they work only for backtracking to previous
// state and not over more than one state!)
#if _SC_VALIDATION_OPTIMIZE
// SCProcessType::StaticSetModified(true); // why is this not the same
// SCProcedureType::StaticSetModified(); // as StaticStop ?? MD
// test tcp -vy r -ue to
// see the difference!
SCProcessType::StaticStop();
SCProcedureType::StaticStop();
SCMachine::StaticSetModified(true);
if (SCTimerControl::GetTimerControl())
SCTimerControl::GetTimerControl()->SetModified(true);
if (SCPath::GetPath())
SCPath::GetPath()->SetModified(true);
#endif
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() all runnables set to modified" << std::endl;
#endif
// Add MSC-Error-Tracing:
assert(errorTracing);
SCTraceControl::AddTrace(errorTracing); // add error tracing
errorTracing->LogEvent(scTraceSchedulerInit);
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() error tracing set " << std::endl;
#endif
// Rebuilding queues of start state:
theIndetVal->RestoreSystemState(state);
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() initial state restored " << std::endl;
#endif
// trace information about runnable creation:
iterPT = new SCProcessTypeIter (*SCProcessType::GetProcessTypeList());
assert (iterPT);
for (processType = (*iterPT)++;
processType;
processType = (*iterPT)++)
{
iterP = new SCProcessIter (*processType->GetProcessList());
assert (iterP);
for (process = (*iterP)++;
process;
process = (*iterP)++)
{
process->TraceOn();
errorTracing->LogEvent (scTraceProcessCreate, process, (SCProcess *)NULL);
}
delete iterP;
}
delete iterPT;
iterM = new SCMachineIter (*SCMachine::GetMachineList());
assert (iterM);
for (machine = (*iterM)++;
machine;
machine = (*iterM)++)
{
errorTracing->LogEvent (scTraceMachineCreate, machine);
}
delete iterM;
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() trace start infos generated " << std::endl;
#endif
// Procedure runnables cannot exist at system startup!
curStackPos = stackElem;
#if _SC_STACKTRACE_DEBUG
scStackTraceDebugLog << "SCIndetStackTrace::RestoreStartState() finished " << std::endl;
#endif
}
SCErrorCode SCIndetStackTrace::IsErrorState (SCTimeEventSaveList *activeQueue)
{
(void)activeQueue;
return scErrorNoError;
}
SCBoolean SCIndetStackTrace::IsLimitingState (SCTimeEventSaveList *activeQueue)
{
(void)activeQueue;
return false;
}