File: bytecodewalk.sci

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (234 lines) | stat: -rw-r--r-- 6,734 bytes parent folder | download
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
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2003-2008 - INRIA - Serge STEER <serge.steer@inria.fr>
//
// 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-en.txt

function c1=bytecodewalk(code,query,job)
  //walk along bytecode looking for a particular opcode (query) and
  //applying a function (job) at this point
  c1=[];
  lc0=1;
  lc=lc0;
  long_walk=size(code,'*')
  while lc<=long_walk
    //mprintf("lc=%d,op=%d\n",lc,code(lc))
    if code(lc)==query then
      c1=[c1  code(lc0:lc-1)]
      [ctemp,lc]=job(lc)
      c1=[c1  ctemp]
      lc0=lc
    else
    select code(lc)
     case 0 then //deleted ops
      lc=lc+double(code(lc+1))
     case 1 then //stackp (obsolete)
      lc=lc+1+nsiz
     case 2 then //stackg
      lc=lc+nsiz+3
     case 3 then //string
      ni=double(code(lc+1))
      lc=lc+2+ni
     case 4 then//[]
      lc=lc+1 
     case 5 then //allops
      lc=lc+4
     case 6 then //num
      lc=lc+3
     case 7 then//for
      c1=[c1 code(lc0:lc-1)]
      ll=lc
      lc=lc+1
      long=double(code(lc))
      lc=lc+1
      cv=bytecodewalk(code(lc:lc+long-1))
      lc=lc+long
      long=double(code(lc))
      lc=lc+1
      id=code(lc:lc-1+nsiz)
      lc=lc+nsiz
      cc=bytecodewalk(code(lc:lc+long-1))
      c1=[c1 int32(7) int32(size(cv,'*')) cv int32(size(cc,'*')) id cc]
      lc=lc+long
      lc0=lc
    case 8 then //if
      if code(lc+1)==0 then //very old code
	error(msprintf(gettext("%s: obsolete op-code %d.\n"),"bytecodewalk",8))
      end
      c1=[c1 code(lc0:lc-1)]
      ll=lc
      long_tot=abs(double(code(lc+1)))
      nif=double(code(lc+2))
      ctemp=code(lc:lc+3)

      lc=lc+4
      for k=1:nif
	long_if_expr=double(code(lc)) 
	lc=lc+1
	c_if_expr=bytecodewalk(code(lc:lc+long_if_expr-1))
	lc=lc+long_if_expr
	long_if_expr=size(c_if_expr,'*')
	long_if_then=double(code(lc)) 
	lc=lc+1
	c_if_then=bytecodewalk(code(lc:lc+long_if_then-1))
	lc=lc+long_if_then
	long_if_then=size(c_if_then,'*')
	ctemp=[ctemp int32(long_if_expr) c_if_expr int32(long_if_then) ...
	       c_if_then]
      end
      long_else=double(code(lc)) 
      lc=lc+1
      c_else=bytecodewalk(code(lc:lc+long_else-1))
      lc=lc+long_else
      long_else=size(c_else,'*')
      ctemp =[ctemp int32(long_else) c_else]
      //padding ???
      if lc-ll<long_tot then ctemp=[ctemp code(lc:ll+long_tot-1)];lc=ll+long_tot;end
      lc0=lc
