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
|
function SharedInfo = C_Funcall(FunInfo,FileInfo,SharedInfo,FlagCall)
// function SharedInfo = C_Funcall(FunInfo,FileInfo,SharedInfo,FlagCall)
// -----------------------------------------------------------------
// Get function for a generic SCI2C table.
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 27-Oct-2007 -- Raffaele Nutricato: Author.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),4,4);
// -----------------------
// --- Initialization. ---
// -----------------------
nxtscifunname = SharedInfo.NextSCIFunName;
nxtscifunnumber = SharedInfo.NextSCIFunNumber;
ReportFileName = FileInfo.Funct(nxtscifunnumber).ReportFileName;
CPass1FileName = FileInfo.Funct(nxtscifunnumber).CPass1FileName;
CPass1FreeFileName = FileInfo.Funct(nxtscifunnumber).CPass1FreeFileName;
HeaderFileName = FileInfo.Funct(nxtscifunnumber).Pass1HeaderFileName;
CDeclarationFileName = FileInfo.Funct(nxtscifunnumber).CDeclarationFileName;
CInitVarsFileName = FileInfo.Funct(nxtscifunnumber).CInitVarsFileName;
IndentLevel = SharedInfo.NIndent;
CCall = '';
OutFormat = SharedInfo.OutFormat;
// --- Extract Function Info. ---
FunctionName = FunInfo.SCIFunctionName;
CFunName = FunInfo.CFunctionName;
InArg = FunInfo.InArg;
NInArg = FunInfo.NInArg;
OutArg = FunInfo.OutArg;
NOutArg = FunInfo.NOutArg;
PosFirstOutScalar = FunInfo.PosFirstOutScalar;
// #RNU_RES_B
PrintStringInfo(' ',ReportFileName,'file','y');
PrintStringInfo('***Generating C code***',ReportFileName,'file','y');
// #RNU_RES_E
// ---------------------------
// --- End Initialization. ---
// ---------------------------
// --------------------------------------------------
// --- Manage anticipated exit from the function. ---
// --------------------------------------------------
if (SharedInfo.SkipNextFun > 0)
SharedInfo.SkipNextFun = SharedInfo.SkipNextFun - 1;
return;
end
// #RNU_RES_B
// Exit if the function is a precision specifier and the corresponding flag is 1.
// #RNU_RES_E
if ((sum(mtlb_strcmp(FunctionName,SharedInfo.Annotations.DataPrec)) > 0) & ...
(SharedInfo.SkipNextPrec == 1))
// #RNU_RES_B
PrintStringInfo(' Skipping code generating because already generated in the previous function.',ReportFileName,'file','y');
// #RNU_RES_E
SharedInfo.SkipNextPrec = SharedInfo.SkipNextPrec - 1;
return;
end
// #RNU_RES_B
// Exit if the function is OpEqual and the corresponding skip flag is enabled.
// #RNU_RES_E
if ((mtlb_strcmp(FunctionName,'OpEqual')) & ...
(SharedInfo.SkipNextEqual == 1))
// #RNU_RES_B
PrintStringInfo(' Skipping code generating because already generated in the previous function.',ReportFileName,'file','y');
// #RNU_RES_E
SharedInfo.SkipNextEqual = SharedInfo.SkipNextEqual - 1;
return;
end
// #BJ
// size should be managed as other functions
// otherwise size(4) will lead to a C variable __4Size reference
// wich will never exists
// #RNU_RES_B
// Exit if the function is size.
// #RNU_RES_E
// if ((mtlb_strcmp(FunctionName,'size')))
// // #RNU_RES_B
// PrintStringInfo(' Anticipated exit for the size function.',ReportFileName,'file','y');
// // #RNU_RES_E
// CCall ='';
// if (NInArg == 1)
// if (NOutArg == 1)
// CCall = CCall+OutArg(1).Name+'[0] = __'+InArg(1).Name+'Size[0];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// CCall ='';
// CCall = CCall+OutArg(1).Name+'[1] = __'+InArg(1).Name+'Size[1];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// elseif (NOutArg == 2)
// CCall = CCall+OutArg(1).Name+' = __'+InArg(1).Name+'Size[0];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// CCall ='';
// CCall = CCall+OutArg(2).Name+' = __'+InArg(1).Name+'Size[1];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// else
// SCI2Cerror('Don''t know how to manage size function with number of output args different from 1 and 2.');
// end
// elseif (NInArg == 2)
// if (NOutArg == 1)
// if (InArg(2).Value == 1)
// CCall = CCall+OutArg(1).Name+' = __'+InArg(1).Name+'Size[0];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// elseif (InArg(2).Value == 2)
// CCall = CCall+OutArg(1).Name+' = __'+InArg(1).Name+'Size[1];';
// // #RNU_RES_B
// PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// // #RNU_RES_E
// PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
// else
// SCI2Cerror('Not known the value of the second input arg for the size function.');
// end
// else
// SCI2Cerror('Don''t know how to manage size function with number of output args different from 1.');
// end
// else
// SCI2Cerror('Don''t know how to manage size function with number of input args different from 1 and 2.');
// end
// return;
// end
// ------------------------------------------------------
// --- End Manage anticipated exit from the function. ---
// ------------------------------------------------------
// #RNU_RES_B
// ------------------------------------------------------------
// --- Allocate memory and size array for output arguments. ---
// ------------------------------------------------------------
// #RNU_RES_E
if (FlagCall == 1)
// #RNU_RES_B
//RNU qui va tolto tutto una volta sicuri che la memallocout puo' essere fatta dentro la st_insoutarg
// C_MemAllocOutTempVars(OutArg,NOutArg,CPass1FileName,CPass1FreeFileName,IndentLevel,ReportFileName);
// #RNU_RES_E
end
// ----------------------------
// --- Generate the C call. ---
// ----------------------------
CCall ='';
if (FunInfo.CFunctionName == SharedInfo.CMainFunName)
if (FlagCall == 1)
error(9999, 'main function called in a source code!');
else
CCall =CCall+'int ';
end
else
if (PosFirstOutScalar >= 1)
if (FlagCall == 1)
CCall = CCall+OutArg(PosFirstOutScalar).Name+' = ';
else
CCall = CCall+C_Type(OutArg(PosFirstOutScalar).Type)+' ';
end
else
if (FlagCall == 0)
CCall = CCall+'void ';
end
end
end
// FIXME : Wrap library function call with prefixed name
//if CFunName == "main"
CCall = CCall + CFunName + "(";
//else
// CCall = CCall+"SCI2C("+CFunName+")(";
//end
// #RNU_RES_B
PrintStringInfo(' C call after output scalar args check: '+CCall,ReportFileName,'file','y');
// #RNU_RES_E
clear counterin
for counterin = 1:NInArg
if (InArg(counterin).Type == 'g' & InArg(counterin).Scope == 'String')
TmpInArgName = '""'+InArg(counterin).Name+'""';
elseif (InArg(counterin).Type == 'z' & (InArg(counterin).Scope == 'Number'))
TmpInArgName = 'DoubleComplex('+SCI2Cstring(real(InArg(counterin).Value))+','+SCI2Cstring(imag(InArg(counterin).Value))+')';
elseif (InArg(counterin).Type == 'c' & (InArg(counterin).Scope == 'Number'))
TmpInArgName = 'FloatComplex('+SCI2Cstring(real(InArg(counterin).Value))+','+SCI2Cstring(imag(InArg(counterin).Value))+')';
else
TmpInArgName = InArg(counterin).Name;
end
TmpInArgType = C_Type(InArg(counterin).Type);
//if (FunctionName == 'OpEqual')
// TmpInArgSizeVar = '__'+OutArg(counterin).Name+'Size';
// else
TmpInArgSizeVar = '__'+InArg(counterin).Name+'Size';
//end
if (InArg(counterin).Dimension == 0)
if (FlagCall == 0)
CCall = CCall+TmpInArgType+' ';
end
CCall = CCall+TmpInArgName+',';
else
if (FlagCall == 0)
CCall = CCall+TmpInArgType+'* '+TmpInArgName+', int* __'+TmpInArgName+'Size,';
else
CCall = CCall+TmpInArgName+', '+TmpInArgSizeVar+',';
end
end
end
// #RNU_RES_B
PrintStringInfo(' C call after input args analysis: '+CCall,ReportFileName,'file','y');
// #RNU_RES_E
for counterout = 1:NOutArg
TmpOutArgName = OutArg(counterout).Name;
TmpOutArgType = C_Type(OutArg(counterout).Type);
if (counterout == PosFirstOutScalar)
if (FlagCall == 0)
// #RNU_RES_B
// --- Write in the declaration file the returned output scalar (if any). ---
// #RNU_RES_E
outscalardeclaration = TmpOutArgType+' '+TmpOutArgName+';';
// #RNU_RES_B
PrintStringInfo(outscalardeclaration,ReportFileName,'file','y');
// #RNU_RES_E
PrintStringInfo(C_IndentBlanks(1)+outscalardeclaration,CDeclarationFileName,'file','y');
PrintStringInfo(' ',CDeclarationFileName,'file','y');
end
else
if (OutArg(counterout).Dimension == 0)
if (FlagCall == 0)
// --- Write in the declaration file the returned output scalar (if any). ---
outscalardeclaration = TmpOutArgType+' '+TmpOutArgName+';';
PrintStringInfo(outscalardeclaration,ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+outscalardeclaration,CDeclarationFileName,'file','y');
PrintStringInfo(' ',CDeclarationFileName,'file','y');
CCall = CCall+TmpOutArgType+'* __ptr'+TmpOutArgName+', ';
else
CCall = CCall+'&'+TmpOutArgName+', ';//NUT: verifica se ci vuole l'&
end
else
if (FlagCall == 0)
CCall = CCall+TmpOutArgType+'* '+TmpOutArgName+',';
if (OutArg(counterout).FindLike == 1)
CCall = CCall+'int* __'+TmpOutArgName+'Size'+',';
end
// #RNU_RES_B
//NUT prova a sostituire le variabili strutture con variabili dichiarate all'inizio del codice.
// --- Declare the size of the output arguments. ---
// #RNU_RES_E
outscalardeclaration = 'int __'+TmpOutArgName+'Size[2];';
PrintStringInfo(outscalardeclaration,ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+outscalardeclaration,CDeclarationFileName,'file','y');
outscalardeclaration = '__'+TmpOutArgName+'Size[0] = '+(OutArg(counterout).Size(1))+';';
PrintStringInfo(outscalardeclaration,ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+outscalardeclaration,CInitVarsFileName,'file','y');
outscalardeclaration = '__'+TmpOutArgName+'Size[1] = '+(OutArg(counterout).Size(2))+';';
PrintStringInfo(outscalardeclaration,ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+outscalardeclaration,CInitVarsFileName,'file','y');
PrintStringInfo(' ',CInitVarsFileName,'file','y');
else
CCall = CCall+OutArg(counterout).Name+',';
if (OutArg(counterout).FindLike == 1)
CCall = CCall+'(int* ) __'+TmpOutArgName+'Size'+',';
end
end
end
end
end
PrintStringInfo(' C call after output args analysis: '+CCall,ReportFileName,'file','y');
// Remove the last " " and ","
if (part(CCall,length(CCall):length(CCall)) == ' ')
CCall = part(CCall,1:length(CCall)-1);
end
if (part(CCall,length(CCall):length(CCall)) == ',')
CCall = part(CCall,1:length(CCall)-1);
end
CCall = CCall+')';
if (FlagCall == 1)
CCall = CCall+';';
end
//NUT: la parte di generazione della C call va inserita in una funzione a parte.
//NUT: tale funzione deve avere anche uno switch che consenta di generare differenti versioni
//NUT: delle chiamate C in accordo con la libreria disponibile, fermo restando che
//NUT: e' sempre possibile fornire la lista delle macro.
if mtlb_strcmp(FunctionName,'return')
// Here I introduce the pointer assignment for output scalar arguments.
for cntout = 1:SharedInfo.CurrentFunInfo.NOutArg
if (cntout ~= SharedInfo.CurrentFunInfo.PosFirstOutScalar & ...
SharedInfo.CurrentFunInfo.OutArg(cntout).Dimension == 0)
CCall = '';
CCall = CCall+'*__ptr'+SharedInfo.CurrentFunInfo.OutArg(cntout).Name+' = '+...
SharedInfo.CurrentFunInfo.OutArg(cntout).Name+';';
PrintStringInfo(' '+CCall,ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
end
end
// --- Then I free the memory dinamically allocated. ---
// ----------------------------
// --- Handle Free section. ---
// ----------------------------
PrintStringInfo(C_IndentBlanks(1)+'/*',CPass1FreeFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+'** ------------------------- ',CPass1FreeFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+'** --- End Free Section. --- ',CPass1FreeFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+'** ------------------------- ',CPass1FreeFileName,'file','y');
PrintStringInfo(C_IndentBlanks(1)+'*/',CPass1FreeFileName,'file','y');
PrintStringInfo(' ',CPass1FreeFileName,'file','y');
SCI2Ccopyfile(CPass1FreeFileName,...
CPass1FileName,'append');
// --------------------------------
// --- End Handle Free section. ---
// --------------------------------
// --- Then I introduce the return to the first scalar output arguments. ---
CCall = '';
// #RNU_RES_B
//NUT: non capisco questo skip a questo punto.
//NUT: perche' la return finale la sto gestendo nella AST_HandleEndProgram.
PrintStringInfo(' return function of the AST is skipped.',ReportFileName,'file','y');
//RN provo a non skippare e a mettere la return.
// #RNU_RES_E
if (SharedInfo.CurrentFunInfo.CFunctionName == SharedInfo.CMainFunName)
CCall = CCall+'return(0);';
else
if (SharedInfo.CurrentFunInfo.PosFirstOutScalar > 0)
CCall = CCall+'return('+SharedInfo.CurrentFunInfo.OutArg(SharedInfo.CurrentFunInfo.PosFirstOutScalar).Name+');'
end
end
// #RNU_RES_B
PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// #RNU_RES_E
PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
else
// #RNU_RES_B
PrintStringInfo(' '+CCall,ReportFileName,'file','y');
// #RNU_RES_E
PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
if (FlagCall == 0)
// Add prototype to the header file
C_InitHeader(CCall+';',HeaderFileName,SharedInfo.Sci2CLibMainHeaderFName,OutFormat);
// Add { at the beginning of the function.
PrintStringInfo(' {',ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(IndentLevel)+'{',CPass1FileName,'file','y');
end
end
// #RNU_RES_B
// Add in the C code the new size of the output argument when SCI2Cresize function is called.
// #RNU_RES_E
if (FunctionName == 'SCI2Cresize')
// #RNU_RES_B
PrintStringInfo(' Found SCI2Cresize -> Changing the size of the output argument.',ReportFileName,'file','y');
// #RNU_RES_E
OutArgName = OutArg(counterout).Name;
tmpcode = '__'+OutArgName+'Size[0]='+OutArg(counterout).Size(1)+';';
PrintStringInfo(C_IndentBlanks(IndentLevel)+tmpcode,CPass1FileName,'file','y');
// #RNU_RES_B
PrintStringInfo(' '+tmpcode,ReportFileName,'file','y');
// #RNU_RES_E
tmpcode = '__'+OutArgName+'Size[1]='+OutArg(counterout).Size(2)+';';
PrintStringInfo(C_IndentBlanks(IndentLevel)+tmpcode,CPass1FileName,'file','y');
// #RNU_RES_B
PrintStringInfo(' '+tmpcode,ReportFileName,'file','y');
// #RNU_RES_E
end
endfunction
|