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 _obj_literal_t
{
24 struct _obj_literal_t
*next
;
27 typedef struct _function_declaration_t
{
28 function_expression_t
*expr
;
30 struct _function_declaration_t
*next
;
31 } function_declaration_t
;
33 typedef struct _var_list_t
{
34 const WCHAR
*identifier
;
36 struct _var_list_t
*next
;
39 typedef struct _func_stack
{
40 function_declaration_t
*func_head
;
41 function_declaration_t
*func_tail
;
45 struct _func_stack
*next
;
48 typedef struct _parser_ctx_t
{
56 source_elements_t
*source
;
62 obj_literal_t
*obj_literals
;
63 func_stack_t
*func_stack
;
65 struct _parser_ctx_t
*next
;
68 HRESULT
script_parse(script_ctx_t
*,const WCHAR
*,parser_ctx_t
**);
69 void parser_release(parser_ctx_t
*);
71 int parser_lex(void*,parser_ctx_t
*);
73 static inline void parser_addref(parser_ctx_t
*ctx
)
78 static inline void *parser_alloc(parser_ctx_t
*ctx
, DWORD size
)
80 return jsheap_alloc(&ctx
->heap
, size
);
83 static inline void *parser_alloc_tmp(parser_ctx_t
*ctx
, DWORD size
)
85 return jsheap_alloc(&ctx
->script
->tmp_heap
, size
);
88 typedef struct _scope_chain_t
{
91 struct _scope_chain_t
*next
;
94 HRESULT
scope_push(scope_chain_t
*,DispatchEx
*,scope_chain_t
**);
95 void scope_release(scope_chain_t
*);
97 static inline void scope_addref(scope_chain_t
*scope
)
105 parser_ctx_t
*parser
;
106 scope_chain_t
*scope_chain
;
107 DispatchEx
*var_disp
;
111 static inline void exec_addref(exec_ctx_t
*ctx
)
116 void exec_release(exec_ctx_t
*);
117 HRESULT
create_exec_ctx(IDispatch
*,DispatchEx
*,scope_chain_t
*,exec_ctx_t
**);
118 HRESULT
exec_source(exec_ctx_t
*,parser_ctx_t
*,source_elements_t
*,jsexcept_t
*,VARIANT
*);
120 typedef struct _statement_t statement_t
;
121 typedef struct _expression_t expression_t
;
122 typedef struct _parameter_t parameter_t
;
124 HRESULT
create_source_function(parser_ctx_t
*,parameter_t
*,source_elements_t
*,scope_chain_t
*,
125 const WCHAR
*,DWORD
,DispatchEx
**);
138 literal_t
*parse_regexp(parser_ctx_t
*);
140 typedef struct _variable_declaration_t
{
141 const WCHAR
*identifier
;
144 struct _variable_declaration_t
*next
;
145 } variable_declaration_t
;
157 typedef HRESULT (*statement_eval_t
)(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
159 struct _statement_t
{
160 statement_eval_t eval
;
166 statement_t
*stat_list
;
171 variable_declaration_t
*variable_list
;
177 } expression_statement_t
;
182 statement_t
*if_stat
;
183 statement_t
*else_stat
;
190 statement_t
*statement
;
195 variable_declaration_t
*variable_list
;
196 expression_t
*begin_expr
;
198 expression_t
*end_expr
;
199 statement_t
*statement
;
204 variable_declaration_t
*variable
;
206 expression_t
*in_expr
;
207 statement_t
*statement
;
212 const WCHAR
*identifier
;
213 } branch_statement_t
;
218 statement_t
*statement
;
223 const WCHAR
*identifier
;
224 statement_t
*statement
;
225 } labelled_statement_t
;
227 typedef struct _case_clausule_t
{
231 struct _case_clausule_t
*next
;
237 case_clausule_t
*case_list
;
238 } switch_statement_t
;
241 const WCHAR
*identifier
;
242 statement_t
*statement
;
247 statement_t
*try_statement
;
248 catch_block_t
*catch_block
;
249 statement_t
*finally_statement
;
252 HRESULT
block_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
253 HRESULT
var_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
254 HRESULT
empty_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
255 HRESULT
expression_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
256 HRESULT
if_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
257 HRESULT
while_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
258 HRESULT
for_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
259 HRESULT
forin_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
260 HRESULT
continue_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
261 HRESULT
break_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
262 HRESULT
return_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
263 HRESULT
with_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
264 HRESULT
labelled_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
265 HRESULT
switch_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
266 HRESULT
throw_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
267 HRESULT
try_statement_eval(exec_ctx_t
*,statement_t
*,return_type_t
*,VARIANT
*);
288 typedef HRESULT (*expression_eval_t
)(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
290 struct _expression_t
{
291 expression_eval_t eval
;
294 struct _parameter_t
{
295 const WCHAR
*identifier
;
297 struct _parameter_t
*next
;
300 struct _source_elements_t
{
301 statement_t
*statement
;
302 statement_t
*statement_tail
;
303 function_declaration_t
*functions
;
304 var_list_t
*variables
;
307 struct _function_expression_t
{
309 const WCHAR
*identifier
;
310 parameter_t
*parameter_list
;
311 source_elements_t
*source_elements
;
312 const WCHAR
*src_str
;
318 expression_t
*expression1
;
319 expression_t
*expression2
;
320 } binary_expression_t
;
324 expression_t
*expression
;
325 } unary_expression_t
;
329 expression_t
*expression
;
330 expression_t
*true_expression
;
331 expression_t
*false_expression
;
332 } conditional_expression_t
;
336 expression_t
*member_expr
;
337 expression_t
*expression
;
338 } array_expression_t
;
342 expression_t
*expression
;
343 const WCHAR
*identifier
;
344 } member_expression_t
;
346 typedef struct _argument_t
{
349 struct _argument_t
*next
;
354 expression_t
*expression
;
355 argument_t
*argument_list
;
360 const WCHAR
*identifier
;
361 } identifier_expression_t
;
366 } literal_expression_t
;
368 typedef struct _array_element_t
{
372 struct _array_element_t
*next
;
377 array_element_t
*element_list
;
379 } array_literal_expression_t
;
381 typedef struct _prop_val_t
{
385 struct _prop_val_t
*next
;
390 prop_val_t
*property_list
;
391 } property_value_expression_t
;
443 HRESULT
function_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
444 HRESULT
conditional_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
445 HRESULT
array_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
446 HRESULT
member_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
447 HRESULT
new_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
448 HRESULT
call_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
449 HRESULT
this_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
450 HRESULT
identifier_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
451 HRESULT
literal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
452 HRESULT
array_literal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
453 HRESULT
property_value_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
455 HRESULT
comma_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
456 HRESULT
logical_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
457 HRESULT
logical_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
458 HRESULT
binary_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
459 HRESULT
binary_xor_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
460 HRESULT
binary_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
461 HRESULT
instanceof_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
462 HRESULT
in_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
463 HRESULT
add_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
464 HRESULT
sub_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
465 HRESULT
mul_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
466 HRESULT
div_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
467 HRESULT
mod_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
468 HRESULT
delete_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
469 HRESULT
void_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
470 HRESULT
typeof_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
471 HRESULT
minus_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
472 HRESULT
plus_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
473 HRESULT
post_increment_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
474 HRESULT
post_decrement_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
475 HRESULT
pre_increment_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
476 HRESULT
pre_decrement_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
477 HRESULT
equal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
478 HRESULT
equal2_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
479 HRESULT
not_equal_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
480 HRESULT
not_equal2_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
481 HRESULT
less_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
482 HRESULT
lesseq_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
483 HRESULT
greater_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
484 HRESULT
greatereq_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
485 HRESULT
binary_negation_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
486 HRESULT
logical_negation_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
487 HRESULT
left_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
488 HRESULT
right_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
489 HRESULT
right2_shift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
490 HRESULT
assign_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
491 HRESULT
assign_lshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
492 HRESULT
assign_rshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
493 HRESULT
assign_rrshift_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
494 HRESULT
assign_add_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
495 HRESULT
assign_sub_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
496 HRESULT
assign_mul_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
497 HRESULT
assign_div_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
498 HRESULT
assign_mod_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
499 HRESULT
assign_and_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
500 HRESULT
assign_or_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);
501 HRESULT
assign_xor_expression_eval(exec_ctx_t
*,expression_t
*,DWORD
,jsexcept_t
*,exprval_t
*);