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
b13c6a27
Commit
b13c6a27
authored
Nov 25, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use bytecode for '-' expression implementation.
parent
47314a92
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
5 deletions
+35
-5
compile.c
dlls/jscript/compile.c
+2
-0
engine.c
dlls/jscript/engine.c
+31
-3
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 @
b13c6a27
...
...
@@ -240,6 +240,8 @@ static HRESULT compile_expression(compiler_ctx_t *ctx, expression_t *expr)
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_neq2
);
case
EXPR_PLUS
:
return
compile_unary_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_tonum
);
case
EXPR_SUB
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_sub
);
case
EXPR_THIS
:
return
push_instr
(
ctx
,
OP_this
)
==
-
1
?
E_OUTOFMEMORY
:
S_OK
;
case
EXPR_VOID
:
...
...
dlls/jscript/engine.c
View file @
b13c6a27
...
...
@@ -86,6 +86,14 @@ static HRESULT stack_push_bool(exec_ctx_t *ctx, BOOL b)
return
stack_push
(
ctx
,
&
v
);
}
static
inline
HRESULT
stack_push_number
(
exec_ctx_t
*
ctx
,
double
number
)
{
VARIANT
v
;
num_set_val
(
&
v
,
number
);
return
stack_push
(
ctx
,
&
v
);
}
static
inline
VARIANT
*
stack_pop
(
exec_ctx_t
*
ctx
)
{
assert
(
ctx
->
top
);
...
...
@@ -98,6 +106,17 @@ static void stack_popn(exec_ctx_t *ctx, unsigned n)
VariantClear
(
stack_pop
(
ctx
));
}
static
HRESULT
stack_pop_number
(
exec_ctx_t
*
ctx
,
VARIANT
*
r
)
{
VARIANT
*
v
;
HRESULT
hres
;
v
=
stack_pop
(
ctx
);
hres
=
to_number
(
ctx
->
parser
->
script
,
v
,
&
ctx
->
ei
,
r
);
VariantClear
(
v
);
return
hres
;
}
static
void
exprval_release
(
exprval_t
*
val
)
{
switch
(
val
->
type
)
{
...
...
@@ -2297,13 +2316,22 @@ static HRESULT sub_eval(script_ctx_t *ctx, VARIANT *lval, VARIANT *rval, jsexcep
}
/* ECMA-262 3rd Edition 11.6.2 */
HRESULT
sub_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
HRESULT
interp_sub
(
exec_ctx_t
*
ctx
)
{
binary_expression_t
*
expr
=
(
binary_expression_t
*
)
_expr
;
VARIANT
l
,
r
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
return
binary_expr_eval
(
ctx
,
expr
,
sub_eval
,
ei
,
ret
);
hres
=
stack_pop_number
(
ctx
,
&
r
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
stack_pop_number
(
ctx
,
&
l
);
if
(
FAILED
(
hres
))
return
hres
;
return
stack_push_number
(
ctx
,
num_val
(
&
l
)
-
num_val
(
&
r
));
}
/* ECMA-262 3rd Edition 11.5.1 */
...
...
dlls/jscript/engine.h
View file @
b13c6a27
...
...
@@ -59,6 +59,7 @@ typedef struct _func_stack {
X(tonum, 1, 0,0) \
X(tree, 1, ARG_EXPR, 0) \
X(ret, 0, 0,0) \
X(sub, 1, 0,0) \
X(void, 1, 0,0)
typedef
enum
{
...
...
@@ -541,7 +542,6 @@ HRESULT binary_or_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,
HRESULT
binary_xor_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
binary_and_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
instanceof_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
sub_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
mul_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
div_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
mod_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/jscript/parser.y
View file @
b13c6a27
...
...
@@ -1314,7 +1314,7 @@ static const expression_eval_t expression_eval_table[] = {
instanceof_expression_eval,
compiled_expression_eval,
compiled_expression_eval,
sub
_expression_eval,
compiled
_expression_eval,
mul_expression_eval,
div_expression_eval,
mod_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