Commit 89ad1094 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Store bytecode pointer in call_frame_t.

parent 8a17cf89
...@@ -568,23 +568,23 @@ static HRESULT identifier_eval(script_ctx_t *ctx, BSTR identifier, exprval_t *re ...@@ -568,23 +568,23 @@ static HRESULT identifier_eval(script_ctx_t *ctx, BSTR identifier, exprval_t *re
} }
static inline BSTR get_op_bstr(exec_ctx_t *ctx, int i){ static inline BSTR get_op_bstr(exec_ctx_t *ctx, int i){
return ctx->code->instrs[ctx->ip].u.arg[i].bstr; return ctx->script->call_ctx->bytecode->instrs[ctx->ip].u.arg[i].bstr;
} }
static inline unsigned get_op_uint(exec_ctx_t *ctx, int i){ static inline unsigned get_op_uint(exec_ctx_t *ctx, int i){
return ctx->code->instrs[ctx->ip].u.arg[i].uint; return ctx->script->call_ctx->bytecode->instrs[ctx->ip].u.arg[i].uint;
} }
static inline unsigned get_op_int(exec_ctx_t *ctx, int i){ static inline unsigned get_op_int(exec_ctx_t *ctx, int i){
return ctx->code->instrs[ctx->ip].u.arg[i].lng; return ctx->script->call_ctx->bytecode->instrs[ctx->ip].u.arg[i].lng;
} }
static inline jsstr_t *get_op_str(exec_ctx_t *ctx, int i){ static inline jsstr_t *get_op_str(exec_ctx_t *ctx, int i){
return ctx->code->instrs[ctx->ip].u.arg[i].str; return ctx->script->call_ctx->bytecode->instrs[ctx->ip].u.arg[i].str;
} }
static inline double get_op_double(exec_ctx_t *ctx){ static inline double get_op_double(exec_ctx_t *ctx){
return ctx->code->instrs[ctx->ip].u.dbl; return ctx->script->call_ctx->bytecode->instrs[ctx->ip].u.dbl;
} }
/* ECMA-262 3rd Edition 12.2 */ /* ECMA-262 3rd Edition 12.2 */
...@@ -830,7 +830,7 @@ static HRESULT interp_func(exec_ctx_t *ctx) ...@@ -830,7 +830,7 @@ static HRESULT interp_func(exec_ctx_t *ctx)
TRACE("%d\n", func_idx); TRACE("%d\n", func_idx);
hres = create_source_function(ctx->script, ctx->code, ctx->func_code->funcs+func_idx, hres = create_source_function(ctx->script, ctx->script->call_ctx->bytecode, ctx->func_code->funcs+func_idx,
ctx->scope_chain, &dispex); ctx->scope_chain, &dispex);
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
...@@ -2449,14 +2449,13 @@ static HRESULT unwind_exception(exec_ctx_t *ctx) ...@@ -2449,14 +2449,13 @@ static HRESULT unwind_exception(exec_ctx_t *ctx)
return hres; return hres;
} }
static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code_t *func, jsval_t *ret) static HRESULT enter_bytecode(script_ctx_t *ctx, function_code_t *func, jsval_t *ret)
{ {
exec_ctx_t *exec_ctx = ctx->call_ctx->exec_ctx; exec_ctx_t *exec_ctx = ctx->call_ctx->exec_ctx;
except_frame_t *prev_except_frame; except_frame_t *prev_except_frame;
function_code_t *prev_func; function_code_t *prev_func;
unsigned prev_ip, prev_top; unsigned prev_ip, prev_top;
scope_chain_t *prev_scope; scope_chain_t *prev_scope;
bytecode_t *prev_code;
call_frame_t *frame; call_frame_t *frame;
jsop_t op; jsop_t op;
HRESULT hres = S_OK; HRESULT hres = S_OK;
...@@ -2468,15 +2467,13 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code ...@@ -2468,15 +2467,13 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code
prev_scope = exec_ctx->scope_chain; prev_scope = exec_ctx->scope_chain;
prev_except_frame = exec_ctx->except_frame; prev_except_frame = exec_ctx->except_frame;
prev_ip = exec_ctx->ip; prev_ip = exec_ctx->ip;
prev_code = exec_ctx->code;
prev_func = exec_ctx->func_code; prev_func = exec_ctx->func_code;
exec_ctx->ip = func->instr_off; exec_ctx->ip = func->instr_off;
exec_ctx->except_frame = NULL; exec_ctx->except_frame = NULL;
exec_ctx->code = code;
exec_ctx->func_code = func; exec_ctx->func_code = func;
while(exec_ctx->ip != -1) { while(exec_ctx->ip != -1) {
op = code->instrs[exec_ctx->ip].op; op = frame->bytecode->instrs[exec_ctx->ip].op;
hres = op_funcs[op](exec_ctx); hres = op_funcs[op](exec_ctx);
if(FAILED(hres)) { if(FAILED(hres)) {
TRACE("EXCEPTION %08x\n", hres); TRACE("EXCEPTION %08x\n", hres);
...@@ -2494,7 +2491,6 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code ...@@ -2494,7 +2491,6 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code
exec_ctx->ip = prev_ip; exec_ctx->ip = prev_ip;
exec_ctx->except_frame = prev_except_frame; exec_ctx->except_frame = prev_except_frame;
exec_ctx->code = prev_code;
exec_ctx->func_code = prev_func; exec_ctx->func_code = prev_func;
assert(ctx->call_ctx == frame); assert(ctx->call_ctx == frame);
...@@ -2554,7 +2550,7 @@ static HRESULT bind_event_target(script_ctx_t *ctx, function_code_t *func, jsdis ...@@ -2554,7 +2550,7 @@ static HRESULT bind_event_target(script_ctx_t *ctx, function_code_t *func, jsdis
return hres; return hres;
} }
static HRESULT setup_call_frame(exec_ctx_t *ctx) static HRESULT setup_call_frame(exec_ctx_t *ctx, bytecode_t *bytecode)
{ {
call_frame_t *frame; call_frame_t *frame;
...@@ -2562,6 +2558,7 @@ static HRESULT setup_call_frame(exec_ctx_t *ctx) ...@@ -2562,6 +2558,7 @@ static HRESULT setup_call_frame(exec_ctx_t *ctx)
if(!frame) if(!frame)
return E_OUTOFMEMORY; return E_OUTOFMEMORY;
frame->bytecode = bytecode;
frame->exec_ctx = ctx; frame->exec_ctx = ctx;
frame->prev_frame = ctx->script->call_ctx; frame->prev_frame = ctx->script->call_ctx;
...@@ -2604,11 +2601,11 @@ HRESULT exec_source(exec_ctx_t *ctx, bytecode_t *code, function_code_t *func, js ...@@ -2604,11 +2601,11 @@ HRESULT exec_source(exec_ctx_t *ctx, bytecode_t *code, function_code_t *func, js
} }
} }
hres = setup_call_frame(ctx); hres = setup_call_frame(ctx, code);
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
hres = enter_bytecode(ctx->script, code, func, &val); hres = enter_bytecode(ctx->script, func, &val);
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
......
...@@ -191,6 +191,8 @@ typedef struct _except_frame_t except_frame_t; ...@@ -191,6 +191,8 @@ typedef struct _except_frame_t except_frame_t;
struct _parser_ctx_t; struct _parser_ctx_t;
typedef struct _call_frame_t { typedef struct _call_frame_t {
bytecode_t *bytecode;
struct _call_frame_t *prev_frame; struct _call_frame_t *prev_frame;
exec_ctx_t *exec_ctx; exec_ctx_t *exec_ctx;
} call_frame_t; } call_frame_t;
...@@ -199,7 +201,6 @@ struct _exec_ctx_t { ...@@ -199,7 +201,6 @@ struct _exec_ctx_t {
LONG ref; LONG ref;
struct _parser_ctx_t *parser; struct _parser_ctx_t *parser;
bytecode_t *code;
script_ctx_t *script; script_ctx_t *script;
scope_chain_t *scope_chain; scope_chain_t *scope_chain;
jsdisp_t *var_disp; jsdisp_t *var_disp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment