]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/genattr.c
Correct a function pre/postcondition [PR102403].
[thirdparty/gcc.git] / gcc / genattr.c
CommitLineData
f12b8918 1/* Generate attribute information (insn-attr.h) from machine description.
99dee823 2 Copyright (C) 1991-2021 Free Software Foundation, Inc.
c9309570 3 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
41299f41 4
1322177d 5This file is part of GCC.
41299f41 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
1322177d 10version.
41299f41 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
41299f41
TW
16
17You should have received a copy of the GNU General Public License
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
41299f41
TW
20
21
4977bab6 22#include "bconfig.h"
0b93b64e 23#include "system.h"
4977bab6
ZW
24#include "coretypes.h"
25#include "tm.h"
41299f41 26#include "rtl.h"
f8b6598e 27#include "errors.h"
10692477 28#include "read-md.h"
c88c0d42 29#include "gensupport.h"
41299f41 30
41299f41 31
9771b263 32static vec<rtx> const_attrs, reservations;
2b21299c
JJ
33
34
4beba5da 35static void
5d2d3e43 36gen_attr (md_rtx_info *info)
4beba5da 37{
c344a866 38 const char *p;
5d2d3e43 39 rtx attr = info->def;
3d7aafde 40 int is_const = GET_CODE (XEXP (attr, 2)) == CONST;
41299f41 41
2b21299c 42 if (is_const)
9771b263 43 const_attrs.safe_push (attr);
2b21299c 44
d327457f 45 printf ("#define HAVE_ATTR_%s 1\n", XSTR (attr, 0));
41299f41 46
f12b8918 47 /* If numeric attribute, don't need to write an enum. */
8f4fe86c
RS
48 if (GET_CODE (attr) == DEFINE_ENUM_ATTR)
49 printf ("extern enum %s get_attr_%s (%s);\n\n",
84034c69
DM
50 XSTR (attr, 1), XSTR (attr, 0),
51 (is_const ? "void" : "rtx_insn *"));
41299f41
TW
52 else
53 {
8f4fe86c
RS
54 p = XSTR (attr, 1);
55 if (*p == '\0')
56 printf ("extern int get_attr_%s (%s);\n", XSTR (attr, 0),
84034c69 57 (is_const ? "void" : "rtx_insn *"));
8f4fe86c 58 else
c344a866 59 printf ("extern enum attr_%s get_attr_%s (%s);\n\n",
84034c69
DM
60 XSTR (attr, 0), XSTR (attr, 0),
61 (is_const ? "void" : "rtx_insn *"));
41299f41
TW
62 }
63
f12b8918
TM
64 /* If `length' attribute, write additional function definitions and define
65 variables used by `insn_current_length'. */
66 if (! strcmp (XSTR (attr, 0), "length"))
41299f41 67 {
9a5834ae 68 puts ("\
49922db8 69extern void shorten_branches (rtx_insn *);\n\
84034c69
DM
70extern int insn_default_length (rtx_insn *);\n\
71extern int insn_min_length (rtx_insn *);\n\
72extern int insn_variable_length_p (rtx_insn *);\n\
73extern int insn_current_length (rtx_insn *);\n\n\
9a5834ae 74#include \"insn-addr.h\"\n");
41299f41
TW
75 }
76}
77
2b21299c
JJ
78/* Check that attribute NAME is used in define_insn_reservation condition
79 EXP. Return true if it is. */
80static bool
81check_tune_attr (const char *name, rtx exp)
82{
83 switch (GET_CODE (exp))
84 {
85 case AND:
86 if (check_tune_attr (name, XEXP (exp, 0)))
87 return true;
88 return check_tune_attr (name, XEXP (exp, 1));
89
90 case IOR:
91 return (check_tune_attr (name, XEXP (exp, 0))
92 && check_tune_attr (name, XEXP (exp, 1)));
93
94 case EQ_ATTR:
95 return strcmp (XSTR (exp, 0), name) == 0;
96
97 default:
98 return false;
99 }
100}
101
102/* Try to find a const attribute (usually cpu or tune) that is used
103 in all define_insn_reservation conditions. */
104static bool
105find_tune_attr (rtx exp)
106{
107 unsigned int i;
108 rtx attr;
109
110 switch (GET_CODE (exp))
111 {
112 case AND:
113 case IOR:
114 if (find_tune_attr (XEXP (exp, 0)))
115 return true;
116 return find_tune_attr (XEXP (exp, 1));
117
118 case EQ_ATTR:
119 if (strcmp (XSTR (exp, 0), "alternative") == 0)
120 return false;
121
9771b263 122 FOR_EACH_VEC_ELT (const_attrs, i, attr)
2b21299c
JJ
123 if (strcmp (XSTR (attr, 0), XSTR (exp, 0)) == 0)
124 {
125 unsigned int j;
126 rtx resv;
127
9771b263 128 FOR_EACH_VEC_ELT (reservations, j, resv)
2b21299c
JJ
129 if (! check_tune_attr (XSTR (attr, 0), XEXP (resv, 2)))
130 return false;
131 return true;
132 }
133 return false;
134
135 default:
136 return false;
137 }
138}
139
41299f41 140int
66b0fe8f 141main (int argc, const char **argv)
41299f41 142{
e90bedf5
TS
143 bool have_annul_true = false;
144 bool have_annul_false = false;
fae15c93 145 int num_insn_reservations = 0;
41299f41
TW
146 int i;
147
f8b6598e 148 progname = "genattr";
41299f41 149
600ab3fc 150 if (!init_rtx_reader_args (argc, argv))
c88c0d42 151 return (FATAL_EXIT_CODE);
41299f41 152
0313e85b
ZW
153 puts ("/* Generated automatically by the program `genattr'");
154 puts (" from the machine description file `md'. */\n");
155 puts ("#ifndef GCC_INSN_ATTR_H");
156 puts ("#define GCC_INSN_ATTR_H\n");
41299f41 157
88a00ef7
JM
158 puts ("#include \"insn-attr-common.h\"\n");
159
41299f41
TW
160 /* Read the machine description. */
161
5d2d3e43
RS
162 md_rtx_info info;
163 while (read_md_rtx (&info))
41299f41 164 {
5d2d3e43
RS
165 rtx def = info.def;
166 switch (GET_CODE (def))
167 {
168 case DEFINE_ATTR:
169 case DEFINE_ENUM_ATTR:
170 gen_attr (&info);
171 break;
41299f41 172
5d2d3e43 173 case DEFINE_DELAY:
5d2d3e43 174 for (i = 0; i < XVECLEN (def, 1); i += 3)
f12b8918 175 {
e90bedf5
TS
176 if (XVECEXP (def, 1, i + 1))
177 have_annul_true = true;
178
179 if (XVECEXP (def, 1, i + 2))
180 have_annul_false = true;
f12b8918 181 }
5d2d3e43 182 break;
ef3fad04 183
5d2d3e43 184 case DEFINE_INSN_RESERVATION:
2b21299c 185 num_insn_reservations++;
5d2d3e43
RS
186 reservations.safe_push (def);
187 break;
188
189 default:
190 break;
2b21299c 191 }
f12b8918 192 }
ef3fad04 193
e90bedf5
TS
194 printf ("extern int num_delay_slots (rtx_insn *);\n");
195 printf ("extern int eligible_for_delay (rtx_insn *, int, rtx_insn *, int);\n\n");
196 printf ("extern int const_num_delay_slots (rtx_insn *);\n\n");
197 printf ("#define ANNUL_IFTRUE_SLOTS %d\n", have_annul_true);
198 printf ("extern int eligible_for_annul_true (rtx_insn *, int, rtx_insn *, int);\n");
199 printf ("#define ANNUL_IFFALSE_SLOTS %d\n", have_annul_false);
200 printf ("extern int eligible_for_annul_false (rtx_insn *, int, rtx_insn *, int);\n");
201
fa0aee89 202 if (num_insn_reservations > 0)
f12b8918 203 {
2b21299c 204 bool has_tune_attr
9771b263 205 = find_tune_attr (XEXP (reservations[0], 2));
fae15c93
VM
206 /* Output interface for pipeline hazards recognition based on
207 DFA (deterministic finite state automata. */
208 printf ("\n/* DFA based pipeline interface. */");
d530b07f
VM
209 printf ("\n#ifndef AUTOMATON_ALTS\n");
210 printf ("#define AUTOMATON_ALTS 0\n");
211 printf ("#endif\n\n");
fae15c93
VM
212 printf ("\n#ifndef AUTOMATON_STATE_ALTS\n");
213 printf ("#define AUTOMATON_STATE_ALTS 0\n");
214 printf ("#endif\n\n");
215 printf ("#ifndef CPU_UNITS_QUERY\n");
216 printf ("#define CPU_UNITS_QUERY 0\n");
217 printf ("#endif\n\n");
218 /* Interface itself: */
2b21299c
JJ
219 if (has_tune_attr)
220 {
221 printf ("/* Initialize fn pointers for internal_dfa_insn_code\n");
222 printf (" and insn_default_latency. */\n");
223 printf ("extern void init_sched_attrs (void);\n\n");
224 printf ("/* Internal insn code number used by automata. */\n");
84034c69 225 printf ("extern int (*internal_dfa_insn_code) (rtx_insn *);\n\n");
2b21299c 226 printf ("/* Insn latency time defined in define_insn_reservation. */\n");
84034c69 227 printf ("extern int (*insn_default_latency) (rtx_insn *);\n\n");
2b21299c
JJ
228 }
229 else
230 {
231 printf ("#define init_sched_attrs() do { } while (0)\n\n");
232 printf ("/* Internal insn code number used by automata. */\n");
84034c69 233 printf ("extern int internal_dfa_insn_code (rtx_insn *);\n\n");
2b21299c 234 printf ("/* Insn latency time defined in define_insn_reservation. */\n");
84034c69 235 printf ("extern int insn_default_latency (rtx_insn *);\n\n");
2b21299c 236 }
fae15c93
VM
237 printf ("/* Return nonzero if there is a bypass for given insn\n");
238 printf (" which is a data producer. */\n");
84034c69 239 printf ("extern int bypass_p (rtx_insn *);\n\n");
fae15c93
VM
240 printf ("/* Insn latency time on data consumed by the 2nd insn.\n");
241 printf (" Use the function if bypass_p returns nonzero for\n");
242 printf (" the 1st insn. */\n");
d8aecc55 243 printf ("extern int insn_latency (rtx_insn *, rtx_insn *);\n\n");
e855c69d
AB
244 printf ("/* Maximal insn latency time possible of all bypasses for this insn.\n");
245 printf (" Use the function if bypass_p returns nonzero for\n");
246 printf (" the 1st insn. */\n");
d8aecc55 247 printf ("extern int maximal_insn_latency (rtx_insn *);\n\n");
d530b07f 248 printf ("\n#if AUTOMATON_ALTS\n");
fae15c93
VM
249 printf ("/* The following function returns number of alternative\n");
250 printf (" reservations of given insn. It may be used for better\n");
251 printf (" insns scheduling heuristics. */\n");
3d7aafde 252 printf ("extern int insn_alts (rtx);\n\n");
d530b07f 253 printf ("#endif\n\n");
fae15c93
VM
254 printf ("/* Maximal possible number of insns waiting results being\n");
255 printf (" produced by insns whose execution is not finished. */\n");
5f2f0edd 256 printf ("extern const int max_insn_queue_index;\n\n");
fae15c93
VM
257 printf ("/* Pointer to data describing current state of DFA. */\n");
258 printf ("typedef void *state_t;\n\n");
259 printf ("/* Size of the data in bytes. */\n");
3d7aafde 260 printf ("extern int state_size (void);\n\n");
fae15c93
VM
261 printf ("/* Initiate given DFA state, i.e. Set up the state\n");
262 printf (" as all functional units were not reserved. */\n");
3d7aafde 263 printf ("extern void state_reset (state_t);\n");
fae15c93
VM
264 printf ("/* The following function returns negative value if given\n");
265 printf (" insn can be issued in processor state described by given\n");
266 printf (" DFA state. In this case, the DFA state is changed to\n");
267 printf (" reflect the current and future reservations by given\n");
268 printf (" insn. Otherwise the function returns minimal time\n");
269 printf (" delay to issue the insn. This delay may be zero\n");
270 printf (" for superscalar or VLIW processors. If the second\n");
271 printf (" parameter is NULL the function changes given DFA state\n");
272 printf (" as new processor cycle started. */\n");
3d7aafde 273 printf ("extern int state_transition (state_t, rtx);\n");
fae15c93
VM
274 printf ("\n#if AUTOMATON_STATE_ALTS\n");
275 printf ("/* The following function returns number of possible\n");
276 printf (" alternative reservations of given insn in given\n");
277 printf (" DFA state. It may be used for better insns scheduling\n");
278 printf (" heuristics. By default the function is defined if\n");
279 printf (" macro AUTOMATON_STATE_ALTS is defined because its\n");
280 printf (" implementation may require much memory. */\n");
3d7aafde 281 printf ("extern int state_alts (state_t, rtx);\n");
fae15c93 282 printf ("#endif\n\n");
84034c69 283 printf ("extern int min_issue_delay (state_t, rtx_insn *);\n");
fae15c93
VM
284 printf ("/* The following function returns nonzero if no one insn\n");
285 printf (" can be issued in current DFA state. */\n");
3d7aafde 286 printf ("extern int state_dead_lock_p (state_t);\n");
fae15c93
VM
287 printf ("/* The function returns minimal delay of issue of the 2nd\n");
288 printf (" insn after issuing the 1st insn in given DFA state.\n");
289 printf (" The 1st insn should be issued in given state (i.e.\n");
290 printf (" state_transition should return negative value for\n");
291 printf (" the insn and the state). Data dependencies between\n");
292 printf (" the insns are ignored by the function. */\n");
d8aecc55
AM
293 printf ("extern int "
294 "min_insn_conflict_delay (state_t, rtx_insn *, rtx_insn *);\n");
fae15c93
VM
295 printf ("/* The following function outputs reservations for given\n");
296 printf (" insn as they are described in the corresponding\n");
297 printf (" define_insn_reservation. */\n");
84034c69 298 printf ("extern void print_reservation (FILE *, rtx_insn *);\n");
fae15c93
VM
299 printf ("\n#if CPU_UNITS_QUERY\n");
300 printf ("/* The following function returns code of functional unit\n");
301 printf (" with given name (see define_cpu_unit). */\n");
3d7aafde 302 printf ("extern int get_cpu_unit_code (const char *);\n");
fae15c93
VM
303 printf ("/* The following function returns nonzero if functional\n");
304 printf (" unit with given code is currently reserved in given\n");
305 printf (" DFA state. */\n");
3d7aafde 306 printf ("extern int cpu_unit_reservation_p (state_t, int);\n");
dd1b7476 307 printf ("#endif\n\n");
1c3d0d93
MK
308 printf ("/* The following function returns true if insn\n");
309 printf (" has a dfa reservation. */\n");
84034c69 310 printf ("extern bool insn_has_dfa_reservation_p (rtx_insn *);\n\n");
30028c85
VM
311 printf ("/* Clean insn code cache. It should be called if there\n");
312 printf (" is a chance that condition value in a\n");
313 printf (" define_insn_reservation will be changed after\n");
314 printf (" last call of dfa_start. */\n");
3d7aafde 315 printf ("extern void dfa_clean_insn_cache (void);\n\n");
cbba639c 316 printf ("extern void dfa_clear_single_insn_cache (rtx_insn *);\n\n");
fae15c93
VM
317 printf ("/* Initiate and finish work with DFA. They should be\n");
318 printf (" called as the first and the last interface\n");
319 printf (" functions. */\n");
3d7aafde
AJ
320 printf ("extern void dfa_start (void);\n");
321 printf ("extern void dfa_finish (void);\n");
fae15c93
VM
322 }
323 else
324 {
325 /* Otherwise we do no scheduling, but we need these typedefs
326 in order to avoid uglifying other code with more ifdefs. */
327 printf ("typedef void *state_t;\n\n");
a224278b 328 }
b29d5f75 329
688010ba 330 /* Special-purpose attributes should be tested with if, not #ifdef. */
9840b2fa
RS
331 const char * const special_attrs[] = { "length", "enabled",
332 "preferred_for_size",
333 "preferred_for_speed", 0 };
d327457f
JR
334 for (const char * const *p = special_attrs; *p; p++)
335 {
336 printf ("#ifndef HAVE_ATTR_%s\n"
337 "#define HAVE_ATTR_%s 0\n"
338 "#endif\n", *p, *p);
339 }
340 /* We make an exception here to provide stub definitions for
341 insn_*_length* / get_attr_enabled functions. */
342 puts ("#if !HAVE_ATTR_length\n"
84034c69
DM
343 "extern int hook_int_rtx_insn_unreachable (rtx_insn *);\n"
344 "#define insn_default_length hook_int_rtx_insn_unreachable\n"
345 "#define insn_min_length hook_int_rtx_insn_unreachable\n"
346 "#define insn_variable_length_p hook_int_rtx_insn_unreachable\n"
347 "#define insn_current_length hook_int_rtx_insn_unreachable\n"
d327457f
JR
348 "#include \"insn-addr.h\"\n"
349 "#endif\n"
d327457f 350 "extern int hook_int_rtx_1 (rtx);\n"
9840b2fa 351 "#if !HAVE_ATTR_enabled\n"
d327457f 352 "#define get_attr_enabled hook_int_rtx_1\n"
9840b2fa
RS
353 "#endif\n"
354 "#if !HAVE_ATTR_preferred_for_size\n"
355 "#define get_attr_preferred_for_size hook_int_rtx_1\n"
356 "#endif\n"
357 "#if !HAVE_ATTR_preferred_for_speed\n"
358 "#define get_attr_preferred_for_speed hook_int_rtx_1\n"
d327457f
JR
359 "#endif\n");
360
3d7aafde 361 /* Output flag masks for use by reorg.
eaa48dab 362
593dbe11 363 Flags are used to hold branch direction for use by eligible_for_... */
c3284718
RS
364 printf ("\n#define ATTR_FLAG_forward\t0x1\n");
365 printf ("#define ATTR_FLAG_backward\t0x2\n");
eaa48dab 366
c3284718 367 puts ("\n#endif /* GCC_INSN_ATTR_H */");
0313e85b
ZW
368
369 if (ferror (stdout) || fflush (stdout) || fclose (stdout))
370 return FATAL_EXIT_CODE;
371
372 return SUCCESS_EXIT_CODE;
41299f41 373}