2 * Copyright 2008 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 typedef struct _source_elements_t source_elements_t;
20 typedef struct _function_expression_t function_expression_t;
21 typedef struct _expression_t expression_t;
23 typedef struct _function_declaration_t {
24 function_expression_t *expr;
26 struct _function_declaration_t *next;
27 } function_declaration_t;
29 typedef struct _var_list_t {
30 const WCHAR *identifier;
32 struct _var_list_t *next;
35 typedef struct _func_stack {
36 function_declaration_t *func_head;
37 function_declaration_t *func_tail;
41 struct _func_stack *next;
48 X(bool, 1, ARG_INT, 0) \
50 X(call, 1, ARG_UINT, ARG_UINT) \
51 X(call_member,1, ARG_UINT, ARG_UINT) \
54 X(double, 1, ARG_SBL, 0) \
59 X(ident, 1, ARG_BSTR, 0) \
60 X(identid, 1, ARG_BSTR, ARG_INT) \
62 X(int, 1, ARG_INT, 0) \
63 X(jmp, 0, ARG_ADDR, 0) \
64 X(jmp_nz, 0, ARG_ADDR, 0) \
65 X(jmp_z, 0, ARG_ADDR, 0) \
68 X(member, 1, ARG_BSTR, 0) \
69 X(memberid, 1, ARG_UINT, 0) \
76 X(new, 1, ARG_INT, 0) \
80 X(postinc, 1, ARG_INT, 0) \
81 X(preinc, 1, ARG_INT, 0) \
82 X(regexp, 1, ARG_STR, ARG_INT) \
83 X(str, 1, ARG_STR, 0) \
85 X(throw, 0, ARG_UINT, 0) \
87 X(tree, 1, ARG_EXPR, 0) \
95 #define X(x,a,b,c) OP_##x,
130 unsigned bstr_pool_size;
134 void release_bytecode(bytecode_t*);
136 typedef struct _compiler_ctx_t compiler_ctx_t;
138 void release_compiler(compiler_ctx_t*);
140 typedef struct _parser_ctx_t {
147 script_ctx_t *script;
148 source_elements_t *source;
156 func_stack_t *func_stack;
159 compiler_ctx_t *compiler;
161 struct _parser_ctx_t *next;
164 HRESULT script_parse(script_ctx_t*,const WCHAR*,const WCHAR*,parser_ctx_t**) DECLSPEC_HIDDEN;
165 void parser_release(parser_ctx_t*) DECLSPEC_HIDDEN;
167 int parser_lex(void*,parser_ctx_t*) DECLSPEC_HIDDEN;
169 static inline void parser_addref(parser_ctx_t *ctx)
174 static inline void *parser_alloc(parser_ctx_t *ctx, DWORD size)
176 return jsheap_alloc(&ctx->heap, size);
179 static inline void *parser_alloc_tmp(parser_ctx_t *ctx, DWORD size)
181 return jsheap_alloc(&ctx->script->tmp_heap, size);
184 typedef struct _scope_chain_t {
187 struct _scope_chain_t *next;
190 HRESULT scope_push(scope_chain_t*,jsdisp_t*,scope_chain_t**) DECLSPEC_HIDDEN;
191 void scope_release(scope_chain_t*) DECLSPEC_HIDDEN;
193 static inline void scope_addref(scope_chain_t *scope)
201 parser_ctx_t *parser;
202 scope_chain_t *scope_chain;
215 static inline void exec_addref(exec_ctx_t *ctx)
220 void exec_release(exec_ctx_t*) DECLSPEC_HIDDEN;
221 HRESULT create_exec_ctx(script_ctx_t*,IDispatch*,jsdisp_t*,scope_chain_t*,BOOL,exec_ctx_t**) DECLSPEC_HIDDEN;
222 HRESULT exec_source(exec_ctx_t*,parser_ctx_t*,source_elements_t*,BOOL,jsexcept_t*,VARIANT*) DECLSPEC_HIDDEN;
224 typedef struct _statement_t statement_t;
225 typedef struct _parameter_t parameter_t;
227 HRESULT create_source_function(parser_ctx_t*,parameter_t*,source_elements_t*,scope_chain_t*,
228 const WCHAR*,DWORD,jsdisp_t**) DECLSPEC_HIDDEN;
254 literal_t *parse_regexp(parser_ctx_t*) DECLSPEC_HIDDEN;
255 literal_t *new_boolean_literal(parser_ctx_t*,VARIANT_BOOL) DECLSPEC_HIDDEN;
257 typedef struct _variable_declaration_t {
258 const WCHAR *identifier;
261 struct _variable_declaration_t *next;
262 } variable_declaration_t;
264 typedef struct _return_type_t return_type_t;
266 typedef HRESULT (*statement_eval_t)(script_ctx_t*,statement_t*,return_type_t*,VARIANT*);
268 struct _statement_t {
269 statement_eval_t eval;
275 statement_t *stat_list;
280 variable_declaration_t *variable_list;
286 } expression_statement_t;
291 statement_t *if_stat;
292 statement_t *else_stat;
299 statement_t *statement;
304 variable_declaration_t *variable_list;
305 expression_t *begin_expr;
307 expression_t *end_expr;
308 statement_t *statement;
313 variable_declaration_t *variable;
315 expression_t *in_expr;
316 statement_t *statement;
321 const WCHAR *identifier;
322 } branch_statement_t;
327 statement_t *statement;
332 const WCHAR *identifier;
333 statement_t *statement;
334 } labelled_statement_t;
336 typedef struct _case_clausule_t {
340 struct _case_clausule_t *next;
346 case_clausule_t *case_list;
347 } switch_statement_t;
350 const WCHAR *identifier;
351 statement_t *statement;
356 statement_t *try_statement;
357 catch_block_t *catch_block;
358 statement_t *finally_statement;
361 HRESULT block_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
362 HRESULT var_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
363 HRESULT empty_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
364 HRESULT expression_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
365 HRESULT if_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
366 HRESULT while_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
367 HRESULT for_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
368 HRESULT forin_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
369 HRESULT continue_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
370 HRESULT break_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
371 HRESULT return_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
372 HRESULT with_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
373 HRESULT labelled_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
374 HRESULT switch_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
375 HRESULT throw_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
376 HRESULT try_statement_eval(script_ctx_t*,statement_t*,return_type_t*,VARIANT*) DECLSPEC_HIDDEN;
455 typedef HRESULT (*expression_eval_t)(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*);
457 struct _expression_t {
458 expression_type_t type;
459 expression_eval_t eval;
463 struct _parameter_t {
464 const WCHAR *identifier;
466 struct _parameter_t *next;
469 struct _source_elements_t {
470 statement_t *statement;
471 statement_t *statement_tail;
472 function_declaration_t *functions;
473 var_list_t *variables;
476 struct _function_expression_t {
478 const WCHAR *identifier;
479 parameter_t *parameter_list;
480 source_elements_t *source_elements;
481 const WCHAR *src_str;
487 expression_t *expression1;
488 expression_t *expression2;
489 } binary_expression_t;
493 expression_t *expression;
494 } unary_expression_t;
498 expression_t *expression;
499 expression_t *true_expression;
500 expression_t *false_expression;
501 } conditional_expression_t;
505 expression_t *expression;
506 const WCHAR *identifier;
507 } member_expression_t;
509 typedef struct _argument_t {
512 struct _argument_t *next;
517 expression_t *expression;
518 argument_t *argument_list;
523 const WCHAR *identifier;
524 } identifier_expression_t;
529 } literal_expression_t;
531 typedef struct _array_element_t {
535 struct _array_element_t *next;
540 array_element_t *element_list;
542 } array_literal_expression_t;
544 typedef struct _prop_val_t {
548 struct _prop_val_t *next;
553 prop_val_t *property_list;
554 } property_value_expression_t;
556 HRESULT function_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
557 HRESULT array_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
558 HRESULT member_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
559 HRESULT identifier_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
560 HRESULT array_literal_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
561 HRESULT property_value_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
563 HRESULT binary_and_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
564 HRESULT instanceof_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
565 HRESULT delete_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
566 HRESULT typeof_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
567 HRESULT pre_decrement_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
568 HRESULT left_shift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
569 HRESULT right_shift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
570 HRESULT right2_shift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
571 HRESULT assign_lshift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
572 HRESULT assign_rshift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
573 HRESULT assign_rrshift_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
574 HRESULT assign_and_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
576 HRESULT compiled_expression_eval(script_ctx_t*,expression_t*,DWORD,jsexcept_t*,exprval_t*) DECLSPEC_HIDDEN;
578 HRESULT compile_subscript(parser_ctx_t*,expression_t*,BOOL,unsigned*) DECLSPEC_HIDDEN;