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
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2004-2006 - INRIA - Farid BELAHCENE
//
// 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 instr=old2newinstr(instr,oldname,newname)
// This function replaces by a new name (given in a input argument:newname) in a Scilab instruction all the variables names and functions names matching to a given name in a input argument:oldname
// INPUTS:
// -instr: Scilab instruction
// -oldname: a string, matching to the name variable which must be replaced
// -newname: a string, matching to the new variable name
// OUTPUT:
// -instr: Scilab instruction after modification
// VARIABLE tlist //
// If the variable name matches to the oldname argument then replace the variable name by the newname argument
if typeof(instr)=="variable" then
if instr.name==oldname then
instr.name=newname
end
// FUNCALL tlist //
// If the function name matches to oldname argument then replace the function name by newname argument
elseif typeof(instr)=="funcall"
if instr.name==oldname then
instr.name=newname
end
// ex: function return has not rhs: return.rhs is not a list
if typeof(instr.rhs)=="list" then
for i=1:size(instr.rhs)
instr.rhs(i)=old2newinstr(instr.rhs(i),oldname,newname)
end
end
// OPERATION tlist//
elseif typeof(instr)=="operation" then
for i=1:size(instr.operands)
instr.operands(i)=old2newinstr(instr.operands(i),oldname,newname)
end
// IF-THEN-ELSE instruction //
elseif typeof(instr)=="ifthenelse" then
instr.expression=old2newinstr(instr.expression,oldname,newname)
for i=1:size(instr.then)
instr.then(i)=old2newinstr(instr.then(i),oldname,newname)
end
for i=1:size(instr.elseifs)
for k=1:size(instr.elseifs(i).then)
instr.elseifs(i).then(k)=old2newinstr((instr.elseifs(i).then(k)),oldname,newname)
end
end
for i=1:size(instr.else)
instr.else(i)=old2newinstr((instr.else(i)),oldname,newname)
end
// SELECT-CASE instruction //
elseif typeof(instr)=="selectcase" then
instr.expression=old2newinstr(instr.expression,oldname,newname)
for i=1:size(instr.cases)
for j=1:size(instr.cases(i).then)
instr.cases(i).then(j)=old2newinstr((instr.cases(i).then(j)),oldname,newname)
end
end
for i=1:size(instr.else)
instr.else(i)=old2newinstr(instr.else(i),oldname,newname)
end
// WHILE instruction //
elseif typeof(instr)=="while" then
instr.expression=old2newinstr(instr.expression,oldname,newname)
for i=1:size(instr.statements)
instr.statements(i)=old2newinstr(instr.statements(i),oldname,newname)
end
// TRY-CATCH instruction //
elseif typeof(instr)=="trycatch"
for i=1:size(instr.trystat)
instr.trystat(i)=old2newinstr(instr.trystat(i),oldname,newname)
end
for i=1:size(instr.catchstat)
instr.catchstat(i)=old2newinstr(instr.catchstat(i),oldname,newname)
end
// FOR instruction //
elseif typeof(instr)=="for" then
instr.expression=old2newinstr(instr.expression,oldname,newname)
for i=1:size(instr.statements)
instr.statements(i)=old2newinstr(instr.statements(i),oldname,newname)
end
// EQUAL instruction //
elseif typeof(instr)=="equal" then
instr.expression=old2newinstr(instr.expression,oldname,newname)
for i=1:size(instr.lhs)
instr.lhs(i)=old2newinstr(instr.lhs(i),oldname,newname)
end
end
endfunction
|