stage3/fill_candidate_datatypes.hh
changeset 479 a174d61f2087
parent 478 b13feab3b918
child 487 1619b2fe03e1
--- a/stage3/fill_candidate_datatypes.hh	Tue Mar 13 16:38:21 2012 +0000
+++ b/stage3/fill_candidate_datatypes.hh	Tue Mar 13 18:29:34 2012 +0000
@@ -83,10 +83,12 @@
 
     /* Match a function declaration with a function call through their parameters.*/
     /* returns true if compatible function/FB invocation, otherwise returns false */
-    bool match_nonformal_call(symbol_c *f_call, symbol_c *f_decl);
-    bool match_formal_call   (symbol_c *f_call, symbol_c *f_decl, symbol_c **first_param_datatype = NULL);
-    void handle_function_call(symbol_c *fcall, generic_function_call_t fcall_data);
-    void handle_implicit_il_fb_call(symbol_c *il_instruction, const char *param_name, symbol_c *&called_fb_declaration);
+    bool  match_nonformal_call(symbol_c *f_call, symbol_c *f_decl);
+    bool  match_formal_call   (symbol_c *f_call, symbol_c *f_decl, symbol_c **first_param_datatype = NULL);
+    void  handle_function_call(symbol_c *fcall, generic_function_call_t fcall_data);
+    void  handle_implicit_il_fb_call(symbol_c *il_instruction, const char *param_name, symbol_c *&called_fb_declaration);
+    void *handle_binary_expression(const struct widen_entry widen_table[], symbol_c *symbol, symbol_c *l_expr, symbol_c *r_expr);
+    void *handle_binary_operator  (const struct widen_entry widen_table[], symbol_c *symbol, symbol_c *l_expr, symbol_c *r_expr);
     
     /* a helper function... */
     symbol_c *base_type(symbol_c *symbol);