t-linux64 (MULTILIB_OSDIRNAMES): Use x86_64-linux-gnux32 as multiarch name for x32.
[official-gcc.git] / libgfortran / io / format.h
blob87d86419bb7772fb2e88a2de9d7f3c69161c3773
1 /* Copyright (C) 2009, 2010
2 Free Software Foundation, Inc.
3 Contributed by Janne Blomqvist
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran 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 3, or (at your option)
10 any later version.
12 Libgfortran 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 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #ifndef GFOR_FORMAT_H
27 #define GFOR_FORMAT_H
29 #include "io.h"
32 /* Format tokens. Only about half of these can be stored in the
33 format nodes. */
35 typedef enum
37 FMT_NONE = 0, FMT_UNKNOWN, FMT_SIGNED_INT, FMT_ZERO, FMT_POSINT, FMT_PERIOD,
38 FMT_COMMA, FMT_COLON, FMT_SLASH, FMT_DOLLAR, FMT_T, FMT_TR, FMT_TL,
39 FMT_LPAREN, FMT_RPAREN, FMT_X, FMT_S, FMT_SS, FMT_SP, FMT_STRING,
40 FMT_BADSTRING, FMT_P, FMT_I, FMT_B, FMT_BN, FMT_BZ, FMT_O, FMT_Z, FMT_F,
41 FMT_E, FMT_EN, FMT_ES, FMT_G, FMT_L, FMT_A, FMT_D, FMT_H, FMT_END, FMT_DC,
42 FMT_DP, FMT_STAR, FMT_RC, FMT_RD, FMT_RN, FMT_RP, FMT_RU, FMT_RZ
44 format_token;
47 /* Format nodes. A format string is converted into a tree of these
48 structures, which is traversed as part of a data transfer statement. */
50 struct fnode
52 format_token format;
53 int repeat;
54 struct fnode *next;
55 char *source;
57 union
59 struct
61 int w, d, e;
63 real;
65 struct
67 int length;
68 char *p;
70 string;
72 struct
74 int w, m;
76 integer;
78 int w;
79 int k;
80 int r;
81 int n;
83 struct fnode *child;
87 /* Members for traversing the tree during data transfer. */
89 int count;
90 struct fnode *current;
95 /* A storage structures for format node data. */
97 #define FARRAY_SIZE 64
99 typedef struct fnode_array
101 struct fnode_array *next;
102 fnode array[FARRAY_SIZE];
104 fnode_array;
107 typedef struct format_data
109 char *format_string, *string;
110 const char *error;
111 char error_element;
112 format_token saved_token;
113 int value, format_string_len, reversion_ok;
114 fnode *avail;
115 const fnode *saved_format;
116 fnode_array *last;
117 fnode_array array;
119 format_data;
121 extern void parse_format (st_parameter_dt *);
122 internal_proto(parse_format);
124 extern const fnode *next_format (st_parameter_dt *);
125 internal_proto(next_format);
127 extern void unget_format (st_parameter_dt *, const fnode *);
128 internal_proto(unget_format);
130 extern void format_error (st_parameter_dt *, const fnode *, const char *);
131 internal_proto(format_error);
133 extern void free_format_data (struct format_data *);
134 internal_proto(free_format_data);
136 extern void free_format_hash_table (gfc_unit *);
137 internal_proto(free_format_hash_table);
139 extern void init_format_hash (st_parameter_dt *);
140 internal_proto(init_format_hash);
142 extern void free_format_hash (st_parameter_dt *);
143 internal_proto(free_format_hash);
145 #endif