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
a508149f
Commit
a508149f
authored
Dec 07, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use bytecode for post-increment expression.
parent
aa809f1b
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
51 additions
and
22 deletions
+51
-22
compile.c
dlls/jscript/compile.c
+21
-0
engine.c
dlls/jscript/engine.c
+17
-20
engine.h
dlls/jscript/engine.h
+1
-1
parser.y
dlls/jscript/parser.y
+1
-1
api.js
dlls/jscript/tests/api.js
+7
-0
lang.js
dlls/jscript/tests/lang.js
+4
-0
No files found.
dlls/jscript/compile.c
View file @
a508149f
...
...
@@ -292,6 +292,25 @@ 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
)
{
HRESULT
hres
;
if
(
!
is_memberid_expr
(
expr
->
expression
->
type
))
{
hres
=
compile_expression
(
ctx
,
expr
->
expression
);
if
(
FAILED
(
hres
))
return
hres
;
return
push_instr_uint
(
ctx
,
OP_throw
,
JS_E_ILLEGAL_ASSIGN
);
}
hres
=
compile_memberid_expression
(
ctx
,
expr
->
expression
,
fdexNameEnsure
);
if
(
FAILED
(
hres
))
return
hres
;
return
push_instr_int
(
ctx
,
OP_postinc
,
1
);
}
/* ECMA-262 3rd Edition 11.14 */
static
HRESULT
compile_comma_expression
(
compiler_ctx_t
*
ctx
,
binary_expression_t
*
expr
)
{
...
...
@@ -628,6 +647,8 @@ static HRESULT compile_expression_noret(compiler_ctx_t *ctx, expression_t *expr,
return
compile_logical_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_jmp_nz
);
case
EXPR_PLUS
:
return
compile_unary_expression
(
ctx
,
(
unary_expression_t
*
)
expr
,
OP_tonum
);
case
EXPR_POSTINC
:
return
compile_increment_expression
(
ctx
,
(
unary_expression_t
*
)
expr
);
case
EXPR_SUB
:
return
compile_binary_expression
(
ctx
,
(
binary_expression_t
*
)
expr
,
OP_sub
);
case
EXPR_THIS
:
...
...
dlls/jscript/engine.c
View file @
a508149f
...
...
@@ -2704,38 +2704,35 @@ static HRESULT interp_tonum(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 11.3.1 */
HRESULT
post_increment_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
static
HRESULT
interp_postinc
(
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
,
inc
;
hres
=
to_number
(
ctx
->
parser
->
script
,
&
v
,
&
ctx
->
ei
,
&
n
);
if
(
SUCCEEDED
(
hres
))
{
VARIANT
inc
;
num_set_val
(
&
inc
,
num_val
(
&
num
)
+
1
.
0
);
hres
=
put_value
(
ctx
,
&
exprval
,
&
inc
,
ei
);
num_set_val
(
&
inc
,
num_val
(
&
n
)
+
(
double
)
arg
);
hres
=
disp_propput
(
ctx
->
parser
->
script
,
obj
,
id
,
&
inc
,
&
ctx
->
ei
,
NULL
/*FIXME*/
);
}
exprval_release
(
&
exprval
);
}
IDispatch_Release
(
obj
);
if
(
FAILED
(
hres
))
return
hres
;
ret
->
type
=
EXPRVAL_VARIANT
;
ret
->
u
.
var
=
num
;
return
S_OK
;
return
stack_push
(
ctx
,
&
v
);
}
/* ECMA-262 3rd Edition 11.3.2 */
...
...
dlls/jscript/engine.h
View file @
a508149f
...
...
@@ -77,6 +77,7 @@ typedef struct _func_stack {
X(null, 1, 0,0) \
X(or, 1, 0,0) \
X(pop, 1, 0,0) \
X(postinc, 1, ARG_INT, 0) \
X(regexp, 1, ARG_STR, ARG_INT) \
X(str, 1, ARG_STR, 0) \
X(this, 1, 0,0) \
...
...
@@ -562,7 +563,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
post_increment_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
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
;
...
...
dlls/jscript/parser.y
View file @
a508149f
...
...
@@ -1322,7 +1322,7 @@ static const expression_eval_t expression_eval_table[] = {
typeof_expression_eval,
compiled_expression_eval,
compiled_expression_eval,
post_increment
_expression_eval,
compiled
_expression_eval,
post_decrement_expression_eval,
pre_increment_expression_eval,
pre_decrement_expression_eval,
...
...
dlls/jscript/tests/api.js
View file @
a508149f
...
...
@@ -2031,6 +2031,9 @@ testException(function() {new nullDisp;}, "E_NO_PROPERTY");
testException
(
function
()
{
new
VBArray
();},
"E_NOT_VBARRAY"
);
testException
(
function
()
{
new
VBArray
(
new
VBArray
(
createArray
()));},
"E_NOT_VBARRAY"
);
testException
(
function
()
{
VBArray
.
prototype
.
lbound
.
call
(
new
Object
());},
"E_NOT_VBARRAY"
);
//FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED");
//FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED");
// SyntaxError tests
function
testSyntaxError
(
code
,
id
)
{
...
...
@@ -2088,6 +2091,10 @@ tmp = "";
testException
(
function
()
{(
tmp
=
tmp
+
"1"
)
=
(
tmp
=
tmp
+
"2"
);},
"E_ILLEGAL_ASSIGN"
);
ok
(
tmp
===
"12"
,
"assign evaluated in unexpected order"
);
tmp
=
false
;
testException
(
function
()
{
((
tmp
=
true
)
&&
false
)
++
;
},
"E_ILLEGAL_ASSIGN"
)
ok
(
tmp
,
"incremented expression not evaluated"
);
// RegExpError tests
testException
(
function
()
{
RegExp
(
/a/
,
"g"
);},
"E_REGEXP_SYNTAX_ERROR"
);
...
...
dlls/jscript/tests/lang.js
View file @
a508149f
...
...
@@ -521,6 +521,10 @@ ok(tmp === 2, "incremented tmp(1) is not 2");
ok
(
tmp
--
===
2
,
"tmp-- (2) is not 2"
);
ok
(
tmp
===
1
,
"decremented tmp is not 1"
);
tmp
=
new
Object
();
tmp
.
iii
++
;
ok
(
isNaN
(
tmp
.
iii
),
"tmp.iii = "
+
tmp
.
iii
);
String
.
prototype
.
test
=
true
;
ok
(
""
.
test
===
true
,
"
\"\"
.test is not true"
);
...
...
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