mario@181: /* mario@181: * (c) 2003 Mario de Sousa mario@181: * mario@181: * Offered to the public under the terms of the GNU General Public License mario@181: * as published by the Free Software Foundation; either version 2 of the mario@181: * License, or (at your option) any later version. mario@181: * mario@181: * This program is distributed in the hope that it will be useful, but mario@181: * WITHOUT ANY WARRANTY; without even the implied warranty of mario@181: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General mario@181: * Public License for more details. mario@181: * mario@181: * This code is made available on the understanding that it will not be mario@181: * used in safety-critical situations without a full and competent review. mario@181: */ mario@181: mario@181: /* mario@181: * An IEC 61131-3 IL and ST compiler. mario@181: * mario@181: * Based on the mario@181: * FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) mario@181: * mario@181: */ mario@181: mario@181: mario@181: /* Determine the data type on which another data type is based on. mario@181: * If a new default initial value is given, we DO NOT consider it a mario@181: * new base class, and continue looking further! mario@181: * mario@181: * E.g. TYPE new_int_t : INT; END_TYPE; mario@181: * TYPE new_int2_t : INT = 2; END_TYPE; mario@181: * TYPE new_subr_t : INT (4..5); END_TYPE; mario@181: * mario@181: * new_int_t is really an INT!! mario@181: * new_int2_t is also really an INT!! mario@181: * new_subr_t is also really an INT!! ccb@202: * ccb@202: * Note that a FB declaration is also considered a base type, as ccb@202: * we may have FB instances declared of a specific FB type. mario@181: */ mario@181: mario@181: mario@181: class search_base_type_c: public null_visitor_c { mario@181: mario@181: private: mario@181: symbol_c *current_type_name; mario@181: bool is_subrange; mario@181: bool is_enumerated; mario@181: mario@181: public: mario@181: search_base_type_c(void); mario@181: mario@181: public: mario@181: void *visit(identifier_c *type_name); mario@181: bool type_is_subrange(symbol_c* type_decl); mario@181: bool type_is_enumerated(symbol_c* type_decl); mario@181: mario@181: public: ccb@202: /*********************/ ccb@202: /* B 1.2 - Constants */ ccb@202: /*********************/ ccb@202: ccb@202: /******************************/ ccb@202: /* B 1.2.1 - Numeric Literals */ ccb@202: /******************************/ ccb@202: /* Numeric literals without any explicit type cast have unknown data type, ccb@202: * so we continue considering them as their own basic data types until ccb@202: * they can be resolved (for example, when using '30+x' where 'x' is a LINT variable, the ccb@202: * numeric literal '30' must then be considered a LINT so the ADD function may be called ccb@202: * with all inputs of the same data type. ccb@202: * If 'x' were a SINT, then the '30' would have to be a SINT too! ccb@202: */ ccb@202: void *visit(real_c *symbol); msousa@257: void *visit(neg_real_c *symbol); ccb@202: void *visit(integer_c *symbol); msousa@257: void *visit(neg_integer_c *symbol); ccb@202: void *visit(binary_integer_c *symbol); ccb@202: void *visit(octal_integer_c *symbol); ccb@202: void *visit(hex_integer_c *symbol); msousa@257: void *visit(boolean_true_c *symbol); msousa@257: void *visit(boolean_false_c *symbol); ccb@202: ccb@202: mario@181: /***********************************/ mario@181: /* B 1.3.1 - Elementary Data Types */ mario@181: /***********************************/ mario@181: void *visit(time_type_name_c *symbol); mario@181: void *visit(bool_type_name_c *symbol); mario@181: void *visit(sint_type_name_c *symbol); mario@181: void *visit(int_type_name_c *symbol); mario@181: void *visit(dint_type_name_c *symbol); mario@181: void *visit(lint_type_name_c *symbol); mario@181: void *visit(usint_type_name_c *symbol); mario@181: void *visit(uint_type_name_c *symbol); mario@181: void *visit(udint_type_name_c *symbol); mario@181: void *visit(ulint_type_name_c *symbol); mario@181: void *visit(real_type_name_c *symbol); mario@181: void *visit(lreal_type_name_c *symbol); mario@181: void *visit(date_type_name_c *symbol); mario@181: void *visit(tod_type_name_c *symbol); mario@181: void *visit(dt_type_name_c *symbol) ; mario@181: void *visit(byte_type_name_c *symbol); mario@181: void *visit(word_type_name_c *symbol); mario@181: void *visit(dword_type_name_c *symbol); mario@181: void *visit(lword_type_name_c *symbol); mario@181: void *visit(string_type_name_c *symbol); mario@181: void *visit(wstring_type_name_c *symbol); ccb@202: mario@181: /******************************************************/ mario@181: /* Extensions to the base standard as defined in */ mario@181: /* "Safety Software Technical Specification, */ mario@181: /* Part 1: Concepts and Function Blocks, */ mario@181: /* Version 1.0 – Official Release" */ mario@181: /* by PLCopen - Technical Committee 5 - 2006-01-31 */ mario@181: /******************************************************/ msousa@257: void *visit(safetime_type_name_c *symbol); mario@181: void *visit(safebool_type_name_c *symbol); msousa@257: void *visit(safesint_type_name_c *symbol); msousa@257: void *visit(safeint_type_name_c *symbol); msousa@257: void *visit(safedint_type_name_c *symbol); msousa@257: void *visit(safelint_type_name_c *symbol); msousa@257: void *visit(safeusint_type_name_c *symbol); msousa@257: void *visit(safeuint_type_name_c *symbol); msousa@257: void *visit(safeudint_type_name_c *symbol); msousa@257: void *visit(safeulint_type_name_c *symbol); msousa@257: void *visit(safereal_type_name_c *symbol); msousa@257: void *visit(safelreal_type_name_c *symbol); msousa@257: void *visit(safedate_type_name_c *symbol); msousa@257: void *visit(safetod_type_name_c *symbol); msousa@257: void *visit(safedt_type_name_c *symbol) ; msousa@257: void *visit(safebyte_type_name_c *symbol); msousa@257: void *visit(safeword_type_name_c *symbol); msousa@257: void *visit(safedword_type_name_c *symbol); msousa@257: void *visit(safelword_type_name_c *symbol); msousa@257: void *visit(safestring_type_name_c *symbol); msousa@257: void *visit(safewstring_type_name_c *symbol); mario@181: mario@181: /********************************/ mario@181: /* B 1.3.3 - Derived data types */ mario@181: /********************************/ mario@181: /* simple_type_name ':' simple_spec_init */ mario@181: void *visit(simple_type_declaration_c *symbol); mario@181: /* simple_specification ASSIGN constant */ mario@181: void *visit(simple_spec_init_c *symbol); mario@181: /* subrange_type_name ':' subrange_spec_init */ mario@181: void *visit(subrange_type_declaration_c *symbol); mario@181: /* subrange_specification ASSIGN signed_integer */ mario@181: void *visit(subrange_spec_init_c *symbol); mario@181: /* integer_type_name '(' subrange')' */ mario@181: void *visit(subrange_specification_c *symbol); mario@181: /* signed_integer DOTDOT signed_integer */ mario@181: void *visit(subrange_c *symbol); mario@181: mario@181: /* enumerated_type_name ':' enumerated_spec_init */ mario@181: void *visit(enumerated_type_declaration_c *symbol); mario@181: /* enumerated_specification ASSIGN enumerated_value */ mario@181: void *visit(enumerated_spec_init_c *symbol); mario@181: /* helper symbol for enumerated_specification->enumerated_spec_init */ mario@181: /* enumerated_value_list ',' enumerated_value */ mario@181: void *visit(enumerated_value_list_c *symbol); mario@181: /* enumerated_type_name '#' identifier */ mario@181: // SYM_REF2(enumerated_value_c, type, value) mario@181: void *visit(enumerated_value_c *symbol); mario@181: /* identifier ':' array_spec_init */ mario@181: void *visit(array_type_declaration_c *symbol); mario@181: /* array_specification [ASSIGN array_initialization} */ mario@181: /* array_initialization may be NULL ! */ mario@181: void *visit(array_spec_init_c *symbol); mario@181: /* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */ mario@181: void *visit(array_specification_c *symbol); mario@181: /* helper symbol for array_specification */ mario@181: /* array_subrange_list ',' subrange */ mario@181: void *visit(array_subrange_list_c *symbol); mario@181: /* array_initialization: '[' array_initial_elements_list ']' */ mario@181: /* helper symbol for array_initialization */ mario@181: /* array_initial_elements_list ',' array_initial_elements */ mario@181: void *visit(array_initial_elements_list_c *symbol); mario@181: /* integer '(' [array_initial_element] ')' */ mario@181: /* array_initial_element may be NULL ! */ mario@181: void *visit(array_initial_elements_c *symbol); mario@181: /* structure_type_name ':' structure_specification */ mario@181: /* NOTE: structure_specification will point to either a mario@181: * initialized_structure_c mario@181: * OR A mario@181: * structure_element_declaration_list_c mario@181: */ mario@181: void *visit(structure_type_declaration_c *symbol); mario@181: /* structure_type_name ASSIGN structure_initialization */ mario@181: /* structure_initialization may be NULL ! */ mario@181: void *visit(initialized_structure_c *symbol); mario@181: /* helper symbol for structure_declaration */ mario@181: /* structure_declaration: STRUCT structure_element_declaration_list END_STRUCT */ mario@181: /* structure_element_declaration_list structure_element_declaration ';' */ mario@181: void *visit(structure_element_declaration_list_c *symbol); mario@181: /* structure_element_name ':' *_spec_init */ mario@181: void *visit(structure_element_declaration_c *symbol); mario@181: /* helper symbol for structure_initialization */ mario@181: /* structure_initialization: '(' structure_element_initialization_list ')' */ mario@181: /* structure_element_initialization_list ',' structure_element_initialization */ mario@181: void *visit(structure_element_initialization_list_c *symbol); mario@181: /* structure_element_name ASSIGN value */ mario@181: void *visit(structure_element_initialization_c *symbol); mario@181: /* string_type_name ':' elementary_string_type_name string_type_declaration_size string_type_declaration_init */ mario@181: /* mario@181: SYM_REF4(string_type_declaration_c, string_type_name, mario@181: elementary_string_type_name, mario@181: string_type_declaration_size, mario@181: string_type_declaration_init) // may be == NULL! mario@181: */ mario@181: void *visit(string_type_declaration_c *symbol); ccb@202: ccb@202: /*****************************/ ccb@202: /* B 1.5.2 - Function Blocks */ ccb@202: /*****************************/ ccb@202: /* FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */ ccb@202: // SYM_REF3(function_block_declaration_c, fblock_name, var_declarations, fblock_body) ccb@202: void *visit(function_block_declaration_c *symbol); ccb@202: mario@181: }; // search_base_type_c mario@181: mario@181: mario@181: mario@181: