author | mario |
Thu, 08 Nov 2007 15:19:51 +0100 | |
changeset 83 | aeb7e0e53855 |
parent 74 | 85af9521bf63 |
child 86 | 1988bf1634da |
permissions | -rw-r--r-- |
15
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
1 |
/* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
2 |
* (c) 2007 Mario de Sousa |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
3 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
4 |
* Offered to the public under the terms of the GNU General Public License |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
5 |
* as published by the Free Software Foundation; either version 2 of the |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
6 |
* License, or (at your option) any later version. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
7 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
8 |
* This program is distributed in the hope that it will be useful, but |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
9 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
10 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
11 |
* Public License for more details. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
12 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
13 |
* This code is made available on the understanding that it will not be |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
14 |
* used in safety-critical situations without a full and competent review. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
15 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
16 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
17 |
/* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
18 |
* An IEC 61131-3 IL and ST compiler. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
19 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
20 |
* Based on the |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
21 |
* FINAL DRAFT - IEC 61131-3, 2nd Ed. (2001-12-10) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
22 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
23 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
24 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
25 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
26 |
/* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
27 |
* This file contains the code that calls the stage 1 (lexical anayser) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
28 |
* and stage 2 (syntax parser) during the first pass. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
29 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
30 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
31 |
|
20 | 32 |
/* file with declaration of absyntax classes... */ |
33 |
#include "../absyntax/absyntax.hh" |
|
34 |
||
15
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
35 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
36 |
// #include "stage1_2.hh" |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
37 |
#include "iec.y.hh" |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
38 |
#include "stage1_2_priv.hh" |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
39 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
40 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
41 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
42 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
43 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
44 |
/**************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
45 |
/* The name of the file being parsed. */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
46 |
/**************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
47 |
/* The name of the file currently being parsed... |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
48 |
* Note that flex accesses and updates this global variable |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
49 |
* apropriately whenever it comes across an (*#include <filename> *) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
50 |
* directive... |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
51 |
* ... and bison will use it when producing error messages. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
52 |
* Note that bison also sets this variable correctly to the first |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
53 |
* file being parsed. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
54 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
55 |
const char *current_filename = NULL; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
56 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
57 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
58 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
59 |
|
68 | 60 |
/****************************************************/ |
61 |
/* Controlling the entry to the body_state in flex. */ |
|
62 |
/****************************************************/ |
|
15
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
63 |
static int goto_body_state__ = 0; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
64 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
65 |
void cmd_goto_body_state(void) {goto_body_state__ = 1;} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
66 |
int get_goto_body_state(void) {return goto_body_state__;} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
67 |
void rst_goto_body_state(void) {goto_body_state__ = 0;} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
68 |
|
68 | 69 |
/*************************************************************/ |
70 |
/* Controlling the entry to the sfc_qualifier_state in flex. */ |
|
71 |
/*************************************************************/ |
|
72 |
static int goto_sfc_qualifier_state__ = 0; |
|
73 |
||
74 |
void cmd_goto_sfc_qualifier_state(void) {goto_sfc_qualifier_state__ = 1;} |
|
75 |
int get_goto_sfc_qualifier_state(void) {return goto_sfc_qualifier_state__;} |
|
76 |
void rst_goto_sfc_qualifier_state(void) {goto_sfc_qualifier_state__ = 0;} |
|
77 |
||
74
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
78 |
/*************************************************************/ |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
79 |
/* Controlling the entry to the sfc_qualifier_state in flex. */ |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
80 |
/*************************************************************/ |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
81 |
static int goto_task_init_state__ = 0; |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
82 |
|
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
83 |
void cmd_goto_task_init_state(void) {goto_task_init_state__ = 1;} |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
84 |
int get_goto_task_init_state(void) {return goto_task_init_state__;} |
85af9521bf63
fixing identifier issues of PRIORITY, SINGLE, and INTERVAL
mario
parents:
68
diff
changeset
|
85 |
void rst_goto_task_init_state(void) {goto_task_init_state__ = 0;} |
68 | 86 |
|
87 |
/****************************************************************/ |
|
88 |
/* Returning to state in flex previously pushed onto the stack. */ |
|
89 |
/****************************************************************/ |
|
90 |
static int pop_state__ = 0; |
|
91 |
||
92 |
void cmd_pop_state(void) {pop_state__ = 1;} |
|
93 |
int get_pop_state(void) {return pop_state__;} |
|
94 |
void rst_pop_state(void) {pop_state__ = 0;} |
|
15
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
95 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
96 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
97 |
/*********************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
98 |
/* The global symbol tables... */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
99 |
/*********************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
100 |
/* NOTE: only accessed indirectly by the lexical parser (flex) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
101 |
* through the function get_identifier_token() |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
102 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
103 |
/* NOTE: BOGUS_TOKEN_ID is defined in the bison generated file iec.y.hh. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
104 |
* We need this constant defined before we can declare the symbol tables. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
105 |
* However, we cannot #include "iec.y.hh" in this file (stage1_2_priv.hh) directly |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
106 |
* because of the way bison ver. 3.2 is copying all declarations in the prologue |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
107 |
* of iec.y to the iec.y.hh file (including an #include stage1_2_priv.hh). |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
108 |
* So, if we were to include "iec.y.hh" here, we would get a circular include. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
109 |
* All this means that whoever includes this file (stage1_2_priv.hh) will need |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
110 |
* to take care to first inlcude iec.y.hh !! |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
111 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
112 |
/* A symbol table to store all the library elements */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
113 |
/* e.g.: <function_name , function_decl> |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
114 |
* <fb_name , fb_decl> |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
115 |
* <type_name , type_decl> |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
116 |
* <program_name , program_decl> |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
117 |
* <configuration_name , configuration_decl> |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
118 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
119 |
/* static */ symtable_c<int, BOGUS_TOKEN_ID> library_element_symtable; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
120 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
121 |
/* A symbol table to store the declared variables of |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
122 |
* the function currently being parsed... |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
123 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
124 |
/* static */ symtable_c<int, BOGUS_TOKEN_ID> variable_name_symtable; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
125 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
126 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
127 |
/* Function only called from within flex! |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
128 |
* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
129 |
* search for a symbol in either of the two symbol tables |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
130 |
* declared above, and return the token id of the first |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
131 |
* symbol found. |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
132 |
* Searches first in the variables, and only if not found |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
133 |
* does it continue searching in the library elements |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
134 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
135 |
int get_identifier_token(const char *identifier_str) { |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
136 |
// std::cout << "get_identifier_token(" << identifier_str << "): \n"; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
137 |
int token_id; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
138 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
139 |
if ((token_id = variable_name_symtable.find_value(identifier_str)) == variable_name_symtable.end_value()) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
140 |
if ((token_id = library_element_symtable.find_value(identifier_str)) == library_element_symtable.end_value()) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
141 |
return identifier_token; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
142 |
return token_id; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
143 |
} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
144 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
145 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
146 |
/************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
147 |
/* Utility Functions... */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
148 |
/************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
149 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
150 |
/* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
151 |
* Join two strings together. Allocate space with malloc(3). |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
152 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
153 |
char *strdup2(const char *a, const char *b) { |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
154 |
char *res = (char *)malloc(strlen(a) + strlen(b) + 1); |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
155 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
156 |
if (!res) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
157 |
return NULL; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
158 |
return strcat(strcpy(res, a), b); /* safe, actually */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
159 |
} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
160 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
161 |
/* |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
162 |
* Join three strings together. Allocate space with malloc(3). |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
163 |
*/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
164 |
char *strdup3(const char *a, const char *b, const char *c) { |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
165 |
char *res = (char *)malloc(strlen(a) + strlen(b) + strlen(c) + 1); |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
166 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
167 |
if (!res) |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
168 |
return NULL; |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
169 |
return strcat(strcat(strcpy(res, a), b), c); /* safe, actually */ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
170 |
} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
171 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
172 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
173 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
174 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
175 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
176 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
177 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
178 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
179 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
180 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
181 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
182 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
183 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
184 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
185 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
186 |
/***********************************************************************/ |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
187 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
188 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
189 |
int stage1_2__(const char *filename, const char *includedir, symbol_c **tree_root_ref); |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
190 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
191 |
|
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
192 |
int stage1_2(const char *filename, const char *includedir, symbol_c **tree_root_ref) { |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
193 |
return stage1_2__(filename, includedir, tree_root_ref); |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
194 |
} |
0b472e25eb16
Adding changes to make the compiler compatible with bison ver 2.3
mario
parents:
diff
changeset
|
195 |