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
23 #include "parser.tab.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(vbscript
);
28 WINE_DECLARE_DEBUG_CHANNEL(vbscript_disas
);
30 typedef struct _statement_ctx_t
{
33 unsigned while_end_label
;
34 unsigned for_end_label
;
35 unsigned with_stack_offset
;
37 struct _statement_ctx_t
*next
;
48 statement_ctx_t
*stat_ctx
;
54 unsigned sub_end_label
;
55 unsigned func_end_label
;
56 unsigned prop_end_label
;
58 dim_decl_t
*dim_decls
;
59 dim_decl_t
*dim_decls_tail
;
61 const_decl_t
*const_decls
;
62 const_decl_t
*global_consts
;
65 function_decl_t
*func_decls
;
68 static HRESULT
compile_expression(compile_ctx_t
*,expression_t
*);
69 static HRESULT
compile_statement(compile_ctx_t
*,statement_ctx_t
*,statement_t
*);
73 instr_arg_type_t arg1_type
;
74 instr_arg_type_t arg2_type
;
76 #define X(n,a,b,c) {#n,b,c},
81 static void dump_instr_arg(instr_arg_type_t type
, instr_arg_t
*arg
)
86 TRACE_(vbscript_disas
)("\t%s", debugstr_w(arg
->str
));
89 TRACE_(vbscript_disas
)("\t%d", arg
->uint
);
93 TRACE_(vbscript_disas
)("\t%u", arg
->uint
);
97 TRACE_(vbscript_disas
)("\t%lf", *arg
->dbl
);
105 static void dump_code(compile_ctx_t
*ctx
)
109 for(instr
= ctx
->code
->instrs
+1; instr
< ctx
->code
->instrs
+ctx
->instr_cnt
; instr
++) {
110 assert(instr
->op
< OP_LAST
);
111 TRACE_(vbscript_disas
)("%d:\t%s", (int)(instr
-ctx
->code
->instrs
), instr_info
[instr
->op
].op_str
);
112 dump_instr_arg(instr_info
[instr
->op
].arg1_type
, &instr
->arg1
);
113 dump_instr_arg(instr_info
[instr
->op
].arg2_type
, &instr
->arg2
);
114 TRACE_(vbscript_disas
)("\n");
118 static inline void *compiler_alloc(vbscode_t
*vbscode
, size_t size
)
120 return heap_pool_alloc(&vbscode
->heap
, size
);
123 static inline void *compiler_alloc_zero(vbscode_t
*vbscode
, size_t size
)
127 ret
= heap_pool_alloc(&vbscode
->heap
, size
);
129 memset(ret
, 0, size
);
133 static WCHAR
*compiler_alloc_string(vbscode_t
*vbscode
, const WCHAR
*str
)
138 size
= (lstrlenW(str
)+1)*sizeof(WCHAR
);
139 ret
= compiler_alloc(vbscode
, size
);
141 memcpy(ret
, str
, size
);
145 static inline instr_t
*instr_ptr(compile_ctx_t
*ctx
, unsigned id
)
147 assert(id
< ctx
->instr_cnt
);
148 return ctx
->code
->instrs
+ id
;
151 static unsigned push_instr(compile_ctx_t
*ctx
, vbsop_t op
)
153 assert(ctx
->instr_size
&& ctx
->instr_size
>= ctx
->instr_cnt
);
155 if(ctx
->instr_size
== ctx
->instr_cnt
) {
158 new_instr
= realloc(ctx
->code
->instrs
, ctx
->instr_size
*2*sizeof(instr_t
));
162 ctx
->code
->instrs
= new_instr
;
163 ctx
->instr_size
*= 2;
166 ctx
->code
->instrs
[ctx
->instr_cnt
].op
= op
;
167 ctx
->code
->instrs
[ctx
->instr_cnt
].loc
= ctx
->loc
;
168 return ctx
->instr_cnt
++;
171 static HRESULT
push_instr_int(compile_ctx_t
*ctx
, vbsop_t op
, LONG arg
)
175 ret
= push_instr(ctx
, op
);
177 return E_OUTOFMEMORY
;
179 instr_ptr(ctx
, ret
)->arg1
.lng
= arg
;
183 static HRESULT
push_instr_uint(compile_ctx_t
*ctx
, vbsop_t op
, unsigned arg
)
187 ret
= push_instr(ctx
, op
);
189 return E_OUTOFMEMORY
;
191 instr_ptr(ctx
, ret
)->arg1
.uint
= arg
;
195 static HRESULT
push_instr_addr(compile_ctx_t
*ctx
, vbsop_t op
, unsigned arg
)
199 ret
= push_instr(ctx
, op
);
201 return E_OUTOFMEMORY
;
203 instr_ptr(ctx
, ret
)->arg1
.uint
= arg
;
207 static HRESULT
push_instr_str(compile_ctx_t
*ctx
, vbsop_t op
, const WCHAR
*arg
)
212 str
= compiler_alloc_string(ctx
->code
, arg
);
214 return E_OUTOFMEMORY
;
216 instr
= push_instr(ctx
, op
);
218 return E_OUTOFMEMORY
;
220 instr_ptr(ctx
, instr
)->arg1
.str
= str
;
224 static HRESULT
push_instr_double(compile_ctx_t
*ctx
, vbsop_t op
, double arg
)
229 d
= compiler_alloc(ctx
->code
, sizeof(double));
231 return E_OUTOFMEMORY
;
233 instr
= push_instr(ctx
, op
);
235 return E_OUTOFMEMORY
;
238 instr_ptr(ctx
, instr
)->arg1
.dbl
= d
;
242 static HRESULT
push_instr_date(compile_ctx_t
*ctx
, vbsop_t op
, DATE arg
)
247 d
= compiler_alloc(ctx
->code
, sizeof(DATE
));
249 return E_OUTOFMEMORY
;
251 instr
= push_instr(ctx
, op
);
253 return E_OUTOFMEMORY
;
256 instr_ptr(ctx
, instr
)->arg1
.date
= d
;
260 static BSTR
alloc_bstr_arg(compile_ctx_t
*ctx
, const WCHAR
*str
)
262 if(!ctx
->code
->bstr_pool_size
) {
263 ctx
->code
->bstr_pool
= malloc(8 * sizeof(BSTR
));
264 if(!ctx
->code
->bstr_pool
)
266 ctx
->code
->bstr_pool_size
= 8;
267 }else if(ctx
->code
->bstr_pool_size
== ctx
->code
->bstr_cnt
) {
270 new_pool
= realloc(ctx
->code
->bstr_pool
, ctx
->code
->bstr_pool_size
*2*sizeof(BSTR
));
274 ctx
->code
->bstr_pool
= new_pool
;
275 ctx
->code
->bstr_pool_size
*= 2;
278 ctx
->code
->bstr_pool
[ctx
->code
->bstr_cnt
] = SysAllocString(str
);
279 if(!ctx
->code
->bstr_pool
[ctx
->code
->bstr_cnt
])
282 return ctx
->code
->bstr_pool
[ctx
->code
->bstr_cnt
++];
285 static HRESULT
push_instr_bstr(compile_ctx_t
*ctx
, vbsop_t op
, const WCHAR
*arg
)
290 bstr
= alloc_bstr_arg(ctx
, arg
);
292 return E_OUTOFMEMORY
;
294 instr
= push_instr(ctx
, op
);
296 return E_OUTOFMEMORY
;
298 instr_ptr(ctx
, instr
)->arg1
.bstr
= bstr
;
302 static HRESULT
push_instr_bstr_uint(compile_ctx_t
*ctx
, vbsop_t op
, const WCHAR
*arg1
, unsigned arg2
)
307 bstr
= alloc_bstr_arg(ctx
, arg1
);
309 return E_OUTOFMEMORY
;
311 instr
= push_instr(ctx
, op
);
313 return E_OUTOFMEMORY
;
315 instr_ptr(ctx
, instr
)->arg1
.bstr
= bstr
;
316 instr_ptr(ctx
, instr
)->arg2
.uint
= arg2
;
320 static HRESULT
push_instr_uint_bstr(compile_ctx_t
*ctx
, vbsop_t op
, unsigned arg1
, const WCHAR
*arg2
)
325 bstr
= alloc_bstr_arg(ctx
, arg2
);
327 return E_OUTOFMEMORY
;
329 instr
= push_instr(ctx
, op
);
331 return E_OUTOFMEMORY
;
333 instr_ptr(ctx
, instr
)->arg1
.uint
= arg1
;
334 instr_ptr(ctx
, instr
)->arg2
.bstr
= bstr
;
338 #define LABEL_FLAG 0x80000000
340 static unsigned alloc_label(compile_ctx_t
*ctx
)
342 if(!ctx
->labels_size
) {
343 ctx
->labels
= malloc(8 * sizeof(*ctx
->labels
));
346 ctx
->labels_size
= 8;
347 }else if(ctx
->labels_size
== ctx
->labels_cnt
) {
348 unsigned *new_labels
;
350 new_labels
= realloc(ctx
->labels
, 2*ctx
->labels_size
*sizeof(*ctx
->labels
));
354 ctx
->labels
= new_labels
;
355 ctx
->labels_size
*= 2;
358 return ctx
->labels_cnt
++ | LABEL_FLAG
;
361 static inline void label_set_addr(compile_ctx_t
*ctx
, unsigned label
)
363 assert(label
& LABEL_FLAG
);
364 ctx
->labels
[label
& ~LABEL_FLAG
] = ctx
->instr_cnt
;
367 static inline unsigned stack_offset(compile_ctx_t
*ctx
)
369 statement_ctx_t
*iter
;
372 for(iter
= ctx
->stat_ctx
; iter
; iter
= iter
->next
)
373 ret
+= iter
->stack_use
;
378 static BOOL
emit_catch_jmp(compile_ctx_t
*ctx
, unsigned stack_off
, unsigned code_off
)
382 code
= push_instr(ctx
, OP_catch
);
386 instr_ptr(ctx
, code
)->arg1
.uint
= code_off
;
387 instr_ptr(ctx
, code
)->arg2
.uint
= stack_off
+ stack_offset(ctx
);
391 static inline BOOL
emit_catch(compile_ctx_t
*ctx
, unsigned off
)
393 return emit_catch_jmp(ctx
, off
, ctx
->instr_cnt
);
396 static HRESULT
compile_error(script_ctx_t
*ctx
, compile_ctx_t
*compiler
, HRESULT error
)
398 if(error
== SCRIPT_E_REPORTED
)
402 ctx
->ei
.scode
= error
;
403 ctx
->ei
.bstrSource
= get_vbscript_string(VBS_COMPILE_ERROR
);
404 map_vbs_exception(&ctx
->ei
);
405 return report_script_error(ctx
, compiler
->code
, compiler
->loc
);
408 static expression_t
*lookup_const_decls(compile_ctx_t
*ctx
, const WCHAR
*name
, BOOL lookup_global
)
412 for(decl
= ctx
->const_decls
; decl
; decl
= decl
->next
) {
413 if(!wcsicmp(decl
->name
, name
))
414 return decl
->value_expr
;
420 for(decl
= ctx
->global_consts
; decl
; decl
= decl
->next
) {
421 if(!wcsicmp(decl
->name
, name
))
422 return decl
->value_expr
;
428 static HRESULT
compile_args(compile_ctx_t
*ctx
, expression_t
*args
, unsigned *ret
)
430 unsigned arg_cnt
= 0;
434 hres
= compile_expression(ctx
, args
);
438 if(args
->type
== EXPR_BRACKETS
&& !push_instr(ctx
, OP_deref
))
439 return E_OUTOFMEMORY
;
449 static HRESULT
compile_member_call_expression(compile_ctx_t
*ctx
, member_expression_t
*expr
,
450 unsigned arg_cnt
, BOOL ret_val
)
454 if(ret_val
&& !arg_cnt
) {
455 expression_t
*const_expr
;
457 const_expr
= lookup_const_decls(ctx
, expr
->identifier
, TRUE
);
459 return compile_expression(ctx
, const_expr
);
463 hres
= compile_expression(ctx
, expr
->obj_expr
);
467 hres
= push_instr_bstr_uint(ctx
, ret_val
? OP_mcall
: OP_mcallv
, expr
->identifier
, arg_cnt
);
469 hres
= push_instr_bstr_uint(ctx
, ret_val
? OP_icall
: OP_icallv
, expr
->identifier
, arg_cnt
);
475 static HRESULT
compile_member_expression(compile_ctx_t
*ctx
, member_expression_t
*expr
)
477 expression_t
*const_expr
;
479 if (expr
->obj_expr
) /* FIXME: we should probably have a dedicated opcode as well */
480 return compile_member_call_expression(ctx
, expr
, 0, TRUE
);
482 const_expr
= lookup_const_decls(ctx
, expr
->identifier
, TRUE
);
484 return compile_expression(ctx
, const_expr
);
486 return push_instr_bstr(ctx
, OP_ident
, expr
->identifier
);
489 static HRESULT
compile_call_expression(compile_ctx_t
*ctx
, call_expression_t
*expr
, BOOL ret_val
)
491 unsigned arg_cnt
= 0;
495 hres
= compile_args(ctx
, expr
->args
, &arg_cnt
);
499 for(call
= expr
->call_expr
; call
->type
== EXPR_BRACKETS
; call
= ((unary_expression_t
*)call
)->subexpr
);
501 if(call
->type
== EXPR_MEMBER
)
502 return compile_member_call_expression(ctx
, (member_expression_t
*)call
, arg_cnt
, ret_val
);
504 hres
= compile_expression(ctx
, call
);
508 return push_instr_uint(ctx
, ret_val
? OP_vcall
: OP_vcallv
, arg_cnt
);
511 static HRESULT
compile_dot_expression(compile_ctx_t
*ctx
)
513 statement_ctx_t
*stat_ctx
;
515 for(stat_ctx
= ctx
->stat_ctx
; stat_ctx
; stat_ctx
= stat_ctx
->next
) {
516 if(!stat_ctx
->with_stack_offset
)
519 return push_instr_uint(ctx
, OP_stack
, stat_ctx
->with_stack_offset
- 1);
522 WARN("dot expression outside with statement\n");
523 return push_instr_uint(ctx
, OP_stack
, ~0);
526 static HRESULT
compile_unary_expression(compile_ctx_t
*ctx
, unary_expression_t
*expr
, vbsop_t op
)
530 hres
= compile_expression(ctx
, expr
->subexpr
);
534 return push_instr(ctx
, op
) ? S_OK
: E_OUTOFMEMORY
;
537 static HRESULT
compile_binary_expression(compile_ctx_t
*ctx
, binary_expression_t
*expr
, vbsop_t op
)
541 hres
= compile_expression(ctx
, expr
->left
);
545 hres
= compile_expression(ctx
, expr
->right
);
549 return push_instr(ctx
, op
) ? S_OK
: E_OUTOFMEMORY
;
552 static HRESULT
compile_expression(compile_ctx_t
*ctx
, expression_t
*expr
)
556 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_add
);
558 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_and
);
560 return push_instr_int(ctx
, OP_bool
, ((bool_expression_t
*)expr
)->value
);
562 return compile_expression(ctx
, ((unary_expression_t
*)expr
)->subexpr
);
564 return compile_call_expression(ctx
, (call_expression_t
*)expr
, TRUE
);
566 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_concat
);
568 return push_instr_date(ctx
, OP_date
, ((date_expression_t
*)expr
)->value
);
570 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_div
);
572 return compile_dot_expression(ctx
);
574 return push_instr_double(ctx
, OP_double
, ((double_expression_t
*)expr
)->value
);
576 return push_instr(ctx
, OP_empty
) ? S_OK
: E_OUTOFMEMORY
;
578 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_equal
);
580 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_eqv
);
582 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_exp
);
584 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_gt
);
586 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_gteq
);
588 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_idiv
);
590 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_is
);
592 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_imp
);
594 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_lt
);
596 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_lteq
);
598 return push_instr(ctx
, OP_me
) ? S_OK
: E_OUTOFMEMORY
;
600 return compile_member_expression(ctx
, (member_expression_t
*)expr
);
602 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_mod
);
604 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_mul
);
606 return compile_unary_expression(ctx
, (unary_expression_t
*)expr
, OP_neg
);
608 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_nequal
);
610 return push_instr_str(ctx
, OP_new
, ((string_expression_t
*)expr
)->value
);
612 return push_instr_int(ctx
, OP_hres
, DISP_E_PARAMNOTFOUND
);
614 return compile_unary_expression(ctx
, (unary_expression_t
*)expr
, OP_not
);
616 return push_instr(ctx
, OP_nothing
) ? S_OK
: E_OUTOFMEMORY
;
618 return push_instr(ctx
, OP_null
) ? S_OK
: E_OUTOFMEMORY
;
620 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_or
);
622 return push_instr_str(ctx
, OP_string
, ((string_expression_t
*)expr
)->value
);
624 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_sub
);
626 return push_instr_int(ctx
, OP_int
, ((int_expression_t
*)expr
)->value
);
628 return compile_binary_expression(ctx
, (binary_expression_t
*)expr
, OP_xor
);
630 FIXME("Unimplemented expression type %d\n", expr
->type
);
637 static HRESULT
compile_if_statement(compile_ctx_t
*ctx
, if_statement_t
*stat
)
639 unsigned cnd_jmp
, endif_label
= 0;
640 elseif_decl_t
*elseif_decl
;
643 hres
= compile_expression(ctx
, stat
->expr
);
647 cnd_jmp
= push_instr(ctx
, OP_jmp_false
);
649 return E_OUTOFMEMORY
;
651 if(!emit_catch(ctx
, 0))
652 return E_OUTOFMEMORY
;
654 hres
= compile_statement(ctx
, NULL
, stat
->if_stat
);
658 if(stat
->else_stat
|| stat
->elseifs
) {
659 endif_label
= alloc_label(ctx
);
661 return E_OUTOFMEMORY
;
663 hres
= push_instr_addr(ctx
, OP_jmp
, endif_label
);
668 for(elseif_decl
= stat
->elseifs
; elseif_decl
; elseif_decl
= elseif_decl
->next
) {
669 instr_ptr(ctx
, cnd_jmp
)->arg1
.uint
= ctx
->instr_cnt
;
671 ctx
->loc
= elseif_decl
->loc
;
673 hres
= compile_expression(ctx
, elseif_decl
->expr
);
677 cnd_jmp
= push_instr(ctx
, OP_jmp_false
);
679 return E_OUTOFMEMORY
;
681 if(!emit_catch(ctx
, 0))
682 return E_OUTOFMEMORY
;
684 hres
= compile_statement(ctx
, NULL
, elseif_decl
->stat
);
688 hres
= push_instr_addr(ctx
, OP_jmp
, endif_label
);
693 instr_ptr(ctx
, cnd_jmp
)->arg1
.uint
= ctx
->instr_cnt
;
695 if(stat
->else_stat
) {
696 hres
= compile_statement(ctx
, NULL
, stat
->else_stat
);
702 label_set_addr(ctx
, endif_label
);
706 static HRESULT
compile_while_statement(compile_ctx_t
*ctx
, while_statement_t
*stat
)
708 statement_ctx_t stat_ctx
= {0}, *loop_ctx
;
713 start_addr
= ctx
->instr_cnt
;
715 hres
= compile_expression(ctx
, stat
->expr
);
719 jmp_end
= push_instr(ctx
, stat
->stat
.type
== STAT_UNTIL
? OP_jmp_true
: OP_jmp_false
);
721 return E_OUTOFMEMORY
;
723 if(!emit_catch(ctx
, 0))
724 return E_OUTOFMEMORY
;
726 if(stat
->stat
.type
== STAT_WHILE
) {
729 if(!(stat_ctx
.while_end_label
= alloc_label(ctx
)))
730 return E_OUTOFMEMORY
;
731 loop_ctx
= &stat_ctx
;
734 hres
= compile_statement(ctx
, loop_ctx
, stat
->body
);
738 hres
= push_instr_addr(ctx
, OP_jmp
, start_addr
);
742 instr_ptr(ctx
, jmp_end
)->arg1
.uint
= ctx
->instr_cnt
;
745 label_set_addr(ctx
, stat_ctx
.while_end_label
);
750 static HRESULT
compile_dowhile_statement(compile_ctx_t
*ctx
, while_statement_t
*stat
)
752 statement_ctx_t loop_ctx
= {0};
757 start_addr
= ctx
->instr_cnt
;
759 if(!(loop_ctx
.while_end_label
= alloc_label(ctx
)))
760 return E_OUTOFMEMORY
;
762 hres
= compile_statement(ctx
, &loop_ctx
, stat
->body
);
766 ctx
->loc
= stat
->stat
.loc
;
768 hres
= compile_expression(ctx
, stat
->expr
);
772 jmp_op
= stat
->stat
.type
== STAT_DOUNTIL
? OP_jmp_false
: OP_jmp_true
;
777 hres
= push_instr_addr(ctx
, jmp_op
, start_addr
);
781 label_set_addr(ctx
, loop_ctx
.while_end_label
);
783 if(!emit_catch(ctx
, 0))
784 return E_OUTOFMEMORY
;
789 static HRESULT
compile_foreach_statement(compile_ctx_t
*ctx
, foreach_statement_t
*stat
)
791 statement_ctx_t loop_ctx
= {1};
795 /* Preserve a place on the stack in case we throw before having proper enum collection. */
796 if(!push_instr(ctx
, OP_empty
))
797 return E_OUTOFMEMORY
;
799 hres
= compile_expression(ctx
, stat
->group_expr
);
803 if(!push_instr(ctx
, OP_newenum
))
804 return E_OUTOFMEMORY
;
806 if(!(loop_ctx
.for_end_label
= alloc_label(ctx
)))
807 return E_OUTOFMEMORY
;
809 hres
= push_instr_uint_bstr(ctx
, OP_enumnext
, loop_ctx
.for_end_label
, stat
->identifier
);
813 if(!emit_catch(ctx
, 1))
814 return E_OUTOFMEMORY
;
816 loop_start
= ctx
->instr_cnt
;
817 hres
= compile_statement(ctx
, &loop_ctx
, stat
->body
);
821 /* We need a separated enumnext here, because we need to jump out of the loop on exception. */
822 ctx
->loc
= stat
->stat
.loc
;
823 hres
= push_instr_uint_bstr(ctx
, OP_enumnext
, loop_ctx
.for_end_label
, stat
->identifier
);
827 hres
= push_instr_addr(ctx
, OP_jmp
, loop_start
);
831 label_set_addr(ctx
, loop_ctx
.for_end_label
);
833 if(!emit_catch(ctx
, 0))
834 return E_OUTOFMEMORY
;
839 static HRESULT
compile_forto_statement(compile_ctx_t
*ctx
, forto_statement_t
*stat
)
841 statement_ctx_t loop_ctx
= {2};
842 unsigned step_instr
, instr
;
846 identifier
= alloc_bstr_arg(ctx
, stat
->identifier
);
848 return E_OUTOFMEMORY
;
850 hres
= compile_expression(ctx
, stat
->from_expr
);
854 /* FIXME: Assign should happen after both expressions evaluation. */
855 instr
= push_instr(ctx
, OP_assign_ident
);
857 return E_OUTOFMEMORY
;
858 instr_ptr(ctx
, instr
)->arg1
.bstr
= identifier
;
859 instr_ptr(ctx
, instr
)->arg2
.uint
= 0;
861 hres
= compile_expression(ctx
, stat
->to_expr
);
865 if(!push_instr(ctx
, OP_val
))
866 return E_OUTOFMEMORY
;
868 if(stat
->step_expr
) {
869 hres
= compile_expression(ctx
, stat
->step_expr
);
873 if(!push_instr(ctx
, OP_val
))
874 return E_OUTOFMEMORY
;
876 hres
= push_instr_int(ctx
, OP_int
, 1);
881 loop_ctx
.for_end_label
= alloc_label(ctx
);
882 if(!loop_ctx
.for_end_label
)
883 return E_OUTOFMEMORY
;
885 step_instr
= push_instr(ctx
, OP_step
);
887 return E_OUTOFMEMORY
;
888 instr_ptr(ctx
, step_instr
)->arg2
.bstr
= identifier
;
889 instr_ptr(ctx
, step_instr
)->arg1
.uint
= loop_ctx
.for_end_label
;
891 if(!emit_catch(ctx
, 2))
892 return E_OUTOFMEMORY
;
894 hres
= compile_statement(ctx
, &loop_ctx
, stat
->body
);
898 /* FIXME: Error handling can't be done compatible with native using OP_incc here. */
899 instr
= push_instr(ctx
, OP_incc
);
901 return E_OUTOFMEMORY
;
902 instr_ptr(ctx
, instr
)->arg1
.bstr
= identifier
;
904 hres
= push_instr_addr(ctx
, OP_jmp
, step_instr
);
908 hres
= push_instr_uint(ctx
, OP_pop
, 2);
912 label_set_addr(ctx
, loop_ctx
.for_end_label
);
914 /* FIXME: reconsider after OP_incc fixup. */
915 if(!emit_catch(ctx
, 0))
916 return E_OUTOFMEMORY
;
921 static HRESULT
compile_with_statement(compile_ctx_t
*ctx
, with_statement_t
*stat
)
923 statement_ctx_t with_ctx
= { 1 };
926 hres
= compile_expression(ctx
, stat
->expr
);
930 if(!emit_catch(ctx
, 1))
931 return E_OUTOFMEMORY
;
933 with_ctx
.with_stack_offset
= stack_offset(ctx
) + 1;
934 hres
= compile_statement(ctx
, &with_ctx
, stat
->body
);
938 return push_instr_uint(ctx
, OP_pop
, 1);
941 static HRESULT
compile_select_statement(compile_ctx_t
*ctx
, select_statement_t
*stat
)
943 unsigned end_label
, case_cnt
= 0, *case_labels
= NULL
, i
;
944 case_clausule_t
*case_iter
;
945 expression_t
*expr_iter
;
948 hres
= compile_expression(ctx
, stat
->expr
);
952 if(!push_instr(ctx
, OP_val
))
953 return E_OUTOFMEMORY
;
955 end_label
= alloc_label(ctx
);
957 return E_OUTOFMEMORY
;
959 if(!emit_catch_jmp(ctx
, 0, end_label
))
960 return E_OUTOFMEMORY
;
962 for(case_iter
= stat
->case_clausules
; case_iter
; case_iter
= case_iter
->next
)
966 case_labels
= malloc(case_cnt
*sizeof(*case_labels
));
968 return E_OUTOFMEMORY
;
971 for(case_iter
= stat
->case_clausules
, i
=0; case_iter
; case_iter
= case_iter
->next
, i
++) {
972 case_labels
[i
] = alloc_label(ctx
);
973 if(!case_labels
[i
]) {
974 hres
= E_OUTOFMEMORY
;
981 for(expr_iter
= case_iter
->expr
; expr_iter
; expr_iter
= expr_iter
->next
) {
982 hres
= compile_expression(ctx
, expr_iter
);
986 hres
= push_instr_addr(ctx
, OP_case
, case_labels
[i
]);
990 if(!emit_catch_jmp(ctx
, 0, case_labels
[i
])) {
991 hres
= E_OUTOFMEMORY
;
1002 hres
= push_instr_uint(ctx
, OP_pop
, 1);
1008 hres
= push_instr_addr(ctx
, OP_jmp
, case_iter
? case_labels
[i
] : end_label
);
1014 for(case_iter
= stat
->case_clausules
, i
=0; case_iter
; case_iter
= case_iter
->next
, i
++) {
1015 label_set_addr(ctx
, case_labels
[i
]);
1016 hres
= compile_statement(ctx
, NULL
, case_iter
->stat
);
1020 if(!case_iter
->next
)
1023 hres
= push_instr_addr(ctx
, OP_jmp
, end_label
);
1032 label_set_addr(ctx
, end_label
);
1036 static HRESULT
compile_assignment(compile_ctx_t
*ctx
, expression_t
*left
, expression_t
*value_expr
, BOOL is_set
)
1038 call_expression_t
*call_expr
= NULL
;
1039 member_expression_t
*member_expr
;
1040 unsigned args_cnt
= 0;
1044 switch(left
->type
) {
1046 member_expr
= (member_expression_t
*)left
;
1049 call_expr
= (call_expression_t
*)left
;
1050 assert(call_expr
->call_expr
->type
== EXPR_MEMBER
);
1051 member_expr
= (member_expression_t
*)call_expr
->call_expr
;
1058 if(member_expr
->obj_expr
) {
1059 hres
= compile_expression(ctx
, member_expr
->obj_expr
);
1063 op
= is_set
? OP_set_member
: OP_assign_member
;
1065 op
= is_set
? OP_set_ident
: OP_assign_ident
;
1068 hres
= compile_expression(ctx
, value_expr
);
1073 hres
= compile_args(ctx
, call_expr
->args
, &args_cnt
);
1078 hres
= push_instr_bstr_uint(ctx
, op
, member_expr
->identifier
, args_cnt
);
1082 if(!emit_catch(ctx
, 0))
1083 return E_OUTOFMEMORY
;
1088 static HRESULT
compile_assign_statement(compile_ctx_t
*ctx
, assign_statement_t
*stat
, BOOL is_set
)
1090 return compile_assignment(ctx
, stat
->left_expr
, stat
->value_expr
, is_set
);
1093 static HRESULT
compile_call_statement(compile_ctx_t
*ctx
, call_statement_t
*stat
)
1097 hres
= compile_call_expression(ctx
, stat
->expr
, FALSE
);
1101 if(!emit_catch(ctx
, 0))
1102 return E_OUTOFMEMORY
;
1107 static BOOL
lookup_dim_decls(compile_ctx_t
*ctx
, const WCHAR
*name
)
1109 dim_decl_t
*dim_decl
;
1111 for(dim_decl
= ctx
->dim_decls
; dim_decl
; dim_decl
= dim_decl
->next
) {
1112 if(!wcsicmp(dim_decl
->name
, name
))
1119 static BOOL
lookup_args_name(compile_ctx_t
*ctx
, const WCHAR
*name
)
1123 for(i
= 0; i
< ctx
->func
->arg_cnt
; i
++) {
1124 if(!wcsicmp(ctx
->func
->args
[i
].name
, name
))
1131 static HRESULT
compile_dim_statement(compile_ctx_t
*ctx
, dim_statement_t
*stat
)
1133 dim_decl_t
*dim_decl
= stat
->dim_decls
;
1136 if(lookup_dim_decls(ctx
, dim_decl
->name
) || lookup_args_name(ctx
, dim_decl
->name
)
1137 || lookup_const_decls(ctx
, dim_decl
->name
, FALSE
)) {
1138 FIXME("dim %s name redefined\n", debugstr_w(dim_decl
->name
));
1142 ctx
->func
->var_cnt
++;
1144 if(dim_decl
->is_array
) {
1145 HRESULT hres
= push_instr_bstr_uint(ctx
, OP_dim
, dim_decl
->name
, ctx
->func
->array_cnt
++);
1149 if(!emit_catch(ctx
, 0))
1150 return E_OUTOFMEMORY
;
1155 dim_decl
= dim_decl
->next
;
1158 if(ctx
->dim_decls_tail
)
1159 ctx
->dim_decls_tail
->next
= stat
->dim_decls
;
1161 ctx
->dim_decls
= stat
->dim_decls
;
1162 ctx
->dim_decls_tail
= dim_decl
;
1166 static HRESULT
compile_redim_statement(compile_ctx_t
*ctx
, redim_statement_t
*stat
)
1168 redim_decl_t
*decl
= stat
->redim_decls
;
1173 hres
= compile_args(ctx
, decl
->dims
, &arg_cnt
);
1177 hres
= push_instr_bstr_uint(ctx
, stat
->preserve
? OP_redim_preserve
: OP_redim
, decl
->identifier
, arg_cnt
);
1181 if(!emit_catch(ctx
, 0))
1182 return E_OUTOFMEMORY
;
1192 static HRESULT
compile_const_statement(compile_ctx_t
*ctx
, const_statement_t
*stat
)
1194 const_decl_t
*decl
, *next_decl
= stat
->decls
;
1199 if(lookup_const_decls(ctx
, decl
->name
, FALSE
) || lookup_args_name(ctx
, decl
->name
)
1200 || lookup_dim_decls(ctx
, decl
->name
)) {
1201 FIXME("%s redefined\n", debugstr_w(decl
->name
));
1205 if(ctx
->func
->type
== FUNC_GLOBAL
) {
1208 hres
= compile_expression(ctx
, decl
->value_expr
);
1212 hres
= push_instr_bstr(ctx
, OP_const
, decl
->name
);
1216 if(!emit_catch(ctx
, 0))
1217 return E_OUTOFMEMORY
;
1220 next_decl
= decl
->next
;
1221 decl
->next
= ctx
->const_decls
;
1222 ctx
->const_decls
= decl
;
1228 static HRESULT
compile_function_statement(compile_ctx_t
*ctx
, function_statement_t
*stat
)
1230 if(ctx
->func
!= &ctx
->code
->main_code
) {
1231 FIXME("Function is not in the global code\n");
1235 stat
->func_decl
->next
= ctx
->func_decls
;
1236 ctx
->func_decls
= stat
->func_decl
;
1240 static HRESULT
compile_exitdo_statement(compile_ctx_t
*ctx
)
1242 statement_ctx_t
*iter
;
1243 unsigned pop_cnt
= 0;
1245 for(iter
= ctx
->stat_ctx
; iter
; iter
= iter
->next
) {
1246 pop_cnt
+= iter
->stack_use
;
1247 if(iter
->while_end_label
)
1251 FIXME("Exit Do outside Do Loop\n");
1258 hres
= push_instr_uint(ctx
, OP_pop
, pop_cnt
);
1263 return push_instr_addr(ctx
, OP_jmp
, iter
->while_end_label
);
1266 static HRESULT
compile_exitfor_statement(compile_ctx_t
*ctx
)
1268 statement_ctx_t
*iter
;
1269 unsigned pop_cnt
= 0;
1271 for(iter
= ctx
->stat_ctx
; iter
; iter
= iter
->next
) {
1272 pop_cnt
+= iter
->stack_use
;
1273 if(iter
->for_end_label
)
1277 FIXME("Exit For outside For loop\n");
1284 hres
= push_instr_uint(ctx
, OP_pop
, pop_cnt
);
1289 return push_instr_addr(ctx
, OP_jmp
, iter
->for_end_label
);
1292 static HRESULT
exit_label(compile_ctx_t
*ctx
, unsigned jmp_label
)
1294 unsigned pop_cnt
= stack_offset(ctx
);
1299 hres
= push_instr_uint(ctx
, OP_pop
, pop_cnt
);
1304 return push_instr_addr(ctx
, OP_jmp
, jmp_label
);
1307 static HRESULT
compile_exitsub_statement(compile_ctx_t
*ctx
)
1309 if(!ctx
->sub_end_label
) {
1310 FIXME("Exit Sub outside Sub?\n");
1314 return exit_label(ctx
, ctx
->sub_end_label
);
1317 static HRESULT
compile_exitfunc_statement(compile_ctx_t
*ctx
)
1319 if(!ctx
->func_end_label
) {
1320 FIXME("Exit Function outside Function?\n");
1324 return exit_label(ctx
, ctx
->func_end_label
);
1327 static HRESULT
compile_exitprop_statement(compile_ctx_t
*ctx
)
1329 if(!ctx
->prop_end_label
) {
1330 FIXME("Exit Property outside Property?\n");
1334 return exit_label(ctx
, ctx
->prop_end_label
);
1337 static HRESULT
compile_onerror_statement(compile_ctx_t
*ctx
, onerror_statement_t
*stat
)
1339 return push_instr_int(ctx
, OP_errmode
, stat
->resume_next
);
1342 static HRESULT
compile_retval_statement(compile_ctx_t
*ctx
, retval_statement_t
*stat
)
1346 hres
= compile_expression(ctx
, stat
->expr
);
1350 hres
= push_instr(ctx
, OP_retval
);
1357 static HRESULT
compile_statement(compile_ctx_t
*ctx
, statement_ctx_t
*stat_ctx
, statement_t
*stat
)
1362 stat_ctx
->next
= ctx
->stat_ctx
;
1363 ctx
->stat_ctx
= stat_ctx
;
1367 ctx
->loc
= stat
->loc
;
1369 switch(stat
->type
) {
1371 hres
= compile_assign_statement(ctx
, (assign_statement_t
*)stat
, FALSE
);
1374 hres
= compile_call_statement(ctx
, (call_statement_t
*)stat
);
1377 hres
= compile_const_statement(ctx
, (const_statement_t
*)stat
);
1380 hres
= compile_dim_statement(ctx
, (dim_statement_t
*)stat
);
1384 hres
= compile_dowhile_statement(ctx
, (while_statement_t
*)stat
);
1387 hres
= compile_exitdo_statement(ctx
);
1390 hres
= compile_exitfor_statement(ctx
);
1393 hres
= compile_exitfunc_statement(ctx
);
1396 hres
= compile_exitprop_statement(ctx
);
1399 hres
= compile_exitsub_statement(ctx
);
1402 hres
= compile_foreach_statement(ctx
, (foreach_statement_t
*)stat
);
1405 hres
= compile_forto_statement(ctx
, (forto_statement_t
*)stat
);
1408 hres
= compile_function_statement(ctx
, (function_statement_t
*)stat
);
1411 hres
= compile_if_statement(ctx
, (if_statement_t
*)stat
);
1414 hres
= compile_onerror_statement(ctx
, (onerror_statement_t
*)stat
);
1417 hres
= compile_redim_statement(ctx
, (redim_statement_t
*)stat
);
1420 hres
= compile_select_statement(ctx
, (select_statement_t
*)stat
);
1423 hres
= compile_assign_statement(ctx
, (assign_statement_t
*)stat
, TRUE
);
1426 hres
= push_instr(ctx
, OP_stop
) ? S_OK
: E_OUTOFMEMORY
;
1430 case STAT_WHILELOOP
:
1431 hres
= compile_while_statement(ctx
, (while_statement_t
*)stat
);
1434 hres
= compile_with_statement(ctx
, (with_statement_t
*)stat
);
1437 hres
= compile_retval_statement(ctx
, (retval_statement_t
*)stat
);
1440 FIXME("Unimplemented statement type %d\n", stat
->type
);
1450 assert(ctx
->stat_ctx
== stat_ctx
);
1451 ctx
->stat_ctx
= stat_ctx
->next
;
1457 static void resolve_labels(compile_ctx_t
*ctx
, unsigned off
)
1461 for(instr
= ctx
->code
->instrs
+off
; instr
< ctx
->code
->instrs
+ctx
->instr_cnt
; instr
++) {
1462 if(instr_info
[instr
->op
].arg1_type
== ARG_ADDR
&& (instr
->arg1
.uint
& LABEL_FLAG
)) {
1463 assert((instr
->arg1
.uint
& ~LABEL_FLAG
) < ctx
->labels_cnt
);
1464 instr
->arg1
.uint
= ctx
->labels
[instr
->arg1
.uint
& ~LABEL_FLAG
];
1466 assert(instr_info
[instr
->op
].arg2_type
!= ARG_ADDR
);
1469 ctx
->labels_cnt
= 0;
1472 static HRESULT
fill_array_desc(compile_ctx_t
*ctx
, dim_decl_t
*dim_decl
, array_desc_t
*array_desc
)
1474 unsigned dim_cnt
= 0, i
;
1477 for(iter
= dim_decl
->dims
; iter
; iter
= iter
->next
)
1480 array_desc
->bounds
= compiler_alloc(ctx
->code
, dim_cnt
* sizeof(SAFEARRAYBOUND
));
1481 if(!array_desc
->bounds
)
1482 return E_OUTOFMEMORY
;
1484 array_desc
->dim_cnt
= dim_cnt
;
1486 for(iter
= dim_decl
->dims
, i
=0; iter
; iter
= iter
->next
, i
++) {
1487 array_desc
->bounds
[i
].cElements
= iter
->val
+1;
1488 array_desc
->bounds
[i
].lLbound
= 0;
1494 static HRESULT
compile_func(compile_ctx_t
*ctx
, statement_t
*stat
, function_t
*func
)
1498 func
->code_off
= ctx
->instr_cnt
;
1500 ctx
->sub_end_label
= 0;
1501 ctx
->func_end_label
= 0;
1502 ctx
->prop_end_label
= 0;
1504 switch(func
->type
) {
1506 ctx
->func_end_label
= alloc_label(ctx
);
1507 if(!ctx
->func_end_label
)
1508 return E_OUTOFMEMORY
;
1511 ctx
->sub_end_label
= alloc_label(ctx
);
1512 if(!ctx
->sub_end_label
)
1513 return E_OUTOFMEMORY
;
1518 ctx
->prop_end_label
= alloc_label(ctx
);
1519 if(!ctx
->prop_end_label
)
1520 return E_OUTOFMEMORY
;
1527 ctx
->dim_decls
= ctx
->dim_decls_tail
= NULL
;
1528 ctx
->const_decls
= NULL
;
1529 hres
= compile_statement(ctx
, NULL
, stat
);
1534 if(ctx
->sub_end_label
)
1535 label_set_addr(ctx
, ctx
->sub_end_label
);
1536 if(ctx
->func_end_label
)
1537 label_set_addr(ctx
, ctx
->func_end_label
);
1538 if(ctx
->prop_end_label
)
1539 label_set_addr(ctx
, ctx
->prop_end_label
);
1541 if(!push_instr(ctx
, OP_ret
))
1542 return E_OUTOFMEMORY
;
1544 resolve_labels(ctx
, func
->code_off
);
1547 dim_decl_t
*dim_decl
;
1550 func
->vars
= compiler_alloc(ctx
->code
, func
->var_cnt
* sizeof(var_desc_t
));
1552 return E_OUTOFMEMORY
;
1554 for(dim_decl
= ctx
->dim_decls
, i
=0; dim_decl
; dim_decl
= dim_decl
->next
, i
++) {
1555 func
->vars
[i
].name
= compiler_alloc_string(ctx
->code
, dim_decl
->name
);
1556 if(!func
->vars
[i
].name
)
1557 return E_OUTOFMEMORY
;
1560 assert(i
== func
->var_cnt
);
1563 if(func
->array_cnt
) {
1564 unsigned array_id
= 0;
1565 dim_decl_t
*dim_decl
;
1567 func
->array_descs
= compiler_alloc(ctx
->code
, func
->array_cnt
* sizeof(array_desc_t
));
1568 if(!func
->array_descs
)
1569 return E_OUTOFMEMORY
;
1571 for(dim_decl
= ctx
->dim_decls
; dim_decl
; dim_decl
= dim_decl
->next
) {
1572 if(dim_decl
->is_array
) {
1573 hres
= fill_array_desc(ctx
, dim_decl
, func
->array_descs
+ array_id
++);
1579 assert(array_id
== func
->array_cnt
);
1585 static BOOL
lookup_funcs_name(compile_ctx_t
*ctx
, const WCHAR
*name
)
1589 for(iter
= ctx
->code
->funcs
; iter
; iter
= iter
->next
) {
1590 if(!wcsicmp(iter
->name
, name
))
1597 static HRESULT
create_function(compile_ctx_t
*ctx
, function_decl_t
*decl
, function_t
**ret
)
1602 if(lookup_dim_decls(ctx
, decl
->name
) || lookup_const_decls(ctx
, decl
->name
, FALSE
)) {
1603 FIXME("%s: redefinition\n", debugstr_w(decl
->name
));
1607 func
= compiler_alloc(ctx
->code
, sizeof(*func
));
1609 return E_OUTOFMEMORY
;
1611 func
->name
= compiler_alloc_string(ctx
->code
, decl
->name
);
1613 return E_OUTOFMEMORY
;
1617 func
->array_cnt
= 0;
1618 func
->code_ctx
= ctx
->code
;
1619 func
->type
= decl
->type
;
1620 func
->is_public
= decl
->is_public
;
1627 for(arg
= decl
->args
; arg
; arg
= arg
->next
)
1630 func
->args
= compiler_alloc(ctx
->code
, func
->arg_cnt
* sizeof(arg_desc_t
));
1632 return E_OUTOFMEMORY
;
1634 for(i
= 0, arg
= decl
->args
; arg
; arg
= arg
->next
, i
++) {
1635 func
->args
[i
].name
= compiler_alloc_string(ctx
->code
, arg
->name
);
1636 if(!func
->args
[i
].name
)
1637 return E_OUTOFMEMORY
;
1638 func
->args
[i
].by_ref
= arg
->by_ref
;
1644 hres
= compile_func(ctx
, decl
->body
, func
);
1652 static BOOL
lookup_class_name(compile_ctx_t
*ctx
, const WCHAR
*name
)
1656 for(iter
= ctx
->code
->classes
; iter
; iter
= iter
->next
) {
1657 if(!wcsicmp(iter
->name
, name
))
1664 static HRESULT
create_class_funcprop(compile_ctx_t
*ctx
, function_decl_t
*func_decl
, vbdisp_funcprop_desc_t
*desc
)
1666 vbdisp_invoke_type_t invoke_type
;
1667 function_decl_t
*funcprop_decl
;
1670 desc
->name
= compiler_alloc_string(ctx
->code
, func_decl
->name
);
1672 return E_OUTOFMEMORY
;
1674 for(funcprop_decl
= func_decl
; funcprop_decl
; funcprop_decl
= funcprop_decl
->next_prop_func
) {
1675 switch(funcprop_decl
->type
) {
1679 invoke_type
= VBDISP_CALLGET
;
1682 invoke_type
= VBDISP_LET
;
1685 invoke_type
= VBDISP_SET
;
1687 DEFAULT_UNREACHABLE
;
1690 assert(!desc
->entries
[invoke_type
]);
1692 if(funcprop_decl
->is_public
)
1693 desc
->is_public
= TRUE
;
1695 hres
= create_function(ctx
, funcprop_decl
, desc
->entries
+invoke_type
);
1703 static BOOL
lookup_class_funcs(class_desc_t
*class_desc
, const WCHAR
*name
)
1707 for(i
=0; i
< class_desc
->func_cnt
; i
++) {
1708 if(class_desc
->funcs
[i
].name
&& !wcsicmp(class_desc
->funcs
[i
].name
, name
))
1715 static HRESULT
compile_class(compile_ctx_t
*ctx
, class_decl_t
*class_decl
)
1717 function_decl_t
*func_decl
, *func_prop_decl
;
1718 BOOL is_default
, have_default
= FALSE
;
1719 class_desc_t
*class_desc
;
1720 dim_decl_t
*prop_decl
;
1724 if(lookup_dim_decls(ctx
, class_decl
->name
) || lookup_funcs_name(ctx
, class_decl
->name
)
1725 || lookup_const_decls(ctx
, class_decl
->name
, FALSE
) || lookup_class_name(ctx
, class_decl
->name
)) {
1726 FIXME("%s: redefinition\n", debugstr_w(class_decl
->name
));
1730 class_desc
= compiler_alloc_zero(ctx
->code
, sizeof(*class_desc
));
1732 return E_OUTOFMEMORY
;
1734 class_desc
->name
= compiler_alloc_string(ctx
->code
, class_decl
->name
);
1735 if(!class_desc
->name
)
1736 return E_OUTOFMEMORY
;
1738 class_desc
->func_cnt
= 1; /* always allocate slot for default getter or method */
1740 for(func_decl
= class_decl
->funcs
; func_decl
; func_decl
= func_decl
->next
) {
1742 for(func_prop_decl
= func_decl
; func_prop_decl
; func_prop_decl
= func_prop_decl
->next_prop_func
) {
1743 if(func_prop_decl
->is_default
) {
1745 FIXME("multiple default getters or methods\n");
1748 is_default
= have_default
= TRUE
;
1753 class_desc
->func_cnt
++;
1756 class_desc
->funcs
= compiler_alloc(ctx
->code
, class_desc
->func_cnt
*sizeof(*class_desc
->funcs
));
1757 if(!class_desc
->funcs
)
1758 return E_OUTOFMEMORY
;
1759 memset(class_desc
->funcs
, 0, class_desc
->func_cnt
*sizeof(*class_desc
->funcs
));
1761 for(func_decl
= class_decl
->funcs
, i
=1; func_decl
; func_decl
= func_decl
->next
, i
++) {
1762 for(func_prop_decl
= func_decl
; func_prop_decl
; func_prop_decl
= func_prop_decl
->next_prop_func
) {
1763 if(func_prop_decl
->is_default
) {
1769 if(!wcsicmp(L
"class_initialize", func_decl
->name
)) {
1770 if(func_decl
->type
!= FUNC_SUB
) {
1771 FIXME("class initializer is not sub\n");
1775 class_desc
->class_initialize_id
= i
;
1776 }else if(!wcsicmp(L
"class_terminate", func_decl
->name
)) {
1777 if(func_decl
->type
!= FUNC_SUB
) {
1778 FIXME("class terminator is not sub\n");
1782 class_desc
->class_terminate_id
= i
;
1785 hres
= create_class_funcprop(ctx
, func_decl
, class_desc
->funcs
+ (func_prop_decl
? 0 : i
));
1790 for(prop_decl
= class_decl
->props
; prop_decl
; prop_decl
= prop_decl
->next
)
1791 class_desc
->prop_cnt
++;
1793 class_desc
->props
= compiler_alloc(ctx
->code
, class_desc
->prop_cnt
*sizeof(*class_desc
->props
));
1794 if(!class_desc
->props
)
1795 return E_OUTOFMEMORY
;
1797 for(prop_decl
= class_decl
->props
, i
=0; prop_decl
; prop_decl
= prop_decl
->next
, i
++) {
1798 if(lookup_class_funcs(class_desc
, prop_decl
->name
)) {
1799 FIXME("Property %s redefined\n", debugstr_w(prop_decl
->name
));
1803 class_desc
->props
[i
].name
= compiler_alloc_string(ctx
->code
, prop_decl
->name
);
1804 if(!class_desc
->props
[i
].name
)
1805 return E_OUTOFMEMORY
;
1807 class_desc
->props
[i
].is_public
= prop_decl
->is_public
;
1808 class_desc
->props
[i
].is_array
= prop_decl
->is_array
;
1810 if(prop_decl
->is_array
)
1811 class_desc
->array_cnt
++;
1814 if(class_desc
->array_cnt
) {
1815 class_desc
->array_descs
= compiler_alloc(ctx
->code
, class_desc
->array_cnt
*sizeof(*class_desc
->array_descs
));
1816 if(!class_desc
->array_descs
)
1817 return E_OUTOFMEMORY
;
1819 for(prop_decl
= class_decl
->props
, i
=0; prop_decl
; prop_decl
= prop_decl
->next
) {
1820 if(prop_decl
->is_array
) {
1821 hres
= fill_array_desc(ctx
, prop_decl
, class_desc
->array_descs
+ i
++);
1828 class_desc
->next
= ctx
->code
->classes
;
1829 ctx
->code
->classes
= class_desc
;
1833 static BOOL
lookup_script_identifier(compile_ctx_t
*ctx
, script_ctx_t
*script
, const WCHAR
*identifier
)
1835 ScriptDisp
*contexts
[] = {
1836 ctx
->code
->named_item
? ctx
->code
->named_item
->script_obj
: NULL
,
1839 class_desc_t
*class;
1843 for(c
= 0; c
< ARRAY_SIZE(contexts
); c
++) {
1844 if(!contexts
[c
]) continue;
1846 for(i
= 0; i
< contexts
[c
]->global_vars_cnt
; i
++) {
1847 if(!wcsicmp(contexts
[c
]->global_vars
[i
]->name
, identifier
))
1851 for(i
= 0; i
< contexts
[c
]->global_funcs_cnt
; i
++) {
1852 if(!wcsicmp(contexts
[c
]->global_funcs
[i
]->name
, identifier
))
1856 for(class = contexts
[c
]->classes
; class; class = class->next
) {
1857 if(!wcsicmp(class->name
, identifier
))
1862 LIST_FOR_EACH_ENTRY(code
, &script
->code_list
, vbscode_t
, entry
) {
1863 unsigned var_cnt
= code
->main_code
.var_cnt
;
1864 var_desc_t
*vars
= code
->main_code
.vars
;
1867 if(!code
->pending_exec
|| (code
->named_item
&& code
->named_item
!= ctx
->code
->named_item
))
1870 for(i
= 0; i
< var_cnt
; i
++) {
1871 if(!wcsicmp(vars
[i
].name
, identifier
))
1875 for(func
= code
->funcs
; func
; func
= func
->next
) {
1876 if(!wcsicmp(func
->name
, identifier
))
1880 for(class = code
->classes
; class; class = class->next
) {
1881 if(!wcsicmp(class->name
, identifier
))
1889 static HRESULT
check_script_collisions(compile_ctx_t
*ctx
, script_ctx_t
*script
)
1891 unsigned i
, var_cnt
= ctx
->code
->main_code
.var_cnt
;
1892 var_desc_t
*vars
= ctx
->code
->main_code
.vars
;
1893 class_desc_t
*class;
1895 for(i
= 0; i
< var_cnt
; i
++) {
1896 if(lookup_script_identifier(ctx
, script
, vars
[i
].name
)) {
1897 FIXME("%s: redefined\n", debugstr_w(vars
[i
].name
));
1902 for(class = ctx
->code
->classes
; class; class = class->next
) {
1903 if(lookup_script_identifier(ctx
, script
, class->name
)) {
1904 FIXME("%s: redefined\n", debugstr_w(class->name
));
1912 void release_vbscode(vbscode_t
*code
)
1919 for(i
=0; i
< code
->bstr_cnt
; i
++)
1920 SysFreeString(code
->bstr_pool
[i
]);
1922 if(code
->named_item
)
1923 release_named_item(code
->named_item
);
1924 heap_pool_free(&code
->heap
);
1926 free(code
->bstr_pool
);
1932 static vbscode_t
*alloc_vbscode(compile_ctx_t
*ctx
, const WCHAR
*source
, DWORD_PTR cookie
, unsigned start_line
)
1937 len
= source
? lstrlenW(source
) : 0;
1941 ret
= calloc(1, sizeof(*ret
));
1945 ret
->source
= malloc((len
+ 1) * sizeof(WCHAR
));
1951 memcpy(ret
->source
, source
, len
* sizeof(WCHAR
));
1952 ret
->source
[len
] = 0;
1955 ret
->cookie
= cookie
;
1956 ret
->start_line
= start_line
;
1958 ret
->instrs
= malloc(32*sizeof(instr_t
));
1960 release_vbscode(ret
);
1965 ctx
->instr_size
= 32;
1966 heap_pool_init(&ret
->heap
);
1968 ret
->main_code
.type
= FUNC_GLOBAL
;
1969 ret
->main_code
.code_ctx
= ret
;
1971 list_init(&ret
->entry
);
1975 static void release_compiler(compile_ctx_t
*ctx
)
1977 parser_release(&ctx
->parser
);
1980 release_vbscode(ctx
->code
);
1983 HRESULT
compile_script(script_ctx_t
*script
, const WCHAR
*src
, const WCHAR
*item_name
, const WCHAR
*delimiter
,
1984 DWORD_PTR cookie
, unsigned start_line
, DWORD flags
, vbscode_t
**ret
)
1986 function_decl_t
*func_decl
;
1987 named_item_t
*item
= NULL
;
1988 class_decl_t
*class_decl
;
1989 function_t
*new_func
;
1995 item
= lookup_named_item(script
, item_name
, 0);
1997 WARN("Unknown context %s\n", debugstr_w(item_name
));
1998 return E_INVALIDARG
;
2000 if(!item
->script_obj
) item
= NULL
;
2003 memset(&ctx
, 0, sizeof(ctx
));
2004 code
= ctx
.code
= alloc_vbscode(&ctx
, src
, cookie
, start_line
);
2006 return E_OUTOFMEMORY
;
2008 code
->named_item
= item
;
2012 ctx
.parser
.lcid
= script
->lcid
;
2013 hres
= parse_script(&ctx
.parser
, code
->source
, delimiter
, flags
);
2015 if(ctx
.parser
.error_loc
!= -1)
2016 ctx
.loc
= ctx
.parser
.error_loc
;
2017 hres
= compile_error(script
, &ctx
, hres
);
2018 release_vbscode(code
);
2022 hres
= compile_func(&ctx
, ctx
.parser
.stats
, &ctx
.code
->main_code
);
2024 hres
= compile_error(script
, &ctx
, hres
);
2025 release_compiler(&ctx
);
2029 code
->option_explicit
= ctx
.parser
.option_explicit
;
2030 ctx
.global_consts
= ctx
.const_decls
;
2031 code
->option_explicit
= ctx
.parser
.option_explicit
;
2034 for(func_decl
= ctx
.func_decls
; func_decl
; func_decl
= func_decl
->next
) {
2035 hres
= create_function(&ctx
, func_decl
, &new_func
);
2037 hres
= compile_error(script
, &ctx
, hres
);
2038 release_compiler(&ctx
);
2042 new_func
->next
= ctx
.code
->funcs
;
2043 ctx
.code
->funcs
= new_func
;
2046 for(class_decl
= ctx
.parser
.class_decls
; class_decl
; class_decl
= class_decl
->next
) {
2047 hres
= compile_class(&ctx
, class_decl
);
2049 hres
= compile_error(script
, &ctx
, hres
);
2050 release_compiler(&ctx
);
2055 hres
= check_script_collisions(&ctx
, script
);
2057 hres
= compile_error(script
, &ctx
, hres
);
2058 release_compiler(&ctx
);
2062 code
->is_persistent
= (flags
& SCRIPTTEXT_ISPERSISTENT
) != 0;
2064 if(TRACE_ON(vbscript_disas
))
2068 release_compiler(&ctx
);
2070 list_add_tail(&script
->code_list
, &code
->entry
);
2075 HRESULT
compile_procedure(script_ctx_t
*script
, const WCHAR
*src
, const WCHAR
*item_name
, const WCHAR
*delimiter
,
2076 DWORD_PTR cookie
, unsigned start_line
, DWORD flags
, class_desc_t
**ret
)
2082 hres
= compile_script(script
, src
, item_name
, delimiter
, cookie
, start_line
,
2083 flags
& ~SCRIPTTEXT_ISPERSISTENT
, &code
);
2087 if(!(desc
= compiler_alloc_zero(code
, sizeof(*desc
))))
2088 return E_OUTOFMEMORY
;
2089 if(!(desc
->funcs
= compiler_alloc_zero(code
, sizeof(*desc
->funcs
))))
2090 return E_OUTOFMEMORY
;
2094 desc
->funcs
->entries
[VBDISP_CALLGET
] = &code
->main_code
;