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;
|
|
|
|
|
2016-03-25 17:49:24 +01:00
|
|
|
static HRESULT stack_push(script_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;
|
2016-03-25 17:49:24 +01:00
|
|
|
}else if(ctx->stack_size == ctx->stack_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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:24 +01:00
|
|
|
ctx->stack[ctx->stack_top++] = v;
|
2011-11-18 14:09:44 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline HRESULT stack_push_string(script_ctx_t *ctx, const WCHAR *str)
|
2011-12-13 11:57:11 +01:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT stack_push_objid(script_ctx_t *ctx, IDispatch *disp, DISPID id)
|
2011-12-05 11:11:29 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline jsval_t stack_top(script_ctx_t *ctx)
|
2011-11-28 12:03:57 +01:00
|
|
|
{
|
2016-03-25 17:49:24 +01:00
|
|
|
assert(ctx->stack_top > ctx->call_ctx->stack_base);
|
|
|
|
return ctx->stack[ctx->stack_top-1];
|
2011-11-28 12:03:57 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline jsval_t stack_topn(script_ctx_t *ctx, unsigned n)
|
2011-11-28 12:05:07 +01:00
|
|
|
{
|
2016-03-25 17:49:24 +01:00
|
|
|
assert(ctx->stack_top > ctx->call_ctx->stack_base+n);
|
|
|
|
return ctx->stack[ctx->stack_top-1-n];
|
2011-11-28 12:05:07 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:24 +01:00
|
|
|
static inline jsval_t *stack_args(script_ctx_t *ctx, unsigned n)
|
2012-06-25 14:08:38 +02:00
|
|
|
{
|
|
|
|
if(!n)
|
|
|
|
return NULL;
|
2016-03-25 17:49:24 +01:00
|
|
|
assert(ctx->stack_top > ctx->call_ctx->stack_base+n-1);
|
|
|
|
return ctx->stack + ctx->stack_top-n;
|
2012-06-25 14:08:38 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline jsval_t stack_pop(script_ctx_t *ctx)
|
2011-11-18 14:09:44 +01:00
|
|
|
{
|
2016-03-25 17:49:24 +01:00
|
|
|
assert(ctx->stack_top > ctx->call_ctx->stack_base);
|
|
|
|
return ctx->stack[--ctx->stack_top];
|
2011-11-18 14:09:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static void stack_popn(script_ctx_t *ctx, unsigned n)
|
2011-11-18 14:09:44 +01:00
|
|
|
{
|
|
|
|
while(n--)
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(stack_pop(ctx));
|
2011-11-18 14:09:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT stack_pop_number(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_number(ctx, 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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT stack_pop_object(script_ctx_t *ctx, IDispatch **r)
|
2011-12-06 10:42:09 +01:00
|
|
|
{
|
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))
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, 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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_object(ctx, v, r);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(v);
|
2011-12-06 10:42:09 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline HRESULT stack_pop_int(script_ctx_t *ctx, INT *r)
|
2011-11-29 11:09:35 +01:00
|
|
|
{
|
2016-03-25 17:49:14 +01:00
|
|
|
return to_int32(ctx, stack_pop(ctx), r);
|
2011-11-29 11:09:35 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline HRESULT stack_pop_uint(script_ctx_t *ctx, DWORD *r)
|
2011-12-08 12:03:22 +01:00
|
|
|
{
|
2016-03-25 17:49:14 +01:00
|
|
|
return to_uint32(ctx, stack_pop(ctx), r);
|
2011-12-08 12:03:22 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline IDispatch *stack_pop_objid(script_ctx_t *ctx, DISPID *id)
|
2011-12-05 11:11:29 +01:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline IDispatch *stack_topn_objid(script_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
|
|
|
}
|
|
|
|
|
2016-03-28 17:48:57 +02:00
|
|
|
static inline jsval_t steal_ret(call_frame_t *frame)
|
|
|
|
{
|
|
|
|
jsval_t r = frame->ret;
|
|
|
|
frame->ret = jsval_undefined();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:49:10 +02:00
|
|
|
static inline void clear_ret(call_frame_t *frame)
|
|
|
|
{
|
|
|
|
jsval_release(steal_ret(frame));
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
|
2016-03-25 12:02:35 +01:00
|
|
|
if(ctx->call_ctx) {
|
2016-03-25 12:04:13 +01:00
|
|
|
for(scope = ctx->call_ctx->scope; scope; scope = scope->next) {
|
2015-06-02 14:45:10 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline BSTR get_op_bstr(script_ctx_t *ctx, int i)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
return frame->bytecode->instrs[frame->ip].u.arg[i].bstr;
|
2012-05-12 16:21:01 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline unsigned get_op_uint(script_ctx_t *ctx, int i)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
return frame->bytecode->instrs[frame->ip].u.arg[i].uint;
|
2012-05-12 16:21:10 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline unsigned get_op_int(script_ctx_t *ctx, int i)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
return frame->bytecode->instrs[frame->ip].u.arg[i].lng;
|
2012-05-12 16:21:20 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline jsstr_t *get_op_str(script_ctx_t *ctx, int i)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
return frame->bytecode->instrs[frame->ip].u.arg[i].str;
|
2012-05-12 16:21:56 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline double get_op_double(script_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
return frame->bytecode->instrs[frame->ip].u.dbl;
|
2012-05-12 16:21:56 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline void jmp_next(script_ctx_t *ctx)
|
2016-03-25 12:03:25 +01:00
|
|
|
{
|
2016-03-25 17:49:14 +01:00
|
|
|
ctx->call_ctx->ip++;
|
2016-03-25 12:03:25 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static inline void jmp_abs(script_ctx_t *ctx, unsigned dst)
|
2016-03-25 12:03:25 +01:00
|
|
|
{
|
2016-03-25 17:49:14 +01:00
|
|
|
ctx->call_ctx->ip = dst;
|
2016-03-25 12:03:25 +01:00
|
|
|
}
|
|
|
|
|
2008-09-09 01:25:59 +02:00
|
|
|
/* ECMA-262 3rd Edition 12.2 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_var_set(script_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);
|
2016-03-25 17:49:48 +01:00
|
|
|
hres = jsdisp_propput_name(ctx->call_ctx->variable_obj, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_forin(script_ctx_t *ctx)
|
2011-12-28 12:05:53 +01:00
|
|
|
{
|
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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propput(ctx, var_obj, var_id, jsval_string(str));
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_release(str);
|
2011-12-28 12:05:53 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_next(ctx);
|
2011-12-28 12:05:53 +01:00
|
|
|
}else {
|
|
|
|
stack_popn(ctx, 4);
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, arg);
|
2011-12-28 12:05:53 +01:00
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-27 11:16:26 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.10 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_push_scope(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_object(ctx, 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;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = scope_push(ctx->call_ctx->scope, to_jsdisp(disp), disp, &ctx->call_ctx->scope);
|
2012-09-13 14:34:25 +02:00
|
|
|
IDispatch_Release(disp);
|
2011-12-27 11:16:26 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.10 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_pop_scope(script_ctx_t *ctx)
|
2011-12-27 11:16:26 +01:00
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
scope_pop(&ctx->call_ctx->scope);
|
2011-12-27 11:16:26 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-12-27 11:16:40 +01:00
|
|
|
/* ECMA-262 3rd Edition 12.13 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_case(script_ctx_t *ctx)
|
2011-12-27 11:16:40 +01: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
|
|
|
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);
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, arg);
|
2011-12-27 11:16:40 +01:00
|
|
|
}else {
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_next(ctx);
|
2011-12-27 11:16:40 +01:00
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-09-17 23:30:20 +02:00
|
|
|
/* ECMA-262 3rd Edition 12.13 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_throw(script_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2008-09-16 20:45:13 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
jsval_release(ctx->ei.val);
|
|
|
|
ctx->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
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_throw_ref(script_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);
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_reference_error(ctx, arg, NULL);
|
2011-12-05 11:12:32 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_throw_type(script_ctx_t *ctx)
|
2011-12-15 15:43:01 +01:00
|
|
|
{
|
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);
|
2016-03-25 17:49:14 +01:00
|
|
|
return ptr ? throw_type_error(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_push_except(script_ctx_t *ctx)
|
2011-12-28 12:06:28 +01:00
|
|
|
{
|
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);
|
2016-03-25 17:49:14 +01:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2011-12-28 12:06:28 +01:00
|
|
|
except_frame_t *except;
|
|
|
|
unsigned stack_top;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 17:49:24 +01:00
|
|
|
stack_top = ctx->stack_top;
|
2011-12-28 12:06:28 +01:00
|
|
|
|
|
|
|
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;
|
2016-03-25 12:04:13 +01:00
|
|
|
except->scope = frame->scope;
|
2011-12-28 12:06:28 +01:00
|
|
|
except->catch_off = arg1;
|
|
|
|
except->ident = arg2;
|
2016-03-25 12:03:35 +01:00
|
|
|
except->next = frame->except_frame;
|
|
|
|
frame->except_frame = except;
|
2011-12-28 12:06:28 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.14 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_pop_except(script_ctx_t *ctx)
|
2011-12-28 12:06:28 +01:00
|
|
|
{
|
2016-03-25 17:49:14 +01:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2011-12-28 12:06:28 +01:00
|
|
|
except_frame_t *except;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 12:03:35 +01:00
|
|
|
except = frame->except_frame;
|
2011-12-28 12:06:28 +01:00
|
|
|
assert(except != NULL);
|
|
|
|
|
2016-03-25 12:03:35 +01:00
|
|
|
frame->except_frame = except->next;
|
2011-12-28 12:06:28 +01:00
|
|
|
heap_free(except);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ECMA-262 3rd Edition 12.14 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_end_finally(script_ctx_t *ctx)
|
2011-12-28 12:06:28 +01:00
|
|
|
{
|
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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
ctx->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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_func(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
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);
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = create_source_function(ctx, frame->bytecode, frame->function->funcs+func_idx,
|
2016-03-25 12:04:13 +01:00
|
|
|
frame->scope, &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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_array(script_ctx_t *ctx)
|
2011-12-07 11:01:13 +01:00
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_flat_string(ctx, 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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_get_id(ctx, obj, name, NULL, 0, &id);
|
2013-03-27 11:02:42 +01:00
|
|
|
jsstr_release(name_str);
|
2011-12-07 11:01:13 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_member(script_ctx_t *ctx)
|
2011-12-06 10:42:09 +01:00
|
|
|
{
|
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;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_get_id(ctx, obj, arg, arg, 0, &id);
|
2011-12-06 10:42:09 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_memberid(script_ctx_t *ctx)
|
2011-12-05 11:11:45 +01:00
|
|
|
{
|
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);
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_object(ctx, objv, &obj);
|
2012-09-17 15:17:02 +02:00
|
|
|
jsval_release(objv);
|
2011-12-05 11:11:45 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_flat_string(ctx, 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;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_get_id(ctx, obj, name, NULL, arg, &id);
|
2013-03-27 11:02:42 +01:00
|
|
|
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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_refval(script_ctx_t *ctx)
|
2011-12-05 11:13:02 +01:00
|
|
|
{
|
|
|
|
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)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_reference_error(ctx, JS_E_ILLEGAL_ASSIGN, NULL);
|
2011-12-05 11:13:02 +01:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_new(script_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);
|
2016-03-28 17:49:10 +02:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
|
|
|
jsval_t constr;
|
2008-09-10 21:07:35 +02:00
|
|
|
|
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))
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_OBJECT_EXPECTED, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
else if(!is_object_instance(constr))
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_INVALID_ACTION, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
else if(!get_object(constr))
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_INVALID_PROPERTY, NULL);
|
2008-09-10 21:07:35 +02:00
|
|
|
|
2016-03-28 17:49:10 +02:00
|
|
|
clear_ret(frame);
|
2016-03-29 17:49:19 +02:00
|
|
|
return disp_call_value(ctx, get_object(constr), NULL, DISPATCH_CONSTRUCT | DISPATCH_JSCRIPT_CALLEREXECSSOURCE,
|
2016-03-28 17:49:10 +02:00
|
|
|
argc, stack_args(ctx, argc), &frame->ret);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.2.3 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_call(script_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);
|
2016-03-28 17:49:24 +02:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
|
|
|
jsval_t obj;
|
2008-09-09 01:25:05 +02:00
|
|
|
|
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))
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_INVALID_PROPERTY, NULL);
|
2008-09-09 01:25:05 +02:00
|
|
|
|
2016-03-28 17:49:24 +02:00
|
|
|
clear_ret(frame);
|
2016-03-29 17:49:08 +02:00
|
|
|
return disp_call_value(ctx, get_object(obj), NULL, DISPATCH_METHOD | DISPATCH_JSCRIPT_CALLEREXECSSOURCE,
|
2016-03-28 17:49:24 +02:00
|
|
|
argn, stack_args(ctx, argn), do_ret ? &frame->ret : NULL);
|
2008-09-03 00:25:21 +02:00
|
|
|
}
|
|
|
|
|
2011-12-07 11:00:20 +01:00
|
|
|
/* ECMA-262 3rd Edition 11.2.3 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_call_member(script_ctx_t *ctx)
|
2011-12-07 11:00:20 +01: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);
|
2016-03-28 17:49:24 +02:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2011-12-07 11:00:20 +01:00
|
|
|
IDispatch *obj;
|
|
|
|
DISPID id;
|
|
|
|
|
|
|
|
TRACE("%d %d\n", argn, do_ret);
|
|
|
|
|
|
|
|
obj = stack_topn_objid(ctx, argn, &id);
|
|
|
|
if(!obj)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, id, NULL);
|
2011-12-07 11:00:20 +01:00
|
|
|
|
2016-03-28 17:49:24 +02:00
|
|
|
clear_ret(frame);
|
2016-03-29 17:49:01 +02:00
|
|
|
return disp_call(ctx, obj, id, DISPATCH_METHOD | DISPATCH_JSCRIPT_CALLEREXECSSOURCE,
|
2016-03-28 17:49:24 +02:00
|
|
|
argn, stack_args(ctx, argn), do_ret ? &frame->ret : NULL);
|
2011-12-07 11:00:20 +01:00
|
|
|
}
|
|
|
|
|
2008-09-19 00:45:50 +02:00
|
|
|
/* ECMA-262 3rd Edition 11.1.1 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_this(script_ctx_t *ctx)
|
2008-09-03 00:25:21 +02:00
|
|
|
{
|
2016-03-25 17:49:37 +01:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
2016-03-25 17:49:14 +01:00
|
|
|
|
2008-09-10 21:05:14 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 17:49:37 +01:00
|
|
|
IDispatch_AddRef(frame->this_obj);
|
|
|
|
return stack_push(ctx, jsval_disp(frame->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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_ident(script_ctx_t *ctx)
|
2011-11-28 12:08:54 +01:00
|
|
|
{
|
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));
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = identifier_eval(ctx, 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)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_UNDEFINED_VARIABLE, arg);
|
2011-12-20 11:47:02 +01:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = exprval_to_value(ctx, &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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_identid(script_ctx_t *ctx)
|
2011-12-05 11:11:29 +01:00
|
|
|
{
|
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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = identifier_eval(ctx, 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;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = jsdisp_get_id(ctx->global, arg, fdexNameEnsure, &id);
|
2012-01-18 13:28:29 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
exprval_set_idref(&exprval, to_disp(ctx->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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_null(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_bool(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_int(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_double(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_str(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_regexp(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = create_regexp(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_carray(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = create_array(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_new_obj(script_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");
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = create_object(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_obj_prop(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_cnd_nz(script_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) {
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, arg);
|
2011-11-28 12:03:57 +01:00
|
|
|
}else {
|
|
|
|
stack_popn(ctx, 1);
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_next(ctx);
|
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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_cnd_z(script_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);
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_next(ctx);
|
2011-11-28 12:04:33 +01:00
|
|
|
}else {
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_or(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_xor(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_and(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_instanceof(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, 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 {
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = throw_type_error(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_in(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, 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);
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_flat_string(ctx, 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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_get_id(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_add(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = add_eval(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_sub(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_mul(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_div(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_mod(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_delete(script_ctx_t *ctx)
|
2011-11-30 10:14:22 +01:00
|
|
|
{
|
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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_object(ctx, 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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_string(ctx, 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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_delete_name(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_delete_ident(script_ctx_t *ctx)
|
2011-12-15 15:42:27 +01:00
|
|
|
{
|
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));
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = identifier_eval(ctx, 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))
|
2015-10-15 12:18:53 +02:00
|
|
|
return hres;
|
2012-12-17 13:36:18 +01:00
|
|
|
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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_void(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_typeofid(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_typeofident(script_ctx_t *ctx)
|
2011-12-13 11:57:11 +01:00
|
|
|
{
|
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));
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = identifier_eval(ctx, 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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = exprval_to_value(ctx, &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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_typeof(script_ctx_t *ctx)
|
2011-12-13 11:57:11 +01:00
|
|
|
{
|
|
|
|
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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_minus(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_tonum(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_number(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_postinc(script_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)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_OBJECT_EXPECTED, NULL);
|
2008-09-11 23:58:28 +02:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_number(ctx, v, &n);
|
2012-09-17 15:17:02 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propput(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_preinc(script_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)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_type_error(ctx, JS_E_OBJECT_EXPECTED, NULL);
|
2008-09-11 23:57:40 +02:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propget(ctx, 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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_number(ctx, 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;
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propput(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_eq(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = equal_values(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_neq(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = equal_values(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_eq2(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_neq2(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_lt(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = less_eval(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_lteq(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = less_eval(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_gt(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = less_eval(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_gteq(script_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
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = less_eval(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_bneg(script_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);
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = to_int32(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_neg(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_lshift(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_rshift(script_ctx_t *ctx)
|
2011-12-08 12:03:22 +01:00
|
|
|
{
|
|
|
|
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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_rshift2(script_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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_assign(script_ctx_t *ctx)
|
2011-12-05 11:11:29 +01:00
|
|
|
{
|
|
|
|
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);
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_reference_error(ctx, JS_E_ILLEGAL_ASSIGN, NULL);
|
2012-09-17 15:17:02 +02:00
|
|
|
}
|
2011-12-05 11:11:29 +01:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_propput(ctx, 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 */
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_assign_call(script_ctx_t *ctx)
|
2012-04-17 16:25:58 +02:00
|
|
|
{
|
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)
|
2016-03-25 17:49:14 +01:00
|
|
|
return throw_reference_error(ctx, JS_E_ILLEGAL_ASSIGN, NULL);
|
2012-04-17 16:25:58 +02:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = disp_call(ctx, 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);
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_undefined(script_ctx_t *ctx)
|
2011-12-08 12:02:40 +01:00
|
|
|
{
|
|
|
|
TRACE("\n");
|
|
|
|
|
2012-09-17 15:17:02 +02:00
|
|
|
return stack_push(ctx, jsval_undefined());
|
2011-12-08 12:02:40 +01:00
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_jmp(script_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
|
|
|
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, arg);
|
2011-11-28 12:04:51 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_jmp_z(script_ctx_t *ctx)
|
2011-12-20 11:47:37 +01: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;
|
|
|
|
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)
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_next(ctx);
|
2011-12-20 11:47:37 +01:00
|
|
|
else
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, arg);
|
2011-12-20 11:47:37 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_pop(script_ctx_t *ctx)
|
2011-11-25 12:05:50 +01:00
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_ret(script_ctx_t *ctx)
|
2011-11-18 14:09:44 +01:00
|
|
|
{
|
2016-03-28 17:48:57 +02:00
|
|
|
const unsigned clear_ret = get_op_uint(ctx, 0);
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
|
|
|
|
2011-11-18 14:09:44 +01:00
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-28 17:48:57 +02:00
|
|
|
if(clear_ret)
|
|
|
|
jsval_release(steal_ret(frame));
|
|
|
|
|
2016-03-28 17:49:53 +02:00
|
|
|
if((frame->flags & EXEC_CONSTRUCTOR) && !is_object_instance(frame->ret)) {
|
|
|
|
jsval_release(frame->ret);
|
|
|
|
IDispatch_AddRef(frame->this_obj);
|
|
|
|
frame->ret = jsval_disp(frame->this_obj);
|
|
|
|
}
|
|
|
|
|
2016-03-25 12:03:25 +01:00
|
|
|
jmp_abs(ctx, -1);
|
2011-11-18 14:09:44 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
static HRESULT interp_setret(script_ctx_t *ctx)
|
2012-12-13 12:08:34 +01:00
|
|
|
{
|
2016-03-25 17:49:56 +01:00
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
|
|
|
|
2012-12-13 12:08:34 +01:00
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-25 17:49:56 +01:00
|
|
|
jsval_release(frame->ret);
|
|
|
|
frame->ret = stack_pop(ctx);
|
2012-12-13 12:08:34 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:49:10 +02:00
|
|
|
static HRESULT interp_push_ret(script_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
call_frame_t *frame = ctx->call_ctx;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
hres = stack_push(ctx, frame->ret);
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
frame->ret = jsval_undefined();
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
typedef HRESULT (*op_func_t)(script_ctx_t*);
|
2011-11-18 14:09:44 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2016-03-25 12:02:35 +01:00
|
|
|
static void release_call_frame(call_frame_t *frame)
|
|
|
|
{
|
2016-03-28 17:50:59 +02:00
|
|
|
if(frame->arguments_obj) {
|
|
|
|
/* Reset arguments value to cut the reference cycle. Note that since all activation contexts have
|
|
|
|
* their own arguments property, it's impossible to use prototype's one during name lookup */
|
|
|
|
static const WCHAR argumentsW[] = {'a','r','g','u','m','e','n','t','s',0};
|
|
|
|
jsdisp_propput_name(frame->variable_obj, argumentsW, jsval_undefined());
|
|
|
|
jsdisp_release(frame->arguments_obj);
|
|
|
|
}
|
2016-03-28 17:51:28 +02:00
|
|
|
if(frame->function_instance)
|
|
|
|
jsdisp_release(frame->function_instance);
|
2016-03-25 17:49:48 +01:00
|
|
|
if(frame->variable_obj)
|
|
|
|
jsdisp_release(frame->variable_obj);
|
2016-03-25 17:49:37 +01:00
|
|
|
if(frame->this_obj)
|
|
|
|
IDispatch_Release(frame->this_obj);
|
2016-03-25 12:04:13 +01:00
|
|
|
if(frame->scope)
|
|
|
|
scope_release(frame->scope);
|
2016-03-25 17:49:56 +01:00
|
|
|
jsval_release(frame->ret);
|
2016-03-28 17:50:18 +02:00
|
|
|
release_bytecode(frame->bytecode);
|
2016-03-25 12:02:35 +01:00
|
|
|
heap_free(frame);
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
static HRESULT unwind_exception(script_ctx_t *ctx, HRESULT exception_hres)
|
2011-12-28 12:06:28 +01:00
|
|
|
{
|
|
|
|
except_frame_t *except_frame;
|
2016-03-29 17:49:01 +02:00
|
|
|
call_frame_t *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;
|
|
|
|
|
2016-03-29 17:49:01 +02:00
|
|
|
for(frame = ctx->call_ctx; !frame->except_frame; frame = ctx->call_ctx) {
|
|
|
|
DWORD flags;
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
while(frame->scope != frame->base_scope)
|
|
|
|
scope_pop(&frame->scope);
|
|
|
|
|
|
|
|
stack_popn(ctx, ctx->stack_top-frame->stack_base);
|
|
|
|
|
|
|
|
ctx->call_ctx = frame->prev_frame;
|
2016-03-29 17:49:01 +02:00
|
|
|
flags = frame->flags;
|
2016-03-28 17:50:39 +02:00
|
|
|
release_call_frame(frame);
|
2016-03-29 17:49:01 +02:00
|
|
|
if(!(flags & EXEC_RETURN_TO_INTERP))
|
|
|
|
return exception_hres;
|
2016-03-28 17:50:39 +02:00
|
|
|
}
|
|
|
|
|
2016-03-25 12:03:35 +01:00
|
|
|
except_frame = frame->except_frame;
|
|
|
|
frame->except_frame = except_frame->next;
|
2011-12-28 12:06:28 +01:00
|
|
|
|
2016-03-25 17:49:24 +01:00
|
|
|
assert(except_frame->stack_top <= ctx->stack_top);
|
|
|
|
stack_popn(ctx, ctx->stack_top - except_frame->stack_top);
|
2011-12-28 12:06:28 +01:00
|
|
|
|
2016-03-25 12:04:13 +01:00
|
|
|
while(except_frame->scope != frame->scope)
|
|
|
|
scope_pop(&frame->scope);
|
2011-12-28 12:06:28 +01:00
|
|
|
|
2016-03-25 12:03:45 +01:00
|
|
|
frame->ip = except_frame->catch_off;
|
2011-12-28 12:06:28 +01:00
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
except_val = ctx->ei.val;
|
|
|
|
ctx->ei.val = jsval_undefined();
|
|
|
|
clear_ei(ctx);
|
2011-12-28 12:06:28 +01:00
|
|
|
|
|
|
|
ident = except_frame->ident;
|
|
|
|
heap_free(except_frame);
|
|
|
|
|
|
|
|
if(ident) {
|
|
|
|
jsdisp_t *scope_obj;
|
|
|
|
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = create_dispex(ctx, 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;
|
|
|
|
|
2016-03-25 12:04:13 +01:00
|
|
|
hres = scope_push(frame->scope, scope_obj, to_disp(scope_obj), &frame->scope);
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
static HRESULT enter_bytecode(script_ctx_t *ctx, jsval_t *r)
|
2011-12-19 14:58:42 +01:00
|
|
|
{
|
2016-03-25 12:02:35 +01:00
|
|
|
call_frame_t *frame;
|
2011-12-19 14:58:42 +01:00
|
|
|
jsop_t op;
|
|
|
|
HRESULT hres = S_OK;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
while(1) {
|
2016-03-29 17:49:01 +02:00
|
|
|
frame = ctx->call_ctx;
|
2016-03-25 12:03:45 +01:00
|
|
|
op = frame->bytecode->instrs[frame->ip].op;
|
2016-03-25 17:49:14 +01:00
|
|
|
hres = op_funcs[op](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
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
hres = unwind_exception(ctx, hres);
|
2011-12-28 12:06:28 +01:00
|
|
|
if(FAILED(hres))
|
2016-03-28 17:50:39 +02:00
|
|
|
return hres;
|
|
|
|
}else if(frame->ip == -1) {
|
2016-03-29 17:49:01 +02:00
|
|
|
const DWORD return_to_interp = frame->flags & EXEC_RETURN_TO_INTERP;
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
assert(ctx->stack_top == frame->stack_base);
|
|
|
|
assert(frame->scope == frame->base_scope);
|
|
|
|
|
|
|
|
ctx->call_ctx = frame->prev_frame;
|
2016-03-29 17:49:01 +02:00
|
|
|
if(return_to_interp) {
|
|
|
|
clear_ret(ctx->call_ctx);
|
|
|
|
ctx->call_ctx->ret = steal_ret(frame);
|
|
|
|
}else if(r) {
|
2016-03-28 17:50:39 +02:00
|
|
|
*r = steal_ret(frame);
|
2016-03-29 17:49:01 +02:00
|
|
|
}
|
2016-03-28 17:50:39 +02:00
|
|
|
release_call_frame(frame);
|
2016-03-29 17:49:01 +02:00
|
|
|
if(!return_to_interp)
|
|
|
|
break;
|
2011-12-28 12:06:28 +01:00
|
|
|
}else {
|
2016-03-25 12:03:45 +01:00
|
|
|
frame->ip += op_move[op];
|
2011-12-28 12:06:28 +01:00
|
|
|
}
|
2011-12-19 14:58:42 +01:00
|
|
|
}
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
return S_OK;
|
2011-12-19 14:58:42 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:50:08 +02:00
|
|
|
HRESULT exec_source(script_ctx_t *ctx, DWORD flags, bytecode_t *bytecode, function_code_t *function, scope_chain_t *scope,
|
2016-03-28 17:51:28 +02:00
|
|
|
IDispatch *this_obj, jsdisp_t *function_instance, jsdisp_t *variable_obj, jsdisp_t *arguments_obj, jsval_t *r)
|
2016-03-25 12:02:35 +01:00
|
|
|
{
|
|
|
|
call_frame_t *frame;
|
2016-03-28 17:50:08 +02:00
|
|
|
unsigned i;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
for(i = 0; i < function->func_cnt; i++) {
|
|
|
|
jsdisp_t *func_obj;
|
|
|
|
|
|
|
|
if(!function->funcs[i].name)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
hres = create_source_function(ctx, bytecode, function->funcs+i, scope, &func_obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(function->funcs[i].event_target)
|
|
|
|
hres = bind_event_target(ctx, function->funcs+i, func_obj);
|
|
|
|
else
|
|
|
|
hres = jsdisp_propput_name(variable_obj, function->funcs[i].name, jsval_obj(func_obj));
|
|
|
|
jsdisp_release(func_obj);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0; i < function->var_cnt; i++) {
|
|
|
|
if(!(flags & EXEC_GLOBAL) || !lookup_global_members(ctx, function->variables[i], NULL)) {
|
|
|
|
DISPID id = 0;
|
|
|
|
|
|
|
|
hres = jsdisp_get_id(variable_obj, function->variables[i], fdexNameEnsure, &id);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
}
|
2016-03-25 12:02:35 +01:00
|
|
|
|
2016-03-25 17:49:37 +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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 12:02:35 +01:00
|
|
|
frame = heap_alloc_zero(sizeof(*frame));
|
|
|
|
if(!frame)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2016-03-28 17:50:18 +02:00
|
|
|
frame->bytecode = bytecode_addref(bytecode);
|
2016-03-25 12:03:11 +01:00
|
|
|
frame->function = function;
|
2016-03-25 12:03:45 +01:00
|
|
|
frame->ip = function->instr_off;
|
2016-03-25 17:50:16 +01:00
|
|
|
frame->stack_base = ctx->stack_top;
|
2016-03-25 17:49:56 +01:00
|
|
|
frame->ret = jsval_undefined();
|
2016-03-25 12:04:13 +01:00
|
|
|
if(scope)
|
2016-03-25 12:04:19 +01:00
|
|
|
frame->base_scope = frame->scope = scope_addref(scope);
|
2016-03-25 12:04:13 +01:00
|
|
|
|
2016-03-25 17:49:37 +01:00
|
|
|
if(this_obj)
|
|
|
|
frame->this_obj = this_obj;
|
2016-03-25 17:50:16 +01:00
|
|
|
else if(ctx->host_global)
|
|
|
|
frame->this_obj = ctx->host_global;
|
2016-03-25 17:49:37 +01:00
|
|
|
else
|
2016-03-25 17:50:16 +01:00
|
|
|
frame->this_obj = to_disp(ctx->global);
|
2016-03-25 17:49:37 +01:00
|
|
|
IDispatch_AddRef(frame->this_obj);
|
|
|
|
|
2016-03-28 17:51:28 +02:00
|
|
|
if(function_instance)
|
|
|
|
frame->function_instance = jsdisp_addref(function_instance);
|
2016-03-28 17:50:59 +02:00
|
|
|
if(arguments_obj)
|
|
|
|
frame->arguments_obj = jsdisp_addref(arguments_obj);
|
|
|
|
|
2016-03-28 17:49:33 +02:00
|
|
|
frame->flags = flags;
|
2016-03-25 17:49:48 +01:00
|
|
|
frame->variable_obj = jsdisp_addref(variable_obj);
|
|
|
|
|
2016-03-25 17:50:16 +01:00
|
|
|
frame->prev_frame = ctx->call_ctx;
|
|
|
|
ctx->call_ctx = frame;
|
2011-12-29 11:08:07 +01:00
|
|
|
|
2016-03-29 17:49:01 +02:00
|
|
|
if(flags & EXEC_RETURN_TO_INTERP) {
|
|
|
|
/*
|
|
|
|
* We're called directly from interpreter, so we may just setup call frame and return.
|
|
|
|
* Already running interpreter will take care of execution.
|
|
|
|
*/
|
|
|
|
if(r)
|
|
|
|
*r = jsval_undefined();
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:50:39 +02:00
|
|
|
return enter_bytecode(ctx, r);
|
2011-12-29 11:08:07 +01:00
|
|
|
}
|