Menu

[r4]: / trunk / JavaScript / Interp / Commands.cs  Maximize  Restore  History

Download this file

226 lines (203 with data), 4.3 kB

  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
/** JavaScript -- DOT NET Javascript Library
* Copyright (C) 2005 John Garrison
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
using System;
using System.Collections;
using System.Diagnostics;
namespace JavaScript
{
public enum Op
{
NOP,
POP,
PUSH,
ROT,
ROT3,
DUP,
CLEAR_STK,
ADD,
SUB,
NEGATE,
MULT,
DIV,
MOD,
AND,
BINAND,
OR,
BINOR,
XOR,
COMPL,
NOT,
LT,
GT,
LTEQ,
GTEQ,
EQ,
NEQ,
NEWPROP,
NEWITER,
ITERNEXT,
ASSIGN,
STORE,
REF_PROP,
CLONE,
THIS,
MARK,
UNMARK,
PUSH_CONTEXT,
RVALUE,
DEREF_PROP,
ENTER,
LEAVE,
CALL,
RETURN,
NEW,
DEFTYPE,
DEFARG,
DEFBODY,
NATIVE,
DEBUGGER,
JMPZ,
JMP,
BREAK,
SETBREAK,
JMPNZ,
DISPATCH
}
public enum Mode
{
IM, // command arg hold a value
INDIR, // argument holds the name of a property to load
STK_IM, // value from the stack
STK_INDIR // stack hold the name of a property
}
public class Command
{
public Command( Op opcode, Mode mode, int linenum )
{
m_opcode = opcode;
m_line = (linenum < 0) ? 0 : linenum;
m_mode = mode;
}
public Command( Op opcode, Mode mode, JsObject arg, int linenum ) : this ( opcode, mode, linenum )
{
m_opcode = opcode;
m_arg = arg;
}
public Command( Op opcode, Mode mode, JsObject arg, int linenum, string debugHint ) : this( opcode, mode, arg, linenum )
{
m_debughint = debugHint;
}
public Op OpCode
{
get
{
return m_opcode;
}
}
public JsObject Arg
{
get
{
return m_arg;
}
set
{
m_arg = value;
}
}
public Mode AddressMode
{
get
{
return m_mode;
}
}
public override string ToString()
{
string ret = m_opcode.ToString();
if ( m_arg != null )
{
ret += ":" + m_arg.ToString();
}
if ( m_debughint != null )
{
ret += " (" + m_debughint + ":" + m_line.ToString() + ")";
}
return ret;
}
public Command Dup()
{
if ( m_arg == null )
{
return new Command( m_opcode, m_mode, TypeUndefined.Instance, m_line, m_debughint );
}
else
{
//return new Command( m_opcode, m_mode, m_arg.Dup(), m_line, m_debughint );
return new Command(m_opcode, m_mode, m_arg, m_line, m_debughint);
}
}
public int LineNumber
{
get
{
return m_line;
}
}
public string DebugHint
{
get { return m_debughint; }
set { m_debughint = value; }
}
public object Deref( StackFrame ctx )
{
object ret = null;
switch ( m_mode )
{
case Mode.IM:
// arg hold a value
ret = m_arg;
break;
case Mode.INDIR:
// argument holds the name of a property to load
ret = ctx.LValue(m_arg.ToString());
break;
case Mode.STK_IM:
// value from the stack
ret = ctx.Stack.Pop();
break;
case Mode.STK_INDIR:
// stack hold the name of a property
JsObject obj = LValue.CheckRValue( ctx.Stack.Pop() );
ret = ctx.LValue( obj.ToString() );
break;
}
Debug.Assert(ret != null);
if (ret is LValue && ((LValue)ret).Get() is TypeFunction && ((TypeFunction)((LValue)ret).Get()).IsAnonFunction)
{
((TypeFunction)((LValue)ret).Get()).OuterObject = ctx.This;
}
return ret;
}
protected Op m_opcode;
protected JsObject m_arg;
protected Mode m_mode;
protected int m_line;
protected string m_debughint = "";
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.