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
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
30 struct _except_frame_t
{
57 static const size_t stack_size
= 0x40000;
59 static HRESULT
stack_push(script_ctx_t
*ctx
, jsval_t v
)
61 if(ctx
->stack_top
== stack_size
)
62 return JS_E_STACK_OVERFLOW
;
64 ctx
->stack
[ctx
->stack_top
++] = v
;
68 static inline HRESULT
stack_push_string(script_ctx_t
*ctx
, const WCHAR
*str
)
76 return stack_push(ctx
, jsval_string(v
));
79 static inline jsval_t
stack_top(script_ctx_t
*ctx
)
81 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
);
82 return ctx
->stack
[ctx
->stack_top
-1];
85 static inline jsval_t
*stack_top_ref(script_ctx_t
*ctx
, unsigned n
)
87 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
+n
);
88 return ctx
->stack
+ctx
->stack_top
-1-n
;
91 static inline jsval_t
stack_topn(script_ctx_t
*ctx
, unsigned n
)
93 return *stack_top_ref(ctx
, n
);
96 static inline jsval_t
*stack_args(script_ctx_t
*ctx
, unsigned n
)
100 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
+n
-1);
101 return ctx
->stack
+ ctx
->stack_top
-n
;
104 static inline jsval_t
stack_pop(script_ctx_t
*ctx
)
106 assert(ctx
->stack_top
> ctx
->call_ctx
->stack_base
);
107 return ctx
->stack
[--ctx
->stack_top
];
110 static void stack_popn(script_ctx_t
*ctx
, unsigned n
)
113 jsval_release(stack_pop(ctx
));
116 static HRESULT
stack_pop_number(script_ctx_t
*ctx
, double *r
)
122 hres
= to_number(ctx
, v
, r
);
127 static HRESULT
stack_pop_object(script_ctx_t
*ctx
, IDispatch
**r
)
133 if(is_object_instance(v
)) {
135 return JS_E_OBJECT_REQUIRED
;
140 hres
= to_object(ctx
, v
, r
);
145 static inline HRESULT
stack_pop_int(script_ctx_t
*ctx
, INT
*r
)
147 return to_int32(ctx
, stack_pop(ctx
), r
);
150 static inline HRESULT
stack_pop_uint(script_ctx_t
*ctx
, DWORD
*r
)
152 return to_uint32(ctx
, stack_pop(ctx
), r
);
155 static inline unsigned local_off(call_frame_t
*frame
, int ref
)
158 ? frame
->arguments_off
- ref
-1
159 : frame
->variables_off
+ ref
;
162 static inline BSTR
local_name(call_frame_t
*frame
, int ref
)
164 return ref
< 0 ? frame
->function
->params
[-ref
-1] : frame
->function
->variables
[ref
].name
;
167 /* Steals input reference even on failure. */
168 static HRESULT
stack_push_exprval(script_ctx_t
*ctx
, exprval_t
*val
)
174 hres
= stack_push(ctx
, jsval_null());
176 hres
= stack_push(ctx
, val
->u
.val
);
179 hres
= stack_push(ctx
, jsval_disp(val
->u
.idref
.disp
));
181 hres
= stack_push(ctx
, jsval_number(val
->u
.idref
.id
));
183 IDispatch_Release(val
->u
.idref
.disp
);
185 case EXPRVAL_STACK_REF
:
186 hres
= stack_push(ctx
, jsval_number(val
->u
.off
));
188 hres
= stack_push(ctx
, jsval_undefined());
190 case EXPRVAL_INVALID
:
191 hres
= stack_push(ctx
, jsval_undefined());
193 hres
= stack_push(ctx
, jsval_number(val
->u
.hres
));
201 static BOOL
stack_topn_exprval(script_ctx_t
*ctx
, unsigned n
, exprval_t
*r
)
203 jsval_t v
= stack_topn(ctx
, n
+1);
205 switch(jsval_type(v
)) {
207 call_frame_t
*frame
= ctx
->call_ctx
;
208 unsigned off
= get_number(v
);
210 if(!frame
->base_scope
->frame
&& off
>= frame
->arguments_off
) {
215 /* Got stack reference in deoptimized code. Need to convert it back to variable object reference. */
217 assert(off
< frame
->variables_off
+ frame
->function
->var_cnt
);
218 name
= off
>= frame
->variables_off
219 ? frame
->function
->variables
[off
- frame
->variables_off
].name
220 : frame
->function
->params
[off
- frame
->arguments_off
];
221 hres
= jsdisp_get_id(ctx
->call_ctx
->base_scope
->jsobj
, name
, 0, &id
);
223 r
->type
= EXPRVAL_INVALID
;
228 *stack_top_ref(ctx
, n
+1) = jsval_obj(jsdisp_addref(frame
->base_scope
->jsobj
));
229 *stack_top_ref(ctx
, n
) = jsval_number(id
);
230 r
->type
= EXPRVAL_IDREF
;
231 r
->u
.idref
.disp
= frame
->base_scope
->obj
;
236 r
->type
= EXPRVAL_STACK_REF
;
241 r
->type
= EXPRVAL_IDREF
;
242 r
->u
.idref
.disp
= get_object(v
);
243 assert(is_number(stack_topn(ctx
, n
)));
244 r
->u
.idref
.id
= get_number(stack_topn(ctx
, n
));
247 r
->type
= EXPRVAL_INVALID
;
248 assert(is_number(stack_topn(ctx
, n
)));
249 r
->u
.hres
= get_number(stack_topn(ctx
, n
));
252 r
->type
= EXPRVAL_JSVAL
;
253 r
->u
.val
= stack_topn(ctx
, n
);
261 static inline BOOL
stack_pop_exprval(script_ctx_t
*ctx
, exprval_t
*r
)
263 BOOL ret
= stack_topn_exprval(ctx
, 0, r
);
268 static HRESULT
exprval_propput(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t v
)
271 case EXPRVAL_STACK_REF
: {
272 jsval_t
*r
= ctx
->stack
+ ref
->u
.off
;
274 return jsval_copy(v
, r
);
277 return disp_propput(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, v
);
279 WARN("ignoring an attempt to set value reference\n");
287 static HRESULT
exprval_propget(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t
*r
)
290 case EXPRVAL_STACK_REF
:
291 return jsval_copy(ctx
->stack
[ref
->u
.off
], r
);
293 return disp_propget(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, r
);
295 return jsval_copy(ref
->u
.val
, r
);
302 static HRESULT
exprval_call(script_ctx_t
*ctx
, exprval_t
*ref
, WORD flags
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
305 case EXPRVAL_STACK_REF
: {
306 jsval_t v
= ctx
->stack
[ref
->u
.off
];
308 if(!is_object_instance(v
)) {
309 FIXME("invoke %s\n", debugstr_jsval(v
));
313 return disp_call_value(ctx
, get_object(v
), NULL
, flags
, argc
, argv
, r
);
316 return disp_call(ctx
, ref
->u
.idref
.disp
, ref
->u
.idref
.id
, flags
, argc
, argv
, r
);
317 case EXPRVAL_JSVAL
: {
321 hres
= to_object(ctx
, ref
->u
.val
, &obj
);
322 if(SUCCEEDED(hres
)) {
323 hres
= disp_call_value(ctx
, obj
, NULL
, flags
, argc
, argv
, r
);
324 IDispatch_Release(obj
);
334 /* ECMA-262 3rd Edition 8.7.1 */
335 /* Steals input reference. */
336 static HRESULT
exprval_to_value(script_ctx_t
*ctx
, exprval_t
*ref
, jsval_t
*r
)
340 if(ref
->type
== EXPRVAL_JSVAL
) {
345 hres
= exprval_propget(ctx
, ref
, r
);
347 if(ref
->type
== EXPRVAL_IDREF
)
348 IDispatch_Release(ref
->u
.idref
.disp
);
352 static void exprval_release(exprval_t
*val
)
356 jsval_release(val
->u
.val
);
359 if(val
->u
.idref
.disp
)
360 IDispatch_Release(val
->u
.idref
.disp
);
362 case EXPRVAL_STACK_REF
:
363 case EXPRVAL_INVALID
:
368 static inline void exprval_set_exception(exprval_t
*val
, HRESULT hres
)
370 val
->type
= EXPRVAL_INVALID
;
374 static inline void exprval_set_disp_ref(exprval_t
*ref
, IDispatch
*obj
, DISPID id
)
376 ref
->type
= EXPRVAL_IDREF
;
377 IDispatch_AddRef(ref
->u
.idref
.disp
= obj
);
378 ref
->u
.idref
.id
= id
;
381 static inline jsval_t
steal_ret(call_frame_t
*frame
)
383 jsval_t r
= frame
->ret
;
384 frame
->ret
= jsval_undefined();
388 static inline void clear_acc(script_ctx_t
*ctx
)
390 jsval_release(ctx
->acc
);
391 ctx
->acc
= jsval_undefined();
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 scope_release(scope_chain_t
*scope
)
429 scope_release(scope
->next
);
431 IDispatch_Release(scope
->obj
);
435 static HRESULT
disp_get_id(script_ctx_t
*ctx
, IDispatch
*disp
, const WCHAR
*name
, BSTR name_bstr
, DWORD flags
, DISPID
*id
)
442 jsdisp
= iface_to_jsdisp(disp
);
444 hres
= jsdisp_get_id(jsdisp
, name
, flags
, id
);
445 jsdisp_release(jsdisp
);
452 bstr
= SysAllocString(name
);
454 return E_OUTOFMEMORY
;
458 hres
= IDispatch_QueryInterface(disp
, &IID_IDispatchEx
, (void**)&dispex
);
459 if(SUCCEEDED(hres
)) {
460 hres
= IDispatchEx_GetDispID(dispex
, bstr
, make_grfdex(ctx
, flags
|fdexNameCaseSensitive
), id
);
461 IDispatchEx_Release(dispex
);
463 TRACE("using IDispatch\n");
464 hres
= IDispatch_GetIDsOfNames(disp
, &IID_NULL
, &bstr
, 1, 0, id
);
467 if(name_bstr
!= bstr
)
472 static HRESULT
disp_cmp(IDispatch
*disp1
, IDispatch
*disp2
, BOOL
*ret
)
474 IObjectIdentity
*identity
;
475 IUnknown
*unk1
, *unk2
;
483 if(!disp1
|| !disp2
) {
488 hres
= IDispatch_QueryInterface(disp1
, &IID_IUnknown
, (void**)&unk1
);
492 hres
= IDispatch_QueryInterface(disp2
, &IID_IUnknown
, (void**)&unk2
);
494 IUnknown_Release(unk1
);
501 hres
= IUnknown_QueryInterface(unk1
, &IID_IObjectIdentity
, (void**)&identity
);
502 if(SUCCEEDED(hres
)) {
503 hres
= IObjectIdentity_IsEqualObject(identity
, unk2
);
504 IObjectIdentity_Release(identity
);
511 IUnknown_Release(unk1
);
512 IUnknown_Release(unk2
);
516 /* ECMA-262 3rd Edition 11.9.6 */
517 HRESULT
jsval_strict_equal(jsval_t lval
, jsval_t rval
, BOOL
*ret
)
519 jsval_type_t type
= jsval_type(lval
);
523 if(type
!= jsval_type(rval
)) {
524 if(is_null_instance(lval
))
525 *ret
= is_null_instance(rval
);
537 return disp_cmp(get_object(lval
), get_object(rval
), ret
);
539 *ret
= jsstr_eq(get_string(lval
), get_string(rval
));
542 *ret
= get_number(lval
) == get_number(rval
);
545 *ret
= !get_bool(lval
) == !get_bool(rval
);
548 WARN("VARIANT type, returning false\n");
557 * Transfers local variables from stack to variable object.
558 * It's slow, so we want to avoid it as much as possible.
560 static HRESULT
detach_variable_object(script_ctx_t
*ctx
, call_frame_t
*frame
, BOOL from_release
)
565 if(!frame
->base_scope
|| !frame
->base_scope
->frame
)
568 TRACE("detaching %p\n", frame
);
570 assert(frame
== frame
->base_scope
->frame
);
571 assert(frame
->variable_obj
== frame
->base_scope
->jsobj
);
573 if(!from_release
&& !frame
->arguments_obj
) {
574 hres
= setup_arguments_object(ctx
, frame
);
579 frame
->base_scope
->frame
= NULL
;
581 for(i
= 0; i
< frame
->function
->locals_cnt
; i
++) {
582 hres
= jsdisp_propput_name(frame
->variable_obj
, frame
->function
->locals
[i
].name
,
583 ctx
->stack
[local_off(frame
, frame
->function
->locals
[i
].ref
)]);
591 static BOOL
lookup_global_members(script_ctx_t
*ctx
, BSTR identifier
, exprval_t
*ret
)
597 LIST_FOR_EACH_ENTRY(item
, &ctx
->named_items
, named_item_t
, entry
) {
598 if(item
->flags
& SCRIPTITEM_GLOBALMEMBERS
) {
599 hres
= disp_get_id(ctx
, item
->disp
, identifier
, identifier
, 0, &id
);
600 if(SUCCEEDED(hres
)) {
602 exprval_set_disp_ref(ret
, item
->disp
, id
);
611 IDispatch
*lookup_global_host(script_ctx_t
*ctx
)
613 IDispatch
*disp
= NULL
;
616 LIST_FOR_EACH_ENTRY(item
, &ctx
->named_items
, named_item_t
, entry
) {
617 if(!(item
->flags
& SCRIPTITEM_GLOBALMEMBERS
)) continue;
621 if(!disp
) disp
= to_disp(ctx
->global
);
626 static int __cdecl
local_ref_cmp(const void *key
, const void *ref
)
628 return wcscmp((const WCHAR
*)key
, ((const local_ref_t
*)ref
)->name
);
631 local_ref_t
*lookup_local(const function_code_t
*function
, const WCHAR
*identifier
)
633 return bsearch(identifier
, function
->locals
, function
->locals_cnt
, sizeof(*function
->locals
), local_ref_cmp
);
636 /* ECMA-262 3rd Edition 10.1.4 */
637 static HRESULT
identifier_eval(script_ctx_t
*ctx
, BSTR identifier
, exprval_t
*ret
)
639 scope_chain_t
*scope
;
644 TRACE("%s\n", debugstr_w(identifier
));
647 for(scope
= ctx
->call_ctx
->scope
; scope
; scope
= scope
->next
) {
649 function_code_t
*func
= scope
->frame
->function
;
650 local_ref_t
*ref
= lookup_local(func
, identifier
);
653 ret
->type
= EXPRVAL_STACK_REF
;
654 ret
->u
.off
= local_off(scope
->frame
, ref
->ref
);
655 TRACE("returning ref %d for %d\n", ret
->u
.off
, ref
->ref
);
659 if(!wcscmp(identifier
, L
"arguments")) {
660 hres
= detach_variable_object(ctx
, scope
->frame
, FALSE
);
665 /* ECMA-262 5.1 Edition 13 */
666 if(func
->name
&& ctx
->version
>= SCRIPTLANGUAGEVERSION_ES5
&& !wcscmp(identifier
, func
->name
)) {
667 TRACE("returning a function from scope chain\n");
668 ret
->type
= EXPRVAL_JSVAL
;
669 ret
->u
.val
= jsval_obj(jsdisp_addref(scope
->frame
->function_instance
));
674 hres
= jsdisp_get_id(scope
->jsobj
, identifier
, fdexNameImplicit
, &id
);
676 hres
= disp_get_id(ctx
, scope
->obj
, identifier
, identifier
, fdexNameImplicit
, &id
);
677 if(SUCCEEDED(hres
)) {
678 exprval_set_disp_ref(ret
, scope
->obj
, id
);
683 item
= ctx
->call_ctx
->bytecode
->named_item
;
685 hres
= jsdisp_get_id(item
->script_obj
, identifier
, 0, &id
);
686 if(SUCCEEDED(hres
)) {
687 exprval_set_disp_ref(ret
, to_disp(item
->script_obj
), id
);
690 if(!(item
->flags
& SCRIPTITEM_CODEONLY
)) {
691 hres
= disp_get_id(ctx
, item
->disp
, identifier
, identifier
, 0, &id
);
692 if(SUCCEEDED(hres
)) {
693 exprval_set_disp_ref(ret
, item
->disp
, id
);
700 hres
= jsdisp_get_id(ctx
->global
, identifier
, 0, &id
);
701 if(SUCCEEDED(hres
)) {
702 exprval_set_disp_ref(ret
, to_disp(ctx
->global
), id
);
706 item
= lookup_named_item(ctx
, identifier
, SCRIPTITEM_ISVISIBLE
);
708 IDispatch_AddRef(item
->disp
);
709 ret
->type
= EXPRVAL_JSVAL
;
710 ret
->u
.val
= jsval_disp(item
->disp
);
714 if(lookup_global_members(ctx
, identifier
, ret
))
717 exprval_set_exception(ret
, JS_E_UNDEFINED_VARIABLE
);
721 static inline BSTR
get_op_bstr(script_ctx_t
*ctx
, int i
)
723 call_frame_t
*frame
= ctx
->call_ctx
;
724 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].bstr
;
727 static inline unsigned get_op_uint(script_ctx_t
*ctx
, int i
)
729 call_frame_t
*frame
= ctx
->call_ctx
;
730 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].uint
;
733 static inline unsigned get_op_int(script_ctx_t
*ctx
, int i
)
735 call_frame_t
*frame
= ctx
->call_ctx
;
736 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].lng
;
739 static inline jsstr_t
*get_op_str(script_ctx_t
*ctx
, int i
)
741 call_frame_t
*frame
= ctx
->call_ctx
;
742 return frame
->bytecode
->instrs
[frame
->ip
].u
.arg
[i
].str
;
745 static inline double get_op_double(script_ctx_t
*ctx
)
747 call_frame_t
*frame
= ctx
->call_ctx
;
748 return frame
->bytecode
->instrs
[frame
->ip
].u
.dbl
;
751 static inline void jmp_next(script_ctx_t
*ctx
)
756 static inline void jmp_abs(script_ctx_t
*ctx
, unsigned dst
)
758 ctx
->call_ctx
->ip
= dst
;
761 /* ECMA-262 3rd Edition 12.6.4 */
762 static HRESULT
interp_forin(script_ctx_t
*ctx
)
764 const HRESULT arg
= get_op_uint(ctx
, 0);
765 IDispatch
*obj
= NULL
;
774 assert(is_number(stack_top(ctx
)));
775 id
= get_number(stack_top(ctx
));
777 if(!stack_topn_exprval(ctx
, 1, &prop_ref
)) {
778 FIXME("invalid ref: %08x\n", prop_ref
.u
.hres
);
782 if(is_object_instance(stack_topn(ctx
, 3)))
783 obj
= get_object(stack_topn(ctx
, 3));
786 hres
= IDispatch_QueryInterface(obj
, &IID_IDispatchEx
, (void**)&dispex
);
787 if(SUCCEEDED(hres
)) {
788 hres
= IDispatchEx_GetNextDispID(dispex
, fdexEnumDefault
, id
, &id
);
790 hres
= IDispatchEx_GetMemberName(dispex
, id
, &name
);
791 IDispatchEx_Release(dispex
);
795 TRACE("No IDispatchEx\n");
802 str
= jsstr_alloc_len(name
, SysStringLen(name
));
805 return E_OUTOFMEMORY
;
808 stack_push(ctx
, jsval_number(id
)); /* safe, just after pop() */
810 hres
= exprval_propput(ctx
, &prop_ref
, jsval_string(str
));
823 /* ECMA-262 3rd Edition 12.10 */
824 static HRESULT
interp_push_scope(script_ctx_t
*ctx
)
833 hres
= to_object(ctx
, v
, &disp
);
838 hres
= scope_push(ctx
->call_ctx
->scope
, to_jsdisp(disp
), disp
, &ctx
->call_ctx
->scope
);
839 IDispatch_Release(disp
);
843 /* ECMA-262 3rd Edition 12.10 */
844 static HRESULT
interp_pop_scope(script_ctx_t
*ctx
)
848 scope_pop(&ctx
->call_ctx
->scope
);
852 /* ECMA-262 3rd Edition 12.13 */
853 static HRESULT
interp_case(script_ctx_t
*ctx
)
855 const unsigned arg
= get_op_uint(ctx
, 0);
863 hres
= jsval_strict_equal(stack_top(ctx
), v
, &b
);
877 static void set_error_value(script_ctx_t
*ctx
, jsval_t value
)
879 jsexcept_t
*ei
= ctx
->ei
;
883 ei
->error
= JS_E_EXCEPTION_THROWN
;
884 ei
->valid_value
= TRUE
;
887 if(is_object_instance(value
) && get_object(value
) && (obj
= to_jsdisp(get_object(value
)))) {
893 /* FIXME: We should check if object is an error instance */
895 hres
= jsdisp_propget_name(obj
, L
"number", &v
);
896 if(SUCCEEDED(hres
)) {
897 hres
= to_uint32(ctx
, v
, &number
);
899 ei
->error
= FAILED(number
) ? number
: E_FAIL
;
903 hres
= jsdisp_propget_name(obj
, L
"description", &v
);
904 if(SUCCEEDED(hres
)) {
905 hres
= to_string(ctx
, v
, &str
);
913 /* ECMA-262 3rd Edition 12.13 */
914 static HRESULT
interp_throw(script_ctx_t
*ctx
)
918 set_error_value(ctx
, stack_pop(ctx
));
919 return DISP_E_EXCEPTION
;
922 static HRESULT
interp_throw_ref(script_ctx_t
*ctx
)
924 const HRESULT arg
= get_op_uint(ctx
, 0);
926 TRACE("%08x\n", arg
);
931 static HRESULT
interp_throw_type(script_ctx_t
*ctx
)
933 const HRESULT hres
= get_op_uint(ctx
, 0);
934 jsstr_t
*str
= get_op_str(ctx
, 1);
937 TRACE("%08x %s\n", hres
, debugstr_jsstr(str
));
939 ptr
= jsstr_flatten(str
);
940 return ptr
? throw_error(ctx
, hres
, ptr
) : E_OUTOFMEMORY
;
943 /* ECMA-262 3rd Edition 12.14 */
944 static HRESULT
interp_push_except(script_ctx_t
*ctx
)
946 const unsigned catch_off
= get_op_uint(ctx
, 0);
947 const unsigned finally_off
= get_op_uint(ctx
, 1);
948 call_frame_t
*frame
= ctx
->call_ctx
;
949 except_frame_t
*except
;
953 except
= heap_alloc(sizeof(*except
));
955 return E_OUTOFMEMORY
;
957 except
->stack_top
= ctx
->stack_top
;
958 except
->scope
= frame
->scope
;
959 except
->catch_off
= catch_off
;
960 except
->finally_off
= finally_off
;
961 except
->next
= frame
->except_frame
;
962 frame
->except_frame
= except
;
966 /* ECMA-262 3rd Edition 12.14 */
967 static HRESULT
interp_pop_except(script_ctx_t
*ctx
)
969 const unsigned ret_off
= get_op_uint(ctx
, 0);
970 call_frame_t
*frame
= ctx
->call_ctx
;
971 except_frame_t
*except
;
972 unsigned finally_off
;
974 TRACE("%u\n", ret_off
);
976 except
= frame
->except_frame
;
977 assert(except
!= NULL
);
979 finally_off
= except
->finally_off
;
980 frame
->except_frame
= except
->next
;
986 hres
= stack_push(ctx
, jsval_number(ret_off
));
989 hres
= stack_push(ctx
, jsval_bool(TRUE
));
992 frame
->ip
= finally_off
;
1000 /* ECMA-262 3rd Edition 12.14 */
1001 static HRESULT
interp_end_finally(script_ctx_t
*ctx
)
1003 call_frame_t
*frame
= ctx
->call_ctx
;
1012 TRACE("passing exception\n");
1014 set_error_value(ctx
, stack_pop(ctx
));
1015 return DISP_E_EXCEPTION
;
1019 assert(is_number(v
));
1020 frame
->ip
= get_number(v
);
1024 static HRESULT
interp_enter_catch(script_ctx_t
*ctx
)
1026 const BSTR ident
= get_op_bstr(ctx
, 0);
1027 jsdisp_t
*scope_obj
;
1031 hres
= create_dispex(ctx
, NULL
, NULL
, &scope_obj
);
1036 hres
= jsdisp_propput_name(scope_obj
, ident
, v
);
1039 hres
= scope_push(ctx
->call_ctx
->scope
, scope_obj
, to_disp(scope_obj
), &ctx
->call_ctx
->scope
);
1040 jsdisp_release(scope_obj
);
1044 /* ECMA-262 3rd Edition 13 */
1045 static HRESULT
interp_func(script_ctx_t
*ctx
)
1047 unsigned func_idx
= get_op_uint(ctx
, 0);
1048 call_frame_t
*frame
= ctx
->call_ctx
;
1052 TRACE("%d\n", func_idx
);
1054 hres
= create_source_function(ctx
, frame
->bytecode
, frame
->function
->funcs
+func_idx
,
1055 frame
->scope
, &dispex
);
1059 return stack_push(ctx
, jsval_obj(dispex
));
1062 /* ECMA-262 3rd Edition 11.2.1 */
1063 static HRESULT
interp_array(script_ctx_t
*ctx
)
1074 namev
= stack_pop(ctx
);
1076 hres
= stack_pop_object(ctx
, &obj
);
1078 jsval_release(namev
);
1082 hres
= to_flat_string(ctx
, namev
, &name_str
, &name
);
1083 jsval_release(namev
);
1085 IDispatch_Release(obj
);
1089 hres
= disp_get_id(ctx
, obj
, name
, NULL
, 0, &id
);
1090 jsstr_release(name_str
);
1091 if(SUCCEEDED(hres
)) {
1092 hres
= disp_propget(ctx
, obj
, id
, &v
);
1093 }else if(hres
== DISP_E_UNKNOWNNAME
) {
1094 v
= jsval_undefined();
1097 IDispatch_Release(obj
);
1101 return stack_push(ctx
, v
);
1104 /* ECMA-262 3rd Edition 11.2.1 */
1105 static HRESULT
interp_member(script_ctx_t
*ctx
)
1107 const BSTR arg
= get_op_bstr(ctx
, 0);
1115 hres
= stack_pop_object(ctx
, &obj
);
1119 hres
= disp_get_id(ctx
, obj
, arg
, arg
, 0, &id
);
1120 if(SUCCEEDED(hres
)) {
1121 hres
= disp_propget(ctx
, obj
, id
, &v
);
1122 }else if(hres
== DISP_E_UNKNOWNNAME
) {
1123 v
= jsval_undefined();
1126 IDispatch_Release(obj
);
1130 return stack_push(ctx
, v
);
1133 /* ECMA-262 3rd Edition 11.2.1 */
1134 static HRESULT
interp_memberid(script_ctx_t
*ctx
)
1136 const unsigned arg
= get_op_uint(ctx
, 0);
1137 jsval_t objv
, namev
;
1147 namev
= stack_pop(ctx
);
1148 objv
= stack_pop(ctx
);
1150 hres
= to_object(ctx
, objv
, &obj
);
1151 jsval_release(objv
);
1152 if(SUCCEEDED(hres
)) {
1153 hres
= to_flat_string(ctx
, namev
, &name_str
, &name
);
1155 IDispatch_Release(obj
);
1157 jsval_release(namev
);
1161 hres
= disp_get_id(ctx
, obj
, name
, NULL
, arg
, &id
);
1162 jsstr_release(name_str
);
1163 if(SUCCEEDED(hres
)) {
1164 ref
.type
= EXPRVAL_IDREF
;
1165 ref
.u
.idref
.disp
= obj
;
1166 ref
.u
.idref
.id
= id
;
1168 IDispatch_Release(obj
);
1169 if(hres
== DISP_E_UNKNOWNNAME
&& !(arg
& fdexNameEnsure
)) {
1170 exprval_set_exception(&ref
, JS_E_INVALID_PROPERTY
);
1173 ERR("failed %08x\n", hres
);
1178 return stack_push_exprval(ctx
, &ref
);
1181 /* ECMA-262 3rd Edition 11.2.1 */
1182 static HRESULT
interp_refval(script_ctx_t
*ctx
)
1190 if(!stack_topn_exprval(ctx
, 0, &ref
))
1191 return JS_E_ILLEGAL_ASSIGN
;
1193 hres
= exprval_propget(ctx
, &ref
, &v
);
1197 return stack_push(ctx
, v
);
1200 /* ECMA-262 3rd Edition 11.2.2 */
1201 static HRESULT
interp_new(script_ctx_t
*ctx
)
1203 const unsigned argc
= get_op_uint(ctx
, 0);
1206 TRACE("%d\n", argc
);
1208 constr
= stack_topn(ctx
, argc
);
1210 /* NOTE: Should use to_object here */
1213 return JS_E_OBJECT_EXPECTED
;
1214 else if(!is_object_instance(constr
))
1215 return JS_E_INVALID_ACTION
;
1216 else if(!get_object(constr
))
1217 return JS_E_INVALID_PROPERTY
;
1220 return disp_call_value(ctx
, get_object(constr
), NULL
, DISPATCH_CONSTRUCT
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1221 argc
, stack_args(ctx
, argc
), &ctx
->acc
);
1224 /* ECMA-262 3rd Edition 11.2.3 */
1225 static HRESULT
interp_call(script_ctx_t
*ctx
)
1227 const unsigned argn
= get_op_uint(ctx
, 0);
1228 const int do_ret
= get_op_int(ctx
, 1);
1231 TRACE("%d %d\n", argn
, do_ret
);
1233 obj
= stack_topn(ctx
, argn
);
1234 if(!is_object_instance(obj
))
1235 return JS_E_INVALID_PROPERTY
;
1238 return disp_call_value(ctx
, get_object(obj
), NULL
, DISPATCH_METHOD
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1239 argn
, stack_args(ctx
, argn
), do_ret
? &ctx
->acc
: NULL
);
1242 /* ECMA-262 3rd Edition 11.2.3 */
1243 static HRESULT
interp_call_member(script_ctx_t
*ctx
)
1245 const unsigned argn
= get_op_uint(ctx
, 0);
1246 const int do_ret
= get_op_int(ctx
, 1);
1249 TRACE("%d %d\n", argn
, do_ret
);
1251 if(!stack_topn_exprval(ctx
, argn
, &ref
))
1255 return exprval_call(ctx
, &ref
, DISPATCH_METHOD
| DISPATCH_JSCRIPT_CALLEREXECSSOURCE
,
1256 argn
, stack_args(ctx
, argn
), do_ret
? &ctx
->acc
: NULL
);
1259 /* ECMA-262 3rd Edition 11.1.1 */
1260 static HRESULT
interp_this(script_ctx_t
*ctx
)
1262 IDispatch
*this_obj
= ctx
->call_ctx
->this_obj
;
1267 named_item_t
*item
= ctx
->call_ctx
->bytecode
->named_item
;
1270 this_obj
= (item
->flags
& SCRIPTITEM_CODEONLY
) ? to_disp(item
->script_obj
) : item
->disp
;
1272 this_obj
= lookup_global_host(ctx
);
1275 IDispatch_AddRef(this_obj
);
1276 return stack_push(ctx
, jsval_disp(this_obj
));
1279 static HRESULT
interp_identifier_ref(script_ctx_t
*ctx
, BSTR identifier
, unsigned flags
)
1284 hres
= identifier_eval(ctx
, identifier
, &exprval
);
1288 if(exprval
.type
== EXPRVAL_INVALID
&& (flags
& fdexNameEnsure
)) {
1289 jsdisp_t
*script_obj
= ctx
->global
;
1292 if(ctx
->call_ctx
->bytecode
->named_item
)
1293 script_obj
= ctx
->call_ctx
->bytecode
->named_item
->script_obj
;
1295 hres
= jsdisp_get_id(script_obj
, identifier
, fdexNameEnsure
, &id
);
1299 exprval_set_disp_ref(&exprval
, to_disp(script_obj
), id
);
1302 if(exprval
.type
== EXPRVAL_INVALID
||
1303 (exprval
.type
== EXPRVAL_JSVAL
&& ctx
->version
< SCRIPTLANGUAGEVERSION_ES5
)) {
1304 WARN("invalid ref\n");
1305 exprval_release(&exprval
);
1306 exprval_set_exception(&exprval
, JS_E_OBJECT_EXPECTED
);
1309 return stack_push_exprval(ctx
, &exprval
);
1312 static HRESULT
identifier_value(script_ctx_t
*ctx
, BSTR identifier
)
1318 hres
= identifier_eval(ctx
, identifier
, &exprval
);
1322 if(exprval
.type
== EXPRVAL_INVALID
)
1323 return throw_error(ctx
, exprval
.u
.hres
, identifier
);
1325 hres
= exprval_to_value(ctx
, &exprval
, &v
);
1329 return stack_push(ctx
, v
);
1332 static HRESULT
interp_local_ref(script_ctx_t
*ctx
)
1334 const int arg
= get_op_int(ctx
, 0);
1335 const unsigned flags
= get_op_uint(ctx
, 1);
1336 call_frame_t
*frame
= ctx
->call_ctx
;
1339 TRACE("%s\n", debugstr_w(local_name(frame
, arg
)));
1341 if(!frame
->base_scope
|| !frame
->base_scope
->frame
)
1342 return interp_identifier_ref(ctx
, local_name(frame
, arg
), flags
);
1344 ref
.type
= EXPRVAL_STACK_REF
;
1345 ref
.u
.off
= local_off(frame
, arg
);
1346 return stack_push_exprval(ctx
, &ref
);
1349 static HRESULT
interp_local(script_ctx_t
*ctx
)
1351 const int arg
= get_op_int(ctx
, 0);
1352 call_frame_t
*frame
= ctx
->call_ctx
;
1356 if(!frame
->base_scope
|| !frame
->base_scope
->frame
) {
1357 TRACE("%s\n", debugstr_w(local_name(frame
, arg
)));
1358 return identifier_value(ctx
, local_name(frame
, arg
));
1361 hres
= jsval_copy(ctx
->stack
[local_off(frame
, arg
)], ©
);
1365 TRACE("%s: %s\n", debugstr_w(local_name(frame
, arg
)), debugstr_jsval(copy
));
1366 return stack_push(ctx
, copy
);
1369 /* ECMA-262 3rd Edition 10.1.4 */
1370 static HRESULT
interp_ident(script_ctx_t
*ctx
)
1372 const BSTR arg
= get_op_bstr(ctx
, 0);
1374 TRACE("%s\n", debugstr_w(arg
));
1376 return identifier_value(ctx
, arg
);
1379 /* ECMA-262 3rd Edition 10.1.4 */
1380 static HRESULT
interp_identid(script_ctx_t
*ctx
)
1382 const BSTR arg
= get_op_bstr(ctx
, 0);
1383 const unsigned flags
= get_op_uint(ctx
, 1);
1385 TRACE("%s %x\n", debugstr_w(arg
), flags
);
1387 return interp_identifier_ref(ctx
, arg
, flags
);
1390 /* ECMA-262 3rd Edition 7.8.1 */
1391 static HRESULT
interp_null(script_ctx_t
*ctx
)
1395 return stack_push(ctx
, jsval_null());
1398 /* ECMA-262 3rd Edition 7.8.2 */
1399 static HRESULT
interp_bool(script_ctx_t
*ctx
)
1401 const int arg
= get_op_int(ctx
, 0);
1403 TRACE("%s\n", arg
? "true" : "false");
1405 return stack_push(ctx
, jsval_bool(arg
));
1408 /* ECMA-262 3rd Edition 7.8.3 */
1409 static HRESULT
interp_int(script_ctx_t
*ctx
)
1411 const int arg
= get_op_int(ctx
, 0);
1415 return stack_push(ctx
, jsval_number(arg
));
1418 /* ECMA-262 3rd Edition 7.8.3 */
1419 static HRESULT
interp_double(script_ctx_t
*ctx
)
1421 const double arg
= get_op_double(ctx
);
1423 TRACE("%lf\n", arg
);
1425 return stack_push(ctx
, jsval_number(arg
));
1428 /* ECMA-262 3rd Edition 7.8.4 */
1429 static HRESULT
interp_str(script_ctx_t
*ctx
)
1431 jsstr_t
*str
= get_op_str(ctx
, 0);
1433 TRACE("%s\n", debugstr_jsstr(str
));
1435 return stack_push(ctx
, jsval_string(jsstr_addref(str
)));
1438 /* ECMA-262 3rd Edition 7.8 */
1439 static HRESULT
interp_regexp(script_ctx_t
*ctx
)
1441 jsstr_t
*source
= get_op_str(ctx
, 0);
1442 const unsigned flags
= get_op_uint(ctx
, 1);
1446 TRACE("%s %x\n", debugstr_jsstr(source
), flags
);
1448 hres
= create_regexp(ctx
, source
, flags
, ®exp
);
1452 return stack_push(ctx
, jsval_obj(regexp
));
1455 /* ECMA-262 3rd Edition 11.1.4 */
1456 static HRESULT
interp_carray(script_ctx_t
*ctx
)
1458 const unsigned arg
= get_op_uint(ctx
, 0);
1464 hres
= create_array(ctx
, arg
, &array
);
1468 return stack_push(ctx
, jsval_obj(array
));
1471 static HRESULT
interp_carray_set(script_ctx_t
*ctx
)
1473 const unsigned index
= get_op_uint(ctx
, 0);
1474 jsval_t value
, array
;
1477 value
= stack_pop(ctx
);
1479 TRACE("[%u] = %s\n", index
, debugstr_jsval(value
));
1481 array
= stack_top(ctx
);
1482 assert(is_object_instance(array
));
1484 hres
= jsdisp_propput_idx(iface_to_jsdisp(get_object(array
)), index
, value
);
1485 jsval_release(value
);
1489 /* ECMA-262 3rd Edition 11.1.5 */
1490 static HRESULT
interp_new_obj(script_ctx_t
*ctx
)
1497 hres
= create_object(ctx
, NULL
, &obj
);
1501 return stack_push(ctx
, jsval_obj(obj
));
1504 /* ECMA-262 3rd Edition 11.1.5 */
1505 static HRESULT
interp_obj_prop(script_ctx_t
*ctx
)
1507 jsstr_t
*name_arg
= get_op_str(ctx
, 0);
1508 unsigned type
= get_op_uint(ctx
, 1);
1514 TRACE("%s\n", debugstr_jsstr(name_arg
));
1516 val
= stack_pop(ctx
);
1518 /* FIXME: we should pass it as jsstr_t */
1519 name
= jsstr_flatten(name_arg
);
1521 assert(is_object_instance(stack_top(ctx
)));
1522 obj
= as_jsdisp(get_object(stack_top(ctx
)));
1524 if(type
== PROPERTY_DEFINITION_VALUE
) {
1525 hres
= jsdisp_propput_name(obj
, name
, val
);
1527 property_desc_t desc
= {PROPF_ENUMERABLE
| PROPF_CONFIGURABLE
};
1530 assert(is_object_instance(val
));
1531 func
= iface_to_jsdisp(get_object(val
));
1533 desc
.mask
= desc
.flags
;
1534 if(type
== PROPERTY_DEFINITION_GETTER
) {
1535 desc
.explicit_getter
= TRUE
;
1538 desc
.explicit_setter
= TRUE
;
1542 hres
= jsdisp_define_property(obj
, name
, &desc
);
1543 jsdisp_release(func
);
1550 /* ECMA-262 3rd Edition 11.11 */
1551 static HRESULT
interp_cnd_nz(script_ctx_t
*ctx
)
1553 const unsigned arg
= get_op_uint(ctx
, 0);
1559 hres
= to_boolean(stack_top(ctx
), &b
);
1572 /* ECMA-262 3rd Edition 11.11 */
1573 static HRESULT
interp_cnd_z(script_ctx_t
*ctx
)
1575 const unsigned arg
= get_op_uint(ctx
, 0);
1581 hres
= to_boolean(stack_top(ctx
), &b
);
1594 /* ECMA-262 3rd Edition 11.10 */
1595 static HRESULT
interp_or(script_ctx_t
*ctx
)
1602 hres
= stack_pop_int(ctx
, &r
);
1606 hres
= stack_pop_int(ctx
, &l
);
1610 return stack_push(ctx
, jsval_number(l
|r
));
1613 /* ECMA-262 3rd Edition 11.10 */
1614 static HRESULT
interp_xor(script_ctx_t
*ctx
)
1621 hres
= stack_pop_int(ctx
, &r
);
1625 hres
= stack_pop_int(ctx
, &l
);
1629 return stack_push(ctx
, jsval_number(l
^r
));
1632 /* ECMA-262 3rd Edition 11.10 */
1633 static HRESULT
interp_and(script_ctx_t
*ctx
)
1640 hres
= stack_pop_int(ctx
, &r
);
1644 hres
= stack_pop_int(ctx
, &l
);
1648 return stack_push(ctx
, jsval_number(l
&r
));
1651 /* ECMA-262 3rd Edition 11.8.6 */
1652 static HRESULT
interp_instanceof(script_ctx_t
*ctx
)
1654 jsdisp_t
*obj
, *iter
, *tmp
= NULL
;
1660 if(!is_object_instance(v
) || !get_object(v
)) {
1662 return JS_E_FUNCTION_EXPECTED
;
1665 obj
= iface_to_jsdisp(get_object(v
));
1666 IDispatch_Release(get_object(v
));
1668 FIXME("non-jsdisp objects not supported\n");
1672 if(is_class(obj
, JSCLASS_FUNCTION
)) {
1673 hres
= jsdisp_propget_name(obj
, L
"prototype", &prot
);
1675 hres
= JS_E_FUNCTION_EXPECTED
;
1677 jsdisp_release(obj
);
1683 if(is_object_instance(prot
)) {
1684 if(is_object_instance(v
))
1685 tmp
= iface_to_jsdisp(get_object(v
));
1686 for(iter
= tmp
; !ret
&& iter
; iter
= iter
->prototype
) {
1687 hres
= disp_cmp(get_object(prot
), to_disp(iter
), &ret
);
1693 jsdisp_release(tmp
);
1695 FIXME("prototype is not an object\n");
1699 jsval_release(prot
);
1704 return stack_push(ctx
, jsval_bool(ret
));
1707 /* ECMA-262 3rd Edition 11.8.7 */
1708 static HRESULT
interp_in(script_ctx_t
*ctx
)
1719 obj
= stack_pop(ctx
);
1720 if(!is_object_instance(obj
) || !get_object(obj
)) {
1722 return JS_E_OBJECT_EXPECTED
;
1726 hres
= to_flat_string(ctx
, v
, &jsstr
, &str
);
1729 IDispatch_Release(get_object(obj
));
1733 hres
= disp_get_id(ctx
, get_object(obj
), str
, NULL
, 0, &id
);
1734 IDispatch_Release(get_object(obj
));
1735 jsstr_release(jsstr
);
1738 else if(hres
== DISP_E_UNKNOWNNAME
)
1743 return stack_push(ctx
, jsval_bool(ret
));
1746 /* ECMA-262 3rd Edition 11.6.1 */
1747 static HRESULT
interp_add(script_ctx_t
*ctx
)
1749 jsval_t l
, r
, lval
, rval
, ret
;
1752 rval
= stack_pop(ctx
);
1753 lval
= stack_pop(ctx
);
1755 TRACE("%s + %s\n", debugstr_jsval(lval
), debugstr_jsval(rval
));
1757 hres
= to_primitive(ctx
, lval
, &l
, NO_HINT
);
1758 if(SUCCEEDED(hres
)) {
1759 hres
= to_primitive(ctx
, rval
, &r
, NO_HINT
);
1763 jsval_release(lval
);
1764 jsval_release(rval
);
1768 if(is_string(l
) || is_string(r
)) {
1769 jsstr_t
*lstr
, *rstr
= NULL
;
1771 hres
= to_string(ctx
, l
, &lstr
);
1773 hres
= to_string(ctx
, r
, &rstr
);
1775 if(SUCCEEDED(hres
)) {
1778 ret_str
= jsstr_concat(lstr
, rstr
);
1780 ret
= jsval_string(ret_str
);
1782 hres
= E_OUTOFMEMORY
;
1785 jsstr_release(lstr
);
1787 jsstr_release(rstr
);
1791 hres
= to_number(ctx
, l
, &nl
);
1792 if(SUCCEEDED(hres
)) {
1793 hres
= to_number(ctx
, r
, &nr
);
1795 ret
= jsval_number(nl
+nr
);
1804 return stack_push(ctx
, ret
);
1807 /* ECMA-262 3rd Edition 11.6.2 */
1808 static HRESULT
interp_sub(script_ctx_t
*ctx
)
1815 hres
= stack_pop_number(ctx
, &r
);
1819 hres
= stack_pop_number(ctx
, &l
);
1823 return stack_push(ctx
, jsval_number(l
-r
));
1826 /* ECMA-262 3rd Edition 11.5.1 */
1827 static HRESULT
interp_mul(script_ctx_t
*ctx
)
1834 hres
= stack_pop_number(ctx
, &r
);
1838 hres
= stack_pop_number(ctx
, &l
);
1842 return stack_push(ctx
, jsval_number(l
*r
));
1845 /* ECMA-262 3rd Edition 11.5.2 */
1846 static HRESULT
interp_div(script_ctx_t
*ctx
)
1853 hres
= stack_pop_number(ctx
, &r
);
1857 hres
= stack_pop_number(ctx
, &l
);
1861 return stack_push(ctx
, jsval_number(l
/r
));
1864 /* ECMA-262 3rd Edition 11.5.3 */
1865 static HRESULT
interp_mod(script_ctx_t
*ctx
)
1872 hres
= stack_pop_number(ctx
, &r
);
1876 hres
= stack_pop_number(ctx
, &l
);
1880 return stack_push(ctx
, jsval_number(fmod(l
, r
)));
1883 /* ECMA-262 3rd Edition 11.4.2 */
1884 static HRESULT
interp_delete(script_ctx_t
*ctx
)
1886 jsval_t objv
, namev
;
1894 namev
= stack_pop(ctx
);
1895 objv
= stack_pop(ctx
);
1897 hres
= to_object(ctx
, objv
, &obj
);
1898 jsval_release(objv
);
1900 jsval_release(namev
);
1904 hres
= to_string(ctx
, namev
, &name
);
1905 jsval_release(namev
);
1907 IDispatch_Release(obj
);
1911 hres
= disp_delete_name(ctx
, obj
, name
, &ret
);
1912 IDispatch_Release(obj
);
1913 jsstr_release(name
);
1917 return stack_push(ctx
, jsval_bool(ret
));
1920 /* ECMA-262 3rd Edition 11.4.2 */
1921 static HRESULT
interp_delete_ident(script_ctx_t
*ctx
)
1923 const BSTR arg
= get_op_bstr(ctx
, 0);
1928 TRACE("%s\n", debugstr_w(arg
));
1930 hres
= identifier_eval(ctx
, arg
, &exprval
);
1934 switch(exprval
.type
) {
1935 case EXPRVAL_STACK_REF
:
1939 hres
= disp_delete(exprval
.u
.idref
.disp
, exprval
.u
.idref
.id
, &ret
);
1940 IDispatch_Release(exprval
.u
.idref
.disp
);
1944 case EXPRVAL_INVALID
:
1948 FIXME("Unsupported exprval\n");
1949 exprval_release(&exprval
);
1954 return stack_push(ctx
, jsval_bool(ret
));
1957 /* ECMA-262 3rd Edition 11.4.2 */
1958 static HRESULT
interp_void(script_ctx_t
*ctx
)
1963 return stack_push(ctx
, jsval_undefined());
1966 /* ECMA-262 3rd Edition 11.4.3 */
1967 static HRESULT
typeof_string(jsval_t v
, const WCHAR
**ret
)
1969 switch(jsval_type(v
)) {
1971 *ret
= L
"undefined";
1979 if(get_object(v
) && (dispex
= iface_to_jsdisp(get_object(v
)))) {
1980 *ret
= is_class(dispex
, JSCLASS_FUNCTION
) ? L
"function" : L
"object";
1981 jsdisp_release(dispex
);
1997 FIXME("unhandled variant %s\n", debugstr_variant(get_variant(v
)));
2004 /* ECMA-262 3rd Edition 11.4.3 */
2005 static HRESULT
interp_typeofid(script_ctx_t
*ctx
)
2014 if(!stack_pop_exprval(ctx
, &ref
))
2015 return stack_push(ctx
, jsval_string(jsstr_undefined()));
2017 hres
= exprval_propget(ctx
, &ref
, &v
);
2018 exprval_release(&ref
);
2020 return stack_push_string(ctx
, L
"unknown");
2022 hres
= typeof_string(v
, &ret
);
2027 return stack_push_string(ctx
, ret
);
2030 /* ECMA-262 3rd Edition 11.4.3 */
2031 static HRESULT
interp_typeofident(script_ctx_t
*ctx
)
2033 const BSTR arg
= get_op_bstr(ctx
, 0);
2039 TRACE("%s\n", debugstr_w(arg
));
2041 hres
= identifier_eval(ctx
, arg
, &exprval
);
2045 if(exprval
.type
== EXPRVAL_INVALID
)
2046 return stack_push(ctx
, jsval_string(jsstr_undefined()));
2048 hres
= exprval_to_value(ctx
, &exprval
, &v
);
2052 hres
= typeof_string(v
, &ret
);
2057 return stack_push_string(ctx
, ret
);
2060 /* ECMA-262 3rd Edition 11.4.3 */
2061 static HRESULT
interp_typeof(script_ctx_t
*ctx
)
2070 hres
= typeof_string(v
, &ret
);
2075 return stack_push_string(ctx
, ret
);
2078 /* ECMA-262 3rd Edition 11.4.7 */
2079 static HRESULT
interp_minus(script_ctx_t
*ctx
)
2086 hres
= stack_pop_number(ctx
, &n
);
2090 return stack_push(ctx
, jsval_number(-n
));
2093 /* ECMA-262 3rd Edition 11.4.6 */
2094 static HRESULT
interp_tonum(script_ctx_t
*ctx
)
2103 hres
= to_number(ctx
, v
, &n
);
2108 return stack_push(ctx
, jsval_number(n
));
2111 /* ECMA-262 3rd Edition 11.3.1 */
2112 static HRESULT
interp_postinc(script_ctx_t
*ctx
)
2114 const int arg
= get_op_int(ctx
, 0);
2121 if(!stack_pop_exprval(ctx
, &ref
))
2122 return JS_E_OBJECT_EXPECTED
;
2124 hres
= exprval_propget(ctx
, &ref
, &v
);
2125 if(SUCCEEDED(hres
)) {
2128 hres
= to_number(ctx
, v
, &n
);
2130 hres
= exprval_propput(ctx
, &ref
, jsval_number(n
+(double)arg
));
2134 exprval_release(&ref
);
2138 return stack_push(ctx
, v
);
2141 /* ECMA-262 3rd Edition 11.4.4, 11.4.5 */
2142 static HRESULT
interp_preinc(script_ctx_t
*ctx
)
2144 const int arg
= get_op_int(ctx
, 0);
2152 if(!stack_pop_exprval(ctx
, &ref
))
2153 return JS_E_OBJECT_EXPECTED
;
2155 hres
= exprval_propget(ctx
, &ref
, &v
);
2156 if(SUCCEEDED(hres
)) {
2159 hres
= to_number(ctx
, v
, &n
);
2161 if(SUCCEEDED(hres
)) {
2162 ret
= n
+(double)arg
;
2163 hres
= exprval_propput(ctx
, &ref
, jsval_number(ret
));
2166 exprval_release(&ref
);
2170 return stack_push(ctx
, jsval_number(ret
));
2173 /* ECMA-262 3rd Edition 11.9.3 */
2174 static HRESULT
equal_values(script_ctx_t
*ctx
, jsval_t lval
, jsval_t rval
, BOOL
*ret
)
2176 if(jsval_type(lval
) == jsval_type(rval
) || (is_number(lval
) && is_number(rval
)))
2177 return jsval_strict_equal(lval
, rval
, ret
);
2179 /* FIXME: NULL disps should be handled in more general way */
2180 if(is_object_instance(lval
) && !get_object(lval
))
2181 return equal_values(ctx
, jsval_null(), rval
, ret
);
2182 if(is_object_instance(rval
) && !get_object(rval
))
2183 return equal_values(ctx
, lval
, jsval_null(), ret
);
2185 if((is_null(lval
) && is_undefined(rval
)) || (is_undefined(lval
) && is_null(rval
))) {
2190 if(is_string(lval
) && is_number(rval
)) {
2194 hres
= to_number(ctx
, lval
, &n
);
2198 /* FIXME: optimize */
2199 return equal_values(ctx
, jsval_number(n
), rval
, ret
);
2202 if(is_string(rval
) && is_number(lval
)) {
2206 hres
= to_number(ctx
, rval
, &n
);
2210 /* FIXME: optimize */
2211 return equal_values(ctx
, lval
, jsval_number(n
), ret
);
2215 return equal_values(ctx
, lval
, jsval_number(get_bool(rval
) ? 1 : 0), ret
);
2218 return equal_values(ctx
, jsval_number(get_bool(lval
) ? 1 : 0), rval
, ret
);
2221 if(is_object_instance(rval
) && (is_string(lval
) || is_number(lval
))) {
2225 hres
= to_primitive(ctx
, rval
, &prim
, NO_HINT
);
2229 hres
= equal_values(ctx
, lval
, prim
, ret
);
2230 jsval_release(prim
);
2235 if(is_object_instance(lval
) && (is_string(rval
) || is_number(rval
))) {
2239 hres
= to_primitive(ctx
, lval
, &prim
, NO_HINT
);
2243 hres
= equal_values(ctx
, prim
, rval
, ret
);
2244 jsval_release(prim
);
2253 /* ECMA-262 3rd Edition 11.9.1 */
2254 static HRESULT
interp_eq(script_ctx_t
*ctx
)
2263 TRACE("%s == %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2265 hres
= equal_values(ctx
, l
, r
, &b
);
2271 return stack_push(ctx
, jsval_bool(b
));
2274 /* ECMA-262 3rd Edition 11.9.2 */
2275 static HRESULT
interp_neq(script_ctx_t
*ctx
)
2284 TRACE("%s != %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2286 hres
= equal_values(ctx
, l
, r
, &b
);
2292 return stack_push(ctx
, jsval_bool(!b
));
2295 /* ECMA-262 3rd Edition 11.9.4 */
2296 static HRESULT
interp_eq2(script_ctx_t
*ctx
)
2305 TRACE("%s === %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2307 hres
= jsval_strict_equal(r
, l
, &b
);
2313 return stack_push(ctx
, jsval_bool(b
));
2316 /* ECMA-262 3rd Edition 11.9.5 */
2317 static HRESULT
interp_neq2(script_ctx_t
*ctx
)
2328 hres
= jsval_strict_equal(r
, l
, &b
);
2334 return stack_push(ctx
, jsval_bool(!b
));
2337 /* ECMA-262 3rd Edition 11.8.5 */
2338 static HRESULT
less_eval(script_ctx_t
*ctx
, jsval_t lval
, jsval_t rval
, BOOL greater
, BOOL
*ret
)
2344 hres
= to_primitive(ctx
, lval
, &l
, NO_HINT
);
2348 hres
= to_primitive(ctx
, rval
, &r
, NO_HINT
);
2354 if(is_string(l
) && is_string(r
)) {
2355 *ret
= (jsstr_cmp(get_string(l
), get_string(r
)) < 0) ^ greater
;
2356 jsstr_release(get_string(l
));
2357 jsstr_release(get_string(r
));
2361 hres
= to_number(ctx
, l
, &ln
);
2364 hres
= to_number(ctx
, r
, &rn
);
2369 *ret
= !isnan(ln
) && !isnan(rn
) && ((ln
< rn
) ^ greater
);
2373 /* ECMA-262 3rd Edition 11.8.1 */
2374 static HRESULT
interp_lt(script_ctx_t
*ctx
)
2383 TRACE("%s < %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2385 hres
= less_eval(ctx
, l
, r
, FALSE
, &b
);
2391 return stack_push(ctx
, jsval_bool(b
));
2394 /* ECMA-262 3rd Edition 11.8.1 */
2395 static HRESULT
interp_lteq(script_ctx_t
*ctx
)
2404 TRACE("%s <= %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2406 hres
= less_eval(ctx
, r
, l
, TRUE
, &b
);
2412 return stack_push(ctx
, jsval_bool(b
));
2415 /* ECMA-262 3rd Edition 11.8.2 */
2416 static HRESULT
interp_gt(script_ctx_t
*ctx
)
2425 TRACE("%s > %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2427 hres
= less_eval(ctx
, r
, l
, FALSE
, &b
);
2433 return stack_push(ctx
, jsval_bool(b
));
2436 /* ECMA-262 3rd Edition 11.8.4 */
2437 static HRESULT
interp_gteq(script_ctx_t
*ctx
)
2446 TRACE("%s >= %s\n", debugstr_jsval(l
), debugstr_jsval(r
));
2448 hres
= less_eval(ctx
, l
, r
, TRUE
, &b
);
2454 return stack_push(ctx
, jsval_bool(b
));
2457 /* ECMA-262 3rd Edition 11.4.8 */
2458 static HRESULT
interp_bneg(script_ctx_t
*ctx
)
2467 hres
= to_int32(ctx
, v
, &i
);
2472 return stack_push(ctx
, jsval_number(~i
));
2475 /* ECMA-262 3rd Edition 11.4.9 */
2476 static HRESULT
interp_neg(script_ctx_t
*ctx
)
2485 hres
= to_boolean(v
, &b
);
2490 return stack_push(ctx
, jsval_bool(!b
));
2493 /* ECMA-262 3rd Edition 11.7.1 */
2494 static HRESULT
interp_lshift(script_ctx_t
*ctx
)
2500 hres
= stack_pop_uint(ctx
, &r
);
2504 hres
= stack_pop_int(ctx
, &l
);
2508 return stack_push(ctx
, jsval_number(l
<< (r
&0x1f)));
2511 /* ECMA-262 3rd Edition 11.7.2 */
2512 static HRESULT
interp_rshift(script_ctx_t
*ctx
)
2518 hres
= stack_pop_uint(ctx
, &r
);
2522 hres
= stack_pop_int(ctx
, &l
);
2526 return stack_push(ctx
, jsval_number(l
>> (r
&0x1f)));
2529 /* ECMA-262 3rd Edition 11.7.3 */
2530 static HRESULT
interp_rshift2(script_ctx_t
*ctx
)
2535 hres
= stack_pop_uint(ctx
, &r
);
2539 hres
= stack_pop_uint(ctx
, &l
);
2543 return stack_push(ctx
, jsval_number(l
>> (r
&0x1f)));
2546 /* ECMA-262 3rd Edition 9.8 */
2547 static HRESULT
interp_to_string(script_ctx_t
*ctx
)
2554 TRACE("%s\n", debugstr_jsval(v
));
2555 hres
= to_string(ctx
, v
, &str
);
2558 WARN("failed %08x\n", hres
);
2562 return stack_push(ctx
, jsval_string(str
));
2565 /* ECMA-262 3rd Edition 11.13.1 */
2566 static HRESULT
interp_assign(script_ctx_t
*ctx
)
2576 if(!stack_pop_exprval(ctx
, &ref
)) {
2578 return JS_E_ILLEGAL_ASSIGN
;
2581 hres
= exprval_propput(ctx
, &ref
, v
);
2582 exprval_release(&ref
);
2588 return stack_push(ctx
, v
);
2591 /* ECMA-262 3rd Edition 11.13.1 */
2592 static HRESULT
interp_set_member(script_ctx_t
*ctx
)
2594 jsval_t objv
, namev
, value
;
2599 value
= stack_pop(ctx
);
2600 namev
= stack_pop(ctx
);
2601 assert(is_string(namev
));
2602 objv
= stack_pop(ctx
);
2604 TRACE("%s.%s = %s\n", debugstr_jsval(objv
), debugstr_jsval(namev
), debugstr_jsval(value
));
2606 hres
= to_object(ctx
, objv
, &obj
);
2607 jsval_release(objv
);
2608 if(SUCCEEDED(hres
) && !(name
= jsstr_flatten(get_string(namev
)))) {
2609 IDispatch_Release(obj
);
2610 hres
= E_OUTOFMEMORY
;
2612 if(SUCCEEDED(hres
)) {
2613 hres
= disp_propput_name(ctx
, obj
, name
, value
);
2614 IDispatch_Release(obj
);
2615 jsstr_release(get_string(namev
));
2618 WARN("failed %08x\n", hres
);
2619 jsval_release(value
);
2623 return stack_push(ctx
, value
);
2626 /* JScript extension */
2627 static HRESULT
interp_assign_call(script_ctx_t
*ctx
)
2629 const unsigned argc
= get_op_uint(ctx
, 0);
2634 TRACE("%u\n", argc
);
2636 if(!stack_topn_exprval(ctx
, argc
+1, &ref
))
2637 return JS_E_ILLEGAL_ASSIGN
;
2639 hres
= exprval_call(ctx
, &ref
, DISPATCH_PROPERTYPUT
, argc
+1, stack_args(ctx
, argc
+1), NULL
);
2644 stack_popn(ctx
, argc
+2);
2645 return stack_push(ctx
, v
);
2648 static HRESULT
interp_undefined(script_ctx_t
*ctx
)
2652 return stack_push(ctx
, jsval_undefined());
2655 static HRESULT
interp_jmp(script_ctx_t
*ctx
)
2657 const unsigned arg
= get_op_uint(ctx
, 0);
2665 static HRESULT
interp_jmp_z(script_ctx_t
*ctx
)
2667 const unsigned arg
= get_op_uint(ctx
, 0);
2675 hres
= to_boolean(v
, &b
);
2687 static HRESULT
interp_pop(script_ctx_t
*ctx
)
2689 const unsigned arg
= get_op_uint(ctx
, 0);
2693 stack_popn(ctx
, arg
);
2697 static HRESULT
interp_ret(script_ctx_t
*ctx
)
2699 const unsigned clear_ret
= get_op_uint(ctx
, 0);
2700 call_frame_t
*frame
= ctx
->call_ctx
;
2705 jsval_release(steal_ret(frame
));
2707 if((frame
->flags
& EXEC_CONSTRUCTOR
) && !is_object_instance(frame
->ret
)) {
2708 jsval_release(frame
->ret
);
2709 IDispatch_AddRef(frame
->this_obj
);
2710 frame
->ret
= jsval_disp(frame
->this_obj
);
2717 static HRESULT
interp_setret(script_ctx_t
*ctx
)
2719 call_frame_t
*frame
= ctx
->call_ctx
;
2723 jsval_release(frame
->ret
);
2724 frame
->ret
= stack_pop(ctx
);
2728 static HRESULT
interp_push_acc(script_ctx_t
*ctx
)
2734 hres
= stack_push(ctx
, ctx
->acc
);
2736 ctx
->acc
= jsval_undefined();
2740 typedef HRESULT (*op_func_t
)(script_ctx_t
*);
2742 static const op_func_t op_funcs
[] = {
2743 #define X(x,a,b,c) interp_##x,
2748 static const unsigned op_move
[] = {
2749 #define X(a,x,b,c) x,
2754 static void pop_call_frame(script_ctx_t
*ctx
)
2756 call_frame_t
*frame
= ctx
->call_ctx
;
2758 frame
->stack_base
-= frame
->pop_locals
+ frame
->pop_variables
;
2760 assert(frame
->scope
== frame
->base_scope
);
2762 /* If current scope will be kept alive, we need to transfer local variables to its variable object. */
2763 if(frame
->scope
&& frame
->scope
->ref
> 1) {
2764 HRESULT hres
= detach_variable_object(ctx
, frame
, TRUE
);
2766 ERR("Failed to detach variable object: %08x\n", hres
);
2769 if(frame
->arguments_obj
)
2770 detach_arguments_object(frame
->arguments_obj
);
2772 scope_release(frame
->scope
);
2774 if(frame
->pop_variables
)
2775 stack_popn(ctx
, frame
->pop_variables
);
2776 stack_popn(ctx
, frame
->pop_locals
);
2778 ctx
->call_ctx
= frame
->prev_frame
;
2780 if(frame
->function_instance
)
2781 jsdisp_release(frame
->function_instance
);
2782 if(frame
->variable_obj
)
2783 jsdisp_release(frame
->variable_obj
);
2785 IDispatch_Release(frame
->this_obj
);
2786 jsval_release(frame
->ret
);
2787 release_bytecode(frame
->bytecode
);
2791 static void print_backtrace(script_ctx_t
*ctx
)
2793 unsigned depth
= 0, i
, line
, char_pos
;
2794 call_frame_t
*frame
;
2796 for(frame
= ctx
->call_ctx
; frame
; frame
= frame
->prev_frame
) {
2797 WARN("%u\t", depth
);
2801 WARN("%p->", frame
->this_obj
);
2802 WARN("%s(", frame
->function
->name
? debugstr_w(frame
->function
->name
) : "[unnamed]");
2803 if(frame
->base_scope
&& frame
->base_scope
->frame
) {
2804 for(i
=0; i
< frame
->argc
; i
++) {
2805 if(i
< frame
->function
->param_cnt
)
2806 WARN("%s%s=%s", i
? ", " : "", debugstr_w(frame
->function
->params
[i
]),
2807 debugstr_jsval(ctx
->stack
[local_off(frame
, -i
-1)]));
2809 WARN("%s%s", i
? ", " : "", debugstr_jsval(ctx
->stack
[local_off(frame
, -i
-1)]));
2812 WARN("[detached frame]");
2814 line
= get_location_line(frame
->bytecode
, frame
->bytecode
->instrs
[frame
->ip
].loc
, &char_pos
);
2815 WARN(") context %s line %u char %u\n", wine_dbgstr_longlong(frame
->bytecode
->source_context
), line
, char_pos
);
2817 if(!(frame
->flags
& EXEC_RETURN_TO_INTERP
)) {
2818 WARN("%u\t[native code]\n", depth
);
2824 static HRESULT
unwind_exception(script_ctx_t
*ctx
, HRESULT exception_hres
)
2826 except_frame_t
*except_frame
;
2827 jsexcept_t
*ei
= ctx
->ei
;
2828 call_frame_t
*frame
;
2833 if(WARN_ON(jscript
)) {
2834 jsdisp_t
*error_obj
;
2837 WARN("Exception %08x %s", exception_hres
, debugstr_jsval(ei
->valid_value
? ei
->value
: jsval_undefined()));
2838 if(ei
->valid_value
&& jsval_type(ei
->value
) == JSV_OBJECT
) {
2839 error_obj
= to_jsdisp(get_object(ei
->value
));
2841 hres
= jsdisp_propget_name(error_obj
, L
"message", &msg
);
2842 if(SUCCEEDED(hres
)) {
2843 WARN(" (message %s)", debugstr_jsval(msg
));
2850 print_backtrace(ctx
);
2853 frame
= ctx
->call_ctx
;
2854 if(exception_hres
!= DISP_E_EXCEPTION
)
2855 throw_error(ctx
, exception_hres
, NULL
);
2856 set_error_location(ei
, frame
->bytecode
, frame
->bytecode
->instrs
[frame
->ip
].loc
, IDS_RUNTIME_ERROR
, NULL
);
2858 while(!frame
->except_frame
) {
2861 while(frame
->scope
!= frame
->base_scope
)
2862 scope_pop(&frame
->scope
);
2864 stack_popn(ctx
, ctx
->stack_top
-frame
->stack_base
);
2866 flags
= frame
->flags
;
2867 pop_call_frame(ctx
);
2868 if(!(flags
& EXEC_RETURN_TO_INTERP
))
2869 return DISP_E_EXCEPTION
;
2870 frame
= ctx
->call_ctx
;
2873 except_frame
= frame
->except_frame
;
2874 catch_off
= except_frame
->catch_off
;
2876 assert(except_frame
->stack_top
<= ctx
->stack_top
);
2877 stack_popn(ctx
, ctx
->stack_top
- except_frame
->stack_top
);
2879 while(except_frame
->scope
!= frame
->scope
)
2880 scope_pop(&frame
->scope
);
2882 frame
->ip
= catch_off
? catch_off
: except_frame
->finally_off
;
2883 assert(!catch_off
|| frame
->bytecode
->instrs
[frame
->ip
].op
== OP_enter_catch
);
2885 if(ei
->valid_value
) {
2886 except_val
= ctx
->ei
->value
;
2887 ei
->valid_value
= FALSE
;
2890 if(!(err
= create_builtin_error(ctx
)))
2891 return E_OUTOFMEMORY
;
2892 except_val
= jsval_obj(err
);
2895 /* keep current except_frame if we're entering catch block with finally block associated */
2896 if(catch_off
&& except_frame
->finally_off
) {
2897 except_frame
->catch_off
= 0;
2899 frame
->except_frame
= except_frame
->next
;
2900 heap_free(except_frame
);
2903 hres
= stack_push(ctx
, except_val
);
2908 hres
= stack_push(ctx
, jsval_bool(FALSE
));
2912 static HRESULT
enter_bytecode(script_ctx_t
*ctx
, jsval_t
*r
)
2914 call_frame_t
*frame
;
2916 HRESULT hres
= S_OK
;
2921 frame
= ctx
->call_ctx
;
2922 op
= frame
->bytecode
->instrs
[frame
->ip
].op
;
2923 hres
= op_funcs
[op
](ctx
);
2925 hres
= unwind_exception(ctx
, hres
);
2928 }else if(frame
->ip
== -1) {
2929 const DWORD return_to_interp
= frame
->flags
& EXEC_RETURN_TO_INTERP
;
2931 assert(ctx
->stack_top
== frame
->stack_base
);
2932 assert(frame
->scope
== frame
->base_scope
);
2934 if(return_to_interp
) {
2935 jsval_release(ctx
->acc
);
2936 ctx
->acc
= steal_ret(frame
);
2938 *r
= steal_ret(frame
);
2940 pop_call_frame(ctx
);
2941 if(!return_to_interp
)
2944 frame
->ip
+= op_move
[op
];
2951 static HRESULT
bind_event_target(script_ctx_t
*ctx
, function_code_t
*func
, jsdisp_t
*func_obj
)
2953 IBindEventHandler
*target
;
2959 hres
= identifier_eval(ctx
, func
->event_target
, &exprval
);
2963 hres
= exprval_to_value(ctx
, &exprval
, &v
);
2967 if(!is_object_instance(v
)) {
2968 FIXME("Can't bind to %s\n", debugstr_jsval(v
));
2972 disp
= get_object(v
);
2973 hres
= IDispatch_QueryInterface(disp
, &IID_IBindEventHandler
, (void**)&target
);
2974 if(SUCCEEDED(hres
)) {
2975 hres
= IBindEventHandler_BindHandler(target
, func
->name
, (IDispatch
*)&func_obj
->IDispatchEx_iface
);
2976 IBindEventHandler_Release(target
);
2978 WARN("BindEvent failed: %08x\n", hres
);
2980 FIXME("No IBindEventHandler, not yet supported binding\n");
2983 IDispatch_Release(disp
);
2987 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
)
2989 const unsigned orig_stack
= ctx
->stack_top
;
2990 scope_chain_t
*scope
;
2995 /* If arguments are already on the stack, we may use them. */
2996 if(argv
+ argc
== ctx
->stack
+ ctx
->stack_top
) {
2997 frame
->arguments_off
= argv
- ctx
->stack
;
3000 frame
->arguments_off
= ctx
->stack_top
;
3001 for(i
= 0; i
< argc
; i
++) {
3002 hres
= jsval_copy(argv
[i
], &v
);
3004 hres
= stack_push(ctx
, v
);
3012 /* If fewer than declared arguments were passed, fill remaining with undefined value. */
3013 for(; i
< frame
->function
->param_cnt
; i
++) {
3014 hres
= stack_push(ctx
, jsval_undefined());
3016 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
3021 frame
->pop_locals
= ctx
->stack_top
- orig_stack
;
3023 frame
->variables_off
= ctx
->stack_top
;
3025 for(i
= 0; i
< frame
->function
->var_cnt
; i
++) {
3026 hres
= stack_push(ctx
, jsval_undefined());
3028 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
3033 frame
->pop_variables
= i
;
3035 hres
= scope_push(scope_chain
, variable_object
, to_disp(variable_object
), &scope
);
3037 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
3041 for(i
= 0; i
< frame
->function
->func_cnt
; i
++) {
3042 if(frame
->function
->funcs
[i
].name
&& !frame
->function
->funcs
[i
].event_target
) {
3046 hres
= create_source_function(ctx
, frame
->bytecode
, frame
->function
->funcs
+i
, scope
, &func_obj
);
3048 stack_popn(ctx
, ctx
->stack_top
- orig_stack
);
3049 scope_release(scope
);
3053 off
= local_off(frame
, frame
->function
->funcs
[i
].local_ref
);
3054 jsval_release(ctx
->stack
[off
]);
3055 ctx
->stack
[off
] = jsval_obj(func_obj
);
3059 scope
->frame
= frame
;
3060 frame
->base_scope
= frame
->scope
= scope
;
3064 HRESULT
exec_source(script_ctx_t
*ctx
, DWORD flags
, bytecode_t
*bytecode
, function_code_t
*function
, scope_chain_t
*scope
,
3065 IDispatch
*this_obj
, jsdisp_t
*function_instance
, unsigned argc
, jsval_t
*argv
, jsval_t
*r
)
3067 jsdisp_t
*variable_obj
;
3068 call_frame_t
*frame
;
3073 ctx
->stack
= heap_alloc(stack_size
* sizeof(*ctx
->stack
));
3075 return E_OUTOFMEMORY
;
3078 if(bytecode
->named_item
) {
3079 if(!bytecode
->named_item
->script_obj
) {
3080 hres
= create_named_item_script_obj(ctx
, bytecode
->named_item
);
3081 if(FAILED(hres
)) return hres
;
3085 if(!ctx
->ei
->enter_notified
) {
3086 ctx
->ei
->enter_notified
= TRUE
;
3087 IActiveScriptSite_OnEnterScript(ctx
->site
);
3090 for(i
= 0; i
< function
->func_cnt
; i
++) {
3093 if(!function
->funcs
[i
].event_target
)
3096 hres
= create_source_function(ctx
, bytecode
, function
->funcs
+i
, scope
, &func_obj
);
3100 hres
= bind_event_target(ctx
, function
->funcs
+i
, func_obj
);
3101 jsdisp_release(func_obj
);
3106 if((flags
& EXEC_EVAL
) && ctx
->call_ctx
) {
3107 variable_obj
= jsdisp_addref(ctx
->call_ctx
->variable_obj
);
3108 }else if(!(flags
& (EXEC_GLOBAL
| EXEC_EVAL
))) {
3109 hres
= create_dispex(ctx
, NULL
, NULL
, &variable_obj
);
3110 if(FAILED(hres
)) return hres
;
3111 }else if(bytecode
->named_item
) {
3112 variable_obj
= jsdisp_addref(bytecode
->named_item
->script_obj
);
3114 variable_obj
= jsdisp_addref(ctx
->global
);
3117 if(flags
& (EXEC_GLOBAL
| EXEC_EVAL
)) {
3118 named_item_t
*item
= bytecode
->named_item
;
3121 for(i
=0; i
< function
->var_cnt
; i
++) {
3122 TRACE("[%d] %s %d\n", i
, debugstr_w(function
->variables
[i
].name
), function
->variables
[i
].func_id
);
3123 if(function
->variables
[i
].func_id
!= -1) {
3126 hres
= create_source_function(ctx
, bytecode
, function
->funcs
+function
->variables
[i
].func_id
, scope
, &func_obj
);
3130 hres
= jsdisp_propput_name(variable_obj
, function
->variables
[i
].name
, jsval_obj(func_obj
));
3131 jsdisp_release(func_obj
);
3135 if(item
&& !(item
->flags
& SCRIPTITEM_CODEONLY
)
3136 && SUCCEEDED(disp_get_id(ctx
, item
->disp
, function
->variables
[i
].name
, function
->variables
[i
].name
, 0, &id
)))
3139 if(!item
&& (flags
& EXEC_GLOBAL
) && lookup_global_members(ctx
, function
->variables
[i
].name
, NULL
))
3142 hres
= jsdisp_get_id(variable_obj
, function
->variables
[i
].name
, fdexNameEnsure
, &id
);
3148 /* ECMA-262 3rd Edition 11.2.3.7 */
3152 jsthis
= iface_to_jsdisp(this_obj
);
3154 if(jsthis
->builtin_info
->class == JSCLASS_GLOBAL
|| jsthis
->builtin_info
->class == JSCLASS_NONE
)
3156 jsdisp_release(jsthis
);
3160 if(ctx
->call_ctx
&& (flags
& EXEC_EVAL
)) {
3161 hres
= detach_variable_object(ctx
, ctx
->call_ctx
, FALSE
);
3166 frame
= heap_alloc_zero(sizeof(*frame
));
3168 hres
= E_OUTOFMEMORY
;
3172 frame
->function
= function
;
3173 frame
->ret
= jsval_undefined();
3175 frame
->bytecode
= bytecode_addref(bytecode
);
3177 if(!(flags
& (EXEC_GLOBAL
|EXEC_EVAL
))) {
3178 hres
= setup_scope(ctx
, frame
, scope
, variable_obj
, argc
, argv
);
3180 release_bytecode(frame
->bytecode
);
3185 frame
->base_scope
= frame
->scope
= scope_addref(scope
);
3188 frame
->ip
= function
->instr_off
;
3189 frame
->stack_base
= ctx
->stack_top
;
3191 frame
->this_obj
= this_obj
;
3192 IDispatch_AddRef(frame
->this_obj
);
3195 if(function_instance
)
3196 frame
->function_instance
= jsdisp_addref(function_instance
);
3198 frame
->flags
= flags
;
3199 frame
->variable_obj
= variable_obj
;
3201 frame
->prev_frame
= ctx
->call_ctx
;
3202 ctx
->call_ctx
= frame
;
3204 if(flags
& EXEC_RETURN_TO_INTERP
) {
3206 * We're called directly from interpreter, so we may just setup call frame and return.
3207 * Already running interpreter will take care of execution.
3210 *r
= jsval_undefined();
3214 return enter_bytecode(ctx
, r
);
3217 jsdisp_release(variable_obj
);