1 /* Generate attribute information (insn-attr.h) from machine description.
2 Copyright (C) 1991, 1994, 1996, 1998, 1999, 2000, 2003, 2004, 2007, 2008,
3 2010, 2011 Free Software Foundation, Inc.
4 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
6 This file is part of GCC.
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
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
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/>. */
25 #include "coretypes.h"
30 #include "gensupport.h"
33 static void gen_attr (rtx
);
35 static vec
<rtx
> const_attrs
, reservations
;
42 int is_const
= GET_CODE (XEXP (attr
, 2)) == CONST
;
45 const_attrs
.safe_push (attr
);
47 printf ("#define HAVE_ATTR_%s 1\n", XSTR (attr
, 0));
49 /* If numeric attribute, don't need to write an enum. */
50 if (GET_CODE (attr
) == DEFINE_ENUM_ATTR
)
51 printf ("extern enum %s get_attr_%s (%s);\n\n",
52 XSTR (attr
, 1), XSTR (attr
, 0), (is_const
? "void" : "rtx"));
57 printf ("extern int get_attr_%s (%s);\n", XSTR (attr
, 0),
58 (is_const
? "void" : "rtx"));
60 printf ("extern enum attr_%s get_attr_%s (%s);\n\n",
61 XSTR (attr
, 0), XSTR (attr
, 0), (is_const
? "void" : "rtx"));
64 /* If `length' attribute, write additional function definitions and define
65 variables used by `insn_current_length'. */
66 if (! strcmp (XSTR (attr
, 0), "length"))
69 extern void shorten_branches (rtx);\n\
70 extern int insn_default_length (rtx);\n\
71 extern int insn_min_length (rtx);\n\
72 extern int insn_variable_length_p (rtx);\n\
73 extern int insn_current_length (rtx);\n\n\
74 #include \"insn-addr.h\"\n");
78 /* Check that attribute NAME is used in define_insn_reservation condition
79 EXP. Return true if it is. */
81 check_tune_attr (const char *name
, rtx exp
)
83 switch (GET_CODE (exp
))
86 if (check_tune_attr (name
, XEXP (exp
, 0)))
88 return check_tune_attr (name
, XEXP (exp
, 1));
91 return (check_tune_attr (name
, XEXP (exp
, 0))
92 && check_tune_attr (name
, XEXP (exp
, 1)));
95 return strcmp (XSTR (exp
, 0), name
) == 0;
102 /* Try to find a const attribute (usually cpu or tune) that is used
103 in all define_insn_reservation conditions. */
105 find_tune_attr (rtx exp
)
110 switch (GET_CODE (exp
))
114 if (find_tune_attr (XEXP (exp
, 0)))
116 return find_tune_attr (XEXP (exp
, 1));
119 if (strcmp (XSTR (exp
, 0), "alternative") == 0)
122 FOR_EACH_VEC_ELT (const_attrs
, i
, attr
)
123 if (strcmp (XSTR (attr
, 0), XSTR (exp
, 0)) == 0)
128 FOR_EACH_VEC_ELT (reservations
, j
, resv
)
129 if (! check_tune_attr (XSTR (attr
, 0), XEXP (resv
, 2)))
141 main (int argc
, char **argv
)
145 int have_annul_true
= 0;
146 int have_annul_false
= 0;
147 int num_insn_reservations
= 0;
150 progname
= "genattr";
152 if (!init_rtx_reader_args (argc
, argv
))
153 return (FATAL_EXIT_CODE
);
155 puts ("/* Generated automatically by the program `genattr'");
156 puts (" from the machine description file `md'. */\n");
157 puts ("#ifndef GCC_INSN_ATTR_H");
158 puts ("#define GCC_INSN_ATTR_H\n");
160 puts ("#include \"insn-attr-common.h\"\n");
162 /* Read the machine description. */
166 int line_no
, insn_code_number
;
168 desc
= read_md_rtx (&line_no
, &insn_code_number
);
172 if (GET_CODE (desc
) == DEFINE_ATTR
173 || GET_CODE (desc
) == DEFINE_ENUM_ATTR
)
176 else if (GET_CODE (desc
) == DEFINE_DELAY
)
180 printf ("extern int num_delay_slots (rtx);\n");
181 printf ("extern int eligible_for_delay (rtx, int, rtx, int);\n\n");
182 printf ("extern int const_num_delay_slots (rtx);\n\n");
186 for (i
= 0; i
< XVECLEN (desc
, 1); i
+= 3)
188 if (XVECEXP (desc
, 1, i
+ 1) && ! have_annul_true
)
190 printf ("#define ANNUL_IFTRUE_SLOTS\n");
191 printf ("extern int eligible_for_annul_true (rtx, int, rtx, int);\n");
195 if (XVECEXP (desc
, 1, i
+ 2) && ! have_annul_false
)
197 printf ("#define ANNUL_IFFALSE_SLOTS\n");
198 printf ("extern int eligible_for_annul_false (rtx, int, rtx, int);\n");
199 have_annul_false
= 1;
204 else if (GET_CODE (desc
) == DEFINE_INSN_RESERVATION
)
206 num_insn_reservations
++;
207 reservations
.safe_push (desc
);
211 if (num_insn_reservations
> 0)
214 = find_tune_attr (XEXP (reservations
[0], 2));
215 /* Output interface for pipeline hazards recognition based on
216 DFA (deterministic finite state automata. */
217 printf ("\n/* DFA based pipeline interface. */");
218 printf ("\n#ifndef AUTOMATON_ALTS\n");
219 printf ("#define AUTOMATON_ALTS 0\n");
220 printf ("#endif\n\n");
221 printf ("\n#ifndef AUTOMATON_STATE_ALTS\n");
222 printf ("#define AUTOMATON_STATE_ALTS 0\n");
223 printf ("#endif\n\n");
224 printf ("#ifndef CPU_UNITS_QUERY\n");
225 printf ("#define CPU_UNITS_QUERY 0\n");
226 printf ("#endif\n\n");
227 /* Interface itself: */
230 printf ("/* Initialize fn pointers for internal_dfa_insn_code\n");
231 printf (" and insn_default_latency. */\n");
232 printf ("extern void init_sched_attrs (void);\n\n");
233 printf ("/* Internal insn code number used by automata. */\n");
234 printf ("extern int (*internal_dfa_insn_code) (rtx);\n\n");
235 printf ("/* Insn latency time defined in define_insn_reservation. */\n");
236 printf ("extern int (*insn_default_latency) (rtx);\n\n");
240 printf ("#define init_sched_attrs() do { } while (0)\n\n");
241 printf ("/* Internal insn code number used by automata. */\n");
242 printf ("extern int internal_dfa_insn_code (rtx);\n\n");
243 printf ("/* Insn latency time defined in define_insn_reservation. */\n");
244 printf ("extern int insn_default_latency (rtx);\n\n");
246 printf ("/* Return nonzero if there is a bypass for given insn\n");
247 printf (" which is a data producer. */\n");
248 printf ("extern int bypass_p (rtx);\n\n");
249 printf ("/* Insn latency time on data consumed by the 2nd insn.\n");
250 printf (" Use the function if bypass_p returns nonzero for\n");
251 printf (" the 1st insn. */\n");
252 printf ("extern int insn_latency (rtx, rtx);\n\n");
253 printf ("/* Maximal insn latency time possible of all bypasses for this insn.\n");
254 printf (" Use the function if bypass_p returns nonzero for\n");
255 printf (" the 1st insn. */\n");
256 printf ("extern int maximal_insn_latency (rtx);\n\n");
257 printf ("\n#if AUTOMATON_ALTS\n");
258 printf ("/* The following function returns number of alternative\n");
259 printf (" reservations of given insn. It may be used for better\n");
260 printf (" insns scheduling heuristics. */\n");
261 printf ("extern int insn_alts (rtx);\n\n");
262 printf ("#endif\n\n");
263 printf ("/* Maximal possible number of insns waiting results being\n");
264 printf (" produced by insns whose execution is not finished. */\n");
265 printf ("extern const int max_insn_queue_index;\n\n");
266 printf ("/* Pointer to data describing current state of DFA. */\n");
267 printf ("typedef void *state_t;\n\n");
268 printf ("/* Size of the data in bytes. */\n");
269 printf ("extern int state_size (void);\n\n");
270 printf ("/* Initiate given DFA state, i.e. Set up the state\n");
271 printf (" as all functional units were not reserved. */\n");
272 printf ("extern void state_reset (state_t);\n");
273 printf ("/* The following function returns negative value if given\n");
274 printf (" insn can be issued in processor state described by given\n");
275 printf (" DFA state. In this case, the DFA state is changed to\n");
276 printf (" reflect the current and future reservations by given\n");
277 printf (" insn. Otherwise the function returns minimal time\n");
278 printf (" delay to issue the insn. This delay may be zero\n");
279 printf (" for superscalar or VLIW processors. If the second\n");
280 printf (" parameter is NULL the function changes given DFA state\n");
281 printf (" as new processor cycle started. */\n");
282 printf ("extern int state_transition (state_t, rtx);\n");
283 printf ("\n#if AUTOMATON_STATE_ALTS\n");
284 printf ("/* The following function returns number of possible\n");
285 printf (" alternative reservations of given insn in given\n");
286 printf (" DFA state. It may be used for better insns scheduling\n");
287 printf (" heuristics. By default the function is defined if\n");
288 printf (" macro AUTOMATON_STATE_ALTS is defined because its\n");
289 printf (" implementation may require much memory. */\n");
290 printf ("extern int state_alts (state_t, rtx);\n");
291 printf ("#endif\n\n");
292 printf ("extern int min_issue_delay (state_t, rtx);\n");
293 printf ("/* The following function returns nonzero if no one insn\n");
294 printf (" can be issued in current DFA state. */\n");
295 printf ("extern int state_dead_lock_p (state_t);\n");
296 printf ("/* The function returns minimal delay of issue of the 2nd\n");
297 printf (" insn after issuing the 1st insn in given DFA state.\n");
298 printf (" The 1st insn should be issued in given state (i.e.\n");
299 printf (" state_transition should return negative value for\n");
300 printf (" the insn and the state). Data dependencies between\n");
301 printf (" the insns are ignored by the function. */\n");
303 ("extern int min_insn_conflict_delay (state_t, rtx, rtx);\n");
304 printf ("/* The following function outputs reservations for given\n");
305 printf (" insn as they are described in the corresponding\n");
306 printf (" define_insn_reservation. */\n");
307 printf ("extern void print_reservation (FILE *, rtx);\n");
308 printf ("\n#if CPU_UNITS_QUERY\n");
309 printf ("/* The following function returns code of functional unit\n");
310 printf (" with given name (see define_cpu_unit). */\n");
311 printf ("extern int get_cpu_unit_code (const char *);\n");
312 printf ("/* The following function returns nonzero if functional\n");
313 printf (" unit with given code is currently reserved in given\n");
314 printf (" DFA state. */\n");
315 printf ("extern int cpu_unit_reservation_p (state_t, int);\n");
316 printf ("#endif\n\n");
317 printf ("/* The following function returns true if insn\n");
318 printf (" has a dfa reservation. */\n");
319 printf ("extern bool insn_has_dfa_reservation_p (rtx);\n\n");
320 printf ("/* Clean insn code cache. It should be called if there\n");
321 printf (" is a chance that condition value in a\n");
322 printf (" define_insn_reservation will be changed after\n");
323 printf (" last call of dfa_start. */\n");
324 printf ("extern void dfa_clean_insn_cache (void);\n\n");
325 printf ("extern void dfa_clear_single_insn_cache (rtx);\n\n");
326 printf ("/* Initiate and finish work with DFA. They should be\n");
327 printf (" called as the first and the last interface\n");
328 printf (" functions. */\n");
329 printf ("extern void dfa_start (void);\n");
330 printf ("extern void dfa_finish (void);\n");
334 /* Otherwise we do no scheduling, but we need these typedefs
335 in order to avoid uglifying other code with more ifdefs. */
336 printf ("typedef void *state_t;\n\n");
339 /* Special-purpose atributes should be tested with if, not #ifdef. */
340 const char * const special_attrs
[] = { "length", "enabled", 0 };
341 for (const char * const *p
= special_attrs
; *p
; p
++)
343 printf ("#ifndef HAVE_ATTR_%s\n"
344 "#define HAVE_ATTR_%s 0\n"
347 /* We make an exception here to provide stub definitions for
348 insn_*_length* / get_attr_enabled functions. */
349 puts ("#if !HAVE_ATTR_length\n"
350 "extern int hook_int_rtx_unreachable (rtx);\n"
351 "#define insn_default_length hook_int_rtx_unreachable\n"
352 "#define insn_min_length hook_int_rtx_unreachable\n"
353 "#define insn_variable_length_p hook_int_rtx_unreachable\n"
354 "#define insn_current_length hook_int_rtx_unreachable\n"
355 "#include \"insn-addr.h\"\n"
357 "#if !HAVE_ATTR_enabled\n"
358 "extern int hook_int_rtx_1 (rtx);\n"
359 "#define get_attr_enabled hook_int_rtx_1\n"
362 /* Output flag masks for use by reorg.
364 Flags are used to hold branch direction for use by eligible_for_... */
365 printf("\n#define ATTR_FLAG_forward\t0x1\n");
366 printf("#define ATTR_FLAG_backward\t0x2\n");
368 puts("\n#endif /* GCC_INSN_ATTR_H */");
370 if (ferror (stdout
) || fflush (stdout
) || fclose (stdout
))
371 return FATAL_EXIT_CODE
;
373 return SUCCESS_EXIT_CODE
;