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
);
31 WINE_DECLARE_DEBUG_CHANNEL(jscript_except
);
33 static const WCHAR booleanW
[] = {'b','o','o','l','e','a','n',0};
34 static const WCHAR functionW
[] = {'f','u','n','c','t','i','o','n',0};
35 static const WCHAR numberW
[] = {'n','u','m','b','e','r',0};
36 static const WCHAR objectW
[] = {'o','b','j','e','c','t',0};
37 static const WCHAR stringW
[] = {'s','t','r','i','n','g',0};
38 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d',0};
39 static const WCHAR unknownW
[] = {'u','n','k','n','o','w','n',0};
41 struct _except_frame_t
{
68 static HRESULT
stack_push(script_ctx_t
*ctx
, jsval_t v
)
70 if(!ctx
->stack_size
) {
71 ctx
->stack
= heap_alloc(16*sizeof(*ctx
->stack
));
75 }else if(ctx
->stack_size
== ctx
->stack_top
) {
78 new_stack
= heap_realloc(ctx
->stack
, ctx
->stack_size
*2*sizeof(*new_stack
));
84 ctx
->stack
= new_stack
;
88 ctx
->stack
[ctx
->stack_top
++] = v
;
92 static inline HRESULT
stack_push_string(script_ctx_t
*ctx
, const WCHAR
*str
)
100 return stack_push(ctx
, jsval_string(v
));
103 static inline jsval_t
stack_top(script_ctx_t
*ctx
)
105 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
);
106 return ctx
->stack
[ctx
->stack_top
-1];
109 static inline jsval_t
*stack_top_ref(script_ctx_t
*ctx
, unsigned n
)
111 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
+n
);
112 return ctx
->stack
+ctx
->stack_top
-1-n
;
115 static inline jsval_t
stack_topn(script_ctx_t
*ctx
, unsigned n
)
117 return *stack_top_ref(ctx
, n
);
120 static inline jsval_t
*stack_args(script_ctx_t
*ctx
, unsigned n
)
124 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
+n
-1);
125 return ctx
->stack
+ ctx
->stack_top
-n
;
128 static inline jsval_t
stack_pop(script_ctx_t
*ctx
)
130 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
);
131 return ctx
->stack
[--ctx
->stack_top
];
134 static void stack_popn(script_ctx_t
*ctx
, unsigned n
)
137 jsval_release(stack_pop(ctx
));
140 static HRESULT
stack_pop_number(script_ctx_t
*ctx
, double *r
)
146 hres
= to_number(ctx
, v
, r
);
151 static HRESULT
stack_pop_object(script_ctx_t
*ctx
, IDispatch
**r
)
157 if(is_object_instance(v
)) {
159 return throw_type_error(ctx
, JS_E_OBJECT_REQUIRED
, NULL
);
164 hres
= to_object(ctx
, v
, r
);
169 static inline HRESULT
stack_pop_int(script_ctx_t
*ctx
, INT
*r
)
171 return to_int32(ctx
, stack_pop(ctx
), r
);
174 static inline HRESULT
stack_pop_uint(script_ctx_t
*ctx
, DWORD
*r
)
176 return to_uint32(ctx
, stack_pop(ctx
), r
);
179 static inline unsigned local_off(call_frame_t
*frame
, int ref
)
182 ? frame
->arguments_off
- ref
-1
183 : frame
->variables_off
+ ref
;
186 static inline BSTR
local_name(call_frame_t
*frame
, int ref
)
188 return ref
< 0 ? frame
->function
->params
[-ref
-1] : frame
->function
->variables
[ref
].name
;
191 /* Steals input reference even on failure. */
192 static HRESULT
stack_push_exprval(script_ctx_t
*ctx
, exprval_t
*val
)
200 hres
= stack_push(ctx
, jsval_disp(val
->u
.idref
.disp
));
202 hres
= stack_push(ctx
, jsval_number(val
->u
.idref
.id
));
204 IDispatch_Release(val
->u
.idref
.disp
);
206 case EXPRVAL_STACK_REF
:
207 hres
= stack_push(ctx
, jsval_number(val
->u
.off
));
209 hres
= stack_push(ctx
, jsval_undefined());
211 case EXPRVAL_INVALID
:
212 hres
= stack_push(ctx
, jsval_undefined());
214 hres
= stack_push(ctx
, jsval_number(val
->u
.hres
));
222 static BOOL
stack_topn_exprval(script_ctx_t
*ctx
, unsigned n
, exprval_t
*r
)
224 jsval_t v
= stack_topn(ctx
, n
+1);
226 switch(jsval_type(v
)) {
228 call_frame_t
*frame
= ctx
->call_ctx
;
229 unsigned off
= get_number(v
);
231 if(!frame
->base_scope
->frame
&& off
>= frame
->arguments_off
) {
236 /* Got stack reference in deoptimized code. Need to convert it back to variable object reference. */
238 assert(off
< frame
->variables_off
+ frame
->function
->var_cnt
);
239 name
= off
>= frame
->variables_off
240 ? frame
->function
->variables
[off
- frame
->variables_off
].name
241 : frame
->function
->params
[off
- frame
->arguments_off
];
242 hres
= jsdisp_get_id(ctx
->call_ctx
->base_scope
->jsobj
, name
, 0, &id
);
244 r
->type
= EXPRVAL_INVALID
;
249 *stack_top_ref(ctx
, n
+1) = jsval_obj(jsdisp_addref(frame
->base_scope
->jsobj
));
250 *stack_top_ref(ctx
, n
) = jsval_number(id
);
251 r
->type
= EXPRVAL_IDREF
;
252 r
->u
.idref
.disp
= frame
->base_scope
->obj
;
257 r
->type
= EXPRVAL_STACK_REF
;
262 r
->type
= EXPRVAL_IDREF
;
263 r
->u
.idref
.disp
= get_object(v
);
264 assert(is_number(stack_topn(ctx
, n
)));
265 r
->u
.idref
.id
= get_number(stack_topn(ctx
, n
));
268 r
->type
= EXPRVAL_INVALID
;
269 assert(is_number(stack_topn(ctx
, n
)));
270 r
->u
.hres
= get_number(stack_topn(ctx
, n
));
278 static inline BOOL
stack_pop_exprval(script_ctx_t
*ctx
, exprval_t
*r
)
280 BOOL ret
= stack_topn_exprval(ctx
, 0, r
);
285 static HRESULT
exprval_propput(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t v
)
288 case EXPRVAL_STACK_REF
: {
289 jsval_t
*r
= ctx
->stack
+ ref
->u
.off
;
291 return jsval_copy(v
, r
);
294 return disp_propput(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, v
);
301 static HRESULT
exprval_propget(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t
*r
)
304 case EXPRVAL_STACK_REF
:
305 return jsval_copy(ctx
->stack
[ref
->u
.off
], r
);
307 return disp_propget(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, r
);
314 static HRESULT
exprval_call(script_ctx_t
*ctx
, exprval_t
*ref
, WORD flags
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
317 case EXPRVAL_STACK_REF
: {
318 jsval_t v
= ctx
->stack
[ref
->u
.off
];
320 if(!is_object_instance(v
)) {
321 FIXME("invoke %s\n", debugstr_jsval(v
));
325 return disp_call_value(ctx
, get_object(v
), NULL
, flags
, argc
, argv
, r
);
328 return disp_call(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, flags
, argc
, argv
, r
);
335 /* ECMA-262 3rd Edition 8.7.1 */
336 /* Steals input reference. */
337 static HRESULT
exprval_to_value(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t
*r
)
341 if(ref
->type
== EXPRVAL_JSVAL
) {
346 hres
= exprval_propget(ctx
, ref
, r
);
348 if(ref
->type
== EXPRVAL_IDREF
)
349 IDispatch_Release(ref
->u
.idref
.disp
);
353 static void exprval_release(exprval_t
*val
)
357 jsval_release(val
->u
.val
);
360 if(val
->u
.idref
.disp
)
361 IDispatch_Release(val
->u
.idref
.disp
);
363 case EXPRVAL_STACK_REF
:
364 case EXPRVAL_INVALID
:
369 static inline void exprval_set_exception(exprval_t
*val
, HRESULT hres
)
371 val
->type
= EXPRVAL_INVALID
;
375 static inline void exprval_set_disp_ref(exprval_t
*ref
, IDispatch
*obj
, DISPID id
)
377 ref
->type
= EXPRVAL_IDREF
;
378 IDispatch_AddRef(ref
->u
.idref
.disp
= obj
);
379 ref
->u
.idref
.id
= id
;
382 static inline jsval_t
steal_ret(call_frame_t
*frame
)
384 jsval_t r
= frame
->ret
;
385 frame
->ret
= jsval_undefined();
389 static inline void clear_ret(call_frame_t
*frame
)
391 jsval_release(steal_ret(frame
));
394 static HRESULT
scope_push(scope_chain_t
*scope
, jsdisp_t
*jsobj
, IDispatch
*obj
, scope_chain_t
**ret
)
396 scope_chain_t
*new_scope
;
398 new_scope
= heap_alloc(sizeof(scope_chain_t
));
400 return E_OUTOFMEMORY
;
404 IDispatch_AddRef(obj
);
405 new_scope
->jsobj
= jsobj
;
406 new_scope
->obj
= obj
;
407 new_scope
->frame
= NULL
;
408 new_scope
->next
= scope
? scope_addref(scope
) : NULL
;
414 static void scope_pop(scope_chain_t
**scope
)
423 void clear_ei(script_ctx_t
*ctx
)
425 memset(&ctx
->ei
.ei
, 0, sizeof(ctx
->ei
.ei
));
426 jsval_release(ctx
->ei
.val
);
427 ctx
->ei
.val
= jsval_undefined();
430 void scope_release(scope_chain_t
*scope
)
436 scope_release(scope
->next
);
438 IDispatch_Release(scope
->obj
);
442 static HRESULT
disp_get_id(script_ctx_t
*ctx
, IDispatch
*disp
, const WCHAR
*name
, BSTR name_bstr
, DWORD flags
, DISPID
*id
)
449 jsdisp
= iface_to_jsdisp(disp
);
451 hres
= jsdisp_get_id(jsdisp
, name
, flags
, id
);
452 jsdisp_release(jsdisp
);
459 bstr
= SysAllocString(name
);
461 return E_OUTOFMEMORY
;
465 hres
= IDispatch_QueryInterface(disp
, &IID_IDispatchEx
, (void**)&dispex
);
466 if(SUCCEEDED(hres
)) {
467 hres
= IDispatchEx_GetDispID(dispex
, bstr
, make_grfdex(ctx
, flags
|fdexNameCaseSensitive
), id
);
468 IDispatchEx_Release(dispex
);
470 TRACE("using IDispatch\n");
471 hres
= IDispatch_GetIDsOfNames(disp
, &IID_NULL
, &bstr
, 1, 0, id
);
474 if(name_bstr
!= bstr
)
479 static HRESULT
disp_cmp(IDispatch
*disp1
, IDispatch
*disp2
, BOOL
*ret
)
481 IObjectIdentity
*identity
;
482 IUnknown
*unk1
, *unk2
;
490 if(!disp1
|| !disp2
) {
495 hres
= IDispatch_QueryInterface(disp1
, &IID_IUnknown
, (void**)&unk1
);
499 hres
= IDispatch_QueryInterface(disp2
, &IID_IUnknown
, (void**)&unk2
);
501 IUnknown_Release(unk1
);
508 hres
= IUnknown_QueryInterface(unk1
, &IID_IObjectIdentity
, (void**)&identity
);
509 if(SUCCEEDED(hres
)) {
510 hres
= IObjectIdentity_IsEqualObject(identity
, unk2
);
511 IObjectIdentity_Release(identity
);
518 IUnknown_Release(unk1
);
519 IUnknown_Release(unk2
);
523 /* ECMA-262 3rd Edition 11.9.6 */
524 static HRESULT
equal2_values(jsval_t lval
, jsval_t rval
, BOOL
*ret
)
526 jsval_type_t type
= jsval_type(lval
);
530 if(type
!= jsval_type(rval
)) {
531 if(is_null_instance(lval
))
532 *ret
= is_null_instance(rval
);
544 return disp_cmp(get_object(lval
), get_object(rval
), ret
);
546 *ret
= jsstr_eq(get_string(lval
), get_string(rval
));
549 *ret
= get_number(lval
) == get_number(rval
);
552 *ret
= !get_bool(lval
) == !get_bool(rval
);
555 FIXME("VARIANT not implemented\n");
563 * Transfers local variables from stack to variable object.
564 * It's slow, so we want to avoid it as much as possible.
566 static HRESULT
detach_variable_object(script_ctx_t
*ctx
, call_frame_t
*frame
, BOOL from_release
)
571 if(!frame
->base_scope
|| !frame
->base_scope
->frame
)
574 TRACE("detaching %p\n", frame
);
576 assert(frame
== frame
->base_scope
->frame
);
577 assert(frame
->variable_obj
== frame
->base_scope
->jsobj
);
579 if(!from_release
&& !frame
->arguments_obj
) {
580 hres
= setup_arguments_object(ctx
, frame
);
585 frame
->base_scope
->frame
= NULL
;
587 for(i
= 0; i
< frame
->function
->locals_cnt
; i
++) {
588 hres
= jsdisp_propput_name(frame
->variable_obj
, frame
->function
->locals
[i
].name
,
589 ctx
->stack
[local_off(frame
, frame
->function
->locals
[i
].ref
)]);
597 static BOOL
lookup_global_members(script_ctx_t
*ctx
, BSTR identifier
, exprval_t
*ret
)
603 for(item
= ctx
->named_items
; item
; item
= item
->next
) {
604 if(item
->flags
& SCRIPTITEM_GLOBALMEMBERS
) {
605 hres
= disp_get_id(ctx
, item
->disp
, identifier
, identifier
, 0, &id
);
606 if(SUCCEEDED(hres
)) {
608 exprval_set_disp_ref(ret
, item
->disp
, id
);
617 static int local_ref_cmp(const void *key
, const void *ref
)
619 return strcmpW((const WCHAR
*)key
, ((const local_ref_t
*)ref
)->name
);
622 local_ref_t
*lookup_local(const function_code_t
*function
, const WCHAR
*identifier
)
624 return bsearch(identifier
, function
->locals
, function
->locals_cnt
, sizeof(*function
->locals
), local_ref_cmp
);
627 /* ECMA-262 3rd Edition 10.1.4 */
628 static HRESULT
identifier_eval(script_ctx_t
*ctx
, BSTR identifier
, exprval_t
*ret
)
630 scope_chain_t
*scope
;
635 TRACE("%s\n", debugstr_w(identifier
));
638 for(scope
= ctx
->call_ctx
->scope
; scope
; scope
= scope
->next
) {
640 function_code_t
*func
= scope
->frame
->function
;
641 local_ref_t
*ref
= lookup_local(func
, identifier
);
642 static const WCHAR argumentsW
[] = {'a','r','g','u','m','e','n','t','s',0};
645 ret
->type
= EXPRVAL_STACK_REF
;
646 ret
->u
.off
= local_off(scope
->frame
, ref
->ref
);
647 TRACE("returning ref %d for %d\n", ret
->u
.off
, ref
->ref
);
651 if(!strcmpW(identifier
, argumentsW
)) {
652 hres
= detach_variable_object(ctx
, scope
->frame
, FALSE
);
658 hres
= jsdisp_get_id(scope
->jsobj
, identifier
, fdexNameImplicit
, &id
);
660 hres
= disp_get_id(ctx
, scope
->obj
, identifier
, identifier
, fdexNameImplicit
, &id
);
661 if(SUCCEEDED(hres
)) {
662 exprval_set_disp_ref(ret
, scope
->obj
, id
);
668 hres
= jsdisp_get_id(ctx
->global
, identifier
, 0, &id
);
669 if(SUCCEEDED(hres
)) {
670 exprval_set_disp_ref(ret
, to_disp(ctx
->global
), id
);
674 for(item
= ctx
->named_items
; item
; item
= item
->next
) {
675 if((item
->flags
& SCRIPTITEM_ISVISIBLE
) && !strcmpW(item
->name
, identifier
)) {
682 hres
= IActiveScriptSite_GetItemInfo(ctx
->site
, identifier
,
683 SCRIPTINFO_IUNKNOWN
, &unk
, NULL
);
685 WARN("GetItemInfo failed: %08x\n", hres
);
689 hres
= IUnknown_QueryInterface(unk
, &IID_IDispatch
, (void**)&item
->disp
);
690 IUnknown_Release(unk
);
692 WARN("object does not implement IDispatch\n");
697 IDispatch_AddRef(item
->disp
);
698 ret
->type
= EXPRVAL_JSVAL
;
699 ret
->u
.val
= jsval_disp(item
->disp
);
704 if(lookup_global_members(ctx
, identifier
, ret
))
707 exprval_set_exception(ret
, JS_E_UNDEFINED_VARIABLE
);
711 static inline BSTR
get_op_bstr(script_ctx_t
*ctx
, int i
)
713 call_frame_t
*frame
= ctx
->call_ctx
;
714 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].bstr
;
717 static inline unsigned get_op_uint(script_ctx_t
*ctx
, int i
)
719 call_frame_t
*frame
= ctx
->call_ctx
;
720 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].uint
;
723 static inline unsigned get_op_int(script_ctx_t
*ctx
, int i
)
725 call_frame_t
*frame
= ctx
->call_ctx
;
726 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].lng
;
729 static inline jsstr_t
*get_op_str(script_ctx_t
*ctx
, int i
)
731 call_frame_t
*frame
= ctx
->call_ctx
;
732 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].str
;
735 static inline double get_op_double(script_ctx_t
*ctx
)
737 call_frame_t
*frame
= ctx
->call_ctx
;
738 return frame
->bytecode
->instrs
[frame
->ip
].u
.dbl
;
741 static inline void jmp_next(script_ctx_t
*ctx
)
746 static inline void jmp_abs(script_ctx_t
*ctx
, unsigned dst
)
748 ctx
->call_ctx
->ip
= dst
;
751 /* ECMA-262 3rd Edition 12.6.4 */
752 static HRESULT
interp_forin(script_ctx_t
*ctx
)
754 const HRESULT arg
= get_op_uint(ctx
, 0);
755 IDispatch
*obj
= NULL
;
764 assert(is_number(stack_top(ctx
)));
765 id
= get_number(stack_top(ctx
));
767 if(!stack_topn_exprval(ctx
, 1, &prop_ref
)) {
768 FIXME("invalid ref: %08x\n", prop_ref
.u
.hres
);
772 if(is_object_instance(stack_topn(ctx
, 3)))
773 obj
= get_object(stack_topn(ctx
, 3));
776 hres
= IDispatch_QueryInterface(obj
, &IID_IDispatchEx
, (void**)&dispex
);
777 if(SUCCEEDED(hres
)) {
778 hres
= IDispatchEx_GetNextDispID(dispex
, fdexEnumDefault
, id
, &id
);
780 hres
= IDispatchEx_GetMemberName(dispex
, id
, &name
);
781 IDispatchEx_Release(dispex
);
785 TRACE("No IDispatchEx\n");
792 str
= jsstr_alloc_len(name
, SysStringLen(name
));
795 return E_OUTOFMEMORY
;
798 stack_push(ctx
, jsval_number(id
)); /* safe, just after pop() */
800 hres
= exprval_propput(ctx
, &prop_ref
, jsval_string(str
));
813 /* ECMA-262 3rd Edition 12.10 */
814 static HRESULT
interp_push_scope(script_ctx_t
*ctx
)
823 hres
= to_object(ctx
, v
, &disp
);
828 hres
= scope_push(ctx
->call_ctx
->scope
, to_jsdisp(disp
), disp
, &ctx
->call_ctx
->scope
);
829 IDispatch_Release(disp
);
833 /* ECMA-262 3rd Edition 12.10 */
834 static HRESULT
interp_pop_scope(script_ctx_t
*ctx
)
838 scope_pop(&ctx
->call_ctx
->scope
);
842 /* ECMA-262 3rd Edition 12.13 */
843 static HRESULT
interp_case(script_ctx_t
*ctx
)
845 const unsigned arg
= get_op_uint(ctx
, 0);
853 hres
= equal2_values(stack_top(ctx
), v
, &b
);
867 /* ECMA-262 3rd Edition 12.13 */
868 static HRESULT
interp_throw(script_ctx_t
*ctx
)
872 jsval_release(ctx
->ei
.val
);
873 ctx
->ei
.val
= stack_pop(ctx
);
874 return DISP_E_EXCEPTION
;
877 static HRESULT
interp_throw_ref(script_ctx_t
*ctx
)
879 const HRESULT arg
= get_op_uint(ctx
, 0);
881 TRACE("%08x\n", arg
);
883 return throw_reference_error(ctx
, arg
, NULL
);
886 static HRESULT
interp_throw_type(script_ctx_t
*ctx
)
888 const HRESULT hres
= get_op_uint(ctx
, 0);
889 jsstr_t
*str
= get_op_str(ctx
, 1);
892 TRACE("%08x %s\n", hres
, debugstr_jsstr(str
));
894 ptr
= jsstr_flatten(str
);
895 return ptr
? throw_type_error(ctx
, hres
, ptr
) : E_OUTOFMEMORY
;
898 /* ECMA-262 3rd Edition 12.14 */
899 static HRESULT
interp_push_except(script_ctx_t
*ctx
)
901 const unsigned catch_off
= get_op_uint(ctx
, 0);
902 const unsigned finally_off
= get_op_uint(ctx
, 1);
903 call_frame_t
*frame
= ctx
->call_ctx
;
904 except_frame_t
*except
;
908 except
= heap_alloc(sizeof(*except
));
910 return E_OUTOFMEMORY
;
912 except
->stack_top
= ctx
->stack_top
;
913 except
->scope
= frame
->scope
;
914 except
->catch_off
= catch_off
;
915 except
->finally_off
= finally_off
;
916 except
->next
= frame
->except_frame
;
917 frame
->except_frame
= except
;
921 /* ECMA-262 3rd Edition 12.14 */
922 static HRESULT
interp_pop_except(script_ctx_t
*ctx
)
924 const unsigned ret_off
= get_op_uint(ctx
, 0);
925 call_frame_t
*frame
= ctx
->call_ctx
;
926 except_frame_t
*except
;
927 unsigned finally_off
;
929 TRACE("%u\n", ret_off
);
931 except
= frame
->except_frame
;
932 assert(except
!= NULL
);
934 finally_off
= except
->finally_off
;
935 frame
->except_frame
= except
->next
;
941 hres
= stack_push(ctx
, jsval_number(ret_off
));
944 hres
= stack_push(ctx
, jsval_bool(TRUE
));
947 frame
->ip
= finally_off
;
955 /* ECMA-262 3rd Edition 12.14 */
956 static HRESULT
interp_end_finally(script_ctx_t
*ctx
)
958 call_frame_t
*frame
= ctx
->call_ctx
;
967 TRACE("passing exception\n");
969 ctx
->ei
.val
= stack_pop(ctx
);
970 return DISP_E_EXCEPTION
;
974 assert(is_number(v
));
975 frame
->ip
= get_number(v
);
979 static HRESULT
interp_enter_catch(script_ctx_t
*ctx
)
981 const BSTR ident
= get_op_bstr(ctx
, 0);
986 hres
= create_dispex(ctx
, NULL
, NULL
, &scope_obj
);
991 hres
= jsdisp_propput_name(scope_obj
, ident
, v
);
994 hres
= scope_push(ctx
->call_ctx
->scope
, scope_obj
, to_disp(scope_obj
), &ctx
->call_ctx
->scope
);
995 jsdisp_release(scope_obj
);
999 /* ECMA-262 3rd Edition 13 */
1000 static HRESULT
interp_func(script_ctx_t
*ctx
)
1002 unsigned func_idx
= get_op_uint(ctx
, 0);
1003 call_frame_t
*frame
= ctx
->call_ctx
;
1007 TRACE("%d\n", func_idx
);
1009 hres
= create_source_function(ctx
, frame
->bytecode
, frame
->function
->funcs
+func_idx
,
1010 frame
->scope
, &dispex
);
1014 return stack_push(ctx
, jsval_obj(dispex
));
1017 /* ECMA-262 3rd Edition 11.2.1 */
1018 static HRESULT
interp_array(script_ctx_t
*ctx
)
1029 namev
= stack_pop(ctx
);
1031 hres
= stack_pop_object(ctx
, &obj
);
1033 jsval_release(namev
);
1037 hres
= to_flat_string(ctx
, namev
, &name_str
, &name
);
1038 jsval_release(namev
);
1040 IDispatch_Release(obj
);
1044 hres
= disp_get_id(ctx
, obj
, name
, NULL
, 0, &id
);
1045 jsstr_release(name_str
);
1046 if(SUCCEEDED(hres
)) {
1047 hres
= disp_propget(ctx
, obj
, id
, &v
);
1048 }else if(hres
== DISP_E_UNKNOWNNAME
) {
1049 v
= jsval_undefined();
1052 IDispatch_Release(obj
);
1056 return stack_push(ctx
, v
);
1059 /* ECMA-262 3rd Edition 11.2.1 */
1060 static HRESULT
interp_member(script_ctx_t
*ctx
)
1062 const BSTR arg
= get_op_bstr(ctx
, 0);
1070 hres
= stack_pop_object(ctx
, &obj
);
1074 hres
= disp_get_id(ctx
, obj
, arg
, arg
, 0, &id
);
1075 if(SUCCEEDED(hres
)) {
1076 hres
= disp_propget(ctx
, obj
, id
, &v
);
1077 }else if(hres
== DISP_E_UNKNOWNNAME
) {
1078 v
= jsval_undefined();
1081 IDispatch_Release(obj
);
1085 return stack_push(ctx
, v
);
1088 /* ECMA-262 3rd Edition 11.2.1 */
1089 static HRESULT
interp_memberid(script_ctx_t
*ctx
)
1091 const unsigned arg
= get_op_uint(ctx
, 0);
1092 jsval_t objv
, namev
;
1102 namev
= stack_pop(ctx
);
1103 objv
= stack_pop(ctx
);
1105 hres
= to_object(ctx
, objv
, &obj
);
1106 jsval_release(objv
);
1107 if(SUCCEEDED(hres
)) {
1108 hres
= to_flat_string(ctx
, namev
, &name_str
, &name
);
1110 IDispatch_Release(obj
);
1112 jsval_release(namev
);
1116 hres
= disp_get_id(ctx
, obj
, name
, NULL
, arg
, &id
);
1117 jsstr_release(name_str
);
1118 if(SUCCEEDED(hres
)) {
1119 ref
.type
= EXPRVAL_IDREF
;
1120 ref
.u
.idref
.disp
= obj
;
1121 ref
.u
.idref
.id
= id
;
1123 IDispatch_Release(obj
);
1124 if(hres
== DISP_E_UNKNOWNNAME
&& !(arg
& fdexNameEnsure
)) {
1125 exprval_set_exception(&ref
, JS_E_INVALID_PROPERTY
);
1128 ERR("failed %08x\n", hres
);
1133 return stack_push_exprval(ctx
, &ref
);
1136 /* ECMA-262 3rd Edition 11.2.1 */
1137 static HRESULT
interp_refval(script_ctx_t
*ctx
)
1145 if(!stack_topn_exprval(ctx
, 0, &ref
))
1146 return throw_reference_error(ctx
, JS_E_ILLEGAL_ASSIGN
, NULL
);
1148 hres
= exprval_propget(ctx
, &ref
, &v
);
1152 return stack_push(ctx
, v
);
1155 /* ECMA-262 3rd Edition 11.2.2 */
1156 static HRESULT
interp_new(script_ctx_t
*ctx
)
1158 const unsigned argc
= get_op_uint(ctx
, 0);
1159 call_frame_t
*frame
= ctx
->call_ctx
;
1162 TRACE("%d\n", argc
);
1164 constr
= stack_topn(ctx
, argc
);
1166 /* NOTE: Should use to_object here */
1169 return throw_type_error(ctx
, JS_E_OBJECT_EXPECTED
, NULL
);
1170 else if(!is_object_instance(constr
))
1171 return throw_type_error(ctx
, JS_E_INVALID_ACTION
, NULL
);
1172 else if(!get_object(constr
))
1173 return throw_type_error(ctx
, JS_E_INVALID_PROPERTY
, NULL
);
1176 return disp_call_value(ctx
, get_object(constr
), NULL
, DISPATCH_CONSTRUCT
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1177 argc
, stack_args(ctx
, argc
), &frame
->ret
);
1180 /* ECMA-262 3rd Edition 11.2.3 */
1181 static HRESULT
interp_call(script_ctx_t
*ctx
)
1183 const unsigned argn
= get_op_uint(ctx
, 0);
1184 const int do_ret
= get_op_int(ctx
, 1);
1185 call_frame_t
*frame
= ctx
->call_ctx
;
1188 TRACE("%d %d\n", argn
, do_ret
);
1190 obj
= stack_topn(ctx
, argn
);
1191 if(!is_object_instance(obj
))
1192 return throw_type_error(ctx
, JS_E_INVALID_PROPERTY
, NULL
);
1195 return disp_call_value(ctx
, get_object(obj
), NULL
, DISPATCH_METHOD
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1196 argn
, stack_args(ctx
, argn
), do_ret
? &frame
->ret
: NULL
);
1199 /* ECMA-262 3rd Edition 11.2.3 */
1200 static HRESULT
interp_call_member(script_ctx_t
*ctx
)
1202 const unsigned argn
= get_op_uint(ctx
, 0);
1203 const int do_ret
= get_op_int(ctx
, 1);
1204 call_frame_t
*frame
= ctx
->call_ctx
;
1207 TRACE("%d %d\n", argn
, do_ret
);
1209 if(!stack_topn_exprval(ctx
, argn
, &ref
))
1210 return throw_type_error(ctx
, ref
.u
.hres
, NULL
);
1213 return exprval_call(ctx
, &ref
, DISPATCH_METHOD
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1214 argn
, stack_args(ctx
, argn
), do_ret
? &frame
->ret
: NULL
);
1217 /* ECMA-262 3rd Edition 11.1.1 */
1218 static HRESULT
interp_this(script_ctx_t
*ctx
)
1220 call_frame_t
*frame
= ctx
->call_ctx
;
1224 IDispatch_AddRef(frame
->this_obj
);
1225 return stack_push(ctx
, jsval_disp(frame
->this_obj
));
1228 static HRESULT
interp_identifier_ref(script_ctx_t
*ctx
, BSTR identifier
, unsigned flags
)
1233 hres
= identifier_eval(ctx
, identifier
, &exprval
);
1237 if(exprval
.type
== EXPRVAL_INVALID
&& (flags
& fdexNameEnsure
)) {
1240 hres
= jsdisp_get_id(ctx
->global
, identifier
, fdexNameEnsure
, &id
);
1244 exprval_set_disp_ref(&exprval
, to_disp(ctx
->global
), id
);
1247 if(exprval
.type
== EXPRVAL_JSVAL
|| exprval
.type
== EXPRVAL_INVALID
) {
1248 WARN("invalid ref\n");
1249 exprval_release(&exprval
);
1250 exprval_set_exception(&exprval
, JS_E_OBJECT_EXPECTED
);
1253 return stack_push_exprval(ctx
, &exprval
);
1256 static HRESULT
identifier_value(script_ctx_t
*ctx
, BSTR identifier
)
1262 hres
= identifier_eval(ctx
, identifier
, &exprval
);
1266 if(exprval
.type
== EXPRVAL_INVALID
)
1267 return throw_type_error(ctx
, exprval
.u
.hres
, identifier
);
1269 hres
= exprval_to_value(ctx
, &exprval
, &v
);
1273 return stack_push(ctx
, v
);
1276 static HRESULT
interp_local_ref(script_ctx_t
*ctx
)
1278 const int arg
= get_op_int(ctx
, 0);
1279 const unsigned flags
= get_op_uint(ctx
, 1);
1280 call_frame_t
*frame
= ctx
->call_ctx
;
1285 if(!frame
->base_scope
|| !frame
->base_scope
->frame
)
1286 return interp_identifier_ref(ctx
, local_name(frame
, arg
), flags
);
1288 ref
.type
= EXPRVAL_STACK_REF
;
1289 ref
.u
.off
= local_off(frame
, arg
);
1290 return stack_push_exprval(ctx
, &ref
);
1293 static HRESULT
interp_local(script_ctx_t
*ctx
)
1295 const int arg
= get_op_int(ctx
, 0);
1296 call_frame_t
*frame
= ctx
->call_ctx
;
1302 if(!frame
->base_scope
|| !frame
->base_scope
->frame
)
1303 return identifier_value(ctx
, local_name(frame
, arg
));
1305 hres
= jsval_copy(ctx
->stack
[local_off(frame
, arg
)], ©
);
1309 return stack_push(ctx
, copy
);
1312 /* ECMA-262 3rd Edition 10.1.4 */
1313 static HRESULT
interp_ident(script_ctx_t
*ctx
)
1315 const BSTR arg
= get_op_bstr(ctx
, 0);
1317 TRACE("%s\n", debugstr_w(arg
));
1319 return identifier_value(ctx
, arg
);
1322 /* ECMA-262 3rd Edition 10.1.4 */
1323 static HRESULT
interp_identid(script_ctx_t
*ctx
)
1325 const BSTR arg
= get_op_bstr(ctx
, 0);
1326 const unsigned flags
= get_op_uint(ctx
, 1);
1328 TRACE("%s %x\n", debugstr_w(arg
), flags
);
1330 return interp_identifier_ref(ctx
, arg
, flags
);
1333 /* ECMA-262 3rd Edition 7.8.1 */
1334 static HRESULT
interp_null(script_ctx_t
*ctx
)
1338 return stack_push(ctx
, jsval_null());
1341 /* ECMA-262 3rd Edition 7.8.2 */
1342 static HRESULT
interp_bool(script_ctx_t
*ctx
)
1344 const int arg
= get_op_int(ctx
, 0);
1346 TRACE("%s\n", arg
? "true" : "false");
1348 return stack_push(ctx
, jsval_bool(arg
));
1351 /* ECMA-262 3rd Edition 7.8.3 */
1352 static HRESULT
interp_int(script_ctx_t
*ctx
)
1354 const int arg
= get_op_int(ctx
, 0);
1358 return stack_push(ctx
, jsval_number(arg
));
1361 /* ECMA-262 3rd Edition 7.8.3 */
1362 static HRESULT
interp_double(script_ctx_t
*ctx
)
1364 const double arg
= get_op_double(ctx
);
1366 TRACE("%lf\n", arg
);
1368 return stack_push(ctx
, jsval_number(arg
));
1371 /* ECMA-262 3rd Edition 7.8.4 */
1372 static HRESULT
interp_str(script_ctx_t
*ctx
)
1374 jsstr_t
*str
= get_op_str(ctx
, 0);
1376 TRACE("%s\n", debugstr_jsstr(str
));
1378 return stack_push(ctx
, jsval_string(jsstr_addref(str
)));
1381 /* ECMA-262 3rd Edition 7.8 */
1382 static HRESULT
interp_regexp(script_ctx_t
*ctx
)
1384 jsstr_t
*source
= get_op_str(ctx
, 0);
1385 const unsigned flags
= get_op_uint(ctx
, 1);
1389 TRACE("%s %x\n", debugstr_jsstr(source
), flags
);
1391 hres
= create_regexp(ctx
, source
, flags
, ®exp
);
1395 return stack_push(ctx
, jsval_obj(regexp
));
1398 /* ECMA-262 3rd Edition 11.1.4 */
1399 static HRESULT
interp_carray(script_ctx_t
*ctx
)
1401 const unsigned arg
= get_op_uint(ctx
, 0);
1409 hres
= create_array(ctx
, arg
, &array
);
1415 val
= stack_pop(ctx
);
1416 hres
= jsdisp_propput_idx(array
, i
, val
);
1419 jsdisp_release(array
);
1424 return stack_push(ctx
, jsval_obj(array
));
1427 /* ECMA-262 3rd Edition 11.1.5 */
1428 static HRESULT
interp_new_obj(script_ctx_t
*ctx
)
1435 hres
= create_object(ctx
, NULL
, &obj
);
1439 return stack_push(ctx
, jsval_obj(obj
));
1442 /* ECMA-262 3rd Edition 11.1.5 */
1443 static HRESULT
interp_obj_prop(script_ctx_t
*ctx
)
1445 const BSTR name
= get_op_bstr(ctx
, 0);
1450 TRACE("%s\n", debugstr_w(name
));
1452 val
= stack_pop(ctx
);
1454 assert(is_object_instance(stack_top(ctx
)));
1455 obj
= as_jsdisp(get_object(stack_top(ctx
)));
1457 hres
= jsdisp_propput_name(obj
, name
, val
);
1462 /* ECMA-262 3rd Edition 11.11 */
1463 static HRESULT
interp_cnd_nz(script_ctx_t
*ctx
)
1465 const unsigned arg
= get_op_uint(ctx
, 0);
1471 hres
= to_boolean(stack_top(ctx
), &b
);
1484 /* ECMA-262 3rd Edition 11.11 */
1485 static HRESULT
interp_cnd_z(script_ctx_t
*ctx
)
1487 const unsigned arg
= get_op_uint(ctx
, 0);
1493 hres
= to_boolean(stack_top(ctx
), &b
);
1506 /* ECMA-262 3rd Edition 11.10 */
1507 static HRESULT
interp_or(script_ctx_t
*ctx
)
1514 hres
= stack_pop_int(ctx
, &r
);
1518 hres
= stack_pop_int(ctx
, &l
);
1522 return stack_push(ctx
, jsval_number(l
|r
));
1525 /* ECMA-262 3rd Edition 11.10 */
1526 static HRESULT
interp_xor(script_ctx_t
*ctx
)
1533 hres
= stack_pop_int(ctx
, &r
);
1537 hres
= stack_pop_int(ctx
, &l
);
1541 return stack_push(ctx
, jsval_number(l
^r
));
1544 /* ECMA-262 3rd Edition 11.10 */
1545 static HRESULT
interp_and(script_ctx_t
*ctx
)
1552 hres
= stack_pop_int(ctx
, &r
);
1556 hres
= stack_pop_int(ctx
, &l
);
1560 return stack_push(ctx
, jsval_number(l
&r
));
1563 /* ECMA-262 3rd Edition 11.8.6 */
1564 static HRESULT
interp_instanceof(script_ctx_t
*ctx
)
1566 jsdisp_t
*obj
, *iter
, *tmp
= NULL
;
1571 static const WCHAR prototypeW
[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
1574 if(!is_object_instance(v
) || !get_object(v
)) {
1576 return throw_type_error(ctx
, JS_E_FUNCTION_EXPECTED
, NULL
);
1579 obj
= iface_to_jsdisp(get_object(v
));
1580 IDispatch_Release(get_object(v
));
1582 FIXME("non-jsdisp objects not supported\n");
1586 if(is_class(obj
, JSCLASS_FUNCTION
)) {
1587 hres
= jsdisp_propget_name(obj
, prototypeW
, &prot
);
1589 hres
= throw_type_error(ctx
, JS_E_FUNCTION_EXPECTED
, NULL
);
1591 jsdisp_release(obj
);
1597 if(is_object_instance(prot
)) {
1598 if(is_object_instance(v
))
1599 tmp
= iface_to_jsdisp(get_object(v
));
1600 for(iter
= tmp
; !ret
&& iter
; iter
= iter
->prototype
) {
1601 hres
= disp_cmp(get_object(prot
), to_disp(iter
), &ret
);
1607 jsdisp_release(tmp
);
1609 FIXME("prototype is not an object\n");
1613 jsval_release(prot
);
1618 return stack_push(ctx
, jsval_bool(ret
));
1621 /* ECMA-262 3rd Edition 11.8.7 */
1622 static HRESULT
interp_in(script_ctx_t
*ctx
)
1633 obj
= stack_pop(ctx
);
1634 if(!is_object_instance(obj
) || !get_object(obj
)) {
1636 return throw_type_error(ctx
, JS_E_OBJECT_EXPECTED
, NULL
);
1640 hres
= to_flat_string(ctx
, v
, &jsstr
, &str
);
1643 IDispatch_Release(get_object(obj
));
1647 hres
= disp_get_id(ctx
, get_object(obj
), str
, NULL
, 0, &id
);
1648 IDispatch_Release(get_object(obj
));
1649 jsstr_release(jsstr
);
1652 else if(hres
== DISP_E_UNKNOWNNAME
)
1657 return stack_push(ctx
, jsval_bool(ret
));
1660 /* ECMA-262 3rd Edition 11.6.1 */
1661 static HRESULT
add_eval(script_ctx_t
*ctx
, jsval_t lval
, jsval_t rval
, jsval_t
*ret
)
1666 hres
= to_primitive(ctx
, lval
, &l
, NO_HINT
);
1670 hres
= to_primitive(ctx
, rval
, &r
, NO_HINT
);
1676 if(is_string(l
) || is_string(r
)) {
1677 jsstr_t
*lstr
, *rstr
= NULL
;
1679 hres
= to_string(ctx
, l
, &lstr
);
1681 hres
= to_string(ctx
, r
, &rstr
);
1683 if(SUCCEEDED(hres
)) {
1686 ret_str
= jsstr_concat(lstr
, rstr
);
1688 *ret
= jsval_string(ret_str
);
1690 hres
= E_OUTOFMEMORY
;
1693 jsstr_release(lstr
);
1695 jsstr_release(rstr
);
1699 hres
= to_number(ctx
, l
, &nl
);
1700 if(SUCCEEDED(hres
)) {
1701 hres
= to_number(ctx
, r
, &nr
);
1703 *ret
= jsval_number(nl
+nr
);
1712 /* ECMA-262 3rd Edition 11.6.1 */
1713 static HRESULT
interp_add(script_ctx_t
*ctx
)
1721 TRACE("%s + %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
1723 hres
= add_eval(ctx
, l
, r
, &ret
);
1729 return stack_push(ctx
, ret
);
1732 /* ECMA-262 3rd Edition 11.6.2 */
1733 static HRESULT
interp_sub(script_ctx_t
*ctx
)
1740 hres
= stack_pop_number(ctx
, &r
);
1744 hres
= stack_pop_number(ctx
, &l
);
1748 return stack_push(ctx
, jsval_number(l
-r
));
1751 /* ECMA-262 3rd Edition 11.5.1 */
1752 static HRESULT
interp_mul(script_ctx_t
*ctx
)
1759 hres
= stack_pop_number(ctx
, &r
);
1763 hres
= stack_pop_number(ctx
, &l
);
1767 return stack_push(ctx
, jsval_number(l
*r
));
1770 /* ECMA-262 3rd Edition 11.5.2 */
1771 static HRESULT
interp_div(script_ctx_t
*ctx
)
1778 hres
= stack_pop_number(ctx
, &r
);
1782 hres
= stack_pop_number(ctx
, &l
);
1786 return stack_push(ctx
, jsval_number(l
/r
));
1789 /* ECMA-262 3rd Edition 11.5.3 */
1790 static HRESULT
interp_mod(script_ctx_t
*ctx
)
1797 hres
= stack_pop_number(ctx
, &r
);
1801 hres
= stack_pop_number(ctx
, &l
);
1805 return stack_push(ctx
, jsval_number(fmod(l
, r
)));
1808 /* ECMA-262 3rd Edition 11.4.2 */
1809 static HRESULT
interp_delete(script_ctx_t
*ctx
)
1811 jsval_t objv
, namev
;
1819 namev
= stack_pop(ctx
);
1820 objv
= stack_pop(ctx
);
1822 hres
= to_object(ctx
, objv
, &obj
);
1823 jsval_release(objv
);
1825 jsval_release(namev
);
1829 hres
= to_string(ctx
, namev
, &name
);
1830 jsval_release(namev
);
1832 IDispatch_Release(obj
);
1836 hres
= disp_delete_name(ctx
, obj
, name
, &ret
);
1837 IDispatch_Release(obj
);
1838 jsstr_release(name
);
1842 return stack_push(ctx
, jsval_bool(ret
));
1845 /* ECMA-262 3rd Edition 11.4.2 */
1846 static HRESULT
interp_delete_ident(script_ctx_t
*ctx
)
1848 const BSTR arg
= get_op_bstr(ctx
, 0);
1853 TRACE("%s\n", debugstr_w(arg
));
1855 hres
= identifier_eval(ctx
, arg
, &exprval
);
1859 switch(exprval
.type
) {
1860 case EXPRVAL_STACK_REF
:
1864 hres
= disp_delete(exprval
.u
.idref
.disp
, exprval
.u
.idref
.id
, &ret
);
1865 IDispatch_Release(exprval
.u
.idref
.disp
);
1869 case EXPRVAL_INVALID
:
1873 FIXME("Unsupported exprval\n");
1874 exprval_release(&exprval
);
1879 return stack_push(ctx
, jsval_bool(ret
));
1882 /* ECMA-262 3rd Edition 11.4.2 */
1883 static HRESULT
interp_void(script_ctx_t
*ctx
)
1888 return stack_push(ctx
, jsval_undefined());
1891 /* ECMA-262 3rd Edition 11.4.3 */
1892 static HRESULT
typeof_string(jsval_t v
, const WCHAR
**ret
)
1894 switch(jsval_type(v
)) {
1904 if(get_object(v
) && (dispex
= iface_to_jsdisp(get_object(v
)))) {
1905 *ret
= is_class(dispex
, JSCLASS_FUNCTION
) ? functionW
: objectW
;
1906 jsdisp_release(dispex
);
1922 FIXME("unhandled variant %s\n", debugstr_variant(get_variant(v
)));
1929 /* ECMA-262 3rd Edition 11.4.3 */
1930 static HRESULT
interp_typeofid(script_ctx_t
*ctx
)
1939 if(!stack_pop_exprval(ctx
, &ref
))
1940 return stack_push(ctx
, jsval_string(jsstr_undefined()));
1942 hres
= exprval_propget(ctx
, &ref
, &v
);
1943 exprval_release(&ref
);
1945 return stack_push_string(ctx
, unknownW
);
1947 hres
= typeof_string(v
, &ret
);
1952 return stack_push_string(ctx
, ret
);
1955 /* ECMA-262 3rd Edition 11.4.3 */
1956 static HRESULT
interp_typeofident(script_ctx_t
*ctx
)
1958 const BSTR arg
= get_op_bstr(ctx
, 0);
1964 TRACE("%s\n", debugstr_w(arg
));
1966 hres
= identifier_eval(ctx
, arg
, &exprval
);
1970 if(exprval
.type
== EXPRVAL_INVALID
)
1971 return stack_push(ctx
, jsval_string(jsstr_undefined()));
1973 hres
= exprval_to_value(ctx
, &exprval
, &v
);
1977 hres
= typeof_string(v
, &ret
);
1982 return stack_push_string(ctx
, ret
);
1985 /* ECMA-262 3rd Edition 11.4.3 */
1986 static HRESULT
interp_typeof(script_ctx_t
*ctx
)
1995 hres
= typeof_string(v
, &ret
);
2000 return stack_push_string(ctx
, ret
);
2003 /* ECMA-262 3rd Edition 11.4.7 */
2004 static HRESULT
interp_minus(script_ctx_t
*ctx
)
2011 hres
= stack_pop_number(ctx
, &n
);
2015 return stack_push(ctx
, jsval_number(-n
));
2018 /* ECMA-262 3rd Edition 11.4.6 */
2019 static HRESULT
interp_tonum(script_ctx_t
*ctx
)
2028 hres
= to_number(ctx
, v
, &n
);
2033 return stack_push(ctx
, jsval_number(n
));
2036 /* ECMA-262 3rd Edition 11.3.1 */
2037 static HRESULT
interp_postinc(script_ctx_t
*ctx
)
2039 const int arg
= get_op_int(ctx
, 0);
2046 if(!stack_pop_exprval(ctx
, &ref
))
2047 return throw_type_error(ctx
, JS_E_OBJECT_EXPECTED
, NULL
);
2049 hres
= exprval_propget(ctx
, &ref
, &v
);
2050 if(SUCCEEDED(hres
)) {
2053 hres
= to_number(ctx
, v
, &n
);
2055 hres
= exprval_propput(ctx
, &ref
, jsval_number(n
+(double)arg
));
2059 exprval_release(&ref
);
2063 return stack_push(ctx
, v
);
2066 /* ECMA-262 3rd Edition 11.4.4, 11.4.5 */
2067 static HRESULT
interp_preinc(script_ctx_t
*ctx
)
2069 const int arg
= get_op_int(ctx
, 0);
2077 if(!stack_pop_exprval(ctx
, &ref
))
2078 return throw_type_error(ctx
, JS_E_OBJECT_EXPECTED
, NULL
);
2080 hres
= exprval_propget(ctx
, &ref
, &v
);
2081 if(SUCCEEDED(hres
)) {
2084 hres
= to_number(ctx
, v
, &n
);
2086 if(SUCCEEDED(hres
)) {
2087 ret
= n
+(double)arg
;
2088 hres
= exprval_propput(ctx
, &ref
, jsval_number(ret
));
2091 exprval_release(&ref
);
2095 return stack_push(ctx
, jsval_number(ret
));
2098 /* ECMA-262 3rd Edition 11.9.3 */
2099 static HRESULT
equal_values(script_ctx_t
*ctx
, jsval_t lval
, jsval_t rval
, BOOL
*ret
)
2101 if(jsval_type(lval
) == jsval_type(rval
) || (is_number(lval
) && is_number(rval
)))
2102 return equal2_values(lval
, rval
, ret
);
2104 /* FIXME: NULL disps should be handled in more general way */
2105 if(is_object_instance(lval
) && !get_object(lval
))
2106 return equal_values(ctx
, jsval_null(), rval
, ret
);
2107 if(is_object_instance(rval
) && !get_object(rval
))
2108 return equal_values(ctx
, lval
, jsval_null(), ret
);
2110 if((is_null(lval
) && is_undefined(rval
)) || (is_undefined(lval
) && is_null(rval
))) {
2115 if(is_string(lval
) && is_number(rval
)) {
2119 hres
= to_number(ctx
, lval
, &n
);
2123 /* FIXME: optimize */
2124 return equal_values(ctx
, jsval_number(n
), rval
, ret
);
2127 if(is_string(rval
) && is_number(lval
)) {
2131 hres
= to_number(ctx
, rval
, &n
);
2135 /* FIXME: optimize */
2136 return equal_values(ctx
, lval
, jsval_number(n
), ret
);
2140 return equal_values(ctx
, lval
, jsval_number(get_bool(rval
) ? 1 : 0), ret
);
2143 return equal_values(ctx
, jsval_number(get_bool(lval
) ? 1 : 0), rval
, ret
);
2146 if(is_object_instance(rval
) && (is_string(lval
) || is_number(lval
))) {
2150 hres
= to_primitive(ctx
, rval
, &prim
, NO_HINT
);
2154 hres
= equal_values(ctx
, lval
, prim
, ret
);
2155 jsval_release(prim
);
2160 if(is_object_instance(lval
) && (is_string(rval
) || is_number(rval
))) {
2164 hres
= to_primitive(ctx
, lval
, &prim
, NO_HINT
);
2168 hres
= equal_values(ctx
, prim
, rval
, ret
);
2169 jsval_release(prim
);
2178 /* ECMA-262 3rd Edition 11.9.1 */
2179 static HRESULT
interp_eq(script_ctx_t
*ctx
)
2188 TRACE("%s == %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2190 hres
= equal_values(ctx
, l
, r
, &b
);
2196 return stack_push(ctx
, jsval_bool(b
));
2199 /* ECMA-262 3rd Edition 11.9.2 */
2200 static HRESULT
interp_neq(script_ctx_t
*ctx
)
2209 TRACE("%s != %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2211 hres
= equal_values(ctx
, l
, r
, &b
);
2217 return stack_push(ctx
, jsval_bool(!b
));
2220 /* ECMA-262 3rd Edition 11.9.4 */
2221 static HRESULT
interp_eq2(script_ctx_t
*ctx
)
2230 TRACE("%s === %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2232 hres
= equal2_values(r
, l
, &b
);
2238 return stack_push(ctx
, jsval_bool(b
));
2241 /* ECMA-262 3rd Edition 11.9.5 */
2242 static HRESULT
interp_neq2(script_ctx_t
*ctx
)
2253 hres
= equal2_values(r
, l
, &b
);
2259 return stack_push(ctx
, jsval_bool(!b
));
2262 /* ECMA-262 3rd Edition 11.8.5 */
2263 static HRESULT
less_eval(script_ctx_t
*ctx
, jsval_t lval
, jsval_t rval
, BOOL greater
, BOOL
*ret
)
2269 hres
= to_primitive(ctx
, lval
, &l
, NO_HINT
);
2273 hres
= to_primitive(ctx
, rval
, &r
, NO_HINT
);
2279 if(is_string(l
) && is_string(r
)) {
2280 *ret
= (jsstr_cmp(get_string(l
), get_string(r
)) < 0) ^ greater
;
2281 jsstr_release(get_string(l
));
2282 jsstr_release(get_string(r
));
2286 hres
= to_number(ctx
, l
, &ln
);
2289 hres
= to_number(ctx
, r
, &rn
);
2294 *ret
= !isnan(ln
) && !isnan(rn
) && ((ln
< rn
) ^ greater
);
2298 /* ECMA-262 3rd Edition 11.8.1 */
2299 static HRESULT
interp_lt(script_ctx_t
*ctx
)
2308 TRACE("%s < %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2310 hres
= less_eval(ctx
, l
, r
, FALSE
, &b
);
2316 return stack_push(ctx
, jsval_bool(b
));
2319 /* ECMA-262 3rd Edition 11.8.1 */
2320 static HRESULT
interp_lteq(script_ctx_t
*ctx
)
2329 TRACE("%s <= %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2331 hres
= less_eval(ctx
, r
, l
, TRUE
, &b
);
2337 return stack_push(ctx
, jsval_bool(b
));
2340 /* ECMA-262 3rd Edition 11.8.2 */
2341 static HRESULT
interp_gt(script_ctx_t
*ctx
)
2350 TRACE("%s > %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2352 hres
= less_eval(ctx
, r
, l
, FALSE
, &b
);
2358 return stack_push(ctx
, jsval_bool(b
));
2361 /* ECMA-262 3rd Edition 11.8.4 */
2362 static HRESULT
interp_gteq(script_ctx_t
*ctx
)
2371 TRACE("%s >= %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2373 hres
= less_eval(ctx
, l
, r
, TRUE
, &b
);
2379 return stack_push(ctx
, jsval_bool(b
));
2382 /* ECMA-262 3rd Edition 11.4.8 */
2383 static HRESULT
interp_bneg(script_ctx_t
*ctx
)
2392 hres
= to_int32(ctx
, v
, &i
);
2397 return stack_push(ctx
, jsval_number(~i
));
2400 /* ECMA-262 3rd Edition 11.4.9 */
2401 static HRESULT
interp_neg(script_ctx_t
*ctx
)
2410 hres
= to_boolean(v
, &b
);
2415 return stack_push(ctx
, jsval_bool(!b
));
2418 /* ECMA-262 3rd Edition 11.7.1 */
2419 static HRESULT
interp_lshift(script_ctx_t
*ctx
)
2425 hres
= stack_pop_uint(ctx
, &r
);
2429 hres
= stack_pop_int(ctx
, &l
);
2433 return stack_push(ctx
, jsval_number(l
<< (r
&0x1f)));
2436 /* ECMA-262 3rd Edition 11.7.2 */
2437 static HRESULT
interp_rshift(script_ctx_t
*ctx
)
2443 hres
= stack_pop_uint(ctx
, &r
);
2447 hres
= stack_pop_int(ctx
, &l
);
2451 return stack_push(ctx
, jsval_number(l
>> (r
&0x1f)));
2454 /* ECMA-262 3rd Edition 11.7.3 */
2455 static HRESULT
interp_rshift2(script_ctx_t
*ctx
)
2460 hres
= stack_pop_uint(ctx
, &r
);
2464 hres
= stack_pop_uint(ctx
, &l
);
2468 return stack_push(ctx
, jsval_number(l
>> (r
&0x1f)));
2471 /* ECMA-262 3rd Edition 11.13.1 */
2472 static HRESULT
interp_assign(script_ctx_t
*ctx
)
2482 if(!stack_pop_exprval(ctx
, &ref
)) {
2484 return throw_reference_error(ctx
, JS_E_ILLEGAL_ASSIGN
, NULL
);
2487 hres
= exprval_propput(ctx
, &ref
, v
);
2488 exprval_release(&ref
);
2494 return stack_push(ctx
, v
);
2497 /* JScript extension */
2498 static HRESULT
interp_assign_call(script_ctx_t
*ctx
)
2500 const unsigned argc
= get_op_uint(ctx
, 0);
2505 TRACE("%u\n", argc
);
2507 if(!stack_topn_exprval(ctx
, argc
+1, &ref
))
2508 return throw_reference_error(ctx
, JS_E_ILLEGAL_ASSIGN
, NULL
);
2510 hres
= exprval_call(ctx
, &ref
, DISPATCH_PROPERTYPUT
, argc
+1, stack_args(ctx
, argc
+1), NULL
);
2515 stack_popn(ctx
, argc
+2);
2516 return stack_push(ctx
, v
);
2519 static HRESULT
interp_undefined(script_ctx_t
*ctx
)
2523 return stack_push(ctx
, jsval_undefined());
2526 static HRESULT
interp_jmp(script_ctx_t
*ctx
)
2528 const unsigned arg
= get_op_uint(ctx
, 0);
2536 static HRESULT
interp_jmp_z(script_ctx_t
*ctx
)
2538 const unsigned arg
= get_op_uint(ctx
, 0);
2546 hres
= to_boolean(v
, &b
);
2558 static HRESULT
interp_pop(script_ctx_t
*ctx
)
2560 const unsigned arg
= get_op_uint(ctx
, 0);
2564 stack_popn(ctx
, arg
);
2568 static HRESULT
interp_ret(script_ctx_t
*ctx
)
2570 const unsigned clear_ret
= get_op_uint(ctx
, 0);
2571 call_frame_t
*frame
= ctx
->call_ctx
;
2576 jsval_release(steal_ret(frame
));
2578 if((frame
->flags
& EXEC_CONSTRUCTOR
) && !is_object_instance(frame
->ret
)) {
2579 jsval_release(frame
->ret
);
2580 IDispatch_AddRef(frame
->this_obj
);
2581 frame
->ret
= jsval_disp(frame
->this_obj
);
2588 static HRESULT
interp_setret(script_ctx_t
*ctx
)
2590 call_frame_t
*frame
= ctx
->call_ctx
;
2594 jsval_release(frame
->ret
);
2595 frame
->ret
= stack_pop(ctx
);
2599 static HRESULT
interp_push_ret(script_ctx_t
*ctx
)
2601 call_frame_t
*frame
= ctx
->call_ctx
;
2606 hres
= stack_push(ctx
, frame
->ret
);
2608 frame
->ret
= jsval_undefined();
2612 typedef HRESULT (*op_func_t
)(script_ctx_t
*);
2614 static const op_func_t op_funcs
[] = {
2615 #define X(x,a,b,c) interp_##x,
2620 static const unsigned op_move
[] = {
2621 #define X(a,x,b,c) x,
2626 static void pop_call_frame(script_ctx_t
*ctx
)
2628 call_frame_t
*frame
= ctx
->call_ctx
;
2630 frame
->stack_base
-= frame
->pop_locals
+ frame
->pop_variables
;
2632 assert(frame
->scope
== frame
->base_scope
);
2634 /* If current scope will be kept alive, we need to transfer local variables to its variable object. */
2635 if(frame
->scope
&& frame
->scope
->ref
> 1) {
2636 HRESULT hres
= detach_variable_object(ctx
, frame
, TRUE
);
2638 ERR("Failed to detach variable object: %08x\n", hres
);
2641 if(frame
->arguments_obj
)
2642 detach_arguments_object(frame
->arguments_obj
);
2644 scope_release(frame
->scope
);
2646 if(frame
->pop_variables
)
2647 stack_popn(ctx
, frame
->pop_variables
);
2648 stack_popn(ctx
, frame
->pop_locals
);
2650 ctx
->call_ctx
= frame
->prev_frame
;
2652 if(frame
->function_instance
)
2653 jsdisp_release(frame
->function_instance
);
2654 if(frame
->variable_obj
)
2655 jsdisp_release(frame
->variable_obj
);
2657 IDispatch_Release(frame
->this_obj
);
2658 jsval_release(frame
->ret
);
2659 release_bytecode(frame
->bytecode
);
2663 static void print_backtrace(script_ctx_t
*ctx
)
2665 unsigned depth
= 0, i
;
2666 call_frame_t
*frame
;
2668 for(frame
= ctx
->call_ctx
; frame
; frame
= frame
->prev_frame
) {
2669 TRACE_(jscript_except
)("%u\t", depth
);
2672 if(frame
->this_obj
&& frame
->this_obj
!= to_disp(ctx
->global
) && frame
->this_obj
!= ctx
->host_global
)
2673 TRACE_(jscript_except
)("%p->", frame
->this_obj
);
2674 TRACE_(jscript_except
)("%s(", frame
->function
->name
? debugstr_w(frame
->function
->name
) : "[unnamed]");
2675 if(frame
->base_scope
&& frame
->base_scope
->frame
) {
2676 for(i
=0; i
< frame
->argc
; i
++) {
2677 if(i
< frame
->function
->param_cnt
)
2678 TRACE_(jscript_except
)("%s%s=%s", i
? ", " : "",
2679 debugstr_w(frame
->function
->params
[i
]),
2680 debugstr_jsval(ctx
->stack
[local_off(frame
, -i
-1)]));
2682 TRACE_(jscript_except
)("%s%s", i
? ", " : "",
2683 debugstr_jsval(ctx
->stack
[local_off(frame
, -i
-1)]));
2686 TRACE_(jscript_except
)("[detached frame]");
2688 TRACE_(jscript_except
)(")\n");
2690 if(!(frame
->flags
& EXEC_RETURN_TO_INTERP
)) {
2691 TRACE_(jscript_except
)("%u\t[native code]\n", depth
);
2697 static HRESULT
unwind_exception(script_ctx_t
*ctx
, HRESULT exception_hres
)
2699 except_frame_t
*except_frame
;
2700 call_frame_t
*frame
;
2705 TRACE("%08x\n", exception_hres
);
2707 if(TRACE_ON(jscript_except
)) {
2708 jsdisp_t
*error_obj
;
2711 static const WCHAR messageW
[] = {'m','e','s','s','a','g','e',0};
2713 TRACE_(jscript_except
)("Exception %08x %s", exception_hres
, debugstr_jsval(ctx
->ei
.val
));
2714 if(jsval_type(ctx
->ei
.val
) == JSV_OBJECT
) {
2715 error_obj
= to_jsdisp(get_object(ctx
->ei
.val
));
2717 hres
= jsdisp_propget_name(error_obj
, messageW
, &msg
);
2718 if(SUCCEEDED(hres
)) {
2719 TRACE_(jscript_except
)(" (message %s)", debugstr_jsval(msg
));
2724 TRACE_(jscript_except
)(" in:\n");
2726 print_backtrace(ctx
);
2729 for(frame
= ctx
->call_ctx
; !frame
->except_frame
; frame
= ctx
->call_ctx
) {
2732 while(frame
->scope
!= frame
->base_scope
)
2733 scope_pop(&frame
->scope
);
2735 stack_popn(ctx
, ctx
->stack_top
-frame
->stack_base
);
2737 flags
= frame
->flags
;
2738 pop_call_frame(ctx
);
2739 if(!(flags
& EXEC_RETURN_TO_INTERP
))
2740 return exception_hres
;
2743 except_frame
= frame
->except_frame
;
2744 catch_off
= except_frame
->catch_off
;
2746 assert(except_frame
->stack_top
<= ctx
->stack_top
);
2747 stack_popn(ctx
, ctx
->stack_top
- except_frame
->stack_top
);
2749 while(except_frame
->scope
!= frame
->scope
)
2750 scope_pop(&frame
->scope
);
2752 frame
->ip
= catch_off
? catch_off
: except_frame
->finally_off
;
2753 if(catch_off
) assert(frame
->bytecode
->instrs
[frame
->ip
].op
== OP_enter_catch
);
2755 except_val
= ctx
->ei
.val
;
2756 ctx
->ei
.val
= jsval_undefined();
2759 /* keep current except_frame if we're entering catch block with finally block associated */
2760 if(catch_off
&& except_frame
->finally_off
) {
2761 except_frame
->catch_off
= 0;
2763 frame
->except_frame
= except_frame
->next
;
2764 heap_free(except_frame
);
2767 hres
= stack_push(ctx
, except_val
);
2772 hres
= stack_push(ctx
, jsval_bool(FALSE
));
2776 static HRESULT
enter_bytecode(script_ctx_t
*ctx
, jsval_t
*r
)
2778 call_frame_t
*frame
;
2780 HRESULT hres
= S_OK
;
2785 frame
= ctx
->call_ctx
;
2786 op
= frame
->bytecode
->instrs
[frame
->ip
].op
;
2787 hres
= op_funcs
[op
](ctx
);
2789 hres
= unwind_exception(ctx
, hres
);
2792 }else if(frame
->ip
== -1) {
2793 const DWORD return_to_interp
= frame
->flags
& EXEC_RETURN_TO_INTERP
;
2795 assert(ctx
->stack_top
== frame
->stack_base
);
2796 assert(frame
->scope
== frame
->base_scope
);
2798 if(return_to_interp
) {
2799 clear_ret(frame
->prev_frame
);
2800 frame
->prev_frame
->ret
= steal_ret(frame
);
2802 *r
= steal_ret(frame
);
2804 pop_call_frame(ctx
);
2805 if(!return_to_interp
)
2808 frame
->ip
+= op_move
[op
];
2815 static HRESULT
bind_event_target(script_ctx_t
*ctx
, function_code_t
*func
, jsdisp_t
*func_obj
)
2817 IBindEventHandler
*target
;
2823 hres
= identifier_eval(ctx
, func
->event_target
, &exprval
);
2827 hres
= exprval_to_value(ctx
, &exprval
, &v
);
2831 if(!is_object_instance(v
)) {
2832 FIXME("Can't bind to %s\n", debugstr_jsval(v
));
2836 disp
= get_object(v
);
2837 hres
= IDispatch_QueryInterface(disp
, &IID_IBindEventHandler
, (void**)&target
);
2838 if(SUCCEEDED(hres
)) {
2839 hres
= IBindEventHandler_BindHandler(target
, func
->name
, (IDispatch
*)&func_obj
->IDispatchEx_iface
);
2840 IBindEventHandler_Release(target
);
2842 WARN("BindEvent failed: %08x\n", hres
);
2844 FIXME("No IBindEventHandler, not yet supported binding\n");
2847 IDispatch_Release(disp
);
2851 static HRESULT
setup_scope(script_ctx_t
*ctx
, call_frame_t
*frame
, scope_chain_t
*scope_chain
, jsdisp_t
*variable_object
, unsigned argc
, jsval_t
*argv
)
2853 const unsigned orig_stack
= ctx
->stack_top
;
2854 scope_chain_t
*scope
;
2859 /* If arguments are already on the stack, we may use them. */
2860 if(argv
+ argc
== ctx
->stack
+ ctx
->stack_top
) {
2861 frame
->arguments_off
= argv
- ctx
->stack
;
2864 frame
->arguments_off
= ctx
->stack_top
;
2865 for(i
= 0; i
< argc
; i
++) {
2866 hres
= jsval_copy(argv
[i
], &v
);
2868 hres
= stack_push(ctx
, v
);
2876 /* If fewer than declared arguments were passed, fill remaining with undefined value. */
2877 for(; i
< frame
->function
->param_cnt
; i
++) {
2878 hres
= stack_push(ctx
, jsval_undefined());
2880 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
2885 frame
->pop_locals
= ctx
->stack_top
- orig_stack
;
2887 frame
->variables_off
= ctx
->stack_top
;
2889 for(i
= 0; i
< frame
->function
->var_cnt
; i
++) {
2890 hres
= stack_push(ctx
, jsval_undefined());
2892 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
2897 frame
->pop_variables
= i
;
2899 hres
= scope_push(scope_chain
, variable_object
, to_disp(variable_object
), &scope
);
2901 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
2905 for(i
= 0; i
< frame
->function
->func_cnt
; i
++) {
2906 if(frame
->function
->funcs
[i
].name
&& !frame
->function
->funcs
[i
].event_target
) {
2910 hres
= create_source_function(ctx
, frame
->bytecode
, frame
->function
->funcs
+i
, scope
, &func_obj
);
2912 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
2913 scope_release(scope
);
2917 off
= local_off(frame
, frame
->function
->funcs
[i
].local_ref
);
2918 jsval_release(ctx
->stack
[off
]);
2919 ctx
->stack
[off
] = jsval_obj(func_obj
);
2923 scope
->frame
= frame
;
2924 frame
->base_scope
= frame
->scope
= scope
;
2928 HRESULT
exec_source(script_ctx_t
*ctx
, DWORD flags
, bytecode_t
*bytecode
, function_code_t
*function
, scope_chain_t
*scope
,
2929 IDispatch
*this_obj
, jsdisp_t
*function_instance
, jsdisp_t
*variable_obj
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
2931 call_frame_t
*frame
;
2935 for(i
= 0; i
< function
->func_cnt
; i
++) {
2938 if(!function
->funcs
[i
].event_target
)
2941 hres
= create_source_function(ctx
, bytecode
, function
->funcs
+i
, scope
, &func_obj
);
2945 hres
= bind_event_target(ctx
, function
->funcs
+i
, func_obj
);
2946 jsdisp_release(func_obj
);
2951 if(flags
& (EXEC_GLOBAL
| EXEC_EVAL
)) {
2952 for(i
=0; i
< function
->var_cnt
; i
++) {
2953 TRACE("[%d] %s %d\n", i
, debugstr_w(function
->variables
[i
].name
), function
->variables
[i
].func_id
);
2954 if(function
->variables
[i
].func_id
!= -1) {
2957 hres
= create_source_function(ctx
, bytecode
, function
->funcs
+function
->variables
[i
].func_id
, scope
, &func_obj
);
2961 hres
= jsdisp_propput_name(variable_obj
, function
->variables
[i
].name
, jsval_obj(func_obj
));
2962 jsdisp_release(func_obj
);
2963 }else if(!(flags
& EXEC_GLOBAL
) || !lookup_global_members(ctx
, function
->variables
[i
].name
, NULL
)) {
2966 hres
= jsdisp_get_id(variable_obj
, function
->variables
[i
].name
, fdexNameEnsure
, &id
);
2973 /* ECMA-262 3rd Edition 11.2.3.7 */
2977 jsthis
= iface_to_jsdisp(this_obj
);
2979 if(jsthis
->builtin_info
->class == JSCLASS_GLOBAL
|| jsthis
->builtin_info
->class == JSCLASS_NONE
)
2981 jsdisp_release(jsthis
);
2985 if(ctx
->call_ctx
&& (flags
& EXEC_EVAL
)) {
2986 hres
= detach_variable_object(ctx
, ctx
->call_ctx
, FALSE
);
2991 frame
= heap_alloc_zero(sizeof(*frame
));
2993 return E_OUTOFMEMORY
;
2995 frame
->function
= function
;
2996 frame
->ret
= jsval_undefined();
2998 frame
->bytecode
= bytecode_addref(bytecode
);
3000 if(!(flags
& (EXEC_GLOBAL
|EXEC_EVAL
))) {
3001 hres
= setup_scope(ctx
, frame
, scope
, variable_obj
, argc
, argv
);
3003 release_bytecode(frame
->bytecode
);
3008 frame
->base_scope
= frame
->scope
= scope_addref(scope
);
3011 frame
->ip
= function
->instr_off
;
3012 frame
->stack_base
= ctx
->stack_top
;
3014 frame
->this_obj
= this_obj
;
3015 else if(ctx
->host_global
)
3016 frame
->this_obj
= ctx
->host_global
;
3018 frame
->this_obj
= to_disp(ctx
->global
);
3019 IDispatch_AddRef(frame
->this_obj
);
3021 if(function_instance
)
3022 frame
->function_instance
= jsdisp_addref(function_instance
);
3024 frame
->flags
= flags
;
3025 frame
->variable_obj
= jsdisp_addref(variable_obj
);
3027 frame
->prev_frame
= ctx
->call_ctx
;
3028 ctx
->call_ctx
= frame
;
3030 if(flags
& EXEC_RETURN_TO_INTERP
) {
3032 * We're called directly from interpreter, so we may just setup call frame and return.
3033 * Already running interpreter will take care of execution.
3036 *r
= jsval_undefined();
3040 return enter_bytecode(ctx
, r
);