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
;
22 typedef struct _function_declaration_t
{
23 function_expression_t
*expr
;
25 struct _function_declaration_t
*next
;
26 } function_declaration_t
;
28 typedef struct _var_list_t
{
29 const WCHAR
*identifier
;
31 struct _var_list_t
*next
;
34 typedef struct _func_stack
{
35 function_declaration_t
*func_head
;
36 function_declaration_t
*func_tail
;
40 struct _func_stack
*next
;
43 typedef struct _parser_ctx_t
{
51 source_elements_t
*source
;
59 func_stack_t
*func_stack
;
61 struct _parser_ctx_t
*next
;
64 HRESULT
script_parse(script_ctx_t
*,const WCHAR
*,const WCHAR
*,parser_ctx_t
**);
65 void parser_release(parser_ctx_t
*);
67 int parser_lex(void*,parser_ctx_t
*);
69 static inline void parser_addref(parser_ctx_t
*ctx
)
74 static inline void *parser_alloc(parser_ctx_t
*ctx
, DWORD size
)
76 return jsheap_alloc(&ctx
->heap
, size
);
79 static inline void *parser_alloc_tmp(parser_ctx_t
*ctx
, DWORD size
)
81 return jsheap_alloc(&ctx
->script
->tmp_heap
, size
);
84 typedef struct _scope_chain_t
{
87 struct _scope_chain_t
*next
;
90 HRESULT
scope_push(scope_chain_t
*,jsdisp_t
*,scope_chain_t
**);
91 void scope_release(scope_chain_t
*);
93 static inline void scope_addref(scope_chain_t
*scope
)
101 parser_ctx_t
*parser
;
102 scope_chain_t
*scope_chain
;
108 static inline void exec_addref(exec_ctx_t
*ctx
)
113 void exec_release(exec_ctx_t
*);
114 HRESULT
create_exec_ctx(script_ctx_t
*,IDispatch
*,jsdisp_t
*,scope_chain_t
*,BOOL
,exec_ctx_t
**);
115 HRESULT
exec_source(exec_ctx_t
*,parser_ctx_t
*,source_elements_t
*,BOOL
,jsexcept_t
*,VARIANT
*);
117 typedef struct _statement_t statement_t
;
118 typedef struct _expression_t expression_t
;
119 typedef struct _parameter_t parameter_t
;
121 HRESULT
create_source_function(parser_ctx_t
*,parameter_t
*,source_elements_t
*,scope_chain_t
*,
122 const WCHAR
*,DWORD
,jsdisp_t
**);
149 literal_t
*parse_regexp(parser_ctx_t
*);
150 literal_t
*new_boolean_literal(parser_ctx_t
*,VARIANT_BOOL
);
152 typedef struct _variable_declaration_t
{
153 const WCHAR
*identifier
;
156 struct _variable_declaration_t
*next
;
157 } variable_declaration_t
;
169 typedef HRESULT (*statement_eval_t
)(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
171 struct _statement_t
{
172 statement_eval_t eval
;
178 statement_t
*stat_list
;
183 variable_declaration_t
*variable_list
;
189 } expression_statement_t
;
194 statement_t
*if_stat
;
195 statement_t
*else_stat
;
202 statement_t
*statement
;
207 variable_declaration_t
*variable_list
;
208 expression_t
*begin_expr
;
210 expression_t
*end_expr
;
211 statement_t
*statement
;
216 variable_declaration_t
*variable
;
218 expression_t
*in_expr
;
219 statement_t
*statement
;
224 const WCHAR
*identifier
;
225 } branch_statement_t
;
230 statement_t
*statement
;
235 const WCHAR
*identifier
;
236 statement_t
*statement
;
237 } labelled_statement_t
;
239 typedef struct _case_clausule_t
{
243 struct _case_clausule_t
*next
;
249 case_clausule_t
*case_list
;
250 } switch_statement_t
;
253 const WCHAR
*identifier
;
254 statement_t
*statement
;
259 statement_t
*try_statement
;
260 catch_block_t
*catch_block
;
261 statement_t
*finally_statement
;
264 HRESULT
block_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
265 HRESULT
var_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
266 HRESULT
empty_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
267 HRESULT
expression_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
268 HRESULT
if_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
269 HRESULT
while_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
270 HRESULT
for_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
271 HRESULT
forin_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
272 HRESULT
continue_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
273 HRESULT
break_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
274 HRESULT
return_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
275 HRESULT
with_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
276 HRESULT
labelled_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
277 HRESULT
switch_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
278 HRESULT
throw_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
279 HRESULT
try_statement_eval(script_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
302 typedef HRESULT (*expression_eval_t
)(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
304 struct _expression_t
{
305 expression_eval_t eval
;
308 struct _parameter_t
{
309 const WCHAR
*identifier
;
311 struct _parameter_t
*next
;
314 struct _source_elements_t
{
315 statement_t
*statement
;
316 statement_t
*statement_tail
;
317 function_declaration_t
*functions
;
318 var_list_t
*variables
;
321 struct _function_expression_t
{
323 const WCHAR
*identifier
;
324 parameter_t
*parameter_list
;
325 source_elements_t
*source_elements
;
326 const WCHAR
*src_str
;
332 expression_t
*expression1
;
333 expression_t
*expression2
;
334 } binary_expression_t
;
338 expression_t
*expression
;
339 } unary_expression_t
;
343 expression_t
*expression
;
344 expression_t
*true_expression
;
345 expression_t
*false_expression
;
346 } conditional_expression_t
;
350 expression_t
*member_expr
;
351 expression_t
*expression
;
352 } array_expression_t
;
356 expression_t
*expression
;
357 const WCHAR
*identifier
;
358 } member_expression_t
;
360 typedef struct _argument_t
{
363 struct _argument_t
*next
;
368 expression_t
*expression
;
369 argument_t
*argument_list
;
374 const WCHAR
*identifier
;
375 } identifier_expression_t
;
380 } literal_expression_t
;
382 typedef struct _array_element_t
{
386 struct _array_element_t
*next
;
391 array_element_t
*element_list
;
393 } array_literal_expression_t
;
395 typedef struct _prop_val_t
{
399 struct _prop_val_t
*next
;
404 prop_val_t
*property_list
;
405 } property_value_expression_t
;
457 HRESULT
function_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
458 HRESULT
conditional_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
459 HRESULT
array_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
460 HRESULT
member_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
461 HRESULT
new_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
462 HRESULT
call_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
463 HRESULT
this_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
464 HRESULT
identifier_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
465 HRESULT
literal_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
466 HRESULT
array_literal_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
467 HRESULT
property_value_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
469 HRESULT
comma_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
470 HRESULT
logical_or_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
471 HRESULT
logical_and_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
472 HRESULT
binary_or_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
473 HRESULT
binary_xor_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
474 HRESULT
binary_and_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
475 HRESULT
instanceof_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
476 HRESULT
in_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
477 HRESULT
add_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
478 HRESULT
sub_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
479 HRESULT
mul_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
480 HRESULT
div_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
481 HRESULT
mod_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
482 HRESULT
delete_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
483 HRESULT
void_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
484 HRESULT
typeof_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
485 HRESULT
minus_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
486 HRESULT
plus_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
487 HRESULT
post_increment_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
488 HRESULT
post_decrement_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
489 HRESULT
pre_increment_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
490 HRESULT
pre_decrement_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
491 HRESULT
equal_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
492 HRESULT
equal2_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
493 HRESULT
not_equal_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
494 HRESULT
not_equal2_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
495 HRESULT
less_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
496 HRESULT
lesseq_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
497 HRESULT
greater_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
498 HRESULT
greatereq_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
499 HRESULT
binary_negation_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
500 HRESULT
logical_negation_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
501 HRESULT
left_shift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
502 HRESULT
right_shift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
503 HRESULT
right2_shift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
504 HRESULT
assign_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
505 HRESULT
assign_lshift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
506 HRESULT
assign_rshift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
507 HRESULT
assign_rrshift_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
508 HRESULT
assign_add_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
509 HRESULT
assign_sub_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
510 HRESULT
assign_mul_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
511 HRESULT
assign_div_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
512 HRESULT
assign_mod_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
513 HRESULT
assign_and_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
514 HRESULT
assign_or_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
515 HRESULT
assign_xor_expression_eval(script_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);