OSDN Git Service

* arith.c: Change copyright header to refer to version 3 of the GNU General
[pf3gnuchains/gcc-fork.git] / gcc / fortran / st.c
1 /* Build executable statement trees.
2    Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007
3    Free Software Foundation, Inc.
4    Contributed by Andy Vaught
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 /* Executable statements are strung together into a singly linked list
23    of code structures.  These structures are later translated into GCC
24    GENERIC tree structures and from there to executable code for a
25    target.  */
26
27 #include "config.h"
28 #include "system.h"
29 #include "gfortran.h"
30
31 gfc_code new_st;
32
33
34 /* Zeroes out the new_st structure.  */
35
36 void
37 gfc_clear_new_st (void)
38 {
39   memset (&new_st, '\0', sizeof (new_st));
40   new_st.op = EXEC_NOP;
41 }
42
43
44 /* Get a gfc_code structure.  */
45
46 gfc_code *
47 gfc_get_code (void)
48 {
49   gfc_code *c;
50
51   c = gfc_getmem (sizeof (gfc_code));
52   c->loc = gfc_current_locus;
53   return c;
54 }
55
56
57 /* Given some part of a gfc_code structure, append a set of code to
58    its tail, returning a pointer to the new tail.  */
59
60 gfc_code *
61 gfc_append_code (gfc_code *tail, gfc_code *new)
62 {
63   if (tail != NULL)
64     {
65       while (tail->next != NULL)
66         tail = tail->next;
67
68       tail->next = new;
69     }
70
71   while (new->next != NULL)
72     new = new->next;
73
74   return new;
75 }
76
77
78 /* Free a single code structure, but not the actual structure itself.  */
79
80 void
81 gfc_free_statement (gfc_code *p)
82 {
83   if (p->expr)
84     gfc_free_expr (p->expr);
85   if (p->expr2)
86     gfc_free_expr (p->expr2);
87
88   switch (p->op)
89     {
90     case EXEC_NOP:
91     case EXEC_ASSIGN:
92     case EXEC_INIT_ASSIGN:
93     case EXEC_GOTO:
94     case EXEC_CYCLE:
95     case EXEC_RETURN:
96     case EXEC_IF:
97     case EXEC_PAUSE:
98     case EXEC_STOP:
99     case EXEC_EXIT:
100     case EXEC_WHERE:
101     case EXEC_IOLENGTH:
102     case EXEC_POINTER_ASSIGN:
103     case EXEC_DO_WHILE:
104     case EXEC_CONTINUE:
105     case EXEC_TRANSFER:
106     case EXEC_LABEL_ASSIGN:
107     case EXEC_ENTRY:
108     case EXEC_ARITHMETIC_IF:
109       break;
110
111     case EXEC_CALL:
112     case EXEC_ASSIGN_CALL:
113       gfc_free_actual_arglist (p->ext.actual);
114       break;
115
116     case EXEC_SELECT:
117       if (p->ext.case_list)
118         gfc_free_case_list (p->ext.case_list);
119       break;
120
121     case EXEC_DO:
122       gfc_free_iterator (p->ext.iterator, 1);
123       break;
124
125     case EXEC_ALLOCATE:
126     case EXEC_DEALLOCATE:
127       gfc_free_alloc_list (p->ext.alloc_list);
128       break;
129
130     case EXEC_OPEN:
131       gfc_free_open (p->ext.open);
132       break;
133
134     case EXEC_CLOSE:
135       gfc_free_close (p->ext.close);
136       break;
137
138     case EXEC_BACKSPACE:
139     case EXEC_ENDFILE:
140     case EXEC_REWIND:
141     case EXEC_FLUSH:
142       gfc_free_filepos (p->ext.filepos);
143       break;
144
145     case EXEC_INQUIRE:
146       gfc_free_inquire (p->ext.inquire);
147       break;
148
149     case EXEC_READ:
150     case EXEC_WRITE:
151       gfc_free_dt (p->ext.dt);
152       break;
153
154     case EXEC_DT_END:
155       /* The ext.dt member is a duplicate pointer and doesn't need to
156          be freed.  */
157       break;
158
159     case EXEC_FORALL:
160       gfc_free_forall_iterator (p->ext.forall_iterator);
161       break;
162
163     case EXEC_OMP_DO:
164     case EXEC_OMP_END_SINGLE:
165     case EXEC_OMP_PARALLEL:
166     case EXEC_OMP_PARALLEL_DO:
167     case EXEC_OMP_PARALLEL_SECTIONS:
168     case EXEC_OMP_SECTIONS:
169     case EXEC_OMP_SINGLE:
170     case EXEC_OMP_WORKSHARE:
171     case EXEC_OMP_PARALLEL_WORKSHARE:
172       gfc_free_omp_clauses (p->ext.omp_clauses);
173       break;
174
175     case EXEC_OMP_CRITICAL:
176       gfc_free ((char *) p->ext.omp_name);
177       break;
178
179     case EXEC_OMP_FLUSH:
180       gfc_free_namelist (p->ext.omp_namelist);
181       break;
182
183     case EXEC_OMP_ATOMIC:
184     case EXEC_OMP_BARRIER:
185     case EXEC_OMP_MASTER:
186     case EXEC_OMP_ORDERED:
187     case EXEC_OMP_END_NOWAIT:
188       break;
189
190     default:
191       gfc_internal_error ("gfc_free_statement(): Bad statement");
192     }
193 }
194
195
196 /* Free a code statement and all other code structures linked to it.  */
197
198 void
199 gfc_free_statements (gfc_code *p)
200 {
201   gfc_code *q;
202
203   for (; p; p = q)
204     {
205       q = p->next;
206
207       if (p->block)
208         gfc_free_statements (p->block);
209       gfc_free_statement (p);
210       gfc_free (p);
211     }
212 }
213