stage4/generate_c/generate_c.cc
author mjsousa
Sun, 20 Jul 2014 16:45:45 +0100
changeset 913 1c74da17cb61
parent 908 9e8e1ba5ca46
child 914 be6c89943079
permissions -rw-r--r--
Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
     1
/*
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
     2
 *  matiec - a compiler for the programming languages defined in IEC 61131-3
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
     3
 *
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
     4
 *  Copyright (C) 2003-2011  Mario de Sousa (msousa@fe.up.pt)
279
c0453b7f99df Re-generated std lib related code, with updated headers, updated all forgotten headers
Edouard Tisserant
parents: 272
diff changeset
     5
 *  Copyright (C) 2007-2011  Laurent Bessard and Edouard Tisserant
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
     6
 *
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
     7
 *  This program is free software: you can redistribute it and/or modify
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
     8
 *  it under the terms of the GNU General Public License as published by
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
     9
 *  the Free Software Foundation, either version 3 of the License, or
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    10
 *  (at your option) any later version.
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    11
 *
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    12
 *  This program is distributed in the hope that it will be useful,
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    15
 *  GNU General Public License for more details.
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    16
 *
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    17
 *  You should have received a copy of the GNU General Public License
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    18
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
    19
 *
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    20
 *
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    21
 * This code is made available on the understanding that it will not be
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    22
 * used in safety-critical situations without a full and competent review.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    23
 */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    24
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    25
#include <string>
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    26
#include <iostream>
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    27
#include <sstream>
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    28
#include <typeinfo>
111
ee31ee39eaf6 Adding structure variable list generation module
lbessard
parents: 98
diff changeset
    29
#include <list>
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
    30
#include <map>
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
    31
#include <sstream>
139
668a54686827 added missing includes on some platform (gentoo/gcc-4.3.1)
etisserant
parents: 138
diff changeset
    32
#include <strings.h>
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    33
592
99a284cec1f2 Add 'dimension' parameter to subrange_c, fill it correctly, and use it.
Mario de Sousa <msousa@fe.up.pt>
parents: 587
diff changeset
    34
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    35
#include "../../util/symtable.hh"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    36
#include "../../util/dsymtable.hh"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    37
#include "../../absyntax/visitor.hh"
181
38d6eb056260 Moving absyntax utility files out from stage4/generate_c
mario
parents: 178
diff changeset
    38
#include "../../absyntax_utils/absyntax_utils.hh"
596
4efb11e44065 Add ERROR_MSG macro && move extract_XXX() functions to constant_folding.cc
Mario de Sousa <msousa@fe.up.pt>
parents: 594
diff changeset
    39
#include "../../main.hh" // required for ERROR() and ERROR_MSG() macros.
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    40
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    41
#include "../stage4.hh"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    42
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    43
//#define DEBUG
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    44
#ifdef DEBUG
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    45
#define TRACE(classname) printf("\n____%s____\n",classname);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    46
#else
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    47
#define TRACE(classname)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    48
#endif
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    49
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    50
522
f9cff11ae622 Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents: 506
diff changeset
    51
f9cff11ae622 Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents: 506
diff changeset
    52
#define STAGE4_ERROR(symbol1, symbol2, ...) {stage4err("while generating C code", symbol1, symbol2, __VA_ARGS__); exit(EXIT_FAILURE);}
f9cff11ae622 Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents: 506
diff changeset
    53
f9cff11ae622 Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents: 506
diff changeset
    54
592
99a284cec1f2 Add 'dimension' parameter to subrange_c, fill it correctly, and use it.
Mario de Sousa <msousa@fe.up.pt>
parents: 587
diff changeset
    55
/* Macros to access the constant value of each expression (if it exists) from the annotation introduced to the symbol_c object by constant_folding_c in stage3! */
612
c062ff18d04f Constant folding for IL.
Mario de Sousa <msousa@fe.up.pt>
parents: 596
diff changeset
    56
#define VALID_CVALUE(dtype, symbol)           (symbol_c::cs_const_value == (symbol)->const_value._##dtype.status)
c062ff18d04f Constant folding for IL.
Mario de Sousa <msousa@fe.up.pt>
parents: 596
diff changeset
    57
#define GET_CVALUE(dtype, symbol)             ((symbol)->const_value._##dtype.value) 
592
99a284cec1f2 Add 'dimension' parameter to subrange_c, fill it correctly, and use it.
Mario de Sousa <msousa@fe.up.pt>
parents: 587
diff changeset
    58
99a284cec1f2 Add 'dimension' parameter to subrange_c, fill it correctly, and use it.
Mario de Sousa <msousa@fe.up.pt>
parents: 587
diff changeset
    59
522
f9cff11ae622 Start having nicer stage 4 error messages.
Mario de Sousa <msousa@fe.up.pt>
parents: 506
diff changeset
    60
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    61
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    62
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    63
/* Unlike Programs and Configurations which get mapped onto C++ classes,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    64
 * Function Blocks are mapped onto a C structure containing the variables, and
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    65
 * a C function containing the code in the FB's body. This is to allow direct allocation
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    66
 * of a FB variable (which is really an instance of the C data structure) to
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    67
 * a member of a union variable (note that classes with constructors cannot
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    68
 * be mebers of a union), which is done in IL when loading a FB onto IL's
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    69
 * default variable.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    70
 *
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    71
 * So as not to clash the names of the C data structure and the C function,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    72
 * the C structure is given a name identical to that of the FB name, whereas
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    73
 * the name of the function is the FB name with a constant string appended.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    74
 * The value of that constant string which is appended is defined in the following
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    75
 * constant.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    76
 * In order not to clash with any variable in the IL and ST source codem the
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    77
 * following constant should contain a double underscore, which is not allowed
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    78
 * in IL and ST.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    79
 *
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    80
 * e.g.:  FUNTION_BLOCK TEST
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    81
 * is mapped onto a TEST data structure, and a TEST_body__ function.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    82
 */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    83
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    84
#define FB_FUNCTION_SUFFIX "_body__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    85
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    86
/* Idem as body, but for initializer FB function */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    87
#define FB_INIT_SUFFIX "_init__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    88
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    89
/* Idem as body, but for run CONFIG and RESOURCE function */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    90
#define FB_RUN_SUFFIX "_run__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    91
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    92
/* The FB body function is passed as the only parameter a pointer to the FB data
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    93
 * structure instance. The name of this parameter is given by the following constant.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    94
 * In order not to clash with any variable in the IL and ST source codem the
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    95
 * following constant should contain a double underscore, which is not allowed
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    96
 * in IL and ST.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    97
 *
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    98
 * e.g.: the body of FUNTION_BLOCK TEST
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
    99
 * is mapped onto the C function
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   100
 *  TEST_body__(TEST *data__)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   101
 */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   102
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   103
#define FB_FUNCTION_PARAM "data__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   104
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   105
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   106
#define SFC_STEP_ACTION_PREFIX "__SFC_"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   107
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   108
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   109
/* Variable declaration symbol for accessor macros */
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   110
#define DECLARE_VAR "__DECLARE_VAR"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   111
#define DECLARE_GLOBAL "__DECLARE_GLOBAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   112
#define DECLARE_GLOBAL_FB "__DECLARE_GLOBAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   113
#define DECLARE_GLOBAL_LOCATION "__DECLARE_GLOBAL_LOCATION"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   114
#define DECLARE_GLOBAL_LOCATED "__DECLARE_GLOBAL_LOCATED"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   115
#define DECLARE_EXTERNAL "__DECLARE_EXTERNAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   116
#define DECLARE_EXTERNAL_FB "__DECLARE_EXTERNAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   117
#define DECLARE_LOCATED "__DECLARE_LOCATED"
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
   118
#define DECLARE_GLOBAL_PROTOTYPE "__DECLARE_GLOBAL_PROTOTYPE"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   119
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   120
/* Variable declaration symbol for accessor macros */
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   121
#define INIT_VAR "__INIT_VAR"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   122
#define INIT_GLOBAL "__INIT_GLOBAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   123
#define INIT_GLOBAL_FB "__INIT_GLOBAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   124
#define INIT_GLOBAL_LOCATED "__INIT_GLOBAL_LOCATED"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   125
#define INIT_EXTERNAL "__INIT_EXTERNAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   126
#define INIT_EXTERNAL_FB "__INIT_EXTERNAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   127
#define INIT_LOCATED "__INIT_LOCATED"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   128
#define INIT_LOCATED_VALUE "__INIT_LOCATED_VALUE"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   129
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   130
/* Variable getter symbol for accessor macros */
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   131
#define GET_VAR "__GET_VAR"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   132
#define GET_EXTERNAL "__GET_EXTERNAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   133
#define GET_EXTERNAL_FB "__GET_EXTERNAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   134
#define GET_LOCATED "__GET_LOCATED"
873
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   135
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   136
#define GET_VAR_REF "__GET_VAR_REF"
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   137
#define GET_EXTERNAL_REF "__GET_EXTERNAL_REF"
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   138
#define GET_EXTERNAL_FB_REF "__GET_EXTERNAL_FB_REF"
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   139
#define GET_LOCATED_REF "__GET_LOCATED_REF"
dea39ef02847 Add limited support for the REF() operator (defined in v3 of IEC 61131-3)
mjsousa
parents: 872
diff changeset
   140
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   141
#define GET_VAR_BY_REF "__GET_VAR_BY_REF"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   142
#define GET_EXTERNAL_BY_REF "__GET_EXTERNAL_BY_REF"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   143
#define GET_EXTERNAL_FB_BY_REF "__GET_EXTERNAL_FB_BY_REF"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   144
#define GET_LOCATED_BY_REF "__GET_LOCATED_BY_REF"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   145
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   146
/* Variable setter symbol for accessor macros */
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   147
#define SET_VAR "__SET_VAR"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   148
#define SET_EXTERNAL "__SET_EXTERNAL"
706
31553c22f318 Adding support for declaring function block instances as global and external variables
Laurent Bessard
parents: 636
diff changeset
   149
#define SET_EXTERNAL_FB "__SET_EXTERNAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   150
#define SET_LOCATED "__SET_LOCATED"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   151
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
   152
/* Variable initial value symbol for accessor macros */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
   153
#define INITIAL_VALUE "__INITIAL_VALUE"
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   154
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   155
/* Generate a name for a temporary variable.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   156
 * Each new name generated is appended a different number,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   157
 * starting off from 0.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   158
 * After calling reset(), the names will start off again from 0.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   159
 */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   160
#define VAR_LEADER "__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   161
#define TEMP_VAR VAR_LEADER "TMP_"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   162
#define SOURCE_VAR VAR_LEADER "SRC_"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   163
283
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   164
/* please see the comment before the RET_operator_c visitor for details... */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   165
#define END_LABEL VAR_LEADER "end"
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   166
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   167
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   168
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   169
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   170
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   171
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   172
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   173
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   174
static int generate_line_directives__ = 0;
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   175
static int generate_pou_filepairs__   = 0;
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   176
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   177
#ifdef __unix__
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   178
/* Parse command line options passed from main.c !! */
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   179
#include <stdlib.h> // for getsybopt()
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   180
int  stage4_parse_options(char *options) {
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   181
  enum {                    LINE_OPT = 0            ,  SEPTFILE_OPT              /*, SOME_OTHER_OPT, YET_ANOTHER_OPT */};
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   182
  char *const token[] = { /*[LINE_OPT]=*/(char *)"l",/*SEPTFILE_OPT*/(char *)"p" /*, SOME_OTHER_OPT, ...             */, NULL };
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   183
  /* unfortunately, the above commented out syntax for array initialization is valid in C, but not in C++ */
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   184
  
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   185
  char *subopts = options;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   186
  char *value;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   187
  int opt;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   188
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   189
  while (*subopts != '\0') {
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   190
    switch (getsubopt(&subopts, token, &value)) {
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   191
      case     LINE_OPT: generate_line_directives__  = 1; break;
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   192
      case SEPTFILE_OPT: generate_pou_filepairs__    = 1; break;
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   193
      default          : fprintf(stderr, "Unrecognized option: -O %s\n", value); return -1; break;
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   194
     }
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   195
  }     
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   196
  return 0;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   197
}
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   198
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   199
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   200
void stage4_print_options(void) {
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   201
  printf("          (options must be separated by commas. Example: 'l,w,x')\n"); 
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   202
  printf("      l : insert '#line' directives in generated C code.\n"); 
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   203
  printf("      p : place each POU in a separate pair of files (<pou_name>.c, <pou_name>.h).\n"); 
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   204
}
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   205
#else /* not __unix__ */
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   206
/* getsubopt isn't supported with mingw, 
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   207
 *  then stage4 options aren't available on windows*/
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   208
void stage4_print_options(void) {}
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   209
int  stage4_parse_options(char *options) {}
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   210
#endif 
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   211
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   212
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   213
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   214
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   215
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   216
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   217
#include "generate_c_base.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   218
#include "generate_c_typedecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   219
#include "generate_c_sfcdecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   220
#include "generate_c_vardecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   221
#include "generate_c_configbody.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   222
#include "generate_location_list.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   223
#include "generate_var_list.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   224
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   225
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   226
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   227
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   228
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   229
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   230
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   231
#include "generate_c.hh"
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   232
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   233
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   234
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   235
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   236
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   237
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   238
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   239
/* A helper class that prints out the identifiers for function calls to overloaded functions */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   240
/* Given a function declaration of the function being called, it 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   241
 * will simply print out the returned data type,
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   242
 * followed by the data types of all input, output, and in_out parameters.
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   243
 *   for e.g.; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   244
 *     SIN( REAL) : REAL      -> prints out ->  REAL__REAL
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   245
 *     LEN( STRING) : INT     -> prints out ->  INT__STRING
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   246
 *     MUL(TIME, INT) : TIME  -> prints out ->  TIME__TIME__INT
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   247
 */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   248
class print_function_parameter_data_types_c: public generate_c_base_c {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   249
  private:
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   250
    symbol_c *current_type;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   251
    bool_type_name_c tmp_bool;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   252
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   253
    void print_list(symbol_c *var_list, symbol_c *data_type) { 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   254
      if (data_type != NULL) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   255
        /* print out the data type once for every variable! */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   256
        list_c *list = dynamic_cast<list_c *>(var_list);
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   257
        if (list == NULL) ERROR;  
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   258
        for (int i=0; i < list->n; i++) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   259
          s4o.print("__");
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   260
          data_type->accept(*this);
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   261
        }  
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   262
      }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   263
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   264
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   265
  public:
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   266
    print_function_parameter_data_types_c(stage4out_c *s4o_ptr): 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   267
      generate_c_base_c(s4o_ptr)
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   268
      {current_type = NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   269
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   270
    /**************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   271
    /* B.1.5 - Program organization units */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   272
    /**************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   273
    /***********************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   274
    /* B 1.5.1 - Functions */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   275
    /***********************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   276
    /*   FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   277
    /* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   278
    void *visit(function_declaration_c *symbol) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   279
      symbol->type_name->accept(*this); /* return type */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   280
      symbol->var_declarations_list->accept(*this);
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   281
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   282
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   283
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   284
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   285
    //void *visit(var_declarations_list_c *symbol) {// iterate through list}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   286
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   287
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   288
    //void *visit(input_declarations_c *symbol) {// iterate through list}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   289
        
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   290
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   291
    //void *visit(input_declaration_list_c *symbol) {// iterate through list}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   292
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   293
    void *visit(edge_declaration_c *symbol) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   294
      current_type = &tmp_bool; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   295
      symbol->var1_list->accept(*this);
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   296
      current_type = NULL; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   297
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   298
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   299
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   300
    /* We do NOT print out EN and ENO parameters! */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   301
    void *visit(en_param_declaration_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   302
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   303
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   304
    //void *visit(output_declarations_c *symbol) {// iterate through list}    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   305
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   306
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   307
    //void *visit(var_init_decl_list_c *symbol) {// iterate through list}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   308
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   309
    void *visit(simple_spec_init_c *symbol) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   310
      /* return the data type */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   311
      return symbol->simple_specification; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   312
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   313
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   314
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   315
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   316
    /* NOTE: although this class may also sometimes point to a previously_declared_subrange_type_name
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   317
     * we don't need this for now, so it is easier to just skip it allocation
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   318
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   319
    void *visit(subrange_spec_init_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   320
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   321
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   322
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   323
    /* NOTE: although this class may also sometimes point to a previously_declared_enumerated_type_name
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   324
     * we don't need this for now, so it is easier to just skip it allocation
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   325
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   326
    void *visit(enumerated_spec_init_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   327
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   328
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   329
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   330
    /* NOTE: although this class may also sometimes point to a previously_declared_array_type_name
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   331
     * we don't need this for now, so it is easier to just skip it allocation
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   332
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   333
    void *visit(array_var_init_decl_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   334
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   335
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   336
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   337
    /* NOTE: although this class may also sometimes point to a previously_declared_structured_type_name
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   338
     * we don't need this for now, so it is easier to just skip it allocation
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   339
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   340
    void *visit(structured_var_init_decl_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   341
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   342
    /* We do NOT print out EN and ENO parameters! */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   343
    void *visit(eno_param_declaration_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   344
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   345
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   346
    //void *visit(input_output_declarations_c *symbol) {// iterate through list}    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   347
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   348
    /* already handled by iterator base class (note that generate_c_base_c inherits from iterator_c) */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   349
    //void *visit(var_declaration_list_c *symbol) {iterate through list}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   351
    void *visit(fb_name_decl_c *symbol) {
810
d9c48ad646f1 Add a new node to the abstract symtax tree, which will let us do datatype checking of FB variable declarations using the standard algorithm, and no special cases.
Mario de Sousa <msousa@fe.up.pt>
parents: 793
diff changeset
   352
      print_list(symbol->fb_name_list, spec_init_sperator_c::get_spec(symbol->fb_spec_init)); 
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   353
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   354
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   355
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   356
    void *visit(var1_init_decl_c *symbol) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   357
      print_list(symbol->var1_list, (symbol_c *)symbol->spec_init->accept(*this));
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   358
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   359
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   360
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   361
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   362
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   363
    void *visit(array_var_declaration_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   364
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   365
    void *visit(structured_var_declaration_c *symbol) {
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   366
      current_type = symbol->structure_type_name; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   367
      symbol->var1_list->accept(*this);
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   368
      current_type = NULL; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   369
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   370
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   371
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   372
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   373
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   374
    /* Note that this class is used for fixed length strings...
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   375
     *   STRING [ 42 ]
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   376
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   377
    void *visit(single_byte_string_var_declaration_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   378
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   379
    /* currently we do not support data types defined in the declaration itself */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   380
    /* For now, sugest the user define a TYPE .. END_TYPE */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   381
    /* Note that this class is used for fixed length strings...
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   382
     *   WSTRING [ 42 ]
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   383
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   384
    void *visit(double_byte_string_var_declaration_c *symbol) {return NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   385
};
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   386
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   387
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   388
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   389
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   390
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   391
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   392
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   393
/* A helper class that analyses if the datatype of a variable is 'complex'. */
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   394
/* 'complex' means that it is either a strcuture or an array!               */
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   395
class analyse_variable_c: public search_visitor_c {
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   396
  private:
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   397
    static analyse_variable_c *singleton_;
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   398
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   399
  public:
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   400
    analyse_variable_c(void) {};
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   401
    
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   402
    static bool is_complex_type(symbol_c *symbol) {
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   403
      if (NULL == symbol) ERROR;
872
3d682f87c870 Remove assertion being failed by IL labels (IL labels do not yet have specific datatypes).
mjsousa
parents: 864
diff changeset
   404
      if (!get_datatype_info_c::is_type_valid     (symbol->datatype)) return false;
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   405
      return (   get_datatype_info_c::is_structure(symbol->datatype) 
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   406
              || get_datatype_info_c::is_array    (symbol->datatype) 
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   407
             );
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   408
    }
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   409
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   410
    
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   411
  private:
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   412
    symbol_c *last_fb, *first_non_fb_identifier;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   413
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   414
  public:  
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   415
    /* returns the first element (from left to right) in a structured variable that is not a FB, i.e. is either a structure or an array! */
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   416
    /* eg:
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   417
     *      fb1.fb2.fb3.real       returns ??????
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   418
     *      fb1.fb2.struct1.real   returns struct1
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   419
     *      struct1.real           returns struct1
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   420
     */
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   421
    static symbol_c *find_first_nonfb(symbol_c *symbol) {
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   422
      if (NULL == singleton_)       singleton_ = new analyse_variable_c();
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   423
      if (NULL == singleton_)       ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   424
      if (NULL == symbol)           ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   425
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   426
      singleton_->last_fb                 = NULL;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   427
      singleton_->first_non_fb_identifier = NULL;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   428
      return (symbol_c *)symbol->accept(*singleton_);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   429
    }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   430
    
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   431
    /* returns true if a strcutured variable (e.g. fb1.fb2.strcut1.real) contains a structure or array */
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   432
    /* eg:
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   433
     *      fb1.fb2.fb3.real       returns FALSE
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   434
     *      fb1.fb2.struct1.real   returns TRUE
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   435
     *      struct1.real           returns TRUE
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   436
     */
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   437
    static bool contains_complex_type(symbol_c *symbol) {
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   438
      if (NULL == symbol) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   439
      if (!get_datatype_info_c::is_type_valid(symbol->datatype)) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   440
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   441
      symbol_c *first_non_fb = (symbol_c *)find_first_nonfb(symbol);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   442
      return is_complex_type(first_non_fb->datatype);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   443
    }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   444
    
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   445
    
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   446
    /* returns the datatype of the variable returned by find_first_nonfb() */
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   447
    /* eg:
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   448
     *      fb1.fb2.fb3.real       returns ??????
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   449
     *      fb1.fb2.struct1.real   returns datatype of struct1
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   450
     *      struct1.real           returns datatype of struct1
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   451
     */
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   452
    static search_var_instance_decl_c::vt_t first_nonfb_vardecltype(symbol_c *symbol, symbol_c *scope) {
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   453
      if (NULL == symbol) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   454
      if (!get_datatype_info_c::is_type_valid(symbol->datatype)) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   455
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   456
      symbol_c *first_non_fb = (symbol_c *)find_first_nonfb(symbol);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   457
      if (NULL != singleton_->last_fb) {
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   458
        scope = singleton_->last_fb->datatype;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   459
        symbol = singleton_->first_non_fb_identifier;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   460
      }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   461
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   462
      search_var_instance_decl_c search_var_instance_decl(scope);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   463
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   464
      return search_var_instance_decl.get_vartype(symbol);
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   465
    }
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   466
    
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   467
    
853
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   468
    /*********************/
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   469
    /* B 1.4 - Variables */
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   470
    /*********************/
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   471
    void *visit(symbolic_variable_c *symbol) {
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   472
      if (!get_datatype_info_c::is_type_valid    (symbol->datatype)) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   473
      if (!get_datatype_info_c::is_function_block(symbol->datatype)) {
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   474
         first_non_fb_identifier = symbol; 
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   475
         return (void *)symbol;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   476
      }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   477
      last_fb = symbol;
853
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   478
      return NULL;
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   479
    }
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   480
    
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   481
    /*************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   482
    /* B.1.4.2   Multi-element Variables */
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   483
    /*************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   484
    
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   485
    // SYM_REF2(structured_variable_c, record_variable, field_selector)
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   486
    void *visit(structured_variable_c *symbol) {
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   487
      symbol_c *res = (symbol_c *)symbol->record_variable->accept(*this);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   488
      if (NULL != res) return res;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   489
      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   490
      if (!get_datatype_info_c::is_type_valid    (symbol->datatype)) ERROR;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   491
      if (!get_datatype_info_c::is_function_block(symbol->datatype)) {
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   492
         first_non_fb_identifier = symbol->field_selector; 
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   493
         return (void *)symbol;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   494
      }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   495
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   496
      last_fb = symbol;      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   497
      return NULL;      
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   498
    }
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   499
    
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   500
    /*  subscripted_variable '[' subscript_list ']' */
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   501
    //SYM_REF2(array_variable_c, subscripted_variable, subscript_list)
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   502
    void *visit(array_variable_c *symbol) {
863
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   503
      void *res = symbol->subscripted_variable->accept(*this);
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   504
      if (NULL != res) return res;
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   505
      return (void *)symbol;      
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   506
    }
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   507
06820d03a433 Fix bug: correctly generate code when accessing external variables declared inside FBs as a structured variable (realvar := fb1.fb2.extvar1.realvar)
Mario de Sousa <msousa@fe.up.pt>
parents: 854
diff changeset
   508
    
852
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   509
};
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   510
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   511
analyse_variable_c *analyse_variable_c::singleton_ = NULL;
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   512
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   513
/***********************************************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   514
/***********************************************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   515
/***********************************************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   516
/***********************************************************************/
efb44e892582 Fix bug: allow use, as lvalues, structures/arrays inside FBs (e.g. fb1.struct1.r := 33.3).
Mario de Sousa <msousa@fe.up.pt>
parents: 816
diff changeset
   517
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   518
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   519
#include "generate_c_st.cc"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   520
#include "generate_c_il.cc"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   521
#include "generate_c_inlinefcall.cc"
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   522
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   523
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   524
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   525
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   526
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   527
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   528
#define MILLISECOND 1000000
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   529
#define SECOND 1000 * MILLISECOND
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   530
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   531
unsigned long long calculate_time(symbol_c *symbol) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   532
  if (NULL == symbol) return 0;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   533
  
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   534
  interval_c *interval = dynamic_cast<interval_c *>(symbol);
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   535
  duration_c *duration = dynamic_cast<duration_c *>(symbol);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   536
  
632
76c3d707ffa1 Adding error message when task interval value is not supported
Laurent Bessard
parents: 631
diff changeset
   537
  if ((NULL == interval) && (NULL == duration))
631
1a4f5ce62962 Adding error message when task interval value is not supported
Laurent Bessard
parents: 625
diff changeset
   538
  	  {STAGE4_ERROR(symbol, symbol, "This type of interval value is not currently supported"); ERROR;}
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   539
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   540
  if (NULL != duration) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   541
    /* SYM_REF2(duration_c, neg, interval) */
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   542
    if (duration->neg != NULL)
631
1a4f5ce62962 Adding error message when task interval value is not supported
Laurent Bessard
parents: 625
diff changeset
   543
      {STAGE4_ERROR(duration, duration, "Negative TIME literals for interval are not currently supported"); ERROR;}
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   544
    return calculate_time(duration->interval);
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   545
  }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   546
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   547
  if (NULL != interval) {
547
dab341e80664 Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents: 522
diff changeset
   548
    /* SYM_REF5(interval_c, days, hours, minutes, seconds, milliseconds) */
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   549
      unsigned long long int time_ull = 0; 
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   550
      long double            time_ld  = 0;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   551
      /*
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   552
      const unsigned long long int MILLISECOND = 1000000;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   553
      const unsigned long long int      SECOND = 1000 * MILLISECOND
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   554
      */
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   555
      
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   556
      if (NULL != interval->milliseconds) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   557
        if      (VALID_CVALUE( int64, interval->milliseconds) &&           GET_CVALUE( int64, interval->milliseconds) < 0) ERROR; // interval elements should always be positive!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   558
        if      (VALID_CVALUE( int64, interval->milliseconds)) time_ull += GET_CVALUE( int64, interval->milliseconds) * MILLISECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   559
        else if (VALID_CVALUE(uint64, interval->milliseconds)) time_ull += GET_CVALUE(uint64, interval->milliseconds) * MILLISECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   560
        else if (VALID_CVALUE(real64, interval->milliseconds)) time_ld  += GET_CVALUE(real64, interval->milliseconds) * MILLISECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   561
        else ERROR; // if (NULL != interval->milliseconds) is true, then it must have a valid constant value!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   562
      }
547
dab341e80664 Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents: 522
diff changeset
   563
   
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   564
      if (NULL != interval->seconds     ) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   565
        if      (VALID_CVALUE( int64, interval->seconds     ) &&           GET_CVALUE( int64, interval->seconds     ) < 0) ERROR; // interval elements should always be positive!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   566
        if      (VALID_CVALUE( int64, interval->seconds     )) time_ull += GET_CVALUE( int64, interval->seconds     ) * SECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   567
        else if (VALID_CVALUE(uint64, interval->seconds     )) time_ull += GET_CVALUE(uint64, interval->seconds     ) * SECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   568
        else if (VALID_CVALUE(real64, interval->seconds     )) time_ld  += GET_CVALUE(real64, interval->seconds     ) * SECOND;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   569
        else ERROR; // if (NULL != interval->seconds) is true, then it must have a valid constant value!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   570
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   571
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   572
      if (NULL != interval->minutes     ) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   573
        if      (VALID_CVALUE( int64, interval->minutes     ) &&           GET_CVALUE( int64, interval->minutes     ) < 0) ERROR; // interval elements should always be positive!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   574
        if      (VALID_CVALUE( int64, interval->minutes     )) time_ull += GET_CVALUE( int64, interval->minutes     ) * SECOND * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   575
        else if (VALID_CVALUE(uint64, interval->minutes     )) time_ull += GET_CVALUE(uint64, interval->minutes     ) * SECOND * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   576
        else if (VALID_CVALUE(real64, interval->minutes     )) time_ld  += GET_CVALUE(real64, interval->minutes     ) * SECOND * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   577
        else ERROR; // if (NULL != interval->minutes) is true, then it must have a valid constant value!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   578
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   579
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   580
      if (NULL != interval->hours       ) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   581
        if      (VALID_CVALUE( int64, interval->hours       ) &&           GET_CVALUE( int64, interval->hours       ) < 0) ERROR; // interval elements should always be positive!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   582
        if      (VALID_CVALUE( int64, interval->hours       )) time_ull += GET_CVALUE( int64, interval->hours       ) * SECOND * 60 * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   583
        else if (VALID_CVALUE(uint64, interval->hours       )) time_ull += GET_CVALUE(uint64, interval->hours       ) * SECOND * 60 * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   584
        else if (VALID_CVALUE(real64, interval->hours       )) time_ld  += GET_CVALUE(real64, interval->hours       ) * SECOND * 60 * 60;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   585
        else ERROR; // if (NULL != interval->hours) is true, then it must have a valid constant value!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   586
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   587
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   588
      if (NULL != interval->days        ) {
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   589
        if      (VALID_CVALUE( int64, interval->days        ) &&           GET_CVALUE( int64, interval->days        ) < 0) ERROR; // interval elements should always be positive!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   590
        if      (VALID_CVALUE( int64, interval->days        )) time_ull += GET_CVALUE( int64, interval->days        ) * SECOND * 60 * 60 * 24;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   591
        else if (VALID_CVALUE(uint64, interval->days        )) time_ull += GET_CVALUE(uint64, interval->days        ) * SECOND * 60 * 60 * 24;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   592
        else if (VALID_CVALUE(real64, interval->days        )) time_ld  += GET_CVALUE(real64, interval->days        ) * SECOND * 60 * 60 * 24;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   593
        else ERROR; // if (NULL != interval->days) is true, then it must have a valid constant value!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   594
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   595
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   596
      time_ull += time_ld;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   597
      return time_ull;
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   598
  };
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   599
  ERROR; // should never reach this point!
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   600
  return 0; // humour the compiler!
661
f537c3315f83 Minor changes needed to build with pedantic flag.
Manuele Conti <conti.ma@alice.it>
parents: 624
diff changeset
   601
}
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   602
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   603
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   604
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   605
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   606
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   607
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   608
class calculate_common_ticktime_c: public iterator_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   609
  private:
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   610
    unsigned long long common_ticktime;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   611
    unsigned long long least_common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   612
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   613
  public:
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   614
    calculate_common_ticktime_c(void){
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   615
      common_ticktime = 0;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   616
      least_common_ticktime = 0;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   617
    }
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   618
    
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   619
    unsigned long long euclide(unsigned long long a, unsigned long long b) {
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   620
      unsigned long long c = a % b;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   621
      if (c == 0)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   622
        return b;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   623
      else
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   624
        return euclide(b, c);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   625
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   626
    
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   627
    void update_ticktime(unsigned long long time) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   628
      if (common_ticktime == 0)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   629
        common_ticktime = time;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   630
      else if (time > common_ticktime)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   631
        common_ticktime = euclide(time, common_ticktime);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   632
      else
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   633
        common_ticktime = euclide(common_ticktime, time);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   634
      if (least_common_ticktime == 0)
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   635
        least_common_ticktime = time;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   636
      else
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   637
        least_common_ticktime = (least_common_ticktime * time) / common_ticktime;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   638
    }
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   639
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   640
    unsigned long long get_common_ticktime(void) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   641
      return common_ticktime;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   642
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   643
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   644
    unsigned long get_greatest_tick_count(void) {
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   645
      unsigned long long least_common_tick = least_common_ticktime / common_ticktime;
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   646
      if (least_common_tick >> 32)
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   647
        ERROR;
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
   648
      return (unsigned long)(~(((unsigned long)-1) % (unsigned long)least_common_tick) + 1);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   649
    }
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
   650
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   651
/*  TASK task_name task_initialization */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   652
//SYM_REF2(task_configuration_c, task_name, task_initialization)  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   653
    void *visit(task_initialization_c *symbol) {
816
dcd861dda04a Fixed bug when defining task with single_data_source instead of interval_data_source
Laurent Bessard
parents: 810
diff changeset
   654
      if (symbol->interval_data_source != NULL) {
dcd861dda04a Fixed bug when defining task with single_data_source instead of interval_data_source
Laurent Bessard
parents: 810
diff changeset
   655
    	  unsigned long long time = calculate_time(symbol->interval_data_source);
dcd861dda04a Fixed bug when defining task with single_data_source instead of interval_data_source
Laurent Bessard
parents: 810
diff changeset
   656
    	  if (time < 0)  ERROR;
dcd861dda04a Fixed bug when defining task with single_data_source instead of interval_data_source
Laurent Bessard
parents: 810
diff changeset
   657
    	  else           update_ticktime(time);
dcd861dda04a Fixed bug when defining task with single_data_source instead of interval_data_source
Laurent Bessard
parents: 810
diff changeset
   658
      }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   659
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   660
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   661
};    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   662
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   663
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   664
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   665
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   666
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   667
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   668
/* A helper class that knows how to generate code for the SFC, IL and ST languages... */
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   669
class generate_c_SFC_IL_ST_c: public null_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   670
  private:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   671
    stage4out_c *s4o_ptr;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   672
    symbol_c *scope;
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   673
    symbol_c *fbname;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   674
    const char *variable_prefix;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   675
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   676
  public:
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   677
    generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix = NULL);
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   678
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   679
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   680
    /* 2.1.6 - Pragmas  */
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   681
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   682
    void *visit(enable_code_generation_pragma_c * symbol)   {s4o_ptr->enable_output();  return NULL;}
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   683
    void *visit(disable_code_generation_pragma_c * symbol)  {s4o_ptr->disable_output(); return NULL;} 
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   684
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   685
    /*********************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   686
    /* B.1.6  Sequential function chart elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   687
    /*********************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   688
    /*| sequential_function_chart sfc_network*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   689
    void *visit(sequential_function_chart_c * symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   690
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   691
    /****************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   692
    /* B.2 - Language IL (Instruction List) */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   693
    /****************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   694
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   695
    /***********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   696
    /* B 2.1 Instructions and Operands */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   697
    /***********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   698
    /*| instruction_list il_instruction */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   699
    void *visit(instruction_list_c *symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   700
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   701
    /* Remainder implemented in generate_c_il_c... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   702
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   703
    /***************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   704
    /* B.3 - Language ST (Structured Text) */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   705
    /***************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   706
    /***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   707
    /* B 3.1 - Expressions */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   708
    /***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   709
    /* Implemented in generate_c_st_c */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   710
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   711
    /********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   712
    /* B 3.2 Statements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   713
    /********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   714
    void *visit(statement_list_c *symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   715
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   716
/* Remainder implemented in generate_c_st_c... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   717
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   718
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   719
#include "generate_c_sfc.cc"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   720
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   721
generate_c_SFC_IL_ST_c::generate_c_SFC_IL_ST_c(stage4out_c *s4o_ptr, symbol_c *name, symbol_c *scope, const char *variable_prefix) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   722
  if (NULL == scope) ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   723
  this->s4o_ptr = s4o_ptr;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   724
  this->scope = scope;
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   725
  this->fbname = name;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   726
  this->variable_prefix = variable_prefix;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   727
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   728
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   729
void *generate_c_SFC_IL_ST_c::visit(sequential_function_chart_c * symbol) {
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   730
  generate_c_sfc_c generate_c_sfc(s4o_ptr, fbname, scope, variable_prefix);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   731
  generate_c_sfc.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   732
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   733
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   734
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   735
void *generate_c_SFC_IL_ST_c::visit(instruction_list_c *symbol) {
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   736
  generate_c_il_c generate_c_il(s4o_ptr, fbname, scope, variable_prefix);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   737
  generate_c_il.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   738
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   739
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   740
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   741
void *generate_c_SFC_IL_ST_c::visit(statement_list_c *symbol) {
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   742
  generate_c_st_c generate_c_st(s4o_ptr, fbname, scope, variable_prefix);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   743
  generate_c_st.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   744
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   745
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   746
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   747
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   748
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   749
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   750
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   751
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   752
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   753
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   754
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   755
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   756
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   757
identifier_c *generate_unique_id(symbol_c *clone = NULL) {
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   758
  static int counter = 0;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   759
  
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   760
  counter++;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   761
  int   len = snprintf(NULL, 0, "__UNIQUE_ID_%d", counter);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   762
  char *str = (char *)malloc(len+1);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   763
  if (snprintf(str, len+1, "__UNIQUE_ID_%d", counter) < 0) ERROR;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   764
  
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   765
  identifier_c *id = new identifier_c(str);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   766
  if (NULL == id) ERROR;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   767
  if (NULL != clone)
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   768
    *(dynamic_cast<symbol_c *>(id)) = *(dynamic_cast<symbol_c *>(clone));
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   769
  return id;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   770
}
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   771
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   772
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   773
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   774
class generate_c_datatypes_c: public iterator_visitor_c {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   775
  private:
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   776
    generate_c_typedecl_c generate_c_typedecl;
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   777
  public:
906
b225af94405f Remove un-used parameter from class constructor.
mjsousa
parents: 902
diff changeset
   778
    generate_c_datatypes_c(stage4out_c *s4o_incl_ptr)
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   779
      : generate_c_typedecl(s4o_incl_ptr) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   780
    };
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   781
    virtual ~generate_c_datatypes_c(void) {
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   782
    }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   783
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   784
    /*************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   785
    /* B.1 - Common elements */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   786
    /*************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   787
    /*******************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   788
    /* B 1.1 - Letters, digits and identifiers */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   789
    /*******************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   790
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   791
    /**********************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   792
    /* B.1.3 - Data types */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   793
    /**********************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   794
    /***********************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   795
    /* B 1.3.1 - Elementary Data Types */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   796
    /***********************************/
635
a20a70021d37 Adding support for direct array declaration in structure element declaration
Laurent Bessard
parents: 632
diff changeset
   797
    /***********************************/
a20a70021d37 Adding support for direct array declaration in structure element declaration
Laurent Bessard
parents: 632
diff changeset
   798
    /* B 1.3.2 - Generic Data Types    */
a20a70021d37 Adding support for direct array declaration in structure element declaration
Laurent Bessard
parents: 632
diff changeset
   799
    /***********************************/
a20a70021d37 Adding support for direct array declaration in structure element declaration
Laurent Bessard
parents: 632
diff changeset
   800
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   801
    /******************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   802
    /* B 1.4.3 - Declaration & Initialization */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   803
    /******************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   804
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   805
    void *visit(edge_declaration_c           *symbol) {return NULL;}
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   806
    void *visit(en_param_declaration_c       *symbol) {return NULL;}
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   807
    void *visit(eno_param_declaration_c      *symbol) {return NULL;}
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   808
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   809
    void *visit(var1_init_decl_c             *symbol) {return NULL;}
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   810
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   811
    /* array_specification [ASSIGN array_initialization] */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   812
    /* array_initialization may be NULL ! */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   813
    void *visit(array_spec_init_c *symbol) {
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   814
      symbol->array_specification->accept(*this);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   815
      int implicit_id_count = symbol->array_specification->anotations_map.count("generate_c_annotaton__implicit_type_id");
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   816
      if (implicit_id_count  > 1) ERROR;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   817
      if (implicit_id_count == 1)
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   818
        symbol->anotations_map["generate_c_annotaton__implicit_type_id"] = symbol->array_specification->anotations_map["generate_c_annotaton__implicit_type_id"];
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   819
      return NULL;
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   820
    }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   821
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   822
    /* ARRAY '[' array_subrange_list ']' OF non_generic_type_name */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   823
    void *visit(array_specification_c *symbol) {
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   824
      identifier_c *id = generate_unique_id(symbol);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   825
      /* Warning: The following is dangerous... 
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   826
       * We are asking the generate_c_typedecl_c visitor to visit a newly created array_type_declaration_c object
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   827
       * that has not been through stage 3, and therefore does not have stage 3 annotations filled in.
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   828
       * This will only work if generate_c_typedecl_c does ot depend on the stage 3 annotations!
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   829
       */
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   830
      array_spec_init_c        array_spec(symbol, NULL);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   831
      array_type_declaration_c array_decl(id, &array_spec);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   832
      array_decl.accept(generate_c_typedecl); // Must be done _before_ adding the annotation, due to the way generate_c_typedecl_c works
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   833
      symbol->anotations_map["generate_c_annotaton__implicit_type_id"] = id;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   834
      return NULL;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   835
    }
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   836
    
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   837
    /*  var1_list ':' initialized_structure */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   838
    // SYM_REF2(structured_var_init_decl_c, var1_list, initialized_structure)
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   839
    void *visit(structured_var_init_decl_c   *symbol) {return NULL;}
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   840
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   841
    /* fb_name_list ':' function_block_type_name ASSIGN structure_initialization */
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   842
    /* structure_initialization -> may be NULL ! */
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   843
    void *visit(fb_name_decl_c               *symbol) {return NULL;}
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   844
624
c2546c6e0cfa Moving function to correct location (formating only).
Mario de Sousa <msousa@fe.up.pt>
parents: 623
diff changeset
   845
    /*  var1_list ':' structure_type_name */
c2546c6e0cfa Moving function to correct location (formating only).
Mario de Sousa <msousa@fe.up.pt>
parents: 623
diff changeset
   846
    //SYM_REF2(structured_var_declaration_c, var1_list, structure_type_name)
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   847
    void *visit(structured_var_declaration_c *symbol) {return NULL;}
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   848
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   849
};
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   850
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   851
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   852
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   853
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   854
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   855
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   856
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   857
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   858
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   859
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   860
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   861
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   862
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   863
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   864
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   865
class generate_c_pous_c {  
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   866
  /* NOTE: This is NOT a visistor class!!
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   867
   * 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   868
   *       Actually, it does not even really need to be a class. It is simply a collection of similar functions!!
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   869
   */ 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   870
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   871
  private:
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   872
    static void print_end_of_block_label(stage4out_c &s4o) {
283
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   873
      /* Print and __end label for return statements!
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   874
       * If label is not used by at least one goto, compiler will generate a warning.
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   875
       * To work around this we introduce the useless goto.
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   876
       */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   877
      s4o.print("\n");
634
736b36a83548 Added double curly braces for pragma (kept single curly braces for compatibility). Added macro def and undef surrounding pragma to simplify user code. Moved useless comment from generated code back to code generator.
Edouard Tisserant
parents: 632
diff changeset
   878
      /* to humour the compiler, we insert a goto */
283
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   879
      s4o.print(s4o.indent_spaces);
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   880
      s4o.print("goto ");
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   881
      s4o.print(END_LABEL);
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   882
      s4o.print(";\n");
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   883
      s4o.indent_left();
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   884
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   885
      /* write the label marking the end of the code block */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   886
      /* please see the comment before the RET_operator_c visitor for details... */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   887
      /* also needed for return_statement_c */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   888
      s4o.print("\n");
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   889
      s4o.print(s4o.indent_spaces);
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   890
      s4o.print(END_LABEL);
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   891
      s4o.print(":\n");
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   892
      s4o.indent_right();
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   893
    }
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   894
  
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   895
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   896
    /*************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   897
    /* Functions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   898
    /*************/
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   899
  public:
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   900
    /* NOTE: The following function will be called twice:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   901
     *         1st time:  s4o will reference the .h file, and print_declaration=true
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   902
     *                     Here, we generate the function prototypes...
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   903
     *         2nd time:  s4o will reference the .c file, and print_declaration=false
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   904
     *                     Here we generate the source code!
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   905
     */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   906
    /*   FUNCTION derived_function_name ':' elementary_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   907
    /* | FUNCTION derived_function_name ':' derived_type_name io_OR_function_var_declarations_list function_body END_FUNCTION */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   908
    static void handle_function(function_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   909
      generate_c_vardecl_c *vardecl = NULL;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   910
      generate_c_base_c     print_base(&s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   911
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   912
      TRACE("function_declaration_c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   913
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   914
      /* (A) Function declaration... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   915
      /* (A.1) Function return type */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   916
      s4o.print("// FUNCTION\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   917
      symbol->type_name->accept(print_base); /* return type */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   918
      s4o.print(" ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   919
      /* (A.2) Function name */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   920
      symbol->derived_function_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   921
      s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   922
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   923
      /* (A.3) Function parameters */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   924
      s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   925
      vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   926
                                         generate_c_vardecl_c::finterface_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   927
                                         generate_c_vardecl_c::input_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   928
                                         generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   929
                                         generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   930
                                         generate_c_vardecl_c::en_vt       |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   931
                                         generate_c_vardecl_c::eno_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   932
      vardecl->print(symbol->var_declarations_list);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   933
      delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   934
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   935
      s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   936
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   937
      s4o.print(")");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   938
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   939
      /* If we only want the declaration/prototype, then return!! */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   940
      if (print_declaration) 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   941
        {s4o.print(";\n"); return;}
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   942
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   943
      /* continue generating the function definition/code... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   944
      s4o.print("\n" + s4o.indent_spaces + "{\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   945
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   946
      /* (B) Function local variable declaration */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   947
      /* (B.1) Variables declared in ST source code */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   948
      s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   949
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   950
      vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   951
                    generate_c_vardecl_c::localinit_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   952
                    generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   953
                    generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   954
                    generate_c_vardecl_c::private_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   955
                    generate_c_vardecl_c::eno_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   956
      vardecl->print(symbol->var_declarations_list);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   957
      delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   958
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   959
      /* (B.2) Temporary variable for function's return value */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   960
      /* It will have the same name as the function itself! */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   961
      s4o.print(s4o.indent_spaces);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   962
      symbol->type_name->accept(print_base); /* return type */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   963
      s4o.print(" ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   964
      symbol->derived_function_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   965
      s4o.print(" = ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   966
      {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   967
        /* get the default value of this variable's type */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   968
        symbol_c *default_value = type_initial_value_c::get(symbol->type_name);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   969
        if (default_value == NULL) ERROR;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   970
        initialization_analyzer_c initialization_analyzer(default_value);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   971
        switch (initialization_analyzer.get_initialization_type()) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   972
          case initialization_analyzer_c::struct_it:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   973
            {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   974
              generate_c_structure_initialization_c *structure_initialization = new generate_c_structure_initialization_c(&s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   975
              structure_initialization->init_structure_default(symbol->type_name);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   976
              structure_initialization->init_structure_values(default_value);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   977
              delete structure_initialization;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   978
            }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   979
            break;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   980
          case initialization_analyzer_c::array_it:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   981
            {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   982
              generate_c_array_initialization_c *array_initialization = new generate_c_array_initialization_c(&s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   983
              array_initialization->init_array_size(symbol->type_name);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   984
              array_initialization->init_array_values(default_value);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   985
              delete array_initialization;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   986
            }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   987
            break;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   988
          default:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   989
            default_value->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   990
            break;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   991
        }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   992
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   993
      s4o.print(";\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   994
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   995
      s4o.print(s4o.indent_spaces + "// Control execution\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   996
      s4o.print(s4o.indent_spaces + "if (!EN) {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   997
      s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   998
      s4o.print(s4o.indent_spaces + "if (__ENO != NULL) {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   999
      s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1000
      s4o.print(s4o.indent_spaces + "*__ENO = __BOOL_LITERAL(FALSE);\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1001
      s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1002
      s4o.print(s4o.indent_spaces + "}\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1003
      s4o.print(s4o.indent_spaces + "return ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1004
      symbol->derived_function_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1005
      s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1006
      s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1007
      s4o.print(s4o.indent_spaces + "}\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1008
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1009
      /* (C) Function body */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1010
      generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->derived_function_name, symbol);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1011
      symbol->function_body->accept(generate_c_code);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1012
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1013
      print_end_of_block_label(s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1014
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1015
      vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1016
                    generate_c_vardecl_c::foutputassign_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1017
                    generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1018
                    generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1019
                    generate_c_vardecl_c::eno_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1020
      vardecl->print(symbol->var_declarations_list);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1021
      delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1022
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1023
      s4o.print(s4o.indent_spaces + "return ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1024
      symbol->derived_function_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1025
      s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1026
      s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1027
      s4o.print(s4o.indent_spaces + "}\n\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1028
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1029
      return;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1030
    }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1031
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1032
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1033
    /*******************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1034
    /* Function Blocks */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1035
    /*******************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1036
  public:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1037
    /* NOTE: The following function will be called twice:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1038
     *         1st time:  s4o will reference the .h file, and print_declaration=true
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1039
     *                     Here, we generate the function prototypes...
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1040
     *         2nd time:  s4o will reference the .c file, and print_declaration=false
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1041
     *                     Here we generate the source code!
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1042
     */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1043
    /*  FUNCTION_BLOCK derived_function_block_name io_OR_other_var_declarations function_block_body END_FUNCTION_BLOCK */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1044
    //SYM_REF4(function_block_declaration_c, fblock_name, var_declarations, fblock_body, unused)
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1045
    static void handle_function_block(function_block_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1046
      generate_c_vardecl_c     *vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1047
      generate_c_sfcdecl_c     *sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1048
      generate_c_base_c         print_base(&s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1049
      TRACE("function_block_declaration_c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1050
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1051
      /* (A) Function Block data structure declaration... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1052
      if (print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1053
        /* (A.1) Data structure declaration */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1054
        s4o.print("// FUNCTION_BLOCK ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1055
        symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1056
        s4o.print("\n// Data part\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1057
        s4o.print("typedef struct {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1058
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1059
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1060
        /* (A.2) Public variables: i.e. the function parameters... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1061
        s4o.print(s4o.indent_spaces + "// FB Interface - IN, OUT, IN_OUT variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1062
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1063
                                           generate_c_vardecl_c::local_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1064
                                           generate_c_vardecl_c::input_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1065
                                           generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1066
                                           generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1067
                                           generate_c_vardecl_c::en_vt       |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1068
                                           generate_c_vardecl_c::eno_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1069
        vardecl->print(symbol->var_declarations);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1070
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1071
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1072
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1073
        /* (A.3) Private internal variables */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1074
        s4o.print(s4o.indent_spaces + "// FB private variables - TEMP, private and located variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1075
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1076
                                           generate_c_vardecl_c::local_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1077
                                           generate_c_vardecl_c::temp_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1078
                                           generate_c_vardecl_c::private_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1079
                                           generate_c_vardecl_c::located_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1080
                                           generate_c_vardecl_c::external_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1081
        vardecl->print(symbol->var_declarations);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1082
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1083
        
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1084
        /* (A.4) Generate private internal variables for SFC */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1085
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1086
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::sfcdecl_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1087
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1088
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1089
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1090
        /* (A.5) Function Block data structure type name. */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1091
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1092
        s4o.print("} ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1093
        symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1094
        s4o.print(";\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1095
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1096
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1097
      if (!print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1098
        /* (A.6) Function Block inline function declaration for function invocation */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1099
        generate_c_inlinefcall_c *inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1100
        symbol->fblock_body->accept(*inlinedecl);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1101
        delete inlinedecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1102
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1103
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1104
      /* (B) Constructor */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1105
      /* (B.1) Constructor name... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1106
      s4o.print(s4o.indent_spaces + "void ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1107
      symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1108
      s4o.print(FB_INIT_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1109
      s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1110
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1111
      /* first and only parameter is a pointer to the data */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1112
      symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1113
      s4o.print(" *");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1114
      s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1115
      s4o.print(", BOOL retain)");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1116
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1117
      if (print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1118
        s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1119
      } else {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1120
        s4o.print(" {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1121
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1122
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1123
        /* (B.2) Member initializations... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1124
        s4o.print(s4o.indent_spaces);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1125
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1126
                                           generate_c_vardecl_c::constructorinit_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1127
                                           generate_c_vardecl_c::input_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1128
                                           generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1129
                                           generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1130
                                           generate_c_vardecl_c::private_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1131
                                           generate_c_vardecl_c::located_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1132
                                           generate_c_vardecl_c::external_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1133
                                           generate_c_vardecl_c::en_vt       |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1134
                                           generate_c_vardecl_c::eno_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1135
        vardecl->print(symbol->var_declarations, NULL, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1136
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1137
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1138
            
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1139
        /* (B.3) Generate private internal variables for SFC */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1140
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1141
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::sfcinit_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1142
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1143
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1144
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1145
        s4o.print(s4o.indent_spaces + "}\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1146
      }    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1147
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1148
      if (!print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1149
        /* (C) Function with FB body */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1150
        /* (C.1) Step definitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1151
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1152
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::stepdef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1153
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1154
        /* (C.2) Action definitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1155
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::actiondef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1156
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1157
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1158
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1159
      /* (C.3) Function declaration */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1160
      s4o.print("// Code part\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1161
      /* function interface */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1162
      s4o.print("void ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1163
      symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1164
      s4o.print(FB_FUNCTION_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1165
      s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1166
      /* first and only parameter is a pointer to the data */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1167
      symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1168
      s4o.print(" *");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1169
      s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1170
      s4o.print(")");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1171
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1172
      if (print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1173
        s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1174
      } else {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1175
        s4o.print(" {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1176
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1177
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1178
        s4o.print(s4o.indent_spaces + "// Control execution\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1179
        s4o.print(s4o.indent_spaces + "if (!");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1180
        s4o.print(GET_VAR);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1181
        s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1182
        s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1183
        s4o.print("->EN)) {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1184
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1185
        s4o.print(s4o.indent_spaces);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1186
        s4o.print(SET_VAR);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1187
        s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1188
        s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1189
        s4o.print("->,ENO,,__BOOL_LITERAL(FALSE));\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1190
        s4o.print(s4o.indent_spaces + "return;\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1191
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1192
        s4o.print(s4o.indent_spaces + "}\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1193
        s4o.print(s4o.indent_spaces + "else {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1194
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1195
        s4o.print(s4o.indent_spaces);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1196
        s4o.print(SET_VAR);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1197
        s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1198
        s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1199
        s4o.print("->,ENO,,__BOOL_LITERAL(TRUE));\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1200
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1201
        s4o.print(s4o.indent_spaces + "}\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1202
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1203
        /* (C.4) Initialize TEMP variables */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1204
        /* function body */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1205
        s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1206
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1207
                                           generate_c_vardecl_c::init_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1208
                                           generate_c_vardecl_c::temp_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1209
        vardecl->print(symbol->var_declarations, NULL,  FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1210
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1211
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1212
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1213
        /* (C.5) Function code */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1214
        generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->fblock_name, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1215
        symbol->fblock_body->accept(generate_c_code);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1216
        print_end_of_block_label(s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1217
        s4o.print(s4o.indent_spaces + "return;\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1218
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1219
        s4o.print(s4o.indent_spaces + "} // ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1220
        symbol->fblock_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1221
        s4o.print(FB_FUNCTION_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1222
        s4o.print(s4o.indent_spaces + "() \n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1223
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1224
        /* (C.6) Step undefinitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1225
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1226
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::stepundef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1227
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1228
        /* (C.7) Action undefinitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1229
        sfcdecl->generate(symbol->fblock_body, generate_c_sfcdecl_c::actionundef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1230
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1231
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1232
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1233
        s4o.print("\n\n\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1234
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1235
      return;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1236
    }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1237
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1238
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1239
    /************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1240
    /* Programs */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1241
    /************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1242
  public:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1243
    /* NOTE: The following function will be called twice:
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1244
     *         1st time:  s4o will reference the .h file, and print_declaration=true
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1245
     *                     Here, we generate the function prototypes...
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1246
     *         2nd time:  s4o will reference the .c file, and print_declaration=false
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1247
     *                     Here we generate the source code!
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1248
     */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1249
    /*  PROGRAM program_type_name program_var_declarations_list function_block_body END_PROGRAM */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1250
    //SYM_REF4(program_declaration_c, program_type_name, var_declarations, function_block_body, unused)
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1251
    static void handle_program(program_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1252
      generate_c_vardecl_c     *vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1253
      generate_c_sfcdecl_c     *sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1254
      generate_c_base_c         print_base(&s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1255
      TRACE("program_declaration_c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1256
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1257
      /* (A) Program data structure declaration... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1258
      if (print_declaration) {      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1259
        /* (A.1) Data structure declaration */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1260
        s4o.print("// PROGRAM ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1261
        symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1262
        s4o.print("\n// Data part\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1263
        s4o.print("typedef struct {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1264
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1265
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1266
        /* (A.2) Public variables: i.e. the program parameters... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1267
        s4o.print(s4o.indent_spaces + "// PROGRAM Interface - IN, OUT, IN_OUT variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1268
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1269
                                           generate_c_vardecl_c::local_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1270
                                           generate_c_vardecl_c::input_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1271
                                           generate_c_vardecl_c::output_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1272
                                           generate_c_vardecl_c::inoutput_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1273
        vardecl->print(symbol->var_declarations);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1274
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1275
        s4o.print("\n");
146
eef5e62048c7 Adding support for EN/ENO params in function and function blocks (standard function not supported yet)
lbessard
parents: 145
diff changeset
  1276
  
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1277
        /* (A.3) Private internal variables */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1278
        s4o.print(s4o.indent_spaces + "// PROGRAM private variables - TEMP, private and located variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1279
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1280
                      generate_c_vardecl_c::local_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1281
                      generate_c_vardecl_c::temp_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1282
                      generate_c_vardecl_c::private_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1283
                      generate_c_vardecl_c::located_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1284
                      generate_c_vardecl_c::external_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1285
        vardecl->print(symbol->var_declarations);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1286
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1287
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1288
        /* (A.4) Generate private internal variables for SFC */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1289
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1290
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcdecl_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1291
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1292
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1293
        
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1294
        /* (A.5) Program data structure type name. */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1295
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1296
        s4o.print("} ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1297
        symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1298
        s4o.print(";\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1299
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1300
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1301
      if (!print_declaration) {      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1302
        /* (A.6) Function Block inline function declaration for function invocation */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1303
        generate_c_inlinefcall_c *inlinedecl = new generate_c_inlinefcall_c(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1304
        symbol->function_block_body->accept(*inlinedecl);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1305
        delete inlinedecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1306
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1307
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1308
      /* (B) Constructor */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1309
      /* (B.1) Constructor name... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1310
      s4o.print(s4o.indent_spaces + "void ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1311
      symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1312
      s4o.print(FB_INIT_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1313
      s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1314
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1315
      /* first and only parameter is a pointer to the data */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1316
      symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1317
      s4o.print(" *");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1318
      s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1319
      s4o.print(", BOOL retain)");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1320
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1321
      if (print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1322
        s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1323
      } else {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1324
        s4o.print(" {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1325
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1326
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1327
        /* (B.2) Member initializations... */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1328
        s4o.print(s4o.indent_spaces);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1329
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1330
                                           generate_c_vardecl_c::constructorinit_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1331
                                           generate_c_vardecl_c::input_vt    |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1332
                                           generate_c_vardecl_c::output_vt   |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1333
                                           generate_c_vardecl_c::inoutput_vt |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1334
                                           generate_c_vardecl_c::private_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1335
                                           generate_c_vardecl_c::located_vt  |
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1336
                                           generate_c_vardecl_c::external_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1337
        vardecl->print(symbol->var_declarations, NULL,  FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1338
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1339
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1340
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1341
        /* (B.3) Generate private internal variables for SFC */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1342
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1343
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::sfcinit_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1344
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1345
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1346
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1347
        s4o.print(s4o.indent_spaces + "}\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1348
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1349
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1350
      if (!print_declaration) {    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1351
        /* (C) Function with PROGRAM body */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1352
        /* (C.1) Step definitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1353
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1354
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::stepdef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1355
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1356
        /* (C.2) Action definitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1357
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::actiondef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1358
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1359
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1360
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1361
      /* (C.3) Function declaration */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1362
      s4o.print("// Code part\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1363
      /* function interface */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1364
      s4o.print("void ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1365
      symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1366
      s4o.print(FB_FUNCTION_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1367
      s4o.print("(");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1368
      /* first and only parameter is a pointer to the data */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1369
      symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1370
      s4o.print(" *");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1371
      s4o.print(FB_FUNCTION_PARAM);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1372
      s4o.print(")");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1373
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1374
      if (print_declaration) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1375
        s4o.print(";\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1376
      } else {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1377
        s4o.print(" {\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1378
        s4o.indent_right();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1379
          
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1380
        /* (C.4) Initialize TEMP variables */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1381
        /* function body */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1382
        s4o.print(s4o.indent_spaces + "// Initialise TEMP variables\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1383
        vardecl = new generate_c_vardecl_c(&s4o,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1384
                                           generate_c_vardecl_c::init_vf,
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1385
                                           generate_c_vardecl_c::temp_vt);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1386
        vardecl->print(symbol->var_declarations, NULL,  FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1387
        delete vardecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1388
        s4o.print("\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1389
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1390
        /* (C.5) Function code */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1391
        generate_c_SFC_IL_ST_c generate_c_code(&s4o, symbol->program_type_name, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1392
        symbol->function_block_body->accept(generate_c_code);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1393
        print_end_of_block_label(s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1394
        s4o.print(s4o.indent_spaces + "return;\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1395
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1396
        s4o.print(s4o.indent_spaces + "} // ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1397
        symbol->program_type_name->accept(print_base);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1398
        s4o.print(FB_FUNCTION_SUFFIX);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1399
        s4o.print(s4o.indent_spaces + "() \n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1400
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1401
        /* (C.6) Step undefinitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1402
        sfcdecl = new generate_c_sfcdecl_c(&s4o, symbol, FB_FUNCTION_PARAM"->");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1403
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::stepundef_sd);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1404
        
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1405
        /* (C.7) Action undefinitions */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1406
        sfcdecl->generate(symbol->function_block_body, generate_c_sfcdecl_c::actionundef_sd); 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1407
        delete sfcdecl;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1408
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1409
        s4o.indent_left();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1410
        s4o.print("\n\n\n\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1411
      }  
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1412
      return;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1413
    }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1414
}; /* generate_c_pous_c */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1415
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  1416
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1417
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1418
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1419
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1420
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1421
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1422
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1423
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1424
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1425
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1426
class generate_c_config_c: public generate_c_base_c {
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1427
    private:
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1428
    stage4out_c &s4o_incl;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1429
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1430
    public:
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1431
    generate_c_config_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr)
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1432
      : generate_c_base_c(s4o_ptr), s4o_incl(*s4o_incl_ptr) {
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1433
    };
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1434
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1435
    virtual ~generate_c_config_c(void) {}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1436
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1437
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1438
      initprotos_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1439
      initdeclare_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1440
      runprotos_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1441
      rundeclare_dt
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1442
    } declaretype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1443
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1444
    declaretype_t wanted_declaretype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1445
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1446
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1447
public:
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1448
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1449
/* 2.1.6 - Pragmas  */
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1450
/********************/
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1451
void *visit(enable_code_generation_pragma_c * symbol)   {
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1452
    s4o.enable_output();
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1453
    s4o_incl.enable_output();
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1454
    return NULL;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1455
}
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1456
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1457
void *visit(disable_code_generation_pragma_c * symbol)  {
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1458
    s4o.disable_output();
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1459
    s4o_incl.disable_output();    
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1460
    return NULL;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1461
}
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1462
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1463
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1464
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1465
/* B 1.7 Configuration elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1466
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1467
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1468
CONFIGURATION configuration_name
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1469
   optional_global_var_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1470
   (resource_declaration_list | single_resource_declaration)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1471
   optional_access_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1472
   optional_instance_specific_initializations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1473
END_CONFIGURATION
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1474
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1475
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1476
SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1477
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1478
void *visit(configuration_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1479
  generate_c_vardecl_c *vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1480
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1481
  /* Insert the header... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1482
  s4o.print("/*******************************************/\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1483
  s4o.print("/*     FILE GENERATED BY iec2c             */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1484
  s4o.print("/* Editing this file is not recommended... */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1485
  s4o.print("/*******************************************/\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1486
  s4o.print("#include \"iec_std_lib.h\"\n\n");
257
90782e241346 Huge change.
Mario de Sousa <msousa@fe.up.pt>
parents: 202
diff changeset
  1487
  s4o.print("#include \"accessor.h\"\n\n"); 
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1488
  s4o.print("#include \"POUS.h\"\n\n");
250
5d2927300e2c Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents: 248
diff changeset
  1489
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1490
  /* (A) configuration declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1491
  /* (A.1) configuration name in comment */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1492
  s4o.print("// CONFIGURATION ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1493
  symbol->configuration_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1494
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1495
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1496
  /* (A.2) Global variables */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1497
  vardecl = new generate_c_vardecl_c(&s4o,
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1498
                                     generate_c_vardecl_c::local_vf,
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  1499
                                     generate_c_vardecl_c::global_vt,
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  1500
                                     symbol->configuration_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1501
  vardecl->print(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1502
  delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1503
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1504
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1505
  /* (A.3) Declare global prototypes in include file */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1506
  vardecl = new generate_c_vardecl_c(&s4o_incl,
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1507
                                     generate_c_vardecl_c::globalprototype_vf,
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1508
                                     generate_c_vardecl_c::global_vt,
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1509
                                     symbol->configuration_name);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1510
  vardecl->print(symbol);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1511
  delete vardecl;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1512
  s4o_incl.print("\n");
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1513
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1514
  /* (B) Initialisation Function */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1515
  /* (B.1) Ressources initialisation protos... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1516
  wanted_declaretype = initprotos_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1517
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1518
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1519
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1520
  /* (B.2) Initialisation function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1521
  s4o.print(s4o.indent_spaces + "void config");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1522
  s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1523
  s4o.print("(void) {\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1524
  s4o.indent_right();
250
5d2927300e2c Adding missing support for accessors and retain in configuration files (Bug and fix reported by Manuele Conti)
laurent
parents: 248
diff changeset
  1525
  s4o.print(s4o.indent_spaces);
255
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1526
  s4o.print("BOOL retain;\n");
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1527
  s4o.print(s4o.indent_spaces);
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1528
  s4o.print("retain = 0;\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1529
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1530
  /* (B.3) Global variables initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1531
  s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1532
  vardecl = new generate_c_vardecl_c(&s4o,
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1533
                                     generate_c_vardecl_c::constructorinit_vf,
537
199bdfe36166 Fix code generation about __INIT_GLOBAL_LOCATED.
Conti Manuele <manuele.conti@alice.it>
parents: 522
diff changeset
  1534
                                     generate_c_vardecl_c::global_vt,
199bdfe36166 Fix code generation about __INIT_GLOBAL_LOCATED.
Conti Manuele <manuele.conti@alice.it>
parents: 522
diff changeset
  1535
                                     symbol->configuration_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1536
  vardecl->print(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1537
  delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1538
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1539
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1540
  /* (B.3) Resources initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1541
  wanted_declaretype = initdeclare_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1542
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1543
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1544
  s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1545
  s4o.print(s4o.indent_spaces + "}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1546
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1547
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1548
  /* (C) Run Function*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1549
  /* (C.1) Resources run functions protos... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1550
  wanted_declaretype = runprotos_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1551
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1552
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1553
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1554
  /* (C.2) Run function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1555
  s4o.print(s4o.indent_spaces + "void config");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1556
  s4o.print(FB_RUN_SUFFIX);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
  1557
  s4o.print("(unsigned long tick) {\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1558
  s4o.indent_right();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1559
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1560
  /* (C.3) Resources initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1561
  wanted_declaretype = rundeclare_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1562
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1563
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1564
  /* (C.3) Close Public Function body */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1565
  s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1566
  s4o.print(s4o.indent_spaces + "}\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1567
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1568
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1569
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1570
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1571
void *visit(resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1572
  if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1573
    s4o.print(s4o.indent_spaces + "void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1574
    symbol->resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1575
    if (wanted_declaretype == initprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1576
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1577
      s4o.print("(void);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1578
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1579
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1580
      s4o.print(FB_RUN_SUFFIX);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
  1581
      s4o.print("(unsigned long tick);\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1582
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1583
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1584
  if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1585
    s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1586
    symbol->resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1587
    if (wanted_declaretype == initdeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1588
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1589
      s4o.print("();\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1590
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1591
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1592
      s4o.print(FB_RUN_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1593
      s4o.print("(tick);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1594
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1595
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1596
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1597
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1598
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1599
void *visit(single_resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1600
  if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1601
    s4o.print(s4o.indent_spaces + "void RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1602
    if (wanted_declaretype == initprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1603
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1604
      s4o.print("(void);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1605
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1606
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1607
      s4o.print(FB_RUN_SUFFIX);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
  1608
      s4o.print("(unsigned long tick);\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1609
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1610
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1611
  if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1612
    s4o.print(s4o.indent_spaces + "RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1613
    if (wanted_declaretype == initdeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1614
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1615
      s4o.print("();\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1616
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1617
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1618
      s4o.print(FB_RUN_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1619
      s4o.print("(tick);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1620
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1621
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1622
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1623
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1624
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1625
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1626
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1627
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1628
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1629
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1630
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1631
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1632
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1633
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1634
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1635
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1636
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1637
class generate_c_resources_c: public generate_c_typedecl_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1638
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1639
  search_var_instance_decl_c *search_config_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1640
  search_var_instance_decl_c *search_resource_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1641
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1642
  private:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1643
    /* The name of the resource curretnly being processed... */
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1644
    symbol_c *current_configuration;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1645
    symbol_c *current_resource_name;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1646
    symbol_c *current_task_name;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1647
    symbol_c *current_global_vars;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1648
    bool configuration_name;
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1649
    stage4out_c *s4o_ptr;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1650
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1651
  public:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1652
    generate_c_resources_c(stage4out_c *s4o_ptr, symbol_c *config_scope, symbol_c *resource_scope, unsigned long time)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1653
      : generate_c_typedecl_c(s4o_ptr) {
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1654
      current_configuration = config_scope;
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1655
      search_config_instance   = new search_var_instance_decl_c(config_scope);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1656
      search_resource_instance = new search_var_instance_decl_c(resource_scope);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1657
      common_ticktime = time;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1658
      current_resource_name = NULL;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1659
      current_task_name = NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1660
      current_global_vars = NULL;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1661
      configuration_name = false;
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1662
      generate_c_resources_c::s4o_ptr = s4o_ptr;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1663
    };
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1664
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1665
    virtual ~generate_c_resources_c(void) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1666
      delete search_config_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1667
      delete search_resource_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1668
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1669
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1670
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1671
      declare_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1672
      init_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1673
      run_dt
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1674
    } declaretype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1675
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1676
    declaretype_t wanted_declaretype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1677
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
  1678
    unsigned long long common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1679
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1680
    const char *current_program_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1681
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1682
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1683
      assign_at,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1684
      send_at
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1685
    } assigntype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1686
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1687
    assigntype_t wanted_assigntype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1688
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1689
    /* the qualifier of variables that need to be processed... */
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1690
    static const unsigned int none_vq        = 0x0000;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1691
    static const unsigned int constant_vq    = 0x0001;  // CONSTANT
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1692
    static const unsigned int retain_vq      = 0x0002;  // RETAIN
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1693
    static const unsigned int non_retain_vq  = 0x0004;  // NON_RETAIN
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1694
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1695
    /* variable used to store the qualifier of program currently being processed... */
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1696
    unsigned int current_varqualifier;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1697
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1698
    void *print_retain(void) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1699
      s4o.print(",");
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1700
      switch (current_varqualifier) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1701
        case retain_vq:
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1702
          s4o.print("1");
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1703
          break;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1704
        case non_retain_vq:
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1705
          s4o.print("0");
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1706
          break;
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1707
        default:
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1708
          s4o.print("retain");
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1709
          break;
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1710
      }
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1711
      return NULL;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1712
    }
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1713
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1714
    /*************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1715
    /* B.1 - Common elements */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1716
    /*************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1717
    /*******************************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1718
    /* B 1.1 - Letters, digits and identifiers */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1719
    /*******************************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1720
    
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1721
    void *visit(identifier_c *symbol) {
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1722
        if (configuration_name)
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1723
          s4o.print(symbol->value);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1724
        else
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1725
          generate_c_base_c::visit(symbol);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1726
        return NULL;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1727
    }
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1728
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1729
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1730
    /* 2.1.6 - Pragmas  */
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1731
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1732
    void *visit(enable_code_generation_pragma_c * symbol)   {s4o_ptr->enable_output();  return NULL;}
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1733
    void *visit(disable_code_generation_pragma_c * symbol)  {s4o_ptr->disable_output(); return NULL;} 
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1734
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1735
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1736
    /******************************************/
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1737
    /* B 1.4.3 - Declaration & Initialisation */
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1738
    /******************************************/
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1739
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1740
    void *visit(constant_option_c *symbol) {
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1741
      current_varqualifier = constant_vq;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1742
      return NULL;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1743
    }
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1744
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1745
    void *visit(retain_option_c *symbol) {
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1746
      current_varqualifier = retain_vq;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1747
      return NULL;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1748
    }
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1749
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1750
    void *visit(non_retain_option_c *symbol) {
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1751
      current_varqualifier = non_retain_vq;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1752
      return NULL;
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1753
    }
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1754
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1755
    /********************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1756
    /* B 1.7 Configuration elements */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1757
    /********************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1758
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1759
    void *visit(configuration_declaration_c *symbol) {
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1760
      return symbol->configuration_name->accept(*this);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1761
    }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1762
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1763
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1764
RESOURCE resource_name ON resource_type_name
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1765
   optional_global_var_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1766
   single_resource_declaration
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1767
END_RESOURCE
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1768
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1769
// SYM_REF4(resource_declaration_c, resource_name, resource_type_name, global_var_declarations, resource_declaration)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1770
    void *visit(resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1771
      current_resource_name = symbol->resource_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1772
      current_global_vars = symbol->global_var_declarations;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1773
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1774
      symbol->resource_declaration->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1775
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1776
      current_resource_name = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1777
      current_global_vars = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1778
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1779
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1780
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1781
/* task_configuration_list program_configuration_list */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1782
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1783
    void *visit(single_resource_declaration_c *symbol) {
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1784
      bool single_resource = current_resource_name == NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1785
      if (single_resource)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1786
        current_resource_name = new identifier_c("RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1787
      generate_c_vardecl_c *vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1788
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1789
      /* Insert the header... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1790
      s4o.print("/*******************************************/\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1791
      s4o.print("/*     FILE GENERATED BY iec2c             */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1792
      s4o.print("/* Editing this file is not recommended... */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1793
      s4o.print("/*******************************************/\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1794
      s4o.print("#include \"iec_std_lib.h\"\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1795
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1796
      /* (A) resource declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1797
      /* (A.1) resource name in comment */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1798
      s4o.print("// RESOURCE ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1799
      current_resource_name->accept(*this);
120
74640e3c7f53 Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents: 112
diff changeset
  1800
      s4o.print("\n\n");
74640e3c7f53 Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents: 112
diff changeset
  1801
      
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
  1802
      s4o.print("extern unsigned long long common_ticktime__;\n\n");
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
  1803
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1804
      s4o.print("#include \"accessor.h\"\n");
397
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  1805
      s4o.print("#include \"POUS.h\"\n\n");
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1806
      s4o.print("#include \"");
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1807
      configuration_name = true;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1808
      current_configuration->accept(*this);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1809
      configuration_name = false;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1810
      s4o.print(".h\"\n");
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
  1811
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1812
      /* (A.2) Global variables... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1813
      if (current_global_vars != NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1814
        vardecl = new generate_c_vardecl_c(&s4o,
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1815
                                           generate_c_vardecl_c::local_vf,
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1816
                                           generate_c_vardecl_c::global_vt,
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1817
                                           current_resource_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1818
        vardecl->print(current_global_vars);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1819
        delete vardecl;
120
74640e3c7f53 Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents: 112
diff changeset
  1820
        s4o.print("\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1821
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1822
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1823
      /* (A.3) POUs inclusion */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1824
      s4o.print("#include \"POUS.c\"\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1825
      
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1826
      wanted_declaretype = declare_dt;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1827
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1828
      /* (A.4) Resource programs declaration... */
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1829
      symbol->task_configuration_list->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1830
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1831
      /* (A.5) Resource programs declaration... */
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1832
      symbol->program_configuration_list->accept(*this);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1833
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1834
      s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1835
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1836
      /* (B) resource initialisation function... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1837
      /* (B.1) initialisation function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1838
      s4o.print("void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1839
      current_resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1840
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1841
      s4o.print("(void) {\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1842
      s4o.indent_right();
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1843
      s4o.print(s4o.indent_spaces);
255
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1844
      s4o.print("BOOL retain;\n");
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1845
      s4o.print(s4o.indent_spaces);
86ef2244aef1 Modify code generated for avoiding warning while compiling when configuration or resource don't have any global variable
laurent
parents: 250
diff changeset
  1846
      s4o.print("retain = 0;\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1847
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1848
      /* (B.2) Global variables initialisations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1849
      if (current_global_vars != NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1850
        s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1851
        vardecl = new generate_c_vardecl_c(&s4o,
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1852
                                           generate_c_vardecl_c::constructorinit_vf,
241
0ba6d614573e Bug with code generation of global located variables in resource fixed thanks to Mario
laurent
parents: 237
diff changeset
  1853
                                           generate_c_vardecl_c::global_vt,
0ba6d614573e Bug with code generation of global located variables in resource fixed thanks to Mario
laurent
parents: 237
diff changeset
  1854
                                           current_resource_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1855
        vardecl->print(current_global_vars);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1856
        delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1857
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1858
      s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1859
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1860
      wanted_declaretype = init_dt;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1861
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1862
      /* (B.3) Tasks initialisations... */
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1863
      symbol->task_configuration_list->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1864
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1865
      /* (B.4) Resource programs initialisations... */
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1866
      symbol->program_configuration_list->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1867
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1868
      s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1869
      s4o.print("}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1870
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1871
      /* (C) Resource run function... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1872
      /* (C.1) Run function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1873
      s4o.print("void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1874
      current_resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1875
      s4o.print(FB_RUN_SUFFIX);
210
8387cac2aba6 Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
laurent
parents: 202
diff changeset
  1876
      s4o.print("(unsigned long tick) {\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1877
      s4o.indent_right();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1878
      
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1879
      wanted_declaretype = run_dt;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1880
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1881
      /* (C.2) Task management... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1882
      symbol->task_configuration_list->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1883
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1884
      /* (C.3) Program run declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1885
      symbol->program_configuration_list->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1886
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1887
      s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1888
      s4o.print("}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1889
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1890
      if (single_resource) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1891
        delete current_resource_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1892
        current_resource_name = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1893
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1894
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1895
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1896
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1897
/*  PROGRAM [RETAIN | NON_RETAIN] program_name [WITH task_name] ':' program_type_name ['(' prog_conf_elements ')'] */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1898
//SYM_REF6(program_configuration_c, retain_option, program_name, task_name, program_type_name, prog_conf_elements, unused)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1899
    void *visit(program_configuration_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1900
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1901
        case declare_dt:
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1902
          s4o.print(s4o.indent_spaces);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1903
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1904
          s4o.print(" ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1905
          current_resource_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1906
          s4o.print("__");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1907
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1908
          s4o.print(";\n#define ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1909
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1910
          s4o.print(" ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1911
          current_resource_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1912
          s4o.print("__");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1913
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1914
          s4o.print("\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1915
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1916
        case init_dt:
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1917
          if (symbol->retain_option != NULL)
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1918
            symbol->retain_option->accept(*this);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1919
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1920
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1921
          s4o.print(FB_INIT_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1922
          s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1923
          symbol->program_name->accept(*this);
221
c6aed7e5f070 Adding support for flags on Function Block variables for marking which variable must be debugged, retained or is forced
laurent
parents: 217
diff changeset
  1924
          print_retain();
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1925
          s4o.print(");\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1926
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1927
        case run_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1928
          current_program_name = ((identifier_c*)(symbol->program_name))->value;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1929
          if (symbol->task_name != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1930
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1931
            s4o.print("if (");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1932
            symbol->task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1933
            s4o.print(") {\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1934
            s4o.indent_right(); 
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1935
          }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1936
        
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1937
          wanted_assigntype = assign_at;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1938
          if (symbol->prog_conf_elements != NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1939
            symbol->prog_conf_elements->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1940
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1941
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1942
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1943
          s4o.print(FB_FUNCTION_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1944
          s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1945
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1946
          s4o.print(");\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1947
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1948
          wanted_assigntype = send_at;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1949
          if (symbol->prog_conf_elements != NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1950
            symbol->prog_conf_elements->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1951
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1952
          if (symbol->task_name != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1953
            s4o.indent_left();
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1954
            s4o.print(s4o.indent_spaces + "}\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1955
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1956
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1957
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1958
          break;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1959
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1960
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1961
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1962
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1963
/*  TASK task_name task_initialization */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1964
//SYM_REF2(task_configuration_c, task_name, task_initialization)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1965
    void *visit(task_configuration_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1966
      current_task_name = symbol->task_name;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1967
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1968
        case declare_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1969
          s4o.print(s4o.indent_spaces + "BOOL ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1970
          current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1971
          s4o.print(";\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1972
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1973
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1974
        case init_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1975
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1976
          current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1977
          s4o.print(" = __BOOL_LITERAL(FALSE);\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1978
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1979
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1980
        case run_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1981
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1982
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1983
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1984
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1985
      }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1986
      current_task_name = NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1987
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1988
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1989
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1990
/*  '(' [SINGLE ASSIGN data_source ','] [INTERVAL ASSIGN data_source ','] PRIORITY ASSIGN integer ')' */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1991
//SYM_REF4(task_initialization_c, single_data_source, interval_data_source, priority_data_source, unused)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1992
    void *visit(task_initialization_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1993
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1994
        case declare_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1995
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1996
            s4o.print(s4o.indent_spaces + "R_TRIG ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1997
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1998
            s4o.print("_R_TRIG;\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1999
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2000
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2001
        case init_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2002
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2003
            s4o.print(s4o.indent_spaces + "R_TRIG");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2004
            s4o.print(FB_INIT_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2005
            s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2006
            current_task_name->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2007
            s4o.print("_R_TRIG, retain);\n");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2008
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2009
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2010
        case run_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2011
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2012
            symbol_c *config_var_decl = NULL;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2013
            symbol_c *res_var_decl = NULL;
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2014
            s4o.print(s4o.indent_spaces + "{");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2015
            symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->single_data_source))->global_var_name;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2016
            res_var_decl = search_resource_instance->get_decl(current_var_reference);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2017
            if (res_var_decl == NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2018
              config_var_decl = search_config_instance->get_decl(current_var_reference);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2019
              if (config_var_decl == NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2020
                ERROR;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2021
              config_var_decl->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2022
            }
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2023
            else {
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2024
              res_var_decl->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2025
            }
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2026
            s4o.print("* ");
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2027
            symbol->single_data_source->accept(*this);
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2028
            s4o.print(" = __GET_GLOBAL_");
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2029
            symbol->single_data_source->accept(*this);
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2030
            s4o.print("();");
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2031
            s4o.print(SET_VAR);
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2032
            s4o.print("(");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2033
            current_task_name->accept(*this);
885
b2604fc6d25c Change order of SET_xxx() macros. (this will allow me to simplify the print_setter() methods later on)
mjsousa
parents: 878
diff changeset
  2034
            s4o.print("_R_TRIG.,CLK,, *");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2035
            symbol->single_data_source->accept(*this);
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2036
            s4o.print(");}\n");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2037
            s4o.print(s4o.indent_spaces + "R_TRIG");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2038
            s4o.print(FB_FUNCTION_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2039
            s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2040
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2041
            s4o.print("_R_TRIG);\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2042
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2043
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2044
            s4o.print(" = ");
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2045
            s4o.print(GET_VAR);
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2046
            s4o.print("(");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2047
            current_task_name->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2048
            s4o.print("_R_TRIG.Q)");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2049
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2050
          else {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2051
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2052
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2053
            s4o.print(" = ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2054
            if (symbol->interval_data_source != NULL) {
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
  2055
              unsigned long long int time = calculate_time(symbol->interval_data_source);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2056
              if (time != 0) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2057
                s4o.print("!(tick % ");
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
  2058
                s4o.print(time / common_ticktime);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2059
                s4o.print(")");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2060
              }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2061
              else
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2062
                s4o.print("1");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2063
            }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2064
            else 
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2065
              s4o.print("1");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2066
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2067
          s4o.print(";\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2068
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2069
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2070
          break;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2071
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2072
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2073
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2074
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2075
/*  any_symbolic_variable ASSIGN prog_data_source */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2076
//SYM_REF2(prog_cnxn_assign_c, symbolic_variable, prog_data_source)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2077
    void *visit(prog_cnxn_assign_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2078
      if (wanted_assigntype == assign_at) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2079
        symbol_c *var_decl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2080
        unsigned int vartype = 0;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2081
        symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->prog_data_source))->global_var_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2082
        var_decl = search_resource_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2083
        if (var_decl == NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2084
          var_decl = search_config_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2085
          if (var_decl == NULL)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2086
            ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2087
          else
417
d48f53715f77 Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents: 397
diff changeset
  2088
            vartype = search_config_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2089
        }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2090
        else
417
d48f53715f77 Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents: 397
diff changeset
  2091
          vartype = search_resource_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2092
        
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2093
        s4o.print(s4o.indent_spaces + "{extern ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2094
        var_decl->accept(*this);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2095
        s4o.print(" *");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2096
        symbol->prog_data_source->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2097
        s4o.print("; ");
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2098
        s4o.printupper(current_program_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2099
        s4o.print(".");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2100
        symbol->symbolic_variable->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2101
        s4o.print(" = ");
506
2b4e69c7ff8b Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents: 498
diff changeset
  2102
        if (vartype == search_var_instance_decl_c::global_vt)
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2103
          s4o.print("*");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2104
        symbol->prog_data_source->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2105
        s4o.print(";}\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2106
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2107
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2108
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2109
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2110
/* any_symbolic_variable SENDTO data_sink */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2111
//SYM_REF2(prog_cnxn_sendto_c, symbolic_variable, data_sink)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2112
    void *visit(prog_cnxn_sendto_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2113
      if (wanted_assigntype == send_at) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2114
        symbol_c *var_decl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2115
        unsigned int vartype = 0;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2116
        symbol_c *current_var_reference = ((global_var_reference_c *)(symbol->data_sink))->global_var_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2117
        var_decl = search_resource_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2118
        if (var_decl == NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2119
          var_decl = search_config_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2120
          if (var_decl == NULL)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2121
            ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2122
          else
417
d48f53715f77 Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents: 397
diff changeset
  2123
            vartype = search_config_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2124
        }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2125
        else
417
d48f53715f77 Re-write of stage3 code (done by Manuele and I), re-write of search_varfb_instance_type_c (done by myself), and several other bug fixes.
Mario de Sousa <msousa@fe.up.pt>
parents: 397
diff changeset
  2126
          vartype = search_resource_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2127
        
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2128
        s4o.print(s4o.indent_spaces + "{extern ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2129
        var_decl->accept(*this);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2130
        s4o.print(" *");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2131
        symbol->data_sink->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2132
        s4o.print("; ");
506
2b4e69c7ff8b Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents: 498
diff changeset
  2133
        if (vartype == search_var_instance_decl_c::global_vt)
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2134
          s4o.print("*");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2135
        symbol->data_sink->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2136
        s4o.print(" = ");
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2137
        s4o.printupper(current_program_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2138
        s4o.print(".");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2139
        symbol->symbolic_variable->accept(*this);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2140
        s4o.print(";};\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2141
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2142
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2143
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2144
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2145
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2146
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2147
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2148
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2149
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2150
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2151
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2152
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2153
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2154
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2155
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2156
class generate_c_c: public iterator_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2157
  protected:
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2158
    stage4out_c                      &s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2159
    stage4out_c                  pous_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2160
    stage4out_c             pous_incl_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2161
    stage4out_c     located_variables_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2162
    stage4out_c             variables_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2163
    
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2164
    generate_c_datatypes_c generate_c_datatypes;
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2165
    generate_c_typedecl_c  generate_c_typedecl;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2166
    generate_c_pous_c      generate_c_pous;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2167
    
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2168
    symbol_c   *current_configuration;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2169
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2170
    const char *current_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2171
    const char *current_builddir;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2172
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2173
    bool        allow_output;
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2174
    
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
  2175
    unsigned long long common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2176
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2177
  public:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2178
    generate_c_c(stage4out_c *s4o_ptr, const char *builddir): 
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2179
            s4o(*s4o_ptr),
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2180
            pous_s4o(builddir, "POUS", "c"),
121
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2181
            pous_incl_s4o(builddir, "POUS", "h"),
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2182
            located_variables_s4o(builddir, "LOCATED_VARIABLES","h"),
112
0c8d1b0c957a changed VARIABLES.h in VARIABLES.cvs
etisserant
parents: 111
diff changeset
  2183
            variables_s4o(builddir, "VARIABLES","csv"),
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2184
            generate_c_datatypes(&pous_incl_s4o),
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2185
            generate_c_typedecl (&pous_incl_s4o)
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2186
    {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2187
      current_builddir = builddir;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2188
      current_configuration = NULL;
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2189
      allow_output = true;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2190
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2191
            
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2192
    ~generate_c_c(void) {}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2193
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2194
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2195
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2196
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2197
/* 2.1.6 - Pragmas  */
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2198
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2199
    void *visit(enable_code_generation_pragma_c * symbol)  {
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2200
      s4o                  .enable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2201
      pous_s4o             .enable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2202
      pous_incl_s4o        .enable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2203
      located_variables_s4o.enable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2204
      variables_s4o        .enable_output();  
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2205
      allow_output = true;      
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2206
      return NULL;
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2207
    }
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2208
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2209
    void *visit(disable_code_generation_pragma_c * symbol)  {
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2210
      s4o                  .disable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2211
      pous_s4o             .disable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2212
      pous_incl_s4o        .disable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2213
      located_variables_s4o.disable_output();  
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2214
      variables_s4o        .disable_output();  
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2215
      allow_output = false;      
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2216
      return NULL;
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2217
    } 
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2218
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2219
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2220
/***************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2221
/* B 0 - Programming Model */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2222
/***************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2223
    void *visit(library_c *symbol) {
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
  2224
      pous_incl_s4o.print("#ifndef __POUS_H\n#define __POUS_H\n\n#include \"accessor.h\"\n\n");
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2225
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2226
      for(int i = 0; i < symbol->n; i++) {
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2227
        symbol->elements[i]->accept(*this);
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2228
      }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2229
121
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2230
      pous_incl_s4o.print("#endif //__POUS_H\n");
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2231
      
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2232
      generate_var_list_c generate_var_list(&variables_s4o, symbol);
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2233
      generate_var_list.generate_programs(symbol);
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2234
      generate_var_list.generate_variables(symbol);
397
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2235
      variables_s4o.print("\n// Ticktime\n");
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2236
      variables_s4o.print_long_long_integer(common_ticktime, false);
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2237
      variables_s4o.print("\n");
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2238
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2239
      generate_location_list_c generate_location_list(&located_variables_s4o);
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2240
      symbol->accept(generate_location_list);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2241
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2242
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2243
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2244
/*************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2245
/* B.1 - Common elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2246
/*************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2247
/*******************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2248
/* B 1.1 - Letters, digits and identifiers */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2249
/*******************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2250
    void *visit(identifier_c *symbol) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2251
        current_name = symbol->value;
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2252
        return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2253
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2254
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2255
/********************************/
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2256
/* B 1.3.3 - Derived data types */
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2257
/********************************/
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2258
    /*  TYPE type_declaration_list END_TYPE */
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2259
//   void *visit(data_type_declaration_c *symbol)  // handled by iterator_visitor_c
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2260
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2261
    /* helper symbol for data_type_declaration */
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2262
    void *visit(type_declaration_list_c *symbol) {
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2263
      for(int i = 0; i < symbol->n; i++) {
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2264
        symbol->elements[i]->accept(generate_c_datatypes);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2265
        symbol->elements[i]->accept(generate_c_typedecl);
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2266
      }
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2267
      return NULL;
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2268
    }
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2269
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2270
/**************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2271
/* B.1.5 - Program organization units */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2272
/**************************************/
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2273
#define handle_pou(fname,pname,var_decl_list) \
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2274
      if (!allow_output) return NULL;\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2275
      var_decl_list->accept(generate_c_datatypes);\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2276
      if (generate_pou_filepairs__) {\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2277
        stage4out_c s4o_c(current_builddir, get_datatype_info_c::get_id_str(pname), "c");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2278
        stage4out_c s4o_h(current_builddir, get_datatype_info_c::get_id_str(pname), "h");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2279
        /* generate_c_datatypes_c generate_c_datatypes_(&s4o_h);*/\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2280
        /* var_decl_list->accept(generate_c_datatypes_);*/\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2281
        generate_c_pous_c::fname(symbol, s4o_h, true); /* generate the <pou_name>.h file */\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2282
        generate_c_pous_c::fname(symbol, s4o_c, false);/* generate the <pou_name>.c file */\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2283
        /* add #include directives to the POUS.h and POUS.c files... */\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2284
        pous_incl_s4o.print("#include \"");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2285
        pous_s4o.     print("#include \"");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2286
        pous_incl_s4o.print(get_datatype_info_c::get_id_str(pname));\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2287
        pous_s4o.     print(get_datatype_info_c::get_id_str(pname));\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2288
        pous_incl_s4o.print(".h\"\n");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2289
        pous_s4o.     print(".c\"\n");\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2290
      } else {\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2291
        generate_c_pous_c::fname(symbol, pous_incl_s4o, true);\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2292
        generate_c_pous_c::fname(symbol, pous_s4o,      false);\
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2293
      }
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2294
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2295
/***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2296
/* B 1.5.1 - Functions */
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2297
/***********************/      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2298
    void *visit(function_declaration_c *symbol) {
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2299
      handle_pou(handle_function,symbol->derived_function_name, symbol->var_declarations_list)
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2300
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2301
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2302
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2303
/*****************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2304
/* B 1.5.2 - Function Blocks */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2305
/*****************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2306
    void *visit(function_block_declaration_c *symbol) {
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2307
      handle_pou(handle_function_block,symbol->fblock_name, symbol->var_declarations)
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2308
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2309
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2310
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2311
/**********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2312
/* B 1.5.3 - Programs */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2313
/**********************/    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2314
    void *visit(program_declaration_c *symbol) {
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2315
      handle_pou(handle_program,symbol->program_type_name, symbol->var_declarations)
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2316
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2317
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2318
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2319
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2320
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2321
/* B 1.7 Configuration elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2322
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2323
    void *visit(configuration_declaration_c *symbol) {
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2324
      if (symbol->global_var_declarations != NULL)
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2325
        symbol->global_var_declarations->accept(generate_c_datatypes);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2326
      static int configuration_count = 0;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2327
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2328
      if (configuration_count++) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2329
        /* the first configuration is the one we will use!! */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2330
        STAGE4_ERROR(symbol, symbol, "A previous CONFIGURATION has already been declared (C code generation currently only allows a single configuration).");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2331
        ERROR;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2332
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2333
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2334
      current_configuration = symbol;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2335
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2336
      {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2337
        calculate_common_ticktime_c calculate_common_ticktime;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2338
        symbol->accept(calculate_common_ticktime);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2339
        common_ticktime = calculate_common_ticktime.get_common_ticktime();
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2340
        if (common_ticktime == 0) {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2341
          STAGE4_ERROR(symbol, symbol, "You must define at least one periodic task (to set cycle period)!");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2342
          ERROR;
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2343
        }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2344
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2345
        symbol->configuration_name->accept(*this);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2346
        
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2347
        stage4out_c config_s4o(current_builddir, current_name, "c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2348
        stage4out_c config_incl_s4o(current_builddir, current_name, "h");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2349
        generate_c_config_c generate_c_config(&config_s4o, &config_incl_s4o);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2350
        symbol->accept(generate_c_config);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2351
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2352
        config_s4o.print("unsigned long long common_ticktime__ = ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2353
        config_s4o.print_long_long_integer(common_ticktime);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2354
        config_s4o.print("; /*ns*/\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2355
        config_s4o.print("unsigned long greatest_tick_count__ = ");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2356
        config_s4o.print_long_integer(calculate_common_ticktime.get_greatest_tick_count());
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2357
        config_s4o.print("; /*tick*/\n");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2358
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2359
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2360
      symbol->resource_declarations->accept(*this);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2361
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2362
      current_configuration = NULL;
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2363
      return NULL;
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2364
    }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2365
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2366
    void *visit(resource_declaration_c *symbol) {
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2367
      if (symbol->global_var_declarations != NULL)
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2368
        symbol->global_var_declarations->accept(generate_c_datatypes);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2369
      symbol->resource_name->accept(*this);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2370
      stage4out_c resources_s4o(current_builddir, current_name, "c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2371
      generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2372
      symbol->accept(generate_c_resources);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2373
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2374
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2375
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2376
    void *visit(single_resource_declaration_c *symbol) {
907
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2377
      stage4out_c resources_s4o(current_builddir, "RESOURCE", "c");
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2378
      generate_c_resources_c generate_c_resources(&resources_s4o, current_configuration, symbol, common_ticktime);
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2379
      symbol->accept(generate_c_resources);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2380
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2381
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2382
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2383
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2384
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2385
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2386
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2387
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2388
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2389
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2390
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2391
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2392
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2393
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2394
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2395
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2396
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2397
visitor_c *new_code_generator(stage4out_c *s4o, const char *builddir)  {return new generate_c_c(s4o, builddir);}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2398
void delete_code_generator(visitor_c *code_generator) {delete code_generator;}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2399
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2400