stage4/generate_c/generate_c.cc
author Mario de Sousa <msousa@fe.up.pt>
Wed, 26 Dec 2018 11:56:14 +0000
changeset 1082 903e2782e405
parent 1081 d8ed548e2f9b
child 1083 fc23bca885f8
permissions -rw-r--r--
fix bug introduced in previous commit (force literals to unsigned log long)
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! */
965
c9eeb67ba939 Small code re-organization of how const values are stored in symbol_c (can now be accessed through member functions, instead of macros)
mjsousa
parents: 958
diff changeset
    56
#define VALID_CVALUE(dtype, symbol)           ((symbol)->const_value._##dtype.is_valid())
c9eeb67ba939 Small code re-organization of how const values are stored in symbol_c (can now be accessed through member functions, instead of macros)
mjsousa
parents: 958
diff changeset
    57
#define GET_CVALUE(dtype, symbol)             ((symbol)->const_value._##dtype.get()) 
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
933
76324f461aed Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!)
mjsousa
parents: 930
diff changeset
   141
#define GET_VAR_DREF "__GET_VAR_DREF"
76324f461aed Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!)
mjsousa
parents: 930
diff changeset
   142
#define GET_EXTERNAL_DREF "__GET_EXTERNAL_DREF"
76324f461aed Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!)
mjsousa
parents: 930
diff changeset
   143
#define GET_EXTERNAL_FB_DREF "__GET_EXTERNAL_FB_DREF"
76324f461aed Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!)
mjsousa
parents: 930
diff changeset
   144
#define GET_LOCATED_DREF "__GET_LOCATED_DREF"
76324f461aed Add support for de-referencing of REF_TO datatypes (Note: dereferencing of arrays and structs not yet supported!)
mjsousa
parents: 930
diff changeset
   145
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   146
#define GET_VAR_BY_REF "__GET_VAR_BY_REF"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   147
#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
   148
#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
   149
#define GET_LOCATED_BY_REF "__GET_LOCATED_BY_REF"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   150
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   151
/* Variable setter symbol for accessor macros */
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   152
#define SET_VAR "__SET_VAR"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   153
#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
   154
#define SET_EXTERNAL_FB "__SET_EXTERNAL_FB"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   155
#define SET_LOCATED "__SET_LOCATED"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   156
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
   157
/* 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
   158
#define INITIAL_VALUE "__INITIAL_VALUE"
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   159
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   160
/* Generate a name for a temporary variable.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   161
 * Each new name generated is appended a different number,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   162
 * starting off from 0.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   163
 * After calling reset(), the names will start off again from 0.
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   164
 */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   165
#define VAR_LEADER "__"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   166
#define TEMP_VAR VAR_LEADER "TMP_"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   167
#define SOURCE_VAR VAR_LEADER "SRC_"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   168
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
   169
/* 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
   170
#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
   171
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   172
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   173
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   174
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   175
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   176
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   177
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   178
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   179
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
   180
static int generate_pou_filepairs__   = 0;
1060
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   181
static int generate_plc_state_backup_fuctions__ = 0;
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   182
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   183
#ifdef __unix__
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   184
/* Parse command line options passed from main.c !! */
1060
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   185
#include <stdlib.h> // for getsubopt()
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   186
int  stage4_parse_options(char *options) {
1060
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   187
  enum {LINE_OPT = 0,  
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   188
        SEPTFILE_OPT,
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   189
        BACKUP_OPT    /* option to generate function to backup and restore internal PLC state */
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   190
        /*, SOME_OTHER_OPT, YET_ANOTHER_OPT */};
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   191
  char *const token[] = {
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   192
        /*       LINE_OPT*/(char *)"l",
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   193
        /*   SEPTFILE_OPT*/(char *)"p",
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   194
        /*     BACKUP_OPT*/(char *)"b",
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   195
        /* SOME_OTHER_OPT, ...             */
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   196
        NULL };
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   197
  /* 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
   198
  
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   199
  char *subopts = options;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   200
  char *value;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   201
  int opt;
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   202
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   203
  while (*subopts != '\0') {
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   204
    switch (getsubopt(&subopts, token, &value)) {
1060
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   205
      case     LINE_OPT: generate_line_directives__            = 1; break;
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   206
      case SEPTFILE_OPT: generate_pou_filepairs__              = 1; break;
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   207
      case   BACKUP_OPT: generate_plc_state_backup_fuctions__  = 1; break;
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
   208
      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
   209
     }
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   210
  }     
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   211
  return 0;
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
void stage4_print_options(void) {
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   216
  printf("          (options must be separated by commas. Example: 'l,w,x')\n"); 
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   217
  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
   218
  printf("      p : place each POU in a separate pair of files (<pou_name>.c, <pou_name>.h).\n"); 
1060
01c48180af05 make generating backup/restore functions a command line option (off by default).
Mario de Sousa <msousa@fe.up.pt>
parents: 1059
diff changeset
   219
  printf("      b : generate functions to backup and restore internal PLC state.\n"); 
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   220
}
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   221
#else /* not __unix__ */
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   222
/* 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
   223
 *  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
   224
void stage4_print_options(void) {}
1061
f762b43c8fad fix initialization of variable (was not following ISO C++ rules)
Mario de Sousa <msousa@fe.up.pt>
parents: 1060
diff changeset
   225
int  stage4_parse_options(char *options) {return 0;}
882
18a39a545ed9 Disable stage4 options with on windows since getsuboptr isn't supported in mingw
Edouard Tisserant
parents: 878
diff changeset
   226
#endif 
878
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   227
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   228
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   229
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   230
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   231
/***********************************************************************/
89eb85bab58f Make generation of #line directives optional.
mjsousa
parents: 873
diff changeset
   232
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   233
#include "generate_c_base.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   234
#include "generate_c_typedecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   235
#include "generate_c_sfcdecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   236
#include "generate_c_vardecl.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   237
#include "generate_c_configbody.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   238
#include "generate_location_list.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   239
#include "generate_var_list.cc"
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   240
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   241
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   242
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   243
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   244
/***********************************************************************/
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   245
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   246
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   247
#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
   248
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   249
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   250
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   251
/***********************************************************************/
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
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   254
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   255
/* 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
   256
/* 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
   257
 * 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
   258
 * 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
   259
 *   for e.g.; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   260
 *     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
   261
 *     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
   262
 *     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
   263
 */
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
   264
class print_function_parameter_data_types_c: public generate_c_base_and_typeid_c {
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   265
  private:
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   266
    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
   267
    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
   268
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   269
    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
   270
      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
   271
        /* 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
   272
        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
   273
        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
   274
        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
   275
          s4o.print("__");
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   276
          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
   277
        }  
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   278
      }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   279
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   280
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   281
  public:
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   282
    print_function_parameter_data_types_c(stage4out_c *s4o_ptr): 
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
   283
      generate_c_base_and_typeid_c(s4o_ptr)
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   284
      {current_type = NULL;}
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   285
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
    /* 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
   288
    /**************************************/
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
    /* 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
   291
    /***********************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   292
    /*   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
   293
    /* | 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
   294
    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
   295
      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
   296
      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
   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
    /* 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
   301
    //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
   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(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
   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(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
   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(edge_declaration_c *symbol) {
1064
1ac77681946f Abort compilation when finding R_EDGE or F_EDGE
Mario de Sousa <msousa@fe.up.pt>
parents: 1062
diff changeset
   310
      {STAGE4_ERROR(symbol, symbol, "R_EDGE and F_EDGE declarations are not currently supported"); ERROR;}
1ac77681946f Abort compilation when finding R_EDGE or F_EDGE
Mario de Sousa <msousa@fe.up.pt>
parents: 1062
diff changeset
   311
      /* 
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   312
      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
   313
      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
   314
      current_type = NULL; 
1064
1ac77681946f Abort compilation when finding R_EDGE or F_EDGE
Mario de Sousa <msousa@fe.up.pt>
parents: 1062
diff changeset
   315
      */
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   316
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   317
    }
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
    /* 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
   320
    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
   321
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   322
    /* 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
   323
    //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
   324
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   325
    /* 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
   326
    //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
   327
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   328
    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
   329
      /* 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
   330
      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
   331
    }
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
    /* 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
   334
    /* 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
   335
    /* 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
   336
     * 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
   337
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   338
    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
   339
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   340
    /* 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
   341
    /* 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
   342
    /* 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
   343
     * 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
   344
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   345
    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
   346
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   347
    /* 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
   348
    /* 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
   349
    /* 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
   350
     * 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
   351
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   352
    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
   353
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   354
    /* 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
   355
    /* 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
   356
    /* 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
   357
     * 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
   358
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   359
    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
   360
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   361
    /* 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
   362
    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
   363
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   364
    /* 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
   365
    //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
   366
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   367
    /* 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
   368
    //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
   369
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   370
    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
   371
      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
   372
      return NULL;
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   373
    }
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   374
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   375
    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
   376
      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
   377
      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
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   380
    /* 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
   381
    /* 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
   382
    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
   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(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
   385
      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
   386
      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
   387
      current_type = NULL; 
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   388
      return NULL;
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
    /* 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
   392
    /* 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
   393
    /* 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
   394
     *   STRING [ 42 ]
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   395
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   396
    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
   397
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   398
    /* 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
   399
    /* 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
   400
    /* 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
   401
     *   WSTRING [ 42 ]
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   402
     */
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   403
    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
   404
};
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   405
    
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   406
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   407
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   408
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   409
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   410
/***********************************************************************/
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   411
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
   412
/* 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
   413
/* '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
   414
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
   415
  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
   416
    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
   417
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
   418
  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
   419
    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
   420
    
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
   421
    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
   422
      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
   423
      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
   424
      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
   425
              || 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
   426
             );
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
   427
    }
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
   428
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
   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
  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
   431
    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
   432
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
   433
  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
   434
    /* 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
   435
    /* 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
   436
     *      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
   437
     *      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
   438
     *      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
   439
     */
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
    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
   441
      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
   442
      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
   443
      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
   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
      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
   446
      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
   447
      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
   448
    }
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
    
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
   450
    /* 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
   451
    /* 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
   452
     *      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
   453
     *      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
   454
     *      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
   455
     */
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
   456
    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
   457
      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
   458
      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
   459
      
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
      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
   461
      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
   462
    }
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
    
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
   465
    /* 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
   466
    /* 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
   467
     *      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
   468
     *      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
   469
     *      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
   470
     */
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
   471
    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
   472
      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
   473
      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
   474
      
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
      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
   476
      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
   477
        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
   478
        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
   479
      }
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
   480
      
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
   481
      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
   482
      
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
   483
      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
   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
    
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
    
853
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   487
    /*********************/
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   488
    /* B 1.4 - Variables */
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   489
    /*********************/
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   490
    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
   491
      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
   492
      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
   493
         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
   494
         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
   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;
853
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   497
      return NULL;
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   498
    }
818c4ac5d64d Fix bug-fix of previous commit.
Mario de Sousa <msousa@fe.up.pt>
parents: 852
diff changeset
   499
    
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
   500
    /*************************************/
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
    /* 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
   502
    /*************************************/
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
   503
    
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
   504
    // 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
   505
    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
   506
      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
   507
      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
   508
      
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
   509
      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
   510
      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
   511
         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
   512
         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
   513
      }
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
   514
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
   515
      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
   516
      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
   517
    }
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
   518
    
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
   519
    /*  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
   520
    //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
   521
    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
   522
      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
   523
      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
   524
      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
   525
    }
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
   526
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
   527
    
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
   528
};
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
   529
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
   530
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
   531
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
   532
/***********************************************************************/
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
   533
/***********************************************************************/
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
   534
/***********************************************************************/
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
   535
/***********************************************************************/
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
   536
350
2c3c4dc34979 Support for semantic verification of calls to standard functions.
Mario de Sousa <msousa@fe.up.pt>
parents: 330
diff changeset
   537
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   538
#include "generate_c_st.cc"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   539
#include "generate_c_il.cc"
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   540
#include "generate_c_inlinefcall.cc"
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   541
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   542
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   543
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   544
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   545
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   546
1082
903e2782e405 fix bug introduced in previous commit (force literals to unsigned log long)
Mario de Sousa <msousa@fe.up.pt>
parents: 1081
diff changeset
   547
#define MILLISECOND ((unsigned long long)1000000)
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   548
#define SECOND 1000 * MILLISECOND
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   549
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   550
#define ULL_MAX std::numeric_limits<unsigned long long>::max()
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   551
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   552
/* unsigned long long -> multiply and add : time_var += interval * multiplier  */
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   553
/*  note: multiplier must be <> 0 due to overflow test                         */
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   554
#define ULL_MUL_ADD(time_var, interval, multiplier, overflow_flag) {                       \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   555
    /* Test overflow on MUL by pre-condition: If (ULL_MAX / a) < b => overflow! */         \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   556
    overflow_flag |= ((ULL_MAX / (multiplier)) < GET_CVALUE(uint64, interval));            \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   557
    /* Test overflow on ADD by pre-condition: If (ULL_MAX - a) < b => overflow! */         \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   558
    overflow_flag |= ((ULL_MAX - (GET_CVALUE(uint64, interval) * multiplier)) < time_var); \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   559
    time_var += GET_CVALUE(uint64, interval) * (multiplier);                               \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   560
}
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   561
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   562
/* long double -> multiply and add : time_var += interval * multiplier  */
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   563
#define LDB_MUL_ADD(time_var, interval, multiplier) {  \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   564
    time_var += GET_CVALUE(real64, interval) * (multiplier);               \
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   565
}
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   566
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   567
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   568
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
   569
  if (NULL == symbol) return 0;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   570
  
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   571
  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
   572
  duration_c *duration = dynamic_cast<duration_c *>(symbol);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   573
  
632
76c3d707ffa1 Adding error message when task interval value is not supported
Laurent Bessard
parents: 631
diff changeset
   574
  if ((NULL == interval) && (NULL == duration))
631
1a4f5ce62962 Adding error message when task interval value is not supported
Laurent Bessard
parents: 625
diff changeset
   575
  	  {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
   576
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   577
  if (NULL != duration) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   578
    /* 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
   579
    if (duration->neg != NULL)
631
1a4f5ce62962 Adding error message when task interval value is not supported
Laurent Bessard
parents: 625
diff changeset
   580
      {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
   581
    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
   582
  }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   583
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   584
  if (NULL != interval) {
547
dab341e80664 Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents: 522
diff changeset
   585
    /* 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
   586
      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
   587
      long double            time_ld  = 0;
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   588
      bool                   ovflow   = false;
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   589
      
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   590
      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
   591
        if      (VALID_CVALUE( int64, interval->milliseconds) &&           GET_CVALUE( int64, interval->milliseconds) < 0) ERROR; // interval elements should always be positive!
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   592
        if      (VALID_CVALUE(uint64, interval->milliseconds)) ULL_MUL_ADD(time_ull, interval->milliseconds,  MILLISECOND, ovflow)
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   593
        else if (VALID_CVALUE(real64, interval->milliseconds)) LDB_MUL_ADD(time_ld , interval->milliseconds,  MILLISECOND)
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   594
        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
   595
      }
547
dab341e80664 Fix parsing os TIME literals & rename the extract_integer() function.
mjsousa <msousa@fe.up.pt>
parents: 522
diff changeset
   596
   
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   597
      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
   598
        if      (VALID_CVALUE( int64, interval->seconds     ) &&           GET_CVALUE( int64, interval->seconds     ) < 0) ERROR; // interval elements should always be positive!
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   599
        if      (VALID_CVALUE(uint64, interval->seconds     )) ULL_MUL_ADD(time_ull, interval->seconds,       SECOND, ovflow)
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   600
        else if (VALID_CVALUE(real64, interval->seconds     )) LDB_MUL_ADD(time_ld , interval->seconds,       SECOND)
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   601
        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
   602
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   603
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   604
      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
   605
        if      (VALID_CVALUE( int64, interval->minutes     ) &&           GET_CVALUE( int64, interval->minutes     ) < 0) ERROR; // interval elements should always be positive!
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   606
        if      (VALID_CVALUE(uint64, interval->minutes     )) ULL_MUL_ADD(time_ull, interval->minutes,       SECOND * 60, ovflow)
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   607
        else if (VALID_CVALUE(real64, interval->minutes     )) LDB_MUL_ADD(time_ld , interval->minutes,       SECOND * 60)
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   608
        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
   609
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   610
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   611
      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
   612
        if      (VALID_CVALUE( int64, interval->hours       ) &&           GET_CVALUE( int64, interval->hours       ) < 0) ERROR; // interval elements should always be positive!
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   613
        if      (VALID_CVALUE(uint64, interval->hours       )) ULL_MUL_ADD(time_ull, interval->hours,         SECOND * 60 * 60, ovflow)
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   614
        else if (VALID_CVALUE(real64, interval->hours       )) LDB_MUL_ADD(time_ld , interval->hours,         SECOND * 60 * 60)
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   615
        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
   616
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   617
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   618
      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
   619
        if      (VALID_CVALUE( int64, interval->days        ) &&           GET_CVALUE( int64, interval->days        ) < 0) ERROR; // interval elements should always be positive!
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   620
        if      (VALID_CVALUE(uint64, interval->days        )) ULL_MUL_ADD(time_ull, interval->days,          SECOND * 60 * 60 * 24, ovflow)
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   621
        else if (VALID_CVALUE(real64, interval->days        )) LDB_MUL_ADD(time_ld , interval->days,          SECOND * 60 * 60 * 24)
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   622
        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
   623
      }
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   624
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   625
      /* Test overflow on ADD by pre-condition: If (ULL_MAX - a) < b => overflow! */
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   626
      ovflow |= ((ULL_MAX - time_ull) < (unsigned long long)time_ld);
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   627
      time_ull += time_ld;
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   628
      
1081
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   629
      if (ovflow) {
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   630
        /* time is being stored in ns resolution (MILLISECOND #define is set to 1000000)    */
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   631
        /* time is being stored in unsigned long long (ISO C99 guarantees at least 64 bits) */
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   632
        /* 2⁶64ns works out to around 584.5 years, assuming 365.25 days per year            */
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   633
        STAGE4_ERROR(symbol, symbol, "Internal overflow calculating task interval (must be < 584 years).");
d8ed548e2f9b return storage of task interval back to 1 ns resolution (when calculating least common multiple et. al. of task intervals).
Mario de Sousa <msousa@fe.up.pt>
parents: 1078
diff changeset
   634
      }
1078
81e2a100db14 Test for overflow when translating task periods/intervals to integer variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1077
diff changeset
   635
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   636
      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
   637
  };
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
   638
  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
   639
  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
   640
}
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   641
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   642
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   643
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   644
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   645
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   646
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   647
class calculate_common_ticktime_c: public iterator_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   648
  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
   649
    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
   650
    unsigned long long least_common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   651
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   652
  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
   653
    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
   654
      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
   655
      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
   656
    }
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
   657
    
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
   658
    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
   659
      unsigned long long c = a % b;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   660
      if (c == 0)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   661
        return b;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   662
      else
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   663
        return euclide(b, c);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   664
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   665
    
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
   666
    void update_ticktime(unsigned long long time) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   667
      if (common_ticktime == 0)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   668
        common_ticktime = time;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   669
      else if (time > common_ticktime)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   670
        common_ticktime = euclide(time, common_ticktime);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   671
      else
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   672
        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
   673
      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
   674
        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
   675
      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
   676
        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
   677
    }
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
   678
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
   679
    unsigned long long get_common_ticktime(void) {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   680
      return common_ticktime;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   681
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   682
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
   683
    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
   684
      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
   685
      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
   686
        ERROR;
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
   687
      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
   688
    }
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
   689
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   690
/*  TASK task_name task_initialization */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   691
//SYM_REF2(task_configuration_c, task_name, task_initialization)  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   692
    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
   693
      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
   694
    	  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
   695
    	  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
   696
    	  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
   697
      }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   698
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   699
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   700
};    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   701
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
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   705
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   706
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   707
/* 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
   708
class generate_c_SFC_IL_ST_c: public null_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   709
  private:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   710
    stage4out_c *s4o_ptr;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   711
    symbol_c *scope;
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   712
    symbol_c *fbname;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   713
    const char *variable_prefix;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   714
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   715
  public:
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   716
    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
   717
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   718
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   719
    /* 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
   720
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   721
    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
   722
    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
   723
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   724
    /*********************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   725
    /* B.1.6  Sequential function chart elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   726
    /*********************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   727
    /*| sequential_function_chart sfc_network*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   728
    void *visit(sequential_function_chart_c * symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   729
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   730
    /****************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   731
    /* B.2 - Language IL (Instruction List) */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   732
    /****************************************/
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
    /* B 2.1 Instructions and Operands */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   736
    /***********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   737
    /*| instruction_list il_instruction */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   738
    void *visit(instruction_list_c *symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   739
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   740
    /* Remainder implemented in generate_c_il_c... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   741
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   742
    /***************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   743
    /* B.3 - Language ST (Structured Text) */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   744
    /***************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   745
    /***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   746
    /* B 3.1 - Expressions */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   747
    /***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   748
    /* Implemented in generate_c_st_c */
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
    /* B 3.2 Statements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   752
    /********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   753
    void *visit(statement_list_c *symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   754
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   755
/* Remainder implemented in generate_c_st_c... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   756
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   757
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   758
#include "generate_c_sfc.cc"
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   759
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   760
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
   761
  if (NULL == scope) ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   762
  this->s4o_ptr = s4o_ptr;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   763
  this->scope = scope;
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
   764
  this->fbname = name;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   765
  this->variable_prefix = variable_prefix;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   766
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   767
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   768
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
   769
  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
   770
  generate_c_sfc.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   771
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   772
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   773
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   774
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
   775
  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
   776
  generate_c_il.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   777
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   778
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   779
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   780
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
   781
  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
   782
  generate_c_st.generate(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   783
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   784
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   785
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   786
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   787
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   788
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   789
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   790
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   791
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   792
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
   793
377
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
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   796
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   797
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   798
/***********************************************************************/
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
   799
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
   800
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
   801
  /* 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
   802
   * 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   803
   *       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
   804
   */ 
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   805
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
   806
  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
   807
    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
   808
      /* 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
   809
       * 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
   810
       * 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
   811
       */
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   812
      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
   813
      /* 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
   814
      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
   815
      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
   816
      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
   817
      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
   818
      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
   819
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   820
      /* 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
   821
      /* 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
   822
      /* 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
   823
      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
   824
      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
   825
      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
   826
      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
   827
      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
   828
    }
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   829
  
214d3fdee596 fixing C code generation of return_statement_c and exit_statement_c
Mario de Sousa <msousa@fe.up.pt>
parents: 279
diff changeset
   830
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
   831
    /*************/
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   832
    /* 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
   833
    /*************/
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
   834
  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
   835
    /* 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
   836
     *         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
   837
     *                     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
   838
     *         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
   839
     *                     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
   840
     */
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   841
    /*   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
   842
    /* | 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
   843
    static void handle_function(function_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
   844
      generate_c_vardecl_c          *vardecl = NULL;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
   845
      generate_c_base_and_typeid_c   print_base(&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
   846
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   847
      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
   848
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   849
      /* (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
   850
      /* (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
   851
      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
   852
      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
   853
      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
   854
      /* (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
   855
      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
   856
      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
   857
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   858
      /* (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
   859
      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
   860
      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
   861
                                         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
   862
                                         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
   863
                                         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
   864
                                         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
   865
                                         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
   866
                                         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
   867
      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
   868
      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
   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
      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
   871
      
c3edb882a4b2 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
      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
   873
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   874
      /* 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
   875
      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
   876
        {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
   877
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   878
      /* 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
   879
      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
   880
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   881
      /* (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
   882
      /* (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
   883
      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
   884
      
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   885
      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
   886
                    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
   887
                    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
   888
                    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
   889
                    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
   890
                    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
   891
      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
   892
      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
   893
    
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
   894
      /* (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
   895
      /* It will have the same name as the function itself! */
1016
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   896
      /* NOTE: matiec supports a non-standard syntax, in which functions do not return a value
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   897
       *       (declared as returning the special non-standard datatype VOID)
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   898
       *       e.g.:   FUNCTION foo: VOID
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   899
       *                ...
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   900
       *               END_FUNCTION
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   901
       *       
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   902
       *       These functions cannot return any value, so they do not need a variable to
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   903
       *       store the return value.
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   904
       *       Note that any attemot to sto a value in the implicit variable
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   905
       *       e.g.:   FUNCTION foo: VOID
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   906
       *                ...
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   907
       *                 foo := 42;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   908
       *               END_FUNCTION
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   909
       *       will always return a datatype incompatilibiyt error in stage 3 of matiec, 
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   910
       *       so it is safe for stage 4 to assume that this return variable will never be needed
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   911
       *       if the function's return type is VOID.
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   912
       */
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   913
      if (!get_datatype_info_c::is_VOID(symbol->type_name->datatype)) { // only print return variable if return datatype is not VOID
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   914
        s4o.print(s4o.indent_spaces);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   915
        symbol->type_name->accept(print_base); /* return type */
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   916
        s4o.print(" ");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   917
        symbol->derived_function_name->accept(print_base);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   918
        s4o.print(" = ");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   919
        {
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   920
          /* get the default value of this variable's type */
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   921
          symbol_c *default_value = type_initial_value_c::get(symbol->type_name);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   922
          if (default_value == NULL) ERROR;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   923
          initialization_analyzer_c initialization_analyzer(default_value);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   924
          switch (initialization_analyzer.get_initialization_type()) {
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   925
            case initialization_analyzer_c::struct_it:
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   926
              {
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   927
                generate_c_structure_initialization_c *structure_initialization = new generate_c_structure_initialization_c(&s4o);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   928
                structure_initialization->init_structure_default(symbol->type_name);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   929
                structure_initialization->init_structure_values(default_value);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   930
                delete structure_initialization;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   931
              }
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   932
              break;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   933
            case initialization_analyzer_c::array_it:
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   934
              {
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   935
                generate_c_array_initialization_c *array_initialization = new generate_c_array_initialization_c(&s4o);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   936
                array_initialization->init_array_size(symbol->type_name);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   937
                array_initialization->init_array_values(default_value);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   938
                delete array_initialization;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   939
              }
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   940
              break;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   941
            default:
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   942
              default_value->accept(print_base);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   943
              break;
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   944
          }
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
   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
      }
c3edb882a4b2 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
      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
   948
      
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   949
      
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   950
      // Only generate the code that controls the execution of the function's body if the
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   951
      // function contains a declaration of both the EN and ENO variables
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   952
      search_var_instance_decl_c search_var(symbol);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   953
      identifier_c  en_var("EN");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   954
      identifier_c eno_var("ENO");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   955
      if (   (search_var.get_vartype(& en_var) == search_var_instance_decl_c::input_vt)
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   956
          && (search_var.get_vartype(&eno_var) == search_var_instance_decl_c::output_vt)) {
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   957
        s4o.print(s4o.indent_spaces + "// Control execution\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   958
        s4o.print(s4o.indent_spaces + "if (!EN) {\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   959
        s4o.indent_right();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   960
        s4o.print(s4o.indent_spaces + "if (__ENO != NULL) {\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   961
        s4o.indent_right();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   962
        s4o.print(s4o.indent_spaces + "*__ENO = __BOOL_LITERAL(FALSE);\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   963
        s4o.indent_left();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   964
        s4o.print(s4o.indent_spaces + "}\n");
1016
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   965
        if (!get_datatype_info_c::is_VOID(symbol->type_name->datatype)) { // only print return variable if return datatype is not VOID
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   966
          s4o.print(s4o.indent_spaces + "return ");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   967
          symbol->derived_function_name->accept(print_base);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   968
          s4o.print(";\n");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   969
        }
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   970
        s4o.indent_left();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   971
        s4o.print(s4o.indent_spaces + "}\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
   972
      }
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
   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
      /* (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
   975
      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
   976
      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
   977
      
c3edb882a4b2 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
      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
   979
      
c3edb882a4b2 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
      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
   981
                    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
   982
                    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
   983
                    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
   984
                    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
   985
      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
   986
      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
   987
      
1016
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   988
      if (!get_datatype_info_c::is_VOID(symbol->type_name->datatype)) { // only print 'return <fname>' if return datatype is not VOID
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   989
        s4o.print(s4o.indent_spaces + "return ");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   990
        symbol->derived_function_name->accept(print_base);
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   991
        s4o.print(";\n");
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   992
      }
91bef6704b44 Add support for functions returning VOID (i.e. non-standard extension, allowing functions that do not return any data)
mjsousa
parents: 1011
diff changeset
   993
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
   994
      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
   995
      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
   996
    
c3edb882a4b2 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
      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
   998
    }
c3edb882a4b2 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
    
c3edb882a4b2 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
    
c3edb882a4b2 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
    /*******************/
c3edb882a4b2 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
    /* 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
  1003
    /*******************/
c3edb882a4b2 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
  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
  1005
    /* 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
  1006
     *         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
  1007
     *                     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
  1008
     *         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
  1009
     *                     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
  1010
     */
c3edb882a4b2 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
    /*  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
  1012
    //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
  1013
    static void handle_function_block(function_block_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1014
      generate_c_vardecl_c          *vardecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1015
      generate_c_sfcdecl_c          *sfcdecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1016
      generate_c_base_and_typeid_c   print_base(&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
  1017
      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
  1018
    
c3edb882a4b2 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
      /* (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
  1020
      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
  1021
        /* (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
  1022
        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
  1023
        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
  1024
        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
  1025
        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
  1026
        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
  1027
c3edb882a4b2 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
        /* (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
  1029
        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
  1030
        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
  1031
                                           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
  1032
                                           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
  1033
                                           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
  1034
                                           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
  1035
                                           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
  1036
                                           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
  1037
        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
  1038
        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
  1039
        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
  1040
c3edb882a4b2 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
        /* (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
  1042
        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
  1043
        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
  1044
                                           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
  1045
                                           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
  1046
                                           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
  1047
                                           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
  1048
                                           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
  1049
        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
  1050
        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
  1051
        
c3edb882a4b2 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
        /* (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
  1053
        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
  1054
        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
  1055
        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
  1056
        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
  1057
      
c3edb882a4b2 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
        /* (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
  1059
        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
  1060
        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
  1061
        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
  1062
        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
  1063
      }
c3edb882a4b2 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
      
c3edb882a4b2 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
      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
  1066
        /* (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
  1067
        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
  1068
        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
  1069
        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
  1070
      }
c3edb882a4b2 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
      
c3edb882a4b2 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
      /* (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
  1073
      /* (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
  1074
      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
  1075
      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
  1076
      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
  1077
      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
  1078
    
c3edb882a4b2 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
      /* 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
  1080
      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
  1081
      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
  1082
      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
  1083
      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
  1084
c3edb882a4b2 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
      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
  1086
        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
  1087
      } 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
  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
        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
  1090
      
c3edb882a4b2 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
        /* (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
  1092
        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
  1093
        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
  1094
                                           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
  1095
                                           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
  1096
                                           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
  1097
                                           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
  1098
                                           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
  1099
                                           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
  1100
                                           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
  1101
                                           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
  1102
                                           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
  1103
        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
  1104
        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
  1105
        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
  1106
            
c3edb882a4b2 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
        /* (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
  1108
        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
  1109
        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
  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
        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
  1112
        s4o.print(s4o.indent_spaces + "}\n\n");
920
4369ce5e687f Fix bug (introduced a few commits ago) when generating SFC actions that are mapped onto variables --> Make generate_sfcdecl_c stateless (i.e. does not depend on order by which it is called).
mjsousa
parents: 918
diff changeset
  1113
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
  1114
        /* (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
  1115
        /* (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
  1116
        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
  1117
      
c3edb882a4b2 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
        /* (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
  1119
        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
  1120
        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
  1121
      }
c3edb882a4b2 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
      /* (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
  1124
      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
  1125
      /* 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
  1126
      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
  1127
      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
  1128
      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
  1129
      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
  1130
      /* 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
  1131
      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
  1132
      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
  1133
      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
  1134
      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
  1135
c3edb882a4b2 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
      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
  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
      } 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
  1139
        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
  1140
        s4o.indent_right();
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1141
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1142
        // Only generate the code that controls the execution of the function's body if the
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1143
        // function contains a declaration of both the EN and ENO variables
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1144
        search_var_instance_decl_c search_var(symbol);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1145
        identifier_c  en_var("EN");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1146
        identifier_c eno_var("ENO");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1147
        if (   (search_var.get_vartype(& en_var) == search_var_instance_decl_c::input_vt)
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1148
            && (search_var.get_vartype(&eno_var) == search_var_instance_decl_c::output_vt)) {
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1149
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1150
          s4o.print(s4o.indent_spaces + "// Control execution\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1151
          s4o.print(s4o.indent_spaces + "if (!");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1152
          s4o.print(GET_VAR);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1153
          s4o.print("(");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1154
          s4o.print(FB_FUNCTION_PARAM);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1155
          s4o.print("->EN)) {\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1156
          s4o.indent_right();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1157
          s4o.print(s4o.indent_spaces);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1158
          s4o.print(SET_VAR);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1159
          s4o.print("(");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1160
          s4o.print(FB_FUNCTION_PARAM);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1161
          s4o.print("->,ENO,,__BOOL_LITERAL(FALSE));\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1162
          s4o.print(s4o.indent_spaces + "return;\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1163
          s4o.indent_left();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1164
          s4o.print(s4o.indent_spaces + "}\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1165
          s4o.print(s4o.indent_spaces + "else {\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1166
          s4o.indent_right();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1167
          s4o.print(s4o.indent_spaces);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1168
          s4o.print(SET_VAR);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1169
          s4o.print("(");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1170
          s4o.print(FB_FUNCTION_PARAM);
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1171
          s4o.print("->,ENO,,__BOOL_LITERAL(TRUE));\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1172
          s4o.indent_left();
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1173
          s4o.print(s4o.indent_spaces + "}\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1174
        }
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
  1175
      
c3edb882a4b2 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
        /* (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
  1177
        /* 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
  1178
        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
  1179
        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
  1180
                                           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
  1181
                                           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
  1182
        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
  1183
        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
  1184
        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
  1185
      
c3edb882a4b2 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
        /* (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
  1187
        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
  1188
        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
  1189
        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
  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 + "} // ");
c3edb882a4b2 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
        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
  1194
        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
  1195
        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
  1196
      
c3edb882a4b2 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
        /* (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
  1198
        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
  1199
        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
  1200
      
c3edb882a4b2 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
        /* (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
  1202
        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
  1203
        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
  1204
      
c3edb882a4b2 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.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
  1206
        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
  1207
      }
c3edb882a4b2 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
      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
  1209
    }
c3edb882a4b2 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
    
c3edb882a4b2 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
    
c3edb882a4b2 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
    /* 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
  1214
    /************/
c3edb882a4b2 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
  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
  1216
    /* 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
  1217
     *         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
  1218
     *                     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
  1219
     *         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
  1220
     *                     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
  1221
     */
c3edb882a4b2 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
    /*  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
  1223
    //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
  1224
    static void handle_program(program_declaration_c *symbol, stage4out_c &s4o, bool print_declaration) {
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1225
      generate_c_vardecl_c          *vardecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1226
      generate_c_sfcdecl_c          *sfcdecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1227
      generate_c_base_and_typeid_c   print_base(&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
  1228
      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
  1229
    
c3edb882a4b2 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
      /* (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
  1231
      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
  1232
        /* (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
  1233
        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
  1234
        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
  1235
        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
  1236
        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
  1237
        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
  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
        /* (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
  1240
        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
  1241
        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
  1242
                                           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
  1243
                                           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
  1244
                                           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
  1245
                                           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
  1246
        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
  1247
        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
  1248
        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
  1249
  
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
  1250
        /* (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
  1251
        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
  1252
        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
  1253
                      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
  1254
                      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
  1255
                      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
  1256
                      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
  1257
                      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
  1258
        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
  1259
        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
  1260
      
c3edb882a4b2 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
        /* (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
  1262
        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
  1263
        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
  1264
        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
  1265
        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
  1266
        
c3edb882a4b2 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
        /* (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
  1268
        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
  1269
        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
  1270
        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
  1271
        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
  1272
      }
c3edb882a4b2 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
      
c3edb882a4b2 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
      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
  1275
        /* (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
  1276
        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
  1277
        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
  1278
        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
  1279
      }
c3edb882a4b2 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
    
c3edb882a4b2 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
      /* (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
  1282
      /* (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
  1283
      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
  1284
      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
  1285
      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
  1286
      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
  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
      /* 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
  1289
      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
  1290
      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
  1291
      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
  1292
      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
  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
      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
  1295
        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
  1296
      } 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
  1297
        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
  1298
        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
  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
        /* (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
  1301
        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
  1302
        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
  1303
                                           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
  1304
                                           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
  1305
                                           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
  1306
                                           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
  1307
                                           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
  1308
                                           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
  1309
                                           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
  1310
        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
  1311
        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
  1312
        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
  1313
      
c3edb882a4b2 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
        /* (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
  1315
        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
  1316
        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
  1317
        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
  1318
      
c3edb882a4b2 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.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
  1320
        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
  1321
      }
c3edb882a4b2 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
    
c3edb882a4b2 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
      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
  1324
        /* (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
  1325
        /* (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
  1326
        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
  1327
        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
  1328
      
c3edb882a4b2 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
        /* (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
  1330
        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
  1331
        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
  1332
      }
c3edb882a4b2 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
      
c3edb882a4b2 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
      /* (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
  1335
      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
  1336
      /* 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
  1337
      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
  1338
      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
  1339
      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
  1340
      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
  1341
      /* 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
  1342
      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
  1343
      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
  1344
      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
  1345
      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
  1346
c3edb882a4b2 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
      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
  1348
        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
  1349
      } 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
  1350
        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
  1351
        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
  1352
          
c3edb882a4b2 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
        /* (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
  1354
        /* 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
  1355
        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
  1356
        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
  1357
                                           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
  1358
                                           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
  1359
        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
  1360
        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
  1361
        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
  1362
      
c3edb882a4b2 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
        /* (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
  1364
        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
  1365
        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
  1366
        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
  1367
        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
  1368
        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
  1369
        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
  1370
        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
  1371
        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
  1372
        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
  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
        /* (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
  1375
        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
  1376
        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
  1377
        
c3edb882a4b2 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
        /* (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
  1379
        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
  1380
        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
  1381
      
c3edb882a4b2 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.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
  1383
        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
  1384
      }  
c3edb882a4b2 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
      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
  1386
    }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1387
}; /* generate_c_pous_c */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1388
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
  1389
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1390
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1391
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1392
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1393
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1394
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1395
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1396
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1397
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1398
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1399
class generate_c_config_c: public generate_c_base_and_typeid_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
  1400
    private:
860
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1401
    stage4out_c &s4o_incl;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1402
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1403
    public:
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1404
    generate_c_config_c(stage4out_c *s4o_ptr, stage4out_c *s4o_incl_ptr)
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1405
      : generate_c_base_and_typeid_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
  1406
    };
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1407
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1408
    virtual ~generate_c_config_c(void) {}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1409
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1410
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1411
      initprotos_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1412
      initdeclare_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1413
      runprotos_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1414
      rundeclare_dt
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1415
    } declaretype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1416
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1417
    declaretype_t wanted_declaretype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1418
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1419
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1420
public:
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1421
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1422
/* 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
  1423
/********************/
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1424
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
  1425
    s4o.enable_output();
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1426
    s4o_incl.enable_output();
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1427
    return NULL;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1428
}
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1429
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1430
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
  1431
    s4o.disable_output();
7669a8d43c11 Code cleanup (part 2): generate_typedecl_c now only prints to POUS.h !
mjsousa
parents: 856
diff changeset
  1432
    s4o_incl.disable_output();    
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1433
    return NULL;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1434
}
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1435
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1436
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1437
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1438
/* B 1.7 Configuration elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1439
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1440
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1441
CONFIGURATION configuration_name
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1442
   optional_global_var_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1443
   (resource_declaration_list | single_resource_declaration)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1444
   optional_access_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1445
   optional_instance_specific_initializations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1446
END_CONFIGURATION
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1447
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1448
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1449
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
  1450
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1451
void *visit(configuration_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1452
  generate_c_vardecl_c *vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1453
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1454
  /* Insert the header... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1455
  s4o.print("/*******************************************/\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1456
  s4o.print("/*     FILE GENERATED BY iec2c             */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1457
  s4o.print("/* Editing this file is not recommended... */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1458
  s4o.print("/*******************************************/\n\n");
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1459
  
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1460
  if (runtime_options.disable_implicit_en_eno) {
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1461
    // If we are not generating the EN and ENO parameters for functions and FB,
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1462
    //   then make sure we use the standard library version compiled without these parameters too!
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1463
    s4o.print("#ifndef DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1464
    s4o.print("#define DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1465
    s4o.print("#endif\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1466
  }
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1467
  
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1468
  s4o.print("#include \"iec_std_lib.h\"\n\n");
257
90782e241346 Huge change.
Mario de Sousa <msousa@fe.up.pt>
parents: 202
diff changeset
  1469
  s4o.print("#include \"accessor.h\"\n\n"); 
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1470
  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
  1471
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1472
  /* (A) configuration declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1473
  /* (A.1) configuration name in comment */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1474
  s4o.print("// CONFIGURATION ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1475
  symbol->configuration_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1476
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1477
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1478
  /* (A.2) Global variables */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1479
  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
  1480
                                     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
  1481
                                     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
  1482
                                     symbol->configuration_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1483
  vardecl->print(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1484
  delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1485
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1486
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1487
  /* (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
  1488
  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
  1489
                                     generate_c_vardecl_c::globalprototype_vf,
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1490
                                     generate_c_vardecl_c::global_vt,
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1491
                                     symbol->configuration_name);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1492
  vardecl->print(symbol);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1493
  delete vardecl;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1494
  s4o_incl.print("\n");
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1495
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1496
  /* (B) Initialisation Function */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1497
  /* (B.1) Ressources initialisation protos... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1498
  wanted_declaretype = initprotos_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1499
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1500
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1501
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1502
  /* (B.2) Initialisation function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1503
  s4o.print(s4o.indent_spaces + "void config");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1504
  s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1505
  s4o.print("(void) {\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1506
  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
  1507
  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
  1508
  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
  1509
  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
  1510
  s4o.print("retain = 0;\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1511
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1512
  /* (B.3) Global variables initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1513
  s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1514
  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
  1515
                                     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
  1516
                                     generate_c_vardecl_c::global_vt,
199bdfe36166 Fix code generation about __INIT_GLOBAL_LOCATED.
Conti Manuele <manuele.conti@alice.it>
parents: 522
diff changeset
  1517
                                     symbol->configuration_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1518
  vardecl->print(symbol);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1519
  delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1520
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1521
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1522
  /* (B.3) Resources initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1523
  wanted_declaretype = initdeclare_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1524
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1525
  
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1526
  s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1527
  s4o.print(s4o.indent_spaces + "}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1528
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1529
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1530
  /* (C) Run Function*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1531
  /* (C.1) Resources run functions protos... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1532
  wanted_declaretype = runprotos_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1533
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1534
  s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1535
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1536
  /* (C.2) Run function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1537
  s4o.print(s4o.indent_spaces + "void config");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1538
  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
  1539
  s4o.print("(unsigned long tick) {\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1540
  s4o.indent_right();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1541
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1542
  /* (C.3) Resources initializations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1543
  wanted_declaretype = rundeclare_dt;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1544
  symbol->resource_declarations->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1545
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1546
  /* (C.3) Close Public Function body */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1547
  s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1548
  s4o.print(s4o.indent_spaces + "}\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1549
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1550
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1551
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1552
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1553
void *visit(resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1554
  if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1555
    s4o.print(s4o.indent_spaces + "void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1556
    symbol->resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1557
    if (wanted_declaretype == initprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1558
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1559
      s4o.print("(void);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1560
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1561
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1562
      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
  1563
      s4o.print("(unsigned long tick);\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1564
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1565
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1566
  if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1567
    s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1568
    symbol->resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1569
    if (wanted_declaretype == initdeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1570
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1571
      s4o.print("();\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1572
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1573
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1574
      s4o.print(FB_RUN_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1575
      s4o.print("(tick);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1576
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1577
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1578
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1579
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1580
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1581
void *visit(single_resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1582
  if (wanted_declaretype == initprotos_dt || wanted_declaretype == runprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1583
    s4o.print(s4o.indent_spaces + "void RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1584
    if (wanted_declaretype == initprotos_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1585
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1586
      s4o.print("(void);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1587
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1588
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1589
      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
  1590
      s4o.print("(unsigned long tick);\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1591
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1592
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1593
  if (wanted_declaretype == initdeclare_dt || wanted_declaretype == rundeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1594
    s4o.print(s4o.indent_spaces + "RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1595
    if (wanted_declaretype == initdeclare_dt) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1596
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1597
      s4o.print("();\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1598
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1599
    else {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1600
      s4o.print(FB_RUN_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1601
      s4o.print("(tick);\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1602
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1603
  }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1604
  return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1605
}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1606
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1607
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1608
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  1609
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1610
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1611
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1612
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1613
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1614
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1615
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1616
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1617
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1618
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1619
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1620
class generate_c_resources_c: public generate_c_base_and_typeid_c {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1621
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1622
  search_var_instance_decl_c *search_config_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1623
  search_var_instance_decl_c *search_resource_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1624
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1625
  private:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1626
    /* 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
  1627
    symbol_c *current_configuration;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1628
    symbol_c *current_resource_name;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1629
    symbol_c *current_task_name;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1630
    symbol_c *current_global_vars;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1631
    bool configuration_name;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1632
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1633
  public:
1039
52f63e622604 fix wrong common_ticktime if task interval is greater than 4.3 seconds
andrej.skvortzov@gmail.com
parents: 1021
diff changeset
  1634
    generate_c_resources_c(stage4out_c *s4o_ptr, symbol_c *config_scope, symbol_c *resource_scope, unsigned long long time)
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  1635
      : generate_c_base_and_typeid_c(s4o_ptr) {
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1636
      current_configuration = config_scope;
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  1637
      search_config_instance   = new search_var_instance_decl_c(config_scope);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1638
      search_resource_instance = new search_var_instance_decl_c(resource_scope);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1639
      common_ticktime = time;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1640
      current_resource_name = NULL;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1641
      current_task_name = NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1642
      current_global_vars = NULL;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1643
      configuration_name = false;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1644
    };
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1645
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1646
    virtual ~generate_c_resources_c(void) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1647
      delete search_config_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1648
      delete search_resource_instance;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1649
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1650
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1651
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1652
      declare_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1653
      init_dt,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1654
      run_dt
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1655
    } declaretype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1656
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1657
    declaretype_t wanted_declaretype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1658
594
c8092e909886 Clean up code (remove parsing of integers in stage 4).
Mario de Sousa <msousa@fe.up.pt>
parents: 592
diff changeset
  1659
    unsigned long long common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1660
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1661
    const char *current_program_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1662
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1663
    typedef enum {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1664
      assign_at,
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1665
      send_at
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1666
    } assigntype_t;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1667
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1668
    assigntype_t wanted_assigntype;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1669
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
  1670
    /* 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
  1671
    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
  1672
    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
  1673
    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
  1674
    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
  1675
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
  1676
    /* 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
  1677
    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
  1678
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
  1679
    void *print_retain(void) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1680
      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
  1681
      switch (current_varqualifier) {
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1682
        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
  1683
          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
  1684
          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
  1685
        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
  1686
          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
  1687
          break;
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1688
        default:
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1689
          s4o.print("retain");
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1690
          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
  1691
      }
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
      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
  1693
    }
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
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1695
    /*************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1696
    /* B.1 - Common elements */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1697
    /*************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1698
    /*******************************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1699
    /* 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
  1700
    /*******************************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1701
    void *visit(identifier_c *symbol) {
958
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1702
      if (configuration_name)  s4o.print(symbol->value);
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1703
      else                     generate_c_base_c::visit(symbol);
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1704
      return NULL;
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1705
    }
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1706
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1707
    /********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1708
    /* 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
  1709
    /********************/
1058
5b54ecd4303b delete unused variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1049
diff changeset
  1710
    void *visit(enable_code_generation_pragma_c * symbol)   {s4o.enable_output();  return NULL;}
5b54ecd4303b delete unused variable.
Mario de Sousa <msousa@fe.up.pt>
parents: 1049
diff changeset
  1711
    void *visit(disable_code_generation_pragma_c * symbol)  {s4o.disable_output(); return 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
  1712
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  1713
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
  1714
    /******************************************/
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
  1715
    /* 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
  1716
    /******************************************/
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
  1717
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
  1718
    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
  1719
      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
  1720
      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
  1721
    }
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
  1722
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
  1723
    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
  1724
      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
  1725
      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
  1726
    }
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
  1727
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
  1728
    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
  1729
      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
  1730
      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
  1731
    }
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
  1732
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1733
    /********************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1734
    /* B 1.7 Configuration elements */
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1735
    /********************************/
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1736
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1737
    void *visit(configuration_declaration_c *symbol) {
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1738
      return symbol->configuration_name->accept(*this);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1739
    }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1740
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1741
/*
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1742
RESOURCE resource_name ON resource_type_name
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1743
   optional_global_var_declarations
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1744
   single_resource_declaration
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1745
END_RESOURCE
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1746
*/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1747
// 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
  1748
    void *visit(resource_declaration_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1749
      current_resource_name = symbol->resource_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1750
      current_global_vars = symbol->global_var_declarations;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1751
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1752
      symbol->resource_declaration->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1753
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1754
      current_resource_name = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1755
      current_global_vars = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1756
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1757
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1758
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1759
/* task_configuration_list program_configuration_list */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1760
// SYM_REF2(single_resource_declaration_c, task_configuration_list, program_configuration_list)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1761
    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
  1762
      bool single_resource = current_resource_name == NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1763
      if (single_resource)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1764
        current_resource_name = new identifier_c("RESOURCE");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1765
      generate_c_vardecl_c *vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1766
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1767
      /* Insert the header... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1768
      s4o.print("/*******************************************/\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1769
      s4o.print("/*     FILE GENERATED BY iec2c             */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1770
      s4o.print("/* Editing this file is not recommended... */\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1771
      s4o.print("/*******************************************/\n\n");
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1772
  
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1773
      if (runtime_options.disable_implicit_en_eno) {
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1774
        // If we are not generating the EN and ENO parameters for functions and FB,
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1775
        //   then make sure we use the standard library version compiled without these parameters too!
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1776
        s4o.print("#ifndef DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1777
        s4o.print("#define DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1778
        s4o.print("#endif\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1779
      }
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  1780
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1781
      s4o.print("#include \"iec_std_lib.h\"\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1782
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1783
      /* (A) resource declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1784
      /* (A.1) resource name in comment */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1785
      s4o.print("// RESOURCE ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1786
      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
  1787
      s4o.print("\n\n");
74640e3c7f53 Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents: 112
diff changeset
  1788
      
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
  1789
      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
  1790
396
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1791
      s4o.print("#include \"accessor.h\"\n");
397
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  1792
      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
  1793
      s4o.print("#include \"");
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1794
      configuration_name = true;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1795
      current_configuration->accept(*this);
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1796
      configuration_name = false;
155560bfe837 Fixing bug with external variables refering to global variables defined in configurations
laurent
parents: 392
diff changeset
  1797
      s4o.print(".h\"\n");
217
f5dfadf5de54 Adding support for declare, init, get and set macros
laurent
parents: 210
diff changeset
  1798
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1799
      /* (A.2) Global variables... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1800
      if (current_global_vars != NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1801
        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
  1802
                                           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
  1803
                                           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
  1804
                                           current_resource_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1805
        vardecl->print(current_global_vars);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1806
        delete vardecl;
120
74640e3c7f53 Bug with D and L action qualifier and timing management in SFC generated fixed
lbessard
parents: 112
diff changeset
  1807
        s4o.print("\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1808
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1809
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1810
      /* (A.3) POUs inclusion */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1811
      s4o.print("#include \"POUS.c\"\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1812
      
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1813
      wanted_declaretype = declare_dt;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1814
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1815
      /* (A.4) Resource programs declaration... */
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1816
      symbol->task_configuration_list->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1817
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1818
      /* (A.5) Resource programs declaration... */
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1819
      symbol->program_configuration_list->accept(*this);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1820
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1821
      s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1822
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1823
      /* (B) resource initialisation function... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1824
      /* (B.1) initialisation function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1825
      s4o.print("void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1826
      current_resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1827
      s4o.print(FB_INIT_SUFFIX);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1828
      s4o.print("(void) {\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1829
      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
  1830
      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
  1831
      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
  1832
      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
  1833
      s4o.print("retain = 0;\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1834
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1835
      /* (B.2) Global variables initialisations... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1836
      if (current_global_vars != NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1837
        s4o.print(s4o.indent_spaces);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1838
        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
  1839
                                           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
  1840
                                           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
  1841
                                           current_resource_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1842
        vardecl->print(current_global_vars);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1843
        delete vardecl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1844
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1845
      s4o.print("\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1846
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1847
      wanted_declaretype = init_dt;
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1848
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1849
      /* (B.3) Tasks initialisations... */
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1850
      symbol->task_configuration_list->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1851
      
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1852
      /* (B.4) Resource programs initialisations... */
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1853
      symbol->program_configuration_list->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1854
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1855
      s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1856
      s4o.print("}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1857
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1858
      /* (C) Resource run function... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1859
      /* (C.1) Run function name... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1860
      s4o.print("void ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1861
      current_resource_name->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1862
      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
  1863
      s4o.print("(unsigned long tick) {\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1864
      s4o.indent_right();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1865
      
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1866
      wanted_declaretype = run_dt;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1867
      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1868
      /* (C.2) Task management... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1869
      symbol->task_configuration_list->accept(*this);
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.3) Program run declaration... */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1872
      symbol->program_configuration_list->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1873
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1874
      s4o.indent_left();
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1875
      s4o.print("}\n\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1876
      
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1877
      if (single_resource) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1878
        delete current_resource_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1879
        current_resource_name = NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1880
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1881
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1882
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1883
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1884
/*  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
  1885
//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
  1886
    void *visit(program_configuration_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1887
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1888
        case declare_dt:
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1889
          s4o.print(s4o.indent_spaces);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1890
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1891
          s4o.print(" ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1892
          current_resource_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1893
          s4o.print("__");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1894
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1895
          s4o.print(";\n#define ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1896
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1897
          s4o.print(" ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1898
          current_resource_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1899
          s4o.print("__");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1900
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1901
          s4o.print("\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1902
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1903
        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
  1904
          if (symbol->retain_option != NULL)
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  1905
            symbol->retain_option->accept(*this);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1906
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1907
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1908
          s4o.print(FB_INIT_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1909
          s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1910
          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
  1911
          print_retain();
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1912
          s4o.print(");\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1913
          break;
958
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1914
        case run_dt: 
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1915
          { identifier_c *tmp_id = dynamic_cast<identifier_c*>(symbol->program_name);
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1916
            if (NULL == tmp_id) ERROR;
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1917
            current_program_name = tmp_id->value;
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  1918
	  }
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1919
          if (symbol->task_name != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1920
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1921
            s4o.print("if (");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1922
            symbol->task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1923
            s4o.print(") {\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1924
            s4o.indent_right(); 
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1925
          }
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1926
        
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1927
          wanted_assigntype = assign_at;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1928
          if (symbol->prog_conf_elements != NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1929
            symbol->prog_conf_elements->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1930
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1931
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1932
          symbol->program_type_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1933
          s4o.print(FB_FUNCTION_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1934
          s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1935
          symbol->program_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1936
          s4o.print(");\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1937
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1938
          wanted_assigntype = send_at;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1939
          if (symbol->prog_conf_elements != NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1940
            symbol->prog_conf_elements->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1941
          
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1942
          if (symbol->task_name != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1943
            s4o.indent_left();
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1944
            s4o.print(s4o.indent_spaces + "}\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1945
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1946
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1947
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1948
          break;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1949
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1950
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1951
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1952
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1953
/*  TASK task_name task_initialization */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1954
//SYM_REF2(task_configuration_c, task_name, task_initialization)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1955
    void *visit(task_configuration_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1956
      current_task_name = symbol->task_name;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1957
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1958
        case declare_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1959
          s4o.print(s4o.indent_spaces + "BOOL ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1960
          current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1961
          s4o.print(";\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1962
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1963
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1964
        case init_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1965
          s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1966
          current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1967
          s4o.print(" = __BOOL_LITERAL(FALSE);\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1968
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1969
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1970
        case run_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1971
          symbol->task_initialization->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1972
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1973
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1974
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1975
      }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1976
      current_task_name = NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1977
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1978
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1979
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1980
/*  '(' [SINGLE ASSIGN data_source ','] [INTERVAL ASSIGN data_source ','] PRIORITY ASSIGN integer ')' */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  1981
//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
  1982
    void *visit(task_initialization_c *symbol) {
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1983
      switch (wanted_declaretype) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1984
        case declare_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1985
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1986
            s4o.print(s4o.indent_spaces + "R_TRIG ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1987
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1988
            s4o.print("_R_TRIG;\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1989
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1990
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1991
        case init_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1992
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1993
            s4o.print(s4o.indent_spaces + "R_TRIG");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1994
            s4o.print(FB_INIT_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1995
            s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1996
            current_task_name->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  1997
            s4o.print("_R_TRIG, retain);\n");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1998
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  1999
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2000
        case run_dt:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2001
          if (symbol->single_data_source != NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2002
            symbol_c *config_var_decl = NULL;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2003
            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
  2004
            s4o.print(s4o.indent_spaces + "{");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2005
            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
  2006
            res_var_decl = search_resource_instance->get_decl(current_var_reference);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2007
            if (res_var_decl == NULL) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2008
              config_var_decl = search_config_instance->get_decl(current_var_reference);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2009
              if (config_var_decl == NULL)
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2010
                ERROR;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2011
              config_var_decl->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2012
            }
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2013
            else {
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2014
              res_var_decl->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2015
            }
392
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2016
            s4o.print("* ");
9b88b8b6bccd Fixing generated code for global variables. Adding support for defining global variables with complex type
laurent
parents: 381
diff changeset
  2017
            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
  2018
            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
  2019
            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
  2020
            s4o.print("();");
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2021
            s4o.print(SET_VAR);
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2022
            s4o.print("(");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2023
            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
  2024
            s4o.print("_R_TRIG.,CLK,, *");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2025
            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
  2026
            s4o.print(");}\n");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2027
            s4o.print(s4o.indent_spaces + "R_TRIG");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2028
            s4o.print(FB_FUNCTION_SUFFIX);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2029
            s4o.print("(&");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2030
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2031
            s4o.print("_R_TRIG);\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2032
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2033
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2034
            s4o.print(" = ");
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2035
            s4o.print(GET_VAR);
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2036
            s4o.print("(");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2037
            current_task_name->accept(*this);
248
9cb18ec14fa2 Task single parameter code generation broken after addition of accessors fixed.
laurent
parents: 244
diff changeset
  2038
            s4o.print("_R_TRIG.Q)");
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2039
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2040
          else {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2041
            s4o.print(s4o.indent_spaces);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2042
            current_task_name->accept(*this);
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2043
            s4o.print(" = ");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2044
            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
  2045
              unsigned long long int time = calculate_time(symbol->interval_data_source);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2046
              if (time != 0) {
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2047
                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
  2048
                s4o.print(time / common_ticktime);
184
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2049
                s4o.print(")");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2050
              }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2051
              else
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2052
                s4o.print("1");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2053
            }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2054
            else 
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2055
              s4o.print("1");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2056
          }
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2057
          s4o.print(";\n");
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2058
          break;
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2059
        default:
16495e10f69a Adding support for single resource scheduling
lbessard
parents: 181
diff changeset
  2060
          break;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2061
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2062
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2063
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2064
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2065
/*  any_symbolic_variable ASSIGN prog_data_source */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2066
//SYM_REF2(prog_cnxn_assign_c, symbolic_variable, prog_data_source)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2067
    void *visit(prog_cnxn_assign_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2068
      if (wanted_assigntype == assign_at) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2069
        symbol_c *var_decl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2070
        unsigned int vartype = 0;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2071
        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
  2072
        var_decl = search_resource_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2073
        if (var_decl == NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2074
          var_decl = search_config_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2075
          if (var_decl == NULL)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2076
            ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2077
          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
  2078
            vartype = search_config_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2079
        }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2080
        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
  2081
          vartype = search_resource_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2082
        
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2083
        s4o.print(s4o.indent_spaces + "{extern ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2084
        var_decl->accept(*this);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2085
        s4o.print(" *");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2086
        symbol->prog_data_source->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2087
        s4o.print("; ");
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2088
        s4o.printupper(current_program_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2089
        s4o.print(".");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2090
        symbol->symbolic_variable->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2091
        s4o.print(" = ");
506
2b4e69c7ff8b Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents: 498
diff changeset
  2092
        if (vartype == search_var_instance_decl_c::global_vt)
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2093
          s4o.print("*");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2094
        symbol->prog_data_source->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2095
        s4o.print(";}\n");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2096
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2097
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2098
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2099
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2100
/* any_symbolic_variable SENDTO data_sink */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2101
//SYM_REF2(prog_cnxn_sendto_c, symbolic_variable, data_sink)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2102
    void *visit(prog_cnxn_sendto_c *symbol) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2103
      if (wanted_assigntype == send_at) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2104
        symbol_c *var_decl;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2105
        unsigned int vartype = 0;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2106
        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
  2107
        var_decl = search_resource_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2108
        if (var_decl == NULL) {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2109
          var_decl = search_config_instance->get_decl(current_var_reference);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2110
          if (var_decl == NULL)
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2111
            ERROR;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2112
          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
  2113
            vartype = search_config_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2114
        }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2115
        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
  2116
          vartype = search_resource_instance->get_vartype(current_var_reference);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2117
        
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2118
        s4o.print(s4o.indent_spaces + "{extern ");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2119
        var_decl->accept(*this);
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2120
        s4o.print(" *");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2121
        symbol->data_sink->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2122
        s4o.print("; ");
506
2b4e69c7ff8b Fix typo in comparison expression.
Mario de Sousa <msousa@fe.up.pt>
parents: 498
diff changeset
  2123
        if (vartype == search_var_instance_decl_c::global_vt)
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2124
          s4o.print("*");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2125
        symbol->data_sink->accept(*this);
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2126
        s4o.print(" = ");
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2127
        s4o.printupper(current_program_name);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2128
        s4o.print(".");
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2129
        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
  2130
        s4o.print(";};\n");
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2131
      }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2132
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2133
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2134
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2135
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2136
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2137
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2138
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2139
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2140
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2141
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2142
/***********************************************************************/
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
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2146
/*******************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2147
/* Classes to generate the backup/restore functions... */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2148
/*******************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2149
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2150
#define RESTORE_  "_restore__"
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2151
#define BACKUP_   "_backup__"
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2152
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2153
/* class to generate the forward declaration of the XXXX_backup() and XXXX_restore()
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2154
 * functions that will later (in the generated C source code) be defined 
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2155
 * to backup/restore the global state of each RESOURCE in the source code being compiled.
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2156
 * The XXXX is actually the resource name!
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2157
 */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2158
class generate_c_backup_resource_decl_c: public generate_c_base_and_typeid_c {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2159
  public:
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2160
    generate_c_backup_resource_decl_c(stage4out_c *s4o_ptr)
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2161
      : generate_c_base_and_typeid_c(s4o_ptr) {};
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2162
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2163
    void *visit(resource_declaration_c *symbol) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2164
      s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2165
      s4o.print("void ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2166
      symbol->resource_name->accept(*this);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2167
      s4o.print("_backup__" "(void **buffer, int *maxsize);\n");      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2168
      s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2169
      s4o.print("void ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2170
      symbol->resource_name->accept(*this);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2171
      s4o.print("_restore__" "(void **buffer, int *maxsize);\n");      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2172
      return NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2173
    }
1071
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2174
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2175
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2176
    void *visit(single_resource_declaration_c *symbol) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2177
      /* __Must__ not insert any code! */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2178
      /* sinlge resources will not create a specific function for the resource */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2179
      /* backup and restore opertions will be inserted together with the configuration! */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2180
      return NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2181
    }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2182
    
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2183
};
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2184
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2185
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2186
/* print out the begining of the generic backup/restore function */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2187
void print_backup_restore_function_beg(stage4out_c &s4o, const char *func_name, const char *operation) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2188
  /* operation will be either "_backup__" or "_restore__" */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2189
  s4o.print("\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2190
  s4o.print("void ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2191
  s4o.print(func_name);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2192
  s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2193
  s4o.print("(void **buffer, int *maxsize) {\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2194
  s4o.indent_right();
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2195
  // Don't save/restore the __CURRENT_TIME variable, as 'plc controller' has easy access to it
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2196
  // and can therefore do the save/restore by itself.
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2197
//s4o.print(s4o.indent_spaces); 
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2198
//s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2199
//s4o.print("(&__CURRENT_TIME, sizeof(__CURRENT_TIME), buffer, maxsize);\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2200
  s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2201
  s4o.print("#define " DECLARE_GLOBAL          "(vartype, domain, varname) \\\n    ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2202
  s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2203
  s4o.print("(&domain##__##varname, sizeof(domain##__##varname), buffer, maxsize);\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2204
  s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2205
  s4o.print("#define " DECLARE_GLOBAL_FB       "(vartype, domain, varname) \\\n    ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2206
  s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2207
  s4o.print("(&domain##__##varname, sizeof(domain##__##varname), buffer, maxsize);\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2208
  s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2209
  s4o.print("#define " DECLARE_GLOBAL_LOCATION "(vartype, location) \\\n    ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2210
  s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2211
  s4o.print("(location, sizeof(*location), buffer, maxsize);\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2212
  s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2213
  s4o.print("#define " DECLARE_GLOBAL_LOCATED  "(vartype, domain, varname) \\\n    ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2214
  s4o.print(operation);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2215
  s4o.print("(&domain##__##varname, sizeof(domain##__##varname), buffer, maxsize);\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2216
}
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2217
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2218
/* print out the ending of the generic backup/restore function */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2219
void print_backup_restore_function_end(stage4out_c &s4o) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2220
  s4o.print(s4o.indent_spaces); s4o.print("#undef " DECLARE_GLOBAL          "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2221
  s4o.print(s4o.indent_spaces); s4o.print("#undef " DECLARE_GLOBAL_FB       "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2222
  s4o.print(s4o.indent_spaces); s4o.print("#undef " DECLARE_GLOBAL_LOCATION "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2223
  s4o.print(s4o.indent_spaces); s4o.print("#undef " DECLARE_GLOBAL_LOCATED  "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2224
  s4o.indent_left();
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2225
  s4o.print("}\n");      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2226
}
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2227
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2228
1071
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2229
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2230
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2231
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2232
/* generate the backup/restore function for a RESOURCE */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2233
/* the backup/restore function generated here will be called by the backup/restore
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2234
 * function generated for the configuration in which the resource is embedded
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2235
 */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2236
class generate_c_backup_resource_c: public generate_c_base_and_typeid_c {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2237
  public:    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2238
    const char *operation;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2239
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2240
    generate_c_backup_resource_c(stage4out_c *s4o_ptr)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2241
      : generate_c_base_and_typeid_c(s4o_ptr) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2242
      operation = NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2243
    };
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2244
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2245
  
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2246
    virtual ~generate_c_backup_resource_c(void) {}
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2247
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2248
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2249
private:
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2250
    void print_forward_declarations(void) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2251
      s4o.print("\n\n\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2252
  
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2253
      s4o.print("void ");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2254
      s4o.print("_backup__");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2255
      s4o.print("(void *varptr, int varsize, void **buffer, int *maxsize);\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2256
      s4o.print("void ");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2257
      s4o.print("_restore__");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2258
      s4o.print("(void *varptr, int varsize, void **buffer, int *maxsize);\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2259
  
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2260
      s4o.print("\n\n\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2261
      s4o.print("#undef " DECLARE_GLOBAL          "\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2262
      s4o.print("#undef " DECLARE_GLOBAL_FB       "\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2263
      s4o.print("#undef " DECLARE_GLOBAL_LOCATION "\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2264
      s4o.print("#undef " DECLARE_GLOBAL_LOCATED  "\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2265
    }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2266
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2267
  public:
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2268
    /********************/
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2269
    /* 2.1.6 - Pragmas  */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2270
    /********************/
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2271
    void *visit(enable_code_generation_pragma_c * symbol)   {s4o.enable_output(); return NULL;}
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2272
    void *visit(disable_code_generation_pragma_c * symbol)  {s4o.disable_output();return NULL;}
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2273
        
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2274
        
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2275
    /********************************/
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2276
    /* B 1.7 Configuration elements */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2277
    /********************************/
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2278
    void *visit(resource_declaration_c *symbol) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2279
      char *resource_name = strdup(symbol->resource_name->token->value);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2280
      /* convert to upper case */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2281
      for (char *c = resource_name; *c != '\0'; *c = toupper(*c), c++);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2282
      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2283
      generate_c_vardecl_c vardecl = generate_c_vardecl_c(&s4o,
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2284
                                         generate_c_vardecl_c::local_vf,
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2285
                                         generate_c_vardecl_c::global_vt,
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2286
                                         symbol->resource_name);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2287
      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2288
      print_forward_declarations();
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2289
      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2290
      print_backup_restore_function_beg(s4o, resource_name, "_backup__");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2291
      if (symbol->global_var_declarations != NULL)   
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2292
        vardecl.print(symbol->global_var_declarations);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2293
      if (symbol->resource_declaration != NULL) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2294
        operation = "_backup__";
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2295
        symbol->resource_declaration->accept(*this);  // will call visit(single_resource_declaration_c *)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2296
        operation = NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2297
      }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2298
      print_backup_restore_function_end(s4o);      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2299
      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2300
      print_backup_restore_function_beg(s4o, resource_name, "_restore__");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2301
      if (symbol->global_var_declarations != NULL)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2302
        vardecl.print(symbol->global_var_declarations);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2303
      if (symbol->resource_declaration != NULL) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2304
        operation = "_restore__";
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2305
        symbol->resource_declaration->accept(*this);  // will call visit(single_resource_declaration_c *)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2306
        operation = NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2307
      }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2308
      print_backup_restore_function_end(s4o);      
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2309
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2310
      return NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2311
    }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2312
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2313
    void *visit(single_resource_declaration_c *symbol) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2314
      /* Must store the declared/instatiated PROGRAMS */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2315
      if (symbol->program_configuration_list != NULL)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2316
        symbol->program_configuration_list->accept(*this);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2317
      return NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2318
    }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2319
    
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2320
    /*  PROGRAM [RETAIN | NON_RETAIN] program_name [WITH task_name] ':' program_type_name ['(' prog_conf_elements ')'] */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2321
    // SYM_REF5(program_configuration_c, retain_option, program_name, task_name, program_type_name, prog_conf_elements)
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2322
    void *visit(program_configuration_c *symbol) {
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2323
      // generate the following source code:
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2324
      // _xxxxxx__(&program_name, sizeof(program_name), buffer, maxsize);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2325
      s4o.print(s4o.indent_spaces);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2326
      s4o.print(operation); // call _restore__() or _backup__()
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2327
      s4o.print("(&"); 
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2328
      symbol->program_name->accept(*this);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2329
      s4o.print(", sizeof(");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2330
      symbol->program_name->accept(*this);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2331
      s4o.print("), buffer, maxsize);\n");
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2332
      return NULL;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2333
    }
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2334
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2335
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2336
};
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2337
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2338
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2339
/* generate the backup/restore function for a CONFIGURATION */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2340
/* the generated function will backup/restore the global variables declared in the
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2341
 * configuration, and call the backup/restore functions of each embedded resource to do
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2342
 * the same for the global variables declared inside each resource.
1062
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2343
 *
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2344
 *   The matiec compiler will now generate two additional functions which 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2345
 *   will backup and restore the PLC internal state to a void *buffer.
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2346
 *       config_backup__(void **buffer, int *maxsize)
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2347
 *       config_restore__(void **buffer, int *maxsize)
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2348
 *
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2349
 *   Both functions will backup/restore the internal state from the memory 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2350
 *   pointed to by *buffer, up to a maximum of *maxsize bytes.
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2351
 *   Both functions will return with buffer pointing to the first unused 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2352
 *   byte in the buffer, and maxsize with the number of remaining bytes. If 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2353
 *   the buffer is not sufficient to store all the internal state, maxsize 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2354
 *   will return with a negative number, equal to the number of missing 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2355
 *   bytes.
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2356
 *
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2357
 *   In other words, to know the exact size of the buffer required to store 
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2358
 *   the PLC internal state, malloc() that memory, and do the backup:
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2359
 *          int maxsize = 0;
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2360
 *          config_backup__(NULL, &maxsize);
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2361
 *          void *buffer = malloc(-1 * maxsize);
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2362
 *          // and now to really back the internal state...
814acf353c69 Add some comments to code regarding backup/restore functions
mjsousa
parents: 1061
diff changeset
  2363
 *          config_backup__(&buffer, &maxsize);
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2364
 */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2365
class generate_c_backup_config_c: public generate_c_base_and_typeid_c {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2366
  private:
1061
f762b43c8fad fix initialization of variable (was not following ISO C++ rules)
Mario de Sousa <msousa@fe.up.pt>
parents: 1060
diff changeset
  2367
    const char *func_to_call; // parameter to pass data from: void *visit(configuration_declaration_c *)
f762b43c8fad fix initialization of variable (was not following ISO C++ rules)
Mario de Sousa <msousa@fe.up.pt>
parents: 1060
diff changeset
  2368
                              //                          to: void *visit(resource_declaration_c *)
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2369
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2370
  public:
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2371
    generate_c_backup_config_c(stage4out_c *s4o_ptr)
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2372
      : generate_c_base_and_typeid_c(s4o_ptr) {
1061
f762b43c8fad fix initialization of variable (was not following ISO C++ rules)
Mario de Sousa <msousa@fe.up.pt>
parents: 1060
diff changeset
  2373
      func_to_call = NULL;
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2374
    };
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2375
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2376
    virtual ~generate_c_backup_config_c(void) {}
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2377
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2378
    
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2379
  public:
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2380
    /********************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2381
    /* 2.1.6 - Pragmas  */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2382
    /********************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2383
    void *visit(enable_code_generation_pragma_c * symbol)   {s4o.enable_output(); return NULL;}
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2384
    void *visit(disable_code_generation_pragma_c * symbol)  {s4o.disable_output();return NULL;}
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2385
        
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2386
        
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2387
    /********************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2388
    /* B 1.7 Configuration elements */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2389
    /********************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2390
    /*
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2391
    SYM_REF6(configuration_declaration_c, configuration_name, global_var_declarations, resource_declarations, access_declarations, instance_specific_initializations, unused)
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2392
    */
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2393
    void *visit(configuration_declaration_c *symbol) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2394
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2395
      s4o.print("\n\n\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2396
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2397
      s4o.print("void ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2398
      s4o.print("_backup__");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2399
      s4o.print("(void *varptr, int varsize, void **buffer, int *maxsize) {\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2400
      s4o.print("  if (varsize <= *maxsize) {memmove(*buffer, varptr, varsize); *buffer += varsize;}\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2401
      s4o.print("  *maxsize -= varsize;\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2402
      s4o.print("}\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2403
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2404
      s4o.print("void ");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2405
      s4o.print("_restore__");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2406
      s4o.print("(void *varptr, int varsize, void **buffer, int *maxsize) {\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2407
      s4o.print("  if (varsize <= *maxsize) {memmove(varptr, *buffer, varsize); *buffer += varsize;}\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2408
      s4o.print("  *maxsize -= varsize;\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2409
      s4o.print("}\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2410
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2411
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2412
      generate_c_vardecl_c vardecl = generate_c_vardecl_c(&s4o,
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2413
                                         generate_c_vardecl_c::local_vf,
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2414
                                         generate_c_vardecl_c::global_vt,
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2415
                                         symbol->configuration_name);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2416
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2417
      s4o.print("\n\n\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2418
      s4o.print("#undef " DECLARE_GLOBAL          "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2419
      s4o.print("#undef " DECLARE_GLOBAL_FB       "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2420
      s4o.print("#undef " DECLARE_GLOBAL_LOCATION "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2421
      s4o.print("#undef " DECLARE_GLOBAL_LOCATED  "\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2422
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2423
      generate_c_backup_resource_decl_c declare_functions = generate_c_backup_resource_decl_c(&s4o);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2424
      symbol->resource_declarations->accept(declare_functions);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2425
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2426
      print_backup_restore_function_beg(s4o, "config", "_backup__");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2427
      vardecl.print(symbol);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2428
      s4o.print("\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2429
      func_to_call = "_backup__";
1071
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2430
      symbol->resource_declarations->accept(*this);  // will call resource_declaration_list_c or single_resource_declaration_c
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2431
      func_to_call = NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2432
      print_backup_restore_function_end(s4o);      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2433
    
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2434
      print_backup_restore_function_beg(s4o, "config", "_restore__");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2435
      vardecl.print(symbol);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2436
      s4o.print("\n");
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2437
      func_to_call = "_restore__";
1071
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2438
      symbol->resource_declarations->accept(*this);  // will call resource_declaration_list_c or single_resource_declaration_c
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2439
      func_to_call = NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2440
      print_backup_restore_function_end(s4o);      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2441
      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2442
      return NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2443
    }
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2444
    
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2445
    void *visit(resource_declaration_c *symbol) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2446
      s4o.print(s4o.indent_spaces);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2447
      symbol->resource_name->accept(*this);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2448
      s4o.print(func_to_call);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2449
      s4o.print("(buffer, maxsize);\n");      
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2450
      return NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2451
    }
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2452
    
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2453
    void *visit(single_resource_declaration_c *symbol) {
1071
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2454
      /* If the configuration does not have any resources, we must store/restore the declared program instances
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2455
       * inside the backup() restore() functions created for the configuration.
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2456
       */
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2457
      generate_c_backup_resource_c handle_resource = generate_c_backup_resource_c(&s4o);
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2458
      handle_resource.operation = func_to_call;
7fd69f29320a fix backup/restore functions: now also backup/restore programs instantiated to run inside tasks.
Mario de Sousa <msousa@fe.up.pt>
parents: 1061
diff changeset
  2459
      symbol->accept(handle_resource);
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2460
      return NULL;
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2461
    }
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2462
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2463
};
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2464
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2465
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2466
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2467
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2468
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2469
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2470
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2471
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2472
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2473
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2474
/***********************************************************************/
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2475
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2476
class generate_c_c: public iterator_visitor_c {
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2477
  protected:
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2478
    stage4out_c                      &s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2479
    stage4out_c                  pous_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2480
    stage4out_c             pous_incl_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2481
    stage4out_c     located_variables_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2482
    stage4out_c             variables_s4o;
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2483
    
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2484
    generate_c_typedecl_c          generate_c_typedecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2485
    generate_c_implicit_typedecl_c generate_c_implicit_typedecl;
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2486
    generate_c_pous_c              generate_c_pous;
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2487
    
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2488
    symbol_c   *current_configuration;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2489
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2490
    const char *current_name;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2491
    const char *current_builddir;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2492
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2493
    bool        allow_output;
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2494
    
237
cece842c7417 Adding support for using arrays in POU interface
laurent
parents: 234
diff changeset
  2495
    unsigned long long common_ticktime;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2496
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2497
  public:
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2498
    generate_c_c(stage4out_c *s4o_ptr, const char *builddir): 
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2499
            s4o(*s4o_ptr),
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2500
            pous_s4o(builddir, "POUS", "c"),
121
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2501
            pous_incl_s4o(builddir, "POUS", "h"),
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2502
            located_variables_s4o(builddir, "LOCATED_VARIABLES","h"),
112
0c8d1b0c957a changed VARIABLES.h in VARIABLES.cvs
etisserant
parents: 111
diff changeset
  2503
            variables_s4o(builddir, "VARIABLES","csv"),
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2504
            generate_c_typedecl         (&pous_incl_s4o),
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2505
            generate_c_implicit_typedecl(&pous_incl_s4o, &generate_c_typedecl)
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
  2506
    {
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2507
      current_builddir = builddir;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2508
      current_configuration = NULL;
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2509
      allow_output = true;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2510
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2511
            
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2512
    ~generate_c_c(void) {}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2513
267
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2514
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2515
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2516
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2517
/* 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
  2518
/********************/
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2519
    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
  2520
      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
  2521
      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
  2522
      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
  2523
      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
  2524
      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
  2525
      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
  2526
      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
  2527
    }
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2528
    
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2529
    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
  2530
      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
  2531
      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
  2532
      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
  2533
      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
  2534
      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
  2535
      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
  2536
      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
  2537
    } 
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2538
0a1204bcc9af starting to add proper header file with declaration of standard functions
Mario de Sousa <msousa@fe.up.pt>
parents: 262
diff changeset
  2539
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2540
/***************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2541
/* B 0 - Programming Model */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2542
/***************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2543
    void *visit(library_c *symbol) {
1011
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2544
      pous_incl_s4o.print("#ifndef __POUS_H\n#define __POUS_H\n\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2545
      
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2546
      if (runtime_options.disable_implicit_en_eno) {
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2547
        // If we are not generating the EN and ENO parameters for functions and FB,
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2548
        //   then make sure we use the standard library version compiled without these parameters too!
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2549
        pous_incl_s4o.print("#ifndef DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2550
        pous_incl_s4o.print("#define DISABLE_EN_ENO_PARAMETERS\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2551
        pous_incl_s4o.print("#endif\n");
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2552
      }
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2553
      
76175defb87b Add option to not add the EN and ENO parameters to every function and FB (generated C code becomes smaller, and uses less memory for function invocations)
mjsousa
parents: 965
diff changeset
  2554
      pous_incl_s4o.print("#include \"accessor.h\"\n#include \"iec_std_lib.h\"\n\n");
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2555
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2556
      for(int i = 0; i < symbol->n; i++) {
1041
56ebe2a31b5b Access elements[] in list_c through a new get_element() method.
Mario de Sousa <msousa@fe.up.pt>
parents: 1021
diff changeset
  2557
        symbol->get_element(i)->accept(*this);
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2558
      }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2559
121
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2560
      pous_incl_s4o.print("#endif //__POUS_H\n");
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2561
      
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2562
      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
  2563
      generate_var_list.generate_programs(symbol);
9e8ce092e169 Adding support for POU struct definition in POUS.h
lbessard
parents: 120
diff changeset
  2564
      generate_var_list.generate_variables(symbol);
397
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2565
      variables_s4o.print("\n// Ticktime\n");
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2566
      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
  2567
      variables_s4o.print("\n");
85151b2f35ca Adding Common_Ticktime to informations printed in VARIABLES.csv file
laurent
parents: 396
diff changeset
  2568
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2569
      generate_location_list_c generate_location_list(&located_variables_s4o);
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2570
      symbol->accept(generate_location_list);
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2571
      return NULL;
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2572
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2573
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2574
/*************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2575
/* B.1 - Common elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2576
/*************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2577
/*******************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2578
/* B 1.1 - Letters, digits and identifiers */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2579
/*******************************************/
958
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2580
    void *visit(identifier_c *symbol) {current_name = symbol->value; return NULL;}
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2581
    /* In the derived datatype and POUs declarations, the names are stored as identfier_c, so the following visitors are not required! */
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2582
    void *visit(derived_datatype_identifier_c *symbol) {ERROR; return NULL;}
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2583
    void *visit(         poutype_identifier_c *symbol) {ERROR; return NULL;}
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2584
    
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2585
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2586
/********************************/
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2587
/* B 1.3.3 - Derived data types */
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2588
/********************************/
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2589
    /*  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
  2590
//   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
  2591
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2592
    /* 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
  2593
    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
  2594
      for(int i = 0; i < symbol->n; i++) {
1041
56ebe2a31b5b Access elements[] in list_c through a new get_element() method.
Mario de Sousa <msousa@fe.up.pt>
parents: 1021
diff changeset
  2595
        symbol->get_element(i)->accept(generate_c_implicit_typedecl);
56ebe2a31b5b Access elements[] in list_c through a new get_element() method.
Mario de Sousa <msousa@fe.up.pt>
parents: 1021
diff changeset
  2596
        symbol->get_element(i)->accept(generate_c_typedecl);
913
1c74da17cb61 Implicitly defined array datatypes use new naming method (greatly simplifies stage 4 code).
mjsousa
parents: 908
diff changeset
  2597
      }
98
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2598
      return NULL;
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2599
    }
d0cdf1d00b74 Adding support for derived data types.
lbessard
parents: 70
diff changeset
  2600
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2601
/**************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2602
/* B.1.5 - Program organization units */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2603
/**************************************/
958
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2604
/* WARNING: The following code is buggy when generating an independent pair of files for each POU, as the
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2605
 *          specially created stage4out_c (s4o_c and s4o_h) will not comply with the enable/disable_code_generation_pragma_c
7474d2cd1d6e Add a new pou_typename_c object to the AST to store references to previously declared Functions, FB, and Programs.
mjsousa
parents: 945
diff changeset
  2606
 */
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2607
#define handle_pou(fname,pname) \
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2608
      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
  2609
      if (generate_pou_filepairs__) {\
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2610
        const char *pou_name = get_datatype_info_c::get_id_str(pname);\
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2611
        stage4out_c s4o_c(current_builddir, pou_name, "c");\
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2612
        stage4out_c s4o_h(current_builddir, pou_name, "h");\
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2613
        s4o_c.print("#include \""); s4o_c.print(pou_name); s4o_c.print(".h\"\n");\
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2614
        s4o_h.print("#ifndef __");  s4o_h.print(pou_name); s4o_h.print("_H\n");\
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2615
        s4o_h.print("#define __");  s4o_h.print(pou_name); s4o_h.print("_H\n");\
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2616
        generate_c_implicit_typedecl_c generate_c_implicit_typedecl__(&s4o_h);\
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2617
        symbol->accept(generate_c_implicit_typedecl__); /* generate implicitly delcared datatypes (arrays and ref_to) */\
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2618
        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
  2619
        generate_c_pous_c::fname(symbol, s4o_c, false);/* generate the <pou_name>.c file */\
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2620
        s4o_h.print("#endif /* __");  s4o_h.print(pou_name); s4o_h.print("_H */\n");\
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2621
        /* 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
  2622
        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
  2623
        pous_s4o.     print("#include \"");\
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2624
        pous_incl_s4o.print(pou_name);\
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2625
        pous_s4o.     print(pou_name);\
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2626
        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
  2627
        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
  2628
      } else {\
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2629
        symbol->accept(generate_c_implicit_typedecl);\
908
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2630
        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
  2631
        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
  2632
      }
9e8e1ba5ca46 Add option to place each POU in a distinct .c and .h file pair.
mjsousa
parents: 907
diff changeset
  2633
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2634
/***********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2635
/* 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
  2636
/***********************/      
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2637
    void *visit(function_declaration_c *symbol) {
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2638
      handle_pou(handle_function,symbol->derived_function_name)
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2639
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2640
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2641
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2642
/*****************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2643
/* B 1.5.2 - Function Blocks */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2644
/*****************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2645
    void *visit(function_block_declaration_c *symbol) {
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2646
      handle_pou(handle_function_block,symbol->fblock_name)
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
  2647
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2648
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2649
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2650
/**********************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2651
/* B 1.5.3 - Programs */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2652
/**********************/    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2653
    void *visit(program_declaration_c *symbol) {
918
e9bde0aa93ed for option '-Op' (generate <pouname>.h/c): add '#include <pouname>.h' to the .c file, and '#ifdef <pouname>_H' to the .h file
mjsousa
parents: 917
diff changeset
  2654
      handle_pou(handle_program,symbol->program_type_name)
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
  2655
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2656
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2657
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2658
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2659
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2660
/* B 1.7 Configuration elements */
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2661
/********************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2662
    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
  2663
      if (symbol->global_var_declarations != NULL)
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2664
        symbol->global_var_declarations->accept(generate_c_implicit_typedecl);
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
  2665
      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
  2666
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2667
      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
  2668
        /* 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
  2669
        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
  2670
        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
  2671
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2672
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2673
      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
  2674
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2675
      {
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2676
        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
  2677
        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
  2678
        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
  2679
        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
  2680
          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
  2681
          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
  2682
        }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2683
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2684
        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
  2685
        
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2686
        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
  2687
        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
  2688
        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
  2689
        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
  2690
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2691
        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
  2692
        config_s4o.print_long_long_integer(common_ticktime);
1077
b37de6a9ad7f partial fix to issue #76 - calculate task periods with 1ms (instead of 1ns) resolution. Allows for tasks with periods larger than 4.295s, but smaller than 50 days.
Mario de Sousa <msousa@fe.up.pt>
parents: 1072
diff changeset
  2693
        config_s4o.print(" * ");
b37de6a9ad7f partial fix to issue #76 - calculate task periods with 1ms (instead of 1ns) resolution. Allows for tasks with periods larger than 4.295s, but smaller than 50 days.
Mario de Sousa <msousa@fe.up.pt>
parents: 1072
diff changeset
  2694
        config_s4o.print_long_long_integer(1000000 / MILLISECOND);
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
  2695
        config_s4o.print("; /*ns*/\n");
1007
afb3974f8fb3 fix warning about overflow if matiec is running on 64-bit platform,
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 965
diff changeset
  2696
        config_s4o.print("unsigned long greatest_tick_count__ = (unsigned long)");
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
  2697
        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
  2698
        config_s4o.print("; /*tick*/\n");
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2699
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2700
        if (generate_plc_state_backup_fuctions__ > 0) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2701
          generate_c_backup_config_c generate_backup = generate_c_backup_config_c(&config_s4o);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2702
          symbol->accept(generate_backup);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2703
        }
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
  2704
      }
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2705
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2706
      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
  2707
c3edb882a4b2 code re-organisation. Preparing for the changes to come in the next commit (one C file for each POU)
mjsousa
parents: 906
diff changeset
  2708
      current_configuration = NULL;
377
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2709
      return NULL;
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2710
    }
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2711
60b012b7793f Adding support for compiling direct array specification inside variable declaration
laurent
parents: 355
diff changeset
  2712
    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
  2713
      if (symbol->global_var_declarations != NULL)
945
477393b00f95 Add support for relaxed datatype model for array datatypes.
mjsousa
parents: 933
diff changeset
  2714
        symbol->global_var_declarations->accept(generate_c_implicit_typedecl);
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
  2715
      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
  2716
      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
  2717
      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
  2718
      symbol->accept(generate_c_resources);
1059
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2719
      if (generate_plc_state_backup_fuctions__ > 0) {
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2720
        generate_c_backup_resource_c generate_backup = generate_c_backup_resource_c(&resources_s4o);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2721
        symbol->accept(generate_backup);
aef63aa7ef2e add support for generating functions to backup/restore the internal state of the PLC.
Mario de Sousa <msousa@fe.up.pt>
parents: 1058
diff changeset
  2722
      }
202
da1a8186f86f Initial (very rough) version of semantic checker (stage3)
Catarina Boucinha <ccb@fe.up.pt>
parents: 189
diff changeset
  2723
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2724
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2725
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2726
    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
  2727
      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
  2728
      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
  2729
      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
  2730
      return NULL;
70
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2731
    }
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2732
    
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2733
};
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2734
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2735
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2736
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2737
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2738
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2739
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2740
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2741
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2742
/***********************************************************************/
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2743
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2744
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2745
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2746
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2747
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
  2748
void delete_code_generator(visitor_c *code_generator) {delete code_generator;}
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2749
e1f0ebd2d9ec Change generate_cc to generate_c
lbessard
parents:
diff changeset
  2750