Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
83667e74
Commit
83667e74
authored
13 years ago
by
Jacek Caban
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
jscript: Use bytecode for this expression implementation.
parent
9050c372
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dlls/jscript/compile.c
+2
-0
2 additions, 0 deletions
dlls/jscript/compile.c
dlls/jscript/engine.c
+7
-6
7 additions, 6 deletions
dlls/jscript/engine.c
dlls/jscript/engine.h
+1
-1
1 addition, 1 deletion
dlls/jscript/engine.h
dlls/jscript/parser.y
+1
-1
1 addition, 1 deletion
dlls/jscript/parser.y
with
11 additions
and
8 deletions
dlls/jscript/compile.c
+
2
−
0
View file @
83667e74
...
...
@@ -223,6 +223,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_THIS
:
return
push_instr
(
ctx
,
OP_this
)
==
-
1
?
E_OUTOFMEMORY
:
S_OK
;
default:
assert
(
expr
->
eval
!=
compiled_expression_eval
);
return
compile_interp_fallback
(
ctx
,
expr
);
...
...
This diff is collapsed.
Click to expand it.
dlls/jscript/engine.c
+
7
−
6
View file @
83667e74
...
...
@@ -1694,15 +1694,16 @@ HRESULT call_expression_eval(script_ctx_t *ctx, expression_t *_expr, DWORD flags
}
/* ECMA-262 3rd Edition 11.1.1 */
HRESULT
this_expression_eval
(
script_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval
_t
*
ret
)
HRESULT
interp_this
(
exec_ctx
_t
*
ctx
)
{
VARIANT
v
;
TRACE
(
"
\n
"
);
ret
->
type
=
EXPRVAL_VARIANT
;
V_VT
(
&
ret
->
u
.
var
)
=
VT_DISPATCH
;
V_DISPATCH
(
&
ret
->
u
.
var
)
=
ctx
->
exec_ctx
->
this_obj
;
IDispatch_AddRef
(
ctx
->
exec_ctx
->
this_obj
);
return
S_OK
;
V_VT
(
&
v
)
=
VT_DISPATCH
;
V_DISPATCH
(
&
v
)
=
ctx
->
this_obj
;
IDispatch_AddRef
(
ctx
->
this_obj
);
return
stack_push
(
ctx
,
&
v
);
}
/* ECMA-262 3rd Edition 10.1.4 */
...
...
This diff is collapsed.
Click to expand it.
dlls/jscript/engine.h
+
1
−
1
View file @
83667e74
...
...
@@ -54,6 +54,7 @@ typedef struct _func_stack {
X(null, 1, 0,0) \
X(regexp, 1, ARG_STR, ARG_INT) \
X(str, 1, ARG_STR, 0) \
X(this, 1, 0,0) \
X(tonum, 1, 0,0) \
X(tree, 1, ARG_EXPR, 0) \
X(ret, 0, 0,0)
...
...
@@ -528,7 +529,6 @@ HRESULT array_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,expr
HRESULT
member_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
new_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
call_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
this_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
identifier_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
array_literal_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
property_value_expression_eval
(
script_ctx_t
*
,
expression_t
*
,
DWORD
,
jsexcept_t
*
,
exprval_t
*
)
DECLSPEC_HIDDEN
;
...
...
This diff is collapsed.
Click to expand it.
dlls/jscript/parser.y
+
1
−
1
View file @
83667e74
...
...
@@ -1357,7 +1357,7 @@ static const expression_eval_t expression_eval_table[] = {
member_expression_eval,
new_expression_eval,
call_expression_eval,
this
_expression_eval,
compiled
_expression_eval,
function_expression_eval,
identifier_expression_eval,
array_literal_expression_eval,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment