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
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2002-2004 - INRIA - Vincent COUVERT
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
function [scitree,trad,txt,crp]=m2sci(mtlbtree,nam,Recmode,prettyprintoutput)
// This function translates Matlab interpreted code tree of a function to Scilab
// Input arguments:
// - mtlbtree: tree (returned by macr2tree) representing Matlab function compiled code
// - nam: name of Matlb function
// - Recmode: boolean flag for recursive conversion if TRUE
// - prettyprintoutput: boolean flag for pretty printed output file if TRUE
// Output arguments:
// - scitree: Scilab equivalent for mtlbtree
// - trad: code of function sci_<nam>
// - txt: Scilab equivalent function code (function declaration and varaibles initialisation)
// - crp: Scilab equivalent function code (function body)
[lhs,rhs]=argn(0)
if rhs==1 then
error(gettext("Wrong number of inputs."))
end
if rhs==2 then Recmode=%f,end
lcount=1;
// Level of clause indentation (used for getting temporary variables and for updating varslist)
// if there is not a clause then size of level = 1 and the value is 0 (level=0)
// add one size at level each time a new clause is found
// if just one clause then size of level = 2, the value of level(2) : the index of clause part for the first clause (1 for 'if' statements, 2 for first 'elseif' statements, 3 for first 'elseif' statements,...)
// if there are 2 clauses, then size of level = 3, the value of level(3) : the index of clause part for the second clause (1 for if statements, 2 for first elseif statements, 3 for second elseif statements,...)
// for example : level = [0,4,1] : in this case there are 2 clauses the index for the first clause (i.e level(2)) is 4 (4 for second 'elseif' statements), the index for the second clause (i.e level(3)) is 1 (1 for 'if' statements)
// the first components of level (i.e level(1)) is always 0 (because in the zero level there is no clause, so there is no 'if' no 'elseif' no 'else')
level=0
// Parameters declaration
sciparam()
// Scilab variable types
Double=1;
Boolean=4; // Boolean type can also be 6
Sparse=5;
Int=8;
Handle=9;
String=10;
Cell=17;
Struct=16;
Void=0;
Unknown=-1; // Unknown type or dimension
SupToOne=-2; // Dimension >1
NotNull=-3; // Dimension >0
Complex=1 //"Complex"
Real=0 //"Real"
Units=["pixels","centimeters","points","inches","normalized"]
global %graphics
%graphics=struct()
%graphics.type=Double
%graphics.units="pixels"
// Translated function input arguments
macrhs=size(mtlbtree.inputs)
global("varslist")
varslist=list()
for k=1:macrhs
if funptr(mtlbtree.inputs(k).name)<>0 then // Matlab variable name corresponding to a Scilab function name
varslist($+1)=M2scivar("%"+mtlbtree.inputs(k).name,mtlbtree.inputs(k).name,Infer())
mtlbtree.inputs(k).name="%"+mtlbtree.inputs(k).name,
elseif mtlbtree.inputs(k).name=="varargin" then
varslist($+1)=M2scivar("varargin","varargin",Infer(list(Unknown,Unknown),Type(Cell,Unknown)))
else
varslist($+1)=M2scivar(mtlbtree.inputs(k).name,mtlbtree.inputs(k).name,Infer())
end
end
// Add predefined variables in the defined variables
varslist($+1)=M2scivar("%i","%i",Infer(list(1,1),Type(Double,Complex)))
varslist($+1)=M2scivar("%i","%j",Infer(list(1,1),Type(Double,Complex)))
varslist($+1)=M2scivar("%nan","NaN",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("%nan","nan",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("%inf","Inf",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("%inf","inf",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("$","end",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("%pi","pi",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("%eps","eps",Infer(list(1,1),Type(Double,Real)))
varslist($+1)=M2scivar("varargout","%varargout",Infer(list(Unknown,Unknown),Type(Cell,Unknown)))
varslist($+1)=M2scivar("%shortcircuit","%shortcircuit",Infer(list(1,1),Type(Double,Real))) // Used for short circuiting operators
// Translated function output arguments
maclhs=size(mtlbtree.outputs)
for k=1:maclhs
if funptr(mtlbtree.outputs(k).name)<>0 then
varslist($+1)=M2scivar("%"+mtlbtree.outputs(k).name,mtlbtree.outputs(k).name,Infer(list(0,0),Type(Double,Real)))
mtlbtree.outputs(k).name="%"+mtlbtree.outputs(k).name
else
varslist($+1)=M2scivar(mtlbtree.outputs(k).name,mtlbtree.outputs(k).name,Infer(list(0,0),Type(Double,Real)))
end
end
// Translation
[scitree,crp]=mtlbtree2sci(mtlbtree,prettyprintoutput)
dcl=[]
// Add special code
// If nargin or nargout function is used
if isdefinedvar("%nargin") | isdefinedvar("%nargout") then
dcl=["";gettext("// Number of arguments in function call");"[%nargout,%nargin] = argn(0)"]
end
// Set display mode equivalent to Matlab echo off
dcl=[dcl;"";gettext("// Display mode");"mode(0);"]
// Set flotting point exception mode
dcl=[dcl;"";gettext("// Display warning for floating point exception");"ieee(1);"]
// Initial value of lhs arguments
// If they are not initialized by input value, they are initialized with []
ini=[]
for k=1:size(mtlbtree.outputs)
found=%F
for l=1:size(mtlbtree.inputs)
if mtlbtree.inputs(l).name==mtlbtree.outputs(k).name then
found=%T
end
end
if ~found then
if mtlbtree.outputs(k).name<>"varargout" then
ini=[ini;mtlbtree.outputs(k).name+"=[];"]
else
ini=[ini;mtlbtree.outputs(k).name+"=list();"]
end
end
end
// Graphics init
//graph_ini=[gettext("// Graphics initialisation");"global %graphics";"%graphics.type=1";"%graphics.units=""pixels"""];
graph_ini=[]
if ini<>[] then
ini=["";gettext("// Output variables initialisation (not found in input variables)");ini]
end
//ini=[ini;" ";graph_ini]
// Info on macros variables
if verbose_mode<0 then
write(%io(2),gettext("TESTING M2SCI: creating varslist file..."))
n=size(varslist)
info=[]
for k=1:n
info=[info;"//"+varslist(k).sciname+infer2txt(varslist(k).infer)];
end
infofilename=res_path+nam+"_varslist.dia.ref";
if verbose_mode==-2 then
write(%io(2),info)
end
infofile=mopen(infofilename,"w");
mputl(info,infofile);
mclose(infofile);
end
// Add function header
if ~batch then
rhsexpr="("
for k=1:macrhs
rhsexpr=rhsexpr+varslist(k).sciname
if k<macrhs then
rhsexpr=rhsexpr+","
end
end
rhsexpr=rhsexpr+")"
hdr="function ["
for k=1:size(mtlbtree.outputs)
hdr=hdr+mtlbtree.outputs(k).name
if k<>size(mtlbtree.outputs) then
hdr=hdr+","
end
end
hdr=hdr+"] = "+nam+rhsexpr;
txt=[hdr;ini;dcl]
else
txt=[ini;dcl]
end
// Generate associated translation function
if batch then
trad=[
"function [tree] = sci_"+fnam+"(tree)"
msprintf(gettext("// Generated by M2SCI\n// Conversion function for Matlab %s\n// Input: tree = Matlab funcall tree\n// Output: tree = Scilab equivalent for tree"),fnam)
""
"tree=Funcall(""exec"",1,Rhs_tlist(tree.name),tree.lhs)"
]
else
trad=[
"function [tree] = sci_"+nam+"(tree)"
msprintf(gettext("// Copyright INRIA (Generated by M2SCI)\n// Conversion function for Matlab %s()\n// Input: tree = Matlab funcall tree\n// Output: tree = Scilab equivalent for tree"),nam)
]
if maclhs==0 then // Function with no outputs
// Do nothing
elseif maclhs==1 then // Function with one output
[boolval,index]=isdefinedvar(M2scivar(mtlbtree.outputs(1).name,strsubst(mtlbtree.outputs(1).name,"%",""),Infer()))
if boolval then
dims=sci2exp(varslist(index).dims)
vtype=varslist(index).vtype
prop=varslist(index).property
else
dims="list(Unknown,Unknown)"
vtype=Unknown
prop=Unknown
end
select vtype
case Double then vtype="Double"
case Boolean then vtype="Boolean"
case String then vtype="String"
case Struct then vtype="Struct"
case Cell then vtype="Cell"
case Unknown then vtype="Unknown"
case Sparse then vtype="Sparse"
end
select prop
case -1 then prop="Unknown"
case 0 then prop="Real"
case 1 then prop="Complex"
end
typ="Type("+vtype+","+prop+")"
if mtlbtree.outputs($).name<>"varargout" then
trad=[trad;"tree.lhs(1).dims="+dims;"tree.lhs(1).type="+typ]
else
trad=[trad;
"for k=1:lhs"
" tree.lhs(k).dims=list(Unknown,Unknown)"
" tree.lhs(k).vtype=Unknown"
" tree.lhs(k).property=Unknown"
"end"
]
end
else // Function with more than 1 output
dims=list();
vtype=[];
prop=[]
for k=1:maclhs
[boolval,index]=isdefinedvar(M2scivar(mtlbtree.outputs(k).name,strsubst(mtlbtree.outputs(k).name,"%",""),Infer()))
if boolval then
dims(k)=varslist(index).dims
vtype=[vtype;varslist(index).vtype]
prop=[prop;varslist(index).property]
else
dims(k)=list(Unknown,Unknown)
vtype=[vtype;Unknown]
prop=[prop;Unknown]
end
end
dimstemp=sci2exp(dims)
dims=["dims="+dimstemp(1);dimstemp(2:$)]
vtype="vtype="+sci2exp(vtype)
prop="prop="+sci2exp(prop)
trad=[trad;
gettext("// dims(i,:) is the ith output argument dimensions vector")
dims
gettext("// dims(i,:) is the ith output argument dimensions vector")
vtype
gettext("// prop(i) is the ith output argument property")
prop]
if mtlbtree.outputs($).name<>"varargout" then
trad=[trad;
"for k=1:lhs"
" tree.lhs(k).dims=dims(k)"
" tree.lhs(k).vtype=vtype(k)"
" tree.lhs(k).property=prop(k)"
"end"
]
else
trad=[trad;
"for k=1:min(lstsize(dims),lhs)"
" tree.lhs(k).dims=dims(k)"
" tree.lhs(k).vtype=vtype(k)"
" tree.lhs(k).property=prop(k)"
"end"
gettext("// Inference for varargout")
"for k=min(lstsize(dims),lhs)+1:lhs"
" tree.lhs(k).dims=list(Unknown,Unknown)"
" tree.lhs(k).vtype=Unknown"
" tree.lhs(k).property=Unknown"
"end"
]
end
end
end
trad=[trad;"endfunction"]
clearglobal varslist
clearglobal %graphics
endfunction
|