Initial revision
[official-gcc.git] / gcc / f / stt.h
blob827841ea9830dd08ea6c07b737d322fa94d8580c
1 /* stt.h -- Private #include File (module.h template V1.0)
2 Copyright (C) 1995 Free Software Foundation, Inc.
3 Contributed by James Craig Burley (burley@gnu.ai.mit.edu).
5 This file is part of GNU Fortran.
7 GNU Fortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Fortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Fortran; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
22 Owning Modules:
23 stt.c
25 Modifications:
28 /* Allow multiple inclusion to work. */
30 #ifndef _H_f_stt
31 #define _H_f_stt
33 /* Simple definitions and enumerations. */
36 /* Typedefs. */
38 typedef struct _ffest_case_list_ *ffesttCaseList;
39 typedef struct _ffest_dim_list_ *ffesttDimList;
40 typedef struct _ffest_expr_list_ *ffesttExprList;
41 typedef struct _ffest_format_value_ ffesttFormatValue;
42 typedef struct _ffest_format_list_ *ffesttFormatList;
43 typedef struct _ffest_imp_list_ *ffesttImpList;
44 typedef struct _ffest_token_item_ *ffesttTokenItem;
45 typedef struct _ffest_token_list_ *ffesttTokenList;
47 /* Include files needed by this one. */
49 #include "top.h"
50 #include "bld.h"
51 #include "info.h"
52 #include "lex.h"
53 #include "stp.h"
55 /* Structure definitions. */
57 struct _ffest_case_list_
59 ffesttCaseList next;
60 ffesttCaseList previous;
61 ffelexToken t;
62 ffebld expr1;
63 ffebld expr2;
64 bool range; /* TRUE if "[expr1]:[expr2]", FALSE if
65 "expr1". */
68 struct _ffest_dim_list_
70 ffesttDimList next;
71 ffesttDimList previous;
72 ffelexToken t;
73 ffebld lower;
74 ffebld upper;
77 struct _ffest_expr_list_
79 ffesttExprList next;
80 ffesttExprList previous;
81 ffelexToken t;
82 ffebld expr;
85 struct _ffest_token_item_
87 ffesttTokenItem next;
88 ffesttTokenItem previous;
89 ffelexToken t;
92 struct _ffest_token_list_
94 ffesttTokenItem first;
95 ffesttTokenItem last;
96 int count; /* Number of tokens in list. */
99 struct _ffest_format_value_
101 bool present; /* TRUE if value supplied (needed for
102 optional values only). */
103 bool rtexpr; /* FALSE if constant value here, TRUE if
104 run-time expr (VXT). */
105 ffelexToken t; /* The first token, or perhaps just prior if
106 can't get it. */
107 union
109 ffeUnionLongPtr unused; /* Make sure all the info gets copied. */
110 long signed_val; /* for R1011. */
111 unsigned long unsigned_val; /* For other constant values. */
112 ffebld expr; /* For run-time expression (VXT). */
117 struct _ffest_format_list_
119 ffesttFormatList next;
120 ffesttFormatList previous;
121 ffelexToken t; /* The NAME, CHARACTER, or HOLLERITH token. */
122 ffestpFormatType type;
123 union ffest_format_
125 struct
127 ffesttFormatValue R1004; /* r, the repeat count. */
128 ffesttFormatValue R1006; /* w, the field width. */
129 ffesttFormatValue R1007_or_R1008; /* m, the minimum number of
130 digits; d, the number of
131 decimal digits. */
132 ffesttFormatValue R1009; /* e, the number of exponent digits. */
134 R1005; /* data-edit-desc. */
135 struct
137 ffesttFormatValue val; /* r, the repeat count; k, the
138 precision magnitude adjustment; n,
139 the column number (abs or rel). */
141 R1010; /* control-edit-desc. */
142 struct
144 ffesttFormatValue R1004; /* r, the repeat count. */
145 ffesttFormatList format; /* the parenthesized
146 format-item-list. */
148 R1003D; /* format-item of for [r](format-item-list). */
149 struct
151 ffesttFormatList parent; /* NULL if outer list, else parent
152 item. */
154 root; /* FFESTP_formattypeNone case. */
159 /* Global objects accessed by users of this module. */
162 /* Declare functions with prototypes. */
164 void ffestt_caselist_append (ffesttCaseList list, bool range, ffebld case1,
165 ffebld case2, ffelexToken t);
166 ffesttCaseList ffestt_caselist_create (void);
167 void ffestt_caselist_dump (ffesttCaseList list);
168 void ffestt_caselist_kill (ffesttCaseList list);
169 void ffestt_dimlist_append (ffesttDimList list, ffebld lower, ffebld upper,
170 ffelexToken t);
171 ffebld ffestt_dimlist_as_expr (ffesttDimList list, ffeinfoRank *rank,
172 ffebld *array_size, ffebld *extents,
173 bool is_ugly_assumed);
174 ffesttDimList ffestt_dimlist_create (void);
175 void ffestt_dimlist_dump (ffesttDimList list);
176 void ffestt_dimlist_kill (ffesttDimList list);
177 ffestpDimtype ffestt_dimlist_type (ffesttDimList dims, bool is_ugly_assumed);
178 void ffestt_exprlist_append (ffesttExprList list, ffebld expr, ffelexToken t);
179 ffesttExprList ffestt_exprlist_create (void);
180 void ffestt_exprlist_drive (ffesttExprList list, void (*fn) ());
181 void ffestt_exprlist_dump (ffesttExprList list);
182 void ffestt_exprlist_kill (ffesttExprList list);
183 ffesttFormatList ffestt_formatlist_append (ffesttFormatList list);
184 ffesttFormatList ffestt_formatlist_create (ffesttFormatList parent,
185 ffelexToken t);
186 void ffestt_formatlist_dump (ffesttFormatList list);
187 void ffestt_formatlist_kill (ffesttFormatList list);
188 void ffestt_implist_append (ffesttImpList list, ffelexToken first,
189 ffelexToken last);
190 ffesttImpList ffestt_implist_create (void);
191 void ffestt_implist_drive (ffesttImpList list, void (*fn) ());
192 void ffestt_implist_dump (ffesttImpList list);
193 void ffestt_implist_kill (ffesttImpList list);
194 void ffestt_tokenlist_append (ffesttTokenList list, ffelexToken t);
195 ffesttTokenList ffestt_tokenlist_create (void);
196 void ffestt_tokenlist_drive (ffesttTokenList list, void (*fn) ());
197 void ffestt_tokenlist_dump (ffesttTokenList list);
198 ffelexHandler ffestt_tokenlist_handle (ffesttTokenList list,
199 ffelexHandler handler);
200 void ffestt_tokenlist_kill (ffesttTokenList list);
202 /* Define macros. */
204 #define ffestt_init_0()
205 #define ffestt_init_1()
206 #define ffestt_init_2()
207 #define ffestt_init_3()
208 #define ffestt_init_4()
209 #define ffestt_terminate_0()
210 #define ffestt_terminate_1()
211 #define ffestt_terminate_2()
212 #define ffestt_terminate_3()
213 #define ffestt_terminate_4()
214 #define ffestt_tokenlist_count(tl) ((tl)->count)
216 /* End of #include file. */
218 #endif