usp10: Properly handle invalid arguments to ScriptBreak.
[wine/multimedia.git] / dlls / jscript / engine.c
blob892cb1e75b6b766993373d4d9528b134d99c8a68
1 /*
2 * Copyright 2008,2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "config.h"
20 #include "wine/port.h"
22 #include <math.h>
23 #include <assert.h>
25 #include "jscript.h"
26 #include "engine.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
32 static const WCHAR booleanW[] = {'b','o','o','l','e','a','n',0};
33 static const WCHAR functionW[] = {'f','u','n','c','t','i','o','n',0};
34 static const WCHAR numberW[] = {'n','u','m','b','e','r',0};
35 static const WCHAR objectW[] = {'o','b','j','e','c','t',0};
36 static const WCHAR stringW[] = {'s','t','r','i','n','g',0};
37 static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
38 static const WCHAR unknownW[] = {'u','n','k','n','o','w','n',0};
40 struct _except_frame_t {
41 unsigned stack_top;
42 scope_chain_t *scope;
43 unsigned catch_off;
44 BSTR ident;
46 except_frame_t *next;
49 static HRESULT stack_push(exec_ctx_t *ctx, VARIANT *v)
51 if(!ctx->stack_size) {
52 ctx->stack = heap_alloc(16*sizeof(VARIANT));
53 if(!ctx->stack)
54 return E_OUTOFMEMORY;
55 ctx->stack_size = 16;
56 }else if(ctx->stack_size == ctx->top) {
57 VARIANT *new_stack;
59 new_stack = heap_realloc(ctx->stack, ctx->stack_size*2*sizeof(VARIANT));
60 if(!new_stack) {
61 VariantClear(v);
62 return E_OUTOFMEMORY;
65 ctx->stack = new_stack;
66 ctx->stack_size *= 2;
69 ctx->stack[ctx->top++] = *v;
70 return S_OK;
73 static HRESULT stack_push_bool(exec_ctx_t *ctx, BOOL b)
75 VARIANT v;
77 V_VT(&v) = VT_BOOL;
78 V_BOOL(&v) = b ? VARIANT_TRUE : VARIANT_FALSE;
79 return stack_push(ctx, &v);
82 static inline HRESULT stack_push_number(exec_ctx_t *ctx, double number)
84 VARIANT v;
86 num_set_val(&v, number);
87 return stack_push(ctx, &v);
90 static inline HRESULT stack_push_int(exec_ctx_t *ctx, INT n)
92 VARIANT v;
94 V_VT(&v) = VT_I4;
95 V_I4(&v) = n;
96 return stack_push(ctx, &v);
99 static inline HRESULT stack_push_string(exec_ctx_t *ctx, const WCHAR *str)
101 VARIANT v;
103 V_VT(&v) = VT_BSTR;
104 V_BSTR(&v) = SysAllocString(str);
105 return V_BSTR(&v) ? stack_push(ctx, &v) : E_OUTOFMEMORY;
108 static HRESULT stack_push_objid(exec_ctx_t *ctx, IDispatch *disp, DISPID id)
110 VARIANT v;
111 HRESULT hres;
113 V_VT(&v) = VT_DISPATCH;
114 V_DISPATCH(&v) = disp;
115 hres = stack_push(ctx, &v);
116 if(FAILED(hres))
117 return hres;
119 V_VT(&v) = VT_INT;
120 V_INT(&v) = id;
121 return stack_push(ctx, &v);
124 static inline VARIANT *stack_top(exec_ctx_t *ctx)
126 assert(ctx->top);
127 return ctx->stack + ctx->top-1;
130 static inline VARIANT *stack_topn(exec_ctx_t *ctx, unsigned n)
132 assert(ctx->top > n);
133 return ctx->stack + ctx->top-1-n;
136 static inline VARIANT *stack_pop(exec_ctx_t *ctx)
138 assert(ctx->top);
139 return ctx->stack + --ctx->top;
142 static void stack_popn(exec_ctx_t *ctx, unsigned n)
144 while(n--)
145 VariantClear(stack_pop(ctx));
148 static HRESULT stack_pop_number(exec_ctx_t *ctx, VARIANT *r)
150 VARIANT *v;
151 HRESULT hres;
153 v = stack_pop(ctx);
154 hres = to_number(ctx->script, v, ctx->ei, r);
155 VariantClear(v);
156 return hres;
159 static HRESULT stack_pop_object(exec_ctx_t *ctx, IDispatch **r)
161 VARIANT *v;
162 HRESULT hres;
164 v = stack_pop(ctx);
165 if(V_VT(v) == VT_DISPATCH) {
166 if(!V_DISPATCH(v))
167 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_REQUIRED, NULL);
168 *r = V_DISPATCH(v);
169 return S_OK;
172 hres = to_object(ctx->script, v, r);
173 VariantClear(v);
174 return hres;
177 static inline HRESULT stack_pop_int(exec_ctx_t *ctx, INT *r)
179 return to_int32(ctx->script, stack_pop(ctx), ctx->ei, r);
182 static inline HRESULT stack_pop_uint(exec_ctx_t *ctx, DWORD *r)
184 return to_uint32(ctx->script, stack_pop(ctx), ctx->ei, r);
187 static inline IDispatch *stack_pop_objid(exec_ctx_t *ctx, DISPID *id)
189 assert(V_VT(stack_top(ctx)) == VT_INT && V_VT(stack_topn(ctx, 1)) == VT_DISPATCH);
191 *id = V_INT(stack_pop(ctx));
192 return V_DISPATCH(stack_pop(ctx));
195 static inline IDispatch *stack_topn_objid(exec_ctx_t *ctx, unsigned n, DISPID *id)
197 assert(V_VT(stack_topn(ctx, n)) == VT_INT && V_VT(stack_topn(ctx, n+1)) == VT_DISPATCH);
199 *id = V_INT(stack_topn(ctx, n));
200 return V_DISPATCH(stack_topn(ctx, n+1));
203 static void exprval_release(exprval_t *val)
205 switch(val->type) {
206 case EXPRVAL_VARIANT:
207 if(V_VT(&val->u.var) != VT_EMPTY)
208 VariantClear(&val->u.var);
209 return;
210 case EXPRVAL_IDREF:
211 if(val->u.idref.disp)
212 IDispatch_Release(val->u.idref.disp);
213 return;
214 case EXPRVAL_INVALID:
215 return;
219 /* ECMA-262 3rd Edition 8.7.1 */
220 static HRESULT exprval_value(script_ctx_t *ctx, exprval_t *val, jsexcept_t *ei, VARIANT *ret)
222 V_VT(ret) = VT_EMPTY;
224 switch(val->type) {
225 case EXPRVAL_VARIANT:
226 return VariantCopy(ret, &val->u.var);
227 case EXPRVAL_IDREF:
228 if(!val->u.idref.disp) {
229 FIXME("throw ReferenceError\n");
230 return E_FAIL;
233 return disp_propget(ctx, val->u.idref.disp, val->u.idref.id, ret, ei);
234 case EXPRVAL_INVALID:
235 assert(0);
238 ERR("type %d\n", val->type);
239 return E_FAIL;
242 static HRESULT exprval_to_value(script_ctx_t *ctx, exprval_t *val, jsexcept_t *ei, VARIANT *ret)
244 if(val->type == EXPRVAL_VARIANT) {
245 *ret = val->u.var;
246 V_VT(&val->u.var) = VT_EMPTY;
247 return S_OK;
250 return exprval_value(ctx, val, ei, ret);
253 static void exprval_set_idref(exprval_t *val, IDispatch *disp, DISPID id)
255 val->type = EXPRVAL_IDREF;
256 val->u.idref.disp = disp;
257 val->u.idref.id = id;
259 if(disp)
260 IDispatch_AddRef(disp);
263 HRESULT scope_push(scope_chain_t *scope, jsdisp_t *obj, scope_chain_t **ret)
265 scope_chain_t *new_scope;
267 new_scope = heap_alloc(sizeof(scope_chain_t));
268 if(!new_scope)
269 return E_OUTOFMEMORY;
271 new_scope->ref = 1;
273 jsdisp_addref(obj);
274 new_scope->obj = obj;
276 if(scope) {
277 scope_addref(scope);
278 new_scope->next = scope;
279 }else {
280 new_scope->next = NULL;
283 *ret = new_scope;
284 return S_OK;
287 static void scope_pop(scope_chain_t **scope)
289 scope_chain_t *tmp;
291 tmp = *scope;
292 *scope = tmp->next;
293 scope_release(tmp);
296 void scope_release(scope_chain_t *scope)
298 if(--scope->ref)
299 return;
301 if(scope->next)
302 scope_release(scope->next);
304 jsdisp_release(scope->obj);
305 heap_free(scope);
308 HRESULT create_exec_ctx(script_ctx_t *script_ctx, IDispatch *this_obj, jsdisp_t *var_disp,
309 scope_chain_t *scope, BOOL is_global, exec_ctx_t **ret)
311 exec_ctx_t *ctx;
313 ctx = heap_alloc_zero(sizeof(exec_ctx_t));
314 if(!ctx)
315 return E_OUTOFMEMORY;
317 ctx->ref = 1;
318 ctx->is_global = is_global;
320 if(this_obj)
321 ctx->this_obj = this_obj;
322 else if(script_ctx->host_global)
323 ctx->this_obj = script_ctx->host_global;
324 else
325 ctx->this_obj = to_disp(script_ctx->global);
326 IDispatch_AddRef(ctx->this_obj);
328 jsdisp_addref(var_disp);
329 ctx->var_disp = var_disp;
331 script_addref(script_ctx);
332 ctx->script = script_ctx;
334 if(scope) {
335 scope_addref(scope);
336 ctx->scope_chain = scope;
339 *ret = ctx;
340 return S_OK;
343 void exec_release(exec_ctx_t *ctx)
345 if(--ctx->ref)
346 return;
348 if(ctx->scope_chain)
349 scope_release(ctx->scope_chain);
350 if(ctx->var_disp)
351 jsdisp_release(ctx->var_disp);
352 if(ctx->this_obj)
353 IDispatch_Release(ctx->this_obj);
354 if(ctx->script)
355 script_release(ctx->script);
356 heap_free(ctx->stack);
357 heap_free(ctx);
360 static HRESULT disp_get_id(script_ctx_t *ctx, IDispatch *disp, BSTR name, DWORD flags, DISPID *id)
362 IDispatchEx *dispex;
363 HRESULT hres;
365 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
366 if(FAILED(hres)) {
367 TRACE("unsing IDispatch\n");
369 *id = 0;
370 return IDispatch_GetIDsOfNames(disp, &IID_NULL, &name, 1, 0, id);
373 *id = 0;
374 hres = IDispatchEx_GetDispID(dispex, name, make_grfdex(ctx, flags|fdexNameCaseSensitive), id);
375 IDispatchEx_Release(dispex);
376 return hres;
379 static inline BOOL is_null(const VARIANT *v)
381 return V_VT(v) == VT_NULL || (V_VT(v) == VT_DISPATCH && !V_DISPATCH(v));
384 static HRESULT disp_cmp(IDispatch *disp1, IDispatch *disp2, BOOL *ret)
386 IObjectIdentity *identity;
387 IUnknown *unk1, *unk2;
388 HRESULT hres;
390 if(disp1 == disp2) {
391 *ret = TRUE;
392 return S_OK;
395 if(!disp1 || !disp2) {
396 *ret = FALSE;
397 return S_OK;
400 hres = IDispatch_QueryInterface(disp1, &IID_IUnknown, (void**)&unk1);
401 if(FAILED(hres))
402 return hres;
404 hres = IDispatch_QueryInterface(disp2, &IID_IUnknown, (void**)&unk2);
405 if(FAILED(hres)) {
406 IUnknown_Release(unk1);
407 return hres;
410 if(unk1 == unk2) {
411 *ret = TRUE;
412 }else {
413 hres = IUnknown_QueryInterface(unk1, &IID_IObjectIdentity, (void**)&identity);
414 if(SUCCEEDED(hres)) {
415 hres = IObjectIdentity_IsEqualObject(identity, unk2);
416 IObjectIdentity_Release(identity);
417 *ret = hres == S_OK;
418 }else {
419 *ret = FALSE;
423 IUnknown_Release(unk1);
424 IUnknown_Release(unk2);
425 return S_OK;
428 /* ECMA-262 3rd Edition 11.9.6 */
429 static HRESULT equal2_values(VARIANT *lval, VARIANT *rval, BOOL *ret)
431 TRACE("\n");
433 if(V_VT(lval) != V_VT(rval)) {
434 if(is_num_vt(V_VT(lval)) && is_num_vt(V_VT(rval)))
435 *ret = num_val(lval) == num_val(rval);
436 else if(is_null(lval))
437 *ret = is_null(rval);
438 else
439 *ret = FALSE;
440 return S_OK;
443 switch(V_VT(lval)) {
444 case VT_EMPTY:
445 case VT_NULL:
446 *ret = VARIANT_TRUE;
447 break;
448 case VT_I4:
449 *ret = V_I4(lval) == V_I4(rval);
450 break;
451 case VT_R8:
452 *ret = V_R8(lval) == V_R8(rval);
453 break;
454 case VT_BSTR:
455 if(!V_BSTR(lval))
456 *ret = SysStringLen(V_BSTR(rval))?FALSE:TRUE;
457 else if(!V_BSTR(rval))
458 *ret = SysStringLen(V_BSTR(lval))?FALSE:TRUE;
459 else
460 *ret = !strcmpW(V_BSTR(lval), V_BSTR(rval));
461 break;
462 case VT_DISPATCH:
463 return disp_cmp(V_DISPATCH(lval), V_DISPATCH(rval), ret);
464 case VT_BOOL:
465 *ret = !V_BOOL(lval) == !V_BOOL(rval);
466 break;
467 default:
468 FIXME("unimplemented vt %d\n", V_VT(lval));
469 return E_NOTIMPL;
472 return S_OK;
475 static BOOL lookup_global_members(script_ctx_t *ctx, BSTR identifier, exprval_t *ret)
477 named_item_t *item;
478 DISPID id;
479 HRESULT hres;
481 for(item = ctx->named_items; item; item = item->next) {
482 if(item->flags & SCRIPTITEM_GLOBALMEMBERS) {
483 hres = disp_get_id(ctx, item->disp, identifier, 0, &id);
484 if(SUCCEEDED(hres)) {
485 if(ret)
486 exprval_set_idref(ret, item->disp, id);
487 return TRUE;
492 return FALSE;
495 /* ECMA-262 3rd Edition 10.1.4 */
496 static HRESULT identifier_eval(script_ctx_t *ctx, BSTR identifier, exprval_t *ret)
498 scope_chain_t *scope;
499 named_item_t *item;
500 DISPID id = 0;
501 HRESULT hres;
503 TRACE("%s\n", debugstr_w(identifier));
505 for(scope = ctx->exec_ctx->scope_chain; scope; scope = scope->next) {
506 hres = jsdisp_get_id(scope->obj, identifier, 0, &id);
507 if(SUCCEEDED(hres)) {
508 exprval_set_idref(ret, to_disp(scope->obj), id);
509 return S_OK;
513 hres = jsdisp_get_id(ctx->global, identifier, 0, &id);
514 if(SUCCEEDED(hres)) {
515 exprval_set_idref(ret, to_disp(ctx->global), id);
516 return S_OK;
519 for(item = ctx->named_items; item; item = item->next) {
520 if((item->flags & SCRIPTITEM_ISVISIBLE) && !strcmpW(item->name, identifier)) {
521 if(!item->disp) {
522 IUnknown *unk;
524 if(!ctx->site)
525 break;
527 hres = IActiveScriptSite_GetItemInfo(ctx->site, identifier,
528 SCRIPTINFO_IUNKNOWN, &unk, NULL);
529 if(FAILED(hres)) {
530 WARN("GetItemInfo failed: %08x\n", hres);
531 break;
534 hres = IUnknown_QueryInterface(unk, &IID_IDispatch, (void**)&item->disp);
535 IUnknown_Release(unk);
536 if(FAILED(hres)) {
537 WARN("object does not implement IDispatch\n");
538 break;
542 ret->type = EXPRVAL_VARIANT;
543 V_VT(&ret->u.var) = VT_DISPATCH;
544 V_DISPATCH(&ret->u.var) = item->disp;
545 IDispatch_AddRef(item->disp);
546 return S_OK;
550 if(lookup_global_members(ctx, identifier, ret))
551 return S_OK;
553 ret->type = EXPRVAL_INVALID;
554 return S_OK;
557 /* ECMA-262 3rd Edition 12.2 */
558 static HRESULT interp_var_set(exec_ctx_t *ctx)
560 const BSTR name = ctx->code->instrs[ctx->ip].arg1.bstr;
561 VARIANT *v;
562 HRESULT hres;
564 TRACE("%s\n", debugstr_w(name));
566 v = stack_pop(ctx);
567 hres = jsdisp_propput_name(ctx->var_disp, name, v, ctx->ei);
568 VariantClear(v);
569 return hres;
572 /* ECMA-262 3rd Edition 12.6.4 */
573 static HRESULT interp_forin(exec_ctx_t *ctx)
575 const HRESULT arg = ctx->code->instrs[ctx->ip].arg1.uint;
576 IDispatch *var_obj, *obj = NULL;
577 IDispatchEx *dispex;
578 DISPID id, var_id;
579 BSTR name = NULL;
580 VARIANT *val;
581 HRESULT hres;
583 TRACE("\n");
585 val = stack_pop(ctx);
587 assert(V_VT(stack_top(ctx)) == VT_I4);
588 id = V_I4(stack_top(ctx));
590 var_obj = stack_topn_objid(ctx, 1, &var_id);
591 if(!var_obj) {
592 FIXME("invalid ref\n");
593 VariantClear(val);
594 return E_FAIL;
597 if(V_VT(stack_topn(ctx, 3)) == VT_DISPATCH)
598 obj = V_DISPATCH(stack_topn(ctx, 3));
600 if(obj) {
601 hres = IDispatch_QueryInterface(obj, &IID_IDispatchEx, (void**)&dispex);
602 if(SUCCEEDED(hres)) {
603 hres = IDispatchEx_GetNextDispID(dispex, fdexEnumDefault, id, &id);
604 if(hres == S_OK)
605 hres = IDispatchEx_GetMemberName(dispex, id, &name);
606 IDispatchEx_Release(dispex);
607 if(FAILED(hres)) {
608 VariantClear(val);
609 return hres;
611 }else {
612 TRACE("No IDispatchEx\n");
616 if(name) {
617 VARIANT v;
619 VariantClear(val);
621 V_I4(stack_top(ctx)) = id;
623 V_VT(&v) = VT_BSTR;
624 V_BSTR(&v) = name;
625 hres = disp_propput(ctx->script, var_obj, var_id, &v, ctx->ei);
626 SysFreeString(name);
627 if(FAILED(hres))
628 return hres;
630 ctx->ip++;
631 }else {
632 stack_popn(ctx, 4);
633 ctx->ip = arg;
634 return stack_push(ctx, val);
636 return S_OK;
639 /* ECMA-262 3rd Edition 12.10 */
640 static HRESULT interp_push_scope(exec_ctx_t *ctx)
642 IDispatch *disp;
643 jsdisp_t *obj;
644 VARIANT *v;
645 HRESULT hres;
647 TRACE("\n");
649 v = stack_pop(ctx);
650 hres = to_object(ctx->script, v, &disp);
651 VariantClear(v);
652 if(FAILED(hres))
653 return hres;
655 obj = to_jsdisp(disp);
656 if(!obj) {
657 IDispatch_Release(disp);
658 FIXME("disp is not jsdisp\n");
659 return E_NOTIMPL;
662 hres = scope_push(ctx->scope_chain, obj, &ctx->scope_chain);
663 jsdisp_release(obj);
664 return hres;
667 /* ECMA-262 3rd Edition 12.10 */
668 static HRESULT interp_pop_scope(exec_ctx_t *ctx)
670 TRACE("\n");
672 scope_pop(&ctx->scope_chain);
673 return S_OK;
676 /* ECMA-262 3rd Edition 12.13 */
677 static HRESULT interp_case(exec_ctx_t *ctx)
679 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
680 VARIANT *v;
681 BOOL b;
682 HRESULT hres;
684 TRACE("\n");
686 v = stack_pop(ctx);
687 hres = equal2_values(stack_top(ctx), v, &b);
688 VariantClear(v);
689 if(FAILED(hres))
690 return hres;
692 if(b) {
693 stack_popn(ctx, 1);
694 ctx->ip = arg;
695 }else {
696 ctx->ip++;
698 return S_OK;
701 /* ECMA-262 3rd Edition 12.13 */
702 static HRESULT interp_throw(exec_ctx_t *ctx)
704 TRACE("\n");
706 ctx->ei->var = *stack_pop(ctx);
707 return DISP_E_EXCEPTION;
710 static HRESULT interp_throw_ref(exec_ctx_t *ctx)
712 const HRESULT arg = ctx->code->instrs[ctx->ip].arg1.uint;
714 TRACE("%08x\n", arg);
716 return throw_reference_error(ctx->script, ctx->ei, arg, NULL);
719 static HRESULT interp_throw_type(exec_ctx_t *ctx)
721 const HRESULT hres = ctx->code->instrs[ctx->ip].arg1.uint;
722 const WCHAR *str = ctx->code->instrs[ctx->ip].arg2.str;
724 TRACE("%08x %s\n", hres, debugstr_w(str));
726 return throw_type_error(ctx->script, ctx->ei, hres, str);
729 /* ECMA-262 3rd Edition 12.14 */
730 static HRESULT interp_push_except(exec_ctx_t *ctx)
732 const unsigned arg1 = ctx->code->instrs[ctx->ip].arg1.uint;
733 const BSTR arg2 = ctx->code->instrs[ctx->ip].arg2.bstr;
734 except_frame_t *except;
735 unsigned stack_top;
737 TRACE("\n");
739 stack_top = ctx->top;
741 if(!arg2) {
742 HRESULT hres;
744 hres = stack_push_bool(ctx, TRUE);
745 if(FAILED(hres))
746 return hres;
747 hres = stack_push_bool(ctx, TRUE);
748 if(FAILED(hres))
749 return hres;
752 except = heap_alloc(sizeof(*except));
753 if(!except)
754 return E_OUTOFMEMORY;
756 except->stack_top = stack_top;
757 except->scope = ctx->scope_chain;
758 except->catch_off = arg1;
759 except->ident = arg2;
760 except->next = ctx->except_frame;
761 ctx->except_frame = except;
762 return S_OK;
765 /* ECMA-262 3rd Edition 12.14 */
766 static HRESULT interp_pop_except(exec_ctx_t *ctx)
768 except_frame_t *except;
770 TRACE("\n");
772 except = ctx->except_frame;
773 assert(except != NULL);
775 ctx->except_frame = except->next;
776 heap_free(except);
777 return S_OK;
780 /* ECMA-262 3rd Edition 12.14 */
781 static HRESULT interp_end_finally(exec_ctx_t *ctx)
783 VARIANT *v;
785 TRACE("\n");
787 v = stack_pop(ctx);
789 assert(V_VT(stack_top(ctx)) == VT_BOOL);
790 if(!V_BOOL(stack_top(ctx))) {
791 TRACE("passing exception\n");
793 VariantClear(v);
794 stack_popn(ctx, 1);
795 ctx->ei->var = *stack_pop(ctx);
796 return DISP_E_EXCEPTION;
799 stack_popn(ctx, 2);
800 return stack_push(ctx, v);
803 /* ECMA-262 3rd Edition 13 */
804 static HRESULT interp_func(exec_ctx_t *ctx)
806 function_expression_t *expr = ctx->code->instrs[ctx->ip].arg1.func;
807 jsdisp_t *dispex;
808 VARIANT v;
809 HRESULT hres;
811 TRACE("\n");
813 hres = create_source_function(ctx->script, ctx->code, expr->parameter_list, expr->source_elements, ctx->scope_chain,
814 expr->src_str, expr->src_len, &dispex);
815 if(FAILED(hres))
816 return hres;
818 var_set_jsdisp(&v, dispex);
819 return stack_push(ctx, &v);
822 /* ECMA-262 3rd Edition 11.2.1 */
823 static HRESULT interp_array(exec_ctx_t *ctx)
825 VARIANT v, *namev;
826 IDispatch *obj;
827 DISPID id;
828 BSTR name;
829 HRESULT hres;
831 TRACE("\n");
833 namev = stack_pop(ctx);
835 hres = stack_pop_object(ctx, &obj);
836 if(FAILED(hres)) {
837 VariantClear(namev);
838 return hres;
841 hres = to_string(ctx->script, namev, ctx->ei, &name);
842 VariantClear(namev);
843 if(FAILED(hres)) {
844 IDispatch_Release(obj);
845 return hres;
848 hres = disp_get_id(ctx->script, obj, name, 0, &id);
849 SysFreeString(name);
850 if(SUCCEEDED(hres)) {
851 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
852 }else if(hres == DISP_E_UNKNOWNNAME) {
853 V_VT(&v) = VT_EMPTY;
854 hres = S_OK;
856 IDispatch_Release(obj);
857 if(FAILED(hres))
858 return hres;
860 return stack_push(ctx, &v);
863 /* ECMA-262 3rd Edition 11.2.1 */
864 static HRESULT interp_member(exec_ctx_t *ctx)
866 const BSTR arg = ctx->code->instrs[ctx->ip].arg1.bstr;
867 IDispatch *obj;
868 VARIANT v;
869 DISPID id;
870 HRESULT hres;
872 TRACE("\n");
874 hres = stack_pop_object(ctx, &obj);
875 if(FAILED(hres))
876 return hres;
878 hres = disp_get_id(ctx->script, obj, arg, 0, &id);
879 if(SUCCEEDED(hres)) {
880 V_VT(&v) = VT_EMPTY;
881 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
882 }else if(hres == DISP_E_UNKNOWNNAME) {
883 V_VT(&v) = VT_EMPTY;
884 hres = S_OK;
886 IDispatch_Release(obj);
887 if(FAILED(hres))
888 return hres;
890 return stack_push(ctx, &v);
893 /* ECMA-262 3rd Edition 11.2.1 */
894 static HRESULT interp_memberid(exec_ctx_t *ctx)
896 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.lng;
897 VARIANT *objv, *namev;
898 IDispatch *obj;
899 BSTR name;
900 DISPID id;
901 HRESULT hres;
903 TRACE("%x\n", arg);
905 namev = stack_pop(ctx);
906 objv = stack_pop(ctx);
908 hres = to_object(ctx->script, objv, &obj);
909 VariantClear(objv);
910 if(SUCCEEDED(hres)) {
911 hres = to_string(ctx->script, namev, ctx->ei, &name);
912 if(FAILED(hres))
913 IDispatch_Release(obj);
915 VariantClear(namev);
916 if(FAILED(hres))
917 return hres;
919 hres = disp_get_id(ctx->script, obj, name, arg, &id);
920 SysFreeString(name);
921 if(FAILED(hres)) {
922 IDispatch_Release(obj);
923 if(hres == DISP_E_UNKNOWNNAME && !(arg & fdexNameEnsure)) {
924 obj = NULL;
925 id = JS_E_INVALID_PROPERTY;
926 }else {
927 return hres;
931 return stack_push_objid(ctx, obj, id);
934 /* ECMA-262 3rd Edition 11.2.1 */
935 static HRESULT interp_refval(exec_ctx_t *ctx)
937 IDispatch *disp;
938 VARIANT v;
939 DISPID id;
940 HRESULT hres;
942 TRACE("\n");
944 disp = stack_topn_objid(ctx, 0, &id);
945 if(!disp)
946 return throw_reference_error(ctx->script, ctx->ei, JS_E_ILLEGAL_ASSIGN, NULL);
948 hres = disp_propget(ctx->script, disp, id, &v, ctx->ei);
949 if(FAILED(hres))
950 return hres;
952 return stack_push(ctx, &v);
955 static void jsstack_to_dp(exec_ctx_t *ctx, unsigned arg_cnt, DISPPARAMS *dp)
957 VARIANT tmp;
958 unsigned i;
960 dp->cArgs = arg_cnt;
961 dp->rgdispidNamedArgs = NULL;
962 dp->cNamedArgs = 0;
964 assert(ctx->top >= arg_cnt);
966 for(i=1; i*2 <= arg_cnt; i++) {
967 tmp = ctx->stack[ctx->top-i];
968 ctx->stack[ctx->top-i] = ctx->stack[ctx->top-arg_cnt+i-1];
969 ctx->stack[ctx->top-arg_cnt+i-1] = tmp;
972 dp->rgvarg = ctx->stack + ctx->top-arg_cnt;
975 /* ECMA-262 3rd Edition 11.2.2 */
976 static HRESULT interp_new(exec_ctx_t *ctx)
978 const LONG arg = ctx->code->instrs[ctx->ip].arg1.lng;
979 VARIANT *constr, v;
980 DISPPARAMS dp;
981 HRESULT hres;
983 TRACE("%d\n", arg);
985 constr = stack_topn(ctx, arg);
987 /* NOTE: Should use to_object here */
989 if(V_VT(constr) == VT_NULL)
990 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
991 else if(V_VT(constr) != VT_DISPATCH)
992 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_ACTION, NULL);
993 else if(!V_DISPATCH(constr))
994 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_PROPERTY, NULL);
996 jsstack_to_dp(ctx, arg, &dp);
997 hres = disp_call(ctx->script, V_DISPATCH(constr), DISPID_VALUE,
998 DISPATCH_CONSTRUCT, &dp, &v, ctx->ei);
999 if(FAILED(hres))
1000 return hres;
1002 stack_popn(ctx, arg+1);
1003 return stack_push(ctx, &v);
1006 /* ECMA-262 3rd Edition 11.2.3 */
1007 static HRESULT interp_call(exec_ctx_t *ctx)
1009 const unsigned argn = ctx->code->instrs[ctx->ip].arg1.uint;
1010 const int do_ret = ctx->code->instrs[ctx->ip].arg2.lng;
1011 VARIANT v, *objv;
1012 DISPPARAMS dp;
1013 HRESULT hres;
1015 TRACE("%d %d\n", argn, do_ret);
1017 objv = stack_topn(ctx, argn);
1018 if(V_VT(objv) != VT_DISPATCH)
1019 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_PROPERTY, NULL);
1021 jsstack_to_dp(ctx, argn, &dp);
1022 hres = disp_call(ctx->script, V_DISPATCH(objv), DISPID_VALUE, DISPATCH_METHOD, &dp,
1023 do_ret ? &v : NULL, ctx->ei);
1024 if(FAILED(hres))
1025 return hres;
1027 stack_popn(ctx, argn+1);
1028 return do_ret ? stack_push(ctx, &v) : S_OK;
1032 /* ECMA-262 3rd Edition 11.2.3 */
1033 static HRESULT interp_call_member(exec_ctx_t *ctx)
1035 const unsigned argn = ctx->code->instrs[ctx->ip].arg1.uint;
1036 const int do_ret = ctx->code->instrs[ctx->ip].arg2.lng;
1037 IDispatch *obj;
1038 DISPPARAMS dp;
1039 VARIANT v;
1040 DISPID id;
1041 HRESULT hres;
1043 TRACE("%d %d\n", argn, do_ret);
1045 obj = stack_topn_objid(ctx, argn, &id);
1046 if(!obj)
1047 return throw_type_error(ctx->script, ctx->ei, id, NULL);
1049 jsstack_to_dp(ctx, argn, &dp);
1050 hres = disp_call(ctx->script, obj, id, DISPATCH_METHOD, &dp, do_ret ? &v : NULL, ctx->ei);
1051 if(FAILED(hres))
1052 return hres;
1054 stack_popn(ctx, argn+2);
1055 return do_ret ? stack_push(ctx, &v) : S_OK;
1059 /* ECMA-262 3rd Edition 11.1.1 */
1060 static HRESULT interp_this(exec_ctx_t *ctx)
1062 VARIANT v;
1064 TRACE("\n");
1066 V_VT(&v) = VT_DISPATCH;
1067 V_DISPATCH(&v) = ctx->this_obj;
1068 IDispatch_AddRef(ctx->this_obj);
1069 return stack_push(ctx, &v);
1072 /* ECMA-262 3rd Edition 10.1.4 */
1073 static HRESULT interp_ident(exec_ctx_t *ctx)
1075 const BSTR arg = ctx->code->instrs[ctx->ip].arg1.bstr;
1076 exprval_t exprval;
1077 VARIANT v;
1078 HRESULT hres;
1080 TRACE("%s\n", debugstr_w(arg));
1082 hres = identifier_eval(ctx->script, arg, &exprval);
1083 if(FAILED(hres))
1084 return hres;
1086 if(exprval.type == EXPRVAL_INVALID)
1087 return throw_type_error(ctx->script, ctx->ei, JS_E_UNDEFINED_VARIABLE, arg);
1089 hres = exprval_to_value(ctx->script, &exprval, ctx->ei, &v);
1090 exprval_release(&exprval);
1091 if(FAILED(hres))
1092 return hres;
1094 return stack_push(ctx, &v);
1097 /* ECMA-262 3rd Edition 10.1.4 */
1098 static HRESULT interp_identid(exec_ctx_t *ctx)
1100 const BSTR arg = ctx->code->instrs[ctx->ip].arg1.bstr;
1101 const unsigned flags = ctx->code->instrs[ctx->ip].arg2.uint;
1102 exprval_t exprval;
1103 HRESULT hres;
1105 TRACE("%s %x\n", debugstr_w(arg), flags);
1107 hres = identifier_eval(ctx->script, arg, &exprval);
1108 if(FAILED(hres))
1109 return hres;
1111 if(exprval.type == EXPRVAL_INVALID && (flags & fdexNameEnsure)) {
1112 DISPID id;
1114 hres = jsdisp_get_id(ctx->script->global, arg, fdexNameEnsure, &id);
1115 if(FAILED(hres))
1116 return hres;
1118 exprval_set_idref(&exprval, to_disp(ctx->script->global), id);
1121 if(exprval.type != EXPRVAL_IDREF) {
1122 WARN("invalid ref\n");
1123 exprval_release(&exprval);
1124 return stack_push_objid(ctx, NULL, JS_E_OBJECT_EXPECTED);
1127 return stack_push_objid(ctx, exprval.u.idref.disp, exprval.u.idref.id);
1130 /* ECMA-262 3rd Edition 7.8.1 */
1131 static HRESULT interp_null(exec_ctx_t *ctx)
1133 VARIANT v;
1135 TRACE("\n");
1137 V_VT(&v) = VT_NULL;
1138 return stack_push(ctx, &v);
1141 /* ECMA-262 3rd Edition 7.8.2 */
1142 static HRESULT interp_bool(exec_ctx_t *ctx)
1144 const LONG arg = ctx->code->instrs[ctx->ip].arg1.lng;
1146 TRACE("%s\n", arg ? "true" : "false");
1148 return stack_push_bool(ctx, arg);
1151 /* ECMA-262 3rd Edition 7.8.3 */
1152 static HRESULT interp_int(exec_ctx_t *ctx)
1154 const LONG arg = ctx->code->instrs[ctx->ip].arg1.lng;
1155 VARIANT v;
1157 TRACE("%d\n", arg);
1159 V_VT(&v) = VT_I4;
1160 V_I4(&v) = arg;
1161 return stack_push(ctx, &v);
1164 /* ECMA-262 3rd Edition 7.8.3 */
1165 static HRESULT interp_double(exec_ctx_t *ctx)
1167 const double arg = *ctx->code->instrs[ctx->ip].arg1.dbl;
1168 VARIANT v;
1170 TRACE("%lf\n", arg);
1172 V_VT(&v) = VT_R8;
1173 V_R8(&v) = arg;
1174 return stack_push(ctx, &v);
1177 /* ECMA-262 3rd Edition 7.8.4 */
1178 static HRESULT interp_str(exec_ctx_t *ctx)
1180 const WCHAR *str = ctx->code->instrs[ctx->ip].arg1.str;
1181 VARIANT v;
1183 TRACE("%s\n", debugstr_w(str));
1185 V_VT(&v) = VT_BSTR;
1186 V_BSTR(&v) = SysAllocString(str);
1187 if(!V_BSTR(&v))
1188 return E_OUTOFMEMORY;
1190 return stack_push(ctx, &v);
1193 /* ECMA-262 3rd Edition 7.8 */
1194 static HRESULT interp_regexp(exec_ctx_t *ctx)
1196 const WCHAR *source = ctx->code->instrs[ctx->ip].arg1.str;
1197 const LONG flags = ctx->code->instrs[ctx->ip].arg2.lng;
1198 jsdisp_t *regexp;
1199 VARIANT v;
1200 HRESULT hres;
1202 TRACE("%s %x\n", debugstr_w(source), flags);
1204 hres = create_regexp(ctx->script, source, strlenW(source), flags, &regexp);
1205 if(FAILED(hres))
1206 return hres;
1208 var_set_jsdisp(&v, regexp);
1209 return stack_push(ctx, &v);
1212 /* ECMA-262 3rd Edition 11.1.4 */
1213 static HRESULT interp_carray(exec_ctx_t *ctx)
1215 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
1216 jsdisp_t *array;
1217 VARIANT *v, r;
1218 unsigned i;
1219 HRESULT hres;
1221 TRACE("%u\n", arg);
1223 hres = create_array(ctx->script, arg, &array);
1224 if(FAILED(hres))
1225 return hres;
1227 i = arg;
1228 while(i--) {
1229 v = stack_pop(ctx);
1230 hres = jsdisp_propput_idx(array, i, v, ctx->ei);
1231 VariantClear(v);
1232 if(FAILED(hres)) {
1233 jsdisp_release(array);
1234 return hres;
1238 var_set_jsdisp(&r, array);
1239 return stack_push(ctx, &r);
1242 /* ECMA-262 3rd Edition 11.1.5 */
1243 static HRESULT interp_new_obj(exec_ctx_t *ctx)
1245 jsdisp_t *obj;
1246 VARIANT v;
1247 HRESULT hres;
1249 TRACE("\n");
1251 hres = create_object(ctx->script, NULL, &obj);
1252 if(FAILED(hres))
1253 return hres;
1255 var_set_jsdisp(&v, obj);
1256 return stack_push(ctx, &v);
1259 /* ECMA-262 3rd Edition 11.1.5 */
1260 static HRESULT interp_obj_prop(exec_ctx_t *ctx)
1262 const BSTR name = ctx->code->instrs[ctx->ip].arg1.bstr;
1263 jsdisp_t *obj;
1264 VARIANT *v;
1265 HRESULT hres;
1267 TRACE("%s\n", debugstr_w(name));
1269 v = stack_pop(ctx);
1271 assert(V_VT(stack_top(ctx)) == VT_DISPATCH);
1272 obj = as_jsdisp(V_DISPATCH(stack_top(ctx)));
1274 hres = jsdisp_propput_name(obj, name, v, ctx->ei);
1275 VariantClear(v);
1276 return hres;
1279 /* ECMA-262 3rd Edition 11.11 */
1280 static HRESULT interp_cnd_nz(exec_ctx_t *ctx)
1282 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
1283 VARIANT_BOOL b;
1284 HRESULT hres;
1286 TRACE("\n");
1288 hres = to_boolean(stack_top(ctx), &b);
1289 if(FAILED(hres))
1290 return hres;
1292 if(b) {
1293 ctx->ip = arg;
1294 }else {
1295 stack_popn(ctx, 1);
1296 ctx->ip++;
1298 return S_OK;
1301 /* ECMA-262 3rd Edition 11.11 */
1302 static HRESULT interp_cnd_z(exec_ctx_t *ctx)
1304 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
1305 VARIANT_BOOL b;
1306 HRESULT hres;
1308 TRACE("\n");
1310 hres = to_boolean(stack_top(ctx), &b);
1311 if(FAILED(hres))
1312 return hres;
1314 if(b) {
1315 stack_popn(ctx, 1);
1316 ctx->ip++;
1317 }else {
1318 ctx->ip = arg;
1320 return S_OK;
1323 /* ECMA-262 3rd Edition 11.10 */
1324 static HRESULT interp_or(exec_ctx_t *ctx)
1326 INT l, r;
1327 HRESULT hres;
1329 TRACE("\n");
1331 hres = stack_pop_int(ctx, &r);
1332 if(FAILED(hres))
1333 return hres;
1335 hres = stack_pop_int(ctx, &l);
1336 if(FAILED(hres))
1337 return hres;
1339 return stack_push_int(ctx, l|r);
1342 /* ECMA-262 3rd Edition 11.10 */
1343 static HRESULT interp_xor(exec_ctx_t *ctx)
1345 INT l, r;
1346 HRESULT hres;
1348 TRACE("\n");
1350 hres = stack_pop_int(ctx, &r);
1351 if(FAILED(hres))
1352 return hres;
1354 hres = stack_pop_int(ctx, &l);
1355 if(FAILED(hres))
1356 return hres;
1358 return stack_push_int(ctx, l^r);
1361 /* ECMA-262 3rd Edition 11.10 */
1362 static HRESULT interp_and(exec_ctx_t *ctx)
1364 INT l, r;
1365 HRESULT hres;
1367 TRACE("\n");
1369 hres = stack_pop_int(ctx, &r);
1370 if(FAILED(hres))
1371 return hres;
1373 hres = stack_pop_int(ctx, &l);
1374 if(FAILED(hres))
1375 return hres;
1377 return stack_push_int(ctx, l&r);
1380 /* ECMA-262 3rd Edition 11.8.6 */
1381 static HRESULT interp_instanceof(exec_ctx_t *ctx)
1383 jsdisp_t *obj, *iter, *tmp = NULL;
1384 VARIANT prot, *v;
1385 BOOL ret = FALSE;
1386 HRESULT hres;
1388 static const WCHAR prototypeW[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
1390 v = stack_pop(ctx);
1391 if(V_VT(v) != VT_DISPATCH || !V_DISPATCH(v)) {
1392 VariantClear(v);
1393 return throw_type_error(ctx->script, ctx->ei, JS_E_FUNCTION_EXPECTED, NULL);
1396 obj = iface_to_jsdisp((IUnknown*)V_DISPATCH(v));
1397 IDispatch_Release(V_DISPATCH(v));
1398 if(!obj) {
1399 FIXME("non-jsdisp objects not supported\n");
1400 return E_FAIL;
1403 if(is_class(obj, JSCLASS_FUNCTION)) {
1404 hres = jsdisp_propget_name(obj, prototypeW, &prot, ctx->ei);
1405 }else {
1406 hres = throw_type_error(ctx->script, ctx->ei, JS_E_FUNCTION_EXPECTED, NULL);
1408 jsdisp_release(obj);
1409 if(FAILED(hres))
1410 return hres;
1412 v = stack_pop(ctx);
1414 if(V_VT(&prot) == VT_DISPATCH) {
1415 if(V_VT(v) == VT_DISPATCH)
1416 tmp = iface_to_jsdisp((IUnknown*)V_DISPATCH(v));
1417 for(iter = tmp; !ret && iter; iter = iter->prototype) {
1418 hres = disp_cmp(V_DISPATCH(&prot), to_disp(iter), &ret);
1419 if(FAILED(hres))
1420 break;
1423 if(tmp)
1424 jsdisp_release(tmp);
1425 }else {
1426 FIXME("prototype is not an object\n");
1427 hres = E_FAIL;
1430 VariantClear(&prot);
1431 VariantClear(v);
1432 if(FAILED(hres))
1433 return hres;
1435 return stack_push_bool(ctx, ret);
1438 /* ECMA-262 3rd Edition 11.8.7 */
1439 static HRESULT interp_in(exec_ctx_t *ctx)
1441 VARIANT *obj, *v;
1442 DISPID id = 0;
1443 BOOL ret;
1444 BSTR str;
1445 HRESULT hres;
1447 TRACE("\n");
1449 obj = stack_pop(ctx);
1450 v = stack_pop(ctx);
1452 if(V_VT(obj) != VT_DISPATCH || !V_DISPATCH(obj)) {
1453 VariantClear(obj);
1454 VariantClear(v);
1455 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1458 hres = to_string(ctx->script, v, ctx->ei, &str);
1459 VariantClear(v);
1460 if(FAILED(hres)) {
1461 IDispatch_Release(V_DISPATCH(obj));
1462 return hres;
1465 hres = disp_get_id(ctx->script, V_DISPATCH(obj), str, 0, &id);
1466 IDispatch_Release(V_DISPATCH(obj));
1467 SysFreeString(str);
1468 if(SUCCEEDED(hres))
1469 ret = TRUE;
1470 else if(hres == DISP_E_UNKNOWNNAME)
1471 ret = FALSE;
1472 else
1473 return hres;
1475 return stack_push_bool(ctx, ret);
1478 /* ECMA-262 3rd Edition 11.6.1 */
1479 static HRESULT add_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jsexcept_t *ei, VARIANT *retv)
1481 VARIANT r, l;
1482 HRESULT hres;
1484 hres = to_primitive(ctx, lval, ei, &l, NO_HINT);
1485 if(FAILED(hres))
1486 return hres;
1488 hres = to_primitive(ctx, rval, ei, &r, NO_HINT);
1489 if(FAILED(hres)) {
1490 VariantClear(&l);
1491 return hres;
1494 if(V_VT(&l) == VT_BSTR || V_VT(&r) == VT_BSTR) {
1495 BSTR lstr = NULL, rstr = NULL;
1497 if(V_VT(&l) == VT_BSTR)
1498 lstr = V_BSTR(&l);
1499 else
1500 hres = to_string(ctx, &l, ei, &lstr);
1502 if(SUCCEEDED(hres)) {
1503 if(V_VT(&r) == VT_BSTR)
1504 rstr = V_BSTR(&r);
1505 else
1506 hres = to_string(ctx, &r, ei, &rstr);
1509 if(SUCCEEDED(hres)) {
1510 int len1, len2;
1512 len1 = SysStringLen(lstr);
1513 len2 = SysStringLen(rstr);
1515 V_VT(retv) = VT_BSTR;
1516 V_BSTR(retv) = SysAllocStringLen(NULL, len1+len2);
1517 if(len1)
1518 memcpy(V_BSTR(retv), lstr, len1*sizeof(WCHAR));
1519 if(len2)
1520 memcpy(V_BSTR(retv)+len1, rstr, len2*sizeof(WCHAR));
1521 V_BSTR(retv)[len1+len2] = 0;
1524 if(V_VT(&l) != VT_BSTR)
1525 SysFreeString(lstr);
1526 if(V_VT(&r) != VT_BSTR)
1527 SysFreeString(rstr);
1528 }else {
1529 VARIANT nl, nr;
1531 hres = to_number(ctx, &l, ei, &nl);
1532 if(SUCCEEDED(hres)) {
1533 hres = to_number(ctx, &r, ei, &nr);
1534 if(SUCCEEDED(hres))
1535 num_set_val(retv, num_val(&nl) + num_val(&nr));
1539 VariantClear(&r);
1540 VariantClear(&l);
1541 return hres;
1544 /* ECMA-262 3rd Edition 11.6.1 */
1545 static HRESULT interp_add(exec_ctx_t *ctx)
1547 VARIANT *l, *r, ret;
1548 HRESULT hres;
1550 r = stack_pop(ctx);
1551 l = stack_pop(ctx);
1553 TRACE("%s + %s\n", debugstr_variant(l), debugstr_variant(r));
1555 hres = add_eval(ctx->script, l, r, ctx->ei, &ret);
1556 VariantClear(l);
1557 VariantClear(r);
1558 if(FAILED(hres))
1559 return hres;
1561 return stack_push(ctx, &ret);
1564 /* ECMA-262 3rd Edition 11.6.2 */
1565 static HRESULT interp_sub(exec_ctx_t *ctx)
1567 VARIANT l, r;
1568 HRESULT hres;
1570 TRACE("\n");
1572 hres = stack_pop_number(ctx, &r);
1573 if(FAILED(hres))
1574 return hres;
1576 hres = stack_pop_number(ctx, &l);
1577 if(FAILED(hres))
1578 return hres;
1580 return stack_push_number(ctx, num_val(&l)-num_val(&r));
1583 /* ECMA-262 3rd Edition 11.5.1 */
1584 static HRESULT interp_mul(exec_ctx_t *ctx)
1586 VARIANT l, r;
1587 HRESULT hres;
1589 TRACE("\n");
1591 hres = stack_pop_number(ctx, &r);
1592 if(FAILED(hres))
1593 return hres;
1595 hres = stack_pop_number(ctx, &l);
1596 if(FAILED(hres))
1597 return hres;
1599 return stack_push_number(ctx, num_val(&l)*num_val(&r));
1602 /* ECMA-262 3rd Edition 11.5.2 */
1603 static HRESULT interp_div(exec_ctx_t *ctx)
1605 VARIANT l, r;
1606 HRESULT hres;
1608 TRACE("\n");
1610 hres = stack_pop_number(ctx, &r);
1611 if(FAILED(hres))
1612 return hres;
1614 hres = stack_pop_number(ctx, &l);
1615 if(FAILED(hres))
1616 return hres;
1618 return stack_push_number(ctx, num_val(&l)/num_val(&r));
1621 /* ECMA-262 3rd Edition 11.5.3 */
1622 static HRESULT interp_mod(exec_ctx_t *ctx)
1624 VARIANT l, r;
1625 HRESULT hres;
1627 TRACE("\n");
1629 hres = stack_pop_number(ctx, &r);
1630 if(FAILED(hres))
1631 return hres;
1633 hres = stack_pop_number(ctx, &l);
1634 if(FAILED(hres))
1635 return hres;
1637 return stack_push_number(ctx, fmod(num_val(&l), num_val(&r)));
1640 /* ECMA-262 3rd Edition 11.4.2 */
1641 static HRESULT interp_delete(exec_ctx_t *ctx)
1643 VARIANT *obj_var, *name_var;
1644 IDispatchEx *dispex;
1645 IDispatch *obj;
1646 BSTR name;
1647 BOOL ret;
1648 HRESULT hres;
1650 TRACE("\n");
1652 name_var = stack_pop(ctx);
1653 obj_var = stack_pop(ctx);
1655 hres = to_object(ctx->script, obj_var, &obj);
1656 VariantClear(obj_var);
1657 if(FAILED(hres)) {
1658 VariantClear(name_var);
1659 return hres;
1662 hres = to_string(ctx->script, name_var, ctx->ei, &name);
1663 VariantClear(name_var);
1664 if(FAILED(hres)) {
1665 IDispatch_Release(obj);
1666 return hres;
1669 hres = IDispatch_QueryInterface(obj, &IID_IDispatchEx, (void**)&dispex);
1670 if(SUCCEEDED(hres)) {
1671 hres = IDispatchEx_DeleteMemberByName(dispex, name, make_grfdex(ctx->script, fdexNameCaseSensitive));
1672 ret = TRUE;
1673 IDispatchEx_Release(dispex);
1674 }else {
1675 hres = S_OK;
1676 ret = FALSE;
1679 IDispatch_Release(obj);
1680 SysFreeString(name);
1681 if(FAILED(hres))
1682 return hres;
1684 return stack_push_bool(ctx, ret);
1687 /* ECMA-262 3rd Edition 11.4.2 */
1688 static HRESULT interp_delete_ident(exec_ctx_t *ctx)
1690 const BSTR arg = ctx->code->instrs[ctx->ip].arg1.bstr;
1691 IDispatchEx *dispex;
1692 exprval_t exprval;
1693 BOOL ret = FALSE;
1694 HRESULT hres;
1696 TRACE("%s\n", debugstr_w(arg));
1698 hres = identifier_eval(ctx->script, arg, &exprval);
1699 if(FAILED(hres))
1700 return hres;
1702 if(exprval.type != EXPRVAL_IDREF) {
1703 FIXME("Unsupported exprval\n");
1704 exprval_release(&exprval);
1705 return E_NOTIMPL;
1708 hres = IDispatch_QueryInterface(exprval.u.idref.disp, &IID_IDispatchEx, (void**)&dispex);
1709 IDispatch_Release(exprval.u.idref.disp);
1710 if(SUCCEEDED(hres)) {
1711 hres = IDispatchEx_DeleteMemberByDispID(dispex, exprval.u.idref.id);
1712 IDispatchEx_Release(dispex);
1713 if(FAILED(hres))
1714 return hres;
1716 ret = TRUE;
1719 return stack_push_bool(ctx, ret);
1722 /* ECMA-262 3rd Edition 11.4.2 */
1723 static HRESULT interp_void(exec_ctx_t *ctx)
1725 VARIANT v;
1727 TRACE("\n");
1729 stack_popn(ctx, 1);
1731 V_VT(&v) = VT_EMPTY;
1732 return stack_push(ctx, &v);
1735 /* ECMA-262 3rd Edition 11.4.3 */
1736 static HRESULT typeof_string(VARIANT *v, const WCHAR **ret)
1738 switch(V_VT(v)) {
1739 case VT_EMPTY:
1740 *ret = undefinedW;
1741 break;
1742 case VT_NULL:
1743 *ret = objectW;
1744 break;
1745 case VT_BOOL:
1746 *ret = booleanW;
1747 break;
1748 case VT_I4:
1749 case VT_R8:
1750 *ret = numberW;
1751 break;
1752 case VT_BSTR:
1753 *ret = stringW;
1754 break;
1755 case VT_DISPATCH: {
1756 jsdisp_t *dispex;
1758 if(V_DISPATCH(v) && (dispex = iface_to_jsdisp((IUnknown*)V_DISPATCH(v)))) {
1759 *ret = is_class(dispex, JSCLASS_FUNCTION) ? functionW : objectW;
1760 jsdisp_release(dispex);
1761 }else {
1762 *ret = objectW;
1764 break;
1766 default:
1767 FIXME("unhandled vt %d\n", V_VT(v));
1768 return E_NOTIMPL;
1771 return S_OK;
1774 /* ECMA-262 3rd Edition 11.4.3 */
1775 static HRESULT interp_typeofid(exec_ctx_t *ctx)
1777 const WCHAR *ret;
1778 IDispatch *obj;
1779 VARIANT v;
1780 DISPID id;
1781 HRESULT hres;
1783 static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
1785 TRACE("\n");
1787 obj = stack_pop_objid(ctx, &id);
1788 if(!obj)
1789 return stack_push_string(ctx, undefinedW);
1791 V_VT(&v) = VT_EMPTY;
1792 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1793 IDispatch_Release(obj);
1794 if(FAILED(hres))
1795 return stack_push_string(ctx, unknownW);
1797 hres = typeof_string(&v, &ret);
1798 VariantClear(&v);
1799 if(FAILED(hres))
1800 return hres;
1802 return stack_push_string(ctx, ret);
1805 /* ECMA-262 3rd Edition 11.4.3 */
1806 static HRESULT interp_typeofident(exec_ctx_t *ctx)
1808 const BSTR arg = ctx->code->instrs[ctx->ip].arg1.bstr;
1809 exprval_t exprval;
1810 const WCHAR *ret;
1811 VARIANT v;
1812 HRESULT hres;
1814 TRACE("%s\n", debugstr_w(arg));
1816 hres = identifier_eval(ctx->script, arg, &exprval);
1817 if(FAILED(hres))
1818 return hres;
1820 if(exprval.type == EXPRVAL_INVALID) {
1821 hres = stack_push_string(ctx, undefinedW);
1822 exprval_release(&exprval);
1823 return hres;
1826 hres = exprval_to_value(ctx->script, &exprval, ctx->ei, &v);
1827 exprval_release(&exprval);
1828 if(FAILED(hres))
1829 return hres;
1831 hres = typeof_string(&v, &ret);
1832 VariantClear(&v);
1833 if(FAILED(hres))
1834 return hres;
1836 return stack_push_string(ctx, ret);
1839 /* ECMA-262 3rd Edition 11.4.3 */
1840 static HRESULT interp_typeof(exec_ctx_t *ctx)
1842 const WCHAR *ret;
1843 VARIANT *v;
1844 HRESULT hres;
1846 TRACE("\n");
1848 v = stack_pop(ctx);
1849 hres = typeof_string(v, &ret);
1850 VariantClear(v);
1851 if(FAILED(hres))
1852 return hres;
1854 return stack_push_string(ctx, ret);
1857 /* ECMA-262 3rd Edition 11.4.7 */
1858 static HRESULT interp_minus(exec_ctx_t *ctx)
1860 VARIANT n;
1861 HRESULT hres;
1863 TRACE("\n");
1865 hres = stack_pop_number(ctx, &n);
1866 if(FAILED(hres))
1867 return hres;
1869 return stack_push_number(ctx, -num_val(&n));
1872 /* ECMA-262 3rd Edition 11.4.6 */
1873 static HRESULT interp_tonum(exec_ctx_t *ctx)
1875 VARIANT *v, num;
1876 HRESULT hres;
1878 TRACE("\n");
1880 v = stack_pop(ctx);
1881 hres = to_number(ctx->script, v, ctx->ei, &num);
1882 VariantClear(v);
1883 if(FAILED(hres))
1884 return hres;
1886 return stack_push(ctx, &num);
1889 /* ECMA-262 3rd Edition 11.3.1 */
1890 static HRESULT interp_postinc(exec_ctx_t *ctx)
1892 const int arg = ctx->code->instrs[ctx->ip].arg1.lng;
1893 IDispatch *obj;
1894 DISPID id;
1895 VARIANT v;
1896 HRESULT hres;
1898 TRACE("%d\n", arg);
1900 obj = stack_pop_objid(ctx, &id);
1901 if(!obj)
1902 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1904 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1905 if(SUCCEEDED(hres)) {
1906 VARIANT n, inc;
1908 hres = to_number(ctx->script, &v, ctx->ei, &n);
1909 if(SUCCEEDED(hres)) {
1910 num_set_val(&inc, num_val(&n)+(double)arg);
1911 hres = disp_propput(ctx->script, obj, id, &inc, ctx->ei);
1913 if(FAILED(hres))
1914 VariantClear(&v);
1916 IDispatch_Release(obj);
1917 if(FAILED(hres))
1918 return hres;
1920 return stack_push(ctx, &v);
1923 /* ECMA-262 3rd Edition 11.4.4, 11.4.5 */
1924 static HRESULT interp_preinc(exec_ctx_t *ctx)
1926 const int arg = ctx->code->instrs[ctx->ip].arg1.lng;
1927 IDispatch *obj;
1928 DISPID id;
1929 VARIANT v;
1930 HRESULT hres;
1932 TRACE("%d\n", arg);
1934 obj = stack_pop_objid(ctx, &id);
1935 if(!obj)
1936 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1938 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1939 if(SUCCEEDED(hres)) {
1940 VARIANT n;
1942 hres = to_number(ctx->script, &v, ctx->ei, &n);
1943 VariantClear(&v);
1944 if(SUCCEEDED(hres)) {
1945 num_set_val(&v, num_val(&n)+(double)arg);
1946 hres = disp_propput(ctx->script, obj, id, &v, ctx->ei);
1949 IDispatch_Release(obj);
1950 if(FAILED(hres))
1951 return hres;
1953 return stack_push(ctx, &v);
1956 /* ECMA-262 3rd Edition 11.9.3 */
1957 static HRESULT equal_values(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jsexcept_t *ei, BOOL *ret)
1959 if(V_VT(lval) == V_VT(rval) || (is_num_vt(V_VT(lval)) && is_num_vt(V_VT(rval))))
1960 return equal2_values(lval, rval, ret);
1962 /* FIXME: NULL disps should be handled in more general way */
1963 if(V_VT(lval) == VT_DISPATCH && !V_DISPATCH(lval)) {
1964 VARIANT v;
1965 V_VT(&v) = VT_NULL;
1966 return equal_values(ctx, &v, rval, ei, ret);
1969 if(V_VT(rval) == VT_DISPATCH && !V_DISPATCH(rval)) {
1970 VARIANT v;
1971 V_VT(&v) = VT_NULL;
1972 return equal_values(ctx, lval, &v, ei, ret);
1975 if((V_VT(lval) == VT_NULL && V_VT(rval) == VT_EMPTY) ||
1976 (V_VT(lval) == VT_EMPTY && V_VT(rval) == VT_NULL)) {
1977 *ret = TRUE;
1978 return S_OK;
1981 if(V_VT(lval) == VT_BSTR && is_num_vt(V_VT(rval))) {
1982 VARIANT v;
1983 HRESULT hres;
1985 hres = to_number(ctx, lval, ei, &v);
1986 if(FAILED(hres))
1987 return hres;
1989 return equal_values(ctx, &v, rval, ei, ret);
1992 if(V_VT(rval) == VT_BSTR && is_num_vt(V_VT(lval))) {
1993 VARIANT v;
1994 HRESULT hres;
1996 hres = to_number(ctx, rval, ei, &v);
1997 if(FAILED(hres))
1998 return hres;
2000 return equal_values(ctx, lval, &v, ei, ret);
2003 if(V_VT(rval) == VT_BOOL) {
2004 VARIANT v;
2006 V_VT(&v) = VT_I4;
2007 V_I4(&v) = V_BOOL(rval) ? 1 : 0;
2008 return equal_values(ctx, lval, &v, ei, ret);
2011 if(V_VT(lval) == VT_BOOL) {
2012 VARIANT v;
2014 V_VT(&v) = VT_I4;
2015 V_I4(&v) = V_BOOL(lval) ? 1 : 0;
2016 return equal_values(ctx, &v, rval, ei, ret);
2020 if(V_VT(rval) == VT_DISPATCH && (V_VT(lval) == VT_BSTR || is_num_vt(V_VT(lval)))) {
2021 VARIANT v;
2022 HRESULT hres;
2024 hres = to_primitive(ctx, rval, ei, &v, NO_HINT);
2025 if(FAILED(hres))
2026 return hres;
2028 hres = equal_values(ctx, lval, &v, ei, ret);
2030 VariantClear(&v);
2031 return hres;
2035 if(V_VT(lval) == VT_DISPATCH && (V_VT(rval) == VT_BSTR || is_num_vt(V_VT(rval)))) {
2036 VARIANT v;
2037 HRESULT hres;
2039 hres = to_primitive(ctx, lval, ei, &v, NO_HINT);
2040 if(FAILED(hres))
2041 return hres;
2043 hres = equal_values(ctx, &v, rval, ei, ret);
2045 VariantClear(&v);
2046 return hres;
2050 *ret = FALSE;
2051 return S_OK;
2054 /* ECMA-262 3rd Edition 11.9.1 */
2055 static HRESULT interp_eq(exec_ctx_t *ctx)
2057 VARIANT *l, *r;
2058 BOOL b;
2059 HRESULT hres;
2061 r = stack_pop(ctx);
2062 l = stack_pop(ctx);
2064 TRACE("%s == %s\n", debugstr_variant(l), debugstr_variant(r));
2066 hres = equal_values(ctx->script, l, r, ctx->ei, &b);
2067 VariantClear(l);
2068 VariantClear(r);
2069 if(FAILED(hres))
2070 return hres;
2072 return stack_push_bool(ctx, b);
2075 /* ECMA-262 3rd Edition 11.9.2 */
2076 static HRESULT interp_neq(exec_ctx_t *ctx)
2078 VARIANT *l, *r;
2079 BOOL b;
2080 HRESULT hres;
2082 r = stack_pop(ctx);
2083 l = stack_pop(ctx);
2085 TRACE("%s != %s\n", debugstr_variant(l), debugstr_variant(r));
2087 hres = equal_values(ctx->script, l, r, ctx->ei, &b);
2088 VariantClear(l);
2089 VariantClear(r);
2090 if(FAILED(hres))
2091 return hres;
2093 return stack_push_bool(ctx, !b);
2096 /* ECMA-262 3rd Edition 11.9.4 */
2097 static HRESULT interp_eq2(exec_ctx_t *ctx)
2099 VARIANT *l, *r;
2100 BOOL b;
2101 HRESULT hres;
2103 TRACE("\n");
2105 r = stack_pop(ctx);
2106 l = stack_pop(ctx);
2108 hres = equal2_values(r, l, &b);
2109 VariantClear(l);
2110 VariantClear(r);
2111 if(FAILED(hres))
2112 return hres;
2114 return stack_push_bool(ctx, b);
2117 /* ECMA-262 3rd Edition 11.9.5 */
2118 static HRESULT interp_neq2(exec_ctx_t *ctx)
2120 VARIANT *l, *r;
2121 BOOL b;
2122 HRESULT hres;
2124 TRACE("\n");
2126 r = stack_pop(ctx);
2127 l = stack_pop(ctx);
2129 hres = equal2_values(r, l, &b);
2130 VariantClear(l);
2131 VariantClear(r);
2132 if(FAILED(hres))
2133 return hres;
2135 return stack_push_bool(ctx, !b);
2138 /* ECMA-262 3rd Edition 11.8.5 */
2139 static HRESULT less_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, BOOL greater, jsexcept_t *ei, BOOL *ret)
2141 VARIANT l, r, ln, rn;
2142 HRESULT hres;
2144 hres = to_primitive(ctx, lval, ei, &l, NO_HINT);
2145 if(FAILED(hres))
2146 return hres;
2148 hres = to_primitive(ctx, rval, ei, &r, NO_HINT);
2149 if(FAILED(hres)) {
2150 VariantClear(&l);
2151 return hres;
2154 if(V_VT(&l) == VT_BSTR && V_VT(&r) == VT_BSTR) {
2155 *ret = (strcmpW(V_BSTR(&l), V_BSTR(&r)) < 0) ^ greater;
2156 SysFreeString(V_BSTR(&l));
2157 SysFreeString(V_BSTR(&r));
2158 return S_OK;
2161 hres = to_number(ctx, &l, ei, &ln);
2162 VariantClear(&l);
2163 if(SUCCEEDED(hres))
2164 hres = to_number(ctx, &r, ei, &rn);
2165 VariantClear(&r);
2166 if(FAILED(hres))
2167 return hres;
2169 if(V_VT(&ln) == VT_I4 && V_VT(&rn) == VT_I4) {
2170 *ret = (V_I4(&ln) < V_I4(&rn)) ^ greater;
2171 }else {
2172 DOUBLE ld = num_val(&ln);
2173 DOUBLE rd = num_val(&rn);
2175 *ret = !isnan(ld) && !isnan(rd) && ((ld < rd) ^ greater);
2178 return S_OK;
2181 /* ECMA-262 3rd Edition 11.8.1 */
2182 static HRESULT interp_lt(exec_ctx_t *ctx)
2184 VARIANT *l, *r;
2185 BOOL b;
2186 HRESULT hres;
2188 r = stack_pop(ctx);
2189 l = stack_pop(ctx);
2191 TRACE("%s < %s\n", debugstr_variant(l), debugstr_variant(r));
2193 hres = less_eval(ctx->script, l, r, FALSE, ctx->ei, &b);
2194 VariantClear(l);
2195 VariantClear(r);
2196 if(FAILED(hres))
2197 return hres;
2199 return stack_push_bool(ctx, b);
2202 /* ECMA-262 3rd Edition 11.8.1 */
2203 static HRESULT interp_lteq(exec_ctx_t *ctx)
2205 VARIANT *l, *r;
2206 BOOL b;
2207 HRESULT hres;
2209 r = stack_pop(ctx);
2210 l = stack_pop(ctx);
2212 TRACE("%s <= %s\n", debugstr_variant(l), debugstr_variant(r));
2214 hres = less_eval(ctx->script, r, l, TRUE, ctx->ei, &b);
2215 VariantClear(l);
2216 VariantClear(r);
2217 if(FAILED(hres))
2218 return hres;
2220 return stack_push_bool(ctx, b);
2223 /* ECMA-262 3rd Edition 11.8.2 */
2224 static HRESULT interp_gt(exec_ctx_t *ctx)
2226 VARIANT *l, *r;
2227 BOOL b;
2228 HRESULT hres;
2230 r = stack_pop(ctx);
2231 l = stack_pop(ctx);
2233 TRACE("%s > %s\n", debugstr_variant(l), debugstr_variant(r));
2235 hres = less_eval(ctx->script, r, l, FALSE, ctx->ei, &b);
2236 VariantClear(l);
2237 VariantClear(r);
2238 if(FAILED(hres))
2239 return hres;
2241 return stack_push_bool(ctx, b);
2244 /* ECMA-262 3rd Edition 11.8.4 */
2245 static HRESULT interp_gteq(exec_ctx_t *ctx)
2247 VARIANT *l, *r;
2248 BOOL b;
2249 HRESULT hres;
2251 r = stack_pop(ctx);
2252 l = stack_pop(ctx);
2254 TRACE("%s >= %s\n", debugstr_variant(l), debugstr_variant(r));
2256 hres = less_eval(ctx->script, l, r, TRUE, ctx->ei, &b);
2257 VariantClear(l);
2258 VariantClear(r);
2259 if(FAILED(hres))
2260 return hres;
2262 return stack_push_bool(ctx, b);
2265 /* ECMA-262 3rd Edition 11.4.8 */
2266 static HRESULT interp_bneg(exec_ctx_t *ctx)
2268 VARIANT *v, r;
2269 INT i;
2270 HRESULT hres;
2272 TRACE("\n");
2274 v = stack_pop(ctx);
2275 hres = to_int32(ctx->script, v, ctx->ei, &i);
2276 VariantClear(v);
2277 if(FAILED(hres))
2278 return hres;
2280 V_VT(&r) = VT_I4;
2281 V_I4(&r) = ~i;
2282 return stack_push(ctx, &r);
2285 /* ECMA-262 3rd Edition 11.4.9 */
2286 static HRESULT interp_neg(exec_ctx_t *ctx)
2288 VARIANT *v;
2289 VARIANT_BOOL b;
2290 HRESULT hres;
2292 TRACE("\n");
2294 v = stack_pop(ctx);
2295 hres = to_boolean(v, &b);
2296 VariantClear(v);
2297 if(FAILED(hres))
2298 return hres;
2300 return stack_push_bool(ctx, !b);
2303 /* ECMA-262 3rd Edition 11.7.1 */
2304 static HRESULT interp_lshift(exec_ctx_t *ctx)
2306 DWORD r;
2307 INT l;
2308 HRESULT hres;
2310 hres = stack_pop_uint(ctx, &r);
2311 if(FAILED(hres))
2312 return hres;
2314 hres = stack_pop_int(ctx, &l);
2315 if(FAILED(hres))
2316 return hres;
2318 return stack_push_int(ctx, l << (r&0x1f));
2321 /* ECMA-262 3rd Edition 11.7.2 */
2322 static HRESULT interp_rshift(exec_ctx_t *ctx)
2324 DWORD r;
2325 INT l;
2326 HRESULT hres;
2328 hres = stack_pop_uint(ctx, &r);
2329 if(FAILED(hres))
2330 return hres;
2332 hres = stack_pop_int(ctx, &l);
2333 if(FAILED(hres))
2334 return hres;
2336 return stack_push_int(ctx, l >> (r&0x1f));
2339 /* ECMA-262 3rd Edition 11.7.3 */
2340 static HRESULT interp_rshift2(exec_ctx_t *ctx)
2342 DWORD r, l;
2343 HRESULT hres;
2345 hres = stack_pop_uint(ctx, &r);
2346 if(FAILED(hres))
2347 return hres;
2349 hres = stack_pop_uint(ctx, &l);
2350 if(FAILED(hres))
2351 return hres;
2353 return stack_push_int(ctx, l >> (r&0x1f));
2356 /* ECMA-262 3rd Edition 11.13.1 */
2357 static HRESULT interp_assign(exec_ctx_t *ctx)
2359 IDispatch *disp;
2360 DISPID id;
2361 VARIANT *v;
2362 HRESULT hres;
2364 TRACE("\n");
2366 v = stack_pop(ctx);
2367 disp = stack_pop_objid(ctx, &id);
2369 if(!disp)
2370 return throw_reference_error(ctx->script, ctx->ei, JS_E_ILLEGAL_ASSIGN, NULL);
2372 hres = disp_propput(ctx->script, disp, id, v, ctx->ei);
2373 IDispatch_Release(disp);
2374 if(FAILED(hres)) {
2375 VariantClear(v);
2376 return hres;
2379 return stack_push(ctx, v);
2382 static HRESULT interp_undefined(exec_ctx_t *ctx)
2384 VARIANT v;
2386 TRACE("\n");
2388 V_VT(&v) = VT_EMPTY;
2389 return stack_push(ctx, &v);
2392 static HRESULT interp_jmp(exec_ctx_t *ctx)
2394 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
2396 TRACE("\n");
2398 ctx->ip = arg;
2399 return S_OK;
2402 static HRESULT interp_jmp_z(exec_ctx_t *ctx)
2404 const unsigned arg = ctx->code->instrs[ctx->ip].arg1.uint;
2405 VARIANT_BOOL b;
2406 VARIANT *v;
2407 HRESULT hres;
2409 TRACE("\n");
2411 v = stack_pop(ctx);
2412 hres = to_boolean(v, &b);
2413 VariantClear(v);
2414 if(FAILED(hres))
2415 return hres;
2417 if(b)
2418 ctx->ip++;
2419 else
2420 ctx->ip = arg;
2421 return S_OK;
2424 static HRESULT interp_pop(exec_ctx_t *ctx)
2426 TRACE("\n");
2428 stack_popn(ctx, 1);
2429 return S_OK;
2432 static HRESULT interp_ret(exec_ctx_t *ctx)
2434 TRACE("\n");
2436 ctx->ip = -1;
2437 return S_OK;
2440 typedef HRESULT (*op_func_t)(exec_ctx_t*);
2442 static const op_func_t op_funcs[] = {
2443 #define X(x,a,b,c) interp_##x,
2444 OP_LIST
2445 #undef X
2448 static const unsigned op_move[] = {
2449 #define X(a,x,b,c) x,
2450 OP_LIST
2451 #undef X
2454 static HRESULT unwind_exception(exec_ctx_t *ctx)
2456 except_frame_t *except_frame;
2457 VARIANT except_val;
2458 BSTR ident;
2459 HRESULT hres;
2461 except_frame = ctx->except_frame;
2462 ctx->except_frame = except_frame->next;
2464 assert(except_frame->stack_top <= ctx->top);
2465 stack_popn(ctx, ctx->top - except_frame->stack_top);
2467 while(except_frame->scope != ctx->scope_chain)
2468 scope_pop(&ctx->scope_chain);
2470 ctx->ip = except_frame->catch_off;
2472 except_val = ctx->ei->var;
2473 memset(ctx->ei, 0, sizeof(*ctx->ei));
2475 ident = except_frame->ident;
2476 heap_free(except_frame);
2478 if(ident) {
2479 jsdisp_t *scope_obj;
2481 hres = create_dispex(ctx->script, NULL, NULL, &scope_obj);
2482 if(SUCCEEDED(hres)) {
2483 hres = jsdisp_propput_name(scope_obj, ident, &except_val, ctx->ei);
2484 if(FAILED(hres))
2485 jsdisp_release(scope_obj);
2487 VariantClear(&except_val);
2488 if(FAILED(hres))
2489 return hres;
2491 hres = scope_push(ctx->scope_chain, scope_obj, &ctx->scope_chain);
2492 jsdisp_release(scope_obj);
2493 }else {
2494 VARIANT v;
2496 hres = stack_push(ctx, &except_val);
2497 if(FAILED(hres))
2498 return hres;
2500 hres = stack_push_bool(ctx, FALSE);
2501 if(FAILED(hres))
2502 return hres;
2504 V_VT(&v) = VT_EMPTY;
2505 hres = stack_push(ctx, &v);
2508 return hres;
2511 static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, unsigned ip, jsexcept_t *ei, VARIANT *ret)
2513 exec_ctx_t *exec_ctx = ctx->exec_ctx;
2514 except_frame_t *prev_except_frame;
2515 unsigned prev_ip, prev_top;
2516 scope_chain_t *prev_scope;
2517 bytecode_t *prev_code;
2518 jsexcept_t *prev_ei;
2519 jsop_t op;
2520 HRESULT hres = S_OK;
2522 TRACE("\n");
2524 prev_top = exec_ctx->top;
2525 prev_scope = exec_ctx->scope_chain;
2526 prev_except_frame = exec_ctx->except_frame;
2527 prev_ip = exec_ctx->ip;
2528 prev_ei = exec_ctx->ei;
2529 prev_code = exec_ctx->code;
2530 exec_ctx->ip = ip;
2531 exec_ctx->ei = ei;
2532 exec_ctx->except_frame = NULL;
2533 exec_ctx->code = code;
2535 while(exec_ctx->ip != -1) {
2536 op = code->instrs[exec_ctx->ip].op;
2537 hres = op_funcs[op](exec_ctx);
2538 if(FAILED(hres)) {
2539 TRACE("EXCEPTION\n");
2541 if(!exec_ctx->except_frame)
2542 break;
2544 hres = unwind_exception(exec_ctx);
2545 if(FAILED(hres))
2546 break;
2547 }else {
2548 exec_ctx->ip += op_move[op];
2552 exec_ctx->ip = prev_ip;
2553 exec_ctx->ei = prev_ei;
2554 exec_ctx->except_frame = prev_except_frame;
2555 exec_ctx->code = prev_code;
2557 if(FAILED(hres)) {
2558 while(exec_ctx->scope_chain != prev_scope)
2559 scope_pop(&exec_ctx->scope_chain);
2560 stack_popn(exec_ctx, exec_ctx->top-prev_top);
2561 return hres;
2564 assert(exec_ctx->top == prev_top+1 || exec_ctx->top == prev_top);
2565 assert(exec_ctx->scope_chain == prev_scope);
2567 if(exec_ctx->top == prev_top)
2568 V_VT(ret) = VT_EMPTY;
2569 else
2570 *ret = *stack_pop(exec_ctx);
2571 return S_OK;
2574 HRESULT exec_source(exec_ctx_t *ctx, bytecode_t *code, source_elements_t *source, BOOL from_eval,
2575 jsexcept_t *ei, VARIANT *retv)
2577 function_declaration_t *func;
2578 var_list_t *var;
2579 VARIANT val;
2580 exec_ctx_t *prev_ctx;
2581 HRESULT hres = S_OK;
2583 for(func = source->functions; func; func = func->next) {
2584 jsdisp_t *func_obj;
2585 VARIANT var;
2587 if(!func->expr->identifier)
2588 continue;
2590 hres = create_source_function(ctx->script, code, func->expr->parameter_list, func->expr->source_elements,
2591 ctx->scope_chain, func->expr->src_str, func->expr->src_len, &func_obj);
2592 if(FAILED(hres))
2593 return hres;
2595 var_set_jsdisp(&var, func_obj);
2596 hres = jsdisp_propput_name(ctx->var_disp, func->expr->identifier, &var, ei);
2597 jsdisp_release(func_obj);
2598 if(FAILED(hres))
2599 return hres;
2602 for(var = source->variables; var; var = var->next) {
2603 DISPID id = 0;
2604 BSTR name;
2606 name = SysAllocString(var->identifier);
2607 if(!name)
2608 return E_OUTOFMEMORY;
2610 if(!ctx->is_global || !lookup_global_members(ctx->script, name, NULL))
2611 hres = jsdisp_get_id(ctx->var_disp, var->identifier, fdexNameEnsure, &id);
2612 SysFreeString(name);
2613 if(FAILED(hres))
2614 return hres;
2617 prev_ctx = ctx->script->exec_ctx;
2618 ctx->script->exec_ctx = ctx;
2620 if(source->statement) {
2621 assert(source->instr_off);
2622 hres = enter_bytecode(ctx->script, code, source->instr_off, ei, &val);
2623 }else {
2624 V_VT(&val) = VT_EMPTY;
2627 assert(ctx->script->exec_ctx == ctx);
2628 ctx->script->exec_ctx = prev_ctx;
2630 if(FAILED(hres)) {
2631 VariantClear(&val);
2632 return hres;
2635 if(retv)
2636 *retv = val;
2637 else
2638 VariantClear(&val);
2639 return S_OK;