compiler: don't generate stubs for ambiguous direct interface methods
[official-gcc.git] / gcc / fortran / st.cc
blob73f30c2137fa86bd5517cf789496fd064fc85ab5
1 /* Build executable statement trees.
2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Executable statements are strung together into a singly linked list
22 of code structures. These structures are later translated into GCC
23 GENERIC tree structures and from there to executable code for a
24 target. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "gfortran.h"
31 gfc_code new_st;
34 /* Zeroes out the new_st structure. */
36 void
37 gfc_clear_new_st (void)
39 memset (&new_st, '\0', sizeof (new_st));
40 new_st.op = EXEC_NOP;
44 /* Get a gfc_code structure, initialized with the current locus
45 and a statement code 'op'. */
47 gfc_code *
48 gfc_get_code (gfc_exec_op op)
50 gfc_code *c;
52 c = XCNEW (gfc_code);
53 c->op = op;
54 c->loc = gfc_current_locus;
55 return c;
59 /* Given some part of a gfc_code structure, append a set of code to
60 its tail, returning a pointer to the new tail. */
62 gfc_code *
63 gfc_append_code (gfc_code *tail, gfc_code *new_code)
65 if (tail != NULL)
67 while (tail->next != NULL)
68 tail = tail->next;
70 tail->next = new_code;
73 while (new_code->next != NULL)
74 new_code = new_code->next;
76 return new_code;
80 /* Free a single code structure, but not the actual structure itself. */
82 void
83 gfc_free_statement (gfc_code *p)
85 if (p->expr1)
86 gfc_free_expr (p->expr1);
87 if (p->expr2)
88 gfc_free_expr (p->expr2);
90 switch (p->op)
92 case EXEC_NOP:
93 case EXEC_END_BLOCK:
94 case EXEC_END_NESTED_BLOCK:
95 case EXEC_ASSIGN:
96 case EXEC_INIT_ASSIGN:
97 case EXEC_GOTO:
98 case EXEC_CYCLE:
99 case EXEC_RETURN:
100 case EXEC_END_PROCEDURE:
101 case EXEC_IF:
102 case EXEC_PAUSE:
103 case EXEC_STOP:
104 case EXEC_ERROR_STOP:
105 case EXEC_EXIT:
106 case EXEC_WHERE:
107 case EXEC_IOLENGTH:
108 case EXEC_POINTER_ASSIGN:
109 case EXEC_DO_WHILE:
110 case EXEC_CONTINUE:
111 case EXEC_TRANSFER:
112 case EXEC_LABEL_ASSIGN:
113 case EXEC_ENTRY:
114 case EXEC_ARITHMETIC_IF:
115 case EXEC_CRITICAL:
116 case EXEC_SYNC_ALL:
117 case EXEC_SYNC_IMAGES:
118 case EXEC_SYNC_MEMORY:
119 case EXEC_LOCK:
120 case EXEC_UNLOCK:
121 case EXEC_EVENT_POST:
122 case EXEC_EVENT_WAIT:
123 case EXEC_FAIL_IMAGE:
124 case EXEC_CHANGE_TEAM:
125 case EXEC_END_TEAM:
126 case EXEC_FORM_TEAM:
127 case EXEC_SYNC_TEAM:
128 break;
130 case EXEC_BLOCK:
131 gfc_free_namespace (p->ext.block.ns);
132 gfc_free_association_list (p->ext.block.assoc);
133 break;
135 case EXEC_COMPCALL:
136 case EXEC_CALL_PPC:
137 case EXEC_CALL:
138 case EXEC_ASSIGN_CALL:
139 gfc_free_actual_arglist (p->ext.actual);
140 break;
142 case EXEC_SELECT:
143 case EXEC_SELECT_TYPE:
144 case EXEC_SELECT_RANK:
145 if (p->ext.block.case_list)
146 gfc_free_case_list (p->ext.block.case_list);
147 break;
149 case EXEC_DO:
150 gfc_free_iterator (p->ext.iterator, 1);
151 break;
153 case EXEC_ALLOCATE:
154 case EXEC_DEALLOCATE:
155 gfc_free_alloc_list (p->ext.alloc.list);
156 break;
158 case EXEC_OPEN:
159 gfc_free_open (p->ext.open);
160 break;
162 case EXEC_CLOSE:
163 gfc_free_close (p->ext.close);
164 break;
166 case EXEC_BACKSPACE:
167 case EXEC_ENDFILE:
168 case EXEC_REWIND:
169 case EXEC_FLUSH:
170 gfc_free_filepos (p->ext.filepos);
171 break;
173 case EXEC_INQUIRE:
174 gfc_free_inquire (p->ext.inquire);
175 break;
177 case EXEC_WAIT:
178 gfc_free_wait (p->ext.wait);
179 break;
181 case EXEC_READ:
182 case EXEC_WRITE:
183 gfc_free_dt (p->ext.dt);
184 break;
186 case EXEC_DT_END:
187 /* The ext.dt member is a duplicate pointer and doesn't need to
188 be freed. */
189 break;
191 case EXEC_DO_CONCURRENT:
192 case EXEC_FORALL:
193 gfc_free_forall_iterator (p->ext.forall_iterator);
194 break;
196 case EXEC_OACC_DECLARE:
197 if (p->ext.oacc_declare)
198 gfc_free_oacc_declare_clauses (p->ext.oacc_declare);
199 break;
201 case EXEC_OACC_ATOMIC:
202 case EXEC_OACC_PARALLEL_LOOP:
203 case EXEC_OACC_PARALLEL:
204 case EXEC_OACC_KERNELS_LOOP:
205 case EXEC_OACC_KERNELS:
206 case EXEC_OACC_SERIAL_LOOP:
207 case EXEC_OACC_SERIAL:
208 case EXEC_OACC_DATA:
209 case EXEC_OACC_HOST_DATA:
210 case EXEC_OACC_LOOP:
211 case EXEC_OACC_UPDATE:
212 case EXEC_OACC_WAIT:
213 case EXEC_OACC_CACHE:
214 case EXEC_OACC_ENTER_DATA:
215 case EXEC_OACC_EXIT_DATA:
216 case EXEC_OACC_ROUTINE:
217 case EXEC_OMP_ATOMIC:
218 case EXEC_OMP_CANCEL:
219 case EXEC_OMP_CANCELLATION_POINT:
220 case EXEC_OMP_CRITICAL:
221 case EXEC_OMP_DEPOBJ:
222 case EXEC_OMP_DISTRIBUTE:
223 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
224 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
225 case EXEC_OMP_DISTRIBUTE_SIMD:
226 case EXEC_OMP_DO:
227 case EXEC_OMP_DO_SIMD:
228 case EXEC_OMP_ERROR:
229 case EXEC_OMP_LOOP:
230 case EXEC_OMP_END_SINGLE:
231 case EXEC_OMP_MASKED_TASKLOOP:
232 case EXEC_OMP_MASKED_TASKLOOP_SIMD:
233 case EXEC_OMP_MASTER_TASKLOOP:
234 case EXEC_OMP_MASTER_TASKLOOP_SIMD:
235 case EXEC_OMP_ORDERED:
236 case EXEC_OMP_MASKED:
237 case EXEC_OMP_PARALLEL:
238 case EXEC_OMP_PARALLEL_DO:
239 case EXEC_OMP_PARALLEL_DO_SIMD:
240 case EXEC_OMP_PARALLEL_LOOP:
241 case EXEC_OMP_PARALLEL_MASKED:
242 case EXEC_OMP_PARALLEL_MASKED_TASKLOOP:
243 case EXEC_OMP_PARALLEL_MASKED_TASKLOOP_SIMD:
244 case EXEC_OMP_PARALLEL_MASTER:
245 case EXEC_OMP_PARALLEL_MASTER_TASKLOOP:
246 case EXEC_OMP_PARALLEL_MASTER_TASKLOOP_SIMD:
247 case EXEC_OMP_PARALLEL_SECTIONS:
248 case EXEC_OMP_PARALLEL_WORKSHARE:
249 case EXEC_OMP_SCAN:
250 case EXEC_OMP_SCOPE:
251 case EXEC_OMP_SECTIONS:
252 case EXEC_OMP_SIMD:
253 case EXEC_OMP_SINGLE:
254 case EXEC_OMP_TARGET:
255 case EXEC_OMP_TARGET_DATA:
256 case EXEC_OMP_TARGET_ENTER_DATA:
257 case EXEC_OMP_TARGET_EXIT_DATA:
258 case EXEC_OMP_TARGET_PARALLEL:
259 case EXEC_OMP_TARGET_PARALLEL_DO:
260 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
261 case EXEC_OMP_TARGET_PARALLEL_LOOP:
262 case EXEC_OMP_TARGET_SIMD:
263 case EXEC_OMP_TARGET_TEAMS:
264 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
265 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
266 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
267 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
268 case EXEC_OMP_TARGET_TEAMS_LOOP:
269 case EXEC_OMP_TARGET_UPDATE:
270 case EXEC_OMP_TASK:
271 case EXEC_OMP_TASKLOOP:
272 case EXEC_OMP_TASKLOOP_SIMD:
273 case EXEC_OMP_TEAMS:
274 case EXEC_OMP_TEAMS_DISTRIBUTE:
275 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
276 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
277 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
278 case EXEC_OMP_TEAMS_LOOP:
279 case EXEC_OMP_WORKSHARE:
280 gfc_free_omp_clauses (p->ext.omp_clauses);
281 break;
283 case EXEC_OMP_END_CRITICAL:
284 free (CONST_CAST (char *, p->ext.omp_name));
285 break;
287 case EXEC_OMP_FLUSH:
288 gfc_free_omp_namelist (p->ext.omp_namelist, false);
289 break;
291 case EXEC_OMP_BARRIER:
292 case EXEC_OMP_MASTER:
293 case EXEC_OMP_END_NOWAIT:
294 case EXEC_OMP_TASKGROUP:
295 case EXEC_OMP_TASKWAIT:
296 case EXEC_OMP_TASKYIELD:
297 break;
299 default:
300 gfc_internal_error ("gfc_free_statement(): Bad statement");
305 /* Free a code statement and all other code structures linked to it. */
307 void
308 gfc_free_statements (gfc_code *p)
310 gfc_code *q;
312 for (; p; p = q)
314 q = p->next;
316 if (p->block)
317 gfc_free_statements (p->block);
318 gfc_free_statement (p);
319 free (p);
324 /* Free an association list (of an ASSOCIATE statement). */
326 void
327 gfc_free_association_list (gfc_association_list* assoc)
329 if (!assoc)
330 return;
332 gfc_free_association_list (assoc->next);
333 free (assoc);