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
20 #include "wine/port.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 {
49 static HRESULT stack_push(exec_ctx_t *ctx, VARIANT *v)
51 if(!ctx->stack_size) {
52 ctx->stack = heap_alloc(16*sizeof(VARIANT));
56 }else if(ctx->stack_size == ctx->top) {
59 new_stack = heap_realloc(ctx->stack, ctx->stack_size*2*sizeof(VARIANT));
65 ctx->stack = new_stack;
69 ctx->stack[ctx->top++] = *v;
73 static HRESULT stack_push_bool(exec_ctx_t *ctx, BOOL b)
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)
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)
96 return stack_push(ctx, &v);
99 static inline HRESULT stack_push_string(exec_ctx_t *ctx, const WCHAR *str)
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)
113 V_VT(&v) = VT_DISPATCH;
114 V_DISPATCH(&v) = disp;
115 hres = stack_push(ctx, &v);
121 return stack_push(ctx, &v);
124 static inline VARIANT *stack_top(exec_ctx_t *ctx)
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)
139 return ctx->stack + --ctx->top;
142 static void stack_popn(exec_ctx_t *ctx, unsigned n)
145 VariantClear(stack_pop(ctx));
148 static HRESULT stack_pop_number(exec_ctx_t *ctx, double *r)
154 hres = to_number(ctx->script, v, ctx->ei, r);
159 static HRESULT stack_pop_object(exec_ctx_t *ctx, IDispatch **r)
165 if(V_VT(v) == VT_DISPATCH) {
167 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_REQUIRED, NULL);
172 hres = to_object(ctx->script, v, r);
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)
206 case EXPRVAL_VARIANT:
207 if(V_VT(&val->u.var) != VT_EMPTY)
208 VariantClear(&val->u.var);
211 if(val->u.idref.disp)
212 IDispatch_Release(val->u.idref.disp);
214 case EXPRVAL_INVALID:
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;
225 case EXPRVAL_VARIANT:
226 return VariantCopy(ret, &val->u.var);
228 if(!val->u.idref.disp) {
229 FIXME("throw ReferenceError\n");
233 return disp_propget(ctx, val->u.idref.disp, val->u.idref.id, ret, ei);
234 case EXPRVAL_INVALID:
238 ERR("type %d\n", val->type);
242 static HRESULT exprval_to_value(script_ctx_t *ctx, exprval_t *val, jsexcept_t *ei, VARIANT *ret)
244 if(val->type == EXPRVAL_VARIANT) {
246 V_VT(&val->u.var) = VT_EMPTY;
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;
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));
269 return E_OUTOFMEMORY;
274 new_scope->obj = obj;
278 new_scope->next = scope;
280 new_scope->next = NULL;
287 static void scope_pop(scope_chain_t **scope)
296 void scope_release(scope_chain_t *scope)
302 scope_release(scope->next);
304 jsdisp_release(scope->obj);
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)
313 ctx = heap_alloc_zero(sizeof(exec_ctx_t));
315 return E_OUTOFMEMORY;
318 ctx->is_global = is_global;
321 ctx->this_obj = this_obj;
322 else if(script_ctx->host_global)
323 ctx->this_obj = script_ctx->host_global;
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;
336 ctx->scope_chain = scope;
343 void exec_release(exec_ctx_t *ctx)
349 scope_release(ctx->scope_chain);
351 jsdisp_release(ctx->var_disp);
353 IDispatch_Release(ctx->this_obj);
355 script_release(ctx->script);
356 heap_free(ctx->stack);
360 static HRESULT disp_get_id(script_ctx_t *ctx, IDispatch *disp, BSTR name, DWORD flags, DISPID *id)
365 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
367 TRACE("using IDispatch\n");
370 return IDispatch_GetIDsOfNames(disp, &IID_NULL, &name, 1, 0, id);
374 hres = IDispatchEx_GetDispID(dispex, name, make_grfdex(ctx, flags|fdexNameCaseSensitive), id);
375 IDispatchEx_Release(dispex);
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;
395 if(!disp1 || !disp2) {
400 hres = IDispatch_QueryInterface(disp1, &IID_IUnknown, (void**)&unk1);
404 hres = IDispatch_QueryInterface(disp2, &IID_IUnknown, (void**)&unk2);
406 IUnknown_Release(unk1);
413 hres = IUnknown_QueryInterface(unk1, &IID_IObjectIdentity, (void**)&identity);
414 if(SUCCEEDED(hres)) {
415 hres = IObjectIdentity_IsEqualObject(identity, unk2);
416 IObjectIdentity_Release(identity);
423 IUnknown_Release(unk1);
424 IUnknown_Release(unk2);
428 /* ECMA-262 3rd Edition 11.9.6 */
429 static HRESULT equal2_values(VARIANT *lval, VARIANT *rval, BOOL *ret)
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);
449 *ret = V_I4(lval) == V_I4(rval);
452 *ret = V_R8(lval) == V_R8(rval);
456 *ret = SysStringLen(V_BSTR(rval))?FALSE:TRUE;
457 else if(!V_BSTR(rval))
458 *ret = SysStringLen(V_BSTR(lval))?FALSE:TRUE;
460 *ret = !strcmpW(V_BSTR(lval), V_BSTR(rval));
463 return disp_cmp(V_DISPATCH(lval), V_DISPATCH(rval), ret);
465 *ret = !V_BOOL(lval) == !V_BOOL(rval);
468 FIXME("unimplemented vt %d\n", V_VT(lval));
475 static BOOL lookup_global_members(script_ctx_t *ctx, BSTR identifier, exprval_t *ret)
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)) {
486 exprval_set_idref(ret, item->disp, id);
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;
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);
513 hres = jsdisp_get_id(ctx->global, identifier, 0, &id);
514 if(SUCCEEDED(hres)) {
515 exprval_set_idref(ret, to_disp(ctx->global), id);
519 for(item = ctx->named_items; item; item = item->next) {
520 if((item->flags & SCRIPTITEM_ISVISIBLE) && !strcmpW(item->name, identifier)) {
527 hres = IActiveScriptSite_GetItemInfo(ctx->site, identifier,
528 SCRIPTINFO_IUNKNOWN, &unk, NULL);
530 WARN("GetItemInfo failed: %08x\n", hres);
534 hres = IUnknown_QueryInterface(unk, &IID_IDispatch, (void**)&item->disp);
535 IUnknown_Release(unk);
537 WARN("object does not implement IDispatch\n");
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);
550 if(lookup_global_members(ctx, identifier, ret))
553 ret->type = EXPRVAL_INVALID;
557 static inline BSTR get_op_bstr(exec_ctx_t *ctx, int i){
558 return ctx->code->instrs[ctx->ip].u.arg[i].bstr;
561 static inline unsigned get_op_uint(exec_ctx_t *ctx, int i){
562 return ctx->code->instrs[ctx->ip].u.arg[i].uint;
565 static inline unsigned get_op_int(exec_ctx_t *ctx, int i){
566 return ctx->code->instrs[ctx->ip].u.arg[i].lng;
569 static inline const WCHAR *get_op_str(exec_ctx_t *ctx, int i){
570 return ctx->code->instrs[ctx->ip].u.arg[i].str;
573 static inline double get_op_double(exec_ctx_t *ctx){
574 return ctx->code->instrs[ctx->ip].u.dbl;
577 /* ECMA-262 3rd Edition 12.2 */
578 static HRESULT interp_var_set(exec_ctx_t *ctx)
580 const BSTR name = get_op_bstr(ctx, 0);
584 TRACE("%s\n", debugstr_w(name));
587 hres = jsdisp_propput_name(ctx->var_disp, name, v, ctx->ei);
592 /* ECMA-262 3rd Edition 12.6.4 */
593 static HRESULT interp_forin(exec_ctx_t *ctx)
595 const HRESULT arg = get_op_uint(ctx, 0);
596 IDispatch *var_obj, *obj = NULL;
605 val = stack_pop(ctx);
607 assert(V_VT(stack_top(ctx)) == VT_I4);
608 id = V_I4(stack_top(ctx));
610 var_obj = stack_topn_objid(ctx, 1, &var_id);
612 FIXME("invalid ref\n");
617 if(V_VT(stack_topn(ctx, 3)) == VT_DISPATCH)
618 obj = V_DISPATCH(stack_topn(ctx, 3));
621 hres = IDispatch_QueryInterface(obj, &IID_IDispatchEx, (void**)&dispex);
622 if(SUCCEEDED(hres)) {
623 hres = IDispatchEx_GetNextDispID(dispex, fdexEnumDefault, id, &id);
625 hres = IDispatchEx_GetMemberName(dispex, id, &name);
626 IDispatchEx_Release(dispex);
632 TRACE("No IDispatchEx\n");
641 V_I4(stack_top(ctx)) = id;
645 hres = disp_propput(ctx->script, var_obj, var_id, &v, ctx->ei);
654 return stack_push(ctx, val);
659 /* ECMA-262 3rd Edition 12.10 */
660 static HRESULT interp_push_scope(exec_ctx_t *ctx)
670 hres = to_object(ctx->script, v, &disp);
675 obj = to_jsdisp(disp);
677 IDispatch_Release(disp);
678 FIXME("disp is not jsdisp\n");
682 hres = scope_push(ctx->scope_chain, obj, &ctx->scope_chain);
687 /* ECMA-262 3rd Edition 12.10 */
688 static HRESULT interp_pop_scope(exec_ctx_t *ctx)
692 scope_pop(&ctx->scope_chain);
696 /* ECMA-262 3rd Edition 12.13 */
697 static HRESULT interp_case(exec_ctx_t *ctx)
699 const unsigned arg = get_op_uint(ctx, 0);
707 hres = equal2_values(stack_top(ctx), v, &b);
721 /* ECMA-262 3rd Edition 12.13 */
722 static HRESULT interp_throw(exec_ctx_t *ctx)
726 ctx->ei->var = *stack_pop(ctx);
727 return DISP_E_EXCEPTION;
730 static HRESULT interp_throw_ref(exec_ctx_t *ctx)
732 const HRESULT arg = get_op_uint(ctx, 0);
734 TRACE("%08x\n", arg);
736 return throw_reference_error(ctx->script, ctx->ei, arg, NULL);
739 static HRESULT interp_throw_type(exec_ctx_t *ctx)
741 const HRESULT hres = get_op_uint(ctx, 0);
742 const WCHAR *str = get_op_str(ctx, 1);
744 TRACE("%08x %s\n", hres, debugstr_w(str));
746 return throw_type_error(ctx->script, ctx->ei, hres, str);
749 /* ECMA-262 3rd Edition 12.14 */
750 static HRESULT interp_push_except(exec_ctx_t *ctx)
752 const unsigned arg1 = get_op_uint(ctx, 0);
753 const BSTR arg2 = get_op_bstr(ctx, 1);
754 except_frame_t *except;
759 stack_top = ctx->top;
764 hres = stack_push_bool(ctx, TRUE);
767 hres = stack_push_bool(ctx, TRUE);
772 except = heap_alloc(sizeof(*except));
774 return E_OUTOFMEMORY;
776 except->stack_top = stack_top;
777 except->scope = ctx->scope_chain;
778 except->catch_off = arg1;
779 except->ident = arg2;
780 except->next = ctx->except_frame;
781 ctx->except_frame = except;
785 /* ECMA-262 3rd Edition 12.14 */
786 static HRESULT interp_pop_except(exec_ctx_t *ctx)
788 except_frame_t *except;
792 except = ctx->except_frame;
793 assert(except != NULL);
795 ctx->except_frame = except->next;
800 /* ECMA-262 3rd Edition 12.14 */
801 static HRESULT interp_end_finally(exec_ctx_t *ctx)
809 assert(V_VT(stack_top(ctx)) == VT_BOOL);
810 if(!V_BOOL(stack_top(ctx))) {
811 TRACE("passing exception\n");
815 ctx->ei->var = *stack_pop(ctx);
816 return DISP_E_EXCEPTION;
820 return stack_push(ctx, v);
823 /* ECMA-262 3rd Edition 13 */
824 static HRESULT interp_func(exec_ctx_t *ctx)
826 unsigned func_idx = get_op_uint(ctx, 0);
831 TRACE("%d\n", func_idx);
833 hres = create_source_function(ctx->script, ctx->code, ctx->func_code->funcs+func_idx,
834 ctx->scope_chain, &dispex);
838 var_set_jsdisp(&v, dispex);
839 return stack_push(ctx, &v);
842 /* ECMA-262 3rd Edition 11.2.1 */
843 static HRESULT interp_array(exec_ctx_t *ctx)
853 namev = stack_pop(ctx);
855 hres = stack_pop_object(ctx, &obj);
861 hres = to_string(ctx->script, namev, ctx->ei, &name);
864 IDispatch_Release(obj);
868 hres = disp_get_id(ctx->script, obj, name, 0, &id);
870 if(SUCCEEDED(hres)) {
871 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
872 }else if(hres == DISP_E_UNKNOWNNAME) {
876 IDispatch_Release(obj);
880 return stack_push(ctx, &v);
883 /* ECMA-262 3rd Edition 11.2.1 */
884 static HRESULT interp_member(exec_ctx_t *ctx)
886 const BSTR arg = get_op_bstr(ctx, 0);
894 hres = stack_pop_object(ctx, &obj);
898 hres = disp_get_id(ctx->script, obj, arg, 0, &id);
899 if(SUCCEEDED(hres)) {
901 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
902 }else if(hres == DISP_E_UNKNOWNNAME) {
906 IDispatch_Release(obj);
910 return stack_push(ctx, &v);
913 /* ECMA-262 3rd Edition 11.2.1 */
914 static HRESULT interp_memberid(exec_ctx_t *ctx)
916 const unsigned arg = get_op_uint(ctx, 0);
917 VARIANT *objv, *namev;
925 namev = stack_pop(ctx);
926 objv = stack_pop(ctx);
928 hres = to_object(ctx->script, objv, &obj);
930 if(SUCCEEDED(hres)) {
931 hres = to_string(ctx->script, namev, ctx->ei, &name);
933 IDispatch_Release(obj);
939 hres = disp_get_id(ctx->script, obj, name, arg, &id);
942 IDispatch_Release(obj);
943 if(hres == DISP_E_UNKNOWNNAME && !(arg & fdexNameEnsure)) {
945 id = JS_E_INVALID_PROPERTY;
951 return stack_push_objid(ctx, obj, id);
954 /* ECMA-262 3rd Edition 11.2.1 */
955 static HRESULT interp_refval(exec_ctx_t *ctx)
964 disp = stack_topn_objid(ctx, 0, &id);
966 return throw_reference_error(ctx->script, ctx->ei, JS_E_ILLEGAL_ASSIGN, NULL);
968 hres = disp_propget(ctx->script, disp, id, &v, ctx->ei);
972 return stack_push(ctx, &v);
975 static void jsstack_to_dp(exec_ctx_t *ctx, unsigned arg_cnt, DISPPARAMS *dp)
981 dp->rgdispidNamedArgs = NULL;
984 assert(ctx->top >= arg_cnt);
986 for(i=1; i*2 <= arg_cnt; i++) {
987 tmp = ctx->stack[ctx->top-i];
988 ctx->stack[ctx->top-i] = ctx->stack[ctx->top-arg_cnt+i-1];
989 ctx->stack[ctx->top-arg_cnt+i-1] = tmp;
992 dp->rgvarg = ctx->stack + ctx->top-arg_cnt;
995 /* ECMA-262 3rd Edition 11.2.2 */
996 static HRESULT interp_new(exec_ctx_t *ctx)
998 const unsigned arg = get_op_uint(ctx, 0);
1005 constr = stack_topn(ctx, arg);
1007 /* NOTE: Should use to_object here */
1009 if(V_VT(constr) == VT_NULL)
1010 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1011 else if(V_VT(constr) != VT_DISPATCH)
1012 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_ACTION, NULL);
1013 else if(!V_DISPATCH(constr))
1014 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_PROPERTY, NULL);
1016 jsstack_to_dp(ctx, arg, &dp);
1017 hres = disp_call_value(ctx->script, V_DISPATCH(constr), NULL, DISPATCH_CONSTRUCT, &dp, &v, ctx->ei);
1021 stack_popn(ctx, arg+1);
1022 return stack_push(ctx, &v);
1025 /* ECMA-262 3rd Edition 11.2.3 */
1026 static HRESULT interp_call(exec_ctx_t *ctx)
1028 const unsigned argn = get_op_uint(ctx, 0);
1029 const int do_ret = get_op_int(ctx, 1);
1034 TRACE("%d %d\n", argn, do_ret);
1036 objv = stack_topn(ctx, argn);
1037 if(V_VT(objv) != VT_DISPATCH)
1038 return throw_type_error(ctx->script, ctx->ei, JS_E_INVALID_PROPERTY, NULL);
1040 jsstack_to_dp(ctx, argn, &dp);
1041 hres = disp_call_value(ctx->script, V_DISPATCH(objv), NULL, DISPATCH_METHOD, &dp,
1042 do_ret ? &v : NULL, ctx->ei);
1046 stack_popn(ctx, argn+1);
1047 return do_ret ? stack_push(ctx, &v) : S_OK;
1051 /* ECMA-262 3rd Edition 11.2.3 */
1052 static HRESULT interp_call_member(exec_ctx_t *ctx)
1054 const unsigned argn = get_op_uint(ctx, 0);
1055 const int do_ret = get_op_int(ctx, 1);
1062 TRACE("%d %d\n", argn, do_ret);
1064 obj = stack_topn_objid(ctx, argn, &id);
1066 return throw_type_error(ctx->script, ctx->ei, id, NULL);
1068 jsstack_to_dp(ctx, argn, &dp);
1069 hres = disp_call(ctx->script, obj, id, DISPATCH_METHOD, &dp, do_ret ? &v : NULL, ctx->ei);
1073 stack_popn(ctx, argn+2);
1074 return do_ret ? stack_push(ctx, &v) : S_OK;
1078 /* ECMA-262 3rd Edition 11.1.1 */
1079 static HRESULT interp_this(exec_ctx_t *ctx)
1085 V_VT(&v) = VT_DISPATCH;
1086 V_DISPATCH(&v) = ctx->this_obj;
1087 IDispatch_AddRef(ctx->this_obj);
1088 return stack_push(ctx, &v);
1091 /* ECMA-262 3rd Edition 10.1.4 */
1092 static HRESULT interp_ident(exec_ctx_t *ctx)
1094 const BSTR arg = get_op_bstr(ctx, 0);
1099 TRACE("%s\n", debugstr_w(arg));
1101 hres = identifier_eval(ctx->script, arg, &exprval);
1105 if(exprval.type == EXPRVAL_INVALID)
1106 return throw_type_error(ctx->script, ctx->ei, JS_E_UNDEFINED_VARIABLE, arg);
1108 hres = exprval_to_value(ctx->script, &exprval, ctx->ei, &v);
1109 exprval_release(&exprval);
1113 return stack_push(ctx, &v);
1116 /* ECMA-262 3rd Edition 10.1.4 */
1117 static HRESULT interp_identid(exec_ctx_t *ctx)
1119 const BSTR arg = get_op_bstr(ctx, 0);
1120 const unsigned flags = get_op_uint(ctx, 1);
1124 TRACE("%s %x\n", debugstr_w(arg), flags);
1126 hres = identifier_eval(ctx->script, arg, &exprval);
1130 if(exprval.type == EXPRVAL_INVALID && (flags & fdexNameEnsure)) {
1133 hres = jsdisp_get_id(ctx->script->global, arg, fdexNameEnsure, &id);
1137 exprval_set_idref(&exprval, to_disp(ctx->script->global), id);
1140 if(exprval.type != EXPRVAL_IDREF) {
1141 WARN("invalid ref\n");
1142 exprval_release(&exprval);
1143 return stack_push_objid(ctx, NULL, JS_E_OBJECT_EXPECTED);
1146 return stack_push_objid(ctx, exprval.u.idref.disp, exprval.u.idref.id);
1149 /* ECMA-262 3rd Edition 7.8.1 */
1150 static HRESULT interp_null(exec_ctx_t *ctx)
1157 return stack_push(ctx, &v);
1160 /* ECMA-262 3rd Edition 7.8.2 */
1161 static HRESULT interp_bool(exec_ctx_t *ctx)
1163 const int arg = get_op_int(ctx, 0);
1165 TRACE("%s\n", arg ? "true" : "false");
1167 return stack_push_bool(ctx, arg);
1170 /* ECMA-262 3rd Edition 7.8.3 */
1171 static HRESULT interp_int(exec_ctx_t *ctx)
1173 const int arg = get_op_int(ctx, 0);
1180 return stack_push(ctx, &v);
1183 /* ECMA-262 3rd Edition 7.8.3 */
1184 static HRESULT interp_double(exec_ctx_t *ctx)
1186 const double arg = get_op_double(ctx);
1188 TRACE("%lf\n", arg);
1190 return stack_push_number(ctx, arg);
1193 /* ECMA-262 3rd Edition 7.8.4 */
1194 static HRESULT interp_str(exec_ctx_t *ctx)
1196 const WCHAR *str = get_op_str(ctx, 0);
1199 TRACE("%s\n", debugstr_w(str));
1202 V_BSTR(&v) = SysAllocString(str);
1204 return E_OUTOFMEMORY;
1206 return stack_push(ctx, &v);
1209 /* ECMA-262 3rd Edition 7.8 */
1210 static HRESULT interp_regexp(exec_ctx_t *ctx)
1212 const WCHAR *source = get_op_str(ctx, 0);
1213 const unsigned flags = get_op_uint(ctx, 1);
1218 TRACE("%s %x\n", debugstr_w(source), flags);
1220 hres = create_regexp(ctx->script, source, strlenW(source), flags, ®exp);
1224 var_set_jsdisp(&v, regexp);
1225 return stack_push(ctx, &v);
1228 /* ECMA-262 3rd Edition 11.1.4 */
1229 static HRESULT interp_carray(exec_ctx_t *ctx)
1231 const unsigned arg = get_op_uint(ctx, 0);
1239 hres = create_array(ctx->script, arg, &array);
1246 hres = jsdisp_propput_idx(array, i, v, ctx->ei);
1249 jsdisp_release(array);
1254 var_set_jsdisp(&r, array);
1255 return stack_push(ctx, &r);
1258 /* ECMA-262 3rd Edition 11.1.5 */
1259 static HRESULT interp_new_obj(exec_ctx_t *ctx)
1267 hres = create_object(ctx->script, NULL, &obj);
1271 var_set_jsdisp(&v, obj);
1272 return stack_push(ctx, &v);
1275 /* ECMA-262 3rd Edition 11.1.5 */
1276 static HRESULT interp_obj_prop(exec_ctx_t *ctx)
1278 const BSTR name = get_op_bstr(ctx, 0);
1283 TRACE("%s\n", debugstr_w(name));
1287 assert(V_VT(stack_top(ctx)) == VT_DISPATCH);
1288 obj = as_jsdisp(V_DISPATCH(stack_top(ctx)));
1290 hres = jsdisp_propput_name(obj, name, v, ctx->ei);
1295 /* ECMA-262 3rd Edition 11.11 */
1296 static HRESULT interp_cnd_nz(exec_ctx_t *ctx)
1298 const unsigned arg = get_op_uint(ctx, 0);
1304 hres = to_boolean(stack_top(ctx), &b);
1317 /* ECMA-262 3rd Edition 11.11 */
1318 static HRESULT interp_cnd_z(exec_ctx_t *ctx)
1320 const unsigned arg = get_op_uint(ctx, 0);
1326 hres = to_boolean(stack_top(ctx), &b);
1339 /* ECMA-262 3rd Edition 11.10 */
1340 static HRESULT interp_or(exec_ctx_t *ctx)
1347 hres = stack_pop_int(ctx, &r);
1351 hres = stack_pop_int(ctx, &l);
1355 return stack_push_int(ctx, l|r);
1358 /* ECMA-262 3rd Edition 11.10 */
1359 static HRESULT interp_xor(exec_ctx_t *ctx)
1366 hres = stack_pop_int(ctx, &r);
1370 hres = stack_pop_int(ctx, &l);
1374 return stack_push_int(ctx, l^r);
1377 /* ECMA-262 3rd Edition 11.10 */
1378 static HRESULT interp_and(exec_ctx_t *ctx)
1385 hres = stack_pop_int(ctx, &r);
1389 hres = stack_pop_int(ctx, &l);
1393 return stack_push_int(ctx, l&r);
1396 /* ECMA-262 3rd Edition 11.8.6 */
1397 static HRESULT interp_instanceof(exec_ctx_t *ctx)
1399 jsdisp_t *obj, *iter, *tmp = NULL;
1404 static const WCHAR prototypeW[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
1407 if(V_VT(v) != VT_DISPATCH || !V_DISPATCH(v)) {
1409 return throw_type_error(ctx->script, ctx->ei, JS_E_FUNCTION_EXPECTED, NULL);
1412 obj = iface_to_jsdisp((IUnknown*)V_DISPATCH(v));
1413 IDispatch_Release(V_DISPATCH(v));
1415 FIXME("non-jsdisp objects not supported\n");
1419 if(is_class(obj, JSCLASS_FUNCTION)) {
1420 hres = jsdisp_propget_name(obj, prototypeW, &prot, ctx->ei);
1422 hres = throw_type_error(ctx->script, ctx->ei, JS_E_FUNCTION_EXPECTED, NULL);
1424 jsdisp_release(obj);
1430 if(V_VT(&prot) == VT_DISPATCH) {
1431 if(V_VT(v) == VT_DISPATCH)
1432 tmp = iface_to_jsdisp((IUnknown*)V_DISPATCH(v));
1433 for(iter = tmp; !ret && iter; iter = iter->prototype) {
1434 hres = disp_cmp(V_DISPATCH(&prot), to_disp(iter), &ret);
1440 jsdisp_release(tmp);
1442 FIXME("prototype is not an object\n");
1446 VariantClear(&prot);
1451 return stack_push_bool(ctx, ret);
1454 /* ECMA-262 3rd Edition 11.8.7 */
1455 static HRESULT interp_in(exec_ctx_t *ctx)
1465 obj = stack_pop(ctx);
1468 if(V_VT(obj) != VT_DISPATCH || !V_DISPATCH(obj)) {
1471 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1474 hres = to_string(ctx->script, v, ctx->ei, &str);
1477 IDispatch_Release(V_DISPATCH(obj));
1481 hres = disp_get_id(ctx->script, V_DISPATCH(obj), str, 0, &id);
1482 IDispatch_Release(V_DISPATCH(obj));
1486 else if(hres == DISP_E_UNKNOWNNAME)
1491 return stack_push_bool(ctx, ret);
1494 /* ECMA-262 3rd Edition 11.6.1 */
1495 static HRESULT add_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jsexcept_t *ei, VARIANT *retv)
1500 hres = to_primitive(ctx, lval, ei, &l, NO_HINT);
1504 hres = to_primitive(ctx, rval, ei, &r, NO_HINT);
1510 if(V_VT(&l) == VT_BSTR || V_VT(&r) == VT_BSTR) {
1511 BSTR lstr = NULL, rstr = NULL;
1513 if(V_VT(&l) == VT_BSTR)
1516 hres = to_string(ctx, &l, ei, &lstr);
1518 if(SUCCEEDED(hres)) {
1519 if(V_VT(&r) == VT_BSTR)
1522 hres = to_string(ctx, &r, ei, &rstr);
1525 if(SUCCEEDED(hres)) {
1528 len1 = SysStringLen(lstr);
1529 len2 = SysStringLen(rstr);
1531 V_VT(retv) = VT_BSTR;
1532 V_BSTR(retv) = SysAllocStringLen(NULL, len1+len2);
1534 memcpy(V_BSTR(retv), lstr, len1*sizeof(WCHAR));
1536 memcpy(V_BSTR(retv)+len1, rstr, len2*sizeof(WCHAR));
1537 V_BSTR(retv)[len1+len2] = 0;
1540 if(V_VT(&l) != VT_BSTR)
1541 SysFreeString(lstr);
1542 if(V_VT(&r) != VT_BSTR)
1543 SysFreeString(rstr);
1547 hres = to_number(ctx, &l, ei, &nl);
1548 if(SUCCEEDED(hres)) {
1549 hres = to_number(ctx, &r, ei, &nr);
1551 num_set_val(retv, nl + nr);
1560 /* ECMA-262 3rd Edition 11.6.1 */
1561 static HRESULT interp_add(exec_ctx_t *ctx)
1563 VARIANT *l, *r, ret;
1569 TRACE("%s + %s\n", debugstr_variant(l), debugstr_variant(r));
1571 hres = add_eval(ctx->script, l, r, ctx->ei, &ret);
1577 return stack_push(ctx, &ret);
1580 /* ECMA-262 3rd Edition 11.6.2 */
1581 static HRESULT interp_sub(exec_ctx_t *ctx)
1588 hres = stack_pop_number(ctx, &r);
1592 hres = stack_pop_number(ctx, &l);
1596 return stack_push_number(ctx, l-r);
1599 /* ECMA-262 3rd Edition 11.5.1 */
1600 static HRESULT interp_mul(exec_ctx_t *ctx)
1607 hres = stack_pop_number(ctx, &r);
1611 hres = stack_pop_number(ctx, &l);
1615 return stack_push_number(ctx, l*r);
1618 /* ECMA-262 3rd Edition 11.5.2 */
1619 static HRESULT interp_div(exec_ctx_t *ctx)
1626 hres = stack_pop_number(ctx, &r);
1630 hres = stack_pop_number(ctx, &l);
1634 return stack_push_number(ctx, l/r);
1637 /* ECMA-262 3rd Edition 11.5.3 */
1638 static HRESULT interp_mod(exec_ctx_t *ctx)
1645 hres = stack_pop_number(ctx, &r);
1649 hres = stack_pop_number(ctx, &l);
1653 return stack_push_number(ctx, fmod(l, r));
1656 /* ECMA-262 3rd Edition 11.4.2 */
1657 static HRESULT interp_delete(exec_ctx_t *ctx)
1659 VARIANT *obj_var, *name_var;
1660 IDispatchEx *dispex;
1668 name_var = stack_pop(ctx);
1669 obj_var = stack_pop(ctx);
1671 hres = to_object(ctx->script, obj_var, &obj);
1672 VariantClear(obj_var);
1674 VariantClear(name_var);
1678 hres = to_string(ctx->script, name_var, ctx->ei, &name);
1679 VariantClear(name_var);
1681 IDispatch_Release(obj);
1685 hres = IDispatch_QueryInterface(obj, &IID_IDispatchEx, (void**)&dispex);
1686 if(SUCCEEDED(hres)) {
1687 hres = IDispatchEx_DeleteMemberByName(dispex, name, make_grfdex(ctx->script, fdexNameCaseSensitive));
1689 IDispatchEx_Release(dispex);
1695 IDispatch_Release(obj);
1696 SysFreeString(name);
1700 return stack_push_bool(ctx, ret);
1703 /* ECMA-262 3rd Edition 11.4.2 */
1704 static HRESULT interp_delete_ident(exec_ctx_t *ctx)
1706 const BSTR arg = get_op_bstr(ctx, 0);
1707 IDispatchEx *dispex;
1712 TRACE("%s\n", debugstr_w(arg));
1714 hres = identifier_eval(ctx->script, arg, &exprval);
1718 if(exprval.type != EXPRVAL_IDREF) {
1719 FIXME("Unsupported exprval\n");
1720 exprval_release(&exprval);
1724 hres = IDispatch_QueryInterface(exprval.u.idref.disp, &IID_IDispatchEx, (void**)&dispex);
1725 IDispatch_Release(exprval.u.idref.disp);
1726 if(SUCCEEDED(hres)) {
1727 hres = IDispatchEx_DeleteMemberByDispID(dispex, exprval.u.idref.id);
1728 IDispatchEx_Release(dispex);
1735 return stack_push_bool(ctx, ret);
1738 /* ECMA-262 3rd Edition 11.4.2 */
1739 static HRESULT interp_void(exec_ctx_t *ctx)
1747 V_VT(&v) = VT_EMPTY;
1748 return stack_push(ctx, &v);
1751 /* ECMA-262 3rd Edition 11.4.3 */
1752 static HRESULT typeof_string(VARIANT *v, const WCHAR **ret)
1774 if(V_DISPATCH(v) && (dispex = iface_to_jsdisp((IUnknown*)V_DISPATCH(v)))) {
1775 *ret = is_class(dispex, JSCLASS_FUNCTION) ? functionW : objectW;
1776 jsdisp_release(dispex);
1783 FIXME("unhandled vt %d\n", V_VT(v));
1790 /* ECMA-262 3rd Edition 11.4.3 */
1791 static HRESULT interp_typeofid(exec_ctx_t *ctx)
1799 static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
1803 obj = stack_pop_objid(ctx, &id);
1805 return stack_push_string(ctx, undefinedW);
1807 V_VT(&v) = VT_EMPTY;
1808 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1809 IDispatch_Release(obj);
1811 return stack_push_string(ctx, unknownW);
1813 hres = typeof_string(&v, &ret);
1818 return stack_push_string(ctx, ret);
1821 /* ECMA-262 3rd Edition 11.4.3 */
1822 static HRESULT interp_typeofident(exec_ctx_t *ctx)
1824 const BSTR arg = get_op_bstr(ctx, 0);
1830 TRACE("%s\n", debugstr_w(arg));
1832 hres = identifier_eval(ctx->script, arg, &exprval);
1836 if(exprval.type == EXPRVAL_INVALID) {
1837 hres = stack_push_string(ctx, undefinedW);
1838 exprval_release(&exprval);
1842 hres = exprval_to_value(ctx->script, &exprval, ctx->ei, &v);
1843 exprval_release(&exprval);
1847 hres = typeof_string(&v, &ret);
1852 return stack_push_string(ctx, ret);
1855 /* ECMA-262 3rd Edition 11.4.3 */
1856 static HRESULT interp_typeof(exec_ctx_t *ctx)
1865 hres = typeof_string(v, &ret);
1870 return stack_push_string(ctx, ret);
1873 /* ECMA-262 3rd Edition 11.4.7 */
1874 static HRESULT interp_minus(exec_ctx_t *ctx)
1881 hres = stack_pop_number(ctx, &n);
1885 return stack_push_number(ctx, -n);
1888 /* ECMA-262 3rd Edition 11.4.6 */
1889 static HRESULT interp_tonum(exec_ctx_t *ctx)
1898 hres = to_number(ctx->script, v, ctx->ei, &n);
1903 return stack_push_number(ctx, n);
1906 /* ECMA-262 3rd Edition 11.3.1 */
1907 static HRESULT interp_postinc(exec_ctx_t *ctx)
1909 const int arg = get_op_int(ctx, 0);
1917 obj = stack_pop_objid(ctx, &id);
1919 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1921 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1922 if(SUCCEEDED(hres)) {
1926 hres = to_number(ctx->script, &v, ctx->ei, &n);
1927 if(SUCCEEDED(hres)) {
1928 num_set_val(&inc, n+(double)arg);
1929 hres = disp_propput(ctx->script, obj, id, &inc, ctx->ei);
1934 IDispatch_Release(obj);
1938 return stack_push(ctx, &v);
1941 /* ECMA-262 3rd Edition 11.4.4, 11.4.5 */
1942 static HRESULT interp_preinc(exec_ctx_t *ctx)
1944 const int arg = get_op_int(ctx, 0);
1952 obj = stack_pop_objid(ctx, &id);
1954 return throw_type_error(ctx->script, ctx->ei, JS_E_OBJECT_EXPECTED, NULL);
1956 hres = disp_propget(ctx->script, obj, id, &v, ctx->ei);
1957 if(SUCCEEDED(hres)) {
1960 hres = to_number(ctx->script, &v, ctx->ei, &n);
1962 if(SUCCEEDED(hres)) {
1963 num_set_val(&v, n+(double)arg);
1964 hres = disp_propput(ctx->script, obj, id, &v, ctx->ei);
1967 IDispatch_Release(obj);
1971 return stack_push(ctx, &v);
1974 /* ECMA-262 3rd Edition 11.9.3 */
1975 static HRESULT equal_values(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jsexcept_t *ei, BOOL *ret)
1977 if(V_VT(lval) == V_VT(rval) || (is_num_vt(V_VT(lval)) && is_num_vt(V_VT(rval))))
1978 return equal2_values(lval, rval, ret);
1980 /* FIXME: NULL disps should be handled in more general way */
1981 if(V_VT(lval) == VT_DISPATCH && !V_DISPATCH(lval)) {
1984 return equal_values(ctx, &v, rval, ei, ret);
1987 if(V_VT(rval) == VT_DISPATCH && !V_DISPATCH(rval)) {
1990 return equal_values(ctx, lval, &v, ei, ret);
1993 if((V_VT(lval) == VT_NULL && V_VT(rval) == VT_EMPTY) ||
1994 (V_VT(lval) == VT_EMPTY && V_VT(rval) == VT_NULL)) {
1999 if(V_VT(lval) == VT_BSTR && is_num_vt(V_VT(rval))) {
2004 hres = to_number(ctx, lval, ei, &n);
2008 /* FIXME: optimize */
2011 return equal_values(ctx, &v, rval, ei, ret);
2014 if(V_VT(rval) == VT_BSTR && is_num_vt(V_VT(lval))) {
2019 hres = to_number(ctx, rval, ei, &n);
2023 /* FIXME: optimize */
2026 return equal_values(ctx, lval, &v, ei, ret);
2029 if(V_VT(rval) == VT_BOOL) {
2032 num_set_int(&v, V_BOOL(rval) ? 1 : 0);
2033 return equal_values(ctx, lval, &v, ei, ret);
2036 if(V_VT(lval) == VT_BOOL) {
2039 num_set_int(&v, V_BOOL(lval) ? 1 : 0);
2040 return equal_values(ctx, &v, rval, ei, ret);
2044 if(V_VT(rval) == VT_DISPATCH && (V_VT(lval) == VT_BSTR || is_num_vt(V_VT(lval)))) {
2048 hres = to_primitive(ctx, rval, ei, &v, NO_HINT);
2052 hres = equal_values(ctx, lval, &v, ei, ret);
2059 if(V_VT(lval) == VT_DISPATCH && (V_VT(rval) == VT_BSTR || is_num_vt(V_VT(rval)))) {
2063 hres = to_primitive(ctx, lval, ei, &v, NO_HINT);
2067 hres = equal_values(ctx, &v, rval, ei, ret);
2078 /* ECMA-262 3rd Edition 11.9.1 */
2079 static HRESULT interp_eq(exec_ctx_t *ctx)
2088 TRACE("%s == %s\n", debugstr_variant(l), debugstr_variant(r));
2090 hres = equal_values(ctx->script, l, r, ctx->ei, &b);
2096 return stack_push_bool(ctx, b);
2099 /* ECMA-262 3rd Edition 11.9.2 */
2100 static HRESULT interp_neq(exec_ctx_t *ctx)
2109 TRACE("%s != %s\n", debugstr_variant(l), debugstr_variant(r));
2111 hres = equal_values(ctx->script, l, r, ctx->ei, &b);
2117 return stack_push_bool(ctx, !b);
2120 /* ECMA-262 3rd Edition 11.9.4 */
2121 static HRESULT interp_eq2(exec_ctx_t *ctx)
2132 hres = equal2_values(r, l, &b);
2138 return stack_push_bool(ctx, b);
2141 /* ECMA-262 3rd Edition 11.9.5 */
2142 static HRESULT interp_neq2(exec_ctx_t *ctx)
2153 hres = equal2_values(r, l, &b);
2159 return stack_push_bool(ctx, !b);
2162 /* ECMA-262 3rd Edition 11.8.5 */
2163 static HRESULT less_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, BOOL greater, jsexcept_t *ei, BOOL *ret)
2169 hres = to_primitive(ctx, lval, ei, &l, NO_HINT);
2173 hres = to_primitive(ctx, rval, ei, &r, NO_HINT);
2179 if(V_VT(&l) == VT_BSTR && V_VT(&r) == VT_BSTR) {
2180 *ret = (strcmpW(V_BSTR(&l), V_BSTR(&r)) < 0) ^ greater;
2181 SysFreeString(V_BSTR(&l));
2182 SysFreeString(V_BSTR(&r));
2186 hres = to_number(ctx, &l, ei, &ln);
2189 hres = to_number(ctx, &r, ei, &rn);
2194 *ret = !isnan(ln) && !isnan(rn) && ((ln < rn) ^ greater);
2198 /* ECMA-262 3rd Edition 11.8.1 */
2199 static HRESULT interp_lt(exec_ctx_t *ctx)
2208 TRACE("%s < %s\n", debugstr_variant(l), debugstr_variant(r));
2210 hres = less_eval(ctx->script, l, r, FALSE, ctx->ei, &b);
2216 return stack_push_bool(ctx, b);
2219 /* ECMA-262 3rd Edition 11.8.1 */
2220 static HRESULT interp_lteq(exec_ctx_t *ctx)
2229 TRACE("%s <= %s\n", debugstr_variant(l), debugstr_variant(r));
2231 hres = less_eval(ctx->script, r, l, TRUE, ctx->ei, &b);
2237 return stack_push_bool(ctx, b);
2240 /* ECMA-262 3rd Edition 11.8.2 */
2241 static HRESULT interp_gt(exec_ctx_t *ctx)
2250 TRACE("%s > %s\n", debugstr_variant(l), debugstr_variant(r));
2252 hres = less_eval(ctx->script, r, l, FALSE, ctx->ei, &b);
2258 return stack_push_bool(ctx, b);
2261 /* ECMA-262 3rd Edition 11.8.4 */
2262 static HRESULT interp_gteq(exec_ctx_t *ctx)
2271 TRACE("%s >= %s\n", debugstr_variant(l), debugstr_variant(r));
2273 hres = less_eval(ctx->script, l, r, TRUE, ctx->ei, &b);
2279 return stack_push_bool(ctx, b);
2282 /* ECMA-262 3rd Edition 11.4.8 */
2283 static HRESULT interp_bneg(exec_ctx_t *ctx)
2292 hres = to_int32(ctx->script, v, ctx->ei, &i);
2297 return stack_push_int(ctx, ~i);
2300 /* ECMA-262 3rd Edition 11.4.9 */
2301 static HRESULT interp_neg(exec_ctx_t *ctx)
2310 hres = to_boolean(v, &b);
2315 return stack_push_bool(ctx, !b);
2318 /* ECMA-262 3rd Edition 11.7.1 */
2319 static HRESULT interp_lshift(exec_ctx_t *ctx)
2325 hres = stack_pop_uint(ctx, &r);
2329 hres = stack_pop_int(ctx, &l);
2333 return stack_push_int(ctx, l << (r&0x1f));
2336 /* ECMA-262 3rd Edition 11.7.2 */
2337 static HRESULT interp_rshift(exec_ctx_t *ctx)
2343 hres = stack_pop_uint(ctx, &r);
2347 hres = stack_pop_int(ctx, &l);
2351 return stack_push_int(ctx, l >> (r&0x1f));
2354 /* ECMA-262 3rd Edition 11.7.3 */
2355 static HRESULT interp_rshift2(exec_ctx_t *ctx)
2360 hres = stack_pop_uint(ctx, &r);
2364 hres = stack_pop_uint(ctx, &l);
2368 return stack_push_int(ctx, l >> (r&0x1f));
2371 /* ECMA-262 3rd Edition 11.13.1 */
2372 static HRESULT interp_assign(exec_ctx_t *ctx)
2382 disp = stack_pop_objid(ctx, &id);
2385 return throw_reference_error(ctx->script, ctx->ei, JS_E_ILLEGAL_ASSIGN, NULL);
2387 hres = disp_propput(ctx->script, disp, id, v, ctx->ei);
2388 IDispatch_Release(disp);
2394 return stack_push(ctx, v);
2397 /* JScript extension */
2398 static HRESULT interp_assign_call(exec_ctx_t *ctx)
2400 const unsigned arg = get_op_uint(ctx, 0);
2401 DISPID propput_dispid = DISPID_PROPERTYPUT;
2410 disp = stack_topn_objid(ctx, arg+1, &id);
2412 return throw_reference_error(ctx->script, ctx->ei, JS_E_ILLEGAL_ASSIGN, NULL);
2414 jsstack_to_dp(ctx, arg+1, &dp);
2416 dp.rgdispidNamedArgs = &propput_dispid;
2417 hres = disp_call(ctx->script, disp, id, DISPATCH_PROPERTYPUT, &dp, NULL, ctx->ei);
2422 stack_popn(ctx, arg+2);
2423 return stack_push(ctx, v);
2426 static HRESULT interp_undefined(exec_ctx_t *ctx)
2432 V_VT(&v) = VT_EMPTY;
2433 return stack_push(ctx, &v);
2436 static HRESULT interp_jmp(exec_ctx_t *ctx)
2438 const unsigned arg = get_op_uint(ctx, 0);
2446 static HRESULT interp_jmp_z(exec_ctx_t *ctx)
2448 const unsigned arg = get_op_uint(ctx, 0);
2456 hres = to_boolean(v, &b);
2468 static HRESULT interp_pop(exec_ctx_t *ctx)
2476 static HRESULT interp_ret(exec_ctx_t *ctx)
2484 typedef HRESULT (*op_func_t)(exec_ctx_t*);
2486 static const op_func_t op_funcs[] = {
2487 #define X(x,a,b,c) interp_##x,
2492 static const unsigned op_move[] = {
2493 #define X(a,x,b,c) x,
2498 static HRESULT unwind_exception(exec_ctx_t *ctx)
2500 except_frame_t *except_frame;
2505 except_frame = ctx->except_frame;
2506 ctx->except_frame = except_frame->next;
2508 assert(except_frame->stack_top <= ctx->top);
2509 stack_popn(ctx, ctx->top - except_frame->stack_top);
2511 while(except_frame->scope != ctx->scope_chain)
2512 scope_pop(&ctx->scope_chain);
2514 ctx->ip = except_frame->catch_off;
2516 except_val = ctx->ei->var;
2517 memset(ctx->ei, 0, sizeof(*ctx->ei));
2519 ident = except_frame->ident;
2520 heap_free(except_frame);
2523 jsdisp_t *scope_obj;
2525 hres = create_dispex(ctx->script, NULL, NULL, &scope_obj);
2526 if(SUCCEEDED(hres)) {
2527 hres = jsdisp_propput_name(scope_obj, ident, &except_val, ctx->ei);
2529 jsdisp_release(scope_obj);
2531 VariantClear(&except_val);
2535 hres = scope_push(ctx->scope_chain, scope_obj, &ctx->scope_chain);
2536 jsdisp_release(scope_obj);
2540 hres = stack_push(ctx, &except_val);
2544 hres = stack_push_bool(ctx, FALSE);
2548 V_VT(&v) = VT_EMPTY;
2549 hres = stack_push(ctx, &v);
2555 static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code_t *func, jsexcept_t *ei, VARIANT *ret)
2557 exec_ctx_t *exec_ctx = ctx->exec_ctx;
2558 except_frame_t *prev_except_frame;
2559 function_code_t *prev_func;
2560 unsigned prev_ip, prev_top;
2561 scope_chain_t *prev_scope;
2562 bytecode_t *prev_code;
2563 jsexcept_t *prev_ei;
2565 HRESULT hres = S_OK;
2569 prev_top = exec_ctx->top;
2570 prev_scope = exec_ctx->scope_chain;
2571 prev_except_frame = exec_ctx->except_frame;
2572 prev_ip = exec_ctx->ip;
2573 prev_ei = exec_ctx->ei;
2574 prev_code = exec_ctx->code;
2575 prev_func = exec_ctx->func_code;
2576 exec_ctx->ip = func->instr_off;
2578 exec_ctx->except_frame = NULL;
2579 exec_ctx->code = code;
2580 exec_ctx->func_code = func;
2582 while(exec_ctx->ip != -1) {
2583 op = code->instrs[exec_ctx->ip].op;
2584 hres = op_funcs[op](exec_ctx);
2586 TRACE("EXCEPTION\n");
2588 if(!exec_ctx->except_frame)
2591 hres = unwind_exception(exec_ctx);
2595 exec_ctx->ip += op_move[op];
2599 exec_ctx->ip = prev_ip;
2600 exec_ctx->ei = prev_ei;
2601 exec_ctx->except_frame = prev_except_frame;
2602 exec_ctx->code = prev_code;
2603 exec_ctx->func_code = prev_func;
2606 while(exec_ctx->scope_chain != prev_scope)
2607 scope_pop(&exec_ctx->scope_chain);
2608 stack_popn(exec_ctx, exec_ctx->top-prev_top);
2612 assert(exec_ctx->top == prev_top+1 || exec_ctx->top == prev_top);
2613 assert(exec_ctx->scope_chain == prev_scope);
2615 if(exec_ctx->top == prev_top)
2616 V_VT(ret) = VT_EMPTY;
2618 *ret = *stack_pop(exec_ctx);
2622 HRESULT exec_source(exec_ctx_t *ctx, bytecode_t *code, function_code_t *func, BOOL from_eval,
2623 jsexcept_t *ei, VARIANT *retv)
2625 exec_ctx_t *prev_ctx;
2628 HRESULT hres = S_OK;
2630 for(i = 0; i < func->func_cnt; i++) {
2634 if(!func->funcs[i].name)
2637 hres = create_source_function(ctx->script, code, func->funcs+i, ctx->scope_chain, &func_obj);
2641 var_set_jsdisp(&var, func_obj);
2642 hres = jsdisp_propput_name(ctx->var_disp, func->funcs[i].name, &var, ei);
2643 jsdisp_release(func_obj);
2648 for(i=0; i < func->var_cnt; i++) {
2649 if(!ctx->is_global || !lookup_global_members(ctx->script, func->variables[i], NULL)) {
2652 hres = jsdisp_get_id(ctx->var_disp, func->variables[i], fdexNameEnsure, &id);
2658 prev_ctx = ctx->script->exec_ctx;
2659 ctx->script->exec_ctx = ctx;
2661 hres = enter_bytecode(ctx->script, code, func, ei, &val);
2662 assert(ctx->script->exec_ctx == ctx);
2663 ctx->script->exec_ctx = prev_ctx;