Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0e32c099
Commit
0e32c099
authored
Mar 25, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Store stack base in call_frame_t.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a120ecbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
engine.c
dlls/jscript/engine.c
+9
-8
engine.h
dlls/jscript/engine.h
+1
-0
No files found.
dlls/jscript/engine.c
View file @
0e32c099
...
...
@@ -2471,7 +2471,6 @@ static HRESULT unwind_exception(exec_ctx_t *ctx)
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
;
unsigned
prev_top
;
scope_chain_t
*
prev_scope
;
call_frame_t
*
frame
;
jsop_t
op
;
...
...
@@ -2480,7 +2479,6 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, function_code_t *func, jsval_t
TRACE
(
"
\n
"
);
frame
=
ctx
->
call_ctx
;
prev_top
=
exec_ctx
->
top
;
prev_scope
=
exec_ctx
->
scope_chain
;
while
(
frame
->
ip
!=
-
1
)
{
...
...
@@ -2501,19 +2499,21 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, function_code_t *func, jsval_t
}
assert
(
ctx
->
call_ctx
==
frame
);
ctx
->
call_ctx
=
frame
->
prev_frame
;
release_call_frame
(
frame
);
if
(
FAILED
(
hres
))
{
while
(
exec_ctx
->
scope_chain
!=
prev_scope
)
scope_pop
(
&
exec_ctx
->
scope_chain
);
stack_popn
(
exec_ctx
,
exec_ctx
->
top
-
prev_top
);
return
hres
;
stack_popn
(
exec_ctx
,
exec_ctx
->
top
-
frame
->
stack_base
);
}
assert
(
exec_ctx
->
top
==
prev_top
+
1
||
exec_ctx
->
top
==
prev_top
);
assert
(
exec_ctx
->
top
==
frame
->
stack_base
);
ctx
->
call_ctx
=
frame
->
prev_frame
;
release_call_frame
(
frame
);
if
(
FAILED
(
hres
))
return
hres
;
assert
(
exec_ctx
->
scope_chain
==
prev_scope
);
assert
(
exec_ctx
->
top
==
prev_top
);
*
ret
=
exec_ctx
->
ret
;
exec_ctx
->
ret
=
jsval_undefined
();
...
...
@@ -2568,6 +2568,7 @@ static HRESULT setup_call_frame(exec_ctx_t *ctx, bytecode_t *bytecode, function_
frame
->
bytecode
=
bytecode
;
frame
->
function
=
function
;
frame
->
ip
=
function
->
instr_off
;
frame
->
stack_base
=
ctx
->
top
;
frame
->
exec_ctx
=
ctx
;
...
...
dlls/jscript/engine.h
View file @
0e32c099
...
...
@@ -193,6 +193,7 @@ struct _parser_ctx_t;
typedef
struct
_call_frame_t
{
unsigned
ip
;
except_frame_t
*
except_frame
;
unsigned
stack_base
;
bytecode_t
*
bytecode
;
function_code_t
*
function
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment