Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
96e822a3
Commit
96e822a3
authored
Dec 09, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use bytecode for '>>>' expression implementation.
parent
fcdd8526
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
compile.c
dlls/jscript/compile.c
+2
-0
engine.c
dlls/jscript/engine.c
+11
-4
engine.h
dlls/jscript/engine.h
+1
-1
parser.y
dlls/jscript/parser.y
+1
-1
No files found.
dlls/jscript/compile.c
View file @
96e822a3
...
...
@@ -693,6 +693,8 @@ static HRESULT compile_expression_noret(compiler_ctx_t *ctx, expression_t *expr,
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_preinc
,
1
);
case
EXPR_RSHIFT
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_rshift
);
case
EXPR_RRSHIFT
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_rshift2
);
case
EXPR_SUB
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_sub
);
case
EXPR_THIS
:
...
...
dlls/jscript/engine.c
View file @
96e822a3
...
...
@@ -3160,13 +3160,20 @@ static HRESULT rshift2_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jse
}
/* ECMA-262 3rd Edition 11.7.3 */
HRESULT
right2_shift_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
static
HRESULT
interp_rshift2
(
exec_ctx_t
*
ctx
)
{
binary_expression_t
*
expr
=
(
binary_expression_t
*
)
_expr
;
DWORD
r
,
l
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
hres
=
stack_pop_uint
(
ctx
,
&
r
);
if
(
FAILED
(
hres
))
return
hres
;
return
binary_expr_eval
(
ctx
,
expr
,
rshift2_eval
,
ei
,
ret
);
hres
=
stack_pop_uint
(
ctx
,
&
l
);
if
(
FAILED
(
hres
))
return
hres
;
return
stack_push_int
(
ctx
,
l
>>
(
r
&
0x1f
));
}
/* ECMA-262 3rd Edition 11.13.1 */
...
...
dlls/jscript/engine.h
View file @
96e822a3
...
...
@@ -83,6 +83,7 @@ typedef struct _func_stack {
X(preinc, 1, ARG_INT, 0) \
X(regexp, 1, ARG_STR, ARG_INT) \
X(rshift, 1, 0,0) \
X(rshift2, 1, 0,0) \
X(str, 1, ARG_STR, 0) \
X(this, 1, 0,0) \
X(throw, 0, ARG_UINT, 0) \
...
...
@@ -567,7 +568,6 @@ HRESULT instanceof_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*
HRESULT
delete_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
typeof_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
left_shift_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
right2_shift_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
assign_lshift_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
assign_rrshift_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/jscript/parser.y
View file @
96e822a3
...
...
@@ -1338,7 +1338,7 @@ static const expression_eval_t expression_eval_table[] = {
compiled_expression_eval,
left_shift_expression_eval,
compiled_expression_eval,
right2_shift
_expression_eval,
compiled
_expression_eval,
compiled_expression_eval,
assign_lshift_expression_eval,
compiled_expression_eval,
...
...
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