jscript: Added minimal bytecode compiler/interpreter and use it for '===' expressions.
[wine/multimedia.git] / dlls / jscript / compile.c
blobc2f8eff5f7499ad9e84848739cbf3b9c4885b6bb
1 /*
2 * Copyright 2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <math.h>
20 #include <assert.h>
22 #include "jscript.h"
23 #include "engine.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
29 struct _compiler_ctx_t {
30 parser_ctx_t *parser;
31 bytecode_t *code;
33 unsigned code_off;
34 unsigned code_size;
37 static HRESULT compile_expression(compiler_ctx_t*,expression_t*);
39 static unsigned push_instr(compiler_ctx_t *ctx, jsop_t op)
41 assert(ctx->code_size >= ctx->code_off);
43 if(!ctx->code_size) {
44 ctx->code->instrs = heap_alloc(64 * sizeof(instr_t));
45 if(!ctx->code->instrs)
46 return -1;
47 ctx->code_size = 64;
48 }else if(ctx->code_size == ctx->code_off) {
49 instr_t *new_instrs;
51 new_instrs = heap_realloc(ctx->code->instrs, ctx->code_size*2*sizeof(instr_t));
52 if(!new_instrs)
53 return -1;
55 ctx->code->instrs = new_instrs;
56 ctx->code_size *= 2;
59 ctx->code->instrs[ctx->code_off].op = op;
60 return ctx->code_off++;
63 static inline instr_t *instr_ptr(compiler_ctx_t *ctx, unsigned off)
65 assert(off < ctx->code_off);
66 return ctx->code->instrs + off;
69 static HRESULT compile_binary_expression(compiler_ctx_t *ctx, binary_expression_t *expr, jsop_t op)
71 HRESULT hres;
73 hres = compile_expression(ctx, expr->expression1);
74 if(FAILED(hres))
75 return hres;
77 hres = compile_expression(ctx, expr->expression2);
78 if(FAILED(hres))
79 return hres;
81 return push_instr(ctx, op) == -1 ? E_OUTOFMEMORY : S_OK;
84 static HRESULT compile_interp_fallback(compiler_ctx_t *ctx, expression_t *expr)
86 unsigned instr;
88 instr = push_instr(ctx, OP_tree);
89 if(instr == -1)
90 return E_OUTOFMEMORY;
92 instr_ptr(ctx, instr)->arg1.expr = expr;
93 return S_OK;
96 static HRESULT compile_expression(compiler_ctx_t *ctx, expression_t *expr)
98 switch(expr->type) {
99 case EXPR_EQEQ:
100 return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_eq2);
101 default:
102 return compile_interp_fallback(ctx, expr);
105 return S_OK;
108 void release_bytecode(bytecode_t *code)
110 heap_free(code->instrs);
111 heap_free(code);
114 void release_compiler(compiler_ctx_t *ctx)
116 heap_free(ctx);
119 HRESULT compile_subscript(parser_ctx_t *parser, expression_t *expr, unsigned *ret_off)
121 HRESULT hres;
123 if(!parser->code) {
124 parser->code = heap_alloc_zero(sizeof(bytecode_t));
125 if(!parser->code)
126 return E_OUTOFMEMORY;
129 if(!parser->compiler) {
130 parser->compiler = heap_alloc_zero(sizeof(compiler_ctx_t));
131 if(!parser->compiler)
132 return E_OUTOFMEMORY;
134 parser->compiler->parser = parser;
135 parser->compiler->code = parser->code;
138 *ret_off = parser->compiler->code_off;
139 hres = compile_expression(parser->compiler, expr);
140 if(FAILED(hres))
141 return hres;
143 return push_instr(parser->compiler, OP_ret) == -1 ? E_OUTOFMEMORY : S_OK;