2003/11/19 06:18:46
[org.ibex.core.git] / src / org / xwt / js / Interpreter.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt.js;
3
4 import org.xwt.util.*;
5 import java.util.*;
6 import java.io.*;
7
8 /** Encapsulates a single JS interpreter (ie call stack) */
9 class Interpreter implements ByteCodes, Tokens {
10
11
12     // Thread-Interpreter Mapping /////////////////////////////////////////////////////////////////////////
13
14     static Interpreter current() { return (Interpreter)threadToInterpreter.get(Thread.currentThread()); }
15     private static Hashtable threadToInterpreter = new Hashtable();
16
17     
18     // Instance members and methods //////////////////////////////////////////////////////////////////////
19     
20     int pausecount;               ///< the number of times pause() has been invoked; -1 indicates unpauseable
21     JSFunction f = null;          ///< the currently-executing JSFunction
22     JSScope scope;                ///< the current top-level scope (LIFO stack via NEWSCOPE/OLDSCOPE)
23     Vec stack = new Vec();        ///< the object stack
24     int pc = 0;                   ///< the program counter
25
26     Interpreter(JSFunction f, boolean pauseable, JSArray args) {
27         stack.push(new Interpreter.CallMarker(this));    // the "root function returned" marker -- f==null
28         this.f = f;
29         this.pausecount = pauseable ? 0 : -1;
30         this.scope = new JSScope(f.parentScope);
31         stack.push(args);
32     }
33     
34     /** this is the only synchronization point we need in order to be threadsafe */
35     synchronized Object resume() {
36         Thread t = Thread.currentThread();
37         Interpreter old = (Interpreter)threadToInterpreter.get(t);
38         threadToInterpreter.put(t, this);
39         try {
40             return run();
41         } finally {
42             if (old == null) threadToInterpreter.remove(t);
43             else threadToInterpreter.put(t, old);
44         }
45     }
46
47     private static JSExn je(String s) { return new JSExn(JS.getSourceName() + ":" + JS.getLine() + " " + s); }
48
49     // FIXME: double check the trap logic
50     private Object run() throws JSExn {
51
52         // if pausecount changes after a get/put/call, we know we've been paused
53         final int initialPauseCount = pausecount;
54
55         OUTER: for(;; pc++) {
56         try {
57             if (f == null) return stack.pop();
58             int op = f.op[pc];
59             Object arg = f.arg[pc];
60             if(op == FINALLY_DONE) {
61                 FinallyData fd = (FinallyData) stack.pop();
62                 if(fd == null) continue OUTER; // NOP
63                 op = fd.op;
64                 arg = fd.arg;
65             }
66             switch(op) {
67             case LITERAL: stack.push(arg); break;
68             case OBJECT: stack.push(new JS()); break;
69             case ARRAY: stack.push(new JSArray(JS.toNumber(arg).intValue())); break;
70             case DECLARE: scope.declare((String)(arg==null ? stack.peek() : arg)); if(arg != null) stack.push(arg); break;
71             case TOPSCOPE: stack.push(scope); break;
72             case JT: if (JS.toBoolean(stack.pop())) pc += JS.toNumber(arg).intValue() - 1; break;
73             case JF: if (!JS.toBoolean(stack.pop())) pc += JS.toNumber(arg).intValue() - 1; break;
74             case JMP: pc += JS.toNumber(arg).intValue() - 1; break;
75             case POP: stack.pop(); break;
76             case SWAP: {
77                 int depth = (arg == null ? 1 : JS.toInt(arg));
78                 Object save = stack.elementAt(stack.size() - 1);
79                 for(int i=stack.size() - 1; i > stack.size() - 1 - depth; i--)
80                     stack.setElementAt(stack.elementAt(i-1), i);
81                 stack.setElementAt(save, stack.size() - depth - 1);
82                 break; }
83             case DUP: stack.push(stack.peek()); break;
84             case NEWSCOPE: scope = new JSScope(scope); break;
85             case OLDSCOPE: scope = scope.getParentScope(); break;
86             case ASSERT: if (!JS.toBoolean(stack.pop())) throw je("assertion failed"); break;
87             case BITNOT: stack.push(JS.N(~JS.toLong(stack.pop()))); break;
88             case BANG: stack.push(JS.B(!JS.toBoolean(stack.pop()))); break;
89             case NEWFUNCTION: stack.push(((JSFunction)arg).cloneWithNewParentScope(scope)); break;
90             case LABEL: break;
91
92             case TYPEOF: {
93                 Object o = stack.pop();
94                 if (o == null) stack.push(null);
95                 else if (o instanceof JS) stack.push(((JS)o).typeName());
96                 else if (o instanceof String) stack.push("string");
97                 else if (o instanceof Number) stack.push("number");
98                 else if (o instanceof Boolean) stack.push("boolean");
99                 else stack.push("unknown");
100                 break;
101             }
102
103             case PUSHKEYS: {
104                 Object o = stack.peek();
105                 Enumeration e = ((JS)o).keys();
106                 JSArray a = new JSArray();
107                 while(e.hasMoreElements()) a.addElement(e.nextElement());
108                 stack.push(a);
109                 break;
110             }
111
112             case LOOP:
113                 stack.push(new LoopMarker(pc, pc > 0 && f.op[pc - 1] == LABEL ? (String)f.arg[pc - 1] : (String)null, scope));
114                 stack.push(Boolean.TRUE);
115                 break;
116
117             case BREAK:
118             case CONTINUE:
119                 while(stack.size() > 0) {
120                     Object o = stack.pop();
121                     if (o instanceof CallMarker) je("break or continue not within a loop");
122                     if (o instanceof TryMarker) {
123                         if(((TryMarker)o).finallyLoc < 0) continue; // no finally block, keep going
124                         stack.push(new FinallyData(op, arg));
125                         scope = ((TryMarker)o).scope;
126                         pc = ((TryMarker)o).finallyLoc - 1;
127                         continue OUTER;
128                     }
129                     if (o instanceof LoopMarker) {
130                         if (arg == null || arg.equals(((LoopMarker)o).label)) {
131                             int loopInstructionLocation = ((LoopMarker)o).location;
132                             int endOfLoop = ((Integer)f.arg[loopInstructionLocation]).intValue() + loopInstructionLocation;
133                             scope = ((LoopMarker)o).scope;
134                             if (op == CONTINUE) { stack.push(o); stack.push(Boolean.FALSE); }
135                             pc = op == BREAK ? endOfLoop - 1 : loopInstructionLocation;
136                             continue OUTER;
137                         }
138                     }
139                 }
140                 throw new Error("CONTINUE/BREAK invoked but couldn't find LoopMarker at " +
141                                 JS.getSourceName() + ":" + JS.getLine());
142
143             case TRY: {
144                 int[] jmps = (int[]) arg;
145                 // jmps[0] is how far away the catch block is, jmps[1] is how far away the finally block is
146                 // each can be < 0 if the specified block does not exist
147                 stack.push(new TryMarker(jmps[0] < 0 ? -1 : pc + jmps[0], jmps[1] < 0 ? -1 : pc + jmps[1], scope));
148                 break;
149             }
150
151             case RETURN: {
152                 Object retval = stack.pop();
153                 while(stack.size() > 0) {
154                     Object o = stack.pop();
155                     if (o instanceof TryMarker) {
156                         if(((TryMarker)o).finallyLoc < 0) continue;
157                         stack.push(retval); 
158                         stack.push(new FinallyData(RETURN));
159                         scope = ((TryMarker)o).scope;
160                         pc = ((TryMarker)o).finallyLoc - 1;
161                         continue OUTER;
162                     } else if (o instanceof CallMarker) {
163                         if (scope instanceof Trap.TrapScope) {
164                             Trap.TrapScope ts = (Trap.TrapScope)scope;
165                             if (!ts.cascadeHappened) {
166                                 ts.cascadeHappened = true;
167                                 Trap t = ts.t.next;
168                                 while (t != null && t.f.numFormalArgs == 0) t = t.next;
169                                 if (t == null) {
170                                     ((JS)ts.t.trapee).put(t.name, ts.val);
171                                     if (pausecount > initialPauseCount) { pc++; return null; }   // we were paused
172                                 } else {
173                                     stack.push(o);
174                                     JSArray args = new JSArray();
175                                     args.addElement(ts.val);
176                                     stack.push(args);
177                                     f = t.f;
178                                     scope = new Trap.TrapScope(f.parentScope, t, ts.val);
179                                     pc = -1;
180                                     break;
181                                 }
182                             }
183                         }
184                         scope = ((CallMarker)o).scope;
185                         pc = ((CallMarker)o).pc;
186                         f = (JSFunction)((CallMarker)o).f;
187                         stack.push(retval);
188                         continue OUTER;
189                     }
190                 }
191                 throw new Error("error: RETURN invoked but couldn't find a CallMarker!");
192             }
193
194             case PUT: {
195                 Object val = stack.pop();
196                 Object key = stack.pop();
197                 Object target = stack.peek();
198                 if (target == null)
199                     throw je("tried to put a value to the " + key + " property on the null value");
200                 if (!(target instanceof JS))
201                     throw je("tried to put a value to the " + key + " property on a " + target.getClass().getName());
202                 if (key == null)
203                     throw je("tried to assign \"" + (val==null?"(null)":val.toString()) + "\" to the null key");
204                 Trap t = null;
205                 if (target instanceof JS) {
206                     t = ((JS)target).getTrap(val);
207                     while (t != null && t.f.numFormalArgs == 0) t = t.next;
208                 } else if (target instanceof Trap.TrapScope && key.equals("cascade")) {
209                     Trap.TrapScope ts = (Trap.TrapScope)target;
210                     t = ts.t.next;
211                     ts.cascadeHappened = true;
212                     while (t != null && t.f.numFormalArgs == 0) t = t.next;
213                     if (t == null) target = ts.t.trapee;
214                 }
215                 if (t != null) {
216                     stack.push(new CallMarker(this));
217                     JSArray args = new JSArray();
218                     args.addElement(val);
219                     stack.push(args);
220                     f = t.f;
221                     scope = new Trap.TrapScope(f.parentScope, t, val);
222                     pc = -1;
223                     break;
224                 }
225                 ((JS)target).put(key, val);
226                 if (pausecount > initialPauseCount) { pc++; return null; }   // we were paused
227                 stack.push(val);
228                 break;
229             }
230
231             case GET:
232             case GET_PRESERVE: {
233                 Object o, v;
234                 if (op == GET) {
235                     v = arg == null ? stack.pop() : arg;
236                     o = stack.pop();
237                 } else {
238                     v = stack.pop();
239                     o = stack.peek();
240                     stack.push(v);
241                 }
242                 Object ret = null;
243                 if (v == null) throw je("tried to get the null key from " + o);
244                 if (o == null) throw je("tried to get property \"" + v + "\" from the null value @" + pc + "\n" + f.dump());
245                 if (o instanceof String || o instanceof Number || o instanceof Boolean) {
246                     ret = getFromPrimitive(o,v);
247                     stack.push(ret);
248                     break;
249                 } else if (o instanceof JS) {
250                     Trap t = null;
251                     if (o instanceof JS) {
252                         t = ((JS)o).getTrap(v);
253                         while (t != null && t.f.numFormalArgs != 0) t = t.next;
254                     } else if (o instanceof Trap.TrapScope && v.equals("cascade")) {
255                         t = ((Trap.TrapScope)o).t.next;
256                         while (t != null && t.f.numFormalArgs != 0) t = t.next;
257                         if (t == null) o = ((Trap.TrapScope)o).t.trapee;
258                     }
259                     if (t != null) {
260                         stack.push(new CallMarker(this));
261                         JSArray args = new JSArray();
262                         stack.push(args);
263                         f = t.f;
264                         scope = new Trap.TrapScope(f.parentScope, t, null);
265                         ((Trap.TrapScope)scope).cascadeHappened = true;
266                         pc = -1;
267                         break;
268                     }
269                     ret = ((JS)o).get(v);
270                     if (ret == JS.METHOD) ret = new Stub((JS)o, v);
271                     if (pausecount > initialPauseCount) { pc++; return null; }   // we were paused
272                     stack.push(ret);
273                     break;
274                 }
275                 throw je("tried to get property " + v + " from a " + o.getClass().getName());
276             }
277             
278             case CALL: case CALLMETHOD: {
279                 int numArgs = JS.toInt(arg);
280                 Object method = null;
281                 Object ret = null;
282                 Object object = stack.pop();
283
284                 if (op == CALLMETHOD) {
285                     if (object == JS.METHOD) {
286                         method = stack.pop();
287                         object = stack.pop();
288                     } else {
289                         stack.pop();
290                         stack.pop();
291                     }
292                 }
293
294                 Object[] rest = numArgs > 3 ? new Object[numArgs - 3] : null;
295                 for(int i=numArgs - 1; i>2; i--) rest[i-3] = stack.pop();
296                 Object a2 = numArgs <= 2 ? null : stack.pop();
297                 Object a1 = numArgs <= 1 ? null : stack.pop();
298                 Object a0 = numArgs <= 0 ? null : stack.pop();
299
300                 if (object instanceof String || object instanceof Number || object instanceof Boolean) {
301                     ret = callMethodOnPrimitive(object, method, a0, a1, a2, null, numArgs);
302
303                 } else if (object instanceof JSFunction) {
304                     // FIXME: use something similar to call0/call1/call2 here
305                     JSArray arguments = new JSArray();
306                     for(int i=0; i<numArgs; i++) arguments.addElement(i==0?a0:i==1?a1:i==2?a2:rest[i-3]);
307                     stack.push(new CallMarker(this));
308                     stack.push(arguments);
309                     f = (JSFunction)object;
310                     scope = new JSScope(f.parentScope);
311                     pc = -1;
312                     break;
313
314                 } else if (object instanceof JS) {
315                     JS c = (JS)object;
316                     ret = method == null ? c.call(a0, a1, a2, rest, numArgs) : c.callMethod(method, a0, a1, a2, rest, numArgs);
317
318                 } else {
319                     throw new JSExn("can't call a " + object + " @" + pc + "\n" + f.dump());
320
321                 }
322                 if (pausecount > initialPauseCount) { pc++; return null; }
323                 stack.push(ret);
324                 break;
325             }
326
327             case THROW: {
328                 Object o = stack.pop();
329                 if(o instanceof JSExn) throw (JSExn)o;
330                 throw new JSExn(o);
331             }
332
333             case ASSIGN_SUB: case ASSIGN_ADD: {
334                 Object val = stack.pop();
335                 Object old = stack.pop();
336                 Object key = stack.pop();
337                 Object obj = stack.peek();
338                 if (val instanceof JSFunction && obj instanceof JSScope) {
339                     JSScope parent = (JSScope)obj;
340                     while(parent.getParentScope() != null) parent = parent.getParentScope();
341                     if (parent instanceof JS) {
342                         JS b = (JS)parent;
343                         if (op == ASSIGN_ADD) b.addTrap(key, (JSFunction)val);
344                         else b.delTrap(key, (JSFunction)val);
345                         // skip over the "normal" implementation of +=/-=
346                         pc += ((Integer)arg).intValue() - 1;
347                         break;
348                     }
349                 }
350                 // use the "normal" implementation
351                 stack.push(key);
352                 stack.push(old);
353                 stack.push(val);
354                 break;
355             }
356
357             case ADD: {
358                 int count = ((Number)arg).intValue();
359                 if(count < 2) throw new Error("this should never happen");
360                 if(count == 2) {
361                     // common case
362                     Object right = stack.pop();
363                     Object left = stack.pop();
364                     if(left instanceof String || right instanceof String)
365                         stack.push(JS.toString(left).concat(JS.toString(right)));
366                     else stack.push(JS.N(JS.toDouble(left) + JS.toDouble(right)));
367                 } else {
368                     Object[] args = new Object[count];
369                     while(--count >= 0) args[count] = stack.pop();
370                     if(args[0] instanceof String) {
371                         StringBuffer sb = new StringBuffer(64);
372                         for(int i=0;i<args.length;i++) sb.append(JS.toString(args[i]));
373                         stack.push(sb.toString());
374                     } else {
375                         int numStrings = 0;
376                         for(int i=0;i<args.length;i++) if(args[i] instanceof String) numStrings++;
377                         if(numStrings == 0) {
378                             double d = 0.0;
379                             for(int i=0;i<args.length;i++) d += JS.toDouble(args[i]);
380                             stack.push(JS.N(d));
381                         } else {
382                             int i=0;
383                             StringBuffer sb = new StringBuffer(64);
384                             if(!(args[0] instanceof String || args[1] instanceof String)) {
385                                 double d=0.0;
386                                 do {
387                                     d += JS.toDouble(args[i++]);
388                                 } while(!(args[i] instanceof String));
389                                 sb.append(JS.toString(JS.N(d)));
390                             }
391                             while(i < args.length) sb.append(JS.toString(args[i++]));
392                             stack.push(sb.toString());
393                         }
394                     }
395                 }
396                 break;
397             }
398
399             default: {
400                 Object right = stack.pop();
401                 Object left = stack.pop();
402                 switch(op) {
403                         
404                 case BITOR: stack.push(JS.N(JS.toLong(left) | JS.toLong(right))); break;
405                 case BITXOR: stack.push(JS.N(JS.toLong(left) ^ JS.toLong(right))); break;
406                 case BITAND: stack.push(JS.N(JS.toLong(left) & JS.toLong(right))); break;
407
408                 case SUB: stack.push(JS.N(JS.toDouble(left) - JS.toDouble(right))); break;
409                 case MUL: stack.push(JS.N(JS.toDouble(left) * JS.toDouble(right))); break;
410                 case DIV: stack.push(JS.N(JS.toDouble(left) / JS.toDouble(right))); break;
411                 case MOD: stack.push(JS.N(JS.toDouble(left) % JS.toDouble(right))); break;
412                         
413                 case LSH: stack.push(JS.N(JS.toLong(left) << JS.toLong(right))); break;
414                 case RSH: stack.push(JS.N(JS.toLong(left) >> JS.toLong(right))); break;
415                 case URSH: stack.push(JS.N(JS.toLong(left) >>> JS.toLong(right))); break;
416                         
417                 case LT: case LE: case GT: case GE: {
418                     if (left == null) left = JS.N(0);
419                     if (right == null) right = JS.N(0);
420                     int result = 0;
421                     if (left instanceof String || right instanceof String) {
422                         result = left.toString().compareTo(right.toString());
423                     } else {
424                         result = (int)java.lang.Math.ceil(JS.toDouble(left) - JS.toDouble(right));
425                     }
426                     stack.push(JS.B((op == LT && result < 0) || (op == LE && result <= 0) ||
427                                (op == GT && result > 0) || (op == GE && result >= 0)));
428                     break;
429                 }
430                     
431                 case EQ:
432                 case NE: {
433                     Object l = left;
434                     Object r = right;
435                     boolean ret;
436                     if (l == null) { Object tmp = r; r = l; l = tmp; }
437                     if (l == null && r == null) ret = true;
438                     else if (r == null) ret = false; // l != null, so its false
439                     else if (l instanceof Boolean) ret = JS.B(JS.toBoolean(r)).equals(l);
440                     else if (l instanceof Number) ret = JS.toNumber(r).doubleValue() == JS.toNumber(l).doubleValue();
441                     else if (l instanceof String) ret = r != null && l.equals(r.toString());
442                     else ret = l.equals(r);
443                     stack.push(JS.B(op == EQ ? ret : !ret)); break;
444                 }
445
446                 default: throw new Error("unknown opcode " + op);
447                 } }
448             }
449
450         } catch(JSExn e) {
451             while(stack.size() > 0) {
452                 Object o = stack.pop();
453                 if (o instanceof CatchMarker || o instanceof TryMarker) {
454                     boolean inCatch = o instanceof CatchMarker;
455                     if(inCatch) {
456                         o = stack.pop();
457                         if(((TryMarker)o).finallyLoc < 0) continue; // no finally block, keep going
458                     }
459                     if(!inCatch && ((TryMarker)o).catchLoc >= 0) {
460                         // run the catch block, this will implicitly run the finally block, if it exists
461                         stack.push(o);
462                         stack.push(catchMarker);
463                         stack.push(e.getObject());
464                         scope = ((TryMarker)o).scope;
465                         pc = ((TryMarker)o).catchLoc - 1;
466                         continue OUTER;
467                     } else {
468                         stack.push(e);
469                         stack.push(new FinallyData(THROW));
470                         scope = ((TryMarker)o).scope;
471                         pc = ((TryMarker)o).finallyLoc - 1;
472                         continue OUTER;
473                     }
474                 }
475                 // no handler found within this func
476                 if(o instanceof CallMarker) throw e;
477             }
478             throw e;
479         } // end try/catch
480         } // end for
481     }
482
483
484
485     // Markers //////////////////////////////////////////////////////////////////////
486
487     public static class CallMarker {
488         int pc;
489         JSScope scope;
490         JSFunction f;
491         public CallMarker(Interpreter cx) { pc = cx.pc + 1; scope = cx.scope; f = cx.f; }
492     }
493     
494     public static class CatchMarker { public CatchMarker() { } }
495     private static CatchMarker catchMarker = new CatchMarker();
496     
497     public static class LoopMarker {
498         public int location;
499         public String label;
500         public JSScope scope;
501         public LoopMarker(int location, String label, JSScope scope) {
502             this.location = location;
503             this.label = label;
504             this.scope = scope;
505         }
506     }
507     public static class TryMarker {
508         public int catchLoc;
509         public int finallyLoc;
510         public JSScope scope;
511         public TryMarker(int catchLoc, int finallyLoc, JSScope scope) {
512             this.catchLoc = catchLoc;
513             this.finallyLoc = finallyLoc;
514             this.scope = scope;
515         }
516     }
517     public static class FinallyData {
518         public int op;
519         public Object arg;
520         public FinallyData(int op, Object arg) { this.op = op; this.arg = arg; }
521         public FinallyData(int op) { this(op,null); }
522     }
523
524
525     // Operations on Primitives //////////////////////////////////////////////////////////////////////
526
527     static Object callMethodOnPrimitive(Object o, Object method, Object arg0, Object arg1, Object arg2, Object[] rest, int alength) {
528         if (o instanceof Number) {
529             //#switch(method)
530             case "toFixed": throw new JSExn("toFixed() not implemented");
531             case "toExponential": throw new JSExn("toExponential() not implemented");
532             case "toPrecision": throw new JSExn("toPrecision() not implemented");
533             case "toString": {
534                 int radix = alength >= 1 ? JS.toInt(arg0) : 10;
535                 return Long.toString(((Number)o).longValue(),radix);
536             }
537             //#end
538         } else if (o instanceof Boolean) {
539             // No methods for Booleans
540             throw new JSExn("attempt to call a method on a Boolean");
541         }
542
543         String s = JS.toString(o);
544         int slength = s.length();
545         //#switch(method)
546         case "substring": {
547             int a = alength >= 1 ? JS.toInt(arg0) : 0;
548             int b = alength >= 2 ? JS.toInt(arg1) : slength;
549             if (a > slength) a = slength;
550             if (b > slength) b = slength;
551             if (a < 0) a = 0;
552             if (b < 0) b = 0;
553             if (a > b) { int tmp = a; a = b; b = tmp; }
554             return s.substring(a,b);
555         }
556         case "substr": {
557             int start = alength >= 1 ? JS.toInt(arg0) : 0;
558             int len = alength >= 2 ? JS.toInt(arg1) : Integer.MAX_VALUE;
559             if (start < 0) start = slength + start;
560             if (start < 0) start = 0;
561             if (len < 0) len = 0;
562             if (len > slength - start) len = slength - start;
563             if (len <= 0) return "";
564             return s.substring(start,start+len);
565         }
566         case "charAt": {
567             int p = alength >= 1 ? JS.toInt(arg0) : 0;
568             if (p < 0 || p >= slength) return "";
569             return s.substring(p,p+1);
570         }
571         case "charCodeAt": {
572             int p = alength >= 1 ? JS.toInt(arg0) : 0;
573             if (p < 0 || p >= slength) return JS.N(Double.NaN);
574             return JS.N(s.charAt(p));
575         }
576         case "concat": {
577             StringBuffer sb = new StringBuffer(slength*2).append(s);
578             for(int i=0;i<alength;i++) sb.append(i==0?arg0:i==1?arg1:i==2?arg2:rest[i-3]);
579             return sb.toString();
580         }
581         case "indexOf": {
582             String search = alength >= 1 ? arg0.toString() : "null";
583             int start = alength >= 2 ? JS.toInt(arg1) : 0;
584             // Java's indexOf handles an out of bounds start index, it'll return -1
585             return JS.N(s.indexOf(search,start));
586         }
587         case "lastIndexOf": {
588             String search = alength >= 1 ? arg0.toString() : "null";
589             int start = alength >= 2 ? JS.toInt(arg1) : 0;
590             // Java's indexOf handles an out of bounds start index, it'll return -1
591             return JS.N(s.lastIndexOf(search,start));            
592         }
593         case "match": return JSRegexp.stringMatch(s,arg0);
594         case "replace": return JSRegexp.stringReplace(s,(String)arg0,arg1);
595         case "search": return JSRegexp.stringSearch(s,arg0);
596         case "split": return JSRegexp.stringSplit(s,arg0,arg1,alength);
597         case "toLowerCase": return s.toLowerCase();
598         case "toUpperCase": return s.toUpperCase();
599         case "toString": return s;
600         case "slice": {
601             int a = alength >= 1 ? JS.toInt(arg0) : 0;
602             int b = alength >= 2 ? JS.toInt(arg1) : slength;
603             if (a < 0) a = slength + a;
604             if (b < 0) b = slength + b;
605             if (a < 0) a = 0;
606             if (b < 0) b = 0;
607             if (a > slength) a = slength;
608             if (b > slength) b = slength;
609             if (a > b) return "";
610             return s.substring(a,b);
611         }
612         //#end
613         throw new JSExn("Attempted to call non-existent method: " + method);
614     }
615     
616     static Object getFromPrimitive(Object o, Object key) {
617         boolean returnJS = false;
618         if (o instanceof Boolean) {
619             throw new JSExn("cannot call methods on Booleans");
620         } else if (o instanceof Number) {
621             if (key.equals("toPrecision") || key.equals("toExponential") || key.equals("toFixed"))
622                 returnJS = true;
623         }
624         if (!returnJS) {
625             // the string stuff applies to everything
626             String s = o.toString();
627             
628             // this is sort of ugly, but this list should never change
629             // These should provide a complete (enough) implementation of the ECMA-262 String object
630
631             //#switch(key)
632             case "length": return JS.N(s.length());
633             case "substring": returnJS = true; break; 
634             case "charAt": returnJS = true; break; 
635             case "charCodeAt": returnJS = true; break; 
636             case "concat": returnJS = true; break; 
637             case "indexOf": returnJS = true; break; 
638             case "lastIndexOf": returnJS = true; break; 
639             case "match": returnJS = true; break; 
640             case "replace": returnJS = true; break; 
641             case "seatch": returnJS = true; break; 
642             case "slice": returnJS = true; break; 
643             case "split": returnJS = true; break; 
644             case "toLowerCase": returnJS = true; break; 
645             case "toUpperCase": returnJS = true; break; 
646             case "toString": returnJS = true; break; 
647             case "substr": returnJS = true; break; 
648             //#end
649         }
650         if (returnJS) {
651             final Object target = o;
652             final String method = key.toString();
653             return new JS() {
654                     public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) {
655                         if (nargs > 2) throw new JSExn("cannot call that method with that many arguments");
656                         return callMethodOnPrimitive(target, method, a0, a1, a2, rest, nargs);
657                     }
658             };
659         }
660         return null;
661     }
662
663     private static class Stub extends JS {
664         private Object method;
665         JS obj;
666         public Stub(JS obj, Object method) { this.obj = obj; this.method = method; }
667         public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) {
668             return ((JS)obj).callMethod(method, a0, a1, a2, rest, nargs);
669         }
670     }
671 }