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
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
28 WINE_DECLARE_DEBUG_CHANNEL(jscript_disas);
30 typedef struct _statement_ctx_t {
36 unsigned continue_label;
38 const labelled_statement_t *labelled_stat;
40 struct _statement_ctx_t *next;
56 statement_ctx_t *stat_ctx;
57 function_code_t *func;
59 variable_declaration_t *var_head;
60 variable_declaration_t *var_tail;
62 function_expression_t *func_head;
63 function_expression_t *func_tail;
68 instr_arg_type_t arg1_type;
69 instr_arg_type_t arg2_type;
71 #define X(n,a,b,c) {#n,b,c},
76 static void dump_instr_arg(instr_arg_type_t type, instr_arg_t *arg)
80 TRACE_(jscript_disas)("\t%s", debugstr_jsstr(arg->str));
83 TRACE_(jscript_disas)("\t%s", debugstr_wn(arg->bstr, SysStringLen(arg->bstr)));
86 TRACE_(jscript_disas)("\t%d", arg->uint);
90 TRACE_(jscript_disas)("\t%u", arg->uint);
100 static void dump_code(compiler_ctx_t *ctx, unsigned off)
104 for(instr = ctx->code->instrs+off; instr < ctx->code->instrs+ctx->code_off; instr++) {
105 TRACE_(jscript_disas)("%d:\t%s", (int)(instr-ctx->code->instrs), instr_info[instr->op].op_str);
106 if(instr_info[instr->op].arg1_type == ARG_DBL) {
107 TRACE_(jscript_disas)("\t%lf", instr->u.dbl);
109 dump_instr_arg(instr_info[instr->op].arg1_type, instr->u.arg);
110 dump_instr_arg(instr_info[instr->op].arg2_type, instr->u.arg+1);
112 TRACE_(jscript_disas)("\n");
116 static HRESULT compile_expression(compiler_ctx_t*,expression_t*,BOOL);
117 static HRESULT compile_statement(compiler_ctx_t*,statement_ctx_t*,statement_t*);
119 static inline void *compiler_alloc(bytecode_t *code, size_t size)
121 return heap_pool_alloc(&code->heap, size);
124 static jsstr_t *compiler_alloc_string_len(compiler_ctx_t *ctx, const WCHAR *str, unsigned len)
128 if(!ctx->code->str_pool_size) {
129 ctx->code->str_pool = heap_alloc(8 * sizeof(jsstr_t*));
130 if(!ctx->code->str_pool)
132 ctx->code->str_pool_size = 8;
133 }else if(ctx->code->str_pool_size == ctx->code->str_cnt) {
136 new_pool = heap_realloc(ctx->code->str_pool, ctx->code->str_pool_size*2*sizeof(jsstr_t*));
140 ctx->code->str_pool = new_pool;
141 ctx->code->str_pool_size *= 2;
144 new_str = jsstr_alloc_len(str, len);
148 ctx->code->str_pool[ctx->code->str_cnt++] = new_str;
152 static jsstr_t *compiler_alloc_string(compiler_ctx_t *ctx, const WCHAR *str)
154 return compiler_alloc_string_len(ctx, str, strlenW(str));
157 static BOOL ensure_bstr_slot(compiler_ctx_t *ctx)
159 if(!ctx->code->bstr_pool_size) {
160 ctx->code->bstr_pool = heap_alloc(8 * sizeof(BSTR));
161 if(!ctx->code->bstr_pool)
163 ctx->code->bstr_pool_size = 8;
164 }else if(ctx->code->bstr_pool_size == ctx->code->bstr_cnt) {
167 new_pool = heap_realloc(ctx->code->bstr_pool, ctx->code->bstr_pool_size*2*sizeof(BSTR));
171 ctx->code->bstr_pool = new_pool;
172 ctx->code->bstr_pool_size *= 2;
178 static BSTR compiler_alloc_bstr(compiler_ctx_t *ctx, const WCHAR *str)
180 if(!ensure_bstr_slot(ctx))
183 ctx->code->bstr_pool[ctx->code->bstr_cnt] = SysAllocString(str);
184 if(!ctx->code->bstr_pool[ctx->code->bstr_cnt])
187 return ctx->code->bstr_pool[ctx->code->bstr_cnt++];
190 static BSTR compiler_alloc_bstr_len(compiler_ctx_t *ctx, const WCHAR *str, size_t len)
192 if(!ensure_bstr_slot(ctx))
195 ctx->code->bstr_pool[ctx->code->bstr_cnt] = SysAllocStringLen(str, len);
196 if(!ctx->code->bstr_pool[ctx->code->bstr_cnt])
199 return ctx->code->bstr_pool[ctx->code->bstr_cnt++];
202 static unsigned push_instr(compiler_ctx_t *ctx, jsop_t op)
204 assert(ctx->code_size >= ctx->code_off);
206 if(ctx->code_size == ctx->code_off) {
209 new_instrs = heap_realloc(ctx->code->instrs, ctx->code_size*2*sizeof(instr_t));
213 ctx->code->instrs = new_instrs;
217 ctx->code->instrs[ctx->code_off].op = op;
218 return ctx->code_off++;
221 static inline instr_t *instr_ptr(compiler_ctx_t *ctx, unsigned off)
223 assert(off < ctx->code_off);
224 return ctx->code->instrs + off;
227 static HRESULT push_instr_int(compiler_ctx_t *ctx, jsop_t op, LONG arg)
231 instr = push_instr(ctx, op);
233 return E_OUTOFMEMORY;
235 instr_ptr(ctx, instr)->u.arg->lng = arg;
239 static HRESULT push_instr_str(compiler_ctx_t *ctx, jsop_t op, const WCHAR *arg)
244 str = compiler_alloc_string(ctx, arg);
246 return E_OUTOFMEMORY;
248 instr = push_instr(ctx, op);
250 return E_OUTOFMEMORY;
252 instr_ptr(ctx, instr)->u.arg->str = str;
256 static HRESULT push_instr_bstr(compiler_ctx_t *ctx, jsop_t op, const WCHAR *arg)
261 str = compiler_alloc_bstr(ctx, arg);
263 return E_OUTOFMEMORY;
265 instr = push_instr(ctx, op);
267 return E_OUTOFMEMORY;
269 instr_ptr(ctx, instr)->u.arg->bstr = str;
273 static HRESULT push_instr_bstr_uint(compiler_ctx_t *ctx, jsop_t op, const WCHAR *arg1, unsigned arg2)
278 str = compiler_alloc_bstr(ctx, arg1);
280 return E_OUTOFMEMORY;
282 instr = push_instr(ctx, op);
284 return E_OUTOFMEMORY;
286 instr_ptr(ctx, instr)->u.arg[0].bstr = str;
287 instr_ptr(ctx, instr)->u.arg[1].uint = arg2;
291 static HRESULT push_instr_uint_str(compiler_ctx_t *ctx, jsop_t op, unsigned arg1, const WCHAR *arg2)
296 str = compiler_alloc_string(ctx, arg2);
298 return E_OUTOFMEMORY;
300 instr = push_instr(ctx, op);
302 return E_OUTOFMEMORY;
304 instr_ptr(ctx, instr)->u.arg[0].uint = arg1;
305 instr_ptr(ctx, instr)->u.arg[1].str = str;
309 static HRESULT push_instr_double(compiler_ctx_t *ctx, jsop_t op, double arg)
313 instr = push_instr(ctx, op);
315 return E_OUTOFMEMORY;
317 instr_ptr(ctx, instr)->u.dbl = arg;
321 static inline void set_arg_uint(compiler_ctx_t *ctx, unsigned instr, unsigned arg)
323 instr_ptr(ctx, instr)->u.arg->uint = arg;
326 static HRESULT push_instr_uint(compiler_ctx_t *ctx, jsop_t op, unsigned arg)
330 instr = push_instr(ctx, op);
332 return E_OUTOFMEMORY;
334 set_arg_uint(ctx, instr, arg);
338 static HRESULT compile_binary_expression(compiler_ctx_t *ctx, binary_expression_t *expr, jsop_t op)
342 hres = compile_expression(ctx, expr->expression1, TRUE);
346 hres = compile_expression(ctx, expr->expression2, TRUE);
350 return push_instr(ctx, op) ? S_OK : E_OUTOFMEMORY;
353 static HRESULT compile_unary_expression(compiler_ctx_t *ctx, unary_expression_t *expr, jsop_t op)
357 hres = compile_expression(ctx, expr->expression, TRUE);
361 return push_instr(ctx, op) ? S_OK : E_OUTOFMEMORY;
364 /* ECMA-262 3rd Edition 11.2.1 */
365 static HRESULT compile_member_expression(compiler_ctx_t *ctx, member_expression_t *expr)
369 hres = compile_expression(ctx, expr->expression, TRUE);
373 return push_instr_bstr(ctx, OP_member, expr->identifier);
376 #define LABEL_FLAG 0x80000000
378 static unsigned alloc_label(compiler_ctx_t *ctx)
380 if(!ctx->labels_size) {
381 ctx->labels = heap_alloc(8 * sizeof(*ctx->labels));
384 ctx->labels_size = 8;
385 }else if(ctx->labels_size == ctx->labels_cnt) {
386 unsigned *new_labels;
388 new_labels = heap_realloc(ctx->labels, 2*ctx->labels_size*sizeof(*ctx->labels));
392 ctx->labels = new_labels;
393 ctx->labels_size *= 2;
396 return ctx->labels_cnt++ | LABEL_FLAG;
399 static void label_set_addr(compiler_ctx_t *ctx, unsigned label)
401 assert(label & LABEL_FLAG);
402 ctx->labels[label & ~LABEL_FLAG] = ctx->code_off;
405 static inline BOOL is_memberid_expr(expression_type_t type)
407 return type == EXPR_IDENT || type == EXPR_MEMBER || type == EXPR_ARRAY;
410 static HRESULT compile_memberid_expression(compiler_ctx_t *ctx, expression_t *expr, unsigned flags)
416 identifier_expression_t *ident_expr = (identifier_expression_t*)expr;
418 hres = push_instr_bstr_uint(ctx, OP_identid, ident_expr->identifier, flags);
422 binary_expression_t *array_expr = (binary_expression_t*)expr;
424 hres = compile_expression(ctx, array_expr->expression1, TRUE);
428 hres = compile_expression(ctx, array_expr->expression2, TRUE);
432 hres = push_instr_uint(ctx, OP_memberid, flags);
436 member_expression_t *member_expr = (member_expression_t*)expr;
438 hres = compile_expression(ctx, member_expr->expression, TRUE);
442 /* FIXME: Potential optimization */
443 hres = push_instr_str(ctx, OP_str, member_expr->identifier);
447 hres = push_instr_uint(ctx, OP_memberid, flags);
457 static HRESULT compile_increment_expression(compiler_ctx_t *ctx, unary_expression_t *expr, jsop_t op, int n)
461 if(!is_memberid_expr(expr->expression->type)) {
462 hres = compile_expression(ctx, expr->expression, TRUE);
466 return push_instr_uint(ctx, OP_throw_ref, JS_E_ILLEGAL_ASSIGN);
469 hres = compile_memberid_expression(ctx, expr->expression, fdexNameEnsure);
473 return push_instr_int(ctx, op, n);
476 /* ECMA-262 3rd Edition 11.14 */
477 static HRESULT compile_comma_expression(compiler_ctx_t *ctx, binary_expression_t *expr, BOOL emit_ret)
481 hres = compile_expression(ctx, expr->expression1, FALSE);
485 return compile_expression(ctx, expr->expression2, emit_ret);
488 /* ECMA-262 3rd Edition 11.11 */
489 static HRESULT compile_logical_expression(compiler_ctx_t *ctx, binary_expression_t *expr, jsop_t op)
494 hres = compile_expression(ctx, expr->expression1, TRUE);
498 instr = push_instr(ctx, op);
500 return E_OUTOFMEMORY;
502 hres = compile_expression(ctx, expr->expression2, TRUE);
506 set_arg_uint(ctx, instr, ctx->code_off);
510 /* ECMA-262 3rd Edition 11.12 */
511 static HRESULT compile_conditional_expression(compiler_ctx_t *ctx, conditional_expression_t *expr)
513 unsigned jmp_false, jmp_end;
516 hres = compile_expression(ctx, expr->expression, TRUE);
520 jmp_false = push_instr(ctx, OP_cnd_z);
522 return E_OUTOFMEMORY;
524 hres = compile_expression(ctx, expr->true_expression, TRUE);
528 jmp_end = push_instr(ctx, OP_jmp);
530 return E_OUTOFMEMORY;
532 set_arg_uint(ctx, jmp_false, ctx->code_off);
533 hres = push_instr_uint(ctx, OP_pop, 1);
537 hres = compile_expression(ctx, expr->false_expression, TRUE);
541 set_arg_uint(ctx, jmp_end, ctx->code_off);
545 static HRESULT compile_new_expression(compiler_ctx_t *ctx, call_expression_t *expr)
547 unsigned arg_cnt = 0;
551 hres = compile_expression(ctx, expr->expression, TRUE);
555 for(arg = expr->argument_list; arg; arg = arg->next) {
556 hres = compile_expression(ctx, arg->expr, TRUE);
562 return push_instr_uint(ctx, OP_new, arg_cnt);
565 static HRESULT compile_call_expression(compiler_ctx_t *ctx, call_expression_t *expr, BOOL emit_ret)
567 unsigned arg_cnt = 0;
573 if(is_memberid_expr(expr->expression->type)) {
575 hres = compile_memberid_expression(ctx, expr->expression, 0);
578 hres = compile_expression(ctx, expr->expression, TRUE);
584 for(arg = expr->argument_list; arg; arg = arg->next) {
585 hres = compile_expression(ctx, arg->expr, TRUE);
591 instr = push_instr(ctx, op);
593 return E_OUTOFMEMORY;
595 instr_ptr(ctx, instr)->u.arg[0].uint = arg_cnt;
596 instr_ptr(ctx, instr)->u.arg[1].lng = emit_ret;
600 static HRESULT compile_delete_expression(compiler_ctx_t *ctx, unary_expression_t *expr)
604 switch(expr->expression->type) {
606 binary_expression_t *array_expr = (binary_expression_t*)expr->expression;
608 hres = compile_expression(ctx, array_expr->expression1, TRUE);
612 hres = compile_expression(ctx, array_expr->expression2, TRUE);
616 if(!push_instr(ctx, OP_delete))
617 return E_OUTOFMEMORY;
621 member_expression_t *member_expr = (member_expression_t*)expr->expression;
623 hres = compile_expression(ctx, member_expr->expression, TRUE);
627 /* FIXME: Potential optimization */
628 hres = push_instr_str(ctx, OP_str, member_expr->identifier);
632 if(!push_instr(ctx, OP_delete))
633 return E_OUTOFMEMORY;
637 return push_instr_bstr(ctx, OP_delete_ident, ((identifier_expression_t*)expr->expression)->identifier);
639 const WCHAR fixmeW[] = {'F','I','X','M','E',0};
641 WARN("invalid delete, unimplemented exception message\n");
643 hres = compile_expression(ctx, expr->expression, TRUE);
647 return push_instr_uint_str(ctx, OP_throw_type, JS_E_INVALID_DELETE, fixmeW);
654 static HRESULT compile_assign_expression(compiler_ctx_t *ctx, binary_expression_t *expr, jsop_t op)
656 BOOL use_throw_path = FALSE;
657 unsigned arg_cnt = 0;
660 if(expr->expression1->type == EXPR_CALL) {
661 call_expression_t *call_expr = (call_expression_t*)expr->expression1;
665 FIXME("op %d not supported on parametrized assign expressions\n", op);
669 if(is_memberid_expr(call_expr->expression->type) && call_expr->argument_list) {
670 hres = compile_memberid_expression(ctx, call_expr->expression, fdexNameEnsure);
674 for(arg = call_expr->argument_list; arg; arg = arg->next) {
675 hres = compile_expression(ctx, arg->expr, TRUE);
681 use_throw_path = TRUE;
683 }else if(is_memberid_expr(expr->expression1->type)) {
684 hres = compile_memberid_expression(ctx, expr->expression1, fdexNameEnsure);
688 use_throw_path = TRUE;
692 /* Illegal assignment: evaluate and throw */
693 hres = compile_expression(ctx, expr->expression1, TRUE);
697 hres = compile_expression(ctx, expr->expression2, TRUE);
701 if(op != OP_LAST && !push_instr(ctx, op))
702 return E_OUTOFMEMORY;
704 return push_instr_uint(ctx, OP_throw_ref, JS_E_ILLEGAL_ASSIGN);
707 if(op != OP_LAST && !push_instr(ctx, OP_refval))
708 return E_OUTOFMEMORY;
710 hres = compile_expression(ctx, expr->expression2, TRUE);
714 if(op != OP_LAST && !push_instr(ctx, op))
715 return E_OUTOFMEMORY;
718 return push_instr_uint(ctx, OP_assign_call, arg_cnt);
720 if(!push_instr(ctx, OP_assign))
721 return E_OUTOFMEMORY;
726 static HRESULT compile_typeof_expression(compiler_ctx_t *ctx, unary_expression_t *expr)
731 if(is_memberid_expr(expr->expression->type)) {
732 if(expr->expression->type == EXPR_IDENT)
733 return push_instr_bstr(ctx, OP_typeofident, ((identifier_expression_t*)expr->expression)->identifier);
736 hres = compile_memberid_expression(ctx, expr->expression, 0);
739 hres = compile_expression(ctx, expr->expression, TRUE);
744 return push_instr(ctx, op) ? S_OK : E_OUTOFMEMORY;
747 static HRESULT compile_literal(compiler_ctx_t *ctx, literal_t *literal)
749 switch(literal->type) {
751 return push_instr_int(ctx, OP_bool, literal->u.bval);
753 return push_instr_double(ctx, OP_double, literal->u.dval);
755 return push_instr(ctx, OP_null) ? S_OK : E_OUTOFMEMORY;
757 return push_instr_str(ctx, OP_str, literal->u.wstr);
762 str = compiler_alloc_string_len(ctx, literal->u.regexp.str, literal->u.regexp.str_len);
764 return E_OUTOFMEMORY;
766 instr = push_instr(ctx, OP_regexp);
768 return E_OUTOFMEMORY;
770 instr_ptr(ctx, instr)->u.arg[0].str = str;
771 instr_ptr(ctx, instr)->u.arg[1].uint = literal->u.regexp.flags;
780 static HRESULT literal_as_bstr(compiler_ctx_t *ctx, literal_t *literal, BSTR *str)
782 switch(literal->type) {
784 *str = compiler_alloc_bstr(ctx, literal->u.wstr);
790 hres = double_to_string(literal->u.dval, &jsstr);
794 *str = compiler_alloc_bstr_len(ctx, NULL, jsstr_length(jsstr));
796 jsstr_flush(jsstr, *str);
797 jsstr_release(jsstr);
804 return *str ? S_OK : E_OUTOFMEMORY;
807 static HRESULT compile_array_literal(compiler_ctx_t *ctx, array_literal_expression_t *expr)
809 unsigned i, elem_cnt = expr->length;
810 array_element_t *iter;
813 for(iter = expr->element_list; iter; iter = iter->next) {
814 elem_cnt += iter->elision+1;
816 for(i=0; i < iter->elision; i++) {
817 if(!push_instr(ctx, OP_undefined))
818 return E_OUTOFMEMORY;
821 hres = compile_expression(ctx, iter->expr, TRUE);
826 for(i=0; i < expr->length; i++) {
827 if(!push_instr(ctx, OP_undefined))
828 return E_OUTOFMEMORY;
831 return push_instr_uint(ctx, OP_carray, elem_cnt);
834 static HRESULT compile_object_literal(compiler_ctx_t *ctx, property_value_expression_t *expr)
841 if(!push_instr(ctx, OP_new_obj))
842 return E_OUTOFMEMORY;
844 for(iter = expr->property_list; iter; iter = iter->next) {
845 hres = literal_as_bstr(ctx, iter->name, &name);
849 hres = compile_expression(ctx, iter->value, TRUE);
853 instr = push_instr(ctx, OP_obj_prop);
855 return E_OUTOFMEMORY;
857 instr_ptr(ctx, instr)->u.arg->bstr = name;
863 static HRESULT compile_function_expression(compiler_ctx_t *ctx, function_expression_t *expr)
865 ctx->func_tail = ctx->func_tail ? (ctx->func_tail->next = expr) : (ctx->func_head = expr);
867 /* FIXME: not exactly right */
868 if(expr->identifier) {
869 ctx->func->func_cnt++;
870 return push_instr_bstr(ctx, OP_ident, expr->identifier);
873 return push_instr_uint(ctx, OP_func, ctx->func->func_cnt++);
876 static HRESULT compile_expression(compiler_ctx_t *ctx, expression_t *expr, BOOL emit_ret)
882 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_add);
885 hres = compile_logical_expression(ctx, (binary_expression_t*)expr, OP_cnd_z);
888 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_array);
891 hres = compile_array_literal(ctx, (array_literal_expression_t*)expr);
894 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_LAST);
897 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_add);
900 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_and);
903 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_sub);
906 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_mul);
909 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_div);
912 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_mod);
915 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_or);
917 case EXPR_ASSIGNLSHIFT:
918 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_lshift);
920 case EXPR_ASSIGNRSHIFT:
921 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_rshift);
923 case EXPR_ASSIGNRRSHIFT:
924 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_rshift2);
927 hres = compile_assign_expression(ctx, (binary_expression_t*)expr, OP_xor);
930 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_and);
933 hres = compile_unary_expression(ctx, (unary_expression_t*)expr, OP_bneg);
936 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_or);
939 return compile_call_expression(ctx, (call_expression_t*)expr, emit_ret);
941 return compile_comma_expression(ctx, (binary_expression_t*)expr, emit_ret);
943 hres = compile_conditional_expression(ctx, (conditional_expression_t*)expr);
946 hres = compile_delete_expression(ctx, (unary_expression_t*)expr);
949 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_div);
952 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_eq);
955 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_eq2);
958 hres = compile_function_expression(ctx, (function_expression_t*)expr);
961 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_gt);
964 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_gteq);
967 hres = push_instr_bstr(ctx, OP_ident, ((identifier_expression_t*)expr)->identifier);
970 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_in);
972 case EXPR_INSTANCEOF:
973 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_instanceof);
976 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_lt);
979 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_lteq);
982 hres = compile_literal(ctx, ((literal_expression_t*)expr)->literal);
985 hres = compile_unary_expression(ctx, (unary_expression_t*)expr, OP_neg);
988 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_lshift);
991 hres = compile_member_expression(ctx, (member_expression_t*)expr);
994 hres = compile_unary_expression(ctx, (unary_expression_t*)expr, OP_minus);
997 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_mod);
1000 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_mul);
1003 hres = compile_new_expression(ctx, (call_expression_t*)expr);
1006 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_neq);
1009 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_neq2);
1012 hres = compile_logical_expression(ctx, (binary_expression_t*)expr, OP_cnd_nz);
1015 hres = compile_unary_expression(ctx, (unary_expression_t*)expr, OP_tonum);
1018 hres = compile_increment_expression(ctx, (unary_expression_t*)expr, OP_postinc, -1);
1021 hres = compile_increment_expression(ctx, (unary_expression_t*)expr, OP_postinc, 1);
1024 hres = compile_increment_expression(ctx, (unary_expression_t*)expr, OP_preinc, -1);
1027 hres = compile_increment_expression(ctx, (unary_expression_t*)expr, OP_preinc, 1);
1030 hres = compile_object_literal(ctx, (property_value_expression_t*)expr);
1033 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_rshift);
1036 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_rshift2);
1039 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_sub);
1042 return !emit_ret || push_instr(ctx, OP_this) ? S_OK : E_OUTOFMEMORY;
1044 hres = compile_typeof_expression(ctx, (unary_expression_t*)expr);
1047 hres = compile_unary_expression(ctx, (unary_expression_t*)expr, OP_void);
1050 hres = compile_binary_expression(ctx, (binary_expression_t*)expr, OP_xor);
1059 return emit_ret ? S_OK : push_instr_uint(ctx, OP_pop, 1);
1062 static inline BOOL is_loop_statement(statement_type_t type)
1064 return type == STAT_FOR || type == STAT_FORIN || type == STAT_WHILE;
1067 /* ECMA-262 3rd Edition 12.1 */
1068 static HRESULT compile_block_statement(compiler_ctx_t *ctx, statement_t *iter)
1073 hres = compile_statement(ctx, NULL, iter);
1083 /* ECMA-262 3rd Edition 12.2 */
1084 static HRESULT compile_variable_list(compiler_ctx_t *ctx, variable_declaration_t *list)
1086 variable_declaration_t *iter;
1089 assert(list != NULL);
1092 ctx->var_tail->global_next = list;
1094 ctx->var_head = list;
1096 for(iter = list; iter; iter = iter->next) {
1097 ctx->func->var_cnt++;
1098 iter->global_next = iter->next;
1100 ctx->var_tail = iter;
1105 hres = compile_expression(ctx, iter->expr, TRUE);
1109 hres = push_instr_bstr(ctx, OP_var_set, iter->identifier);
1117 /* ECMA-262 3rd Edition 12.2 */
1118 static HRESULT compile_var_statement(compiler_ctx_t *ctx, var_statement_t *stat)
1120 return compile_variable_list(ctx, stat->variable_list);
1123 /* ECMA-262 3rd Edition 12.4 */
1124 static HRESULT compile_expression_statement(compiler_ctx_t *ctx, expression_statement_t *stat)
1128 hres = compile_expression(ctx, stat->expr, ctx->from_eval);
1132 return !ctx->from_eval || push_instr(ctx, OP_setret) ? S_OK : E_OUTOFMEMORY;
1135 /* ECMA-262 3rd Edition 12.5 */
1136 static HRESULT compile_if_statement(compiler_ctx_t *ctx, if_statement_t *stat)
1141 hres = compile_expression(ctx, stat->expr, TRUE);
1145 jmp_else = push_instr(ctx, OP_jmp_z);
1147 return E_OUTOFMEMORY;
1149 hres = compile_statement(ctx, NULL, stat->if_stat);
1153 if(stat->else_stat) {
1156 jmp_end = push_instr(ctx, OP_jmp);
1158 return E_OUTOFMEMORY;
1160 set_arg_uint(ctx, jmp_else, ctx->code_off);
1162 hres = compile_statement(ctx, NULL, stat->else_stat);
1166 set_arg_uint(ctx, jmp_end, ctx->code_off);
1168 set_arg_uint(ctx, jmp_else, ctx->code_off);
1174 /* ECMA-262 3rd Edition 12.6.2 */
1175 static HRESULT compile_while_statement(compiler_ctx_t *ctx, while_statement_t *stat)
1177 statement_ctx_t stat_ctx = {0, FALSE, FALSE};
1181 stat_ctx.break_label = alloc_label(ctx);
1182 if(!stat_ctx.break_label)
1183 return E_OUTOFMEMORY;
1185 stat_ctx.continue_label = alloc_label(ctx);
1186 if(!stat_ctx.continue_label)
1187 return E_OUTOFMEMORY;
1189 jmp_off = ctx->code_off;
1191 if(!stat->do_while) {
1192 label_set_addr(ctx, stat_ctx.continue_label);
1193 hres = compile_expression(ctx, stat->expr, TRUE);
1197 hres = push_instr_uint(ctx, OP_jmp_z, stat_ctx.break_label);
1202 hres = compile_statement(ctx, &stat_ctx, stat->statement);
1206 if(stat->do_while) {
1207 label_set_addr(ctx, stat_ctx.continue_label);
1208 hres = compile_expression(ctx, stat->expr, TRUE);
1212 hres = push_instr_uint(ctx, OP_jmp_z, stat_ctx.break_label);
1217 hres = push_instr_uint(ctx, OP_jmp, jmp_off);
1221 label_set_addr(ctx, stat_ctx.break_label);
1225 /* ECMA-262 3rd Edition 12.6.3 */
1226 static HRESULT compile_for_statement(compiler_ctx_t *ctx, for_statement_t *stat)
1228 statement_ctx_t stat_ctx = {0, FALSE, FALSE};
1232 if(stat->variable_list) {
1233 hres = compile_variable_list(ctx, stat->variable_list);
1236 }else if(stat->begin_expr) {
1237 hres = compile_expression(ctx, stat->begin_expr, FALSE);
1242 stat_ctx.break_label = alloc_label(ctx);
1243 if(!stat_ctx.break_label)
1244 return E_OUTOFMEMORY;
1246 stat_ctx.continue_label = alloc_label(ctx);
1247 if(!stat_ctx.continue_label)
1248 return E_OUTOFMEMORY;
1250 expr_off = ctx->code_off;
1253 hres = compile_expression(ctx, stat->expr, TRUE);
1257 hres = push_instr_uint(ctx, OP_jmp_z, stat_ctx.break_label);
1262 hres = compile_statement(ctx, &stat_ctx, stat->statement);
1266 label_set_addr(ctx, stat_ctx.continue_label);
1268 if(stat->end_expr) {
1269 hres = compile_expression(ctx, stat->end_expr, FALSE);
1274 hres = push_instr_uint(ctx, OP_jmp, expr_off);
1278 label_set_addr(ctx, stat_ctx.break_label);
1282 /* ECMA-262 3rd Edition 12.6.4 */
1283 static HRESULT compile_forin_statement(compiler_ctx_t *ctx, forin_statement_t *stat)
1285 statement_ctx_t stat_ctx = {4, FALSE, FALSE};
1288 if(stat->variable) {
1289 hres = compile_variable_list(ctx, stat->variable);
1294 stat_ctx.break_label = alloc_label(ctx);
1295 if(!stat_ctx.break_label)
1296 return E_OUTOFMEMORY;
1298 stat_ctx.continue_label = alloc_label(ctx);
1299 if(!stat_ctx.continue_label)
1300 return E_OUTOFMEMORY;
1302 hres = compile_expression(ctx, stat->in_expr, TRUE);
1306 if(stat->variable) {
1307 hres = push_instr_bstr_uint(ctx, OP_identid, stat->variable->identifier, fdexNameEnsure);
1310 }else if(is_memberid_expr(stat->expr->type)) {
1311 hres = compile_memberid_expression(ctx, stat->expr, fdexNameEnsure);
1315 hres = push_instr_uint(ctx, OP_throw_ref, JS_E_ILLEGAL_ASSIGN);
1319 /* FIXME: compile statement anyways when we depend on compiler to check errors */
1323 hres = push_instr_int(ctx, OP_int, DISPID_STARTENUM);
1327 label_set_addr(ctx, stat_ctx.continue_label);
1328 hres = push_instr_uint(ctx, OP_forin, stat_ctx.break_label);
1330 return E_OUTOFMEMORY;
1332 hres = compile_statement(ctx, &stat_ctx, stat->statement);
1336 hres = push_instr_uint(ctx, OP_jmp, stat_ctx.continue_label);
1340 label_set_addr(ctx, stat_ctx.break_label);
1344 static HRESULT pop_to_stat(compiler_ctx_t *ctx, BOOL var_stack, BOOL scope_stack, statement_ctx_t *stat_ctx)
1346 unsigned stack_pop = 0;
1347 statement_ctx_t *iter;
1349 for(iter = ctx->stat_ctx; iter != stat_ctx; iter = iter->next) {
1351 if(iter->using_scope && !push_instr(ctx, OP_pop_scope))
1352 return E_OUTOFMEMORY;
1353 if(iter->using_except && !push_instr(ctx, OP_pop_except))
1354 return E_OUTOFMEMORY;
1356 stack_pop += iter->stack_use;
1359 if(var_stack && stack_pop) {
1362 hres = push_instr_uint(ctx, OP_pop, stack_pop);
1370 /* ECMA-262 3rd Edition 12.7 */
1371 static HRESULT compile_continue_statement(compiler_ctx_t *ctx, branch_statement_t *stat)
1373 statement_ctx_t *pop_ctx;
1376 if(stat->identifier) {
1377 statement_t *label_stat;
1378 statement_ctx_t *iter;
1382 for(iter = ctx->stat_ctx; iter; iter = iter->next) {
1383 if(iter->continue_label)
1385 if(iter->labelled_stat && !strcmpW(iter->labelled_stat->identifier, stat->identifier))
1390 WARN("Label not found\n");
1391 return JS_E_LABEL_NOT_FOUND;
1394 /* Labelled continue are allowed only on loops */
1395 for(label_stat = iter->labelled_stat->statement;
1396 label_stat->type == STAT_LABEL;
1397 label_stat = ((labelled_statement_t*)label_stat)->statement);
1398 if(!is_loop_statement(label_stat->type)) {
1399 WARN("Label is not a loop\n");
1400 return JS_E_INVALID_CONTINUE;
1403 assert(pop_ctx != NULL);
1405 for(pop_ctx = ctx->stat_ctx; pop_ctx; pop_ctx = pop_ctx->next) {
1406 if(pop_ctx->continue_label)
1411 WARN("continue outside loop\n");
1412 return JS_E_INVALID_CONTINUE;
1416 hres = pop_to_stat(ctx, TRUE, TRUE, pop_ctx);
1420 return push_instr_uint(ctx, OP_jmp, pop_ctx->continue_label);
1423 /* ECMA-262 3rd Edition 12.8 */
1424 static HRESULT compile_break_statement(compiler_ctx_t *ctx, branch_statement_t *stat)
1426 statement_ctx_t *pop_ctx;
1429 if(stat->identifier) {
1430 for(pop_ctx = ctx->stat_ctx; pop_ctx; pop_ctx = pop_ctx->next) {
1431 if(pop_ctx->labelled_stat && !strcmpW(pop_ctx->labelled_stat->identifier, stat->identifier)) {
1432 assert(pop_ctx->break_label);
1438 WARN("Label not found\n");
1439 return JS_E_LABEL_NOT_FOUND;
1442 for(pop_ctx = ctx->stat_ctx; pop_ctx; pop_ctx = pop_ctx->next) {
1443 if(pop_ctx->break_label && !pop_ctx->labelled_stat)
1448 WARN("Break outside loop\n");
1449 return JS_E_INVALID_BREAK;
1453 hres = pop_to_stat(ctx, TRUE, TRUE, pop_ctx->next);
1457 return push_instr_uint(ctx, OP_jmp, pop_ctx->break_label);
1460 /* ECMA-262 3rd Edition 12.9 */
1461 static HRESULT compile_return_statement(compiler_ctx_t *ctx, expression_statement_t *stat)
1465 if(ctx->from_eval) {
1466 WARN("misplaced return statement\n");
1467 return JS_E_MISPLACED_RETURN;
1470 hres = pop_to_stat(ctx, TRUE, FALSE, NULL);
1475 hres = compile_expression(ctx, stat->expr, TRUE);
1478 if(!push_instr(ctx, OP_setret))
1479 return E_OUTOFMEMORY;
1482 hres = pop_to_stat(ctx, FALSE, TRUE, NULL);
1486 return push_instr(ctx, OP_ret) ? S_OK : E_OUTOFMEMORY;
1489 /* ECMA-262 3rd Edition 12.10 */
1490 static HRESULT compile_with_statement(compiler_ctx_t *ctx, with_statement_t *stat)
1492 statement_ctx_t stat_ctx = {0, TRUE, FALSE};
1495 hres = compile_expression(ctx, stat->expr, TRUE);
1499 if(!push_instr(ctx, OP_push_scope))
1500 return E_OUTOFMEMORY;
1502 hres = compile_statement(ctx, &stat_ctx, stat->statement);
1506 if(!push_instr(ctx, OP_pop_scope))
1507 return E_OUTOFMEMORY;
1512 /* ECMA-262 3rd Edition 12.10 */
1513 static HRESULT compile_labelled_statement(compiler_ctx_t *ctx, labelled_statement_t *stat)
1515 statement_ctx_t stat_ctx = {0, FALSE, FALSE, 0, 0, stat}, *iter;
1518 for(iter = ctx->stat_ctx; iter; iter = iter->next) {
1519 if(iter->labelled_stat && !strcmpW(iter->labelled_stat->identifier, stat->identifier)) {
1520 WARN("Label %s redefined\n", debugstr_w(stat->identifier));
1521 return JS_E_LABEL_REDEFINED;
1525 /* Labelled breaks are allowed for any labelled statements, not only loops (violating spec) */
1526 stat_ctx.break_label = alloc_label(ctx);
1527 if(!stat_ctx.break_label)
1528 return E_OUTOFMEMORY;
1530 hres = compile_statement(ctx, &stat_ctx, stat->statement);
1534 label_set_addr(ctx, stat_ctx.break_label);
1538 /* ECMA-262 3rd Edition 12.13 */
1539 static HRESULT compile_switch_statement(compiler_ctx_t *ctx, switch_statement_t *stat)
1541 statement_ctx_t stat_ctx = {0, FALSE, FALSE};
1542 unsigned case_cnt = 0, *case_jmps, i, default_jmp;
1543 BOOL have_default = FALSE;
1544 statement_t *stat_iter;
1545 case_clausule_t *iter;
1548 hres = compile_expression(ctx, stat->expr, TRUE);
1552 stat_ctx.break_label = alloc_label(ctx);
1553 if(!stat_ctx.break_label)
1554 return E_OUTOFMEMORY;
1556 for(iter = stat->case_list; iter; iter = iter->next) {
1561 case_jmps = heap_alloc(case_cnt * sizeof(*case_jmps));
1563 return E_OUTOFMEMORY;
1566 for(iter = stat->case_list; iter; iter = iter->next) {
1568 have_default = TRUE;
1572 hres = compile_expression(ctx, iter->expr, TRUE);
1576 case_jmps[i] = push_instr(ctx, OP_case);
1578 hres = E_OUTOFMEMORY;
1584 if(SUCCEEDED(hres)) {
1585 hres = push_instr_uint(ctx, OP_pop, 1);
1586 if(SUCCEEDED(hres)) {
1587 default_jmp = push_instr(ctx, OP_jmp);
1589 hres = E_OUTOFMEMORY;
1594 heap_free(case_jmps);
1599 for(iter = stat->case_list; iter; iter = iter->next) {
1600 while(iter->next && iter->next->stat == iter->stat) {
1601 set_arg_uint(ctx, iter->expr ? case_jmps[i++] : default_jmp, ctx->code_off);
1605 set_arg_uint(ctx, iter->expr ? case_jmps[i++] : default_jmp, ctx->code_off);
1607 for(stat_iter = iter->stat; stat_iter && (!iter->next || iter->next->stat != stat_iter);
1608 stat_iter = stat_iter->next) {
1609 hres = compile_statement(ctx, &stat_ctx, stat_iter);
1617 heap_free(case_jmps);
1620 assert(i == case_cnt);
1623 hres = push_instr_uint(ctx, OP_jmp, stat_ctx.break_label);
1626 set_arg_uint(ctx, default_jmp, ctx->code_off);
1629 label_set_addr(ctx, stat_ctx.break_label);
1633 /* ECMA-262 3rd Edition 12.13 */
1634 static HRESULT compile_throw_statement(compiler_ctx_t *ctx, expression_statement_t *stat)
1638 hres = compile_expression(ctx, stat->expr, TRUE);
1642 return push_instr(ctx, OP_throw) ? S_OK : E_OUTOFMEMORY;
1645 /* ECMA-262 3rd Edition 12.14 */
1646 static HRESULT compile_try_statement(compiler_ctx_t *ctx, try_statement_t *stat)
1648 statement_ctx_t try_ctx = {0, FALSE, TRUE}, catch_ctx = {0, TRUE, FALSE};
1649 statement_ctx_t finally_ctx = {2, FALSE, FALSE};
1650 unsigned push_except;
1654 push_except = push_instr(ctx, OP_push_except);
1656 return E_OUTOFMEMORY;
1658 if(stat->catch_block) {
1659 ident = compiler_alloc_bstr(ctx, stat->catch_block->identifier);
1661 return E_OUTOFMEMORY;
1666 instr_ptr(ctx, push_except)->u.arg[1].bstr = ident;
1668 if(!stat->catch_block)
1669 try_ctx.stack_use = 2;
1671 hres = compile_statement(ctx, &try_ctx, stat->try_statement);
1675 if(!push_instr(ctx, OP_pop_except))
1676 return E_OUTOFMEMORY;
1678 if(stat->catch_block) {
1679 unsigned jmp_finally;
1681 jmp_finally = push_instr(ctx, OP_jmp);
1683 return E_OUTOFMEMORY;
1685 instr_ptr(ctx, push_except)->u.arg[0].uint = ctx->code_off;
1687 hres = compile_statement(ctx, &catch_ctx, stat->catch_block->statement);
1691 if(!push_instr(ctx, OP_pop_scope))
1692 return E_OUTOFMEMORY;
1694 set_arg_uint(ctx, jmp_finally, ctx->code_off);
1696 set_arg_uint(ctx, push_except, ctx->code_off);
1699 if(stat->finally_statement) {
1700 hres = compile_statement(ctx, stat->catch_block ? NULL : &finally_ctx, stat->finally_statement);
1704 if(!stat->catch_block && !push_instr(ctx, OP_end_finally))
1705 return E_OUTOFMEMORY;
1711 static HRESULT compile_statement(compiler_ctx_t *ctx, statement_ctx_t *stat_ctx, statement_t *stat)
1716 stat_ctx->next = ctx->stat_ctx;
1717 ctx->stat_ctx = stat_ctx;
1720 switch(stat->type) {
1722 hres = compile_block_statement(ctx, ((block_statement_t*)stat)->stat_list);
1725 hres = compile_break_statement(ctx, (branch_statement_t*)stat);
1728 hres = compile_continue_statement(ctx, (branch_statement_t*)stat);
1735 hres = compile_expression_statement(ctx, (expression_statement_t*)stat);
1738 hres = compile_for_statement(ctx, (for_statement_t*)stat);
1741 hres = compile_forin_statement(ctx, (forin_statement_t*)stat);
1744 hres = compile_if_statement(ctx, (if_statement_t*)stat);
1747 hres = compile_labelled_statement(ctx, (labelled_statement_t*)stat);
1750 hres = compile_return_statement(ctx, (expression_statement_t*)stat);
1753 hres = compile_switch_statement(ctx, (switch_statement_t*)stat);
1756 hres = compile_throw_statement(ctx, (expression_statement_t*)stat);
1759 hres = compile_try_statement(ctx, (try_statement_t*)stat);
1762 hres = compile_var_statement(ctx, (var_statement_t*)stat);
1765 hres = compile_while_statement(ctx, (while_statement_t*)stat);
1768 hres = compile_with_statement(ctx, (with_statement_t*)stat);
1776 assert(ctx->stat_ctx == stat_ctx);
1777 ctx->stat_ctx = stat_ctx->next;
1783 static void resolve_labels(compiler_ctx_t *ctx, unsigned off)
1787 for(instr = ctx->code->instrs+off; instr < ctx->code->instrs+ctx->code_off; instr++) {
1788 if(instr_info[instr->op].arg1_type == ARG_ADDR && (instr->u.arg->uint & LABEL_FLAG)) {
1789 assert((instr->u.arg->uint & ~LABEL_FLAG) < ctx->labels_cnt);
1790 instr->u.arg->uint = ctx->labels[instr->u.arg->uint & ~LABEL_FLAG];
1792 assert(instr_info[instr->op].arg2_type != ARG_ADDR);
1795 ctx->labels_cnt = 0;
1798 void release_bytecode(bytecode_t *code)
1805 for(i=0; i < code->bstr_cnt; i++)
1806 SysFreeString(code->bstr_pool[i]);
1807 for(i=0; i < code->str_cnt; i++)
1808 jsstr_release(code->str_pool[i]);
1810 heap_free(code->source);
1811 heap_pool_free(&code->heap);
1812 heap_free(code->bstr_pool);
1813 heap_free(code->str_pool);
1814 heap_free(code->instrs);
1818 static HRESULT init_code(compiler_ctx_t *compiler, const WCHAR *source)
1820 compiler->code = heap_alloc_zero(sizeof(bytecode_t));
1822 return E_OUTOFMEMORY;
1824 compiler->code->ref = 1;
1825 heap_pool_init(&compiler->code->heap);
1827 compiler->code->source = heap_strdupW(source);
1828 if(!compiler->code->source) {
1829 release_bytecode(compiler->code);
1830 return E_OUTOFMEMORY;
1833 compiler->code->instrs = heap_alloc(64 * sizeof(instr_t));
1834 if(!compiler->code->instrs) {
1835 release_bytecode(compiler->code);
1836 return E_OUTOFMEMORY;
1839 compiler->code_size = 64;
1840 compiler->code_off = 1;
1844 static HRESULT compile_function(compiler_ctx_t *ctx, source_elements_t *source, function_expression_t *func_expr,
1845 BOOL from_eval, function_code_t *func)
1847 variable_declaration_t *var_iter;
1848 function_expression_t *iter;
1854 ctx->var_head = ctx->var_tail = NULL;
1855 ctx->func_head = ctx->func_tail = NULL;
1856 ctx->from_eval = from_eval;
1858 off = ctx->code_off;
1860 hres = compile_block_statement(ctx, source->statement);
1864 resolve_labels(ctx, off);
1866 if(!push_instr(ctx, OP_ret))
1867 return E_OUTOFMEMORY;
1869 if(TRACE_ON(jscript_disas))
1870 dump_code(ctx, off);
1872 func->instr_off = off;
1874 if(func_expr && func_expr->identifier) {
1875 func->name = compiler_alloc_bstr(ctx, func_expr->identifier);
1877 return E_OUTOFMEMORY;
1881 parameter_t *param_iter;
1883 func->source = func_expr->src_str;
1884 func->source_len = func_expr->src_len;
1886 for(param_iter = func_expr->parameter_list; param_iter; param_iter = param_iter->next)
1889 func->params = compiler_alloc(ctx->code, func->param_cnt * sizeof(*func->params));
1891 return E_OUTOFMEMORY;
1893 for(param_iter = func_expr->parameter_list, i=0; param_iter; param_iter = param_iter->next, i++) {
1894 func->params[i] = compiler_alloc_bstr(ctx, param_iter->identifier);
1895 if(!func->params[i])
1896 return E_OUTOFMEMORY;
1900 func->variables = compiler_alloc(ctx->code, func->var_cnt * sizeof(*func->variables));
1901 if(!func->variables)
1902 return E_OUTOFMEMORY;
1904 for(var_iter = ctx->var_head, i=0; var_iter; var_iter = var_iter->global_next, i++) {
1905 func->variables[i] = compiler_alloc_bstr(ctx, var_iter->identifier);
1906 if(!func->variables[i])
1907 return E_OUTOFMEMORY;
1910 assert(i == func->var_cnt);
1912 func->funcs = compiler_alloc(ctx->code, func->func_cnt * sizeof(*func->funcs));
1914 return E_OUTOFMEMORY;
1915 memset(func->funcs, 0, func->func_cnt * sizeof(*func->funcs));
1917 for(iter = ctx->func_head, i=0; iter; iter = iter->next, i++) {
1918 hres = compile_function(ctx, iter->source_elements, iter, FALSE, func->funcs+i);
1923 assert(i == func->func_cnt);
1928 static HRESULT parse_arguments(compiler_ctx_t *ctx, const WCHAR *args, BSTR *arg_array, unsigned *args_size)
1930 const WCHAR *ptr = args, *ptr2;
1931 unsigned arg_cnt = 0;
1933 while(isspaceW(*ptr))
1942 if(!isalphaW(*ptr) && *ptr != '_') {
1943 FIXME("expected alpha or '_': %s\n", debugstr_w(ptr));
1948 while(isalnumW(*ptr) || *ptr == '_')
1951 if(*ptr && *ptr != ',' && !isspaceW(*ptr)) {
1952 FIXME("unexpected har %s\n", debugstr_w(ptr));
1957 arg_array[arg_cnt] = compiler_alloc_bstr_len(ctx, ptr2, ptr-ptr2);
1958 if(!arg_array[arg_cnt])
1959 return E_OUTOFMEMORY;
1963 while(isspaceW(*ptr))
1968 FIXME("expected ',': %s\n", debugstr_w(ptr));
1973 while(isspaceW(*ptr))
1978 *args_size = arg_cnt;
1982 static HRESULT compile_arguments(compiler_ctx_t *ctx, const WCHAR *args)
1986 hres = parse_arguments(ctx, args, NULL, &ctx->code->global_code.param_cnt);
1990 ctx->code->global_code.params = compiler_alloc(ctx->code,
1991 ctx->code->global_code.param_cnt * sizeof(*ctx->code->global_code.params));
1992 if(!ctx->code->global_code.params)
1993 return E_OUTOFMEMORY;
1995 return parse_arguments(ctx, args, ctx->code->global_code.params, NULL);
1998 HRESULT compile_script(script_ctx_t *ctx, const WCHAR *code, const WCHAR *args, const WCHAR *delimiter,
1999 BOOL from_eval, BOOL use_decode, bytecode_t **ret)
2001 compiler_ctx_t compiler = {0};
2004 hres = init_code(&compiler, code);
2009 hres = compile_arguments(&compiler, args);
2015 hres = decode_source(compiler.code->source);
2017 WARN("Decoding failed\n");
2022 hres = script_parse(ctx, compiler.code->source, delimiter, from_eval, &compiler.parser);
2024 release_bytecode(compiler.code);
2028 hres = compile_function(&compiler, compiler.parser->source, NULL, from_eval, &compiler.code->global_code);
2029 parser_release(compiler.parser);
2031 release_bytecode(compiler.code);
2035 *ret = compiler.code;