1 /* Generate code from machine description to compute values of attributes.
2 Copyright (C) 1991-2019 Free Software Foundation, Inc.
3 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This program handles insn attributes and the DEFINE_DELAY and
22 DEFINE_INSN_RESERVATION definitions.
24 It produces a series of functions named `get_attr_...', one for each insn
25 attribute. Each of these is given the rtx for an insn and returns a member
26 of the enum for the attribute.
28 These subroutines have the form of a `switch' on the INSN_CODE (via
29 `recog_memoized'). Each case either returns a constant attribute value
30 or a value that depends on tests on other attributes, the form of
31 operands, or some random C expression (encoded with a SYMBOL_REF
34 If the attribute `alternative', or a random C expression is present,
35 `constrain_operands' is called. If either of these cases of a reference to
36 an operand is found, `extract_insn' is called.
38 The special attribute `length' is also recognized. For this operand,
39 expressions involving the address of an operand or the current insn,
40 (address (pc)), are valid. In this case, an initial pass is made to
41 set all lengths that do not depend on address. Those that do are set to
42 the maximum length. Then each insn that depends on an address is checked
43 and possibly has its length changed. The process repeats until no further
44 changed are made. The resulting lengths are saved for use by
47 A special form of DEFINE_ATTR, where the expression for default value is a
48 CONST expression, indicates an attribute that is constant for a given run
49 of the compiler. The subroutine generated for these attributes has no
50 parameters as it does not depend on any particular insn. Constant
51 attributes are typically used to specify which variety of processor is
54 Internal attributes are defined to handle DEFINE_DELAY and
55 DEFINE_INSN_RESERVATION. Special routines are output for these cases.
57 This program works by keeping a list of possible values for each attribute.
58 These include the basic attribute choices, default values for attribute, and
59 all derived quantities.
61 As the description file is read, the definition for each insn is saved in a
62 `struct insn_def'. When the file reading is complete, a `struct insn_ent'
63 is created for each insn and chained to the corresponding attribute value,
64 either that specified, or the default.
66 An optimization phase is then run. This simplifies expressions for each
67 insn. EQ_ATTR tests are resolved, whenever possible, to a test that
68 indicates when the attribute has the specified value for the insn. This
69 avoids recursive calls during compilation.
71 The strategy used when processing DEFINE_DELAY definitions is to create
72 arbitrarily complex expressions and have the optimization simplify them.
74 Once optimization is complete, any required routines and definitions
77 An optimization that is not yet implemented is to hoist the constant
78 expressions entirely out of the routines and definitions that are written.
79 A way to do this is to iterate over all possible combinations of values
80 for constant attributes and generate a set of functions for that given
81 combination. An initialization function would be written that evaluates
82 the attributes and installs the corresponding set of routines and
83 definitions (each would be accessed through a pointer).
85 We use the flags in an RTX as follows:
86 `unchanging' (ATTR_IND_SIMPLIFIED_P): This rtx is fully simplified
87 independent of the insn code.
88 `in_struct' (ATTR_CURR_SIMPLIFIED_P): This rtx is fully simplified
89 for the insn code currently being processed (see optimize_attrs).
90 `return_val' (ATTR_PERMANENT_P): This rtx is permanent and unique
93 #define ATTR_IND_SIMPLIFIED_P(RTX) (RTX_FLAG ((RTX), unchanging))
94 #define ATTR_CURR_SIMPLIFIED_P(RTX) (RTX_FLAG ((RTX), in_struct))
95 #define ATTR_PERMANENT_P(RTX) (RTX_FLAG ((RTX), return_val))
98 #define strcmp_check(S1, S2) ((S1) == (S2) \
100 : (gcc_assert (strcmp ((S1), (S2))), 1))
102 #define strcmp_check(S1, S2) ((S1) != (S2))
107 #include "coretypes.h"
113 #include "gensupport.h"
118 /* Flags for make_internal_attr's `special' parameter. */
120 #define ATTR_SPECIAL (1 << 0)
122 static struct obstack obstack1
, obstack2
;
123 static struct obstack
*hash_obstack
= &obstack1
;
124 static struct obstack
*temp_obstack
= &obstack2
;
126 /* enough space to reserve for printing out ints */
127 #define MAX_DIGITS (HOST_BITS_PER_INT * 3 / 10 + 3)
129 /* Define structures used to record attributes and values. */
131 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
132 encountered, we store all the relevant information into a
133 `struct insn_def'. This is done to allow attribute definitions to occur
134 anywhere in the file. */
138 struct insn_def
*next
; /* Next insn in chain. */
139 rtx def
; /* The DEFINE_... */
140 int insn_code
; /* Instruction number. */
141 int insn_index
; /* Expression number in file, for errors. */
142 file_location loc
; /* Where in the .md files it occurs. */
143 int num_alternatives
; /* Number of alternatives. */
144 int vec_idx
; /* Index of attribute vector in `def'. */
147 /* Once everything has been read in, we store in each attribute value a list
148 of insn codes that have that value. Here is the structure used for the
153 struct insn_ent
*next
; /* Next in chain. */
154 struct insn_def
*def
; /* Instruction definition. */
157 /* Each value of an attribute (either constant or computed) is assigned a
158 structure which is used as the listhead of the insns that have that
163 rtx value
; /* Value of attribute. */
164 struct attr_value
*next
; /* Next attribute value in chain. */
165 struct insn_ent
*first_insn
; /* First insn with this value. */
166 int num_insns
; /* Number of insns with this value. */
167 int has_asm_insn
; /* True if this value used for `asm' insns */
170 /* Structure for each attribute. */
174 char *name
; /* Name of attribute. */
175 const char *enum_name
; /* Enum name for DEFINE_ENUM_NAME. */
176 struct attr_desc
*next
; /* Next attribute. */
177 struct attr_value
*first_value
; /* First value of this attribute. */
178 struct attr_value
*default_val
; /* Default value for this attribute. */
179 file_location loc
; /* Where in the .md files it occurs. */
180 unsigned is_numeric
: 1; /* Values of this attribute are numeric. */
181 unsigned is_const
: 1; /* Attribute value constant for each run. */
182 unsigned is_special
: 1; /* Don't call `write_attr_set'. */
185 /* Structure for each DEFINE_DELAY. */
189 rtx def
; /* DEFINE_DELAY expression. */
190 struct delay_desc
*next
; /* Next DEFINE_DELAY. */
191 file_location loc
; /* Where in the .md files it occurs. */
192 int num
; /* Number of DEFINE_DELAY, starting at 1. */
195 struct attr_value_list
197 struct attr_value
*av
;
199 struct attr_desc
*attr
;
200 struct attr_value_list
*next
;
203 /* Listheads of above structures. */
205 /* This one is indexed by the first character of the attribute name. */
206 #define MAX_ATTRS_INDEX 256
207 static struct attr_desc
*attrs
[MAX_ATTRS_INDEX
];
208 static struct insn_def
*defs
;
209 static struct delay_desc
*delays
;
210 struct attr_value_list
**insn_code_values
;
212 /* Other variables. */
214 static int insn_index_number
;
215 static int got_define_asm_attributes
;
216 static int must_extract
;
217 static int must_constrain
;
218 static int address_used
;
219 static int length_used
;
220 static int num_delays
;
221 static int have_annul_true
, have_annul_false
;
222 static int num_insn_ents
;
224 /* Stores, for each insn code, the number of constraint alternatives. */
226 static int *insn_n_alternatives
;
228 /* Stores, for each insn code, a bitmap that has bits on for each possible
231 /* Keep this in sync with recog.h. */
232 typedef uint64_t alternative_mask
;
233 static alternative_mask
*insn_alternatives
;
235 /* Used to simplify expressions. */
237 static rtx true_rtx
, false_rtx
;
239 /* Used to reduce calls to `strcmp' */
241 static const char *alternative_name
;
242 static const char *length_str
;
243 static const char *delay_type_str
;
244 static const char *delay_1_0_str
;
245 static const char *num_delay_slots_str
;
247 /* Simplify an expression. Only call the routine if there is something to
249 #define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \
250 (ATTR_IND_SIMPLIFIED_P (EXP) || ATTR_CURR_SIMPLIFIED_P (EXP) ? (EXP) \
251 : simplify_test_exp (EXP, INSN_CODE, INSN_INDEX))
253 #define DEF_ATTR_STRING(S) (attr_string ((S), strlen (S)))
255 /* Forward declarations of functions used before their definitions, only. */
256 static char *attr_string (const char *, int);
257 static char *attr_printf (unsigned int, const char *, ...)
259 static rtx
make_numeric_value (int);
260 static struct attr_desc
*find_attr (const char **, int);
261 static rtx
mk_attr_alt (alternative_mask
);
262 static char *next_comma_elt (const char **);
263 static rtx
insert_right_side (enum rtx_code
, rtx
, rtx
, int, int);
264 static rtx
copy_boolean (rtx
);
265 static int compares_alternatives_p (rtx
);
266 static void make_internal_attr (const char *, rtx
, int);
267 static void insert_insn_ent (struct attr_value
*, struct insn_ent
*);
268 static void walk_attr_value (rtx
);
269 static int max_attr_value (rtx
);
270 static int min_attr_value (rtx
);
271 static unsigned int attr_value_alignment (rtx
);
272 static rtx
simplify_test_exp (rtx
, int, int);
273 static rtx
simplify_test_exp_in_temp (rtx
, int, int);
274 static rtx
copy_rtx_unchanging (rtx
);
275 static bool attr_alt_subset_p (rtx
, rtx
);
276 static bool attr_alt_subset_of_compl_p (rtx
, rtx
);
277 static void clear_struct_flag (rtx
);
278 static void write_attr_valueq (FILE *, struct attr_desc
*, const char *);
279 static struct attr_value
*find_most_used (struct attr_desc
*);
280 static void write_attr_set (FILE *, struct attr_desc
*, int, rtx
,
281 const char *, const char *, rtx
,
282 int, int, unsigned int);
283 static void write_attr_case (FILE *, struct attr_desc
*,
285 int, const char *, const char *, int, rtx
);
286 static void write_attr_value (FILE *, struct attr_desc
*, rtx
);
287 static void write_upcase (FILE *, const char *);
288 static void write_indent (FILE *, int);
289 static rtx
identity_fn (rtx
);
290 static rtx
zero_fn (rtx
);
291 static rtx
one_fn (rtx
);
292 static rtx
max_fn (rtx
);
293 static rtx
min_fn (rtx
);
295 #define oballoc(T) XOBNEW (hash_obstack, T)
296 #define oballocvec(T, N) XOBNEWVEC (hash_obstack, T, (N))
298 /* This gen* file is unique, in that it writes out multiple files.
300 Before GCC 4.8, insn-attrtab.c was written out containing many large
301 functions and tables. This made insn-attrtab.c _the_ bottle-neck in
302 a parallel build, and even made it impossible to build GCC on machines
303 with relatively small RAM space (PR other/29442). Therefore, the
304 atrribute functions/tables are now written out to three separate
305 files: all "*insn_default_latency" functions go to LATENCY_FILE_NAME,
306 all "*internal_dfa_insn_code" functions go to DFA_FILE_NAME, and the
307 rest goes to ATTR_FILE_NAME. */
309 static const char *attr_file_name
= NULL
;
310 static const char *dfa_file_name
= NULL
;
311 static const char *latency_file_name
= NULL
;
313 static FILE *attr_file
, *dfa_file
, *latency_file
;
315 /* Hash table for sharing RTL and strings. */
317 /* Each hash table slot is a bucket containing a chain of these structures.
318 Strings are given negative hash codes; RTL expressions are given positive
323 struct attr_hash
*next
; /* Next structure in the bucket. */
324 unsigned int hashcode
; /* Hash code of this rtx or string. */
327 char *str
; /* The string (negative hash codes) */
328 rtx rtl
; /* or the RTL recorded here. */
332 /* Now here is the hash table. When recording an RTL, it is added to
333 the slot whose index is the hash code mod the table size. Note
334 that the hash table is used for several kinds of RTL (see attr_rtx)
335 and for strings. While all these live in the same table, they are
336 completely independent, and the hash code is computed differently
339 #define RTL_HASH_SIZE 4093
340 static struct attr_hash
*attr_hash_table
[RTL_HASH_SIZE
];
342 /* Here is how primitive or already-shared RTL's hash
344 #define RTL_HASH(RTL) ((intptr_t) (RTL) & 0777777)
346 /* Add an entry to the hash table for RTL with hash code HASHCODE. */
349 attr_hash_add_rtx (unsigned int hashcode
, rtx rtl
)
353 h
= XOBNEW (hash_obstack
, struct attr_hash
);
354 h
->hashcode
= hashcode
;
356 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
357 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
360 /* Add an entry to the hash table for STRING with hash code HASHCODE. */
363 attr_hash_add_string (unsigned int hashcode
, char *str
)
367 h
= XOBNEW (hash_obstack
, struct attr_hash
);
368 h
->hashcode
= -hashcode
;
370 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
371 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
374 /* Generate an RTL expression, but avoid duplicates.
375 Set the ATTR_PERMANENT_P flag for these permanent objects.
377 In some cases we cannot uniquify; then we return an ordinary
378 impermanent rtx with ATTR_PERMANENT_P clear.
382 rtx attr_rtx (code, [element1, ..., elementn]) */
385 attr_rtx_1 (enum rtx_code code
, va_list p
)
387 rtx rt_val
= NULL_RTX
;/* RTX to return to caller... */
388 unsigned int hashcode
;
390 struct obstack
*old_obstack
= rtl_obstack
;
393 /* For each of several cases, search the hash table for an existing entry.
394 Use that entry if one is found; otherwise create a new RTL and add it
397 if (GET_RTX_CLASS (code
) == RTX_UNARY
)
399 rtx arg0
= va_arg (p
, rtx
);
401 if (! ATTR_PERMANENT_P (arg0
))
404 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
405 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
406 if (h
->hashcode
== hashcode
407 && GET_CODE (h
->u
.rtl
) == code
408 && XEXP (h
->u
.rtl
, 0) == arg0
)
413 rtl_obstack
= hash_obstack
;
414 rt_val
= rtx_alloc (code
);
415 XEXP (rt_val
, 0) = arg0
;
418 else if (GET_RTX_CLASS (code
) == RTX_BIN_ARITH
419 || GET_RTX_CLASS (code
) == RTX_COMM_ARITH
420 || GET_RTX_CLASS (code
) == RTX_COMPARE
421 || GET_RTX_CLASS (code
) == RTX_COMM_COMPARE
)
423 rtx arg0
= va_arg (p
, rtx
);
424 rtx arg1
= va_arg (p
, rtx
);
426 if (! ATTR_PERMANENT_P (arg0
) || ! ATTR_PERMANENT_P (arg1
))
429 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
430 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
431 if (h
->hashcode
== hashcode
432 && GET_CODE (h
->u
.rtl
) == code
433 && XEXP (h
->u
.rtl
, 0) == arg0
434 && XEXP (h
->u
.rtl
, 1) == arg1
)
436 ATTR_CURR_SIMPLIFIED_P (h
->u
.rtl
) = 0;
442 rtl_obstack
= hash_obstack
;
443 rt_val
= rtx_alloc (code
);
444 XEXP (rt_val
, 0) = arg0
;
445 XEXP (rt_val
, 1) = arg1
;
448 else if (code
== SYMBOL_REF
449 || (GET_RTX_LENGTH (code
) == 1
450 && GET_RTX_FORMAT (code
)[0] == 's'))
452 char *arg0
= va_arg (p
, char *);
454 arg0
= DEF_ATTR_STRING (arg0
);
456 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
457 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
458 if (h
->hashcode
== hashcode
459 && GET_CODE (h
->u
.rtl
) == code
460 && XSTR (h
->u
.rtl
, 0) == arg0
)
465 rtl_obstack
= hash_obstack
;
466 rt_val
= rtx_alloc (code
);
467 XSTR (rt_val
, 0) = arg0
;
468 if (code
== SYMBOL_REF
)
469 X0EXP (rt_val
, 1) = NULL_RTX
;
472 else if (GET_RTX_LENGTH (code
) == 2
473 && GET_RTX_FORMAT (code
)[0] == 's'
474 && GET_RTX_FORMAT (code
)[1] == 's')
476 char *arg0
= va_arg (p
, char *);
477 char *arg1
= va_arg (p
, char *);
479 arg0
= DEF_ATTR_STRING (arg0
);
480 arg1
= DEF_ATTR_STRING (arg1
);
482 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
483 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
484 if (h
->hashcode
== hashcode
485 && GET_CODE (h
->u
.rtl
) == code
486 && XSTR (h
->u
.rtl
, 0) == arg0
487 && XSTR (h
->u
.rtl
, 1) == arg1
)
492 rtl_obstack
= hash_obstack
;
493 rt_val
= rtx_alloc (code
);
494 XSTR (rt_val
, 0) = arg0
;
495 XSTR (rt_val
, 1) = arg1
;
498 else if (GET_RTX_LENGTH (code
) == 2
499 && GET_RTX_FORMAT (code
)[0] == 'w'
500 && GET_RTX_FORMAT (code
)[1] == 'w')
502 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
503 HOST_WIDE_INT arg1
= va_arg (p
, HOST_WIDE_INT
);
505 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
506 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
507 if (h
->hashcode
== hashcode
508 && GET_CODE (h
->u
.rtl
) == code
509 && XWINT (h
->u
.rtl
, 0) == arg0
510 && XWINT (h
->u
.rtl
, 1) == arg1
)
515 rtl_obstack
= hash_obstack
;
516 rt_val
= rtx_alloc (code
);
517 XWINT (rt_val
, 0) = arg0
;
518 XWINT (rt_val
, 1) = arg1
;
521 else if (code
== CONST_INT
)
523 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
533 int i
; /* Array indices... */
534 const char *fmt
; /* Current rtx's format... */
536 rt_val
= rtx_alloc (code
); /* Allocate the storage space. */
538 fmt
= GET_RTX_FORMAT (code
); /* Find the right format... */
539 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
543 case '0': /* Unused field. */
546 case 'i': /* An integer? */
547 XINT (rt_val
, i
) = va_arg (p
, int);
550 case 'w': /* A wide integer? */
551 XWINT (rt_val
, i
) = va_arg (p
, HOST_WIDE_INT
);
554 case 's': /* A string? */
555 XSTR (rt_val
, i
) = va_arg (p
, char *);
558 case 'e': /* An expression? */
559 case 'u': /* An insn? Same except when printing. */
560 XEXP (rt_val
, i
) = va_arg (p
, rtx
);
563 case 'E': /* An RTX vector? */
564 XVEC (rt_val
, i
) = va_arg (p
, rtvec
);
568 /* Don't need to handle 'p' for attributes. */
575 rtl_obstack
= old_obstack
;
576 attr_hash_add_rtx (hashcode
, rt_val
);
577 ATTR_PERMANENT_P (rt_val
) = permanent_p
;
582 attr_rtx (enum rtx_code code
, ...)
588 result
= attr_rtx_1 (code
, p
);
593 /* Create a new string printed with the printf line arguments into a space
594 of at most LEN bytes:
596 rtx attr_printf (len, format, [arg1, ..., argn]) */
599 attr_printf (unsigned int len
, const char *fmt
, ...)
606 gcc_assert (len
< sizeof str
); /* Leave room for \0. */
608 vsprintf (str
, fmt
, p
);
611 return DEF_ATTR_STRING (str
);
615 attr_eq (const char *name
, const char *value
)
617 return attr_rtx (EQ_ATTR
, name
, value
);
623 return XSTR (make_numeric_value (n
), 0);
626 /* Return a permanent (possibly shared) copy of a string STR (not assumed
627 to be null terminated) with LEN bytes. */
630 attr_string (const char *str
, int len
)
633 unsigned int hashcode
;
637 /* Compute the hash code. */
638 hashcode
= (len
+ 1) * 613U + (unsigned) str
[0];
639 for (i
= 1; i
< len
; i
+= 2)
640 hashcode
= ((hashcode
* 613) + (unsigned) str
[i
]);
641 if ((int) hashcode
< 0)
642 hashcode
= -hashcode
;
644 /* Search the table for the string. */
645 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
646 if (h
->hashcode
== -hashcode
&& h
->u
.str
[0] == str
[0]
647 && !strncmp (h
->u
.str
, str
, len
))
648 return h
->u
.str
; /* <-- return if found. */
650 /* Not found; create a permanent copy and add it to the hash table. */
651 new_str
= XOBNEWVAR (hash_obstack
, char, len
+ 1);
652 memcpy (new_str
, str
, len
);
654 attr_hash_add_string (hashcode
, new_str
);
655 rtx_reader_ptr
->copy_md_ptr_loc (new_str
, str
);
657 return new_str
; /* Return the new string. */
660 /* Check two rtx's for equality of contents,
661 taking advantage of the fact that if both are hashed
662 then they can't be equal unless they are the same object. */
665 attr_equal_p (rtx x
, rtx y
)
667 return (x
== y
|| (! (ATTR_PERMANENT_P (x
) && ATTR_PERMANENT_P (y
))
668 && rtx_equal_p (x
, y
)));
671 /* Given a test expression EXP for attribute ATTR, ensure it is validly
672 formed. LOC is the location of the .md construct that contains EXP.
674 Convert (eq_attr "att" "a1,a2") to (ior (eq_attr ... ) (eq_attrq ..))
675 and (eq_attr "att" "!a1") to (not (eq_attr "att" "a1")). Do the latter
676 test first so that (eq_attr "att" "!a1,a2,a3") works as expected.
678 Update the string address in EQ_ATTR expression to be the same used
679 in the attribute (or `alternative_name') to speed up subsequent
680 `find_attr' calls and eliminate most `strcmp' calls.
682 Return the new expression, if any. */
685 check_attr_test (file_location loc
, rtx exp
, attr_desc
*attr
)
687 struct attr_value
*av
;
688 const char *name_ptr
, *p
;
691 switch (GET_CODE (exp
))
694 /* Handle negation test. */
695 if (XSTR (exp
, 1)[0] == '!')
696 return check_attr_test (loc
,
698 attr_eq (XSTR (exp
, 0),
702 else if (n_comma_elts (XSTR (exp
, 1)) == 1)
704 attr_desc
*attr2
= find_attr (&XSTR (exp
, 0), 0);
707 if (! strcmp (XSTR (exp
, 0), "alternative"))
708 return mk_attr_alt (((alternative_mask
) 1)
709 << atoi (XSTR (exp
, 1)));
711 fatal_at (loc
, "unknown attribute `%s' in definition of"
712 " attribute `%s'", XSTR (exp
, 0), attr
->name
);
715 if (attr
->is_const
&& ! attr2
->is_const
)
716 fatal_at (loc
, "constant attribute `%s' cannot test non-constant"
717 " attribute `%s'", attr
->name
, attr2
->name
);
719 /* Copy this just to make it permanent,
720 so expressions using it can be permanent too. */
721 exp
= attr_eq (XSTR (exp
, 0), XSTR (exp
, 1));
723 /* It shouldn't be possible to simplify the value given to a
724 constant attribute, so don't expand this until it's time to
725 write the test expression. */
727 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
729 if (attr2
->is_numeric
)
731 for (p
= XSTR (exp
, 1); *p
; p
++)
733 fatal_at (loc
, "attribute `%s' takes only numeric values",
738 for (av
= attr2
->first_value
; av
; av
= av
->next
)
739 if (GET_CODE (av
->value
) == CONST_STRING
740 && ! strcmp (XSTR (exp
, 1), XSTR (av
->value
, 0)))
744 fatal_at (loc
, "unknown value `%s' for attribute `%s'",
745 XSTR (exp
, 1), attr2
->name
);
750 if (! strcmp (XSTR (exp
, 0), "alternative"))
754 name_ptr
= XSTR (exp
, 1);
755 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
756 set
|= ((alternative_mask
) 1) << atoi (p
);
758 return mk_attr_alt (set
);
762 /* Make an IOR tree of the possible values. */
764 name_ptr
= XSTR (exp
, 1);
765 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
767 newexp
= attr_eq (XSTR (exp
, 0), p
);
768 orexp
= insert_right_side (IOR
, orexp
, newexp
, -2, -2);
771 return check_attr_test (loc
, orexp
, attr
);
780 /* Either TRUE or FALSE. */
788 XEXP (exp
, 0) = check_attr_test (loc
, XEXP (exp
, 0), attr
);
789 XEXP (exp
, 1) = check_attr_test (loc
, XEXP (exp
, 1), attr
);
793 XEXP (exp
, 0) = check_attr_test (loc
, XEXP (exp
, 0), attr
);
797 exp
= attr_rtx (MATCH_TEST
, XSTR (exp
, 0));
798 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
803 fatal_at (loc
, "invalid operator `%s' in definition of constant"
804 " attribute `%s'", GET_RTX_NAME (GET_CODE (exp
)),
806 /* These cases can't be simplified. */
807 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
810 case LE
: case LT
: case GT
: case GE
:
811 case LEU
: case LTU
: case GTU
: case GEU
:
813 if (GET_CODE (XEXP (exp
, 0)) == SYMBOL_REF
814 && GET_CODE (XEXP (exp
, 1)) == SYMBOL_REF
)
815 exp
= attr_rtx (GET_CODE (exp
),
816 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 0), 0)),
817 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 1), 0)));
818 /* These cases can't be simplified. */
819 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
825 /* These cases are valid for constant attributes, but can't be
827 exp
= attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
828 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
833 fatal_at (loc
, "invalid operator `%s' in definition of attribute"
834 " `%s'", GET_RTX_NAME (GET_CODE (exp
)), attr
->name
);
840 /* Given an expression EXP, ensure that it is validly formed and that
841 all named attribute values are valid for ATTR. Issue an error if not.
842 LOC is the location of the .md construct that contains EXP.
844 Return a perhaps modified replacement expression for the value. */
847 check_attr_value (file_location loc
, rtx exp
, struct attr_desc
*attr
)
849 struct attr_value
*av
;
853 switch (GET_CODE (exp
))
856 if (!attr
->is_numeric
)
859 "CONST_INT not valid for non-numeric attribute `%s'",
864 if (INTVAL (exp
) < 0)
867 "negative numeric value specified for attribute `%s'",
874 if (! strcmp (XSTR (exp
, 0), "*"))
877 if (attr
->is_numeric
)
884 "non-numeric value specified for numeric"
885 " attribute `%s'", attr
->name
);
891 for (av
= attr
->first_value
; av
; av
= av
->next
)
892 if (GET_CODE (av
->value
) == CONST_STRING
893 && ! strcmp (XSTR (av
->value
, 0), XSTR (exp
, 0)))
897 error_at (loc
, "unknown value `%s' for attribute `%s'",
898 XSTR (exp
, 0), attr
->name
);
902 XEXP (exp
, 0) = check_attr_test (loc
, XEXP (exp
, 0), attr
);
903 XEXP (exp
, 1) = check_attr_value (loc
, XEXP (exp
, 1), attr
);
904 XEXP (exp
, 2) = check_attr_value (loc
, XEXP (exp
, 2), attr
);
912 if (!attr
->is_numeric
)
914 error_at (loc
, "invalid operation `%s' for non-numeric"
915 " attribute `%s'", GET_RTX_NAME (GET_CODE (exp
)),
923 XEXP (exp
, 0) = check_attr_value (loc
, XEXP (exp
, 0), attr
);
924 XEXP (exp
, 1) = check_attr_value (loc
, XEXP (exp
, 1), attr
);
933 XEXP (exp
, 0) = check_attr_value (loc
, XEXP (exp
, 0), attr
);
937 if (XVECLEN (exp
, 0) % 2 != 0)
939 error_at (loc
, "first operand of COND must have even length");
943 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
945 XVECEXP (exp
, 0, i
) = check_attr_test (attr
->loc
,
948 XVECEXP (exp
, 0, i
+ 1)
949 = check_attr_value (loc
, XVECEXP (exp
, 0, i
+ 1), attr
);
952 XEXP (exp
, 1) = check_attr_value (loc
, XEXP (exp
, 1), attr
);
957 struct attr_desc
*attr2
= find_attr (&XSTR (exp
, 0), 0);
959 error_at (loc
, "unknown attribute `%s' in ATTR",
961 else if (attr
->is_const
&& ! attr2
->is_const
)
963 "constant attribute `%s' cannot refer to non-constant"
964 " attribute `%s'", attr
->name
, attr2
->name
);
965 else if (attr
->is_numeric
!= attr2
->is_numeric
)
967 "numeric attribute mismatch calling `%s' from `%s'",
968 attr2
->name
, attr
->name
);
973 /* A constant SYMBOL_REF is valid as a constant attribute test and
974 is expanded later by make_canonical into a COND. In a non-constant
975 attribute test, it is left be. */
976 return attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
979 error_at (loc
, "invalid operator `%s' in definition of attribute `%s'",
980 GET_RTX_NAME (GET_CODE (exp
)), attr
->name
);
987 /* Given an SET_ATTR_ALTERNATIVE expression, convert to the canonical SET.
988 It becomes a COND with each test being (eq_attr "alternative" "n") */
991 convert_set_attr_alternative (rtx exp
, struct insn_def
*id
)
993 int num_alt
= id
->num_alternatives
;
997 if (XVECLEN (exp
, 1) != num_alt
)
999 error_at (id
->loc
, "bad number of entries in SET_ATTR_ALTERNATIVE,"
1000 " was %d expected %d", XVECLEN (exp
, 1), num_alt
);
1004 /* Make a COND with all tests but the last. Select the last value via the
1006 condexp
= rtx_alloc (COND
);
1007 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1009 for (i
= 0; i
< num_alt
- 1; i
++)
1012 p
= attr_numeral (i
);
1014 XVECEXP (condexp
, 0, 2 * i
) = attr_eq (alternative_name
, p
);
1015 XVECEXP (condexp
, 0, 2 * i
+ 1) = XVECEXP (exp
, 1, i
);
1018 XEXP (condexp
, 1) = XVECEXP (exp
, 1, i
);
1020 return attr_rtx (SET
, attr_rtx (ATTR
, XSTR (exp
, 0)), condexp
);
1023 /* Given a SET_ATTR, convert to the appropriate SET. If a comma-separated
1024 list of values is given, convert to SET_ATTR_ALTERNATIVE first. */
1027 convert_set_attr (rtx exp
, struct insn_def
*id
)
1030 const char *name_ptr
;
1034 /* See how many alternative specified. */
1035 n
= n_comma_elts (XSTR (exp
, 1));
1037 return attr_rtx (SET
,
1038 attr_rtx (ATTR
, XSTR (exp
, 0)),
1039 attr_rtx (CONST_STRING
, XSTR (exp
, 1)));
1041 newexp
= rtx_alloc (SET_ATTR_ALTERNATIVE
);
1042 XSTR (newexp
, 0) = XSTR (exp
, 0);
1043 XVEC (newexp
, 1) = rtvec_alloc (n
);
1045 /* Process each comma-separated name. */
1046 name_ptr
= XSTR (exp
, 1);
1048 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1049 XVECEXP (newexp
, 1, n
++) = attr_rtx (CONST_STRING
, p
);
1051 return convert_set_attr_alternative (newexp
, id
);
1054 /* Scan all definitions, checking for validity. Also, convert any SET_ATTR
1055 and SET_ATTR_ALTERNATIVE expressions to the corresponding SET
1061 struct insn_def
*id
;
1062 struct attr_desc
*attr
;
1066 for (id
= defs
; id
; id
= id
->next
)
1068 if (XVEC (id
->def
, id
->vec_idx
) == NULL
)
1071 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
1073 value
= XVECEXP (id
->def
, id
->vec_idx
, i
);
1074 switch (GET_CODE (value
))
1077 if (GET_CODE (XEXP (value
, 0)) != ATTR
)
1079 error_at (id
->loc
, "bad attribute set");
1084 case SET_ATTR_ALTERNATIVE
:
1085 value
= convert_set_attr_alternative (value
, id
);
1089 value
= convert_set_attr (value
, id
);
1093 error_at (id
->loc
, "invalid attribute code %s",
1094 GET_RTX_NAME (GET_CODE (value
)));
1097 if (value
== NULL_RTX
)
1100 if ((attr
= find_attr (&XSTR (XEXP (value
, 0), 0), 0)) == NULL
)
1102 error_at (id
->loc
, "unknown attribute %s",
1103 XSTR (XEXP (value
, 0), 0));
1107 XVECEXP (id
->def
, id
->vec_idx
, i
) = value
;
1108 XEXP (value
, 1) = check_attr_value (id
->loc
, XEXP (value
, 1), attr
);
1113 /* Given a valid expression for an attribute value, remove any IF_THEN_ELSE
1114 expressions by converting them into a COND. This removes cases from this
1115 program. Also, replace an attribute value of "*" with the default attribute
1116 value. LOC is the location to use for error reporting. */
1119 make_canonical (file_location loc
, struct attr_desc
*attr
, rtx exp
)
1124 switch (GET_CODE (exp
))
1127 exp
= make_numeric_value (INTVAL (exp
));
1131 if (! strcmp (XSTR (exp
, 0), "*"))
1133 if (attr
->default_val
== 0)
1134 fatal_at (loc
, "(attr_value \"*\") used in invalid context");
1135 exp
= attr
->default_val
->value
;
1138 XSTR (exp
, 0) = DEF_ATTR_STRING (XSTR (exp
, 0));
1143 if (!attr
->is_const
|| ATTR_IND_SIMPLIFIED_P (exp
))
1145 /* The SYMBOL_REF is constant for a given run, so mark it as unchanging.
1146 This makes the COND something that won't be considered an arbitrary
1147 expression by walk_attr_value. */
1148 ATTR_IND_SIMPLIFIED_P (exp
) = 1;
1149 exp
= check_attr_value (loc
, exp
, attr
);
1153 newexp
= rtx_alloc (COND
);
1154 XVEC (newexp
, 0) = rtvec_alloc (2);
1155 XVECEXP (newexp
, 0, 0) = XEXP (exp
, 0);
1156 XVECEXP (newexp
, 0, 1) = XEXP (exp
, 1);
1158 XEXP (newexp
, 1) = XEXP (exp
, 2);
1161 /* Fall through to COND case since this is now a COND. */
1169 /* First, check for degenerate COND. */
1170 if (XVECLEN (exp
, 0) == 0)
1171 return make_canonical (loc
, attr
, XEXP (exp
, 1));
1172 defval
= XEXP (exp
, 1) = make_canonical (loc
, attr
, XEXP (exp
, 1));
1174 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1176 XVECEXP (exp
, 0, i
) = copy_boolean (XVECEXP (exp
, 0, i
));
1177 XVECEXP (exp
, 0, i
+ 1)
1178 = make_canonical (loc
, attr
, XVECEXP (exp
, 0, i
+ 1));
1179 if (! attr_equal_p (XVECEXP (exp
, 0, i
+ 1), defval
))
1195 copy_boolean (rtx exp
)
1197 if (GET_CODE (exp
) == AND
|| GET_CODE (exp
) == IOR
)
1198 return attr_rtx (GET_CODE (exp
), copy_boolean (XEXP (exp
, 0)),
1199 copy_boolean (XEXP (exp
, 1)));
1200 else if (GET_CODE (exp
) == NOT
)
1201 return attr_rtx (NOT
, copy_boolean (XEXP (exp
, 0)));
1202 if (GET_CODE (exp
) == MATCH_OPERAND
)
1204 XSTR (exp
, 1) = DEF_ATTR_STRING (XSTR (exp
, 1));
1205 XSTR (exp
, 2) = DEF_ATTR_STRING (XSTR (exp
, 2));
1207 else if (GET_CODE (exp
) == EQ_ATTR
)
1209 XSTR (exp
, 0) = DEF_ATTR_STRING (XSTR (exp
, 0));
1210 XSTR (exp
, 1) = DEF_ATTR_STRING (XSTR (exp
, 1));
1216 /* Given a value and an attribute description, return a `struct attr_value *'
1217 that represents that value. This is either an existing structure, if the
1218 value has been previously encountered, or a newly-created structure.
1220 `insn_code' is the code of an insn whose attribute has the specified
1221 value (-2 if not processing an insn). We ensure that all insns for
1222 a given value have the same number of alternatives if the value checks
1223 alternatives. LOC is the location to use for error reporting. */
1225 static struct attr_value
*
1226 get_attr_value (file_location loc
, rtx value
, struct attr_desc
*attr
,
1229 struct attr_value
*av
;
1230 alternative_mask num_alt
= 0;
1232 value
= make_canonical (loc
, attr
, value
);
1233 if (compares_alternatives_p (value
))
1235 if (insn_code
< 0 || insn_alternatives
== NULL
)
1236 fatal_at (loc
, "(eq_attr \"alternatives\" ...) used in non-insn"
1239 num_alt
= insn_alternatives
[insn_code
];
1242 for (av
= attr
->first_value
; av
; av
= av
->next
)
1243 if (attr_equal_p (value
, av
->value
)
1244 && (num_alt
== 0 || av
->first_insn
== NULL
1245 || insn_alternatives
[av
->first_insn
->def
->insn_code
]))
1248 av
= oballoc (struct attr_value
);
1250 av
->next
= attr
->first_value
;
1251 attr
->first_value
= av
;
1252 av
->first_insn
= NULL
;
1254 av
->has_asm_insn
= 0;
1259 /* After all DEFINE_DELAYs have been read in, create internal attributes
1260 to generate the required routines.
1262 First, we compute the number of delay slots for each insn (as a COND of
1263 each of the test expressions in DEFINE_DELAYs). Then, if more than one
1264 delay type is specified, we compute a similar function giving the
1265 DEFINE_DELAY ordinal for each insn.
1267 Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
1268 tells whether a given insn can be in that delay slot.
1270 Normal attribute filling and optimization expands these to contain the
1271 information needed to handle delay slots. */
1274 expand_delays (void)
1276 struct delay_desc
*delay
;
1282 /* First, generate data for `num_delay_slots' function. */
1284 condexp
= rtx_alloc (COND
);
1285 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1286 XEXP (condexp
, 1) = make_numeric_value (0);
1288 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1290 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1291 XVECEXP (condexp
, 0, i
+ 1)
1292 = make_numeric_value (XVECLEN (delay
->def
, 1) / 3);
1295 make_internal_attr (num_delay_slots_str
, condexp
, ATTR_NONE
);
1297 /* If more than one delay type, do the same for computing the delay type. */
1300 condexp
= rtx_alloc (COND
);
1301 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1302 XEXP (condexp
, 1) = make_numeric_value (0);
1304 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1306 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1307 XVECEXP (condexp
, 0, i
+ 1) = make_numeric_value (delay
->num
);
1310 make_internal_attr (delay_type_str
, condexp
, ATTR_SPECIAL
);
1313 /* For each delay possibility and delay slot, compute an eligibility
1314 attribute for non-annulled insns and for each type of annulled (annul
1315 if true and annul if false). */
1316 for (delay
= delays
; delay
; delay
= delay
->next
)
1318 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
1320 condexp
= XVECEXP (delay
->def
, 1, i
);
1322 condexp
= false_rtx
;
1323 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1324 make_numeric_value (1), make_numeric_value (0));
1326 p
= attr_printf (sizeof "*delay__" + MAX_DIGITS
* 2,
1327 "*delay_%d_%d", delay
->num
, i
/ 3);
1328 make_internal_attr (p
, newexp
, ATTR_SPECIAL
);
1330 if (have_annul_true
)
1332 condexp
= XVECEXP (delay
->def
, 1, i
+ 1);
1333 if (condexp
== 0) condexp
= false_rtx
;
1334 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1335 make_numeric_value (1),
1336 make_numeric_value (0));
1337 p
= attr_printf (sizeof "*annul_true__" + MAX_DIGITS
* 2,
1338 "*annul_true_%d_%d", delay
->num
, i
/ 3);
1339 make_internal_attr (p
, newexp
, ATTR_SPECIAL
);
1342 if (have_annul_false
)
1344 condexp
= XVECEXP (delay
->def
, 1, i
+ 2);
1345 if (condexp
== 0) condexp
= false_rtx
;
1346 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1347 make_numeric_value (1),
1348 make_numeric_value (0));
1349 p
= attr_printf (sizeof "*annul_false__" + MAX_DIGITS
* 2,
1350 "*annul_false_%d_%d", delay
->num
, i
/ 3);
1351 make_internal_attr (p
, newexp
, ATTR_SPECIAL
);
1357 /* Once all attributes and insns have been read and checked, we construct for
1358 each attribute value a list of all the insns that have that value for
1362 fill_attr (struct attr_desc
*attr
)
1364 struct attr_value
*av
;
1365 struct insn_ent
*ie
;
1366 struct insn_def
*id
;
1370 /* Don't fill constant attributes. The value is independent of
1371 any particular insn. */
1375 for (id
= defs
; id
; id
= id
->next
)
1377 /* If no value is specified for this insn for this attribute, use the
1380 if (XVEC (id
->def
, id
->vec_idx
))
1381 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
1382 if (! strcmp_check (XSTR (XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 0), 0),
1384 value
= XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 1);
1387 av
= attr
->default_val
;
1389 av
= get_attr_value (id
->loc
, value
, attr
, id
->insn_code
);
1391 ie
= oballoc (struct insn_ent
);
1393 insert_insn_ent (av
, ie
);
1397 /* Given an expression EXP, see if it is a COND or IF_THEN_ELSE that has a
1398 test that checks relative positions of insns (uses MATCH_DUP or PC).
1399 If so, replace it with what is obtained by passing the expression to
1400 ADDRESS_FN. If not but it is a COND or IF_THEN_ELSE, call this routine
1401 recursively on each value (including the default value). Otherwise,
1402 return the value returned by NO_ADDRESS_FN applied to EXP. */
1405 substitute_address (rtx exp
, rtx (*no_address_fn
) (rtx
),
1406 rtx (*address_fn
) (rtx
))
1411 if (GET_CODE (exp
) == COND
)
1413 /* See if any tests use addresses. */
1415 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1416 walk_attr_value (XVECEXP (exp
, 0, i
));
1419 return (*address_fn
) (exp
);
1421 /* Make a new copy of this COND, replacing each element. */
1422 newexp
= rtx_alloc (COND
);
1423 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (exp
, 0));
1424 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1426 XVECEXP (newexp
, 0, i
) = XVECEXP (exp
, 0, i
);
1427 XVECEXP (newexp
, 0, i
+ 1)
1428 = substitute_address (XVECEXP (exp
, 0, i
+ 1),
1429 no_address_fn
, address_fn
);
1432 XEXP (newexp
, 1) = substitute_address (XEXP (exp
, 1),
1433 no_address_fn
, address_fn
);
1438 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
1441 walk_attr_value (XEXP (exp
, 0));
1443 return (*address_fn
) (exp
);
1445 return attr_rtx (IF_THEN_ELSE
,
1446 substitute_address (XEXP (exp
, 0),
1447 no_address_fn
, address_fn
),
1448 substitute_address (XEXP (exp
, 1),
1449 no_address_fn
, address_fn
),
1450 substitute_address (XEXP (exp
, 2),
1451 no_address_fn
, address_fn
));
1454 return (*no_address_fn
) (exp
);
1457 /* Make new attributes from the `length' attribute. The following are made,
1458 each corresponding to a function called from `shorten_branches' or
1461 *insn_default_length This is the length of the insn to be returned
1462 by `get_attr_length' before `shorten_branches'
1463 has been called. In each case where the length
1464 depends on relative addresses, the largest
1465 possible is used. This routine is also used
1466 to compute the initial size of the insn.
1468 *insn_variable_length_p This returns 1 if the insn's length depends
1469 on relative addresses, zero otherwise.
1471 *insn_current_length This is only called when it is known that the
1472 insn has a variable length and returns the
1473 current length, based on relative addresses.
1477 make_length_attrs (void)
1479 static const char *new_names
[] =
1481 "*insn_default_length",
1483 "*insn_variable_length_p",
1484 "*insn_current_length"
1486 static rtx (*const no_address_fn
[]) (rtx
)
1487 = {identity_fn
,identity_fn
, zero_fn
, zero_fn
};
1488 static rtx (*const address_fn
[]) (rtx
)
1489 = {max_fn
, min_fn
, one_fn
, identity_fn
};
1491 struct attr_desc
*length_attr
, *new_attr
;
1492 struct attr_value
*av
, *new_av
;
1493 struct insn_ent
*ie
, *new_ie
;
1495 /* See if length attribute is defined. If so, it must be numeric. Make
1496 it special so we don't output anything for it. */
1497 length_attr
= find_attr (&length_str
, 0);
1498 if (length_attr
== 0)
1501 if (! length_attr
->is_numeric
)
1502 fatal_at (length_attr
->loc
, "length attribute must be numeric");
1504 length_attr
->is_const
= 0;
1505 length_attr
->is_special
= 1;
1507 /* Make each new attribute, in turn. */
1508 for (i
= 0; i
< ARRAY_SIZE (new_names
); i
++)
1510 make_internal_attr (new_names
[i
],
1511 substitute_address (length_attr
->default_val
->value
,
1512 no_address_fn
[i
], address_fn
[i
]),
1514 new_attr
= find_attr (&new_names
[i
], 0);
1515 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
1516 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
1518 new_av
= get_attr_value (ie
->def
->loc
,
1519 substitute_address (av
->value
,
1522 new_attr
, ie
->def
->insn_code
);
1523 new_ie
= oballoc (struct insn_ent
);
1524 new_ie
->def
= ie
->def
;
1525 insert_insn_ent (new_av
, new_ie
);
1530 /* Utility functions called from above routine. */
1533 identity_fn (rtx exp
)
1539 zero_fn (rtx exp ATTRIBUTE_UNUSED
)
1541 return make_numeric_value (0);
1545 one_fn (rtx exp ATTRIBUTE_UNUSED
)
1547 return make_numeric_value (1);
1553 return make_numeric_value (max_attr_value (exp
));
1559 return make_numeric_value (min_attr_value (exp
));
1563 write_length_unit_log (FILE *outf
)
1565 struct attr_desc
*length_attr
= find_attr (&length_str
, 0);
1566 struct attr_value
*av
;
1567 struct insn_ent
*ie
;
1568 unsigned int length_unit_log
, length_or
;
1572 length_or
= attr_value_alignment (length_attr
->default_val
->value
);
1573 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
1574 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
1575 length_or
|= attr_value_alignment (av
->value
);
1577 length_or
= ~length_or
;
1578 for (length_unit_log
= 0; length_or
& 1; length_or
>>= 1)
1582 length_unit_log
= 0;
1584 fprintf (outf
, "EXPORTED_CONST int length_unit_log = %u;\n", length_unit_log
);
1587 /* Compute approximate cost of the expression. Used to decide whether
1588 expression is cheap enough for inline. */
1590 attr_rtx_cost (rtx x
)
1596 code
= GET_CODE (x
);
1609 /* Alternatives don't result into function call. */
1610 if (!strcmp_check (XSTR (x
, 0), alternative_name
))
1617 const char *fmt
= GET_RTX_FORMAT (code
);
1618 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1624 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1625 cost
+= attr_rtx_cost (XVECEXP (x
, i
, j
));
1628 cost
+= attr_rtx_cost (XEXP (x
, i
));
1638 /* Take a COND expression and see if any of the conditions in it can be
1639 simplified. If any are known true or known false for the particular insn
1640 code, the COND can be further simplified.
1642 Also call ourselves on any COND operations that are values of this COND.
1644 We do not modify EXP; rather, we make and return a new rtx. */
1647 simplify_cond (rtx exp
, int insn_code
, int insn_index
)
1650 /* We store the desired contents here,
1651 then build a new expression if they don't match EXP. */
1652 rtx defval
= XEXP (exp
, 1);
1653 rtx new_defval
= XEXP (exp
, 1);
1654 int len
= XVECLEN (exp
, 0);
1655 rtx
*tests
= XNEWVEC (rtx
, len
);
1659 /* This lets us free all storage allocated below, if appropriate. */
1660 obstack_finish (rtl_obstack
);
1662 memcpy (tests
, XVEC (exp
, 0)->elem
, len
* sizeof (rtx
));
1664 /* See if default value needs simplification. */
1665 if (GET_CODE (defval
) == COND
)
1666 new_defval
= simplify_cond (defval
, insn_code
, insn_index
);
1668 /* Simplify the subexpressions, and see what tests we can get rid of. */
1670 for (i
= 0; i
< len
; i
+= 2)
1672 rtx newtest
, newval
;
1674 /* Simplify this test. */
1675 newtest
= simplify_test_exp_in_temp (tests
[i
], insn_code
, insn_index
);
1678 newval
= tests
[i
+ 1];
1679 /* See if this value may need simplification. */
1680 if (GET_CODE (newval
) == COND
)
1681 newval
= simplify_cond (newval
, insn_code
, insn_index
);
1683 /* Look for ways to delete or combine this test. */
1684 if (newtest
== true_rtx
)
1686 /* If test is true, make this value the default
1687 and discard this + any following tests. */
1689 defval
= tests
[i
+ 1];
1690 new_defval
= newval
;
1693 else if (newtest
== false_rtx
)
1695 /* If test is false, discard it and its value. */
1696 for (j
= i
; j
< len
- 2; j
++)
1697 tests
[j
] = tests
[j
+ 2];
1702 else if (i
> 0 && attr_equal_p (newval
, tests
[i
- 1]))
1704 /* If this value and the value for the prev test are the same,
1708 = insert_right_side (IOR
, tests
[i
- 2], newtest
,
1709 insn_code
, insn_index
);
1711 /* Delete this test/value. */
1712 for (j
= i
; j
< len
- 2; j
++)
1713 tests
[j
] = tests
[j
+ 2];
1719 tests
[i
+ 1] = newval
;
1722 /* If the last test in a COND has the same value
1723 as the default value, that test isn't needed. */
1725 while (len
> 0 && attr_equal_p (tests
[len
- 1], new_defval
))
1728 /* See if we changed anything. */
1729 if (len
!= XVECLEN (exp
, 0) || new_defval
!= XEXP (exp
, 1))
1732 for (i
= 0; i
< len
; i
++)
1733 if (! attr_equal_p (tests
[i
], XVECEXP (exp
, 0, i
)))
1741 if (GET_CODE (defval
) == COND
)
1742 ret
= simplify_cond (defval
, insn_code
, insn_index
);
1750 rtx newexp
= rtx_alloc (COND
);
1752 XVEC (newexp
, 0) = rtvec_alloc (len
);
1753 memcpy (XVEC (newexp
, 0)->elem
, tests
, len
* sizeof (rtx
));
1754 XEXP (newexp
, 1) = new_defval
;
1761 /* Remove an insn entry from an attribute value. */
1764 remove_insn_ent (struct attr_value
*av
, struct insn_ent
*ie
)
1766 struct insn_ent
*previe
;
1768 if (av
->first_insn
== ie
)
1769 av
->first_insn
= ie
->next
;
1772 for (previe
= av
->first_insn
; previe
->next
!= ie
; previe
= previe
->next
)
1774 previe
->next
= ie
->next
;
1778 if (ie
->def
->insn_code
== -1)
1779 av
->has_asm_insn
= 0;
1784 /* Insert an insn entry in an attribute value list. */
1787 insert_insn_ent (struct attr_value
*av
, struct insn_ent
*ie
)
1789 ie
->next
= av
->first_insn
;
1790 av
->first_insn
= ie
;
1792 if (ie
->def
->insn_code
== -1)
1793 av
->has_asm_insn
= 1;
1798 /* This is a utility routine to take an expression that is a tree of either
1799 AND or IOR expressions and insert a new term. The new term will be
1800 inserted at the right side of the first node whose code does not match
1801 the root. A new node will be created with the root's code. Its left
1802 side will be the old right side and its right side will be the new
1805 If the `term' is itself a tree, all its leaves will be inserted. */
1808 insert_right_side (enum rtx_code code
, rtx exp
, rtx term
, int insn_code
, int insn_index
)
1812 /* Avoid consing in some special cases. */
1813 if (code
== AND
&& term
== true_rtx
)
1815 if (code
== AND
&& term
== false_rtx
)
1817 if (code
== AND
&& exp
== true_rtx
)
1819 if (code
== AND
&& exp
== false_rtx
)
1821 if (code
== IOR
&& term
== true_rtx
)
1823 if (code
== IOR
&& term
== false_rtx
)
1825 if (code
== IOR
&& exp
== true_rtx
)
1827 if (code
== IOR
&& exp
== false_rtx
)
1829 if (attr_equal_p (exp
, term
))
1832 if (GET_CODE (term
) == code
)
1834 exp
= insert_right_side (code
, exp
, XEXP (term
, 0),
1835 insn_code
, insn_index
);
1836 exp
= insert_right_side (code
, exp
, XEXP (term
, 1),
1837 insn_code
, insn_index
);
1842 if (GET_CODE (exp
) == code
)
1844 rtx new_rtx
= insert_right_side (code
, XEXP (exp
, 1),
1845 term
, insn_code
, insn_index
);
1846 if (new_rtx
!= XEXP (exp
, 1))
1847 /* Make a copy of this expression and call recursively. */
1848 newexp
= attr_rtx (code
, XEXP (exp
, 0), new_rtx
);
1854 /* Insert the new term. */
1855 newexp
= attr_rtx (code
, exp
, term
);
1858 return simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
1861 /* If we have an expression which AND's a bunch of
1862 (not (eq_attrq "alternative" "n"))
1863 terms, we may have covered all or all but one of the possible alternatives.
1864 If so, we can optimize. Similarly for IOR's of EQ_ATTR.
1866 This routine is passed an expression and either AND or IOR. It returns a
1867 bitmask indicating which alternatives are mentioned within EXP. */
1869 static alternative_mask
1870 compute_alternative_mask (rtx exp
, enum rtx_code code
)
1873 if (GET_CODE (exp
) == code
)
1874 return compute_alternative_mask (XEXP (exp
, 0), code
)
1875 | compute_alternative_mask (XEXP (exp
, 1), code
);
1877 else if (code
== AND
&& GET_CODE (exp
) == NOT
1878 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
1879 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
1880 string
= XSTR (XEXP (exp
, 0), 1);
1882 else if (code
== IOR
&& GET_CODE (exp
) == EQ_ATTR
1883 && XSTR (exp
, 0) == alternative_name
)
1884 string
= XSTR (exp
, 1);
1886 else if (GET_CODE (exp
) == EQ_ATTR_ALT
)
1888 if (code
== AND
&& XWINT (exp
, 1))
1889 return XWINT (exp
, 0);
1891 if (code
== IOR
&& !XWINT (exp
, 1))
1892 return XWINT (exp
, 0);
1900 return ((alternative_mask
) 1) << (string
[0] - '0');
1901 return ((alternative_mask
) 1) << atoi (string
);
1904 /* Given I, a single-bit mask, return RTX to compare the `alternative'
1905 attribute with the value represented by that bit. */
1908 make_alternative_compare (alternative_mask mask
)
1910 return mk_attr_alt (mask
);
1913 /* If we are processing an (eq_attr "attr" "value") test, we find the value
1914 of "attr" for this insn code. From that value, we can compute a test
1915 showing when the EQ_ATTR will be true. This routine performs that
1916 computation. If a test condition involves an address, we leave the EQ_ATTR
1917 intact because addresses are only valid for the `length' attribute.
1919 EXP is the EQ_ATTR expression and ATTR is the attribute to which
1920 it refers. VALUE is the value of that attribute for the insn
1921 corresponding to INSN_CODE and INSN_INDEX. */
1924 evaluate_eq_attr (rtx exp
, struct attr_desc
*attr
, rtx value
,
1925 int insn_code
, int insn_index
)
1932 while (GET_CODE (value
) == ATTR
)
1934 struct attr_value
*av
= NULL
;
1936 attr
= find_attr (&XSTR (value
, 0), 0);
1938 if (insn_code_values
)
1940 struct attr_value_list
*iv
;
1941 for (iv
= insn_code_values
[insn_code
]; iv
; iv
= iv
->next
)
1942 if (iv
->attr
== attr
)
1950 struct insn_ent
*ie
;
1951 for (av
= attr
->first_value
; av
; av
= av
->next
)
1952 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
1953 if (ie
->def
->insn_code
== insn_code
)
1963 switch (GET_CODE (value
))
1966 if (! strcmp_check (XSTR (value
, 0), XSTR (exp
, 1)))
1977 gcc_assert (GET_CODE (exp
) == EQ_ATTR
);
1978 prefix
= attr
->enum_name
? attr
->enum_name
: attr
->name
;
1979 string
= ACONCAT ((prefix
, "_", XSTR (exp
, 1), NULL
));
1980 for (p
= string
; *p
; p
++)
1983 newexp
= attr_rtx (EQ
, value
,
1984 attr_rtx (SYMBOL_REF
,
1985 DEF_ATTR_STRING (string
)));
1990 /* We construct an IOR of all the cases for which the
1991 requested attribute value is present. Since we start with
1992 FALSE, if it is not present, FALSE will be returned.
1994 Each case is the AND of the NOT's of the previous conditions with the
1995 current condition; in the default case the current condition is TRUE.
1997 For each possible COND value, call ourselves recursively.
1999 The extra TRUE and FALSE expressions will be eliminated by another
2000 call to the simplification routine. */
2005 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
2007 rtx this_cond
= simplify_test_exp_in_temp (XVECEXP (value
, 0, i
),
2008 insn_code
, insn_index
);
2010 right
= insert_right_side (AND
, andexp
, this_cond
,
2011 insn_code
, insn_index
);
2012 right
= insert_right_side (AND
, right
,
2013 evaluate_eq_attr (exp
, attr
,
2016 insn_code
, insn_index
),
2017 insn_code
, insn_index
);
2018 orexp
= insert_right_side (IOR
, orexp
, right
,
2019 insn_code
, insn_index
);
2021 /* Add this condition into the AND expression. */
2022 newexp
= attr_rtx (NOT
, this_cond
);
2023 andexp
= insert_right_side (AND
, andexp
, newexp
,
2024 insn_code
, insn_index
);
2027 /* Handle the default case. */
2028 right
= insert_right_side (AND
, andexp
,
2029 evaluate_eq_attr (exp
, attr
, XEXP (value
, 1),
2030 insn_code
, insn_index
),
2031 insn_code
, insn_index
);
2032 newexp
= insert_right_side (IOR
, orexp
, right
, insn_code
, insn_index
);
2039 /* If uses an address, must return original expression. But set the
2040 ATTR_IND_SIMPLIFIED_P bit so we don't try to simplify it again. */
2043 walk_attr_value (newexp
);
2047 if (! ATTR_IND_SIMPLIFIED_P (exp
))
2048 return copy_rtx_unchanging (exp
);
2055 /* This routine is called when an AND of a term with a tree of AND's is
2056 encountered. If the term or its complement is present in the tree, it
2057 can be replaced with TRUE or FALSE, respectively.
2059 Note that (eq_attr "att" "v1") and (eq_attr "att" "v2") cannot both
2060 be true and hence are complementary.
2062 There is one special case: If we see
2063 (and (not (eq_attr "att" "v1"))
2064 (eq_attr "att" "v2"))
2065 this can be replaced by (eq_attr "att" "v2"). To do this we need to
2066 replace the term, not anything in the AND tree. So we pass a pointer to
2070 simplify_and_tree (rtx exp
, rtx
*pterm
, int insn_code
, int insn_index
)
2075 int left_eliminates_term
, right_eliminates_term
;
2077 if (GET_CODE (exp
) == AND
)
2079 left
= simplify_and_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2080 right
= simplify_and_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2081 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2083 newexp
= attr_rtx (AND
, left
, right
);
2085 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2089 else if (GET_CODE (exp
) == IOR
)
2091 /* For the IOR case, we do the same as above, except that we can
2092 only eliminate `term' if both sides of the IOR would do so. */
2094 left
= simplify_and_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2095 left_eliminates_term
= (temp
== true_rtx
);
2098 right
= simplify_and_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2099 right_eliminates_term
= (temp
== true_rtx
);
2101 if (left_eliminates_term
&& right_eliminates_term
)
2104 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2106 newexp
= attr_rtx (IOR
, left
, right
);
2108 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2112 /* Check for simplifications. Do some extra checking here since this
2113 routine is called so many times. */
2118 else if (GET_CODE (exp
) == NOT
&& XEXP (exp
, 0) == *pterm
)
2121 else if (GET_CODE (*pterm
) == NOT
&& exp
== XEXP (*pterm
, 0))
2124 else if (GET_CODE (exp
) == EQ_ATTR_ALT
&& GET_CODE (*pterm
) == EQ_ATTR_ALT
)
2126 if (attr_alt_subset_p (*pterm
, exp
))
2129 if (attr_alt_subset_of_compl_p (*pterm
, exp
))
2132 if (attr_alt_subset_p (exp
, *pterm
))
2138 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == EQ_ATTR
)
2140 if (XSTR (exp
, 0) != XSTR (*pterm
, 0))
2143 if (! strcmp_check (XSTR (exp
, 1), XSTR (*pterm
, 1)))
2149 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2150 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
2152 if (XSTR (*pterm
, 0) != XSTR (XEXP (exp
, 0), 0))
2155 if (! strcmp_check (XSTR (*pterm
, 1), XSTR (XEXP (exp
, 0), 1)))
2161 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2162 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
)
2164 if (XSTR (exp
, 0) != XSTR (XEXP (*pterm
, 0), 0))
2167 if (! strcmp_check (XSTR (exp
, 1), XSTR (XEXP (*pterm
, 0), 1)))
2173 else if (GET_CODE (exp
) == NOT
&& GET_CODE (*pterm
) == NOT
)
2175 if (attr_equal_p (XEXP (exp
, 0), XEXP (*pterm
, 0)))
2179 else if (GET_CODE (exp
) == NOT
)
2181 if (attr_equal_p (XEXP (exp
, 0), *pterm
))
2185 else if (GET_CODE (*pterm
) == NOT
)
2187 if (attr_equal_p (XEXP (*pterm
, 0), exp
))
2191 else if (attr_equal_p (exp
, *pterm
))
2197 /* Similar to `simplify_and_tree', but for IOR trees. */
2200 simplify_or_tree (rtx exp
, rtx
*pterm
, int insn_code
, int insn_index
)
2205 int left_eliminates_term
, right_eliminates_term
;
2207 if (GET_CODE (exp
) == IOR
)
2209 left
= simplify_or_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2210 right
= simplify_or_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2211 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2213 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2215 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2219 else if (GET_CODE (exp
) == AND
)
2221 /* For the AND case, we do the same as above, except that we can
2222 only eliminate `term' if both sides of the AND would do so. */
2224 left
= simplify_or_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2225 left_eliminates_term
= (temp
== false_rtx
);
2228 right
= simplify_or_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2229 right_eliminates_term
= (temp
== false_rtx
);
2231 if (left_eliminates_term
&& right_eliminates_term
)
2234 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2236 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2238 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2242 if (attr_equal_p (exp
, *pterm
))
2245 else if (GET_CODE (exp
) == NOT
&& attr_equal_p (XEXP (exp
, 0), *pterm
))
2248 else if (GET_CODE (*pterm
) == NOT
&& attr_equal_p (XEXP (*pterm
, 0), exp
))
2251 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2252 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2253 && XSTR (*pterm
, 0) == XSTR (XEXP (exp
, 0), 0))
2256 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2257 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
2258 && XSTR (exp
, 0) == XSTR (XEXP (*pterm
, 0), 0))
2264 /* Simplify test expression and use temporary obstack in order to avoid
2265 memory bloat. Use ATTR_IND_SIMPLIFIED to avoid unnecessary simplifications
2266 and avoid unnecessary copying if possible. */
2269 simplify_test_exp_in_temp (rtx exp
, int insn_code
, int insn_index
)
2272 struct obstack
*old
;
2273 if (ATTR_IND_SIMPLIFIED_P (exp
))
2276 rtl_obstack
= temp_obstack
;
2277 x
= simplify_test_exp (exp
, insn_code
, insn_index
);
2282 /* Returns true if S1 is a subset of S2. */
2285 attr_alt_subset_p (rtx s1
, rtx s2
)
2287 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2290 return !(XWINT (s1
, 0) &~ XWINT (s2
, 0));
2293 return !(XWINT (s1
, 0) & XWINT (s2
, 0));
2299 return !(XWINT (s2
, 0) &~ XWINT (s1
, 0));
2306 /* Returns true if S1 is a subset of complement of S2. */
2309 attr_alt_subset_of_compl_p (rtx s1
, rtx s2
)
2311 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2314 return !(XWINT (s1
, 0) & XWINT (s2
, 0));
2317 return !(XWINT (s1
, 0) & ~XWINT (s2
, 0));
2320 return !(XWINT (s2
, 0) &~ XWINT (s1
, 0));
2330 /* Return EQ_ATTR_ALT expression representing intersection of S1 and S2. */
2333 attr_alt_intersection (rtx s1
, rtx s2
)
2335 alternative_mask result
;
2337 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2340 result
= XWINT (s1
, 0) & XWINT (s2
, 0);
2343 result
= XWINT (s1
, 0) & ~XWINT (s2
, 0);
2346 result
= XWINT (s2
, 0) & ~XWINT (s1
, 0);
2349 result
= XWINT (s1
, 0) | XWINT (s2
, 0);
2355 return attr_rtx (EQ_ATTR_ALT
, result
, XWINT (s1
, 1) & XWINT (s2
, 1));
2358 /* Return EQ_ATTR_ALT expression representing union of S1 and S2. */
2361 attr_alt_union (rtx s1
, rtx s2
)
2363 alternative_mask result
;
2365 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2368 result
= XWINT (s1
, 0) | XWINT (s2
, 0);
2371 result
= XWINT (s2
, 0) & ~XWINT (s1
, 0);
2374 result
= XWINT (s1
, 0) & ~XWINT (s2
, 0);
2377 result
= XWINT (s1
, 0) & XWINT (s2
, 0);
2383 return attr_rtx (EQ_ATTR_ALT
, result
, XWINT (s1
, 1) | XWINT (s2
, 1));
2386 /* Return EQ_ATTR_ALT expression representing complement of S. */
2389 attr_alt_complement (rtx s
)
2391 return attr_rtx (EQ_ATTR_ALT
, XWINT (s
, 0),
2392 ((HOST_WIDE_INT
) 1) - XWINT (s
, 1));
2395 /* Return EQ_ATTR_ALT expression representing set containing elements set
2399 mk_attr_alt (alternative_mask e
)
2401 return attr_rtx (EQ_ATTR_ALT
, (HOST_WIDE_INT
) e
, (HOST_WIDE_INT
) 0);
2404 /* Given an expression, see if it can be simplified for a particular insn
2405 code based on the values of other attributes being tested. This can
2406 eliminate nested get_attr_... calls.
2408 Note that if an endless recursion is specified in the patterns, the
2409 optimization will loop. However, it will do so in precisely the cases where
2410 an infinite recursion loop could occur during compilation. It's better that
2414 simplify_test_exp (rtx exp
, int insn_code
, int insn_index
)
2417 struct attr_desc
*attr
;
2418 struct attr_value
*av
;
2419 struct insn_ent
*ie
;
2420 struct attr_value_list
*iv
;
2423 bool left_alt
, right_alt
;
2425 /* Don't re-simplify something we already simplified. */
2426 if (ATTR_IND_SIMPLIFIED_P (exp
) || ATTR_CURR_SIMPLIFIED_P (exp
))
2429 switch (GET_CODE (exp
))
2432 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2433 if (left
== false_rtx
)
2435 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
2436 if (right
== false_rtx
)
2439 if (GET_CODE (left
) == EQ_ATTR_ALT
2440 && GET_CODE (right
) == EQ_ATTR_ALT
)
2442 exp
= attr_alt_intersection (left
, right
);
2443 return simplify_test_exp (exp
, insn_code
, insn_index
);
2446 /* If either side is an IOR and we have (eq_attr "alternative" ..")
2447 present on both sides, apply the distributive law since this will
2448 yield simplifications. */
2449 if ((GET_CODE (left
) == IOR
|| GET_CODE (right
) == IOR
)
2450 && compute_alternative_mask (left
, IOR
)
2451 && compute_alternative_mask (right
, IOR
))
2453 if (GET_CODE (left
) == IOR
)
2454 std::swap (left
, right
);
2456 newexp
= attr_rtx (IOR
,
2457 attr_rtx (AND
, left
, XEXP (right
, 0)),
2458 attr_rtx (AND
, left
, XEXP (right
, 1)));
2460 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2463 /* Try with the term on both sides. */
2464 right
= simplify_and_tree (right
, &left
, insn_code
, insn_index
);
2465 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
2466 left
= simplify_and_tree (left
, &right
, insn_code
, insn_index
);
2468 if (left
== false_rtx
|| right
== false_rtx
)
2470 else if (left
== true_rtx
)
2474 else if (right
== true_rtx
)
2478 /* See if all or all but one of the insn's alternatives are specified
2479 in this tree. Optimize if so. */
2481 if (GET_CODE (left
) == NOT
)
2482 left_alt
= (GET_CODE (XEXP (left
, 0)) == EQ_ATTR
2483 && XSTR (XEXP (left
, 0), 0) == alternative_name
);
2485 left_alt
= (GET_CODE (left
) == EQ_ATTR_ALT
2486 && XWINT (left
, 1));
2488 if (GET_CODE (right
) == NOT
)
2489 right_alt
= (GET_CODE (XEXP (right
, 0)) == EQ_ATTR
2490 && XSTR (XEXP (right
, 0), 0) == alternative_name
);
2492 right_alt
= (GET_CODE (right
) == EQ_ATTR_ALT
2493 && XWINT (right
, 1));
2496 && (GET_CODE (left
) == AND
2498 || GET_CODE (right
) == AND
2501 i
= compute_alternative_mask (exp
, AND
);
2502 if (i
& ~insn_alternatives
[insn_code
])
2503 fatal ("invalid alternative specified for pattern number %d",
2506 /* If all alternatives are excluded, this is false. */
2507 i
^= insn_alternatives
[insn_code
];
2510 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
2512 /* If just one excluded, AND a comparison with that one to the
2513 front of the tree. The others will be eliminated by
2514 optimization. We do not want to do this if the insn has one
2515 alternative and we have tested none of them! */
2516 left
= make_alternative_compare (i
);
2517 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
2518 newexp
= attr_rtx (AND
, left
, right
);
2520 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2524 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2526 newexp
= attr_rtx (AND
, left
, right
);
2527 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2532 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2533 if (left
== true_rtx
)
2535 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
2536 if (right
== true_rtx
)
2539 if (GET_CODE (left
) == EQ_ATTR_ALT
2540 && GET_CODE (right
) == EQ_ATTR_ALT
)
2542 exp
= attr_alt_union (left
, right
);
2543 return simplify_test_exp (exp
, insn_code
, insn_index
);
2546 right
= simplify_or_tree (right
, &left
, insn_code
, insn_index
);
2547 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
2548 left
= simplify_or_tree (left
, &right
, insn_code
, insn_index
);
2550 if (right
== true_rtx
|| left
== true_rtx
)
2552 else if (left
== false_rtx
)
2556 else if (right
== false_rtx
)
2561 /* Test for simple cases where the distributive law is useful. I.e.,
2562 convert (ior (and (x) (y))
2568 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
2569 && attr_equal_p (XEXP (left
, 0), XEXP (right
, 0)))
2571 newexp
= attr_rtx (IOR
, XEXP (left
, 1), XEXP (right
, 1));
2573 left
= XEXP (left
, 0);
2575 newexp
= attr_rtx (AND
, left
, right
);
2576 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2580 convert (ior (and (y) (x))
2582 to (and (ior (y) (z))
2584 Note that we want the common term to stay at the end.
2587 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
2588 && attr_equal_p (XEXP (left
, 1), XEXP (right
, 1)))
2590 newexp
= attr_rtx (IOR
, XEXP (left
, 0), XEXP (right
, 0));
2593 right
= XEXP (right
, 1);
2594 newexp
= attr_rtx (AND
, left
, right
);
2595 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2598 /* See if all or all but one of the insn's alternatives are specified
2599 in this tree. Optimize if so. */
2601 else if (insn_code
>= 0
2602 && (GET_CODE (left
) == IOR
2603 || (GET_CODE (left
) == EQ_ATTR_ALT
2604 && !XWINT (left
, 1))
2605 || (GET_CODE (left
) == EQ_ATTR
2606 && XSTR (left
, 0) == alternative_name
)
2607 || GET_CODE (right
) == IOR
2608 || (GET_CODE (right
) == EQ_ATTR_ALT
2609 && !XWINT (right
, 1))
2610 || (GET_CODE (right
) == EQ_ATTR
2611 && XSTR (right
, 0) == alternative_name
)))
2613 i
= compute_alternative_mask (exp
, IOR
);
2614 if (i
& ~insn_alternatives
[insn_code
])
2615 fatal ("invalid alternative specified for pattern number %d",
2618 /* If all alternatives are included, this is true. */
2619 i
^= insn_alternatives
[insn_code
];
2622 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
2624 /* If just one excluded, IOR a comparison with that one to the
2625 front of the tree. The others will be eliminated by
2626 optimization. We do not want to do this if the insn has one
2627 alternative and we have tested none of them! */
2628 left
= make_alternative_compare (i
);
2629 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
2630 newexp
= attr_rtx (IOR
, attr_rtx (NOT
, left
), right
);
2632 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2636 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2638 newexp
= attr_rtx (IOR
, left
, right
);
2639 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2644 if (GET_CODE (XEXP (exp
, 0)) == NOT
)
2646 left
= SIMPLIFY_TEST_EXP (XEXP (XEXP (exp
, 0), 0),
2647 insn_code
, insn_index
);
2651 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2652 if (GET_CODE (left
) == NOT
)
2653 return XEXP (left
, 0);
2655 if (left
== false_rtx
)
2657 if (left
== true_rtx
)
2660 if (GET_CODE (left
) == EQ_ATTR_ALT
)
2662 exp
= attr_alt_complement (left
);
2663 return simplify_test_exp (exp
, insn_code
, insn_index
);
2666 /* Try to apply De`Morgan's laws. */
2667 if (GET_CODE (left
) == IOR
)
2669 newexp
= attr_rtx (AND
,
2670 attr_rtx (NOT
, XEXP (left
, 0)),
2671 attr_rtx (NOT
, XEXP (left
, 1)));
2673 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2675 else if (GET_CODE (left
) == AND
)
2677 newexp
= attr_rtx (IOR
,
2678 attr_rtx (NOT
, XEXP (left
, 0)),
2679 attr_rtx (NOT
, XEXP (left
, 1)));
2681 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2683 else if (left
!= XEXP (exp
, 0))
2685 newexp
= attr_rtx (NOT
, left
);
2690 if (!XWINT (exp
, 0))
2691 return XWINT (exp
, 1) ? true_rtx
: false_rtx
;
2695 if (XSTR (exp
, 0) == alternative_name
)
2697 newexp
= mk_attr_alt (((alternative_mask
) 1)
2698 << atoi (XSTR (exp
, 1)));
2702 /* Look at the value for this insn code in the specified attribute.
2703 We normally can replace this comparison with the condition that
2704 would give this insn the values being tested for. */
2706 && (attr
= find_attr (&XSTR (exp
, 0), 0)) != NULL
)
2711 if (insn_code_values
)
2713 for (iv
= insn_code_values
[insn_code
]; iv
; iv
= iv
->next
)
2714 if (iv
->attr
== attr
)
2722 for (av
= attr
->first_value
; av
; av
= av
->next
)
2723 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2724 if (ie
->def
->insn_code
== insn_code
)
2731 x
= evaluate_eq_attr (exp
, attr
, av
->value
,
2732 insn_code
, insn_index
);
2733 x
= SIMPLIFY_TEST_EXP (x
, insn_code
, insn_index
);
2734 if (attr_rtx_cost (x
) < 7)
2744 /* We have already simplified this expression. Simplifying it again
2745 won't buy anything unless we weren't given a valid insn code
2746 to process (i.e., we are canonicalizing something.). */
2748 && ! ATTR_IND_SIMPLIFIED_P (newexp
))
2749 return copy_rtx_unchanging (newexp
);
2754 /* Return 1 if any EQ_ATTR subexpression of P refers to ATTR,
2755 otherwise return 0. */
2758 tests_attr_p (rtx p
, struct attr_desc
*attr
)
2763 if (GET_CODE (p
) == EQ_ATTR
)
2765 if (XSTR (p
, 0) != attr
->name
)
2770 fmt
= GET_RTX_FORMAT (GET_CODE (p
));
2771 ie
= GET_RTX_LENGTH (GET_CODE (p
));
2772 for (i
= 0; i
< ie
; i
++)
2777 if (tests_attr_p (XEXP (p
, i
), attr
))
2782 je
= XVECLEN (p
, i
);
2783 for (j
= 0; j
< je
; ++j
)
2784 if (tests_attr_p (XVECEXP (p
, i
, j
), attr
))
2793 /* Calculate a topological sorting of all attributes so that
2794 all attributes only depend on attributes in front of it.
2795 Place the result in *RET (which is a pointer to an array of
2796 attr_desc pointers), and return the size of that array. */
2799 get_attr_order (struct attr_desc
***ret
)
2803 struct attr_desc
*attr
;
2804 struct attr_desc
**all
, **sorted
;
2806 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
2807 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
2809 all
= XNEWVEC (struct attr_desc
*, num
);
2810 sorted
= XNEWVEC (struct attr_desc
*, num
);
2811 handled
= XCNEWVEC (char, num
);
2813 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
2814 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
2818 for (i
= 0; i
< num
; i
++)
2819 if (all
[i
]->is_const
)
2820 handled
[i
] = 1, sorted
[j
++] = all
[i
];
2822 /* We have only few attributes hence we can live with the inner
2823 loop being O(n^2), unlike the normal fast variants of topological
2827 for (i
= 0; i
< num
; i
++)
2830 /* Let's see if I depends on anything interesting. */
2832 for (k
= 0; k
< num
; k
++)
2835 struct attr_value
*av
;
2836 for (av
= all
[i
]->first_value
; av
; av
= av
->next
)
2837 if (av
->num_insns
!= 0)
2838 if (tests_attr_p (av
->value
, all
[k
]))
2842 /* Something in I depends on K. */
2847 /* Nothing in I depended on anything intersting, so
2850 sorted
[j
++] = all
[i
];
2856 for (j
= 0; j
< num
; j
++)
2858 struct attr_desc
*attr2
;
2859 struct attr_value
*av
;
2862 fprintf (stderr
, "%s depends on: ", attr
->name
);
2863 for (i
= 0; i
< MAX_ATTRS_INDEX
; ++i
)
2864 for (attr2
= attrs
[i
]; attr2
; attr2
= attr2
->next
)
2865 if (!attr2
->is_const
)
2866 for (av
= attr
->first_value
; av
; av
= av
->next
)
2867 if (av
->num_insns
!= 0)
2868 if (tests_attr_p (av
->value
, attr2
))
2870 fprintf (stderr
, "%s, ", attr2
->name
);
2873 fprintf (stderr
, "\n");
2881 /* Optimize the attribute lists by seeing if we can determine conditional
2882 values from the known values of other attributes. This will save subroutine
2883 calls during the compilation. NUM_INSN_CODES is the number of unique
2884 instruction codes. */
2887 optimize_attrs (int num_insn_codes
)
2889 struct attr_desc
*attr
;
2890 struct attr_value
*av
;
2891 struct insn_ent
*ie
;
2894 struct attr_value_list
*ivbuf
;
2895 struct attr_value_list
*iv
;
2896 struct attr_desc
**topsort
;
2899 /* For each insn code, make a list of all the insn_ent's for it,
2900 for all values for all attributes. */
2902 if (num_insn_ents
== 0)
2905 /* Make 2 extra elements, for "code" values -2 and -1. */
2906 insn_code_values
= XCNEWVEC (struct attr_value_list
*, num_insn_codes
+ 2);
2908 /* Offset the table address so we can index by -2 or -1. */
2909 insn_code_values
+= 2;
2911 iv
= ivbuf
= XNEWVEC (struct attr_value_list
, num_insn_ents
);
2913 /* Create the chain of insn*attr values such that we see dependend
2914 attributes after their dependencies. As we use a stack via the
2915 next pointers start from the end of the topological order. */
2916 topnum
= get_attr_order (&topsort
);
2917 for (i
= topnum
- 1; i
>= 0; i
--)
2918 for (av
= topsort
[i
]->first_value
; av
; av
= av
->next
)
2919 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2921 iv
->attr
= topsort
[i
];
2924 iv
->next
= insn_code_values
[ie
->def
->insn_code
];
2925 insn_code_values
[ie
->def
->insn_code
] = iv
;
2930 /* Sanity check on num_insn_ents. */
2931 gcc_assert (iv
== ivbuf
+ num_insn_ents
);
2933 /* Process one insn code at a time. */
2934 for (i
= -2; i
< num_insn_codes
; i
++)
2936 /* Clear the ATTR_CURR_SIMPLIFIED_P flag everywhere relevant.
2937 We use it to mean "already simplified for this insn". */
2938 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
2939 clear_struct_flag (iv
->av
->value
);
2941 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
2943 struct obstack
*old
= rtl_obstack
;
2948 if (GET_CODE (av
->value
) != COND
)
2951 rtl_obstack
= temp_obstack
;
2953 while (GET_CODE (newexp
) == COND
)
2955 rtx newexp2
= simplify_cond (newexp
, ie
->def
->insn_code
,
2956 ie
->def
->insn_index
);
2957 if (newexp2
== newexp
)
2963 /* If we created a new value for this instruction, and it's
2964 cheaper than the old value, and overall cheap, use that
2965 one as specific value for the current instruction.
2966 The last test is to avoid exploding the get_attr_ function
2967 sizes for no much gain. */
2968 if (newexp
!= av
->value
2969 && attr_rtx_cost (newexp
) < attr_rtx_cost (av
->value
)
2970 && attr_rtx_cost (newexp
) < 26
2973 remove_insn_ent (av
, ie
);
2974 av
= get_attr_value (ie
->def
->loc
, newexp
, attr
,
2975 ie
->def
->insn_code
);
2977 insert_insn_ent (av
, ie
);
2983 free (insn_code_values
- 2);
2984 insn_code_values
= NULL
;
2987 /* Clear the ATTR_CURR_SIMPLIFIED_P flag in EXP and its subexpressions. */
2990 clear_struct_flag (rtx x
)
2997 ATTR_CURR_SIMPLIFIED_P (x
) = 0;
2998 if (ATTR_IND_SIMPLIFIED_P (x
))
3001 code
= GET_CODE (x
);
3020 /* Compare the elements. If any pair of corresponding elements
3021 fail to match, return 0 for the whole things. */
3023 fmt
= GET_RTX_FORMAT (code
);
3024 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3030 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3031 clear_struct_flag (XVECEXP (x
, i
, j
));
3035 clear_struct_flag (XEXP (x
, i
));
3041 /* Add attribute value NAME to the beginning of ATTR's list. */
3044 add_attr_value (struct attr_desc
*attr
, const char *name
)
3046 struct attr_value
*av
;
3048 av
= oballoc (struct attr_value
);
3049 av
->value
= attr_rtx (CONST_STRING
, name
);
3050 av
->next
= attr
->first_value
;
3051 attr
->first_value
= av
;
3052 av
->first_insn
= NULL
;
3054 av
->has_asm_insn
= 0;
3057 /* Create table entries for DEFINE_ATTR or DEFINE_ENUM_ATTR. */
3060 gen_attr (md_rtx_info
*info
)
3062 struct enum_type
*et
;
3063 struct enum_value
*ev
;
3064 struct attr_desc
*attr
;
3065 const char *name_ptr
;
3067 rtx def
= info
->def
;
3069 /* Make a new attribute structure. Check for duplicate by looking at
3070 attr->default_val, since it is initialized by this routine. */
3071 attr
= find_attr (&XSTR (def
, 0), 1);
3072 if (attr
->default_val
)
3074 error_at (info
->loc
, "duplicate definition for attribute %s",
3076 message_at (attr
->loc
, "previous definition");
3079 attr
->loc
= info
->loc
;
3081 if (GET_CODE (def
) == DEFINE_ENUM_ATTR
)
3083 attr
->enum_name
= XSTR (def
, 1);
3084 et
= rtx_reader_ptr
->lookup_enum_type (XSTR (def
, 1));
3085 if (!et
|| !et
->md_p
)
3086 error_at (info
->loc
, "No define_enum called `%s' defined",
3089 for (ev
= et
->values
; ev
; ev
= ev
->next
)
3090 add_attr_value (attr
, ev
->name
);
3092 else if (*XSTR (def
, 1) == '\0')
3093 attr
->is_numeric
= 1;
3096 name_ptr
= XSTR (def
, 1);
3097 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
3098 add_attr_value (attr
, p
);
3101 if (GET_CODE (XEXP (def
, 2)) == CONST
)
3104 if (attr
->is_numeric
)
3105 error_at (info
->loc
,
3106 "constant attributes may not take numeric values");
3108 /* Get rid of the CONST node. It is allowed only at top-level. */
3109 XEXP (def
, 2) = XEXP (XEXP (def
, 2), 0);
3112 if (! strcmp_check (attr
->name
, length_str
) && ! attr
->is_numeric
)
3113 error_at (info
->loc
, "`length' attribute must take numeric values");
3115 /* Set up the default value. */
3116 XEXP (def
, 2) = check_attr_value (info
->loc
, XEXP (def
, 2), attr
);
3117 attr
->default_val
= get_attr_value (info
->loc
, XEXP (def
, 2), attr
, -2);
3120 /* Given a pattern for DEFINE_PEEPHOLE or DEFINE_INSN, return the number of
3121 alternatives in the constraints. Assume all MATCH_OPERANDs have the same
3122 number of alternatives as this should be checked elsewhere. */
3125 count_alternatives (rtx exp
)
3130 if (GET_CODE (exp
) == MATCH_OPERAND
)
3131 return n_comma_elts (XSTR (exp
, 2));
3133 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
3134 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
3139 n
= count_alternatives (XEXP (exp
, i
));
3146 if (XVEC (exp
, i
) != NULL
)
3147 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
3149 n
= count_alternatives (XVECEXP (exp
, i
, j
));
3158 /* Returns nonzero if the given expression contains an EQ_ATTR with the
3159 `alternative' attribute. */
3162 compares_alternatives_p (rtx exp
)
3167 if (GET_CODE (exp
) == EQ_ATTR
&& XSTR (exp
, 0) == alternative_name
)
3170 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
3171 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
3176 if (compares_alternatives_p (XEXP (exp
, i
)))
3181 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
3182 if (compares_alternatives_p (XVECEXP (exp
, i
, j
)))
3190 /* Process DEFINE_PEEPHOLE, DEFINE_INSN, and DEFINE_ASM_ATTRIBUTES. */
3193 gen_insn (md_rtx_info
*info
)
3195 struct insn_def
*id
;
3196 rtx def
= info
->def
;
3198 id
= oballoc (struct insn_def
);
3202 id
->loc
= info
->loc
;
3204 switch (GET_CODE (def
))
3207 id
->insn_code
= info
->index
;
3208 id
->insn_index
= insn_index_number
;
3209 id
->num_alternatives
= count_alternatives (def
);
3210 if (id
->num_alternatives
== 0)
3211 id
->num_alternatives
= 1;
3215 case DEFINE_PEEPHOLE
:
3216 id
->insn_code
= info
->index
;
3217 id
->insn_index
= insn_index_number
;
3218 id
->num_alternatives
= count_alternatives (def
);
3219 if (id
->num_alternatives
== 0)
3220 id
->num_alternatives
= 1;
3224 case DEFINE_ASM_ATTRIBUTES
:
3226 id
->insn_index
= -1;
3227 id
->num_alternatives
= 1;
3229 got_define_asm_attributes
= 1;
3237 /* Process a DEFINE_DELAY. Validate the vector length, check if annul
3238 true or annul false is specified, and make a `struct delay_desc'. */
3241 gen_delay (md_rtx_info
*info
)
3243 struct delay_desc
*delay
;
3246 rtx def
= info
->def
;
3247 if (XVECLEN (def
, 1) % 3 != 0)
3249 error_at (info
->loc
, "number of elements in DEFINE_DELAY must"
3250 " be multiple of three");
3254 for (i
= 0; i
< XVECLEN (def
, 1); i
+= 3)
3256 if (XVECEXP (def
, 1, i
+ 1))
3257 have_annul_true
= 1;
3258 if (XVECEXP (def
, 1, i
+ 2))
3259 have_annul_false
= 1;
3262 delay
= oballoc (struct delay_desc
);
3264 delay
->num
= ++num_delays
;
3265 delay
->next
= delays
;
3266 delay
->loc
= info
->loc
;
3270 /* Names of attributes that could be possibly cached. */
3271 static const char *cached_attrs
[32];
3272 /* Number of such attributes. */
3273 static int cached_attr_count
;
3274 /* Bitmasks of possibly cached attributes. */
3275 static unsigned int attrs_seen_once
, attrs_seen_more_than_once
;
3276 static unsigned int attrs_to_cache
;
3277 static unsigned int attrs_cached_inside
, attrs_cached_after
;
3279 /* Finds non-const attributes that could be possibly cached.
3280 When create is TRUE, fills in cached_attrs array.
3281 Computes ATTRS_SEEN_ONCE and ATTRS_SEEN_MORE_THAN_ONCE
3285 find_attrs_to_cache (rtx exp
, bool create
)
3289 struct attr_desc
*attr
;
3294 switch (GET_CODE (exp
))
3297 if (GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
3298 find_attrs_to_cache (XEXP (exp
, 0), create
);
3302 name
= XSTR (exp
, 0);
3303 if (name
== alternative_name
)
3305 for (i
= 0; i
< cached_attr_count
; i
++)
3306 if (name
== cached_attrs
[i
])
3308 if ((attrs_seen_once
& (1U << i
)) != 0)
3309 attrs_seen_more_than_once
|= (1U << i
);
3311 attrs_seen_once
|= (1U << i
);
3316 attr
= find_attr (&name
, 0);
3320 if (cached_attr_count
== 32)
3322 cached_attrs
[cached_attr_count
] = XSTR (exp
, 0);
3323 attrs_seen_once
|= (1U << cached_attr_count
);
3324 cached_attr_count
++;
3329 find_attrs_to_cache (XEXP (exp
, 0), create
);
3330 find_attrs_to_cache (XEXP (exp
, 1), create
);
3334 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3335 find_attrs_to_cache (XVECEXP (exp
, 0, i
), create
);
3343 /* Given a piece of RTX, print a C expression to test its truth value to OUTF.
3344 We use AND and IOR both for logical and bit-wise operations, so
3345 interpret them as logical unless they are inside a comparison expression.
3347 An outermost pair of parentheses is emitted around this C expression unless
3348 EMIT_PARENS is false. */
3350 /* Interpret AND/IOR as bit-wise operations instead of logical. */
3351 #define FLG_BITWISE 1
3352 /* Set if cached attribute will be known initialized in else block after
3353 this condition. This is true for LHS of toplevel && and || and
3354 even for RHS of ||, but not for RHS of &&. */
3356 /* Set if cached attribute will be known initialized in then block after
3357 this condition. This is true for LHS of toplevel && and || and
3358 even for RHS of &&, but not for RHS of ||. */
3359 #define FLG_INSIDE 4
3360 /* Cleared when an operand of &&. */
3361 #define FLG_OUTSIDE_AND 8
3364 write_test_expr (FILE *outf
, rtx exp
, unsigned int attrs_cached
, int flags
,
3365 bool emit_parens
= true)
3367 int comparison_operator
= 0;
3369 struct attr_desc
*attr
;
3372 fprintf (outf
, "(");
3374 code
= GET_CODE (exp
);
3377 /* Binary operators. */
3380 fprintf (outf
, "(unsigned) ");
3386 comparison_operator
= FLG_BITWISE
;
3389 case PLUS
: case MINUS
: case MULT
: case DIV
: case MOD
:
3390 case AND
: case IOR
: case XOR
:
3391 case ASHIFT
: case LSHIFTRT
: case ASHIFTRT
:
3392 if ((code
!= AND
&& code
!= IOR
) || (flags
& FLG_BITWISE
))
3394 flags
&= ~(FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
);
3395 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
,
3396 flags
| comparison_operator
);
3401 flags
&= ~FLG_OUTSIDE_AND
;
3402 if (GET_CODE (XEXP (exp
, 0)) == code
3403 || GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
3404 || (GET_CODE (XEXP (exp
, 0)) == NOT
3405 && GET_CODE (XEXP (XEXP (exp
, 0), 0)) == EQ_ATTR
))
3407 = write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3409 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3414 fprintf (outf
, " == ");
3417 fprintf (outf
, " != ");
3420 fprintf (outf
, " >= ");
3423 fprintf (outf
, " > ");
3426 fprintf (outf
, " >= (unsigned) ");
3429 fprintf (outf
, " > (unsigned) ");
3432 fprintf (outf
, " <= ");
3435 fprintf (outf
, " < ");
3438 fprintf (outf
, " <= (unsigned) ");
3441 fprintf (outf
, " < (unsigned) ");
3444 fprintf (outf
, " + ");
3447 fprintf (outf
, " - ");
3450 fprintf (outf
, " * ");
3453 fprintf (outf
, " / ");
3456 fprintf (outf
, " %% ");
3459 if (flags
& FLG_BITWISE
)
3460 fprintf (outf
, " & ");
3462 fprintf (outf
, " && ");
3465 if (flags
& FLG_BITWISE
)
3466 fprintf (outf
, " | ");
3468 fprintf (outf
, " || ");
3471 fprintf (outf
, " ^ ");
3474 fprintf (outf
, " << ");
3478 fprintf (outf
, " >> ");
3486 /* For if (something && (cached_x = get_attr_x (insn)) == X)
3487 cached_x is only known to be initialized in then block. */
3488 flags
&= ~FLG_AFTER
;
3490 else if (code
== IOR
)
3492 if (flags
& FLG_OUTSIDE_AND
)
3493 /* For if (something || (cached_x = get_attr_x (insn)) == X)
3494 cached_x is only known to be initialized in else block
3495 and else if conditions. */
3496 flags
&= ~FLG_INSIDE
;
3498 /* For if ((something || (cached_x = get_attr_x (insn)) == X)
3500 cached_x is not know to be initialized anywhere. */
3501 flags
&= ~(FLG_AFTER
| FLG_INSIDE
);
3503 if ((code
== AND
|| code
== IOR
)
3504 && (GET_CODE (XEXP (exp
, 1)) == code
3505 || GET_CODE (XEXP (exp
, 1)) == EQ_ATTR
3506 || (GET_CODE (XEXP (exp
, 1)) == NOT
3507 && GET_CODE (XEXP (XEXP (exp
, 1), 0)) == EQ_ATTR
)))
3509 bool need_parens
= true;
3511 /* No need to emit parentheses around the right-hand operand if we are
3512 continuing a chain of && or || (or & or |). */
3513 if (GET_CODE (XEXP (exp
, 1)) == code
)
3514 need_parens
= false;
3517 = write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
, flags
,
3521 write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
,
3522 flags
| comparison_operator
);
3526 /* Special-case (not (eq_attrq "alternative" "x")) */
3527 if (! (flags
& FLG_BITWISE
) && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
3529 if (XSTR (XEXP (exp
, 0), 0) == alternative_name
)
3531 fprintf (outf
, "which_alternative != %s",
3532 XSTR (XEXP (exp
, 0), 1));
3536 fprintf (outf
, "! ");
3538 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3542 /* Otherwise, fall through to normal unary operator. */
3545 /* Unary operators. */
3550 if (flags
& FLG_BITWISE
)
3551 fprintf (outf
, "~ ");
3553 fprintf (outf
, "! ");
3556 fprintf (outf
, "abs ");
3559 fprintf (outf
, "-");
3565 flags
&= ~(FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
);
3566 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3571 alternative_mask set
= XWINT (exp
, 0);
3574 if (flags
& FLG_BITWISE
)
3575 fatal ("EQ_ATTR_ALT not valid inside comparison");
3578 fatal ("Empty EQ_ATTR_ALT should be optimized out");
3580 if (!(set
& (set
- 1)))
3582 if (!(set
& 0xffffffff))
3587 if (!(set
& 0xffff))
3610 fprintf (outf
, "which_alternative %s= %d",
3611 XWINT (exp
, 1) ? "!" : "=", bit
);
3615 fprintf (outf
, "%s((1ULL << which_alternative) & %#" PRIx64
3617 XWINT (exp
, 1) ? "!" : "", set
);
3622 /* Comparison test of an attribute with a value. Most of these will
3623 have been removed by optimization. Handle "alternative"
3624 specially and give error if EQ_ATTR present inside a comparison. */
3626 if (flags
& FLG_BITWISE
)
3627 fatal ("EQ_ATTR not valid inside comparison");
3629 if (XSTR (exp
, 0) == alternative_name
)
3631 fprintf (outf
, "which_alternative == %s", XSTR (exp
, 1));
3635 attr
= find_attr (&XSTR (exp
, 0), 0);
3638 /* Now is the time to expand the value of a constant attribute. */
3641 write_test_expr (outf
,
3642 evaluate_eq_attr (exp
, attr
,
3643 attr
->default_val
->value
,
3650 for (i
= 0; i
< cached_attr_count
; i
++)
3651 if (attr
->name
== cached_attrs
[i
])
3653 if (i
< cached_attr_count
&& (attrs_cached
& (1U << i
)) != 0)
3654 fprintf (outf
, "cached_%s", attr
->name
);
3655 else if (i
< cached_attr_count
&& (attrs_to_cache
& (1U << i
)) != 0)
3657 fprintf (outf
, "(cached_%s = get_attr_%s (insn))",
3658 attr
->name
, attr
->name
);
3659 if (flags
& FLG_AFTER
)
3660 attrs_cached_after
|= (1U << i
);
3661 if (flags
& FLG_INSIDE
)
3662 attrs_cached_inside
|= (1U << i
);
3663 attrs_cached
|= (1U << i
);
3666 fprintf (outf
, "get_attr_%s (insn)", attr
->name
);
3667 fprintf (outf
, " == ");
3668 write_attr_valueq (outf
, attr
, XSTR (exp
, 1));
3672 /* Comparison test of flags for define_delays. */
3674 if (flags
& FLG_BITWISE
)
3675 fatal ("ATTR_FLAG not valid inside comparison");
3676 fprintf (outf
, "(flags & ATTR_FLAG_%s) != 0", XSTR (exp
, 0));
3679 /* See if an operand matches a predicate. */
3681 /* If only a mode is given, just ensure the mode matches the operand.
3682 If neither a mode nor predicate is given, error. */
3683 if (XSTR (exp
, 1) == NULL
|| *XSTR (exp
, 1) == '\0')
3685 if (GET_MODE (exp
) == VOIDmode
)
3686 fatal ("null MATCH_OPERAND specified as test");
3688 fprintf (outf
, "GET_MODE (operands[%d]) == %smode",
3689 XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
3692 fprintf (outf
, "%s (operands[%d], %smode)",
3693 XSTR (exp
, 1), XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
3696 /* Constant integer. */
3698 fprintf (outf
, HOST_WIDE_INT_PRINT_DEC
, XWINT (exp
, 0));
3702 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (exp
, 0));
3703 if (flags
& FLG_BITWISE
)
3704 fprintf (outf
, " != 0");
3707 /* A random C expression. */
3709 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (exp
, 0));
3712 /* The address of the branch target. */
3715 "INSN_ADDRESSES_SET_P () ? INSN_ADDRESSES (INSN_UID (GET_CODE (operands[%d]) == LABEL_REF ? XEXP (operands[%d], 0) : operands[%d])) : 0",
3716 XINT (exp
, 0), XINT (exp
, 0), XINT (exp
, 0));
3720 /* The address of the current insn. We implement this actually as the
3721 address of the current insn for backward branches, but the last
3722 address of the next insn for forward branches, and both with
3723 adjustments that account for the worst-case possible stretching of
3724 intervening alignments between this insn and its destination. */
3725 fprintf (outf
, "insn_current_reference_address (insn)");
3729 fprintf (outf
, "%s", XSTR (exp
, 0));
3733 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, 0);
3734 fprintf (outf
, " ? ");
3735 write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
, FLG_BITWISE
);
3736 fprintf (outf
, " : ");
3737 write_test_expr (outf
, XEXP (exp
, 2), attrs_cached
, FLG_BITWISE
);
3741 fatal ("bad RTX code `%s' in attribute calculation\n",
3742 GET_RTX_NAME (code
));
3746 fprintf (outf
, ")");
3748 return attrs_cached
;
3751 /* Given an attribute value expression, return the maximum value that
3752 might be evaluated. Return INT_MAX if the value can't be
3753 calculated by this function. */
3756 max_attr_value (rtx exp
)
3761 switch (GET_CODE (exp
))
3764 current_max
= atoi (XSTR (exp
, 0));
3768 current_max
= INTVAL (exp
);
3772 current_max
= max_attr_value (XEXP (exp
, 0));
3773 if (current_max
!= INT_MAX
)
3776 current_max
= max_attr_value (XEXP (exp
, 1));
3777 if (current_max
!= INT_MAX
)
3783 current_max
= max_attr_value (XEXP (exp
, 0));
3784 if (current_max
!= INT_MAX
)
3787 current_max
= min_attr_value (XEXP (exp
, 1));
3788 if (current_max
!= INT_MAX
)
3789 current_max
= n
- current_max
;
3794 current_max
= max_attr_value (XEXP (exp
, 0));
3795 if (current_max
!= INT_MAX
)
3798 current_max
= max_attr_value (XEXP (exp
, 1));
3799 if (current_max
!= INT_MAX
)
3805 current_max
= max_attr_value (XEXP (exp
, 1));
3806 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3808 n
= max_attr_value (XVECEXP (exp
, 0, i
+ 1));
3809 if (n
> current_max
)
3815 current_max
= max_attr_value (XEXP (exp
, 1));
3816 n
= max_attr_value (XEXP (exp
, 2));
3817 if (n
> current_max
)
3822 current_max
= INT_MAX
;
3829 /* Given an attribute value expression, return the minimum value that
3830 might be evaluated. Return INT_MAX if the value can't be
3831 calculated by this function. Note that when this function can
3832 calculate one value inside IF_THEN_ELSE or some but not all values
3833 inside COND, then it returns the minimum among those values it can
3837 min_attr_value (rtx exp
)
3842 switch (GET_CODE (exp
))
3845 current_min
= atoi (XSTR (exp
, 0));
3849 current_min
= INTVAL (exp
);
3853 current_min
= min_attr_value (XEXP (exp
, 0));
3854 if (current_min
!= INT_MAX
)
3857 current_min
= min_attr_value (XEXP (exp
, 1));
3858 if (current_min
!= INT_MAX
)
3864 current_min
= min_attr_value (XEXP (exp
, 0));
3865 if (current_min
!= INT_MAX
)
3868 current_min
= max_attr_value (XEXP (exp
, 1));
3869 if (current_min
!= INT_MAX
)
3870 current_min
= n
- current_min
;
3875 current_min
= min_attr_value (XEXP (exp
, 0));
3876 if (current_min
!= INT_MAX
)
3879 current_min
= min_attr_value (XEXP (exp
, 1));
3880 if (current_min
!= INT_MAX
)
3886 current_min
= min_attr_value (XEXP (exp
, 1));
3887 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3889 n
= min_attr_value (XVECEXP (exp
, 0, i
+ 1));
3890 if (n
< current_min
)
3896 current_min
= min_attr_value (XEXP (exp
, 1));
3897 n
= min_attr_value (XEXP (exp
, 2));
3898 if (n
< current_min
)
3903 current_min
= INT_MAX
;
3910 /* Given an attribute value expression, return the alignment of values.
3911 Return 0 if EXP is known to be zero, and 1 if the value can't be
3912 calculated by this function. */
3915 attr_value_alignment (rtx exp
)
3917 unsigned int current_or
;
3920 switch (GET_CODE (exp
))
3923 current_or
= atoi (XSTR (exp
, 0));
3927 current_or
= INTVAL (exp
);
3932 current_or
= attr_value_alignment (XEXP (exp
, 0));
3933 current_or
|= attr_value_alignment (XEXP (exp
, 1));
3937 current_or
= attr_value_alignment (XEXP (exp
, 0));
3938 current_or
*= attr_value_alignment (XEXP (exp
, 1));
3942 current_or
= attr_value_alignment (XEXP (exp
, 1));
3943 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3944 current_or
|= attr_value_alignment (XVECEXP (exp
, 0, i
+ 1));
3948 current_or
= attr_value_alignment (XEXP (exp
, 1));
3949 current_or
|= attr_value_alignment (XEXP (exp
, 2));
3957 return current_or
& -current_or
;
3960 /* Scan an attribute value, possibly a conditional, and record what actions
3961 will be required to do any conditional tests in it.
3964 `must_extract' if we need to extract the insn operands
3965 `must_constrain' if we must compute `which_alternative'
3966 `address_used' if an address expression was used
3967 `length_used' if an (eq_attr "length" ...) was used
3971 walk_attr_value (rtx exp
)
3980 code
= GET_CODE (exp
);
3984 if (! ATTR_IND_SIMPLIFIED_P (exp
))
3985 /* Since this is an arbitrary expression, it can look at anything.
3986 However, constant expressions do not depend on any particular
3988 must_extract
= must_constrain
= 1;
3997 must_extract
= must_constrain
= 1;
4001 if (XSTR (exp
, 0) == alternative_name
)
4002 must_extract
= must_constrain
= 1;
4003 else if (strcmp_check (XSTR (exp
, 0), length_str
) == 0)
4023 for (i
= 0, fmt
= GET_RTX_FORMAT (code
); i
< GET_RTX_LENGTH (code
); i
++)
4028 walk_attr_value (XEXP (exp
, i
));
4032 if (XVEC (exp
, i
) != NULL
)
4033 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4034 walk_attr_value (XVECEXP (exp
, i
, j
));
4039 /* Write out a function to obtain the attribute for a given INSN. */
4042 write_attr_get (FILE *outf
, struct attr_desc
*attr
)
4044 struct attr_value
*av
, *common_av
;
4047 /* Find the most used attribute value. Handle that as the `default' of the
4048 switch we will generate. */
4049 common_av
= find_most_used (attr
);
4051 /* Write out start of function, then all values with explicit `case' lines,
4052 then a `default', then the value with the most uses. */
4053 if (attr
->enum_name
)
4054 fprintf (outf
, "enum %s\n", attr
->enum_name
);
4055 else if (!attr
->is_numeric
)
4056 fprintf (outf
, "enum attr_%s\n", attr
->name
);
4058 fprintf (outf
, "int\n");
4060 /* If the attribute name starts with a star, the remainder is the name of
4061 the subroutine to use, instead of `get_attr_...'. */
4062 if (attr
->name
[0] == '*')
4063 fprintf (outf
, "%s (rtx_insn *insn ATTRIBUTE_UNUSED)\n", &attr
->name
[1]);
4064 else if (attr
->is_const
== 0)
4065 fprintf (outf
, "get_attr_%s (rtx_insn *insn ATTRIBUTE_UNUSED)\n", attr
->name
);
4068 fprintf (outf
, "get_attr_%s (void)\n", attr
->name
);
4069 fprintf (outf
, "{\n");
4071 for (av
= attr
->first_value
; av
; av
= av
->next
)
4072 if (av
->num_insns
== 1)
4073 write_attr_set (outf
, attr
, 2, av
->value
, "return", ";",
4074 true_rtx
, av
->first_insn
->def
->insn_code
,
4075 av
->first_insn
->def
->insn_index
, 0);
4076 else if (av
->num_insns
!= 0)
4077 write_attr_set (outf
, attr
, 2, av
->value
, "return", ";",
4078 true_rtx
, -2, 0, 0);
4080 fprintf (outf
, "}\n\n");
4084 fprintf (outf
, "{\n");
4086 /* Find attributes that are worth caching in the conditions. */
4087 cached_attr_count
= 0;
4088 attrs_seen_more_than_once
= 0;
4089 for (av
= attr
->first_value
; av
; av
= av
->next
)
4091 attrs_seen_once
= 0;
4092 find_attrs_to_cache (av
->value
, true);
4094 /* Remove those that aren't worth caching from the array. */
4095 for (i
= 0, j
= 0; i
< cached_attr_count
; i
++)
4096 if ((attrs_seen_more_than_once
& (1U << i
)) != 0)
4098 const char *name
= cached_attrs
[i
];
4099 struct attr_desc
*cached_attr
;
4101 cached_attrs
[j
] = name
;
4102 cached_attr
= find_attr (&name
, 0);
4103 gcc_assert (cached_attr
&& cached_attr
->is_const
== 0);
4104 if (cached_attr
->enum_name
)
4105 fprintf (outf
, " enum %s", cached_attr
->enum_name
);
4106 else if (!cached_attr
->is_numeric
)
4107 fprintf (outf
, " enum attr_%s", cached_attr
->name
);
4109 fprintf (outf
, " int");
4110 fprintf (outf
, " cached_%s ATTRIBUTE_UNUSED;\n", name
);
4113 cached_attr_count
= j
;
4114 if (cached_attr_count
)
4115 fprintf (outf
, "\n");
4117 fprintf (outf
, " switch (recog_memoized (insn))\n");
4118 fprintf (outf
, " {\n");
4120 for (av
= attr
->first_value
; av
; av
= av
->next
)
4121 if (av
!= common_av
)
4122 write_attr_case (outf
, attr
, av
, 1, "return", ";", 4, true_rtx
);
4124 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4125 fprintf (outf
, " }\n}\n\n");
4126 cached_attr_count
= 0;
4129 /* Given an AND tree of known true terms (because we are inside an `if' with
4130 that as the condition or are in an `else' clause) and an expression,
4131 replace any known true terms with TRUE. Use `simplify_and_tree' to do
4132 the bulk of the work. */
4135 eliminate_known_true (rtx known_true
, rtx exp
, int insn_code
, int insn_index
)
4139 known_true
= SIMPLIFY_TEST_EXP (known_true
, insn_code
, insn_index
);
4141 if (GET_CODE (known_true
) == AND
)
4143 exp
= eliminate_known_true (XEXP (known_true
, 0), exp
,
4144 insn_code
, insn_index
);
4145 exp
= eliminate_known_true (XEXP (known_true
, 1), exp
,
4146 insn_code
, insn_index
);
4151 exp
= simplify_and_tree (exp
, &term
, insn_code
, insn_index
);
4157 /* Write out a series of tests and assignment statements to perform tests and
4158 sets of an attribute value. We are passed an indentation amount and prefix
4159 and suffix strings to write around each attribute value (e.g., "return"
4163 write_attr_set (FILE *outf
, struct attr_desc
*attr
, int indent
, rtx value
,
4164 const char *prefix
, const char *suffix
, rtx known_true
,
4165 int insn_code
, int insn_index
, unsigned int attrs_cached
)
4167 if (GET_CODE (value
) == COND
)
4169 /* Assume the default value will be the default of the COND unless we
4170 find an always true expression. */
4171 rtx default_val
= XEXP (value
, 1);
4172 rtx our_known_true
= known_true
;
4177 if (cached_attr_count
)
4179 attrs_seen_once
= 0;
4180 attrs_seen_more_than_once
= 0;
4181 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4182 find_attrs_to_cache (XVECEXP (value
, 0, i
), false);
4183 attrs_to_cache
|= attrs_seen_more_than_once
;
4186 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4191 /* Reset our_known_true after some time to not accumulate
4192 too much cruft (slowing down genattrtab). */
4194 our_known_true
= known_true
;
4195 testexp
= eliminate_known_true (our_known_true
,
4196 XVECEXP (value
, 0, i
),
4197 insn_code
, insn_index
);
4198 newexp
= attr_rtx (NOT
, testexp
);
4199 newexp
= insert_right_side (AND
, our_known_true
, newexp
,
4200 insn_code
, insn_index
);
4202 /* If the test expression is always true or if the next `known_true'
4203 expression is always false, this is the last case, so break
4204 out and let this value be the `else' case. */
4205 if (testexp
== true_rtx
|| newexp
== false_rtx
)
4207 default_val
= XVECEXP (value
, 0, i
+ 1);
4211 /* Compute the expression to pass to our recursive call as being
4213 inner_true
= insert_right_side (AND
, our_known_true
,
4214 testexp
, insn_code
, insn_index
);
4216 /* If this is always false, skip it. */
4217 if (inner_true
== false_rtx
)
4220 attrs_cached_inside
= attrs_cached
;
4221 attrs_cached_after
= attrs_cached
;
4222 write_indent (outf
, indent
);
4223 fprintf (outf
, "%sif ", first_if
? "" : "else ");
4225 write_test_expr (outf
, testexp
, attrs_cached
,
4226 (FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
));
4227 attrs_cached
= attrs_cached_after
;
4228 fprintf (outf
, "\n");
4229 write_indent (outf
, indent
+ 2);
4230 fprintf (outf
, "{\n");
4232 write_attr_set (outf
, attr
, indent
+ 4,
4233 XVECEXP (value
, 0, i
+ 1), prefix
, suffix
,
4234 inner_true
, insn_code
, insn_index
,
4235 attrs_cached_inside
);
4236 write_indent (outf
, indent
+ 2);
4237 fprintf (outf
, "}\n");
4238 our_known_true
= newexp
;
4243 write_indent (outf
, indent
);
4244 fprintf (outf
, "else\n");
4245 write_indent (outf
, indent
+ 2);
4246 fprintf (outf
, "{\n");
4249 write_attr_set (outf
, attr
, first_if
? indent
: indent
+ 4, default_val
,
4250 prefix
, suffix
, our_known_true
, insn_code
, insn_index
,
4255 write_indent (outf
, indent
+ 2);
4256 fprintf (outf
, "}\n");
4261 write_indent (outf
, indent
);
4262 fprintf (outf
, "%s ", prefix
);
4263 write_attr_value (outf
, attr
, value
);
4264 fprintf (outf
, "%s\n", suffix
);
4268 /* Write a series of case statements for every instruction in list IE.
4269 INDENT is the amount of indentation to write before each case. */
4272 write_insn_cases (FILE *outf
, struct insn_ent
*ie
, int indent
)
4274 for (; ie
!= 0; ie
= ie
->next
)
4275 if (ie
->def
->insn_code
!= -1)
4277 write_indent (outf
, indent
);
4278 if (GET_CODE (ie
->def
->def
) == DEFINE_PEEPHOLE
)
4279 fprintf (outf
, "case %d: /* define_peephole, %s:%d */\n",
4280 ie
->def
->insn_code
, ie
->def
->loc
.filename
,
4281 ie
->def
->loc
.lineno
);
4283 fprintf (outf
, "case %d: /* %s */\n",
4284 ie
->def
->insn_code
, XSTR (ie
->def
->def
, 0));
4288 /* Write out the computation for one attribute value. */
4291 write_attr_case (FILE *outf
, struct attr_desc
*attr
, struct attr_value
*av
,
4292 int write_case_lines
, const char *prefix
, const char *suffix
,
4293 int indent
, rtx known_true
)
4295 if (av
->num_insns
== 0)
4298 if (av
->has_asm_insn
)
4300 write_indent (outf
, indent
);
4301 fprintf (outf
, "case -1:\n");
4302 write_indent (outf
, indent
+ 2);
4303 fprintf (outf
, "if (GET_CODE (PATTERN (insn)) != ASM_INPUT\n");
4304 write_indent (outf
, indent
+ 2);
4305 fprintf (outf
, " && asm_noperands (PATTERN (insn)) < 0)\n");
4306 write_indent (outf
, indent
+ 2);
4307 fprintf (outf
, " fatal_insn_not_found (insn);\n");
4308 write_indent (outf
, indent
+ 2);
4309 fprintf (outf
, "/* FALLTHRU */\n");
4312 if (write_case_lines
)
4313 write_insn_cases (outf
, av
->first_insn
, indent
);
4316 write_indent (outf
, indent
);
4317 fprintf (outf
, "default:\n");
4320 /* See what we have to do to output this value. */
4321 must_extract
= must_constrain
= address_used
= 0;
4322 walk_attr_value (av
->value
);
4326 write_indent (outf
, indent
+ 2);
4327 fprintf (outf
, "extract_constrain_insn_cached (insn);\n");
4329 else if (must_extract
)
4331 write_indent (outf
, indent
+ 2);
4332 fprintf (outf
, "extract_insn_cached (insn);\n");
4336 if (av
->num_insns
== 1)
4337 write_attr_set (outf
, attr
, indent
+ 2, av
->value
, prefix
, suffix
,
4338 known_true
, av
->first_insn
->def
->insn_code
,
4339 av
->first_insn
->def
->insn_index
, 0);
4341 write_attr_set (outf
, attr
, indent
+ 2, av
->value
, prefix
, suffix
,
4342 known_true
, -2, 0, 0);
4344 if (strncmp (prefix
, "return", 6))
4346 write_indent (outf
, indent
+ 2);
4347 fprintf (outf
, "break;\n");
4349 fprintf (outf
, "\n");
4352 /* Utilities to write in various forms. */
4355 write_attr_valueq (FILE *outf
, struct attr_desc
*attr
, const char *s
)
4357 if (attr
->is_numeric
)
4361 fprintf (outf
, "%d", num
);
4363 if (num
> 9 || num
< 0)
4364 fprintf (outf
, " /* %#x */", num
);
4368 write_upcase (outf
, attr
->enum_name
? attr
->enum_name
: attr
->name
);
4369 fprintf (outf
, "_");
4370 write_upcase (outf
, s
);
4375 write_attr_value (FILE *outf
, struct attr_desc
*attr
, rtx value
)
4379 switch (GET_CODE (value
))
4382 write_attr_valueq (outf
, attr
, XSTR (value
, 0));
4386 fprintf (outf
, HOST_WIDE_INT_PRINT_DEC
, INTVAL (value
));
4390 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (value
, 0));
4395 struct attr_desc
*attr2
= find_attr (&XSTR (value
, 0), 0);
4396 if (attr
->enum_name
)
4397 fprintf (outf
, "(enum %s)", attr
->enum_name
);
4398 else if (!attr
->is_numeric
)
4399 fprintf (outf
, "(enum attr_%s)", attr
->name
);
4400 else if (!attr2
->is_numeric
)
4401 fprintf (outf
, "(int)");
4403 fprintf (outf
, "get_attr_%s (%s)", attr2
->name
,
4404 (attr2
->is_const
? "" : "insn"));
4425 write_attr_value (outf
, attr
, XEXP (value
, 0));
4429 write_attr_value (outf
, attr
, XEXP (value
, 1));
4433 fprintf (outf
, "(");
4434 write_test_expr (outf
, XEXP (value
, 0), 0, 0, false);
4435 fprintf (outf
, " ? ");
4436 write_attr_value (outf
, attr
, XEXP (value
, 1));
4437 fprintf (outf
, " : ");
4438 write_attr_value (outf
, attr
, XEXP (value
, 2));
4439 fprintf (outf
, ")");
4448 write_upcase (FILE *outf
, const char *str
)
4452 /* The argument of TOUPPER should not have side effects. */
4453 fputc (TOUPPER (*str
), outf
);
4459 write_indent (FILE *outf
, int indent
)
4461 for (; indent
> 8; indent
-= 8)
4462 fprintf (outf
, "\t");
4464 for (; indent
; indent
--)
4465 fprintf (outf
, " ");
4468 /* If the target does not have annul-true or annul-false delay slots, this
4469 function will create a dummy eligible_for function on OUTF which always
4470 returns false. KIND will be annul_true or annul_false. */
4473 write_dummy_eligible_delay (FILE *outf
, const char *kind
)
4475 /* Write function prelude. */
4477 fprintf (outf
, "int\n");
4478 fprintf (outf
, "eligible_for_%s (rtx_insn *delay_insn ATTRIBUTE_UNUSED,\n"
4479 " int slot ATTRIBUTE_UNUSED,\n"
4480 " rtx_insn *candidate_insn ATTRIBUTE_UNUSED,\n"
4481 " int flags ATTRIBUTE_UNUSED)\n",
4483 fprintf (outf
, "{\n");
4484 fprintf (outf
, " return 0;\n");
4485 fprintf (outf
, "}\n\n");
4488 /* Write a subroutine that is given an insn that requires a delay slot, a
4489 delay slot ordinal, and a candidate insn. It returns nonzero if the
4490 candidate can be placed in the specified delay slot of the insn.
4492 We can write as many as three subroutines. `eligible_for_delay'
4493 handles normal delay slots, `eligible_for_annul_true' indicates that
4494 the specified insn can be annulled if the branch is true, and likewise
4495 for `eligible_for_annul_false'.
4497 KIND is a string distinguishing these three cases ("delay", "annul_true",
4498 or "annul_false"). */
4501 write_eligible_delay (FILE *outf
, const char *kind
)
4503 struct delay_desc
*delay
;
4507 struct attr_desc
*attr
;
4508 struct attr_value
*av
, *common_av
;
4511 /* Compute the maximum number of delay slots required. We use the delay
4512 ordinal times this number plus one, plus the slot number as an index into
4513 the appropriate predicate to test. */
4515 for (delay
= delays
, max_slots
= 0; delay
; delay
= delay
->next
)
4516 if (XVECLEN (delay
->def
, 1) / 3 > max_slots
)
4517 max_slots
= XVECLEN (delay
->def
, 1) / 3;
4519 /* Write function prelude. */
4521 fprintf (outf
, "int\n");
4522 fprintf (outf
, "eligible_for_%s (rtx_insn *delay_insn ATTRIBUTE_UNUSED, int slot, \n"
4523 " rtx_insn *candidate_insn, int flags ATTRIBUTE_UNUSED)\n",
4525 fprintf (outf
, "{\n");
4526 fprintf (outf
, " rtx_insn *insn ATTRIBUTE_UNUSED;\n");
4527 fprintf (outf
, "\n");
4528 fprintf (outf
, " if (num_delay_slots (delay_insn) == 0)\n");
4529 fprintf (outf
, " return 0;");
4530 fprintf (outf
, "\n");
4531 fprintf (outf
, " gcc_assert (slot < %d);\n", max_slots
);
4532 fprintf (outf
, "\n");
4533 /* Allow dbr_schedule to pass labels, etc. This can happen if try_split
4534 converts a compound instruction into a loop. */
4535 fprintf (outf
, " if (!INSN_P (candidate_insn))\n");
4536 fprintf (outf
, " return 0;\n");
4537 fprintf (outf
, "\n");
4539 /* If more than one delay type, find out which type the delay insn is. */
4543 attr
= find_attr (&delay_type_str
, 0);
4545 common_av
= find_most_used (attr
);
4547 fprintf (outf
, " insn = delay_insn;\n");
4548 fprintf (outf
, " switch (recog_memoized (insn))\n");
4549 fprintf (outf
, " {\n");
4551 sprintf (str
, " * %d;\n break;", max_slots
);
4552 for (av
= attr
->first_value
; av
; av
= av
->next
)
4553 if (av
!= common_av
)
4554 write_attr_case (outf
, attr
, av
, 1, "slot +=", str
, 4, true_rtx
);
4556 write_attr_case (outf
, attr
, common_av
, 0, "slot +=", str
, 4, true_rtx
);
4557 fprintf (outf
, " }\n\n");
4559 /* Ensure matched. Otherwise, shouldn't have been called. */
4560 fprintf (outf
, " gcc_assert (slot >= %d);\n\n", max_slots
);
4563 /* If just one type of delay slot, write simple switch. */
4564 if (num_delays
== 1 && max_slots
== 1)
4566 fprintf (outf
, " insn = candidate_insn;\n");
4567 fprintf (outf
, " switch (recog_memoized (insn))\n");
4568 fprintf (outf
, " {\n");
4570 attr
= find_attr (&delay_1_0_str
, 0);
4572 common_av
= find_most_used (attr
);
4574 for (av
= attr
->first_value
; av
; av
= av
->next
)
4575 if (av
!= common_av
)
4576 write_attr_case (outf
, attr
, av
, 1, "return", ";", 4, true_rtx
);
4578 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4579 fprintf (outf
, " }\n");
4584 /* Write a nested CASE. The first indicates which condition we need to
4585 test, and the inner CASE tests the condition. */
4586 fprintf (outf
, " insn = candidate_insn;\n");
4587 fprintf (outf
, " switch (slot)\n");
4588 fprintf (outf
, " {\n");
4590 for (delay
= delays
; delay
; delay
= delay
->next
)
4591 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
4593 fprintf (outf
, " case %d:\n",
4594 (i
/ 3) + (num_delays
== 1 ? 0 : delay
->num
* max_slots
));
4595 fprintf (outf
, " switch (recog_memoized (insn))\n");
4596 fprintf (outf
, "\t{\n");
4598 sprintf (str
, "*%s_%d_%d", kind
, delay
->num
, i
/ 3);
4600 attr
= find_attr (&pstr
, 0);
4602 common_av
= find_most_used (attr
);
4604 for (av
= attr
->first_value
; av
; av
= av
->next
)
4605 if (av
!= common_av
)
4606 write_attr_case (outf
, attr
, av
, 1, "return", ";", 8, true_rtx
);
4608 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 8, true_rtx
);
4609 fprintf (outf
, " }\n");
4612 fprintf (outf
, " default:\n");
4613 fprintf (outf
, " gcc_unreachable ();\n");
4614 fprintf (outf
, " }\n");
4617 fprintf (outf
, "}\n\n");
4620 /* This page contains miscellaneous utility routines. */
4622 /* Given a pointer to a (char *), return a malloc'ed string containing the
4623 next comma-separated element. Advance the pointer to after the string
4624 scanned, or the end-of-string. Return NULL if at end of string. */
4627 next_comma_elt (const char **pstr
)
4631 start
= scan_comma_elt (pstr
);
4636 return attr_string (start
, *pstr
- start
);
4639 /* Return a `struct attr_desc' pointer for a given named attribute. If CREATE
4640 is nonzero, build a new attribute, if one does not exist. *NAME_P is
4641 replaced by a pointer to a canonical copy of the string. */
4643 static struct attr_desc
*
4644 find_attr (const char **name_p
, int create
)
4646 struct attr_desc
*attr
;
4648 const char *name
= *name_p
;
4650 /* Before we resort to using `strcmp', see if the string address matches
4651 anywhere. In most cases, it should have been canonicalized to do so. */
4652 if (name
== alternative_name
)
4655 index
= name
[0] & (MAX_ATTRS_INDEX
- 1);
4656 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
4657 if (name
== attr
->name
)
4660 /* Otherwise, do it the slow way. */
4661 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
4662 if (name
[0] == attr
->name
[0] && ! strcmp (name
, attr
->name
))
4664 *name_p
= attr
->name
;
4671 attr
= oballoc (struct attr_desc
);
4672 attr
->name
= DEF_ATTR_STRING (name
);
4673 attr
->enum_name
= 0;
4674 attr
->first_value
= attr
->default_val
= NULL
;
4675 attr
->is_numeric
= attr
->is_const
= attr
->is_special
= 0;
4676 attr
->next
= attrs
[index
];
4677 attrs
[index
] = attr
;
4679 *name_p
= attr
->name
;
4684 /* Create internal attribute with the given default value. */
4687 make_internal_attr (const char *name
, rtx value
, int special
)
4689 struct attr_desc
*attr
;
4691 attr
= find_attr (&name
, 1);
4692 gcc_assert (!attr
->default_val
);
4694 attr
->is_numeric
= 1;
4696 attr
->is_special
= (special
& ATTR_SPECIAL
) != 0;
4697 attr
->default_val
= get_attr_value (file_location ("<internal>", 0, 0),
4701 /* Find the most used value of an attribute. */
4703 static struct attr_value
*
4704 find_most_used (struct attr_desc
*attr
)
4706 struct attr_value
*av
;
4707 struct attr_value
*most_used
;
4713 for (av
= attr
->first_value
; av
; av
= av
->next
)
4714 if (av
->num_insns
> nuses
)
4715 nuses
= av
->num_insns
, most_used
= av
;
4720 /* Return (attr_value "n") */
4723 make_numeric_value (int n
)
4725 static rtx int_values
[20];
4729 gcc_assert (n
>= 0);
4731 if (n
< 20 && int_values
[n
])
4732 return int_values
[n
];
4734 p
= attr_printf (MAX_DIGITS
, "%d", n
);
4735 exp
= attr_rtx (CONST_STRING
, p
);
4738 int_values
[n
] = exp
;
4744 copy_rtx_unchanging (rtx orig
)
4746 if (ATTR_IND_SIMPLIFIED_P (orig
) || ATTR_CURR_SIMPLIFIED_P (orig
))
4749 ATTR_CURR_SIMPLIFIED_P (orig
) = 1;
4753 /* Determine if an insn has a constant number of delay slots, i.e., the
4754 number of delay slots is not a function of the length of the insn. */
4757 write_const_num_delay_slots (FILE *outf
)
4759 struct attr_desc
*attr
= find_attr (&num_delay_slots_str
, 0);
4760 struct attr_value
*av
;
4764 fprintf (outf
, "int\nconst_num_delay_slots (rtx_insn *insn)\n");
4765 fprintf (outf
, "{\n");
4766 fprintf (outf
, " switch (recog_memoized (insn))\n");
4767 fprintf (outf
, " {\n");
4769 for (av
= attr
->first_value
; av
; av
= av
->next
)
4772 walk_attr_value (av
->value
);
4774 write_insn_cases (outf
, av
->first_insn
, 4);
4777 fprintf (outf
, " default:\n");
4778 fprintf (outf
, " return 1;\n");
4779 fprintf (outf
, " }\n}\n\n");
4783 /* Synthetic attributes used by insn-automata.c and the scheduler.
4784 These are primarily concerned with (define_insn_reservation)
4789 struct insn_reserv
*next
;
4792 int default_latency
;
4795 /* Sequence number of this insn. */
4798 /* Whether a (define_bypass) construct names this insn in its
4803 static struct insn_reserv
*all_insn_reservs
= 0;
4804 static struct insn_reserv
**last_insn_reserv_p
= &all_insn_reservs
;
4805 static size_t n_insn_reservs
;
4807 /* Store information from a DEFINE_INSN_RESERVATION for future
4808 attribute generation. */
4810 gen_insn_reserv (md_rtx_info
*info
)
4812 struct insn_reserv
*decl
= oballoc (struct insn_reserv
);
4813 rtx def
= info
->def
;
4815 struct attr_desc attr
= { };
4817 attr
.name
= DEF_ATTR_STRING (XSTR (def
, 0));
4818 attr
.loc
= info
->loc
;
4820 decl
->name
= DEF_ATTR_STRING (XSTR (def
, 0));
4821 decl
->default_latency
= XINT (def
, 1);
4822 decl
->condexp
= check_attr_test (info
->loc
, XEXP (def
, 2), &attr
);
4823 decl
->insn_num
= n_insn_reservs
;
4824 decl
->bypassed
= false;
4827 *last_insn_reserv_p
= decl
;
4828 last_insn_reserv_p
= &decl
->next
;
4832 /* Store information from a DEFINE_BYPASS for future attribute
4833 generation. The only thing we care about is the list of output
4834 insns, which will later be used to tag reservation structures with
4835 a 'bypassed' bit. */
4839 struct bypass_list
*next
;
4840 const char *pattern
;
4843 static struct bypass_list
*all_bypasses
;
4844 static size_t n_bypasses
;
4845 static size_t n_bypassed
;
4848 gen_bypass_1 (const char *s
, size_t len
)
4850 struct bypass_list
*b
;
4855 s
= attr_string (s
, len
);
4856 for (b
= all_bypasses
; b
; b
= b
->next
)
4857 if (s
== b
->pattern
)
4858 return; /* already got that one */
4860 b
= oballoc (struct bypass_list
);
4862 b
->next
= all_bypasses
;
4868 gen_bypass (md_rtx_info
*info
)
4870 const char *p
, *base
;
4872 rtx def
= info
->def
;
4873 for (p
= base
= XSTR (def
, 1); *p
; p
++)
4876 gen_bypass_1 (base
, p
- base
);
4879 while (ISSPACE (*p
));
4882 gen_bypass_1 (base
, p
- base
);
4885 /* Find and mark all of the bypassed insns. */
4887 process_bypasses (void)
4889 struct bypass_list
*b
;
4890 struct insn_reserv
*r
;
4894 /* The reservation list is likely to be much longer than the bypass
4896 for (r
= all_insn_reservs
; r
; r
= r
->next
)
4897 for (b
= all_bypasses
; b
; b
= b
->next
)
4898 if (fnmatch (b
->pattern
, r
->name
, 0) == 0)
4906 /* Check that attribute NAME is used in define_insn_reservation condition
4907 EXP. Return true if it is. */
4909 check_tune_attr (const char *name
, rtx exp
)
4911 switch (GET_CODE (exp
))
4914 if (check_tune_attr (name
, XEXP (exp
, 0)))
4916 return check_tune_attr (name
, XEXP (exp
, 1));
4919 return (check_tune_attr (name
, XEXP (exp
, 0))
4920 && check_tune_attr (name
, XEXP (exp
, 1)));
4923 return XSTR (exp
, 0) == name
;
4930 /* Try to find a const attribute (usually cpu or tune) that is used
4931 in all define_insn_reservation conditions. */
4932 static struct attr_desc
*
4933 find_tune_attr (rtx exp
)
4935 struct attr_desc
*attr
;
4937 switch (GET_CODE (exp
))
4941 attr
= find_tune_attr (XEXP (exp
, 0));
4944 return find_tune_attr (XEXP (exp
, 1));
4947 if (XSTR (exp
, 0) == alternative_name
)
4950 attr
= find_attr (&XSTR (exp
, 0), 0);
4953 if (attr
->is_const
&& !attr
->is_special
)
4955 struct insn_reserv
*decl
;
4957 for (decl
= all_insn_reservs
; decl
; decl
= decl
->next
)
4958 if (! check_tune_attr (attr
->name
, decl
->condexp
))
4969 /* Create all of the attributes that describe automaton properties.
4970 Write the DFA and latency function prototypes to the files that
4971 need to have them, and write the init_sched_attrs(). */
4974 make_automaton_attrs (void)
4977 struct insn_reserv
*decl
;
4978 rtx code_exp
, lats_exp
, byps_exp
;
4979 struct attr_desc
*tune_attr
;
4981 if (n_insn_reservs
== 0)
4984 tune_attr
= find_tune_attr (all_insn_reservs
->condexp
);
4985 if (tune_attr
!= NULL
)
4987 rtx
*condexps
= XNEWVEC (rtx
, n_insn_reservs
* 3);
4988 struct attr_value
*val
;
4991 gcc_assert (tune_attr
->is_const
4992 && !tune_attr
->is_special
4993 && !tune_attr
->is_numeric
);
4995 /* Write the prototypes for all DFA functions. */
4996 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
4998 if (val
== tune_attr
->default_val
)
5000 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
5002 "extern int internal_dfa_insn_code_%s (rtx_insn *);\n",
5003 XSTR (val
->value
, 0));
5005 fprintf (dfa_file
, "\n");
5007 /* Write the prototypes for all latency functions. */
5008 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
5010 if (val
== tune_attr
->default_val
)
5012 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
5013 fprintf (latency_file
,
5014 "extern int insn_default_latency_%s (rtx_insn *);\n",
5015 XSTR (val
->value
, 0));
5017 fprintf (latency_file
, "\n");
5019 /* Write the prototypes for all automaton functions. */
5020 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
5022 if (val
== tune_attr
->default_val
)
5024 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
5026 "extern int internal_dfa_insn_code_%s (rtx_insn *);\n"
5027 "extern int insn_default_latency_%s (rtx_insn *);\n",
5028 XSTR (val
->value
, 0), XSTR (val
->value
, 0));
5030 fprintf (attr_file
, "\n");
5031 fprintf (attr_file
, "int (*internal_dfa_insn_code) (rtx_insn *);\n");
5032 fprintf (attr_file
, "int (*insn_default_latency) (rtx_insn *);\n");
5033 fprintf (attr_file
, "\n");
5034 fprintf (attr_file
, "void\n");
5035 fprintf (attr_file
, "init_sched_attrs (void)\n");
5036 fprintf (attr_file
, "{\n");
5038 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
5042 rtx test
= attr_eq (tune_attr
->name
, XSTR (val
->value
, 0));
5044 if (val
== tune_attr
->default_val
)
5046 for (decl
= all_insn_reservs
, i
= 0;
5052 = simplify_and_tree (decl
->condexp
, &ctest
, -2, 0);
5053 if (condexp
== false_rtx
)
5055 if (condexp
== true_rtx
)
5057 condexps
[i
] = condexp
;
5058 condexps
[i
+ 1] = make_numeric_value (decl
->insn_num
);
5059 condexps
[i
+ 2] = make_numeric_value (decl
->default_latency
);
5063 code_exp
= rtx_alloc (COND
);
5064 lats_exp
= rtx_alloc (COND
);
5067 XVEC (code_exp
, 0) = rtvec_alloc (j
);
5068 XVEC (lats_exp
, 0) = rtvec_alloc (j
);
5072 XEXP (code_exp
, 1) = make_numeric_value (decl
->insn_num
);
5073 XEXP (lats_exp
, 1) = make_numeric_value (decl
->default_latency
);
5077 XEXP (code_exp
, 1) = make_numeric_value (n_insn_reservs
+ 1);
5078 XEXP (lats_exp
, 1) = make_numeric_value (0);
5085 XVECEXP (code_exp
, 0, j
) = condexps
[i
];
5086 XVECEXP (lats_exp
, 0, j
) = condexps
[i
];
5088 XVECEXP (code_exp
, 0, j
+ 1) = condexps
[i
+ 1];
5089 XVECEXP (lats_exp
, 0, j
+ 1) = condexps
[i
+ 2];
5092 name
= XNEWVEC (char,
5093 sizeof ("*internal_dfa_insn_code_")
5094 + strlen (XSTR (val
->value
, 0)));
5095 strcpy (name
, "*internal_dfa_insn_code_");
5096 strcat (name
, XSTR (val
->value
, 0));
5097 make_internal_attr (name
, code_exp
, ATTR_NONE
);
5098 strcpy (name
, "*insn_default_latency_");
5099 strcat (name
, XSTR (val
->value
, 0));
5100 make_internal_attr (name
, lats_exp
, ATTR_NONE
);
5105 fprintf (attr_file
, " if (");
5109 fprintf (attr_file
, " else if (");
5110 write_test_expr (attr_file
, test
, 0, 0);
5111 fprintf (attr_file
, ")\n");
5112 fprintf (attr_file
, " {\n");
5113 fprintf (attr_file
, " internal_dfa_insn_code\n");
5114 fprintf (attr_file
, " = internal_dfa_insn_code_%s;\n",
5115 XSTR (val
->value
, 0));
5116 fprintf (attr_file
, " insn_default_latency\n");
5117 fprintf (attr_file
, " = insn_default_latency_%s;\n",
5118 XSTR (val
->value
, 0));
5119 fprintf (attr_file
, " }\n");
5122 fprintf (attr_file
, " else\n");
5123 fprintf (attr_file
, " gcc_unreachable ();\n");
5124 fprintf (attr_file
, "}\n");
5125 fprintf (attr_file
, "\n");
5127 XDELETEVEC (condexps
);
5131 code_exp
= rtx_alloc (COND
);
5132 lats_exp
= rtx_alloc (COND
);
5134 XVEC (code_exp
, 0) = rtvec_alloc (n_insn_reservs
* 2);
5135 XVEC (lats_exp
, 0) = rtvec_alloc (n_insn_reservs
* 2);
5137 XEXP (code_exp
, 1) = make_numeric_value (n_insn_reservs
+ 1);
5138 XEXP (lats_exp
, 1) = make_numeric_value (0);
5140 for (decl
= all_insn_reservs
, i
= 0;
5142 decl
= decl
->next
, i
+= 2)
5144 XVECEXP (code_exp
, 0, i
) = decl
->condexp
;
5145 XVECEXP (lats_exp
, 0, i
) = decl
->condexp
;
5147 XVECEXP (code_exp
, 0, i
+1) = make_numeric_value (decl
->insn_num
);
5148 XVECEXP (lats_exp
, 0, i
+1)
5149 = make_numeric_value (decl
->default_latency
);
5151 make_internal_attr ("*internal_dfa_insn_code", code_exp
, ATTR_NONE
);
5152 make_internal_attr ("*insn_default_latency", lats_exp
, ATTR_NONE
);
5155 if (n_bypasses
== 0)
5156 byps_exp
= make_numeric_value (0);
5159 process_bypasses ();
5161 byps_exp
= rtx_alloc (COND
);
5162 XVEC (byps_exp
, 0) = rtvec_alloc (n_bypassed
* 2);
5163 XEXP (byps_exp
, 1) = make_numeric_value (0);
5164 for (decl
= all_insn_reservs
, i
= 0;
5169 XVECEXP (byps_exp
, 0, i
) = decl
->condexp
;
5170 XVECEXP (byps_exp
, 0, i
+1) = make_numeric_value (1);
5175 make_internal_attr ("*bypass_p", byps_exp
, ATTR_NONE
);
5179 write_header (FILE *outf
)
5181 fprintf (outf
, "/* Generated automatically by the program `genattrtab'\n"
5182 " from the machine description file `md'. */\n\n");
5184 fprintf (outf
, "#define IN_TARGET_CODE 1\n");
5185 fprintf (outf
, "#include \"config.h\"\n");
5186 fprintf (outf
, "#include \"system.h\"\n");
5187 fprintf (outf
, "#include \"coretypes.h\"\n");
5188 fprintf (outf
, "#include \"backend.h\"\n");
5189 fprintf (outf
, "#include \"predict.h\"\n");
5190 fprintf (outf
, "#include \"tree.h\"\n");
5191 fprintf (outf
, "#include \"rtl.h\"\n");
5192 fprintf (outf
, "#include \"alias.h\"\n");
5193 fprintf (outf
, "#include \"options.h\"\n");
5194 fprintf (outf
, "#include \"varasm.h\"\n");
5195 fprintf (outf
, "#include \"stor-layout.h\"\n");
5196 fprintf (outf
, "#include \"calls.h\"\n");
5197 fprintf (outf
, "#include \"insn-attr.h\"\n");
5198 fprintf (outf
, "#include \"memmodel.h\"\n");
5199 fprintf (outf
, "#include \"tm_p.h\"\n");
5200 fprintf (outf
, "#include \"insn-config.h\"\n");
5201 fprintf (outf
, "#include \"recog.h\"\n");
5202 fprintf (outf
, "#include \"regs.h\"\n");
5203 fprintf (outf
, "#include \"real.h\"\n");
5204 fprintf (outf
, "#include \"output.h\"\n");
5205 fprintf (outf
, "#include \"toplev.h\"\n");
5206 fprintf (outf
, "#include \"flags.h\"\n");
5207 fprintf (outf
, "#include \"emit-rtl.h\"\n");
5208 fprintf (outf
, "\n");
5209 fprintf (outf
, "#define operands recog_data.operand\n\n");
5213 open_outfile (const char *file_name
)
5216 outf
= fopen (file_name
, "w");
5218 fatal ("cannot open file %s: %s", file_name
, xstrerror (errno
));
5219 write_header (outf
);
5224 handle_arg (const char *arg
)
5229 attr_file_name
= &arg
[2];
5232 dfa_file_name
= &arg
[2];
5235 latency_file_name
= &arg
[2];
5243 main (int argc
, const char **argv
)
5245 struct attr_desc
*attr
;
5246 struct insn_def
*id
;
5249 progname
= "genattrtab";
5251 if (!init_rtx_reader_args_cb (argc
, argv
, handle_arg
))
5252 return FATAL_EXIT_CODE
;
5254 attr_file
= open_outfile (attr_file_name
);
5255 dfa_file
= open_outfile (dfa_file_name
);
5256 latency_file
= open_outfile (latency_file_name
);
5258 obstack_init (hash_obstack
);
5259 obstack_init (temp_obstack
);
5261 /* Set up true and false rtx's */
5262 true_rtx
= rtx_alloc (CONST_INT
);
5263 XWINT (true_rtx
, 0) = 1;
5264 false_rtx
= rtx_alloc (CONST_INT
);
5265 XWINT (false_rtx
, 0) = 0;
5266 ATTR_IND_SIMPLIFIED_P (true_rtx
) = ATTR_IND_SIMPLIFIED_P (false_rtx
) = 1;
5267 ATTR_PERMANENT_P (true_rtx
) = ATTR_PERMANENT_P (false_rtx
) = 1;
5269 alternative_name
= DEF_ATTR_STRING ("alternative");
5270 length_str
= DEF_ATTR_STRING ("length");
5271 delay_type_str
= DEF_ATTR_STRING ("*delay_type");
5272 delay_1_0_str
= DEF_ATTR_STRING ("*delay_1_0");
5273 num_delay_slots_str
= DEF_ATTR_STRING ("*num_delay_slots");
5275 /* Read the machine description. */
5278 while (read_md_rtx (&info
))
5280 switch (GET_CODE (info
.def
))
5283 case DEFINE_PEEPHOLE
:
5284 case DEFINE_ASM_ATTRIBUTES
:
5289 case DEFINE_ENUM_ATTR
:
5297 case DEFINE_INSN_RESERVATION
:
5298 gen_insn_reserv (&info
);
5308 if (GET_CODE (info
.def
) != DEFINE_ASM_ATTRIBUTES
)
5309 insn_index_number
++;
5313 return FATAL_EXIT_CODE
;
5315 /* If we didn't have a DEFINE_ASM_ATTRIBUTES, make a null one. */
5316 if (! got_define_asm_attributes
)
5319 info
.def
= rtx_alloc (DEFINE_ASM_ATTRIBUTES
);
5320 XVEC (info
.def
, 0) = rtvec_alloc (0);
5321 info
.loc
= file_location ("<internal>", 0, 0);
5326 /* Expand DEFINE_DELAY information into new attribute. */
5329 /* Make `insn_alternatives'. */
5330 int num_insn_codes
= get_num_insn_codes ();
5331 insn_alternatives
= oballocvec (alternative_mask
, num_insn_codes
);
5332 for (id
= defs
; id
; id
= id
->next
)
5333 if (id
->insn_code
>= 0)
5334 insn_alternatives
[id
->insn_code
]
5335 = (((alternative_mask
) 1) << id
->num_alternatives
) - 1;
5337 /* Make `insn_n_alternatives'. */
5338 insn_n_alternatives
= oballocvec (int, num_insn_codes
);
5339 for (id
= defs
; id
; id
= id
->next
)
5340 if (id
->insn_code
>= 0)
5341 insn_n_alternatives
[id
->insn_code
] = id
->num_alternatives
;
5343 /* Construct extra attributes for automata. */
5344 make_automaton_attrs ();
5346 /* Prepare to write out attribute subroutines by checking everything stored
5347 away and building the attribute cases. */
5351 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5352 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5353 attr
->default_val
->value
5354 = check_attr_value (attr
->loc
, attr
->default_val
->value
, attr
);
5357 return FATAL_EXIT_CODE
;
5359 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5360 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5363 /* Construct extra attributes for `length'. */
5364 make_length_attrs ();
5366 /* Perform any possible optimizations to speed up compilation. */
5367 optimize_attrs (num_insn_codes
);
5369 /* Now write out all the `gen_attr_...' routines. Do these before the
5370 special routines so that they get defined before they are used. */
5372 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5373 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5377 #define IS_ATTR_GROUP(X) (!strncmp (attr->name, X, strlen (X)))
5378 if (IS_ATTR_GROUP ("*internal_dfa_insn_code"))
5380 else if (IS_ATTR_GROUP ("*insn_default_latency"))
5381 outf
= latency_file
;
5384 #undef IS_ATTR_GROUP
5386 if (! attr
->is_special
&& ! attr
->is_const
)
5387 write_attr_get (outf
, attr
);
5390 /* Write out delay eligibility information, if DEFINE_DELAY present.
5391 (The function to compute the number of delay slots will be written
5393 write_eligible_delay (attr_file
, "delay");
5394 if (have_annul_true
)
5395 write_eligible_delay (attr_file
, "annul_true");
5397 write_dummy_eligible_delay (attr_file
, "annul_true");
5398 if (have_annul_false
)
5399 write_eligible_delay (attr_file
, "annul_false");
5401 write_dummy_eligible_delay (attr_file
, "annul_false");
5403 /* Write out constant delay slot info. */
5404 write_const_num_delay_slots (attr_file
);
5406 write_length_unit_log (attr_file
);
5408 if (fclose (attr_file
) != 0)
5409 fatal ("cannot close file %s: %s", attr_file_name
, xstrerror (errno
));
5410 if (fclose (dfa_file
) != 0)
5411 fatal ("cannot close file %s: %s", dfa_file_name
, xstrerror (errno
));
5412 if (fclose (latency_file
) != 0)
5413 fatal ("cannot close file %s: %s", latency_file_name
, xstrerror (errno
));
5415 return SUCCESS_EXIT_CODE
;