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
9f9f5ae0
Commit
9f9f5ae0
authored
Dec 01, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use bytecode for '>=' expression implementation.
parent
f3e18fbf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
compile.c
dlls/jscript/compile.c
+2
-0
engine.c
dlls/jscript/engine.c
+9
-11
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 @
9f9f5ae0
...
...
@@ -406,6 +406,8 @@ static HRESULT compile_expression(compiler_ctx_t *ctx, expression_t *expr)
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_eq2
);
case
EXPR_GREATER
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_gt
);
case
EXPR_GREATEREQ
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_gteq
);
case
EXPR_IDENT
:
return
push_instr_bstr
(
ctx
,
OP_ident
,
((
identifier_expression_t
*
)
expr
)
->
identifier
);
case
EXPR_IN
:
...
...
dlls/jscript/engine.c
View file @
9f9f5ae0
...
...
@@ -3079,26 +3079,24 @@ static HRESULT interp_gt(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 11.8.4 */
HRESULT
greatereq_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
static
HRESULT
interp_gteq
(
exec_ctx_t
*
ctx
)
{
binary_expression_t
*
expr
=
(
binary_expression_t
*
)
_expr
;
VARIANT
rval
,
lval
;
VARIANT
*
l
,
*
r
;
BOOL
b
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
r
=
stack_pop
(
ctx
);
l
=
stack_pop
(
ctx
);
hres
=
get_binary_expr_values
(
ctx
,
expr
,
ei
,
&
lval
,
&
rval
);
if
(
FAILED
(
hres
))
return
hres
;
TRACE
(
"%s >= %s
\n
"
,
debugstr_variant
(
l
),
debugstr_variant
(
r
));
hres
=
less_eval
(
ctx
,
&
lval
,
&
rval
,
TRUE
,
ei
,
&
b
);
VariantClear
(
&
lva
l
);
VariantClear
(
&
rval
);
hres
=
less_eval
(
ctx
->
parser
->
script
,
l
,
r
,
TRUE
,
&
ctx
->
ei
,
&
b
);
VariantClear
(
l
);
VariantClear
(
r
);
if
(
FAILED
(
hres
))
return
hres
;
return
return_bool
(
ret
,
b
);
return
stack_push_bool
(
ctx
,
b
);
}
/* ECMA-262 3rd Edition 11.4.8 */
...
...
dlls/jscript/engine.h
View file @
9f9f5ae0
...
...
@@ -51,6 +51,7 @@ typedef struct _func_stack {
X(eq, 1, 0,0) \
X(eq2, 1, 0,0) \
X(gt, 1, 0,0) \
X(gteq, 1, 0,0) \
X(ident, 1, ARG_BSTR, 0) \
X(in, 1, 0,0) \
X(int, 1, ARG_INT, 0) \
...
...
@@ -563,7 +564,6 @@ HRESULT post_increment_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcep
HRESULT
post_decrement_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
pre_increment_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
pre_decrement_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
greatereq_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
right_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
;
...
...
dlls/jscript/parser.y
View file @
9f9f5ae0
...
...
@@ -1334,7 +1334,7 @@ static const expression_eval_t expression_eval_table[] = {
compiled_expression_eval,
compiled_expression_eval,
compiled_expression_eval,
greatereq
_expression_eval,
compiled
_expression_eval,
compiled_expression_eval,
compiled_expression_eval,
left_shift_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