vbscript: Added InStr tests.
[wine] / dlls / vbscript / compile.c
1 /*
2  * Copyright 2011 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include <assert.h>
20
21 #include "vbscript.h"
22 #include "parse.h"
23 #include "parser.tab.h"
24
25 #include "wine/debug.h"
26
27 WINE_DEFAULT_DEBUG_CHANNEL(vbscript);
28 WINE_DECLARE_DEBUG_CHANNEL(vbscript_disas);
29
30 typedef struct {
31     parser_ctx_t parser;
32
33     unsigned instr_cnt;
34     unsigned instr_size;
35     vbscode_t *code;
36
37     unsigned *labels;
38     unsigned labels_size;
39     unsigned labels_cnt;
40
41     unsigned while_end_label;
42     unsigned for_end_label;
43     unsigned sub_end_label;
44     unsigned func_end_label;
45     unsigned prop_end_label;
46
47     dim_decl_t *dim_decls;
48     dynamic_var_t *global_vars;
49
50     const_decl_t *const_decls;
51     const_decl_t *global_consts;
52
53     function_t *func;
54     function_t *funcs;
55     function_decl_t *func_decls;
56
57     class_desc_t *classes;
58 } compile_ctx_t;
59
60 static HRESULT compile_expression(compile_ctx_t*,expression_t*);
61 static HRESULT compile_statement(compile_ctx_t*,statement_t*);
62
63 static const struct {
64     const char *op_str;
65     instr_arg_type_t arg1_type;
66     instr_arg_type_t arg2_type;
67 } instr_info[] = {
68 #define X(n,a,b,c) {#n,b,c},
69 OP_LIST
70 #undef X
71 };
72
73 static void dump_instr_arg(instr_arg_type_t type, instr_arg_t *arg)
74 {
75     switch(type) {
76     case ARG_STR:
77     case ARG_BSTR:
78         TRACE_(vbscript_disas)("\t%s", debugstr_w(arg->str));
79         break;
80     case ARG_INT:
81         TRACE_(vbscript_disas)("\t%d", arg->uint);
82         break;
83     case ARG_UINT:
84     case ARG_ADDR:
85         TRACE_(vbscript_disas)("\t%u", arg->uint);
86         break;
87     case ARG_DOUBLE:
88         TRACE_(vbscript_disas)("\t%lf", *arg->dbl);
89         break;
90     case ARG_NONE:
91         break;
92     default:
93         assert(0);
94     }
95 }
96
97 static void dump_code(compile_ctx_t *ctx)
98 {
99     instr_t *instr;
100
101     for(instr = ctx->code->instrs; instr < ctx->code->instrs+ctx->instr_cnt; instr++) {
102         TRACE_(vbscript_disas)("%d:\t%s", (int)(instr-ctx->code->instrs), instr_info[instr->op].op_str);
103         dump_instr_arg(instr_info[instr->op].arg1_type, &instr->arg1);
104         dump_instr_arg(instr_info[instr->op].arg2_type, &instr->arg2);
105         TRACE_(vbscript_disas)("\n");
106     }
107 }
108
109 static inline void *compiler_alloc(vbscode_t *vbscode, size_t size)
110 {
111     return vbsheap_alloc(&vbscode->heap, size);
112 }
113
114 static inline void *compiler_alloc_zero(vbscode_t *vbscode, size_t size)
115 {
116     void *ret;
117
118     ret = vbsheap_alloc(&vbscode->heap, size);
119     if(ret)
120         memset(ret, 0, size);
121     return ret;
122 }
123
124 static WCHAR *compiler_alloc_string(vbscode_t *vbscode, const WCHAR *str)
125 {
126     size_t size;
127     WCHAR *ret;
128
129     size = (strlenW(str)+1)*sizeof(WCHAR);
130     ret = compiler_alloc(vbscode, size);
131     if(ret)
132         memcpy(ret, str, size);
133     return ret;
134 }
135
136 static inline instr_t *instr_ptr(compile_ctx_t *ctx, unsigned id)
137 {
138     assert(id < ctx->instr_cnt);
139     return ctx->code->instrs + id;
140 }
141
142 static unsigned push_instr(compile_ctx_t *ctx, vbsop_t op)
143 {
144     assert(ctx->instr_size && ctx->instr_size >= ctx->instr_cnt);
145
146     if(ctx->instr_size == ctx->instr_cnt) {
147         instr_t *new_instr;
148
149         new_instr = heap_realloc(ctx->code->instrs, ctx->instr_size*2*sizeof(instr_t));
150         if(!new_instr)
151             return -1;
152
153         ctx->code->instrs = new_instr;
154         ctx->instr_size *= 2;
155     }
156
157     ctx->code->instrs[ctx->instr_cnt].op = op;
158     return ctx->instr_cnt++;
159 }
160
161 static HRESULT push_instr_int(compile_ctx_t *ctx, vbsop_t op, LONG arg)
162 {
163     unsigned ret;
164
165     ret = push_instr(ctx, op);
166     if(ret == -1)
167         return E_OUTOFMEMORY;
168
169     instr_ptr(ctx, ret)->arg1.lng = arg;
170     return S_OK;
171 }
172
173 static HRESULT push_instr_uint(compile_ctx_t *ctx, vbsop_t op, unsigned arg)
174 {
175     unsigned ret;
176
177     ret = push_instr(ctx, op);
178     if(ret == -1)
179         return E_OUTOFMEMORY;
180
181     instr_ptr(ctx, ret)->arg1.uint = arg;
182     return S_OK;
183 }
184
185 static HRESULT push_instr_addr(compile_ctx_t *ctx, vbsop_t op, unsigned arg)
186 {
187     unsigned ret;
188
189     ret = push_instr(ctx, op);
190     if(ret == -1)
191         return E_OUTOFMEMORY;
192
193     instr_ptr(ctx, ret)->arg1.uint = arg;
194     return S_OK;
195 }
196
197 static HRESULT push_instr_str(compile_ctx_t *ctx, vbsop_t op, const WCHAR *arg)
198 {
199     unsigned instr;
200     WCHAR *str;
201
202     str = compiler_alloc_string(ctx->code, arg);
203     if(!str)
204         return E_OUTOFMEMORY;
205
206     instr = push_instr(ctx, op);
207     if(instr == -1)
208         return E_OUTOFMEMORY;
209
210     instr_ptr(ctx, instr)->arg1.str = str;
211     return S_OK;
212 }
213
214 static HRESULT push_instr_double(compile_ctx_t *ctx, vbsop_t op, double arg)
215 {
216     unsigned instr;
217     double *d;
218
219     d = compiler_alloc(ctx->code, sizeof(double));
220     if(!d)
221         return E_OUTOFMEMORY;
222
223     instr = push_instr(ctx, op);
224     if(instr == -1)
225         return E_OUTOFMEMORY;
226
227     *d = arg;
228     instr_ptr(ctx, instr)->arg1.dbl = d;
229     return S_OK;
230 }
231
232 static BSTR alloc_bstr_arg(compile_ctx_t *ctx, const WCHAR *str)
233 {
234     if(!ctx->code->bstr_pool_size) {
235         ctx->code->bstr_pool = heap_alloc(8 * sizeof(BSTR));
236         if(!ctx->code->bstr_pool)
237             return NULL;
238         ctx->code->bstr_pool_size = 8;
239     }else if(ctx->code->bstr_pool_size == ctx->code->bstr_cnt) {
240         BSTR *new_pool;
241
242         new_pool = heap_realloc(ctx->code->bstr_pool, ctx->code->bstr_pool_size*2*sizeof(BSTR));
243         if(!new_pool)
244             return NULL;
245
246         ctx->code->bstr_pool = new_pool;
247         ctx->code->bstr_pool_size *= 2;
248     }
249
250     ctx->code->bstr_pool[ctx->code->bstr_cnt] = SysAllocString(str);
251     if(!ctx->code->bstr_pool[ctx->code->bstr_cnt])
252         return NULL;
253
254     return ctx->code->bstr_pool[ctx->code->bstr_cnt++];
255 }
256
257 static HRESULT push_instr_bstr(compile_ctx_t *ctx, vbsop_t op, const WCHAR *arg)
258 {
259     unsigned instr;
260     BSTR bstr;
261
262     bstr = alloc_bstr_arg(ctx, arg);
263     if(!bstr)
264         return E_OUTOFMEMORY;
265
266     instr = push_instr(ctx, op);
267     if(instr == -1)
268         return E_OUTOFMEMORY;
269
270     instr_ptr(ctx, instr)->arg1.bstr = bstr;
271     return S_OK;
272 }
273
274 static HRESULT push_instr_bstr_uint(compile_ctx_t *ctx, vbsop_t op, const WCHAR *arg1, unsigned arg2)
275 {
276     unsigned instr;
277     BSTR bstr;
278
279     bstr = alloc_bstr_arg(ctx, arg1);
280     if(!bstr)
281         return E_OUTOFMEMORY;
282
283     instr = push_instr(ctx, op);
284     if(instr == -1)
285         return E_OUTOFMEMORY;
286
287     instr_ptr(ctx, instr)->arg1.bstr = bstr;
288     instr_ptr(ctx, instr)->arg2.uint = arg2;
289     return S_OK;
290 }
291
292 #define LABEL_FLAG 0x80000000
293
294 static unsigned alloc_label(compile_ctx_t *ctx)
295 {
296     if(!ctx->labels_size) {
297         ctx->labels = heap_alloc(8 * sizeof(*ctx->labels));
298         if(!ctx->labels)
299             return -1;
300         ctx->labels_size = 8;
301     }else if(ctx->labels_size == ctx->labels_cnt) {
302         unsigned *new_labels;
303
304         new_labels = heap_realloc(ctx->labels, 2*ctx->labels_size*sizeof(*ctx->labels));
305         if(!new_labels)
306             return -1;
307
308         ctx->labels = new_labels;
309         ctx->labels_size *= 2;
310     }
311
312     return ctx->labels_cnt++ | LABEL_FLAG;
313 }
314
315 static inline void label_set_addr(compile_ctx_t *ctx, unsigned label)
316 {
317     assert(label & LABEL_FLAG);
318     ctx->labels[label & ~LABEL_FLAG] = ctx->instr_cnt;
319 }
320
321 static expression_t *lookup_const_decls(compile_ctx_t *ctx, const WCHAR *name, BOOL lookup_global)
322 {
323     const_decl_t *decl;
324
325     for(decl = ctx->const_decls; decl; decl = decl->next) {
326         if(!strcmpiW(decl->name, name))
327             return decl->value_expr;
328     }
329
330     if(!lookup_global)
331         return NULL;
332
333     for(decl = ctx->global_consts; decl; decl = decl->next) {
334         if(!strcmpiW(decl->name, name))
335             return decl->value_expr;
336     }
337
338     return NULL;
339 }
340
341 static HRESULT compile_args(compile_ctx_t *ctx, expression_t *args, unsigned *ret)
342 {
343     unsigned arg_cnt = 0;
344     HRESULT hres;
345
346     while(args) {
347         hres = compile_expression(ctx, args);
348         if(FAILED(hres))
349             return hres;
350
351         arg_cnt++;
352         args = args->next;
353     }
354
355     *ret = arg_cnt;
356     return S_OK;
357 }
358
359 static HRESULT compile_member_expression(compile_ctx_t *ctx, member_expression_t *expr, BOOL ret_val)
360 {
361     unsigned arg_cnt = 0;
362     HRESULT hres;
363
364     if(ret_val && !expr->args) {
365         expression_t *const_expr;
366
367         const_expr = lookup_const_decls(ctx, expr->identifier, TRUE);
368         if(const_expr)
369             return compile_expression(ctx, const_expr);
370     }
371
372     hres = compile_args(ctx, expr->args, &arg_cnt);
373     if(FAILED(hres))
374         return hres;
375
376     if(expr->obj_expr) {
377         hres = compile_expression(ctx, expr->obj_expr);
378         if(FAILED(hres))
379             return hres;
380
381         hres = push_instr_bstr_uint(ctx, ret_val ? OP_mcall : OP_mcallv, expr->identifier, arg_cnt);
382     }else {
383         hres = push_instr_bstr_uint(ctx, ret_val ? OP_icall : OP_icallv, expr->identifier, arg_cnt);
384     }
385
386     return hres;
387 }
388
389 static HRESULT compile_unary_expression(compile_ctx_t *ctx, unary_expression_t *expr, vbsop_t op)
390 {
391     HRESULT hres;
392
393     hres = compile_expression(ctx, expr->subexpr);
394     if(FAILED(hres))
395         return hres;
396
397     return push_instr(ctx, op) == -1 ? E_OUTOFMEMORY : S_OK;
398 }
399
400 static HRESULT compile_binary_expression(compile_ctx_t *ctx, binary_expression_t *expr, vbsop_t op)
401 {
402     HRESULT hres;
403
404     hres = compile_expression(ctx, expr->left);
405     if(FAILED(hres))
406         return hres;
407
408     hres = compile_expression(ctx, expr->right);
409     if(FAILED(hres))
410         return hres;
411
412     return push_instr(ctx, op) == -1 ? E_OUTOFMEMORY : S_OK;
413 }
414
415 static HRESULT compile_expression(compile_ctx_t *ctx, expression_t *expr)
416 {
417     switch(expr->type) {
418     case EXPR_ADD:
419         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_add);
420     case EXPR_AND:
421         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_and);
422     case EXPR_BOOL:
423         return push_instr_int(ctx, OP_bool, ((bool_expression_t*)expr)->value);
424     case EXPR_CONCAT:
425         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_concat);
426     case EXPR_DIV:
427         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_div);
428     case EXPR_DOUBLE:
429         return push_instr_double(ctx, OP_double, ((double_expression_t*)expr)->value);
430     case EXPR_EMPTY:
431         return push_instr(ctx, OP_empty) != -1 ? S_OK : E_OUTOFMEMORY;
432     case EXPR_EQUAL:
433         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_equal);
434     case EXPR_EQV:
435         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_eqv);
436     case EXPR_EXP:
437         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_exp);
438     case EXPR_GT:
439         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_gt);
440     case EXPR_GTEQ:
441         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_gteq);
442     case EXPR_IDIV:
443         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_idiv);
444     case EXPR_IS:
445         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_is);
446     case EXPR_IMP:
447         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_imp);
448     case EXPR_LT:
449         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_lt);
450     case EXPR_LTEQ:
451         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_lteq);
452     case EXPR_ME:
453         return push_instr(ctx, OP_me) != -1 ? S_OK : E_OUTOFMEMORY;
454     case EXPR_MEMBER:
455         return compile_member_expression(ctx, (member_expression_t*)expr, TRUE);
456     case EXPR_MOD:
457         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_mod);
458     case EXPR_MUL:
459         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_mul);
460     case EXPR_NEG:
461         return compile_unary_expression(ctx, (unary_expression_t*)expr, OP_neg);
462     case EXPR_NEQUAL:
463         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_nequal);
464     case EXPR_NEW:
465         return push_instr_str(ctx, OP_new, ((string_expression_t*)expr)->value);
466     case EXPR_NOT:
467         return compile_unary_expression(ctx, (unary_expression_t*)expr, OP_not);
468     case EXPR_NOTHING:
469         return push_instr(ctx, OP_nothing) != -1 ? S_OK : E_OUTOFMEMORY;
470     case EXPR_NULL:
471         return push_instr(ctx, OP_null) != -1 ? S_OK : E_OUTOFMEMORY;
472     case EXPR_OR:
473         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_or);
474     case EXPR_STRING:
475         return push_instr_str(ctx, OP_string, ((string_expression_t*)expr)->value);
476     case EXPR_SUB:
477         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_sub);
478     case EXPR_USHORT:
479         return push_instr_int(ctx, OP_short, ((int_expression_t*)expr)->value);
480     case EXPR_ULONG:
481         return push_instr_int(ctx, OP_long, ((int_expression_t*)expr)->value);
482     case EXPR_XOR:
483         return compile_binary_expression(ctx, (binary_expression_t*)expr, OP_xor);
484     default:
485         FIXME("Unimplemented expression type %d\n", expr->type);
486         return E_NOTIMPL;
487     }
488
489     return S_OK;
490 }
491
492 static HRESULT compile_if_statement(compile_ctx_t *ctx, if_statement_t *stat)
493 {
494     unsigned cnd_jmp, endif_label = -1;
495     elseif_decl_t *elseif_decl;
496     HRESULT hres;
497
498     hres = compile_expression(ctx, stat->expr);
499     if(FAILED(hres))
500         return hres;
501
502     cnd_jmp = push_instr(ctx, OP_jmp_false);
503     if(cnd_jmp == -1)
504         return E_OUTOFMEMORY;
505
506     hres = compile_statement(ctx, stat->if_stat);
507     if(FAILED(hres))
508         return hres;
509
510     if(stat->else_stat || stat->elseifs) {
511         endif_label = alloc_label(ctx);
512         if(endif_label == -1)
513             return E_OUTOFMEMORY;
514
515         hres = push_instr_addr(ctx, OP_jmp, endif_label);
516         if(FAILED(hres))
517             return hres;
518     }
519
520     for(elseif_decl = stat->elseifs; elseif_decl; elseif_decl = elseif_decl->next) {
521         instr_ptr(ctx, cnd_jmp)->arg1.uint = ctx->instr_cnt;
522
523         hres = compile_expression(ctx, elseif_decl->expr);
524         if(FAILED(hres))
525             return hres;
526
527         cnd_jmp = push_instr(ctx, OP_jmp_false);
528         if(cnd_jmp == -1)
529             return E_OUTOFMEMORY;
530
531         hres = compile_statement(ctx, elseif_decl->stat);
532         if(FAILED(hres))
533             return hres;
534
535         hres = push_instr_addr(ctx, OP_jmp, endif_label);
536         if(FAILED(hres))
537             return hres;
538     }
539
540     instr_ptr(ctx, cnd_jmp)->arg1.uint = ctx->instr_cnt;
541
542     if(stat->else_stat) {
543         hres = compile_statement(ctx, stat->else_stat);
544         if(FAILED(hres))
545             return hres;
546     }
547
548     if(endif_label != -1)
549         label_set_addr(ctx, endif_label);
550     return S_OK;
551 }
552
553 static HRESULT compile_while_statement(compile_ctx_t *ctx, while_statement_t *stat)
554 {
555     unsigned start_addr, prev_label;
556     unsigned jmp_end;
557     HRESULT hres;
558
559     start_addr = ctx->instr_cnt;
560
561     hres = compile_expression(ctx, stat->expr);
562     if(FAILED(hres))
563         return hres;
564
565     jmp_end = push_instr(ctx, stat->stat.type == STAT_UNTIL ? OP_jmp_true : OP_jmp_false);
566     if(jmp_end == -1)
567         return E_OUTOFMEMORY;
568
569     prev_label = ctx->while_end_label;
570     if(stat->stat.type != STAT_WHILE && (ctx->while_end_label = alloc_label(ctx)) == -1)
571         return E_OUTOFMEMORY;
572
573     hres = compile_statement(ctx, stat->body);
574     if(FAILED(hres))
575         return hres;
576
577     hres = push_instr_addr(ctx, OP_jmp, start_addr);
578     if(FAILED(hres))
579         return hres;
580
581     instr_ptr(ctx, jmp_end)->arg1.uint = ctx->instr_cnt;
582
583     if(stat->stat.type != STAT_WHILE) {
584         label_set_addr(ctx, ctx->while_end_label);
585         ctx->while_end_label = prev_label;
586     }
587
588     return S_OK;
589 }
590
591 static HRESULT compile_dowhile_statement(compile_ctx_t *ctx, while_statement_t *stat)
592 {
593     unsigned start_addr, prev_label;
594     HRESULT hres;
595
596     start_addr = ctx->instr_cnt;
597
598     prev_label = ctx->while_end_label;
599     if((ctx->while_end_label = alloc_label(ctx)) == -1)
600         return E_OUTOFMEMORY;
601
602     hres = compile_statement(ctx, stat->body);
603     if(FAILED(hres))
604         return hres;
605
606     hres = compile_expression(ctx, stat->expr);
607     if(FAILED(hres))
608         return hres;
609
610     hres = push_instr_addr(ctx, stat->stat.type == STAT_DOUNTIL ? OP_jmp_false : OP_jmp_true, start_addr);
611     if(FAILED(hres))
612         return hres;
613
614     label_set_addr(ctx, ctx->while_end_label);
615     ctx->while_end_label = prev_label;
616     return S_OK;
617 }
618
619 static HRESULT compile_forto_statement(compile_ctx_t *ctx, forto_statement_t *stat)
620 {
621     unsigned step_instr, instr, prev_label;
622     BSTR identifier;
623     HRESULT hres;
624
625     identifier = alloc_bstr_arg(ctx, stat->identifier);
626     if(!identifier)
627         return E_OUTOFMEMORY;
628
629     hres = compile_expression(ctx, stat->from_expr);
630     if(FAILED(hres))
631         return hres;
632
633     instr = push_instr(ctx, OP_assign_ident);
634     if(instr == -1)
635         return E_OUTOFMEMORY;
636     instr_ptr(ctx, instr)->arg1.bstr = identifier;
637
638     hres = compile_expression(ctx, stat->to_expr);
639     if(FAILED(hres))
640         return hres;
641
642     if(push_instr(ctx, OP_val) == -1)
643         return E_OUTOFMEMORY;
644
645     if(stat->step_expr) {
646         hres = compile_expression(ctx, stat->step_expr);
647         if(FAILED(hres))
648             return hres;
649
650         if(push_instr(ctx, OP_val) == -1)
651             return E_OUTOFMEMORY;
652     }else {
653         hres = push_instr_int(ctx, OP_short, 1);
654         if(FAILED(hres))
655             return hres;
656     }
657
658     prev_label = ctx->for_end_label;
659     ctx->for_end_label = alloc_label(ctx);
660     if(ctx->for_end_label == -1)
661         return E_OUTOFMEMORY;
662
663     step_instr = push_instr(ctx, OP_step);
664     if(step_instr == -1)
665         return E_OUTOFMEMORY;
666     instr_ptr(ctx, step_instr)->arg2.bstr = identifier;
667     instr_ptr(ctx, step_instr)->arg1.uint = ctx->for_end_label;
668
669     hres = compile_statement(ctx, stat->body);
670     if(FAILED(hres))
671         return hres;
672
673     instr = push_instr(ctx, OP_incc);
674     if(instr == -1)
675         return E_OUTOFMEMORY;
676     instr_ptr(ctx, instr)->arg1.bstr = identifier;
677
678     hres = push_instr_addr(ctx, OP_jmp, step_instr);
679     if(FAILED(hres))
680         return hres;
681
682     label_set_addr(ctx, ctx->for_end_label);
683     ctx->for_end_label = prev_label;
684
685     return push_instr_uint(ctx, OP_pop, 2);
686 }
687
688 static HRESULT compile_assign_statement(compile_ctx_t *ctx, assign_statement_t *stat, BOOL is_set)
689 {
690     unsigned args_cnt;
691     vbsop_t op;
692     HRESULT hres;
693
694     hres = compile_expression(ctx, stat->value_expr);
695     if(FAILED(hres))
696         return hres;
697
698     if(stat->member_expr->obj_expr) {
699         hres = compile_expression(ctx, stat->member_expr->obj_expr);
700         if(FAILED(hres))
701             return hres;
702
703         op = is_set ? OP_set_member : OP_assign_member;
704     }else {
705         op = is_set ? OP_set_ident : OP_assign_ident;
706     }
707
708     hres = compile_args(ctx, stat->member_expr->args, &args_cnt);
709     if(FAILED(hres))
710         return hres;
711
712     return push_instr_bstr_uint(ctx, op, stat->member_expr->identifier, args_cnt);
713 }
714
715 static BOOL lookup_dim_decls(compile_ctx_t *ctx, const WCHAR *name)
716 {
717     dim_decl_t *dim_decl;
718
719     for(dim_decl = ctx->dim_decls; dim_decl; dim_decl = dim_decl->next) {
720         if(!strcmpiW(dim_decl->name, name))
721             return TRUE;
722     }
723
724     return FALSE;
725 }
726
727 static BOOL lookup_args_name(compile_ctx_t *ctx, const WCHAR *name)
728 {
729     unsigned i;
730
731     for(i = 0; i < ctx->func->arg_cnt; i++) {
732         if(!strcmpiW(ctx->func->args[i].name, name))
733             return TRUE;
734     }
735
736     return FALSE;
737 }
738
739 static HRESULT compile_dim_statement(compile_ctx_t *ctx, dim_statement_t *stat)
740 {
741     dim_decl_t *dim_decl = stat->dim_decls;
742
743     while(1) {
744         if(lookup_dim_decls(ctx, dim_decl->name) || lookup_args_name(ctx, dim_decl->name)
745            || lookup_const_decls(ctx, dim_decl->name, FALSE)) {
746             FIXME("dim %s name redefined\n", debugstr_w(dim_decl->name));
747             return E_FAIL;
748         }
749
750         ctx->func->var_cnt++;
751         if(!dim_decl->next)
752             break;
753         dim_decl = dim_decl->next;
754     }
755
756     dim_decl->next = ctx->dim_decls;
757     ctx->dim_decls = stat->dim_decls;
758     return S_OK;
759 }
760
761 static HRESULT compile_const_statement(compile_ctx_t *ctx, const_statement_t *stat)
762 {
763     const_decl_t *decl, *next_decl = stat->decls;
764
765     do {
766         decl = next_decl;
767
768         if(lookup_const_decls(ctx, decl->name, FALSE) || lookup_args_name(ctx, decl->name)
769                 || lookup_dim_decls(ctx, decl->name)) {
770             FIXME("%s redefined\n", debugstr_w(decl->name));
771             return E_FAIL;
772         }
773
774         if(ctx->func->type == FUNC_GLOBAL) {
775             HRESULT hres;
776
777             hres = compile_expression(ctx, decl->value_expr);
778             if(FAILED(hres))
779                 return hres;
780
781             hres = push_instr_bstr(ctx, OP_const, decl->name);
782             if(FAILED(hres))
783                 return hres;
784         }
785
786         next_decl = decl->next;
787         decl->next = ctx->const_decls;
788         ctx->const_decls = decl;
789     } while(next_decl);
790
791     return S_OK;
792 }
793
794 static HRESULT compile_function_statement(compile_ctx_t *ctx, function_statement_t *stat)
795 {
796     if(ctx->func != &ctx->code->global_code) {
797         FIXME("Function is not in the global code\n");
798         return E_FAIL;
799     }
800
801     stat->func_decl->next = ctx->func_decls;
802     ctx->func_decls = stat->func_decl;
803     return S_OK;
804 }
805
806 static HRESULT compile_exitdo_statement(compile_ctx_t *ctx)
807 {
808     if(ctx->while_end_label == -1) {
809         FIXME("Exit Do outside Do Loop\n");
810         return E_FAIL;
811     }
812
813     return push_instr_addr(ctx, OP_jmp, ctx->while_end_label);
814 }
815
816 static HRESULT compile_exitfor_statement(compile_ctx_t *ctx)
817 {
818     if(ctx->for_end_label == -1) {
819         FIXME("Exit For outside For Loop\n");
820         return E_FAIL;
821     }
822
823     return push_instr_addr(ctx, OP_jmp, ctx->for_end_label);
824 }
825
826 static HRESULT compile_exitsub_statement(compile_ctx_t *ctx)
827 {
828     if(ctx->sub_end_label == -1) {
829         FIXME("Exit Sub outside Sub?\n");
830         return E_FAIL;
831     }
832
833     return push_instr_addr(ctx, OP_jmp, ctx->sub_end_label);
834 }
835
836 static HRESULT compile_exitfunc_statement(compile_ctx_t *ctx)
837 {
838     if(ctx->func_end_label == -1) {
839         FIXME("Exit Function outside Function?\n");
840         return E_FAIL;
841     }
842
843     return push_instr_addr(ctx, OP_jmp, ctx->func_end_label);
844 }
845
846 static HRESULT compile_exitprop_statement(compile_ctx_t *ctx)
847 {
848     if(ctx->prop_end_label == -1) {
849         FIXME("Exit Property outside Property?\n");
850         return E_FAIL;
851     }
852
853     return push_instr_addr(ctx, OP_jmp, ctx->prop_end_label);
854 }
855
856 static HRESULT compile_onerror_statement(compile_ctx_t *ctx, onerror_statement_t *stat)
857 {
858     return push_instr_int(ctx, OP_errmode, stat->resume_next);
859 }
860
861 static HRESULT compile_statement(compile_ctx_t *ctx, statement_t *stat)
862 {
863     HRESULT hres;
864
865     while(stat) {
866         switch(stat->type) {
867         case STAT_ASSIGN:
868             hres = compile_assign_statement(ctx, (assign_statement_t*)stat, FALSE);
869             break;
870         case STAT_CALL:
871             hres = compile_member_expression(ctx, ((call_statement_t*)stat)->expr, FALSE);
872             break;
873         case STAT_CONST:
874             hres = compile_const_statement(ctx, (const_statement_t*)stat);
875             break;
876         case STAT_DIM:
877             hres = compile_dim_statement(ctx, (dim_statement_t*)stat);
878             break;
879         case STAT_DOWHILE:
880         case STAT_DOUNTIL:
881             hres = compile_dowhile_statement(ctx, (while_statement_t*)stat);
882             break;
883         case STAT_EXITDO:
884             hres = compile_exitdo_statement(ctx);
885             break;
886         case STAT_EXITFOR:
887             hres = compile_exitfor_statement(ctx);
888             break;
889         case STAT_EXITFUNC:
890             hres = compile_exitfunc_statement(ctx);
891             break;
892         case STAT_EXITPROP:
893             hres = compile_exitprop_statement(ctx);
894             break;
895         case STAT_EXITSUB:
896             hres = compile_exitsub_statement(ctx);
897             break;
898         case STAT_FORTO:
899             hres = compile_forto_statement(ctx, (forto_statement_t*)stat);
900             break;
901         case STAT_FUNC:
902             hres = compile_function_statement(ctx, (function_statement_t*)stat);
903             break;
904         case STAT_IF:
905             hres = compile_if_statement(ctx, (if_statement_t*)stat);
906             break;
907         case STAT_ONERROR:
908             hres = compile_onerror_statement(ctx, (onerror_statement_t*)stat);
909             break;
910         case STAT_SET:
911             hres = compile_assign_statement(ctx, (assign_statement_t*)stat, TRUE);
912             break;
913         case STAT_STOP:
914             hres = push_instr(ctx, OP_stop) == -1 ? E_OUTOFMEMORY : S_OK;
915             break;
916         case STAT_UNTIL:
917         case STAT_WHILE:
918         case STAT_WHILELOOP:
919             hres = compile_while_statement(ctx, (while_statement_t*)stat);
920             break;
921         default:
922             FIXME("Unimplemented statement type %d\n", stat->type);
923             hres = E_NOTIMPL;
924         }
925
926         if(FAILED(hres))
927             return hres;
928         stat = stat->next;
929     }
930
931     return S_OK;
932 }
933
934 static void resolve_labels(compile_ctx_t *ctx, unsigned off)
935 {
936     instr_t *instr;
937
938     for(instr = ctx->code->instrs+off; instr < ctx->code->instrs+ctx->instr_cnt; instr++) {
939         if(instr_info[instr->op].arg1_type == ARG_ADDR && (instr->arg1.uint & LABEL_FLAG)) {
940             assert((instr->arg1.uint & ~LABEL_FLAG) < ctx->labels_cnt);
941             instr->arg1.uint = ctx->labels[instr->arg1.uint & ~LABEL_FLAG];
942         }
943         assert(instr_info[instr->op].arg2_type != ARG_ADDR);
944     }
945
946     ctx->labels_cnt = 0;
947 }
948
949 static HRESULT compile_func(compile_ctx_t *ctx, statement_t *stat, function_t *func)
950 {
951     HRESULT hres;
952
953     func->code_off = ctx->instr_cnt;
954
955     ctx->while_end_label = -1;
956     ctx->for_end_label = -1;
957     ctx->sub_end_label = -1;
958     ctx->func_end_label = -1;
959     ctx->prop_end_label = -1;
960
961     switch(func->type) {
962     case FUNC_FUNCTION:
963         ctx->func_end_label = alloc_label(ctx);
964         if(ctx->func_end_label == -1)
965             return E_OUTOFMEMORY; /* FIXME ! */
966         break;
967     case FUNC_SUB:
968         ctx->sub_end_label = alloc_label(ctx);
969         if(ctx->sub_end_label == -1)
970             return E_OUTOFMEMORY;
971         break;
972     case FUNC_PROPGET:
973     case FUNC_PROPLET:
974     case FUNC_PROPSET:
975     case FUNC_DEFGET:
976         ctx->prop_end_label = alloc_label(ctx);
977         if(ctx->prop_end_label == -1)
978             return E_OUTOFMEMORY;
979         break;
980     case FUNC_GLOBAL:
981         break;
982     }
983
984     ctx->func = func;
985     ctx->dim_decls = NULL;
986     ctx->const_decls = NULL;
987     hres = compile_statement(ctx, stat);
988     ctx->func = NULL;
989     if(FAILED(hres))
990         return hres;
991
992     assert(ctx->while_end_label == -1);
993     assert(ctx->for_end_label == -1);
994
995     if(ctx->sub_end_label != -1)
996         label_set_addr(ctx, ctx->sub_end_label);
997     if(ctx->func_end_label != -1)
998         label_set_addr(ctx, ctx->func_end_label);
999     if(ctx->prop_end_label != -1)
1000         label_set_addr(ctx, ctx->prop_end_label);
1001
1002     if(push_instr(ctx, OP_ret) == -1)
1003         return E_OUTOFMEMORY;
1004
1005     resolve_labels(ctx, func->code_off);
1006
1007     if(func->var_cnt) {
1008         dim_decl_t *dim_decl;
1009
1010         if(func->type == FUNC_GLOBAL) {
1011             dynamic_var_t *new_var;
1012
1013             func->var_cnt = 0;
1014
1015             for(dim_decl = ctx->dim_decls; dim_decl; dim_decl = dim_decl->next) {
1016                 new_var = compiler_alloc(ctx->code, sizeof(*new_var));
1017                 if(!new_var)
1018                     return E_OUTOFMEMORY;
1019
1020                 new_var->name = compiler_alloc_string(ctx->code, dim_decl->name);
1021                 if(!new_var->name)
1022                     return E_OUTOFMEMORY;
1023
1024                 V_VT(&new_var->v) = VT_EMPTY;
1025                 new_var->is_const = FALSE;
1026
1027                 new_var->next = ctx->global_vars;
1028                 ctx->global_vars = new_var;
1029             }
1030         }else {
1031             unsigned i;
1032
1033             func->vars = compiler_alloc(ctx->code, func->var_cnt * sizeof(var_desc_t));
1034             if(!func->vars)
1035                 return E_OUTOFMEMORY;
1036
1037             for(dim_decl = ctx->dim_decls, i=0; dim_decl; dim_decl = dim_decl->next, i++) {
1038                 func->vars[i].name = compiler_alloc_string(ctx->code, dim_decl->name);
1039                 if(!func->vars[i].name)
1040                     return E_OUTOFMEMORY;
1041             }
1042
1043             assert(i == func->var_cnt);
1044         }
1045     }
1046
1047     return S_OK;
1048 }
1049
1050 static BOOL lookup_funcs_name(compile_ctx_t *ctx, const WCHAR *name)
1051 {
1052     function_t *iter;
1053
1054     for(iter = ctx->funcs; iter; iter = iter->next) {
1055         if(!strcmpiW(iter->name, name))
1056             return TRUE;
1057     }
1058
1059     return FALSE;
1060 }
1061
1062 static HRESULT create_function(compile_ctx_t *ctx, function_decl_t *decl, function_t **ret)
1063 {
1064     function_t *func;
1065     HRESULT hres;
1066
1067     if(lookup_dim_decls(ctx, decl->name) || lookup_funcs_name(ctx, decl->name) || lookup_const_decls(ctx, decl->name, FALSE)) {
1068         FIXME("%s: redefinition\n", debugstr_w(decl->name));
1069         return E_FAIL;
1070     }
1071
1072     func = compiler_alloc(ctx->code, sizeof(*func));
1073     if(!func)
1074         return E_OUTOFMEMORY;
1075
1076     func->name = compiler_alloc_string(ctx->code, decl->name);
1077     if(!func->name)
1078         return E_OUTOFMEMORY;
1079
1080     func->vars = NULL;
1081     func->var_cnt = 0;
1082     func->code_ctx = ctx->code;
1083     func->type = decl->type;
1084     func->is_public = decl->is_public;
1085
1086     func->arg_cnt = 0;
1087     if(decl->args) {
1088         arg_decl_t *arg;
1089         unsigned i;
1090
1091         for(arg = decl->args; arg; arg = arg->next)
1092             func->arg_cnt++;
1093
1094         func->args = compiler_alloc(ctx->code, func->arg_cnt * sizeof(arg_desc_t));
1095         if(!func->args)
1096             return E_OUTOFMEMORY;
1097
1098         for(i = 0, arg = decl->args; arg; arg = arg->next, i++) {
1099             func->args[i].name = compiler_alloc_string(ctx->code, arg->name);
1100             if(!func->args[i].name)
1101                 return E_OUTOFMEMORY;
1102             func->args[i].by_ref = arg->by_ref;
1103         }
1104     }else {
1105         func->args = NULL;
1106     }
1107
1108     hres = compile_func(ctx, decl->body, func);
1109     if(FAILED(hres))
1110         return hres;
1111
1112     *ret = func;
1113     return S_OK;
1114 }
1115
1116 static BOOL lookup_class_name(compile_ctx_t *ctx, const WCHAR *name)
1117 {
1118     class_desc_t *iter;
1119
1120     for(iter = ctx->classes; iter; iter = iter->next) {
1121         if(!strcmpiW(iter->name, name))
1122             return TRUE;
1123     }
1124
1125     return FALSE;
1126 }
1127
1128 static HRESULT create_class_funcprop(compile_ctx_t *ctx, function_decl_t *func_decl, vbdisp_funcprop_desc_t *desc)
1129 {
1130     vbdisp_invoke_type_t invoke_type;
1131     function_decl_t *funcprop_decl;
1132     HRESULT hres;
1133
1134     desc->name = compiler_alloc_string(ctx->code, func_decl->name);
1135     if(!desc->name)
1136         return E_OUTOFMEMORY;
1137
1138     for(funcprop_decl = func_decl; funcprop_decl; funcprop_decl = funcprop_decl->next_prop_func) {
1139         switch(funcprop_decl->type) {
1140         case FUNC_FUNCTION:
1141         case FUNC_SUB:
1142         case FUNC_PROPGET:
1143         case FUNC_DEFGET:
1144             invoke_type = VBDISP_CALLGET;
1145             break;
1146         case FUNC_PROPLET:
1147             invoke_type = VBDISP_LET;
1148             break;
1149         case FUNC_PROPSET:
1150             invoke_type = VBDISP_SET;
1151             break;
1152         default:
1153             assert(0);
1154         }
1155
1156         assert(!desc->entries[invoke_type]);
1157
1158         if(funcprop_decl->is_public)
1159             desc->is_public = TRUE;
1160
1161         hres = create_function(ctx, funcprop_decl, desc->entries+invoke_type);
1162         if(FAILED(hres))
1163             return hres;
1164     }
1165
1166     return S_OK;
1167 }
1168
1169 static BOOL lookup_class_funcs(class_desc_t *class_desc, const WCHAR *name)
1170 {
1171     unsigned i;
1172
1173     for(i=0; i < class_desc->func_cnt; i++) {
1174         if(class_desc->funcs[i].name && !strcmpiW(class_desc->funcs[i].name, name))
1175             return TRUE;
1176     }
1177
1178     return FALSE;
1179 }
1180
1181 static HRESULT compile_class(compile_ctx_t *ctx, class_decl_t *class_decl)
1182 {
1183     function_decl_t *func_decl, *func_prop_decl;
1184     class_prop_decl_t *prop_decl;
1185     class_desc_t *class_desc;
1186     unsigned i;
1187     HRESULT hres;
1188
1189     static const WCHAR class_initializeW[] = {'c','l','a','s','s','_','i','n','i','t','i','a','l','i','z','e',0};
1190     static const WCHAR class_terminateW[] = {'c','l','a','s','s','_','t','e','r','m','i','n','a','t','e',0};
1191
1192     if(lookup_dim_decls(ctx, class_decl->name) || lookup_funcs_name(ctx, class_decl->name)
1193             || lookup_const_decls(ctx, class_decl->name, FALSE) || lookup_class_name(ctx, class_decl->name)) {
1194         FIXME("%s: redefinition\n", debugstr_w(class_decl->name));
1195         return E_FAIL;
1196     }
1197
1198     class_desc = compiler_alloc_zero(ctx->code, sizeof(*class_desc));
1199     if(!class_desc)
1200         return E_OUTOFMEMORY;
1201
1202     class_desc->name = compiler_alloc_string(ctx->code, class_decl->name);
1203     if(!class_desc->name)
1204         return E_OUTOFMEMORY;
1205
1206     class_desc->func_cnt = 1; /* always allocate slot for default getter */
1207
1208     for(func_decl = class_decl->funcs; func_decl; func_decl = func_decl->next) {
1209         for(func_prop_decl = func_decl; func_prop_decl; func_prop_decl = func_prop_decl->next_prop_func) {
1210             if(func_prop_decl->type == FUNC_DEFGET)
1211                 break;
1212         }
1213         if(!func_prop_decl)
1214             class_desc->func_cnt++;
1215     }
1216
1217     class_desc->funcs = compiler_alloc(ctx->code, class_desc->func_cnt*sizeof(*class_desc->funcs));
1218     if(!class_desc->funcs)
1219         return E_OUTOFMEMORY;
1220     memset(class_desc->funcs, 0, class_desc->func_cnt*sizeof(*class_desc->funcs));
1221
1222     for(func_decl = class_decl->funcs, i=1; func_decl; func_decl = func_decl->next, i++) {
1223         for(func_prop_decl = func_decl; func_prop_decl; func_prop_decl = func_prop_decl->next_prop_func) {
1224             if(func_prop_decl->type == FUNC_DEFGET) {
1225                 i--;
1226                 break;
1227             }
1228         }
1229
1230         if(!strcmpiW(class_initializeW, func_decl->name)) {
1231             if(func_decl->type != FUNC_SUB) {
1232                 FIXME("class initializer is not sub\n");
1233                 return E_FAIL;
1234             }
1235
1236             class_desc->class_initialize_id = i;
1237         }else  if(!strcmpiW(class_terminateW, func_decl->name)) {
1238             if(func_decl->type != FUNC_SUB) {
1239                 FIXME("class terminator is not sub\n");
1240                 return E_FAIL;
1241             }
1242
1243             class_desc->class_terminate_id = i;
1244         }
1245
1246         hres = create_class_funcprop(ctx, func_decl, class_desc->funcs + (func_prop_decl ? 0 : i));
1247         if(FAILED(hres))
1248             return hres;
1249     }
1250
1251     for(prop_decl = class_decl->props; prop_decl; prop_decl = prop_decl->next)
1252         class_desc->prop_cnt++;
1253
1254     class_desc->props = compiler_alloc(ctx->code, class_desc->prop_cnt*sizeof(*class_desc->props));
1255     if(!class_desc->props)
1256         return E_OUTOFMEMORY;
1257
1258     for(prop_decl = class_decl->props, i=0; prop_decl; prop_decl = prop_decl->next, i++) {
1259         if(lookup_class_funcs(class_desc, prop_decl->name)) {
1260             FIXME("Property %s redefined\n", debugstr_w(prop_decl->name));
1261             return E_FAIL;
1262         }
1263
1264         class_desc->props[i].name = compiler_alloc_string(ctx->code, prop_decl->name);
1265         if(!class_desc->props[i].name)
1266             return E_OUTOFMEMORY;
1267
1268         class_desc->props[i].is_public = prop_decl->is_public;
1269     }
1270
1271     class_desc->next = ctx->classes;
1272     ctx->classes = class_desc;
1273     return S_OK;
1274 }
1275
1276 static BOOL lookup_script_identifier(script_ctx_t *script, const WCHAR *identifier)
1277 {
1278     class_desc_t *class;
1279     dynamic_var_t *var;
1280     function_t *func;
1281
1282     for(var = script->global_vars; var; var = var->next) {
1283         if(!strcmpiW(var->name, identifier))
1284             return TRUE;
1285     }
1286
1287     for(func = script->global_funcs; func; func = func->next) {
1288         if(!strcmpiW(func->name, identifier))
1289             return TRUE;
1290     }
1291
1292     for(class = script->classes; class; class = class->next) {
1293         if(!strcmpiW(class->name, identifier))
1294             return TRUE;
1295     }
1296
1297     return FALSE;
1298 }
1299
1300 static HRESULT check_script_collisions(compile_ctx_t *ctx, script_ctx_t *script)
1301 {
1302     class_desc_t *class;
1303     dynamic_var_t *var;
1304     function_t *func;
1305
1306     for(var = ctx->global_vars; var; var = var->next) {
1307         if(lookup_script_identifier(script, var->name)) {
1308             FIXME("%s: redefined\n", debugstr_w(var->name));
1309             return E_FAIL;
1310         }
1311     }
1312
1313     for(func = ctx->funcs; func; func = func->next) {
1314         if(lookup_script_identifier(script, func->name)) {
1315             FIXME("%s: redefined\n", debugstr_w(func->name));
1316             return E_FAIL;
1317         }
1318     }
1319
1320     for(class = ctx->classes; class; class = class->next) {
1321         if(lookup_script_identifier(script, class->name)) {
1322             FIXME("%s: redefined\n", debugstr_w(class->name));
1323             return E_FAIL;
1324         }
1325     }
1326
1327     return S_OK;
1328 }
1329
1330 void release_vbscode(vbscode_t *code)
1331 {
1332     unsigned i;
1333
1334     list_remove(&code->entry);
1335
1336     for(i=0; i < code->bstr_cnt; i++)
1337         SysFreeString(code->bstr_pool[i]);
1338
1339     vbsheap_free(&code->heap);
1340
1341     heap_free(code->bstr_pool);
1342     heap_free(code->source);
1343     heap_free(code->instrs);
1344     heap_free(code);
1345 }
1346
1347 static vbscode_t *alloc_vbscode(compile_ctx_t *ctx, const WCHAR *source)
1348 {
1349     vbscode_t *ret;
1350
1351     ret = heap_alloc(sizeof(*ret));
1352     if(!ret)
1353         return NULL;
1354
1355     ret->source = heap_strdupW(source);
1356     if(!ret->source) {
1357         heap_free(ret);
1358         return NULL;
1359     }
1360
1361     ret->instrs = heap_alloc(32*sizeof(instr_t));
1362     if(!ret->instrs) {
1363         release_vbscode(ret);
1364         return NULL;
1365     }
1366
1367     ctx->instr_cnt = 0;
1368     ctx->instr_size = 32;
1369     vbsheap_init(&ret->heap);
1370
1371     ret->option_explicit = ctx->parser.option_explicit;
1372
1373     ret->bstr_pool = NULL;
1374     ret->bstr_pool_size = 0;
1375     ret->bstr_cnt = 0;
1376     ret->global_executed = FALSE;
1377
1378     ret->global_code.type = FUNC_GLOBAL;
1379     ret->global_code.name = NULL;
1380     ret->global_code.code_ctx = ret;
1381     ret->global_code.vars = NULL;
1382     ret->global_code.var_cnt = 0;
1383     ret->global_code.arg_cnt = 0;
1384     ret->global_code.args = NULL;
1385
1386     list_init(&ret->entry);
1387     return ret;
1388 }
1389
1390 static void release_compiler(compile_ctx_t *ctx)
1391 {
1392     parser_release(&ctx->parser);
1393     heap_free(ctx->labels);
1394     if(ctx->code)
1395         release_vbscode(ctx->code);
1396 }
1397
1398 HRESULT compile_script(script_ctx_t *script, const WCHAR *src, vbscode_t **ret)
1399 {
1400     function_t *new_func;
1401     function_decl_t *func_decl;
1402     class_decl_t *class_decl;
1403     compile_ctx_t ctx;
1404     vbscode_t *code;
1405     HRESULT hres;
1406
1407     hres = parse_script(&ctx.parser, src);
1408     if(FAILED(hres))
1409         return hres;
1410
1411     code = ctx.code = alloc_vbscode(&ctx, src);
1412     if(!ctx.code)
1413         return E_OUTOFMEMORY;
1414
1415     ctx.funcs = NULL;
1416     ctx.func_decls = NULL;
1417     ctx.global_vars = NULL;
1418     ctx.dim_decls = NULL;
1419     ctx.classes = NULL;
1420     ctx.labels = NULL;
1421     ctx.global_consts = NULL;
1422     ctx.labels_cnt = ctx.labels_size = 0;
1423
1424     hres = compile_func(&ctx, ctx.parser.stats, &ctx.code->global_code);
1425     if(FAILED(hres)) {
1426         release_compiler(&ctx);
1427         return hres;
1428     }
1429
1430     ctx.global_consts = ctx.const_decls;
1431
1432     for(func_decl = ctx.func_decls; func_decl; func_decl = func_decl->next) {
1433         hres = create_function(&ctx, func_decl, &new_func);
1434         if(FAILED(hres)) {
1435             release_compiler(&ctx);
1436             return hres;
1437         }
1438
1439         new_func->next = ctx.funcs;
1440         ctx.funcs = new_func;
1441     }
1442
1443     for(class_decl = ctx.parser.class_decls; class_decl; class_decl = class_decl->next) {
1444         hres = compile_class(&ctx, class_decl);
1445         if(FAILED(hres)) {
1446             release_compiler(&ctx);
1447             return hres;
1448         }
1449     }
1450
1451     hres = check_script_collisions(&ctx, script);
1452     if(FAILED(hres)) {
1453         release_compiler(&ctx);
1454         return hres;
1455     }
1456
1457     if(ctx.global_vars) {
1458         dynamic_var_t *var;
1459
1460         for(var = ctx.global_vars; var->next; var = var->next);
1461
1462         var->next = script->global_vars;
1463         script->global_vars = ctx.global_vars;
1464     }
1465
1466     if(ctx.funcs) {
1467         for(new_func = ctx.funcs; new_func->next; new_func = new_func->next);
1468
1469         new_func->next = script->global_funcs;
1470         script->global_funcs = ctx.funcs;
1471     }
1472
1473     if(ctx.classes) {
1474         class_desc_t *class = ctx.classes;
1475
1476         while(1) {
1477             class->ctx = script;
1478             if(!class->next)
1479                 break;
1480             class = class->next;
1481         }
1482
1483         class->next = script->classes;
1484         script->classes = ctx.classes;
1485     }
1486
1487     if(TRACE_ON(vbscript_disas))
1488         dump_code(&ctx);
1489
1490     ctx.code = NULL;
1491     release_compiler(&ctx);
1492
1493     list_add_tail(&script->code_list, &code->entry);
1494     *ret = code;
1495     return S_OK;
1496 }