-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGCall.cpp
332 lines (286 loc) · 10.8 KB
/
CGCall.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
/****************************************************************************
* Modul: $RCSfile: CGCall.cpp,v $
*
* $Author: md $
* $Date: 1998/01/29 15:34:28 $
* $Revision: 1.3 $
*
* Aufgabe: Dieses Modul enthaelt die Generierung des C++-Codes fuer
* entsprechende SDL-Aktionen
****************************************************************************/
#ifdef USE_PRAGMA
#pragma interface
#endif
/****************************************************************************
* Konstanten
****************************************************************************/
/****************************************************************************
* Include-Anweisungen
****************************************************************************/
#include <DS/DSString.h>
#include "CGFile.h"
#include "CGCall.h"
#include "CGProcedure.h"
#include "CGVariable.h"
#include "CGExpression.h"
#ifdef DEBUG
#include <dmalloc.h>
#endif
/****************************************************************************
* Externe Variablen
****************************************************************************/
/****************************************************************************
* Globale Variablen
****************************************************************************/
/****************************************************************************
* Konstruktoren
****************************************************************************/
CGCall::CGCall(DSObject *father,
DSString *label_name,
DSProcedureRef proc,
DSActualParamList *act_par_list) :
DSCall(father, label_name, proc, act_par_list)
{
}
CGCall::CGCall(DSObject *father,
DSString& label_name,
DSProcedureRef proc,
DSActualParamList *act_par_list) :
DSCall(father, label_name, proc, act_par_list)
{
}
CGCall::CGCall(DSObject *father,
const char *label_name,
DSProcedureRef proc,
DSActualParamList *act_par_list) :
DSCall(father, label_name, proc, act_par_list)
{
}
/****************************************************************************
* Destruktor
****************************************************************************/
CGCall::~CGCall(void)
{
}
/****************************************************************************
* Virtueller Konstruktor
****************************************************************************/
DSObject *CGCall::New(DSObject *father) const
{
return (DSCall *)new CGCall(father);
}
/****************************************************************************
* Write(): Oberfunktion der Codegenerierung fuer Call
* -> writer
* -> what
* Ergebnis: DS_OK oder DS_ERROR
* Seiteneffekte: Anlegen und Fuellen der .h und .cc-Files
****************************************************************************/
DSResult CGCall::Write(DSWriter *writer, DSCardinal what) const
{
DSResult result;
(void)what;
result = WriteImplementation((CGWriter *)writer);
if (result != DS_OK) return result;
return DS_OK;
}
/****************************************************************************
* WriteImplementation(): schreibt einen Prozeduraufruf
* Ergebnis: DS_OK,falls Aktion erfolgreich war, sonst DS_ERROR
* -> writer
* Seiteneffekte: Zieldatei wird gefuellt
****************************************************************************/
DSResult CGCall::WriteImplementation(CGWriter *writer) const
{
DSResult result;
DSActualParam *actual_param;
DSFormalParam *formal_param;
DSProcedureRef procedure;
DSString str;
DSBoolean first = DS_TRUE;
CGFile *out;
CGPos pos;
DSObject *father;
out = writer->CGGetFilePointer();
assert(out);
pos = writer->CGGetIndentPos();
result = WriteLabel(writer);
if (result != DS_OK) return result;
procedure = GetProcedureRef();
assert(procedure);
if (procedure->GetIsComplex())
{
if (GetActualParamList())
{
InsertString(*out, PREFIX_PROCEDURE_PARAM_VARIABLE, pos, CG_NO_EOL);
InsertString(*out, procedure->GetName(), 0, CG_NO_EOL);
InsertString(*out, " = new ", 0, CG_NO_EOL);
InsertString(*out, PREFIX_PROCEDURE_PARAM_TYPE, 0, CG_NO_EOL);
InsertString(*out, procedure->GetName(), 0, CG_NO_EOL);
InsertString(*out, ";", 0, CG_WITH_EOL);
InsertString(*out, "assert(", pos, CG_NO_EOL);
InsertString(*out, PREFIX_PROCEDURE_PARAM_VARIABLE, 0, CG_NO_EOL);
InsertString(*out, procedure->GetName(), 0, CG_NO_EOL);
InsertString(*out, ");", 0, CG_WITH_EOL);
}
for (actual_param = GetFirstActualParam(),
formal_param = procedure->GetFirstFormalParam();
actual_param && formal_param;
actual_param = GetNextActualParam(),
formal_param = procedure->GetNextFormalParam())
{
InsertString(*out, PREFIX_PROCEDURE_PARAM_VARIABLE, pos, CG_NO_EOL);
InsertString(*out, procedure->GetName(),
0, CG_NO_EOL);
InsertString(*out, "->", 0, CG_NO_EOL);
InsertString(*out, PREFIX_VARIABLE, 0, CG_NO_EOL);
InsertString(*out, formal_param->GetName(), 0, CG_NO_EOL);
InsertString(*out, " = ", 0, CG_NO_EOL);
writer->CGSetIndentPos(0);
result = actual_param->Write(writer);
writer->CGSetIndentPos(pos);
if (result != DS_OK) return result;
InsertString(*out, ";", 0, CG_WITH_EOL);
}
str.Format("%scur_state = %scall_%d;", PREFIX_VARIABLE,
PREFIX_STATE_TYPE_ID,
writer->CGGetLastCallID());
InsertString(*out, str, pos, CG_WITH_EOL);
InsertString(*out, CG_NAME_SCL_CALL, pos, CG_NO_EOL);
InsertString(*out, "(", 0, CG_NO_EOL);
InsertString(*out, "new ", 0, CG_NO_EOL);
writer->CGSetIndentPos(0);
result = procedure->Write(writer, CG_WRITE_IDENTIFIER);
writer->CGSetIndentPos(pos);
if (result != DS_OK) return result;
InsertString(*out, "(this, GetOwner(), ", 0, CG_NO_EOL);
InsertString(*out, PREFIX_PROCEDURE_TYPE_VARIABLE, 0, CG_NO_EOL);
InsertString(*out, procedure->GetName(),
0, CG_NO_EOL);
if (procedure->GetFormalParamList())
{
InsertString(*out, ", ", 0, CG_NO_EOL);
InsertString(*out, PREFIX_PROCEDURE_PARAM_VARIABLE, 0, CG_NO_EOL);
InsertString(*out, procedure->GetName(),
0, CG_NO_EOL);
}
InsertString(*out, "));", 0, CG_WITH_EOL);
//
// Backtracking-Behandlung:
//
str.Format("if (%scur_state != %scall_%d)",
PREFIX_VARIABLE, PREFIX_STATE_TYPE_ID,
writer->CGGetLastCallID());
InsertStringComment(*out, str.GetString(), "Backtracked ?", pos);
InsertString(*out, "{", pos, CG_WITH_EOL);
str.Format("if (IsInState())",
PREFIX_VARIABLE, PREFIX_STATE_TYPE_ID);
InsertStringComment(*out, str.GetString(), "Backtracked to normal state ?", pos + 2);
InsertString(*out, "{", pos + 2, CG_WITH_EOL);
str.Format("%stransition_id = Transition(&%ssignal_read);",
PREFIX_VARIABLE, PREFIX_VARIABLE);
InsertStringComment(*out, str.GetString(), "Choose next transition !", pos + 4);
InsertString(*out, "}", pos + 2, CG_WITH_EOL);
InsertStringComment(*out, "goto backtracking;", "Jump to current state !", pos + 2);
InsertString(*out, "}", pos, CG_WITH_EOL);
str.Format("label_call_%d:", writer->CGGetLastCallID());
InsertString(*out, str, pos, CG_WITH_EOL);
writer->CGSetLastCallID(writer->CGGetLastCallID() + 1);
}
else // triviale Prozedur!
{
DSProcedureRef calling_procedure;
calling_procedure = GetThisProcedure();
if (calling_procedure && // befinden wir uns innerhalb
calling_procedure->GetIsComplex()) // einer komplexen Prozedur?
{
if ((DSObject *)calling_procedure != // aber dieaufgerufene Prozedur
procedure->GetParent()) // ist keine Sub-Prozedur?
{
InsertString(*out, "((", pos, CG_NO_EOL); // Cast schreiben ...
writer->CGSetIndentPos(0);
procedure->GetParent()->Write(writer, CG_WRITE_IDENTIFIER);
writer->CGSetIndentPos(pos);
InsertString(*out, " *)", 0, CG_NO_EOL);
InsertString(*out, "GetOwner())->", 0, CG_NO_EOL);
pos = 0;
}
}
InsertString(*out, procedure->GetName(), pos, CG_NO_EOL)
InsertString(*out, "(", 0, CG_NO_EOL);
// Eingabeparameter vorbereiten:
if (GetActualParamList() && procedure->GetFormalParamList())
{
for (formal_param = procedure->GetFirstFormalParam(),
actual_param = GetFirstActualParam();
formal_param && actual_param;
formal_param = procedure->GetNextFormalParam(),
actual_param = GetNextActualParam())
{
// Der Rueckgabeparameter gehoert nicht
// direkt zu den formalen Parametern:
if (formal_param == procedure->GetReturnParamRef())
{
formal_param = procedure->GetNextFormalParam();
}
if (!first)
{
InsertString(*out, ", ", 0, CG_NO_EOL);
}
else
{
first = DS_FALSE;
}
writer->CGSetIndentPos(0);
result = actual_param->Write(writer, DS_ALL);
writer->CGSetIndentPos(pos);
if (result != DS_OK)
{
return result;
}
}
}
InsertString(*out, ")", 0, CG_NO_EOL);
father = DSCall::GetParent();
assert(father);
if (father->GetType() == DS_TRANSITION) // kein Value Returning Call?
{
InsertString(*out, ";", 0, CG_WITH_EOL);
}
}
return DS_OK;
}
/****************************************************************************
* WriteLabel(): Schreibt das optionale Label der SDL-Aktion
* -> writer
* Ergebnis: DS_OK, falls Aktion erfolgreich war, sonst
* enthaelt DSResult das Ergebnis
* Seiteneffekte: Zieldatei wird gefuellt
****************************************************************************/
DSResult CGCall::WriteLabel(CGWriter *writer) const
{
DSResult result;
DSStringKeyList *label_list;
DSString *new_label;
CGFile *out;
CGPos pos;
if (GetLabel() == NULL) return DS_OK;
out = writer->CGGetFilePointer();
assert(out);
pos = writer->CGGetIndentPos();
label_list = writer->CGGetLabelList();
if (label_list == NULL || // kann innerhalb einer Starttransition passieren
!label_list->IsKeyInList(GetLabel()))
{
InsertString(*out, PREFIX_LABEL, pos, CG_NO_EOL);
InsertString(*out, GetLabel(), 0, CG_NO_EOL);
InsertString(*out, ":", 0, CG_WITH_EOL);
if (label_list != NULL)
{
new_label = new DSString(*GetLabel());
assert(new_label);
assert(label_list->Append(new DSString(*new_label), new_label) == DS_OK);
}
}
return DS_OK;
}