2008-09-03 00:25:21 +02:00
|
|
|
/*
|
2011-12-30 11:20:43 +01:00
|
|
|
* Copyright 2008,2011 Jacek Caban for CodeWeavers
|
2008-09-03 00:25:21 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2008-10-16 21:31:30 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2008-10-09 01:09:17 +02:00
|
|
|
#include <math.h>
|
2011-11-18 14:09:44 +01:00
|
|
|
#include <assert.h>
|
2008-10-09 01:09:17 +02:00
|
|
|
|
2008-09-03 00:25:21 +02:00
|
|
|
#include "jscript.h"
|
|
|
|
#include "engine.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(jscript);
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
static const WCHAR booleanW[] = {'b','o','o','l','e','a','n',0};
|
|
|
|
static const WCHAR functionW[] = {'f','u','n','c','t','i','o','n',0};
|
|
|
|
static const WCHAR numberW[] = {'n','u','m','b','e','r',0};
|
|
|
|
static const WCHAR objectW[] = {'o','b','j','e','c','t',0};
|
|
|
|
static const WCHAR stringW[] = {'s','t','r','i','n','g',0};
|
|
|
|
static const WCHAR undefinedW[] = {'u','n','d','e','f','i','n','e','d',0};
|
|
|
|
static const WCHAR unknownW[] = {'u','n','k','n','o','w','n',0};
|
|
|
|
|
2011-12-28 12:06:28 +01:00
|
|
|
struct _except_frame_t {
|
|
|
|
unsigned stack_top;
|
|
|
|
scope_chain_t *scope;
|
|
|
|
unsigned catch_off;
|
|
|
|
BSTR ident;
|
|
|
|
|
|
|
|
except_frame_t *next;
|
|
|
|
};
|
|
|
|
|
2014-09-30 16:51:14 +02:00
|
|
|
typedef struct {
|
|
|
|
enum {
|
|
|
|
EXPRVAL_JSVAL,
|
|
|
|
EXPRVAL_IDREF,
|
|
|
|
EXPRVAL_INVALID
|
|
|
|
} type;
|
|
|
|
union {
|
|
|
|
jsval_t val;
|
|
|
|
struct {
|
|
|
|
IDispatch *disp;
|
|
|
|
DISPID id;
|
|
|
|
} idref;
|
|
|
|
} u;
|
|
|
|
} exprval_t;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
static HRESULT stack_push(exec_ctx_t *ctx, jsval_t v)
|
2011-11-18 14:09:44 +01:00
|
|
|
{
|
|
|
|
if(!ctx->stack_size) {
|
2012-09-17 15:17:02 +02:00
|
|
|
ctx->stack = heap_alloc(16*sizeof(*ctx->stack));
|
2011-11-18 14:09:44 +01:00
|
|
|
if(!ctx->stack)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
ctx->stack_size = 16;
|
|
|
|
}else if(ctx->stack_size == ctx->top) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t *new_stack;
|
2011-11-18 14:09:44 +01:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
new_stack = heap_realloc(ctx->stack, ctx->stack_size*2*sizeof(*new_stack));
|
2011-11-18 14:09:44 +01:00
|
|
|
if(!new_stack) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-11-18 14:09:44 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->stack = new_stack;
|
|
|
|
ctx->stack_size *= 2;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
ctx->stack[ctx->top++] = v;
|
2011-11-18 14:09:44 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
static inline HRESULT stack_push_string(exec_ctx_t *ctx, const WCHAR *str)
|
|
|
|
{
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *v;
|
2011-12-13 11:57:11 +01:00
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
v = jsstr_alloc(str);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(!v)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
return stack_push(ctx, jsval_string(v));
|
2011-12-13 11:57:11 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:29 +01:00
|
|
|
static HRESULT stack_push_objid(exec_ctx_t *ctx, IDispatch *disp, DISPID id)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = stack_push(ctx, jsval_disp(disp));
|
2011-12-05 11:11:29 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(id));
|
2011-12-05 11:11:29 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
static inline jsval_t stack_top(exec_ctx_t *ctx)
|
2011-11-28 12:03:57 +01:00
|
|
|
{
|
2011-11-28 12:05:07 +01:00
|
|
|
assert(ctx->top);
|
2012-09-17 15:17:02 +02:00
|
|
|
return ctx->stack[ctx->top-1];
|
2011-11-28 12:03:57 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
static inline jsval_t stack_topn(exec_ctx_t *ctx, unsigned n)
|
2011-11-28 12:05:07 +01:00
|
|
|
{
|
|
|
|
assert(ctx->top > n);
|
2012-09-17 15:17:02 +02:00
|
|
|
return ctx->stack[ctx->top-1-n];
|
2011-11-28 12:05:07 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
static inline jsval_t *stack_args(exec_ctx_t *ctx, unsigned n)
|
2012-06-25 14:08:38 +02:00
|
|
|
{
|
|
|
|
if(!n)
|
|
|
|
return NULL;
|
|
|
|
assert(ctx->top > n-1);
|
|
|
|
return ctx->stack + ctx->top-n;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
static inline jsval_t stack_pop(exec_ctx_t *ctx)
|
2011-11-18 14:09:44 +01:00
|
|
|
{
|
|
|
|
assert(ctx->top);
|
2012-09-17 15:17:02 +02:00
|
|
|
return ctx->stack[--ctx->top];
|
2011-11-18 14:09:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void stack_popn(exec_ctx_t *ctx, unsigned n)
|
|
|
|
{
|
|
|
|
while(n--)
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(stack_pop(ctx));
|
2011-11-18 14:09:44 +01:00
|
|
|
}
|
|
|
|
|
2012-03-27 11:30:03 +02:00
|
|
|
static HRESULT stack_pop_number(exec_ctx_t *ctx, double *r)
|
2011-11-25 12:06:05 +01:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-11-25 12:06:05 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx->script, v, r);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2012-03-27 11:30:03 +02:00
|
|
|
return hres;
|
2011-11-25 12:06:05 +01:00
|
|
|
}
|
|
|
|
|
2011-12-06 10:42:09 +01:00
|
|
|
static HRESULT stack_pop_object(exec_ctx_t *ctx, IDispatch **r)
|
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-06 10:42:09 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(v)) {
|
|
|
|
if(!get_object(v))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_OBJECT_REQUIRED, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
*r = get_object(v);
|
2011-12-06 10:42:09 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:19:19 +02:00
|
|
|
hres = to_object(ctx->script, v, r);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-06 10:42:09 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2011-11-29 11:09:35 +01:00
|
|
|
static inline HRESULT stack_pop_int(exec_ctx_t *ctx, INT *r)
|
|
|
|
{
|
2012-09-18 19:01:49 +02:00
|
|
|
return to_int32(ctx->script, stack_pop(ctx), r);
|
2011-11-29 11:09:35 +01:00
|
|
|
}
|
|
|
|
|
2011-12-08 12:03:22 +01:00
|
|
|
static inline HRESULT stack_pop_uint(exec_ctx_t *ctx, DWORD *r)
|
|
|
|
{
|
2012-09-18 19:01:49 +02:00
|
|
|
return to_uint32(ctx->script, stack_pop(ctx), r);
|
2011-12-08 12:03:22 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:29 +01:00
|
|
|
static inline IDispatch *stack_pop_objid(exec_ctx_t *ctx, DISPID *id)
|
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
assert(is_number(stack_top(ctx)) && is_object_instance(stack_topn(ctx, 1)));
|
2011-12-05 11:11:29 +01:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
*id = get_number(stack_pop(ctx));
|
|
|
|
return get_object(stack_pop(ctx));
|
2011-12-05 11:11:29 +01:00
|
|
|
}
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
static inline IDispatch *stack_topn_objid(exec_ctx_t *ctx, unsigned n, DISPID *id)
|
2011-12-05 11:13:02 +01:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
assert(is_number(stack_topn(ctx, n)) && is_object_instance(stack_topn(ctx, n+1)));
|
2011-12-05 11:13:02 +01:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
*id = get_number(stack_topn(ctx, n));
|
|
|
|
return get_object(stack_topn(ctx, n+1));
|
2011-12-05 11:13:02 +01:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:21:55 +02:00
|
|
|
static void exprval_release(exprval_t *val)
|
|
|
|
{
|
|
|
|
switch(val->type) {
|
2012-09-17 15:17:02 +02:00
|
|
|
case EXPRVAL_JSVAL:
|
|
|
|
jsval_release(val->u.val);
|
2008-09-09 01:21:55 +02:00
|
|
|
return;
|
|
|
|
case EXPRVAL_IDREF:
|
|
|
|
if(val->u.idref.disp)
|
|
|
|
IDispatch_Release(val->u.idref.disp);
|
|
|
|
return;
|
2009-08-27 01:21:38 +02:00
|
|
|
case EXPRVAL_INVALID:
|
2011-12-20 11:47:02 +01:00
|
|
|
return;
|
2008-09-09 01:21:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 8.7.1 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT exprval_to_value(script_ctx_t *ctx, exprval_t *val, jsval_t *ret)
|
2008-09-09 01:21:55 +02:00
|
|
|
{
|
|
|
|
switch(val->type) {
|
2012-09-17 15:17:02 +02:00
|
|
|
case EXPRVAL_JSVAL:
|
|
|
|
*ret = val->u.val;
|
|
|
|
val->u.val = jsval_undefined();
|
|
|
|
return S_OK;
|
2008-09-09 01:21:55 +02:00
|
|
|
case EXPRVAL_IDREF:
|
|
|
|
if(!val->u.idref.disp) {
|
|
|
|
FIXME("throw ReferenceError\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
return disp_propget(ctx, val->u.idref.disp, val->u.idref.id, ret);
|
2009-08-27 01:21:38 +02:00
|
|
|
case EXPRVAL_INVALID:
|
2011-12-20 11:47:02 +01:00
|
|
|
assert(0);
|
2008-09-09 01:21:55 +02:00
|
|
|
}
|
2009-08-27 01:21:38 +02:00
|
|
|
|
|
|
|
ERR("type %d\n", val->type);
|
|
|
|
return E_FAIL;
|
2008-09-09 01:21:55 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:22:13 +02:00
|
|
|
static void exprval_set_idref(exprval_t *val, IDispatch *disp, DISPID id)
|
|
|
|
{
|
|
|
|
val->type = EXPRVAL_IDREF;
|
|
|
|
val->u.idref.disp = disp;
|
|
|
|
val->u.idref.id = id;
|
|
|
|
|
|
|
|
if(disp)
|
|
|
|
IDispatch_AddRef(disp);
|
|
|
|
}
|
|
|
|
|
2012-09-13 14:34:25 +02:00
|
|
|
HRESULT scope_push(scope_chain_t *scope, jsdisp_t *jsobj, IDispatch *obj, scope_chain_t **ret)
|
2008-09-10 21:06:09 +02:00
|
|
|
{
|
|
|
|
scope_chain_t *new_scope;
|
|
|
|
|
|
|
|
new_scope = heap_alloc(sizeof(scope_chain_t));
|
|
|
|
if(!new_scope)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
new_scope->ref = 1;
|
|
|
|
|
2012-09-13 14:34:25 +02:00
|
|
|
IDispatch_AddRef(obj);
|
|
|
|
new_scope->jsobj = jsobj;
|
2008-09-10 21:06:09 +02:00
|
|
|
new_scope->obj = obj;
|
|
|
|
|
|
|
|
if(scope) {
|
|
|
|
scope_addref(scope);
|
|
|
|
new_scope->next = scope;
|
|
|
|
}else {
|
|
|
|
new_scope->next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = new_scope;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-16 20:44:54 +02:00
|
|
|
static void scope_pop(scope_chain_t **scope)
|
|
|
|
{
|
|
|
|
scope_chain_t *tmp;
|
|
|
|
|
|
|
|
tmp = *scope;
|
|
|
|
*scope = tmp->next;
|
|
|
|
scope_release(tmp);
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
void clear_ei(script_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
memset(&ctx->ei.ei, 0, sizeof(ctx->ei.ei));
|
|
|
|
jsval_release(ctx->ei.val);
|
|
|
|
ctx->ei.val = jsval_undefined();
|
|
|
|
}
|
|
|
|
|
2008-09-09 01:24:22 +02:00
|
|
|
void scope_release(scope_chain_t *scope)
|
|
|
|
{
|
|
|
|
if(--scope->ref)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(scope->next)
|
|
|
|
scope_release(scope->next);
|
|
|
|
|
2012-09-13 14:34:25 +02:00
|
|
|
IDispatch_Release(scope->obj);
|
2008-09-09 01:24:22 +02:00
|
|
|
heap_free(scope);
|
|
|
|
}
|
|
|
|
|
2010-09-06 16:11:49 +02:00
|
|
|
HRESULT create_exec_ctx(script_ctx_t *script_ctx, IDispatch *this_obj, jsdisp_t *var_disp,
|
2010-10-14 15:21:13 +02:00
|
|
|
scope_chain_t *scope, BOOL is_global, exec_ctx_t **ret)
|
2008-09-05 02:37:59 +02:00
|
|
|
{
|
|
|
|
exec_ctx_t *ctx;
|
|
|
|
|
|
|
|
ctx = heap_alloc_zero(sizeof(exec_ctx_t));
|
|
|
|
if(!ctx)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2009-07-16 01:17:00 +02:00
|
|
|
ctx->ref = 1;
|
2010-10-14 15:21:13 +02:00
|
|
|
ctx->is_global = is_global;
|
2012-12-13 12:08:34 +01:00
|
|
|
ctx->ret = jsval_undefined();
|
2009-07-16 01:17:00 +02:00
|
|
|
|
2012-11-14 15:49:46 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.3.7 */
|
|
|
|
if(this_obj) {
|
|
|
|
jsdisp_t *jsthis;
|
|
|
|
|
|
|
|
jsthis = iface_to_jsdisp((IUnknown*)this_obj);
|
|
|
|
if(jsthis) {
|
|
|
|
if(jsthis->builtin_info->class == JSCLASS_GLOBAL || jsthis->builtin_info->class == JSCLASS_NONE)
|
|
|
|
this_obj = NULL;
|
|
|
|
jsdisp_release(jsthis);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-27 20:59:28 +02:00
|
|
|
if(this_obj)
|
|
|
|
ctx->this_obj = this_obj;
|
|
|
|
else if(script_ctx->host_global)
|
|
|
|
ctx->this_obj = script_ctx->host_global;
|
|
|
|
else
|
2010-09-07 15:42:01 +02:00
|
|
|
ctx->this_obj = to_disp(script_ctx->global);
|
2009-09-27 20:59:28 +02:00
|
|
|
IDispatch_AddRef(ctx->this_obj);
|
2008-09-10 21:05:14 +02:00
|
|
|
|
2010-09-07 15:42:34 +02:00
|
|
|
jsdisp_addref(var_disp);
|
2008-09-09 01:24:49 +02:00
|
|
|
ctx->var_disp = var_disp;
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
script_addref(script_ctx);
|
|
|
|
ctx->script = script_ctx;
|
|
|
|
|
2008-09-09 01:24:22 +02:00
|
|
|
if(scope) {
|
|
|
|
scope_addref(scope);
|
|
|
|
ctx->scope_chain = scope;
|
|
|
|
}
|
|
|
|
|
2008-09-05 02:37:59 +02:00
|
|
|
*ret = ctx;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void exec_release(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
if(--ctx->ref)
|
|
|
|
return;
|
|
|
|
|
2008-09-09 01:24:22 +02:00
|
|
|
if(ctx->scope_chain)
|
|
|
|
scope_release(ctx->scope_chain);
|
2008-09-09 01:24:49 +02:00
|
|
|
if(ctx->var_disp)
|
2009-09-01 13:26:08 +02:00
|
|
|
jsdisp_release(ctx->var_disp);
|
2008-09-10 21:05:14 +02:00
|
|
|
if(ctx->this_obj)
|
|
|
|
IDispatch_Release(ctx->this_obj);
|
2012-03-12 19:23:56 +01:00
|
|
|
if(ctx->script)
|
|
|
|
script_release(ctx->script);
|
2012-12-13 12:08:34 +01:00
|
|
|
jsval_release(ctx->ret);
|
2011-11-18 14:09:44 +01:00
|
|
|
heap_free(ctx->stack);
|
2008-09-05 02:37:59 +02:00
|
|
|
heap_free(ctx);
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
static HRESULT disp_get_id(script_ctx_t *ctx, IDispatch *disp, const WCHAR *name, BSTR name_bstr, DWORD flags, DISPID *id)
|
2008-09-09 01:22:31 +02:00
|
|
|
{
|
|
|
|
IDispatchEx *dispex;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsdisp_t *jsdisp;
|
2013-03-11 16:03:15 +01:00
|
|
|
BSTR bstr;
|
2008-09-09 01:22:31 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsdisp = iface_to_jsdisp((IUnknown*)disp);
|
|
|
|
if(jsdisp) {
|
|
|
|
hres = jsdisp_get_id(jsdisp, name, flags, id);
|
|
|
|
jsdisp_release(jsdisp);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2013-03-11 16:03:15 +01:00
|
|
|
if(name_bstr) {
|
|
|
|
bstr = name_bstr;
|
|
|
|
}else {
|
|
|
|
bstr = SysAllocString(name);
|
|
|
|
if(!bstr)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
*id = 0;
|
2008-09-09 01:22:31 +02:00
|
|
|
hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
|
2012-10-11 12:16:01 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
2013-03-11 16:03:15 +01:00
|
|
|
hres = IDispatchEx_GetDispID(dispex, bstr, make_grfdex(ctx, flags|fdexNameCaseSensitive), id);
|
2012-10-11 12:16:01 +02:00
|
|
|
IDispatchEx_Release(dispex);
|
2013-03-11 16:03:15 +01:00
|
|
|
}else {
|
|
|
|
TRACE("using IDispatch\n");
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = IDispatch_GetIDsOfNames(disp, &IID_NULL, &bstr, 1, 0, id);
|
2008-09-09 01:22:31 +02:00
|
|
|
}
|
|
|
|
|
2013-03-11 16:03:15 +01:00
|
|
|
if(name_bstr != bstr)
|
|
|
|
SysFreeString(bstr);
|
|
|
|
return hres;
|
2008-09-09 01:22:31 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:26:20 +02:00
|
|
|
static HRESULT disp_cmp(IDispatch *disp1, IDispatch *disp2, BOOL *ret)
|
|
|
|
{
|
|
|
|
IObjectIdentity *identity;
|
|
|
|
IUnknown *unk1, *unk2;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
if(disp1 == disp2) {
|
|
|
|
*ret = TRUE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-17 01:06:13 +02:00
|
|
|
if(!disp1 || !disp2) {
|
|
|
|
*ret = FALSE;
|
2009-09-11 18:47:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-09 01:26:20 +02:00
|
|
|
hres = IDispatch_QueryInterface(disp1, &IID_IUnknown, (void**)&unk1);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = IDispatch_QueryInterface(disp2, &IID_IUnknown, (void**)&unk2);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
IUnknown_Release(unk1);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(unk1 == unk2) {
|
|
|
|
*ret = TRUE;
|
|
|
|
}else {
|
|
|
|
hres = IUnknown_QueryInterface(unk1, &IID_IObjectIdentity, (void**)&identity);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
hres = IObjectIdentity_IsEqualObject(identity, unk2);
|
|
|
|
IObjectIdentity_Release(identity);
|
|
|
|
*ret = hres == S_OK;
|
|
|
|
}else {
|
|
|
|
*ret = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IUnknown_Release(unk1);
|
|
|
|
IUnknown_Release(unk2);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.9.6 */
|
2012-09-17 15:17:02 +02:00
|
|
|
static HRESULT equal2_values(jsval_t lval, jsval_t rval, BOOL *ret)
|
2008-09-09 01:26:20 +02:00
|
|
|
{
|
2012-09-17 15:20:57 +02:00
|
|
|
jsval_type_t type = jsval_type(lval);
|
|
|
|
|
2008-09-09 01:26:20 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:20:57 +02:00
|
|
|
if(type != jsval_type(rval)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_null_instance(lval))
|
|
|
|
*ret = is_null_instance(rval);
|
2009-09-11 18:47:14 +02:00
|
|
|
else
|
|
|
|
*ret = FALSE;
|
2008-09-09 01:26:20 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:20:57 +02:00
|
|
|
switch(type) {
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_UNDEFINED:
|
|
|
|
case JSV_NULL:
|
|
|
|
*ret = TRUE;
|
2008-09-09 01:26:20 +02:00
|
|
|
break;
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_OBJECT:
|
|
|
|
return disp_cmp(get_object(lval), get_object(rval), ret);
|
|
|
|
case JSV_STRING:
|
2012-10-11 12:16:01 +02:00
|
|
|
*ret = jsstr_eq(get_string(lval), get_string(rval));
|
2012-09-17 15:17:02 +02:00
|
|
|
break;
|
|
|
|
case JSV_NUMBER:
|
|
|
|
*ret = get_number(lval) == get_number(rval);
|
2008-09-09 01:26:20 +02:00
|
|
|
break;
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_BOOL:
|
|
|
|
*ret = !get_bool(lval) == !get_bool(rval);
|
2008-09-09 01:26:20 +02:00
|
|
|
break;
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_VARIANT:
|
|
|
|
FIXME("VARIANT not implemented\n");
|
2008-09-09 01:26:20 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-08-10 12:57:23 +02:00
|
|
|
static BOOL lookup_global_members(script_ctx_t *ctx, BSTR identifier, exprval_t *ret)
|
|
|
|
{
|
|
|
|
named_item_t *item;
|
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
for(item = ctx->named_items; item; item = item->next) {
|
|
|
|
if(item->flags & SCRIPTITEM_GLOBALMEMBERS) {
|
2012-10-11 12:16:01 +02:00
|
|
|
hres = disp_get_id(ctx, item->disp, identifier, identifier, 0, &id);
|
2009-08-10 12:57:23 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
if(ret)
|
|
|
|
exprval_set_idref(ret, item->disp, id);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-09-09 01:22:13 +02:00
|
|
|
/* ECMA-262 3rd Edition 10.1.4 */
|
2012-01-18 13:28:29 +01:00
|
|
|
static HRESULT identifier_eval(script_ctx_t *ctx, BSTR identifier, exprval_t *ret)
|
2008-09-09 01:22:13 +02:00
|
|
|
{
|
2008-09-09 01:24:22 +02:00
|
|
|
scope_chain_t *scope;
|
2008-09-09 01:22:31 +02:00
|
|
|
named_item_t *item;
|
2008-09-09 01:22:13 +02:00
|
|
|
DISPID id = 0;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(identifier));
|
|
|
|
|
2015-06-02 14:45:10 +02:00
|
|
|
if(ctx->exec_ctx) {
|
|
|
|
for(scope = ctx->exec_ctx->scope_chain; scope; scope = scope->next) {
|
|
|
|
if(scope->jsobj)
|
|
|
|
hres = jsdisp_get_id(scope->jsobj, identifier, fdexNameImplicit, &id);
|
|
|
|
else
|
|
|
|
hres = disp_get_id(ctx, scope->obj, identifier, identifier, fdexNameImplicit, &id);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
exprval_set_idref(ret, scope->obj, id);
|
|
|
|
return S_OK;
|
|
|
|
}
|
2010-10-23 16:41:55 +02:00
|
|
|
}
|
2008-09-09 01:24:22 +02:00
|
|
|
}
|
2008-09-09 01:22:54 +02:00
|
|
|
|
2010-10-23 16:41:55 +02:00
|
|
|
hres = jsdisp_get_id(ctx->global, identifier, 0, &id);
|
2008-09-09 01:22:54 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
2010-10-23 16:41:55 +02:00
|
|
|
exprval_set_idref(ret, to_disp(ctx->global), id);
|
2008-09-09 01:22:54 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
2008-09-09 01:22:31 +02:00
|
|
|
|
2010-10-23 16:41:55 +02:00
|
|
|
for(item = ctx->named_items; item; item = item->next) {
|
2008-11-05 01:03:38 +01:00
|
|
|
if((item->flags & SCRIPTITEM_ISVISIBLE) && !strcmpW(item->name, identifier)) {
|
2008-12-15 22:24:33 +01:00
|
|
|
if(!item->disp) {
|
|
|
|
IUnknown *unk;
|
|
|
|
|
2010-10-23 16:41:55 +02:00
|
|
|
if(!ctx->site)
|
2008-12-15 22:24:33 +01:00
|
|
|
break;
|
|
|
|
|
2010-10-23 16:41:55 +02:00
|
|
|
hres = IActiveScriptSite_GetItemInfo(ctx->site, identifier,
|
2008-12-15 22:24:33 +01:00
|
|
|
SCRIPTINFO_IUNKNOWN, &unk, NULL);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
WARN("GetItemInfo failed: %08x\n", hres);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = IUnknown_QueryInterface(unk, &IID_IDispatch, (void**)&item->disp);
|
|
|
|
IUnknown_Release(unk);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
WARN("object does not implement IDispatch\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-05 01:03:38 +01:00
|
|
|
IDispatch_AddRef(item->disp);
|
2012-09-17 15:17:02 +02:00
|
|
|
ret->type = EXPRVAL_JSVAL;
|
|
|
|
ret->u.val = jsval_disp(item->disp);
|
2008-11-05 01:03:38 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-23 16:41:55 +02:00
|
|
|
if(lookup_global_members(ctx, identifier, ret))
|
2009-08-10 12:57:23 +02:00
|
|
|
return S_OK;
|
|
|
|
|
2009-08-27 01:21:38 +02:00
|
|
|
ret->type = EXPRVAL_INVALID;
|
|
|
|
return S_OK;
|
2008-09-09 01:22:13 +02:00
|
|
|
}
|
|
|
|
|
2012-05-12 16:21:01 +02:00
|
|
|
static inline BSTR get_op_bstr(exec_ctx_t *ctx, int i){
|
2012-05-12 16:22:37 +02:00
|
|
|
return ctx->code->instrs[ctx->ip].u.arg[i].bstr;
|
2012-05-12 16:21:01 +02:00
|
|
|
}
|
|
|
|
|
2012-05-12 16:21:10 +02:00
|
|
|
static inline unsigned get_op_uint(exec_ctx_t *ctx, int i){
|
2012-05-12 16:22:37 +02:00
|
|
|
return ctx->code->instrs[ctx->ip].u.arg[i].uint;
|
2012-05-12 16:21:10 +02:00
|
|
|
}
|
|
|
|
|
2012-05-12 16:21:20 +02:00
|
|
|
static inline unsigned get_op_int(exec_ctx_t *ctx, int i){
|
2012-05-12 16:22:37 +02:00
|
|
|
return ctx->code->instrs[ctx->ip].u.arg[i].lng;
|
2012-05-12 16:21:20 +02:00
|
|
|
}
|
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
static inline jsstr_t *get_op_str(exec_ctx_t *ctx, int i){
|
2012-05-12 16:22:37 +02:00
|
|
|
return ctx->code->instrs[ctx->ip].u.arg[i].str;
|
2012-05-12 16:21:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline double get_op_double(exec_ctx_t *ctx){
|
2012-05-12 16:22:37 +02:00
|
|
|
return ctx->code->instrs[ctx->ip].u.dbl;
|
2012-05-12 16:21:56 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:25:59 +02:00
|
|
|
/* ECMA-262 3rd Edition 12.2 */
|
2011-12-20 11:45:37 +01:00
|
|
|
static HRESULT interp_var_set(exec_ctx_t *ctx)
|
2008-09-09 01:25:59 +02:00
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR name = get_op_bstr(ctx, 0);
|
2012-09-17 15:16:42 +02:00
|
|
|
jsval_t val;
|
2008-09-09 01:25:59 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-20 11:45:37 +01:00
|
|
|
TRACE("%s\n", debugstr_w(name));
|
2008-09-09 01:25:59 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
val = stack_pop(ctx);
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = jsdisp_propput_name(ctx->var_disp, name, val);
|
2012-09-17 15:16:42 +02:00
|
|
|
jsval_release(val);
|
2011-12-20 11:45:37 +01:00
|
|
|
return hres;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-28 12:05:53 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.6.4 */
|
|
|
|
static HRESULT interp_forin(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const HRESULT arg = get_op_uint(ctx, 0);
|
2011-12-28 12:05:53 +01:00
|
|
|
IDispatch *var_obj, *obj = NULL;
|
|
|
|
IDispatchEx *dispex;
|
|
|
|
DISPID id, var_id;
|
|
|
|
BSTR name = NULL;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
assert(is_number(stack_top(ctx)));
|
|
|
|
id = get_number(stack_top(ctx));
|
2011-12-28 12:05:53 +01:00
|
|
|
|
|
|
|
var_obj = stack_topn_objid(ctx, 1, &var_id);
|
|
|
|
if(!var_obj) {
|
|
|
|
FIXME("invalid ref\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(stack_topn(ctx, 3)))
|
|
|
|
obj = get_object(stack_topn(ctx, 3));
|
2011-12-28 12:05:53 +01:00
|
|
|
|
|
|
|
if(obj) {
|
|
|
|
hres = IDispatch_QueryInterface(obj, &IID_IDispatchEx, (void**)&dispex);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
hres = IDispatchEx_GetNextDispID(dispex, fdexEnumDefault, id, &id);
|
|
|
|
if(hres == S_OK)
|
|
|
|
hres = IDispatchEx_GetMemberName(dispex, id, &name);
|
|
|
|
IDispatchEx_Release(dispex);
|
2012-12-13 12:08:34 +01:00
|
|
|
if(FAILED(hres))
|
2011-12-28 12:05:53 +01:00
|
|
|
return hres;
|
|
|
|
}else {
|
|
|
|
TRACE("No IDispatchEx\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(name) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *str;
|
|
|
|
|
|
|
|
str = jsstr_alloc_len(name, SysStringLen(name));
|
|
|
|
SysFreeString(name);
|
|
|
|
if(!str)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
stack_pop(ctx);
|
|
|
|
stack_push(ctx, jsval_number(id)); /* safe, just after pop() */
|
2011-12-28 12:05:53 +01:00
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
hres = disp_propput(ctx->script, var_obj, var_id, jsval_string(str));
|
|
|
|
jsstr_release(str);
|
2011-12-28 12:05:53 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
ctx->ip++;
|
|
|
|
}else {
|
|
|
|
stack_popn(ctx, 4);
|
|
|
|
ctx->ip = arg;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-27 11:16:26 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.10 */
|
2012-01-09 09:33:13 +01:00
|
|
|
static HRESULT interp_push_scope(exec_ctx_t *ctx)
|
2011-12-27 11:16:26 +01:00
|
|
|
{
|
|
|
|
IDispatch *disp;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-27 11:16:26 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:19:19 +02:00
|
|
|
hres = to_object(ctx->script, v, &disp);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-27 11:16:26 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-13 14:34:25 +02:00
|
|
|
hres = scope_push(ctx->scope_chain, to_jsdisp(disp), disp, &ctx->scope_chain);
|
|
|
|
IDispatch_Release(disp);
|
2011-12-27 11:16:26 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.10 */
|
2012-01-09 09:33:13 +01:00
|
|
|
static HRESULT interp_pop_scope(exec_ctx_t *ctx)
|
2011-12-27 11:16:26 +01:00
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
scope_pop(&ctx->scope_chain);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-27 11:16:40 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.13 */
|
|
|
|
static HRESULT interp_case(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-27 11:16:40 +01:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
|
|
|
hres = equal2_values(stack_top(ctx), v, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-27 11:16:40 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(b) {
|
|
|
|
stack_popn(ctx, 1);
|
|
|
|
ctx->ip = arg;
|
|
|
|
}else {
|
|
|
|
ctx->ip++;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-17 23:30:20 +02:00
|
|
|
/* ECMA-262 3rd Edition 12.13 */
|
2011-12-28 12:06:17 +01:00
|
|
|
static HRESULT interp_throw(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2008-09-16 20:45:13 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-18 19:02:16 +02:00
|
|
|
jsval_release(ctx->script->ei.val);
|
|
|
|
ctx->script->ei.val = stack_pop(ctx);
|
2008-09-16 20:45:13 +02:00
|
|
|
return DISP_E_EXCEPTION;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-28 12:06:03 +01:00
|
|
|
static HRESULT interp_throw_ref(exec_ctx_t *ctx)
|
2011-12-05 11:12:32 +01:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const HRESULT arg = get_op_uint(ctx, 0);
|
2011-12-05 11:12:32 +01:00
|
|
|
|
|
|
|
TRACE("%08x\n", arg);
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_reference_error(ctx->script, arg, NULL);
|
2011-12-05 11:12:32 +01:00
|
|
|
}
|
|
|
|
|
2011-12-15 15:43:01 +01:00
|
|
|
static HRESULT interp_throw_type(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const HRESULT hres = get_op_uint(ctx, 0);
|
2012-10-11 12:17:17 +02:00
|
|
|
jsstr_t *str = get_op_str(ctx, 1);
|
2013-03-27 11:02:42 +01:00
|
|
|
const WCHAR *ptr;
|
2011-12-15 15:43:01 +01:00
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
TRACE("%08x %s\n", hres, debugstr_jsstr(str));
|
2011-12-15 15:43:01 +01:00
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
ptr = jsstr_flatten(str);
|
|
|
|
return ptr ? throw_type_error(ctx->script, hres, ptr) : E_OUTOFMEMORY;
|
2011-12-15 15:43:01 +01:00
|
|
|
}
|
|
|
|
|
2011-12-28 12:06:28 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.14 */
|
|
|
|
static HRESULT interp_push_except(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg1 = get_op_uint(ctx, 0);
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg2 = get_op_bstr(ctx, 1);
|
2011-12-28 12:06:28 +01:00
|
|
|
except_frame_t *except;
|
|
|
|
unsigned stack_top;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
stack_top = ctx->top;
|
|
|
|
|
|
|
|
if(!arg2) {
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = stack_push(ctx, jsval_bool(TRUE));
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = stack_push(ctx, jsval_bool(TRUE));
|
2011-12-28 12:06:41 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2011-12-28 12:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
except = heap_alloc(sizeof(*except));
|
|
|
|
if(!except)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
except->stack_top = stack_top;
|
|
|
|
except->scope = ctx->scope_chain;
|
|
|
|
except->catch_off = arg1;
|
|
|
|
except->ident = arg2;
|
|
|
|
except->next = ctx->except_frame;
|
|
|
|
ctx->except_frame = except;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.14 */
|
|
|
|
static HRESULT interp_pop_except(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
except_frame_t *except;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
except = ctx->except_frame;
|
|
|
|
assert(except != NULL);
|
|
|
|
|
|
|
|
ctx->except_frame = except->next;
|
|
|
|
heap_free(except);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.14 */
|
|
|
|
static HRESULT interp_end_finally(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-28 12:06:28 +01:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2014-04-29 10:17:38 +02:00
|
|
|
v = stack_pop(ctx);
|
|
|
|
assert(is_bool(v));
|
2011-12-28 12:06:28 +01:00
|
|
|
|
2014-04-29 10:17:38 +02:00
|
|
|
if(!get_bool(v)) {
|
|
|
|
TRACE("passing exception\n");
|
2012-09-17 15:17:02 +02:00
|
|
|
|
2012-09-18 19:02:16 +02:00
|
|
|
ctx->script->ei.val = stack_pop(ctx);
|
2012-09-20 15:04:01 +02:00
|
|
|
return DISP_E_EXCEPTION;
|
2011-12-28 12:06:28 +01:00
|
|
|
}
|
|
|
|
|
2014-04-29 10:17:38 +02:00
|
|
|
stack_pop(ctx);
|
2012-12-13 12:08:34 +01:00
|
|
|
return S_OK;
|
2011-12-28 12:06:28 +01:00
|
|
|
}
|
|
|
|
|
2008-09-10 21:08:46 +02:00
|
|
|
/* ECMA-262 3rd Edition 13 */
|
2011-12-16 11:42:57 +01:00
|
|
|
static HRESULT interp_func(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
unsigned func_idx = get_op_uint(ctx, 0);
|
2011-12-16 11:42:57 +01:00
|
|
|
jsdisp_t *dispex;
|
2008-09-10 21:08:46 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-04-24 17:39:09 +02:00
|
|
|
TRACE("%d\n", func_idx);
|
|
|
|
|
2012-04-25 11:25:57 +02:00
|
|
|
hres = create_source_function(ctx->script, ctx->code, ctx->func_code->funcs+func_idx,
|
2012-04-24 17:39:40 +02:00
|
|
|
ctx->scope_chain, &dispex);
|
2011-12-16 11:42:57 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-10 21:08:46 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_obj(dispex));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-07 11:01:13 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.1 */
|
|
|
|
static HRESULT interp_array(exec_ctx_t *ctx)
|
|
|
|
{
|
2013-03-27 11:02:42 +01:00
|
|
|
jsstr_t *name_str;
|
|
|
|
const WCHAR *name;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v, namev;
|
2011-12-07 11:01:13 +01:00
|
|
|
IDispatch *obj;
|
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
namev = stack_pop(ctx);
|
|
|
|
|
|
|
|
hres = stack_pop_object(ctx, &obj);
|
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(namev);
|
2011-12-07 11:01:13 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = to_flat_string(ctx->script, namev, &name_str, &name);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(namev);
|
2011-12-07 11:01:13 +01:00
|
|
|
if(FAILED(hres)) {
|
|
|
|
IDispatch_Release(obj);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = disp_get_id(ctx->script, obj, name, NULL, 0, &id);
|
|
|
|
jsstr_release(name_str);
|
2011-12-07 11:01:13 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, obj, id, &v);
|
2011-12-07 11:01:13 +01:00
|
|
|
}else if(hres == DISP_E_UNKNOWNNAME) {
|
2012-09-17 15:17:02 +02:00
|
|
|
v = jsval_undefined();
|
2011-12-07 11:01:13 +01:00
|
|
|
hres = S_OK;
|
|
|
|
}
|
|
|
|
IDispatch_Release(obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, v);
|
2011-12-07 11:01:13 +01:00
|
|
|
}
|
|
|
|
|
2011-12-06 10:42:09 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.1 */
|
|
|
|
static HRESULT interp_member(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg = get_op_bstr(ctx, 0);
|
2011-12-06 10:42:09 +01:00
|
|
|
IDispatch *obj;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-06 10:42:09 +01:00
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
hres = stack_pop_object(ctx, &obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
hres = disp_get_id(ctx->script, obj, arg, arg, 0, &id);
|
2011-12-06 10:42:09 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, obj, id, &v);
|
2011-12-06 10:42:09 +01:00
|
|
|
}else if(hres == DISP_E_UNKNOWNNAME) {
|
2012-09-17 15:17:02 +02:00
|
|
|
v = jsval_undefined();
|
2011-12-06 10:42:09 +01:00
|
|
|
hres = S_OK;
|
|
|
|
}
|
|
|
|
IDispatch_Release(obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, v);
|
2011-12-06 10:42:09 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:45 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.1 */
|
|
|
|
static HRESULT interp_memberid(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:20 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t objv, namev;
|
2013-03-27 11:02:42 +01:00
|
|
|
const WCHAR *name;
|
|
|
|
jsstr_t *name_str;
|
2011-12-05 11:11:45 +01:00
|
|
|
IDispatch *obj;
|
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
TRACE("%x\n", arg);
|
2011-12-05 11:11:45 +01:00
|
|
|
|
|
|
|
namev = stack_pop(ctx);
|
|
|
|
objv = stack_pop(ctx);
|
|
|
|
|
2012-09-17 15:19:19 +02:00
|
|
|
hres = to_object(ctx->script, objv, &obj);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(objv);
|
2011-12-05 11:11:45 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = to_flat_string(ctx->script, namev, &name_str, &name);
|
2011-12-05 11:11:45 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
IDispatch_Release(obj);
|
|
|
|
}
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(namev);
|
2011-12-05 11:11:45 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = disp_get_id(ctx->script, obj, name, NULL, arg, &id);
|
|
|
|
jsstr_release(name_str);
|
2011-12-05 11:11:45 +01:00
|
|
|
if(FAILED(hres)) {
|
|
|
|
IDispatch_Release(obj);
|
2011-12-07 11:00:20 +01:00
|
|
|
if(hres == DISP_E_UNKNOWNNAME && !(arg & fdexNameEnsure)) {
|
|
|
|
obj = NULL;
|
|
|
|
id = JS_E_INVALID_PROPERTY;
|
|
|
|
}else {
|
2012-09-17 15:17:02 +02:00
|
|
|
ERR("failed %08x\n", hres);
|
2011-12-07 11:00:20 +01:00
|
|
|
return hres;
|
|
|
|
}
|
2011-12-05 11:11:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return stack_push_objid(ctx, obj, id);
|
|
|
|
}
|
|
|
|
|
2011-12-05 11:13:02 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.1 */
|
|
|
|
static HRESULT interp_refval(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
IDispatch *disp;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-05 11:13:02 +01:00
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
disp = stack_topn_objid(ctx, 0, &id);
|
2011-12-05 11:13:02 +01:00
|
|
|
if(!disp)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_reference_error(ctx->script, JS_E_ILLEGAL_ASSIGN, NULL);
|
2011-12-05 11:13:02 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, disp, id, &v);
|
2011-12-05 11:13:02 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, v);
|
2012-09-17 15:16:42 +02:00
|
|
|
}
|
|
|
|
|
2008-09-10 21:07:35 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.2.2 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_new(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:16:42 +02:00
|
|
|
const unsigned argc = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t r, constr;
|
2008-09-10 21:07:35 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
TRACE("%d\n", argc);
|
2008-09-10 21:07:35 +02:00
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
constr = stack_topn(ctx, argc);
|
2008-09-10 21:07:35 +02:00
|
|
|
|
2010-10-01 20:19:29 +02:00
|
|
|
/* NOTE: Should use to_object here */
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_null(constr))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_OBJECT_EXPECTED, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
else if(!is_object_instance(constr))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_INVALID_ACTION, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
else if(!get_object(constr))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_INVALID_PROPERTY, NULL);
|
2008-09-10 21:07:35 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_call_value(ctx->script, get_object(constr), NULL, DISPATCH_CONSTRUCT, argc, stack_args(ctx, argc), &r);
|
2008-09-10 21:07:35 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
stack_popn(ctx, argc+1);
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, r);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.2.3 */
|
2011-12-07 11:00:44 +01:00
|
|
|
static HRESULT interp_call(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned argn = get_op_uint(ctx, 0);
|
2012-05-12 16:21:20 +02:00
|
|
|
const int do_ret = get_op_int(ctx, 1);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t r, obj;
|
2008-09-09 01:25:05 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-07 11:00:44 +01:00
|
|
|
TRACE("%d %d\n", argn, do_ret);
|
2008-09-09 01:25:05 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
obj = stack_topn(ctx, argn);
|
|
|
|
if(!is_object_instance(obj))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_INVALID_PROPERTY, NULL);
|
2008-09-09 01:25:05 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = disp_call_value(ctx->script, get_object(obj), NULL, DISPATCH_METHOD, argn, stack_args(ctx, argn),
|
2012-09-18 19:01:49 +02:00
|
|
|
do_ret ? &r : NULL);
|
2008-09-09 01:25:05 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-12-07 11:00:44 +01:00
|
|
|
stack_popn(ctx, argn+1);
|
2012-09-17 15:17:02 +02:00
|
|
|
return do_ret ? stack_push(ctx, r) : S_OK;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.3 */
|
|
|
|
static HRESULT interp_call_member(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned argn = get_op_uint(ctx, 0);
|
2012-05-12 16:21:20 +02:00
|
|
|
const int do_ret = get_op_int(ctx, 1);
|
2011-12-07 11:00:20 +01:00
|
|
|
IDispatch *obj;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t r;
|
2011-12-07 11:00:20 +01:00
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%d %d\n", argn, do_ret);
|
|
|
|
|
|
|
|
obj = stack_topn_objid(ctx, argn, &id);
|
|
|
|
if(!obj)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, id, NULL);
|
2011-12-07 11:00:20 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_call(ctx->script, obj, id, DISPATCH_METHOD, argn, stack_args(ctx, argn), do_ret ? &r : NULL);
|
2011-12-07 11:00:20 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
stack_popn(ctx, argn+2);
|
2012-09-17 15:17:02 +02:00
|
|
|
return do_ret ? stack_push(ctx, r) : S_OK;
|
2011-12-07 11:00:20 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.1.1 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_this(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2008-09-10 21:05:14 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-24 14:24:14 +01:00
|
|
|
IDispatch_AddRef(ctx->this_obj);
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_disp(ctx->this_obj));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-11-28 12:08:54 +01:00
|
|
|
/* ECMA-262 3rd Edition 10.1.4 */
|
|
|
|
static HRESULT interp_ident(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg = get_op_bstr(ctx, 0);
|
2011-11-28 12:08:54 +01:00
|
|
|
exprval_t exprval;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-11-28 12:08:54 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(arg));
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = identifier_eval(ctx->script, arg, &exprval);
|
2011-11-28 12:08:54 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-12-20 11:47:02 +01:00
|
|
|
if(exprval.type == EXPRVAL_INVALID)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_UNDEFINED_VARIABLE, arg);
|
2011-12-20 11:47:02 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = exprval_to_value(ctx->script, &exprval, &v);
|
2011-11-28 12:08:54 +01:00
|
|
|
exprval_release(&exprval);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, v);
|
2011-11-28 12:08:54 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:29 +01:00
|
|
|
/* ECMA-262 3rd Edition 10.1.4 */
|
|
|
|
static HRESULT interp_identid(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg = get_op_bstr(ctx, 0);
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned flags = get_op_uint(ctx, 1);
|
2011-12-05 11:11:29 +01:00
|
|
|
exprval_t exprval;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
TRACE("%s %x\n", debugstr_w(arg), flags);
|
2011-12-05 11:11:29 +01:00
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = identifier_eval(ctx->script, arg, &exprval);
|
2011-12-05 11:11:29 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-01-18 13:28:29 +01:00
|
|
|
if(exprval.type == EXPRVAL_INVALID && (flags & fdexNameEnsure)) {
|
|
|
|
DISPID id;
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = jsdisp_get_id(ctx->script->global, arg, fdexNameEnsure, &id);
|
2012-01-18 13:28:29 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
exprval_set_idref(&exprval, to_disp(ctx->script->global), id);
|
2012-01-18 13:28:29 +01:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:29 +01:00
|
|
|
if(exprval.type != EXPRVAL_IDREF) {
|
|
|
|
WARN("invalid ref\n");
|
|
|
|
exprval_release(&exprval);
|
2011-12-07 11:00:20 +01:00
|
|
|
return stack_push_objid(ctx, NULL, JS_E_OBJECT_EXPECTED);
|
2011-12-05 11:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return stack_push_objid(ctx, exprval.u.idref.disp, exprval.u.idref.id);
|
|
|
|
}
|
|
|
|
|
2011-11-24 14:23:26 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8.1 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_null(exec_ctx_t *ctx)
|
2011-11-24 14:23:26 +01:00
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_null());
|
2011-11-24 14:23:26 +01:00
|
|
|
}
|
|
|
|
|
2011-11-23 12:13:57 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8.2 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_bool(exec_ctx_t *ctx)
|
2011-11-23 12:13:57 +01:00
|
|
|
{
|
2012-05-12 16:21:20 +02:00
|
|
|
const int arg = get_op_int(ctx, 0);
|
2011-11-23 12:13:57 +01:00
|
|
|
|
|
|
|
TRACE("%s\n", arg ? "true" : "false");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(arg));
|
2011-11-23 12:13:57 +01:00
|
|
|
}
|
|
|
|
|
2011-11-23 12:13:46 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8.3 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_int(exec_ctx_t *ctx)
|
2011-11-23 12:13:46 +01:00
|
|
|
{
|
2012-05-12 16:21:20 +02:00
|
|
|
const int arg = get_op_int(ctx, 0);
|
2011-11-23 12:13:46 +01:00
|
|
|
|
|
|
|
TRACE("%d\n", arg);
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(arg));
|
2011-11-23 12:13:46 +01:00
|
|
|
}
|
|
|
|
|
2011-11-23 12:14:31 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8.3 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_double(exec_ctx_t *ctx)
|
2011-11-23 12:14:31 +01:00
|
|
|
{
|
2012-05-12 16:21:56 +02:00
|
|
|
const double arg = get_op_double(ctx);
|
2011-11-23 12:14:31 +01:00
|
|
|
|
|
|
|
TRACE("%lf\n", arg);
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(arg));
|
2011-11-23 12:14:31 +01:00
|
|
|
}
|
|
|
|
|
2011-11-23 12:14:15 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8.4 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_str(exec_ctx_t *ctx)
|
2011-11-23 12:14:15 +01:00
|
|
|
{
|
2012-10-11 12:17:17 +02:00
|
|
|
jsstr_t *str = get_op_str(ctx, 0);
|
2011-11-23 12:14:15 +01:00
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
TRACE("%s\n", debugstr_jsstr(str));
|
2011-11-23 12:14:15 +01:00
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
return stack_push(ctx, jsval_string(jsstr_addref(str)));
|
2011-11-23 12:14:15 +01:00
|
|
|
}
|
|
|
|
|
2011-11-24 14:23:39 +01:00
|
|
|
/* ECMA-262 3rd Edition 7.8 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_regexp(exec_ctx_t *ctx)
|
2011-11-24 14:23:39 +01:00
|
|
|
{
|
2012-10-11 12:17:17 +02:00
|
|
|
jsstr_t *source = get_op_str(ctx, 0);
|
2012-05-12 16:21:44 +02:00
|
|
|
const unsigned flags = get_op_uint(ctx, 1);
|
2011-11-24 14:23:39 +01:00
|
|
|
jsdisp_t *regexp;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
TRACE("%s %x\n", debugstr_jsstr(source), flags);
|
2012-10-11 12:16:50 +02:00
|
|
|
|
2012-10-11 12:17:17 +02:00
|
|
|
hres = create_regexp(ctx->script, source, flags, ®exp);
|
2011-11-24 14:23:39 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_obj(regexp));
|
2011-11-24 14:23:39 +01:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:34:23 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.1.4 */
|
2011-12-08 12:02:40 +01:00
|
|
|
static HRESULT interp_carray(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t *array;
|
2012-09-17 15:16:42 +02:00
|
|
|
jsval_t val;
|
2011-12-08 12:02:40 +01:00
|
|
|
unsigned i;
|
2008-09-17 23:34:23 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-08 12:02:40 +01:00
|
|
|
TRACE("%u\n", arg);
|
2008-09-17 23:34:23 +02:00
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = create_array(ctx->script, arg, &array);
|
2008-09-17 23:34:23 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-12-08 12:02:40 +01:00
|
|
|
i = arg;
|
|
|
|
while(i--) {
|
2012-09-17 15:17:02 +02:00
|
|
|
val = stack_pop(ctx);
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = jsdisp_propput_idx(array, i, val);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(val);
|
2011-12-08 12:02:40 +01:00
|
|
|
if(FAILED(hres)) {
|
|
|
|
jsdisp_release(array);
|
|
|
|
return hres;
|
|
|
|
}
|
2008-09-17 23:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_obj(array));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-10 21:10:23 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.1.5 */
|
2012-01-09 09:33:13 +01:00
|
|
|
static HRESULT interp_new_obj(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t *obj;
|
2008-09-10 21:10:23 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = create_object(ctx->script, NULL, &obj);
|
2008-09-10 21:10:23 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_obj(obj));
|
2011-12-16 11:43:31 +01:00
|
|
|
}
|
2008-09-10 21:10:23 +02:00
|
|
|
|
2011-12-16 11:43:31 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.1.5 */
|
2012-01-09 09:33:13 +01:00
|
|
|
static HRESULT interp_obj_prop(exec_ctx_t *ctx)
|
2011-12-16 11:43:31 +01:00
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR name = get_op_bstr(ctx, 0);
|
2011-12-16 11:43:31 +01:00
|
|
|
jsdisp_t *obj;
|
2012-09-17 15:16:42 +02:00
|
|
|
jsval_t val;
|
2011-12-16 11:43:31 +01:00
|
|
|
HRESULT hres;
|
2008-09-10 21:10:23 +02:00
|
|
|
|
2011-12-16 11:43:31 +01:00
|
|
|
TRACE("%s\n", debugstr_w(name));
|
2008-09-10 21:10:23 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
val = stack_pop(ctx);
|
2008-09-10 21:10:23 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
assert(is_object_instance(stack_top(ctx)));
|
|
|
|
obj = as_jsdisp(get_object(stack_top(ctx)));
|
2008-09-10 21:10:23 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = jsdisp_propput_name(obj, name, val);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(val);
|
2011-12-16 11:43:31 +01:00
|
|
|
return hres;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:55:14 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.11 */
|
2011-12-20 11:47:23 +01:00
|
|
|
static HRESULT interp_cnd_nz(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
BOOL b;
|
2008-09-11 23:55:14 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:18:03 +02:00
|
|
|
hres = to_boolean(stack_top(ctx), &b);
|
2008-09-11 23:55:14 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-11-28 12:03:57 +01:00
|
|
|
if(b) {
|
|
|
|
ctx->ip = arg;
|
|
|
|
}else {
|
|
|
|
stack_popn(ctx, 1);
|
|
|
|
ctx->ip++;
|
2008-09-11 23:55:14 +02:00
|
|
|
}
|
|
|
|
return S_OK;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:55:38 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.11 */
|
2011-12-20 11:47:23 +01:00
|
|
|
static HRESULT interp_cnd_z(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
BOOL b;
|
2008-09-11 23:55:38 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:18:03 +02:00
|
|
|
hres = to_boolean(stack_top(ctx), &b);
|
2008-09-11 23:55:38 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-11-28 12:04:33 +01:00
|
|
|
if(b) {
|
|
|
|
stack_popn(ctx, 1);
|
|
|
|
ctx->ip++;
|
|
|
|
}else {
|
|
|
|
ctx->ip = arg;
|
2008-09-11 23:55:38 +02:00
|
|
|
}
|
|
|
|
return S_OK;
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:31:02 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.10 */
|
2011-11-29 11:09:35 +01:00
|
|
|
static HRESULT interp_or(exec_ctx_t *ctx)
|
2008-09-17 23:31:02 +02:00
|
|
|
{
|
2011-11-29 11:09:35 +01:00
|
|
|
INT l, r;
|
|
|
|
HRESULT hres;
|
2008-09-17 23:31:02 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-29 11:09:35 +01:00
|
|
|
hres = stack_pop_int(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_int(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l|r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:32:11 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.10 */
|
2011-11-29 11:09:49 +01:00
|
|
|
static HRESULT interp_xor(exec_ctx_t *ctx)
|
2008-09-17 23:32:11 +02:00
|
|
|
{
|
2011-11-29 11:09:49 +01:00
|
|
|
INT l, r;
|
|
|
|
HRESULT hres;
|
2008-09-17 23:32:11 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-29 11:09:49 +01:00
|
|
|
hres = stack_pop_int(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_int(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l^r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:31:38 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.10 */
|
2011-12-08 12:02:53 +01:00
|
|
|
static HRESULT interp_and(exec_ctx_t *ctx)
|
2008-09-17 23:31:38 +02:00
|
|
|
{
|
2011-12-08 12:02:53 +01:00
|
|
|
INT l, r;
|
|
|
|
HRESULT hres;
|
2008-09-17 23:31:38 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-12-08 12:02:53 +01:00
|
|
|
hres = stack_pop_int(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_int(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l&r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.8.6 */
|
2011-12-12 14:43:54 +01:00
|
|
|
static HRESULT interp_instanceof(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t *obj, *iter, *tmp = NULL;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t prot, v;
|
2011-12-12 14:43:54 +01:00
|
|
|
BOOL ret = FALSE;
|
2009-08-29 00:01:25 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static const WCHAR prototypeW[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
|
|
|
|
|
2011-12-12 14:43:54 +01:00
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(!is_object_instance(v) || !get_object(v)) {
|
|
|
|
jsval_release(v);
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_FUNCTION_EXPECTED, NULL);
|
2011-12-12 14:43:54 +01:00
|
|
|
}
|
2009-08-29 00:01:25 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
obj = iface_to_jsdisp((IUnknown*)get_object(v));
|
|
|
|
IDispatch_Release(get_object(v));
|
2009-08-29 00:01:25 +02:00
|
|
|
if(!obj) {
|
2011-06-21 17:46:04 +02:00
|
|
|
FIXME("non-jsdisp objects not supported\n");
|
2009-08-29 00:01:25 +02:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_class(obj, JSCLASS_FUNCTION)) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = jsdisp_propget_name(obj, prototypeW, &prot);
|
2009-08-29 00:01:25 +02:00
|
|
|
}else {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = throw_type_error(ctx->script, JS_E_FUNCTION_EXPECTED, NULL);
|
2009-08-29 00:01:25 +02:00
|
|
|
}
|
|
|
|
jsdisp_release(obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-12-12 14:43:54 +01:00
|
|
|
v = stack_pop(ctx);
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
if(is_object_instance(prot)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(v))
|
|
|
|
tmp = iface_to_jsdisp((IUnknown*)get_object(v));
|
2011-12-12 14:43:54 +01:00
|
|
|
for(iter = tmp; !ret && iter; iter = iter->prototype) {
|
2012-09-17 15:16:42 +02:00
|
|
|
hres = disp_cmp(get_object(prot), to_disp(iter), &ret);
|
2009-08-29 00:01:25 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tmp)
|
|
|
|
jsdisp_release(tmp);
|
|
|
|
}else {
|
|
|
|
FIXME("prototype is not an object\n");
|
|
|
|
hres = E_FAIL;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
jsval_release(prot);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2009-08-29 00:01:25 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(ret));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.8.7 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_in(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2013-03-27 11:02:42 +01:00
|
|
|
const WCHAR *str;
|
|
|
|
jsstr_t *jsstr;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t obj, v;
|
2011-11-23 12:13:35 +01:00
|
|
|
DISPID id = 0;
|
|
|
|
BOOL ret;
|
2009-09-06 19:10:06 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-11-23 12:13:35 +01:00
|
|
|
TRACE("\n");
|
2009-09-06 19:10:06 +02:00
|
|
|
|
2011-11-23 12:13:35 +01:00
|
|
|
obj = stack_pop(ctx);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(!is_object_instance(obj) || !get_object(obj)) {
|
|
|
|
jsval_release(obj);
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_OBJECT_EXPECTED, NULL);
|
2011-11-23 12:13:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
v = stack_pop(ctx);
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = to_flat_string(ctx->script, v, &jsstr, &str);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-11-23 12:13:35 +01:00
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
IDispatch_Release(get_object(obj));
|
2009-09-06 19:10:06 +02:00
|
|
|
return hres;
|
2011-11-23 12:13:35 +01:00
|
|
|
}
|
2009-09-06 19:10:06 +02:00
|
|
|
|
2013-03-27 11:02:42 +01:00
|
|
|
hres = disp_get_id(ctx->script, get_object(obj), str, NULL, 0, &id);
|
2012-09-17 15:17:02 +02:00
|
|
|
IDispatch_Release(get_object(obj));
|
2013-03-27 11:02:42 +01:00
|
|
|
jsstr_release(jsstr);
|
2009-09-06 19:10:06 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2011-11-23 12:13:35 +01:00
|
|
|
ret = TRUE;
|
2009-09-06 19:10:06 +02:00
|
|
|
else if(hres == DISP_E_UNKNOWNNAME)
|
2011-11-23 12:13:35 +01:00
|
|
|
ret = FALSE;
|
2009-09-06 19:10:06 +02:00
|
|
|
else
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(ret));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-10 21:12:45 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.6.1 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT add_eval(script_ctx_t *ctx, jsval_t lval, jsval_t rval, jsval_t *ret)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t r, l;
|
2008-09-10 21:12:45 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, lval, &l, NO_HINT);
|
2008-09-10 21:12:45 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, rval, &r, NO_HINT);
|
2008-09-10 21:12:45 +02:00
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
2008-09-10 21:12:45 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_string(l) || is_string(r)) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *lstr, *rstr = NULL;
|
2008-09-10 21:12:45 +02:00
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
hres = to_string(ctx, l, &lstr);
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
hres = to_string(ctx, r, &rstr);
|
2008-09-10 21:12:45 +02:00
|
|
|
|
|
|
|
if(SUCCEEDED(hres)) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *ret_str;
|
|
|
|
|
2012-12-18 11:16:24 +01:00
|
|
|
ret_str = jsstr_concat(lstr, rstr);
|
|
|
|
if(ret_str)
|
2012-10-11 12:16:01 +02:00
|
|
|
*ret = jsval_string(ret_str);
|
2012-12-18 11:16:24 +01:00
|
|
|
else
|
2012-10-11 12:16:01 +02:00
|
|
|
hres = E_OUTOFMEMORY;
|
2008-09-10 21:12:45 +02:00
|
|
|
}
|
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(lstr);
|
|
|
|
if(rstr)
|
|
|
|
jsstr_release(rstr);
|
2008-09-10 21:12:45 +02:00
|
|
|
}else {
|
2012-03-27 11:28:51 +02:00
|
|
|
double nl, nr;
|
2008-09-10 21:12:45 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, l, &nl);
|
2008-09-10 21:12:45 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, r, &nr);
|
2008-09-10 21:12:45 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2012-09-17 15:17:02 +02:00
|
|
|
*ret = jsval_number(nl+nr);
|
2008-09-10 21:12:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(r);
|
|
|
|
jsval_release(l);
|
2008-09-10 21:12:45 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.6.1 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_add(exec_ctx_t *ctx)
|
2008-09-10 21:12:45 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r, ret;
|
2011-11-22 16:31:44 +01:00
|
|
|
HRESULT hres;
|
2008-09-10 21:12:45 +02:00
|
|
|
|
2011-11-22 16:31:44 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s + %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2011-11-22 16:31:44 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = add_eval(ctx->script, l, r, &ret);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2011-11-22 16:31:44 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-10 21:12:45 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, ret);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 20:46:01 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.6.2 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_sub(exec_ctx_t *ctx)
|
2008-09-16 20:46:01 +02:00
|
|
|
{
|
2012-03-27 11:30:03 +02:00
|
|
|
double l, r;
|
2011-11-25 12:06:05 +01:00
|
|
|
HRESULT hres;
|
2008-09-16 20:46:01 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-25 12:06:05 +01:00
|
|
|
hres = stack_pop_number(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_number(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l-r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 20:46:33 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.5.1 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_mul(exec_ctx_t *ctx)
|
2008-09-16 20:46:33 +02:00
|
|
|
{
|
2012-03-27 11:30:03 +02:00
|
|
|
double l, r;
|
2011-11-29 11:08:54 +01:00
|
|
|
HRESULT hres;
|
2008-09-16 20:46:33 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-29 11:08:54 +01:00
|
|
|
hres = stack_pop_number(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_number(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l*r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 20:47:06 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.5.2 */
|
2011-11-29 11:09:04 +01:00
|
|
|
static HRESULT interp_div(exec_ctx_t *ctx)
|
2008-09-16 20:47:06 +02:00
|
|
|
{
|
2012-03-27 11:30:03 +02:00
|
|
|
double l, r;
|
2011-11-29 11:09:04 +01:00
|
|
|
HRESULT hres;
|
2008-09-16 20:47:06 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-29 11:09:04 +01:00
|
|
|
hres = stack_pop_number(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_number(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l/r));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-09 01:09:17 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.5.3 */
|
2011-11-29 11:09:20 +01:00
|
|
|
static HRESULT interp_mod(exec_ctx_t *ctx)
|
2008-10-09 01:09:17 +02:00
|
|
|
{
|
2012-03-27 11:30:03 +02:00
|
|
|
double l, r;
|
2011-11-29 11:09:20 +01:00
|
|
|
HRESULT hres;
|
2008-10-09 01:09:17 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-29 11:09:20 +01:00
|
|
|
hres = stack_pop_number(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_number(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(fmod(l, r)));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-11-30 10:14:22 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.4.2 */
|
|
|
|
static HRESULT interp_delete(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t objv, namev;
|
2011-11-30 10:14:22 +01:00
|
|
|
IDispatch *obj;
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *name;
|
2011-11-30 10:14:22 +01:00
|
|
|
BOOL ret;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
namev = stack_pop(ctx);
|
|
|
|
objv = stack_pop(ctx);
|
2011-11-30 10:14:22 +01:00
|
|
|
|
2012-09-17 15:19:19 +02:00
|
|
|
hres = to_object(ctx->script, objv, &obj);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(objv);
|
2011-11-30 10:14:22 +01:00
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(namev);
|
2011-11-30 10:14:22 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_string(ctx->script, namev, &name);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(namev);
|
2011-11-30 10:14:22 +01:00
|
|
|
if(FAILED(hres)) {
|
|
|
|
IDispatch_Release(obj);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-11-30 13:02:19 +01:00
|
|
|
hres = disp_delete_name(ctx->script, obj, name, &ret);
|
2011-11-30 10:14:22 +01:00
|
|
|
IDispatch_Release(obj);
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(name);
|
2011-11-30 10:14:22 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(ret));
|
2011-11-30 10:14:22 +01:00
|
|
|
}
|
|
|
|
|
2011-12-15 15:42:27 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.4.2 */
|
|
|
|
static HRESULT interp_delete_ident(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg = get_op_bstr(ctx, 0);
|
2011-12-15 15:42:27 +01:00
|
|
|
exprval_t exprval;
|
2012-11-30 13:02:05 +01:00
|
|
|
BOOL ret;
|
2011-12-15 15:42:27 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(arg));
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = identifier_eval(ctx->script, arg, &exprval);
|
2011-12-15 15:42:27 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-12-17 13:36:18 +01:00
|
|
|
switch(exprval.type) {
|
|
|
|
case EXPRVAL_IDREF:
|
|
|
|
hres = disp_delete(exprval.u.idref.disp, exprval.u.idref.id, &ret);
|
|
|
|
IDispatch_Release(exprval.u.idref.disp);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return ret;
|
|
|
|
break;
|
|
|
|
case EXPRVAL_INVALID:
|
|
|
|
ret = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
2011-12-15 15:42:27 +01:00
|
|
|
FIXME("Unsupported exprval\n");
|
|
|
|
exprval_release(&exprval);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(ret));
|
2011-12-15 15:42:27 +01:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:42:33 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.2 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_void(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2008-09-19 00:42:33 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-24 14:24:45 +01:00
|
|
|
stack_popn(ctx, 1);
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_undefined());
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:42:33 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.3 */
|
2012-09-17 15:17:02 +02:00
|
|
|
static HRESULT typeof_string(jsval_t v, const WCHAR **ret)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:20:57 +02:00
|
|
|
switch(jsval_type(v)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_UNDEFINED:
|
2009-08-27 01:21:56 +02:00
|
|
|
*ret = undefinedW;
|
2008-09-10 02:36:03 +02:00
|
|
|
break;
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_NULL:
|
2009-08-27 01:21:56 +02:00
|
|
|
*ret = objectW;
|
2008-09-10 02:36:03 +02:00
|
|
|
break;
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_OBJECT: {
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t *dispex;
|
2008-09-10 02:36:03 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(get_object(v) && (dispex = iface_to_jsdisp((IUnknown*)get_object(v)))) {
|
2009-08-27 01:21:56 +02:00
|
|
|
*ret = is_class(dispex, JSCLASS_FUNCTION) ? functionW : objectW;
|
|
|
|
jsdisp_release(dispex);
|
2008-09-10 02:36:03 +02:00
|
|
|
}else {
|
2009-08-27 01:21:56 +02:00
|
|
|
*ret = objectW;
|
2008-09-10 02:36:03 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-09-17 15:17:02 +02:00
|
|
|
case JSV_STRING:
|
|
|
|
*ret = stringW;
|
|
|
|
break;
|
|
|
|
case JSV_NUMBER:
|
|
|
|
*ret = numberW;
|
|
|
|
break;
|
|
|
|
case JSV_BOOL:
|
|
|
|
*ret = booleanW;
|
|
|
|
break;
|
|
|
|
case JSV_VARIANT:
|
|
|
|
FIXME("unhandled variant %s\n", debugstr_variant(get_variant(v)));
|
2011-12-13 11:57:11 +01:00
|
|
|
return E_NOTIMPL;
|
2008-09-10 02:36:03 +02:00
|
|
|
}
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
return S_OK;
|
2009-08-27 01:21:56 +02:00
|
|
|
}
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.4.3 */
|
|
|
|
static HRESULT interp_typeofid(exec_ctx_t *ctx)
|
2009-08-27 01:21:56 +02:00
|
|
|
{
|
2011-12-13 11:57:11 +01:00
|
|
|
const WCHAR *ret;
|
|
|
|
IDispatch *obj;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-13 11:57:11 +01:00
|
|
|
DISPID id;
|
2009-08-27 01:21:56 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
obj = stack_pop_objid(ctx, &id);
|
|
|
|
if(!obj)
|
2013-03-08 11:37:56 +01:00
|
|
|
return stack_push(ctx, jsval_string(jsstr_undefined()));
|
2011-12-13 11:57:11 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, obj, id, &v);
|
2011-12-13 11:57:11 +01:00
|
|
|
IDispatch_Release(obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return stack_push_string(ctx, unknownW);
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = typeof_string(v, &ret);
|
|
|
|
jsval_release(v);
|
2009-08-27 01:21:56 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
return stack_push_string(ctx, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.4.3 */
|
|
|
|
static HRESULT interp_typeofident(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:01 +02:00
|
|
|
const BSTR arg = get_op_bstr(ctx, 0);
|
2011-12-13 11:57:11 +01:00
|
|
|
exprval_t exprval;
|
|
|
|
const WCHAR *ret;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-13 11:57:11 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(arg));
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = identifier_eval(ctx->script, arg, &exprval);
|
2011-12-13 11:57:11 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(exprval.type == EXPRVAL_INVALID) {
|
2013-03-08 11:37:56 +01:00
|
|
|
hres = stack_push(ctx, jsval_string(jsstr_undefined()));
|
2011-12-13 11:57:11 +01:00
|
|
|
exprval_release(&exprval);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = exprval_to_value(ctx->script, &exprval, &v);
|
2009-08-27 01:21:56 +02:00
|
|
|
exprval_release(&exprval);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-10 02:36:03 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = typeof_string(v, &ret);
|
|
|
|
jsval_release(v);
|
2011-12-13 11:57:11 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2009-08-27 01:21:56 +02:00
|
|
|
|
2011-12-13 11:57:11 +01:00
|
|
|
return stack_push_string(ctx, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.4.3 */
|
|
|
|
static HRESULT interp_typeof(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
const WCHAR *ret;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-13 11:57:11 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
|
|
|
hres = typeof_string(v, &ret);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-13 11:57:11 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
return stack_push_string(ctx, ret);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-16 20:47:43 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.7 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_minus(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-03-27 11:30:03 +02:00
|
|
|
double n;
|
2008-09-16 20:47:43 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-25 12:06:30 +01:00
|
|
|
hres = stack_pop_number(ctx, &n);
|
2008-09-16 20:47:43 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(-n));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:33:15 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.6 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_tonum(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-09-17 23:33:15 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-21 15:35:41 +01:00
|
|
|
v = stack_pop(ctx);
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx->script, v, &n);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2008-09-17 23:33:15 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(n));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:58:28 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.3.1 */
|
2011-12-07 11:01:53 +01:00
|
|
|
static HRESULT interp_postinc(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:20 +02:00
|
|
|
const int arg = get_op_int(ctx, 0);
|
2011-12-07 11:01:53 +01:00
|
|
|
IDispatch *obj;
|
|
|
|
DISPID id;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2008-09-11 23:58:28 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-07 11:01:53 +01:00
|
|
|
TRACE("%d\n", arg);
|
2008-09-11 23:58:28 +02:00
|
|
|
|
2011-12-07 11:01:53 +01:00
|
|
|
obj = stack_pop_objid(ctx, &id);
|
|
|
|
if(!obj)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_OBJECT_EXPECTED, NULL);
|
2008-09-11 23:58:28 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, obj, id, &v);
|
2008-09-11 23:58:28 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-09-11 23:58:28 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx->script, v, &n);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propput(ctx->script, obj, id, jsval_number(n+(double)arg));
|
2011-12-09 11:04:14 +01:00
|
|
|
if(FAILED(hres))
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2008-09-11 23:58:28 +02:00
|
|
|
}
|
2011-12-07 11:01:53 +01:00
|
|
|
IDispatch_Release(obj);
|
2008-09-11 23:58:28 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, v);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-08 12:02:23 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.4.4, 11.4.5 */
|
2011-12-08 12:02:08 +01:00
|
|
|
static HRESULT interp_preinc(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-05-12 16:21:20 +02:00
|
|
|
const int arg = get_op_int(ctx, 0);
|
2011-12-08 12:02:08 +01:00
|
|
|
IDispatch *obj;
|
2012-09-17 15:17:02 +02:00
|
|
|
double ret;
|
2011-12-08 12:02:08 +01:00
|
|
|
DISPID id;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2008-09-11 23:57:40 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-08 12:02:08 +01:00
|
|
|
TRACE("%d\n", arg);
|
2008-09-11 23:57:40 +02:00
|
|
|
|
2011-12-08 12:02:08 +01:00
|
|
|
obj = stack_pop_objid(ctx, &id);
|
|
|
|
if(!obj)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx->script, JS_E_OBJECT_EXPECTED, NULL);
|
2008-09-11 23:57:40 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propget(ctx->script, obj, id, &v);
|
2008-09-11 23:57:40 +02:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-09-11 23:57:40 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx->script, v, &n);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-08 12:02:08 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
ret = n+(double)arg;
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propput(ctx->script, obj, id, jsval_number(ret));
|
2011-12-08 12:02:08 +01:00
|
|
|
}
|
2008-09-11 23:57:40 +02:00
|
|
|
}
|
2011-12-08 12:02:08 +01:00
|
|
|
IDispatch_Release(obj);
|
2008-09-11 23:57:40 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(ret));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:29:16 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.9.3 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT equal_values(script_ctx_t *ctx, jsval_t lval, jsval_t rval, BOOL *ret)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:20:57 +02:00
|
|
|
if(jsval_type(lval) == jsval_type(rval) || (is_number(lval) && is_number(rval)))
|
2008-09-17 23:29:16 +02:00
|
|
|
return equal2_values(lval, rval, ret);
|
|
|
|
|
|
|
|
/* FIXME: NULL disps should be handled in more general way */
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(lval) && !get_object(lval))
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, jsval_null(), rval, ret);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(rval) && !get_object(rval))
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, lval, jsval_null(), ret);
|
2008-09-17 23:29:16 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if((is_null(lval) && is_undefined(rval)) || (is_undefined(lval) && is_null(rval))) {
|
2008-09-17 23:29:16 +02:00
|
|
|
*ret = TRUE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_string(lval) && is_number(rval)) {
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-09-17 23:29:16 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, lval, &n);
|
2008-09-17 23:29:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-03-27 11:28:51 +02:00
|
|
|
/* FIXME: optimize */
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, jsval_number(n), rval, ret);
|
2008-09-17 23:29:16 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_string(rval) && is_number(lval)) {
|
2012-03-27 11:28:51 +02:00
|
|
|
double n;
|
2008-09-17 23:29:16 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, rval, &n);
|
2008-09-17 23:29:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-03-27 11:28:51 +02:00
|
|
|
/* FIXME: optimize */
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, lval, jsval_number(n), ret);
|
2008-09-17 23:29:16 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_bool(rval))
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, lval, jsval_number(get_bool(rval) ? 1 : 0), ret);
|
2008-09-17 23:29:16 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_bool(lval))
|
2012-09-18 19:01:49 +02:00
|
|
|
return equal_values(ctx, jsval_number(get_bool(lval) ? 1 : 0), rval, ret);
|
2008-09-17 23:29:16 +02:00
|
|
|
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(rval) && (is_string(lval) || is_number(lval))) {
|
|
|
|
jsval_t prim;
|
2008-09-17 23:29:16 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, rval, &prim, NO_HINT);
|
2008-09-17 23:29:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = equal_values(ctx, lval, prim, ret);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(prim);
|
2008-09-17 23:29:16 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_object_instance(lval) && (is_string(rval) || is_number(rval))) {
|
|
|
|
jsval_t prim;
|
2008-09-17 23:29:16 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, lval, &prim, NO_HINT);
|
2008-09-17 23:29:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = equal_values(ctx, prim, rval, ret);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(prim);
|
2008-09-17 23:29:16 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
*ret = FALSE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.9.1 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_eq(exec_ctx_t *ctx)
|
2008-09-17 23:29:16 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-17 23:29:16 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-11-25 12:07:30 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-17 23:29:16 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s == %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2008-09-17 23:29:16 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = equal_values(ctx->script, l, r, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-17 23:29:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-11-25 12:07:30 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.9.2 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_neq(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-09 01:26:20 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-11-18 14:09:44 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-09 01:26:20 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s != %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2011-11-25 12:07:30 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = equal_values(ctx->script, l, r, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-09 01:26:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(!b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-11-25 12:07:30 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.9.4 */
|
|
|
|
static HRESULT interp_eq2(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-17 23:29:34 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
2008-09-03 00:25:21 +02:00
|
|
|
|
2011-11-25 12:07:30 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-17 23:29:34 +02:00
|
|
|
|
2013-03-25 12:28:38 +01:00
|
|
|
TRACE("%s === %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
|
|
|
|
2011-11-25 12:07:30 +01:00
|
|
|
hres = equal2_values(r, l, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-17 23:29:34 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:26:37 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.9.5 */
|
2011-11-18 14:10:17 +01:00
|
|
|
static HRESULT interp_neq2(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-09 01:26:37 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-18 14:10:17 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-09 01:26:37 +02:00
|
|
|
|
2011-11-18 14:10:17 +01:00
|
|
|
hres = equal2_values(r, l, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-09 01:26:37 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(!b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:56:03 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.8.5 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT less_eval(script_ctx_t *ctx, jsval_t lval, jsval_t rval, BOOL greater, BOOL *ret)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-03-27 11:28:51 +02:00
|
|
|
double ln, rn;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-11 23:56:03 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, lval, &l, NO_HINT);
|
2008-09-11 23:56:03 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_primitive(ctx, rval, &r, NO_HINT);
|
2008-09-11 23:56:03 +02:00
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
2008-09-11 23:56:03 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(is_string(l) && is_string(r)) {
|
2012-10-11 12:16:01 +02:00
|
|
|
*ret = (jsstr_cmp(get_string(l), get_string(r)) < 0) ^ greater;
|
|
|
|
jsstr_release(get_string(l));
|
|
|
|
jsstr_release(get_string(r));
|
2008-09-11 23:56:03 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, l, &ln);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
2008-09-11 23:56:03 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_number(ctx, r, &rn);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(r);
|
2008-09-11 23:56:03 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-03-27 11:28:51 +02:00
|
|
|
*ret = !isnan(ln) && !isnan(rn) && ((ln < rn) ^ greater);
|
2008-09-11 23:56:03 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 11.8.1 */
|
2011-12-01 13:22:52 +01:00
|
|
|
static HRESULT interp_lt(exec_ctx_t *ctx)
|
2008-09-11 23:56:03 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-11 23:56:03 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-01 13:22:52 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-11 23:56:03 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s < %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2008-09-11 23:56:03 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = less_eval(ctx->script, l, r, FALSE, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-11 23:56:03 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-01 13:23:03 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.8.1 */
|
|
|
|
static HRESULT interp_lteq(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-11 23:56:29 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-01 13:23:03 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-11 23:56:29 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s <= %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2008-09-11 23:56:29 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = less_eval(ctx->script, r, l, TRUE, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-11 23:56:29 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:56:51 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.8.2 */
|
2011-12-01 13:23:16 +01:00
|
|
|
static HRESULT interp_gt(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-11 23:56:51 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-01 13:23:16 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-11 23:56:51 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s > %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2008-09-11 23:56:51 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = less_eval(ctx->script, r, l, FALSE, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-11 23:56:51 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-11 23:57:13 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.8.4 */
|
2011-12-01 13:23:36 +01:00
|
|
|
static HRESULT interp_gteq(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t l, r;
|
2008-09-11 23:57:13 +02:00
|
|
|
BOOL b;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2011-12-01 13:23:36 +01:00
|
|
|
r = stack_pop(ctx);
|
|
|
|
l = stack_pop(ctx);
|
2008-09-11 23:57:13 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
TRACE("%s >= %s\n", debugstr_jsval(l), debugstr_jsval(r));
|
2008-09-11 23:57:13 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = less_eval(ctx->script, l, r, TRUE, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(l);
|
|
|
|
jsval_release(r);
|
2008-09-11 23:57:13 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-17 23:32:59 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.8 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_bneg(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2008-09-17 23:32:59 +02:00
|
|
|
INT i;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-21 15:35:15 +01:00
|
|
|
v = stack_pop(ctx);
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = to_int32(ctx->script, v, &i);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2008-09-17 23:32:59 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(~i));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:25:40 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.4.9 */
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_neg(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
|
|
|
BOOL b;
|
2008-09-09 01:25:40 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2011-11-18 14:10:40 +01:00
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:18:03 +02:00
|
|
|
hres = to_boolean(v, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2008-09-09 01:25:40 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_bool(!b));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:44:11 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.7.1 */
|
2011-12-09 11:04:57 +01:00
|
|
|
static HRESULT interp_lshift(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2011-12-09 11:04:57 +01:00
|
|
|
DWORD r;
|
|
|
|
INT l;
|
|
|
|
HRESULT hres;
|
2008-09-19 00:44:11 +02:00
|
|
|
|
2011-12-09 11:04:57 +01:00
|
|
|
hres = stack_pop_uint(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_int(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-19 00:44:11 +02:00
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l << (r&0x1f)));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-08 12:03:22 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.7.2 */
|
|
|
|
static HRESULT interp_rshift(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
DWORD r;
|
|
|
|
INT l;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = stack_pop_uint(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = stack_pop_int(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l >> (r&0x1f)));
|
2011-12-08 12:03:22 +01:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:44:49 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.7.3 */
|
2011-12-09 11:04:24 +01:00
|
|
|
static HRESULT interp_rshift2(exec_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2011-12-09 11:04:24 +01:00
|
|
|
DWORD r, l;
|
|
|
|
HRESULT hres;
|
2008-09-19 00:44:49 +02:00
|
|
|
|
2011-12-09 11:04:24 +01:00
|
|
|
hres = stack_pop_uint(ctx, &r);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2008-09-19 00:44:49 +02:00
|
|
|
|
2011-12-09 11:04:24 +01:00
|
|
|
hres = stack_pop_uint(ctx, &l);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_number(l >> (r&0x1f)));
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 11:11:29 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.13.1 */
|
|
|
|
static HRESULT interp_assign(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
IDispatch *disp;
|
|
|
|
DISPID id;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2011-12-05 11:11:29 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
disp = stack_pop_objid(ctx, &id);
|
|
|
|
if(!disp) {
|
|
|
|
jsval_release(v);
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_reference_error(ctx->script, JS_E_ILLEGAL_ASSIGN, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
}
|
2011-12-05 11:11:29 +01:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_propput(ctx->script, disp, id, v);
|
2011-12-05 11:11:29 +01:00
|
|
|
IDispatch_Release(disp);
|
|
|
|
if(FAILED(hres)) {
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-05 11:11:29 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stack_push(ctx, v);
|
|
|
|
}
|
|
|
|
|
2012-04-17 16:25:58 +02:00
|
|
|
/* JScript extension */
|
|
|
|
static HRESULT interp_assign_call(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-09-17 15:16:42 +02:00
|
|
|
const unsigned argc = get_op_uint(ctx, 0);
|
2012-04-17 16:25:58 +02:00
|
|
|
IDispatch *disp;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t v;
|
2012-04-17 16:25:58 +02:00
|
|
|
DISPID id;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
TRACE("%u\n", argc);
|
2012-04-17 16:25:58 +02:00
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
disp = stack_topn_objid(ctx, argc+1, &id);
|
2012-04-17 16:25:58 +02:00
|
|
|
if(!disp)
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_reference_error(ctx->script, JS_E_ILLEGAL_ASSIGN, NULL);
|
2012-04-17 16:25:58 +02:00
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = disp_call(ctx->script, disp, id, DISPATCH_PROPERTYPUT, argc+1, stack_args(ctx, argc+1), NULL);
|
2012-04-17 16:25:58 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:16:42 +02:00
|
|
|
stack_popn(ctx, argc+2);
|
2012-04-17 16:25:58 +02:00
|
|
|
return stack_push(ctx, v);
|
|
|
|
}
|
|
|
|
|
2011-12-08 12:02:40 +01:00
|
|
|
static HRESULT interp_undefined(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_undefined());
|
2011-12-08 12:02:40 +01:00
|
|
|
}
|
|
|
|
|
2011-11-30 10:14:04 +01:00
|
|
|
static HRESULT interp_jmp(exec_ctx_t *ctx)
|
2011-11-28 12:04:51 +01:00
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2011-11-28 12:04:51 +01:00
|
|
|
|
2012-05-12 16:21:10 +02:00
|
|
|
TRACE("%u\n", arg);
|
2011-11-28 12:04:51 +01:00
|
|
|
|
|
|
|
ctx->ip = arg;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-20 11:47:37 +01:00
|
|
|
static HRESULT interp_jmp_z(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-05-12 16:21:10 +02:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2012-09-17 15:17:02 +02:00
|
|
|
BOOL b;
|
|
|
|
jsval_t v;
|
2011-12-20 11:47:37 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
v = stack_pop(ctx);
|
2012-09-17 15:18:03 +02:00
|
|
|
hres = to_boolean(v, &b);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-20 11:47:37 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(b)
|
|
|
|
ctx->ip++;
|
|
|
|
else
|
|
|
|
ctx->ip = arg;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-25 12:05:50 +01:00
|
|
|
static HRESULT interp_pop(exec_ctx_t *ctx)
|
|
|
|
{
|
2012-12-14 11:06:43 +01:00
|
|
|
const unsigned arg = get_op_uint(ctx, 0);
|
2011-11-25 12:05:50 +01:00
|
|
|
|
2012-12-14 11:06:43 +01:00
|
|
|
TRACE("%u\n", arg);
|
|
|
|
|
|
|
|
stack_popn(ctx, arg);
|
2011-11-25 12:05:50 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-18 14:09:44 +01:00
|
|
|
static HRESULT interp_ret(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
ctx->ip = -1;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2012-12-13 12:08:34 +01:00
|
|
|
static HRESULT interp_setret(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
jsval_release(ctx->ret);
|
|
|
|
ctx->ret = stack_pop(ctx);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-18 14:09:44 +01:00
|
|
|
typedef HRESULT (*op_func_t)(exec_ctx_t*);
|
|
|
|
|
|
|
|
static const op_func_t op_funcs[] = {
|
2011-11-24 14:23:39 +01:00
|
|
|
#define X(x,a,b,c) interp_##x,
|
2011-11-18 14:09:44 +01:00
|
|
|
OP_LIST
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
|
|
|
static const unsigned op_move[] = {
|
2011-11-24 14:23:39 +01:00
|
|
|
#define X(a,x,b,c) x,
|
2011-11-18 14:09:44 +01:00
|
|
|
OP_LIST
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
2011-12-28 12:06:28 +01:00
|
|
|
static HRESULT unwind_exception(exec_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
except_frame_t *except_frame;
|
2012-09-17 15:17:36 +02:00
|
|
|
jsval_t except_val;
|
2011-12-28 12:06:28 +01:00
|
|
|
BSTR ident;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
except_frame = ctx->except_frame;
|
|
|
|
ctx->except_frame = except_frame->next;
|
|
|
|
|
|
|
|
assert(except_frame->stack_top <= ctx->top);
|
|
|
|
stack_popn(ctx, ctx->top - except_frame->stack_top);
|
|
|
|
|
|
|
|
while(except_frame->scope != ctx->scope_chain)
|
|
|
|
scope_pop(&ctx->scope_chain);
|
|
|
|
|
|
|
|
ctx->ip = except_frame->catch_off;
|
|
|
|
|
2012-09-18 19:02:16 +02:00
|
|
|
except_val = ctx->script->ei.val;
|
|
|
|
ctx->script->ei.val = jsval_undefined();
|
|
|
|
clear_ei(ctx->script);
|
2011-12-28 12:06:28 +01:00
|
|
|
|
|
|
|
ident = except_frame->ident;
|
|
|
|
heap_free(except_frame);
|
|
|
|
|
|
|
|
if(ident) {
|
|
|
|
jsdisp_t *scope_obj;
|
|
|
|
|
2012-03-12 19:23:56 +01:00
|
|
|
hres = create_dispex(ctx->script, NULL, NULL, &scope_obj);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2012-09-18 19:01:49 +02:00
|
|
|
hres = jsdisp_propput_name(scope_obj, ident, except_val);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
jsdisp_release(scope_obj);
|
|
|
|
}
|
2012-09-17 15:17:36 +02:00
|
|
|
jsval_release(except_val);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-13 14:34:25 +02:00
|
|
|
hres = scope_push(ctx->scope_chain, scope_obj, to_disp(scope_obj), &ctx->scope_chain);
|
2011-12-28 12:06:28 +01:00
|
|
|
jsdisp_release(scope_obj);
|
|
|
|
}else {
|
2012-09-17 15:17:36 +02:00
|
|
|
hres = stack_push(ctx, except_val);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
hres = stack_push(ctx, jsval_bool(FALSE));
|
2011-12-28 12:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:02:16 +02:00
|
|
|
static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code_t *func, jsval_t *ret)
|
2011-12-19 14:58:42 +01:00
|
|
|
{
|
|
|
|
exec_ctx_t *exec_ctx = ctx->exec_ctx;
|
2011-12-28 12:06:28 +01:00
|
|
|
except_frame_t *prev_except_frame;
|
2012-04-24 17:39:09 +02:00
|
|
|
function_code_t *prev_func;
|
2011-12-19 14:58:42 +01:00
|
|
|
unsigned prev_ip, prev_top;
|
2011-12-27 11:16:26 +01:00
|
|
|
scope_chain_t *prev_scope;
|
2012-03-12 19:21:27 +01:00
|
|
|
bytecode_t *prev_code;
|
2011-12-19 14:58:42 +01:00
|
|
|
jsop_t op;
|
|
|
|
HRESULT hres = S_OK;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
prev_top = exec_ctx->top;
|
2011-12-27 11:16:26 +01:00
|
|
|
prev_scope = exec_ctx->scope_chain;
|
2011-12-28 12:06:28 +01:00
|
|
|
prev_except_frame = exec_ctx->except_frame;
|
2011-12-19 14:58:42 +01:00
|
|
|
prev_ip = exec_ctx->ip;
|
2012-03-12 19:21:27 +01:00
|
|
|
prev_code = exec_ctx->code;
|
2012-04-24 17:39:09 +02:00
|
|
|
prev_func = exec_ctx->func_code;
|
|
|
|
exec_ctx->ip = func->instr_off;
|
2011-12-28 12:06:28 +01:00
|
|
|
exec_ctx->except_frame = NULL;
|
2012-03-12 19:21:27 +01:00
|
|
|
exec_ctx->code = code;
|
2012-04-24 17:39:09 +02:00
|
|
|
exec_ctx->func_code = func;
|
2011-12-19 14:58:42 +01:00
|
|
|
|
2011-12-30 11:16:08 +01:00
|
|
|
while(exec_ctx->ip != -1) {
|
2012-03-12 19:21:27 +01:00
|
|
|
op = code->instrs[exec_ctx->ip].op;
|
2011-12-19 14:58:42 +01:00
|
|
|
hres = op_funcs[op](exec_ctx);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres)) {
|
2012-12-07 11:57:42 +01:00
|
|
|
TRACE("EXCEPTION %08x\n", hres);
|
2011-12-28 12:06:28 +01:00
|
|
|
|
|
|
|
if(!exec_ctx->except_frame)
|
|
|
|
break;
|
|
|
|
|
|
|
|
hres = unwind_exception(exec_ctx);
|
|
|
|
if(FAILED(hres))
|
|
|
|
break;
|
|
|
|
}else {
|
|
|
|
exec_ctx->ip += op_move[op];
|
|
|
|
}
|
2011-12-19 14:58:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
exec_ctx->ip = prev_ip;
|
2011-12-28 12:06:28 +01:00
|
|
|
exec_ctx->except_frame = prev_except_frame;
|
2012-03-12 19:21:27 +01:00
|
|
|
exec_ctx->code = prev_code;
|
2012-04-24 17:39:09 +02:00
|
|
|
exec_ctx->func_code = prev_func;
|
2011-12-19 14:58:42 +01:00
|
|
|
|
2011-12-30 11:16:08 +01:00
|
|
|
if(FAILED(hres)) {
|
2011-12-27 11:16:26 +01:00
|
|
|
while(exec_ctx->scope_chain != prev_scope)
|
|
|
|
scope_pop(&exec_ctx->scope_chain);
|
2011-12-28 12:07:06 +01:00
|
|
|
stack_popn(exec_ctx, exec_ctx->top-prev_top);
|
2011-12-19 14:58:42 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(exec_ctx->top == prev_top+1 || exec_ctx->top == prev_top);
|
2011-12-27 11:16:26 +01:00
|
|
|
assert(exec_ctx->scope_chain == prev_scope);
|
2012-12-13 12:08:34 +01:00
|
|
|
assert(exec_ctx->top == prev_top);
|
2011-12-19 14:58:42 +01:00
|
|
|
|
2012-12-13 12:08:34 +01:00
|
|
|
*ret = exec_ctx->ret;
|
|
|
|
exec_ctx->ret = jsval_undefined();
|
2011-12-19 14:58:42 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-02 14:45:10 +02:00
|
|
|
static HRESULT bind_event_target(script_ctx_t *ctx, function_code_t *func, jsdisp_t *func_obj)
|
|
|
|
{
|
|
|
|
IBindEventHandler *target;
|
|
|
|
exprval_t exprval;
|
|
|
|
IDispatch *disp;
|
|
|
|
jsval_t v;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = identifier_eval(ctx, func->event_target, &exprval);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = exprval_to_value(ctx, &exprval, &v);
|
|
|
|
exprval_release(&exprval);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(!is_object_instance(v)) {
|
|
|
|
FIXME("Can't bind to %s\n", debugstr_jsval(v));
|
|
|
|
jsval_release(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
disp = get_object(v);
|
|
|
|
hres = IDispatch_QueryInterface(disp, &IID_IBindEventHandler, (void**)&target);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
hres = IBindEventHandler_BindHandler(target, func->name, (IDispatch*)&func_obj->IDispatchEx_iface);
|
|
|
|
IBindEventHandler_Release(target);
|
|
|
|
if(FAILED(hres))
|
|
|
|
WARN("BindEvent failed: %08x\n", hres);
|
|
|
|
}else {
|
|
|
|
FIXME("No IBindEventHandler, not yet supported binding\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
IDispatch_Release(disp);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:01:49 +02:00
|
|
|
HRESULT exec_source(exec_ctx_t *ctx, bytecode_t *code, function_code_t *func, BOOL from_eval, jsval_t *ret)
|
2011-12-29 11:08:07 +01:00
|
|
|
{
|
2012-04-24 17:39:09 +02:00
|
|
|
exec_ctx_t *prev_ctx;
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_t val;
|
2012-04-24 17:39:09 +02:00
|
|
|
unsigned i;
|
2011-12-29 11:08:07 +01:00
|
|
|
HRESULT hres = S_OK;
|
|
|
|
|
2012-04-24 17:39:09 +02:00
|
|
|
for(i = 0; i < func->func_cnt; i++) {
|
2011-12-29 11:08:07 +01:00
|
|
|
jsdisp_t *func_obj;
|
|
|
|
|
2012-04-24 17:39:25 +02:00
|
|
|
if(!func->funcs[i].name)
|
2012-03-12 19:22:36 +01:00
|
|
|
continue;
|
|
|
|
|
2012-04-25 11:25:57 +02:00
|
|
|
hres = create_source_function(ctx->script, code, func->funcs+i, ctx->scope_chain, &func_obj);
|
2011-12-29 11:08:07 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2015-06-02 14:45:10 +02:00
|
|
|
if(func->funcs[i].event_target)
|
|
|
|
hres = bind_event_target(ctx->script, func->funcs+i, func_obj);
|
|
|
|
else
|
|
|
|
hres = jsdisp_propput_name(ctx->var_disp, func->funcs[i].name, jsval_obj(func_obj));
|
2011-12-29 11:08:07 +01:00
|
|
|
jsdisp_release(func_obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2012-04-25 10:47:56 +02:00
|
|
|
for(i=0; i < func->var_cnt; i++) {
|
|
|
|
if(!ctx->is_global || !lookup_global_members(ctx->script, func->variables[i], NULL)) {
|
|
|
|
DISPID id = 0;
|
2011-12-29 11:08:07 +01:00
|
|
|
|
2012-04-25 10:47:56 +02:00
|
|
|
hres = jsdisp_get_id(ctx->var_disp, func->variables[i], fdexNameEnsure, &id);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
2011-12-29 11:08:07 +01:00
|
|
|
}
|
|
|
|
|
2012-03-12 19:24:22 +01:00
|
|
|
prev_ctx = ctx->script->exec_ctx;
|
|
|
|
ctx->script->exec_ctx = ctx;
|
2011-12-29 11:08:07 +01:00
|
|
|
|
2012-09-18 19:02:16 +02:00
|
|
|
hres = enter_bytecode(ctx->script, code, func, &val);
|
2012-03-12 19:24:22 +01:00
|
|
|
assert(ctx->script->exec_ctx == ctx);
|
|
|
|
ctx->script->exec_ctx = prev_ctx;
|
2012-04-04 17:05:07 +02:00
|
|
|
if(FAILED(hres))
|
2011-12-29 11:08:07 +01:00
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
if(ret)
|
|
|
|
*ret = val;
|
2011-12-30 11:21:05 +01:00
|
|
|
else
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(val);
|
2011-12-29 11:08:07 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|