//      if size(ctemp,'*')<>long_tot then pause,end
      long_tot=size(ctemp,'*')
      ctemp(2)=-int32(long_tot)
      c1=[c1  ctemp]
    
    case 9 then //while
      if code(lc+1)==0 then //very old code
	error(msprintf(gettext("%s: obsolete op-code %d.\n"),"bytecodewalk",9))
      end
      c1=[c1 code(lc0:lc-1)]
      ll=lc
      long_tot=abs(double(code(lc+1)))
      lc=lc+4
      ctemp=int32([9 0 1 0])
      long_while_expr=double(code(lc)) 
      lc=lc+1
      c_while_expr=bytecodewalk(code(lc:lc+long_while_expr-1))
      lc=lc+long_while_expr
      long_while_expr=size(c_while_expr,'*')
      long_while_then=double(code(lc));llthen=lc
      lc=lc+1
      c_while_then=bytecodewalk(code(lc:lc+long_while_then-1));
      lc=lc+long_while_then;
      long_while_then=size(c_while_then,'*');
      ctemp=[ctemp int32(long_while_expr) c_while_expr int32(long_while_then) c_while_then];
      long_else=double(code(lc)) 
      lc=lc+1
      c_else=bytecodewalk(code(lc:lc+long_else-1))
      lc=lc+long_else
      long_else=size(c_else,'*')
      ctemp =[ctemp int32(long_else) c_else]
      if lc-ll<long_tot then ctemp=[ctemp code(lc:ll+long_tot-1)];lc=ll+long_tot;end
      lc0=lc
      long_tot=size(ctemp,'*')
      ctemp(2)=-int32(long_tot)
      c1=[c1  ctemp]
     case 10 then//select case
      c1=[c1 code(lc0:lc-1)]
      ll=lc
      long_tot=abs(double(code(lc+1)))
      ncase=double(code(lc+2))
      ctemp=code(lc:lc+2)
      lc=lc+3

      long_case_expr=double(code(lc)) 
      lc=lc+1
      c_case_expr=bytecodewalk(code(lc:lc+long_case_expr-1))
      lc=lc+long_case_expr
      long_case_expr=size(c_case_expr,'*')
      ctemp=[ctemp int32(long_case_expr) c_case_expr]
      for k=1:ncase
	long_case_expr=double(code(lc));
	lc=lc+1;
	c_case_expr=bytecodewalk(code(lc:lc+long_case_expr-1))
	lc=lc+long_case_expr;
	long_case_expr=size(c_case_expr,'*');
	long_case_then=double(code(lc)) 
	lc=lc+1
	c_case_then=bytecodewalk(code(lc:lc+long_case_then-1))
	lc=lc+long_case_then
	long_case_then=size(c_case_then,'*')
	ctemp=[ctemp int32(long_case_expr) c_case_expr int32(long_case_then) ...
	       c_case_then]
      end
      long_else=double(code(lc)) 
      lc=lc+1
      c_else=bytecodewalk(code(lc:lc+long_else-1))
      lc=lc+long_else
      long_else=size(c_else,'*')
      ctemp =[ctemp  int32(long_else) c_else]
      //padding ???
      if lc-ll<long_tot then ctemp=[ctemp code(lc:ll+long_tot-1)];lc=ll+long_tot;end

      lc0=lc
      //if size(ctemp,'*')<>long_tot then pause,end
      long_tot=size(ctemp,'*')
      ctemp(2)=int32(long_tot)
      c1=[c1  ctemp]
    case 11 then //try catch
      long_try=double(code(lc+1))
      long_catch=double(code(lc+2))
      lc=lc+3
      c_try=bytecodewalk(code(lc:lc+long_try-1))
      lc=lc+long_try
      long_try=size(c_try,'*')
  
      c_catch=bytecodewalk(code(lc:lc+long_catch-1))
      lc=lc+long_catch
      long_catch=size(c_catch,'*')
      c1=[c1 int32([11 long_try long_catch]) c_try c_catch]
      lc0=lc
    case 12 then //pause
      lc=lc+1
    case 13 then //break
      lc=lc+1
    case 14 then //abort
      lc=lc+1
    case 15 then //eol
      lc=lc+1
    case 16 then //line num
      lc=lc+2
    case 17 then //return
      lc=lc+1
    case 18 then //nmark named variable
      lc=lc+1+nsiz
    case 19 then  //Mkindx
      lc=lc+3
    case 20 then  
      lc=lc+1
    case 21 then //begrhs
      lc=lc+1
    case 22 then //printmode
      lc=lc+2
    case 23 then //name2var
      lc=lc+1+nsiz
    case 24 then //
      lc=lc+1
    case 25 then //profile
      lc=lc+3
    case 26 then //vector of string
      n=double(code(lc+1)*code(lc+2))
      nc=double(code(lc+4+n))-1
      lc=lc+5+n+nc
    case 27 then //varfunptr
      lc=lc+3+nsiz
    case 28 then //
      lc=lc+1
    case 29 then //assignment
      nlhs=double(code(lc+1))
      lc=lc+3+nlhs*(nsiz+1)
    case 30 then // skip logical evaluation
      lc=lc+3
    case 31 then //comment
      lc=lc+2+double(code(lc+1))
    case 99 then
      lc=lc+1
    else//Matfns
      lc=lc+4
    end
    end
  end
  c1=[c1 code(lc0:$)]
endfunction