Jacek Caban : jscript: Make compiler responsible for proper return from regular code vs. eval-interpreted code.

Alexandre Julliard julliard at winehq.org
Fri Dec 30 10:27:01 CST 2011


Module: wine
Branch: master
Commit: dd7a5301e69be44bdcff35926959469af5850ebb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dd7a5301e69be44bdcff35926959469af5850ebb

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Dec 30 11:14:14 2011 +0100

jscript: Make compiler responsible for proper return from regular code vs. eval-interpreted code.

---

 dlls/jscript/compile.c |    4 +++-
 dlls/jscript/engine.c  |    9 ++-------
 dlls/jscript/engine.h  |    2 +-
 3 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/dlls/jscript/compile.c b/dlls/jscript/compile.c
index aca5f73..12310d0 100644
--- a/dlls/jscript/compile.c
+++ b/dlls/jscript/compile.c
@@ -1688,7 +1688,7 @@ HRESULT compile_subscript(parser_ctx_t *parser, expression_t *expr, unsigned *re
     return push_instr(parser->compiler, OP_ret) == -1 ? E_OUTOFMEMORY : S_OK;
 }
 
-HRESULT compile_subscript_stat(parser_ctx_t *parser, statement_t *stat, unsigned *ret_off)
+HRESULT compile_subscript_stat(parser_ctx_t *parser, statement_t *stat, BOOL from_eval, unsigned *ret_off)
 {
     unsigned off;
     HRESULT hres;
@@ -1709,6 +1709,8 @@ HRESULT compile_subscript_stat(parser_ctx_t *parser, statement_t *stat, unsigned
 
     resolve_labels(parser->compiler, off);
 
+    if(!from_eval && push_instr(parser->compiler, OP_pop) == -1)
+        return E_OUTOFMEMORY;
     if(push_instr(parser->compiler, OP_ret) == -1)
         return E_OUTOFMEMORY;
 
diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c
index 387d508..9295064 100644
--- a/dlls/jscript/engine.c
+++ b/dlls/jscript/engine.c
@@ -2740,7 +2740,7 @@ HRESULT exec_source(exec_ctx_t *ctx, parser_ctx_t *parser, source_elements_t *so
 
     if(source->statement) {
         if(source->instr_off == -1) {
-            hres = compile_subscript_stat(ctx->parser, source->statement, &source->instr_off);
+            hres = compile_subscript_stat(ctx->parser, source->statement, from_eval, &source->instr_off);
             if(FAILED(hres) && is_jscript_error(hres))
                 hres = throw_syntax_error(script, &rt.ei, hres, NULL);
         }
@@ -2751,18 +2751,13 @@ HRESULT exec_source(exec_ctx_t *ctx, parser_ctx_t *parser, source_elements_t *so
     script->exec_ctx = prev_ctx;
     ctx->parser = prev_parser;
 
-    if(rt.type != RT_NORMAL && rt.type != RT_RETURN) {
-        FIXME("wrong rt %d\n", rt.type);
-        hres = E_FAIL;
-    }
-
     *ei = rt.ei;
     if(FAILED(hres)) {
         VariantClear(&val);
         return hres;
     }
 
-    if(!retv || (!from_eval && rt.type != RT_RETURN))
+    if(!retv)
         VariantClear(&val);
     if(retv)
         *retv = val;
diff --git a/dlls/jscript/engine.h b/dlls/jscript/engine.h
index 530a65a..fa47a4c 100644
--- a/dlls/jscript/engine.h
+++ b/dlls/jscript/engine.h
@@ -591,4 +591,4 @@ typedef struct {
 } property_value_expression_t;
 
 HRESULT compile_subscript(parser_ctx_t*,expression_t*,unsigned*) DECLSPEC_HIDDEN;
-HRESULT compile_subscript_stat(parser_ctx_t*,statement_t*,unsigned*) DECLSPEC_HIDDEN;
+HRESULT compile_subscript_stat(parser_ctx_t*,statement_t*,BOOL,unsigned*) DECLSPEC_HIDDEN;




More information about the wine-cvs mailing list