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
667cc2e6
Commit
667cc2e6
authored
Dec 08, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use bytecode for pre-increment expression implementation.
parent
2453b6a8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
26 deletions
+27
-26
compile.c
dlls/jscript/compile.c
+6
-4
engine.c
dlls/jscript/engine.c
+19
-20
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 @
667cc2e6
...
...
@@ -292,7 +292,7 @@ static HRESULT compile_memberid_expression(compiler_ctx_t *ctx, expression_t *ex
return
hres
;
}
static
HRESULT
compile_increment_expression
(
compiler_ctx_t
*
ctx
,
unary_expression_t
*
expr
,
int
n
)
static
HRESULT
compile_increment_expression
(
compiler_ctx_t
*
ctx
,
unary_expression_t
*
expr
,
jsop_t
op
,
int
n
)
{
HRESULT
hres
;
...
...
@@ -308,7 +308,7 @@ static HRESULT compile_increment_expression(compiler_ctx_t *ctx, unary_expressio
if
(
FAILED
(
hres
))
return
hres
;
return
push_instr_int
(
ctx
,
OP_postinc
,
n
);
return
push_instr_int
(
ctx
,
op
,
n
);
}
/* ECMA-262 3rd Edition 11.14 */
...
...
@@ -648,9 +648,11 @@ static HRESULT compile_expression_noret(compiler_ctx_t *ctx, expression_t *expr,
case
EXPR_PLUS
:
return
compile_unary_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_tonum
);
case
EXPR_POSTDEC
:
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
-
1
);
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_postinc
,
-
1
);
case
EXPR_POSTINC
:
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
1
);
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_postinc
,
1
);
case
EXPR_PREINC
:
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_preinc
,
1
);
case
EXPR_SUB
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_sub
);
case
EXPR_THIS
:
...
...
dlls/jscript/engine.c
View file @
667cc2e6
...
...
@@ -2736,37 +2736,36 @@ static HRESULT interp_postinc(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 11.4.4 */
HRESULT
pre_increment_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
static
HRESULT
interp_preinc
(
exec_ctx_t
*
ctx
)
{
unary_expression_t
*
expr
=
(
unary_expression_t
*
)
_expr
;
VARIANT
val
,
num
;
exprval_t
exprval
;
const
int
arg
=
ctx
->
parser
->
code
->
instrs
[
ctx
->
ip
].
arg1
.
lng
;
IDispatch
*
obj
;
DISPID
id
;
VARIANT
v
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
TRACE
(
"
%d
\n
"
,
arg
);
hres
=
expr_eval
(
ctx
,
expr
->
expression
,
EXPR_NEWREF
,
ei
,
&
exprval
);
if
(
FAILED
(
hres
)
)
return
hres
;
obj
=
stack_pop_objid
(
ctx
,
&
id
);
if
(
!
obj
)
return
throw_type_error
(
ctx
->
parser
->
script
,
&
ctx
->
ei
,
JS_E_OBJECT_EXPECTED
,
NULL
)
;
hres
=
exprval_value
(
ctx
,
&
exprval
,
ei
,
&
val
);
hres
=
disp_propget
(
ctx
->
parser
->
script
,
obj
,
id
,
&
v
,
&
ctx
->
ei
,
NULL
/*FIXME*/
);
if
(
SUCCEEDED
(
hres
))
{
hres
=
to_number
(
ctx
,
&
val
,
ei
,
&
num
);
VariantClear
(
&
val
);
}
VARIANT
n
;
if
(
SUCCEEDED
(
hres
))
{
num_set_val
(
&
val
,
num_val
(
&
num
)
+
1
.
0
);
hres
=
put_value
(
ctx
,
&
exprval
,
&
val
,
ei
);
hres
=
to_number
(
ctx
->
parser
->
script
,
&
v
,
&
ctx
->
ei
,
&
n
);
VariantClear
(
&
v
);
if
(
SUCCEEDED
(
hres
))
{
num_set_val
(
&
v
,
num_val
(
&
n
)
+
(
double
)
arg
);
hres
=
disp_propput
(
ctx
->
parser
->
script
,
obj
,
id
,
&
v
,
&
ctx
->
ei
,
NULL
/*FIXME*/
);
}
}
exprval_release
(
&
exprval
);
IDispatch_Release
(
obj
);
if
(
FAILED
(
hres
))
return
hres
;
ret
->
type
=
EXPRVAL_VARIANT
;
ret
->
u
.
var
=
val
;
return
S_OK
;
return
stack_push
(
ctx
,
&
v
);
}
/* ECMA-262 3rd Edition 11.4.5 */
...
...
dlls/jscript/engine.h
View file @
667cc2e6
...
...
@@ -78,6 +78,7 @@ typedef struct _func_stack {
X(or, 1, 0,0) \
X(pop, 1, 0,0) \
X(postinc, 1, ARG_INT, 0) \
X(preinc, 1, ARG_INT, 0) \
X(regexp, 1, ARG_STR, ARG_INT) \
X(str, 1, ARG_STR, 0) \
X(this, 1, 0,0) \
...
...
@@ -563,7 +564,6 @@ HRESULT binary_and_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*
HRESULT
instanceof_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
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
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
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
;
...
...
dlls/jscript/parser.y
View file @
667cc2e6
...
...
@@ -1324,7 +1324,7 @@ static const expression_eval_t expression_eval_table[] = {
compiled_expression_eval,
compiled_expression_eval,
compiled_expression_eval,
pre_increment
_expression_eval,
compiled
_expression_eval,
pre_decrement_expression_eval,
compiled_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