1 /* Generate code from machine description to compute values of attributes.
2 Copyright (C) 1991-2018 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
, int*);
270 static int min_attr_value (rtx
, int*);
271 static int or_attr_value (rtx
, int*);
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);
1554 return make_numeric_value (max_attr_value (exp
, &unknown
));
1561 return make_numeric_value (min_attr_value (exp
, &unknown
));
1565 write_length_unit_log (FILE *outf
)
1567 struct attr_desc
*length_attr
= find_attr (&length_str
, 0);
1568 struct attr_value
*av
;
1569 struct insn_ent
*ie
;
1570 unsigned int length_unit_log
, length_or
;
1575 length_or
= or_attr_value (length_attr
->default_val
->value
, &unknown
);
1576 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
1577 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
1578 length_or
|= or_attr_value (av
->value
, &unknown
);
1581 if (length_attr
== NULL
|| unknown
)
1582 length_unit_log
= 0;
1585 length_or
= ~length_or
;
1586 for (length_unit_log
= 0; length_or
& 1; length_or
>>= 1)
1589 fprintf (outf
, "EXPORTED_CONST int length_unit_log = %u;\n", length_unit_log
);
1592 /* Compute approximate cost of the expression. Used to decide whether
1593 expression is cheap enough for inline. */
1595 attr_rtx_cost (rtx x
)
1601 code
= GET_CODE (x
);
1614 /* Alternatives don't result into function call. */
1615 if (!strcmp_check (XSTR (x
, 0), alternative_name
))
1622 const char *fmt
= GET_RTX_FORMAT (code
);
1623 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1629 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1630 cost
+= attr_rtx_cost (XVECEXP (x
, i
, j
));
1633 cost
+= attr_rtx_cost (XEXP (x
, i
));
1643 /* Take a COND expression and see if any of the conditions in it can be
1644 simplified. If any are known true or known false for the particular insn
1645 code, the COND can be further simplified.
1647 Also call ourselves on any COND operations that are values of this COND.
1649 We do not modify EXP; rather, we make and return a new rtx. */
1652 simplify_cond (rtx exp
, int insn_code
, int insn_index
)
1655 /* We store the desired contents here,
1656 then build a new expression if they don't match EXP. */
1657 rtx defval
= XEXP (exp
, 1);
1658 rtx new_defval
= XEXP (exp
, 1);
1659 int len
= XVECLEN (exp
, 0);
1660 rtx
*tests
= XNEWVEC (rtx
, len
);
1664 /* This lets us free all storage allocated below, if appropriate. */
1665 obstack_finish (rtl_obstack
);
1667 memcpy (tests
, XVEC (exp
, 0)->elem
, len
* sizeof (rtx
));
1669 /* See if default value needs simplification. */
1670 if (GET_CODE (defval
) == COND
)
1671 new_defval
= simplify_cond (defval
, insn_code
, insn_index
);
1673 /* Simplify the subexpressions, and see what tests we can get rid of. */
1675 for (i
= 0; i
< len
; i
+= 2)
1677 rtx newtest
, newval
;
1679 /* Simplify this test. */
1680 newtest
= simplify_test_exp_in_temp (tests
[i
], insn_code
, insn_index
);
1683 newval
= tests
[i
+ 1];
1684 /* See if this value may need simplification. */
1685 if (GET_CODE (newval
) == COND
)
1686 newval
= simplify_cond (newval
, insn_code
, insn_index
);
1688 /* Look for ways to delete or combine this test. */
1689 if (newtest
== true_rtx
)
1691 /* If test is true, make this value the default
1692 and discard this + any following tests. */
1694 defval
= tests
[i
+ 1];
1695 new_defval
= newval
;
1698 else if (newtest
== false_rtx
)
1700 /* If test is false, discard it and its value. */
1701 for (j
= i
; j
< len
- 2; j
++)
1702 tests
[j
] = tests
[j
+ 2];
1707 else if (i
> 0 && attr_equal_p (newval
, tests
[i
- 1]))
1709 /* If this value and the value for the prev test are the same,
1713 = insert_right_side (IOR
, tests
[i
- 2], newtest
,
1714 insn_code
, insn_index
);
1716 /* Delete this test/value. */
1717 for (j
= i
; j
< len
- 2; j
++)
1718 tests
[j
] = tests
[j
+ 2];
1724 tests
[i
+ 1] = newval
;
1727 /* If the last test in a COND has the same value
1728 as the default value, that test isn't needed. */
1730 while (len
> 0 && attr_equal_p (tests
[len
- 1], new_defval
))
1733 /* See if we changed anything. */
1734 if (len
!= XVECLEN (exp
, 0) || new_defval
!= XEXP (exp
, 1))
1737 for (i
= 0; i
< len
; i
++)
1738 if (! attr_equal_p (tests
[i
], XVECEXP (exp
, 0, i
)))
1746 if (GET_CODE (defval
) == COND
)
1747 ret
= simplify_cond (defval
, insn_code
, insn_index
);
1755 rtx newexp
= rtx_alloc (COND
);
1757 XVEC (newexp
, 0) = rtvec_alloc (len
);
1758 memcpy (XVEC (newexp
, 0)->elem
, tests
, len
* sizeof (rtx
));
1759 XEXP (newexp
, 1) = new_defval
;
1766 /* Remove an insn entry from an attribute value. */
1769 remove_insn_ent (struct attr_value
*av
, struct insn_ent
*ie
)
1771 struct insn_ent
*previe
;
1773 if (av
->first_insn
== ie
)
1774 av
->first_insn
= ie
->next
;
1777 for (previe
= av
->first_insn
; previe
->next
!= ie
; previe
= previe
->next
)
1779 previe
->next
= ie
->next
;
1783 if (ie
->def
->insn_code
== -1)
1784 av
->has_asm_insn
= 0;
1789 /* Insert an insn entry in an attribute value list. */
1792 insert_insn_ent (struct attr_value
*av
, struct insn_ent
*ie
)
1794 ie
->next
= av
->first_insn
;
1795 av
->first_insn
= ie
;
1797 if (ie
->def
->insn_code
== -1)
1798 av
->has_asm_insn
= 1;
1803 /* This is a utility routine to take an expression that is a tree of either
1804 AND or IOR expressions and insert a new term. The new term will be
1805 inserted at the right side of the first node whose code does not match
1806 the root. A new node will be created with the root's code. Its left
1807 side will be the old right side and its right side will be the new
1810 If the `term' is itself a tree, all its leaves will be inserted. */
1813 insert_right_side (enum rtx_code code
, rtx exp
, rtx term
, int insn_code
, int insn_index
)
1817 /* Avoid consing in some special cases. */
1818 if (code
== AND
&& term
== true_rtx
)
1820 if (code
== AND
&& term
== false_rtx
)
1822 if (code
== AND
&& exp
== true_rtx
)
1824 if (code
== AND
&& exp
== false_rtx
)
1826 if (code
== IOR
&& term
== true_rtx
)
1828 if (code
== IOR
&& term
== false_rtx
)
1830 if (code
== IOR
&& exp
== true_rtx
)
1832 if (code
== IOR
&& exp
== false_rtx
)
1834 if (attr_equal_p (exp
, term
))
1837 if (GET_CODE (term
) == code
)
1839 exp
= insert_right_side (code
, exp
, XEXP (term
, 0),
1840 insn_code
, insn_index
);
1841 exp
= insert_right_side (code
, exp
, XEXP (term
, 1),
1842 insn_code
, insn_index
);
1847 if (GET_CODE (exp
) == code
)
1849 rtx new_rtx
= insert_right_side (code
, XEXP (exp
, 1),
1850 term
, insn_code
, insn_index
);
1851 if (new_rtx
!= XEXP (exp
, 1))
1852 /* Make a copy of this expression and call recursively. */
1853 newexp
= attr_rtx (code
, XEXP (exp
, 0), new_rtx
);
1859 /* Insert the new term. */
1860 newexp
= attr_rtx (code
, exp
, term
);
1863 return simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
1866 /* If we have an expression which AND's a bunch of
1867 (not (eq_attrq "alternative" "n"))
1868 terms, we may have covered all or all but one of the possible alternatives.
1869 If so, we can optimize. Similarly for IOR's of EQ_ATTR.
1871 This routine is passed an expression and either AND or IOR. It returns a
1872 bitmask indicating which alternatives are mentioned within EXP. */
1874 static alternative_mask
1875 compute_alternative_mask (rtx exp
, enum rtx_code code
)
1878 if (GET_CODE (exp
) == code
)
1879 return compute_alternative_mask (XEXP (exp
, 0), code
)
1880 | compute_alternative_mask (XEXP (exp
, 1), code
);
1882 else if (code
== AND
&& GET_CODE (exp
) == NOT
1883 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
1884 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
1885 string
= XSTR (XEXP (exp
, 0), 1);
1887 else if (code
== IOR
&& GET_CODE (exp
) == EQ_ATTR
1888 && XSTR (exp
, 0) == alternative_name
)
1889 string
= XSTR (exp
, 1);
1891 else if (GET_CODE (exp
) == EQ_ATTR_ALT
)
1893 if (code
== AND
&& XWINT (exp
, 1))
1894 return XWINT (exp
, 0);
1896 if (code
== IOR
&& !XWINT (exp
, 1))
1897 return XWINT (exp
, 0);
1905 return ((alternative_mask
) 1) << (string
[0] - '0');
1906 return ((alternative_mask
) 1) << atoi (string
);
1909 /* Given I, a single-bit mask, return RTX to compare the `alternative'
1910 attribute with the value represented by that bit. */
1913 make_alternative_compare (alternative_mask mask
)
1915 return mk_attr_alt (mask
);
1918 /* If we are processing an (eq_attr "attr" "value") test, we find the value
1919 of "attr" for this insn code. From that value, we can compute a test
1920 showing when the EQ_ATTR will be true. This routine performs that
1921 computation. If a test condition involves an address, we leave the EQ_ATTR
1922 intact because addresses are only valid for the `length' attribute.
1924 EXP is the EQ_ATTR expression and ATTR is the attribute to which
1925 it refers. VALUE is the value of that attribute for the insn
1926 corresponding to INSN_CODE and INSN_INDEX. */
1929 evaluate_eq_attr (rtx exp
, struct attr_desc
*attr
, rtx value
,
1930 int insn_code
, int insn_index
)
1937 while (GET_CODE (value
) == ATTR
)
1939 struct attr_value
*av
= NULL
;
1941 attr
= find_attr (&XSTR (value
, 0), 0);
1943 if (insn_code_values
)
1945 struct attr_value_list
*iv
;
1946 for (iv
= insn_code_values
[insn_code
]; iv
; iv
= iv
->next
)
1947 if (iv
->attr
== attr
)
1955 struct insn_ent
*ie
;
1956 for (av
= attr
->first_value
; av
; av
= av
->next
)
1957 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
1958 if (ie
->def
->insn_code
== insn_code
)
1968 switch (GET_CODE (value
))
1971 if (! strcmp_check (XSTR (value
, 0), XSTR (exp
, 1)))
1982 gcc_assert (GET_CODE (exp
) == EQ_ATTR
);
1983 prefix
= attr
->enum_name
? attr
->enum_name
: attr
->name
;
1984 string
= ACONCAT ((prefix
, "_", XSTR (exp
, 1), NULL
));
1985 for (p
= string
; *p
; p
++)
1988 newexp
= attr_rtx (EQ
, value
,
1989 attr_rtx (SYMBOL_REF
,
1990 DEF_ATTR_STRING (string
)));
1995 /* We construct an IOR of all the cases for which the
1996 requested attribute value is present. Since we start with
1997 FALSE, if it is not present, FALSE will be returned.
1999 Each case is the AND of the NOT's of the previous conditions with the
2000 current condition; in the default case the current condition is TRUE.
2002 For each possible COND value, call ourselves recursively.
2004 The extra TRUE and FALSE expressions will be eliminated by another
2005 call to the simplification routine. */
2010 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
2012 rtx this_cond
= simplify_test_exp_in_temp (XVECEXP (value
, 0, i
),
2013 insn_code
, insn_index
);
2015 right
= insert_right_side (AND
, andexp
, this_cond
,
2016 insn_code
, insn_index
);
2017 right
= insert_right_side (AND
, right
,
2018 evaluate_eq_attr (exp
, attr
,
2021 insn_code
, insn_index
),
2022 insn_code
, insn_index
);
2023 orexp
= insert_right_side (IOR
, orexp
, right
,
2024 insn_code
, insn_index
);
2026 /* Add this condition into the AND expression. */
2027 newexp
= attr_rtx (NOT
, this_cond
);
2028 andexp
= insert_right_side (AND
, andexp
, newexp
,
2029 insn_code
, insn_index
);
2032 /* Handle the default case. */
2033 right
= insert_right_side (AND
, andexp
,
2034 evaluate_eq_attr (exp
, attr
, XEXP (value
, 1),
2035 insn_code
, insn_index
),
2036 insn_code
, insn_index
);
2037 newexp
= insert_right_side (IOR
, orexp
, right
, insn_code
, insn_index
);
2044 /* If uses an address, must return original expression. But set the
2045 ATTR_IND_SIMPLIFIED_P bit so we don't try to simplify it again. */
2048 walk_attr_value (newexp
);
2052 if (! ATTR_IND_SIMPLIFIED_P (exp
))
2053 return copy_rtx_unchanging (exp
);
2060 /* This routine is called when an AND of a term with a tree of AND's is
2061 encountered. If the term or its complement is present in the tree, it
2062 can be replaced with TRUE or FALSE, respectively.
2064 Note that (eq_attr "att" "v1") and (eq_attr "att" "v2") cannot both
2065 be true and hence are complementary.
2067 There is one special case: If we see
2068 (and (not (eq_attr "att" "v1"))
2069 (eq_attr "att" "v2"))
2070 this can be replaced by (eq_attr "att" "v2"). To do this we need to
2071 replace the term, not anything in the AND tree. So we pass a pointer to
2075 simplify_and_tree (rtx exp
, rtx
*pterm
, int insn_code
, int insn_index
)
2080 int left_eliminates_term
, right_eliminates_term
;
2082 if (GET_CODE (exp
) == AND
)
2084 left
= simplify_and_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2085 right
= simplify_and_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2086 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2088 newexp
= attr_rtx (AND
, left
, right
);
2090 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2094 else if (GET_CODE (exp
) == IOR
)
2096 /* For the IOR case, we do the same as above, except that we can
2097 only eliminate `term' if both sides of the IOR would do so. */
2099 left
= simplify_and_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2100 left_eliminates_term
= (temp
== true_rtx
);
2103 right
= simplify_and_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2104 right_eliminates_term
= (temp
== true_rtx
);
2106 if (left_eliminates_term
&& right_eliminates_term
)
2109 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2111 newexp
= attr_rtx (IOR
, left
, right
);
2113 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2117 /* Check for simplifications. Do some extra checking here since this
2118 routine is called so many times. */
2123 else if (GET_CODE (exp
) == NOT
&& XEXP (exp
, 0) == *pterm
)
2126 else if (GET_CODE (*pterm
) == NOT
&& exp
== XEXP (*pterm
, 0))
2129 else if (GET_CODE (exp
) == EQ_ATTR_ALT
&& GET_CODE (*pterm
) == EQ_ATTR_ALT
)
2131 if (attr_alt_subset_p (*pterm
, exp
))
2134 if (attr_alt_subset_of_compl_p (*pterm
, exp
))
2137 if (attr_alt_subset_p (exp
, *pterm
))
2143 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == EQ_ATTR
)
2145 if (XSTR (exp
, 0) != XSTR (*pterm
, 0))
2148 if (! strcmp_check (XSTR (exp
, 1), XSTR (*pterm
, 1)))
2154 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2155 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
2157 if (XSTR (*pterm
, 0) != XSTR (XEXP (exp
, 0), 0))
2160 if (! strcmp_check (XSTR (*pterm
, 1), XSTR (XEXP (exp
, 0), 1)))
2166 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2167 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
)
2169 if (XSTR (exp
, 0) != XSTR (XEXP (*pterm
, 0), 0))
2172 if (! strcmp_check (XSTR (exp
, 1), XSTR (XEXP (*pterm
, 0), 1)))
2178 else if (GET_CODE (exp
) == NOT
&& GET_CODE (*pterm
) == NOT
)
2180 if (attr_equal_p (XEXP (exp
, 0), XEXP (*pterm
, 0)))
2184 else if (GET_CODE (exp
) == NOT
)
2186 if (attr_equal_p (XEXP (exp
, 0), *pterm
))
2190 else if (GET_CODE (*pterm
) == NOT
)
2192 if (attr_equal_p (XEXP (*pterm
, 0), exp
))
2196 else if (attr_equal_p (exp
, *pterm
))
2202 /* Similar to `simplify_and_tree', but for IOR trees. */
2205 simplify_or_tree (rtx exp
, rtx
*pterm
, int insn_code
, int insn_index
)
2210 int left_eliminates_term
, right_eliminates_term
;
2212 if (GET_CODE (exp
) == IOR
)
2214 left
= simplify_or_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2215 right
= simplify_or_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2216 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2218 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2220 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2224 else if (GET_CODE (exp
) == AND
)
2226 /* For the AND case, we do the same as above, except that we can
2227 only eliminate `term' if both sides of the AND would do so. */
2229 left
= simplify_or_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2230 left_eliminates_term
= (temp
== false_rtx
);
2233 right
= simplify_or_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2234 right_eliminates_term
= (temp
== false_rtx
);
2236 if (left_eliminates_term
&& right_eliminates_term
)
2239 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2241 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2243 exp
= simplify_test_exp_in_temp (newexp
, insn_code
, insn_index
);
2247 if (attr_equal_p (exp
, *pterm
))
2250 else if (GET_CODE (exp
) == NOT
&& attr_equal_p (XEXP (exp
, 0), *pterm
))
2253 else if (GET_CODE (*pterm
) == NOT
&& attr_equal_p (XEXP (*pterm
, 0), exp
))
2256 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2257 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2258 && XSTR (*pterm
, 0) == XSTR (XEXP (exp
, 0), 0))
2261 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2262 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
2263 && XSTR (exp
, 0) == XSTR (XEXP (*pterm
, 0), 0))
2269 /* Simplify test expression and use temporary obstack in order to avoid
2270 memory bloat. Use ATTR_IND_SIMPLIFIED to avoid unnecessary simplifications
2271 and avoid unnecessary copying if possible. */
2274 simplify_test_exp_in_temp (rtx exp
, int insn_code
, int insn_index
)
2277 struct obstack
*old
;
2278 if (ATTR_IND_SIMPLIFIED_P (exp
))
2281 rtl_obstack
= temp_obstack
;
2282 x
= simplify_test_exp (exp
, insn_code
, insn_index
);
2287 /* Returns true if S1 is a subset of S2. */
2290 attr_alt_subset_p (rtx s1
, rtx s2
)
2292 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2295 return !(XWINT (s1
, 0) &~ XWINT (s2
, 0));
2298 return !(XWINT (s1
, 0) & XWINT (s2
, 0));
2304 return !(XWINT (s2
, 0) &~ XWINT (s1
, 0));
2311 /* Returns true if S1 is a subset of complement of S2. */
2314 attr_alt_subset_of_compl_p (rtx s1
, rtx s2
)
2316 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2319 return !(XWINT (s1
, 0) & XWINT (s2
, 0));
2322 return !(XWINT (s1
, 0) & ~XWINT (s2
, 0));
2325 return !(XWINT (s2
, 0) &~ XWINT (s1
, 0));
2335 /* Return EQ_ATTR_ALT expression representing intersection of S1 and S2. */
2338 attr_alt_intersection (rtx s1
, rtx s2
)
2340 alternative_mask result
;
2342 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2345 result
= XWINT (s1
, 0) & XWINT (s2
, 0);
2348 result
= XWINT (s1
, 0) & ~XWINT (s2
, 0);
2351 result
= XWINT (s2
, 0) & ~XWINT (s1
, 0);
2354 result
= XWINT (s1
, 0) | XWINT (s2
, 0);
2360 return attr_rtx (EQ_ATTR_ALT
, result
, XWINT (s1
, 1) & XWINT (s2
, 1));
2363 /* Return EQ_ATTR_ALT expression representing union of S1 and S2. */
2366 attr_alt_union (rtx s1
, rtx s2
)
2368 alternative_mask result
;
2370 switch ((XWINT (s1
, 1) << 1) | XWINT (s2
, 1))
2373 result
= XWINT (s1
, 0) | XWINT (s2
, 0);
2376 result
= XWINT (s2
, 0) & ~XWINT (s1
, 0);
2379 result
= XWINT (s1
, 0) & ~XWINT (s2
, 0);
2382 result
= XWINT (s1
, 0) & XWINT (s2
, 0);
2388 return attr_rtx (EQ_ATTR_ALT
, result
, XWINT (s1
, 1) | XWINT (s2
, 1));
2391 /* Return EQ_ATTR_ALT expression representing complement of S. */
2394 attr_alt_complement (rtx s
)
2396 return attr_rtx (EQ_ATTR_ALT
, XWINT (s
, 0),
2397 ((HOST_WIDE_INT
) 1) - XWINT (s
, 1));
2400 /* Return EQ_ATTR_ALT expression representing set containing elements set
2404 mk_attr_alt (alternative_mask e
)
2406 return attr_rtx (EQ_ATTR_ALT
, (HOST_WIDE_INT
) e
, (HOST_WIDE_INT
) 0);
2409 /* Given an expression, see if it can be simplified for a particular insn
2410 code based on the values of other attributes being tested. This can
2411 eliminate nested get_attr_... calls.
2413 Note that if an endless recursion is specified in the patterns, the
2414 optimization will loop. However, it will do so in precisely the cases where
2415 an infinite recursion loop could occur during compilation. It's better that
2419 simplify_test_exp (rtx exp
, int insn_code
, int insn_index
)
2422 struct attr_desc
*attr
;
2423 struct attr_value
*av
;
2424 struct insn_ent
*ie
;
2425 struct attr_value_list
*iv
;
2428 bool left_alt
, right_alt
;
2430 /* Don't re-simplify something we already simplified. */
2431 if (ATTR_IND_SIMPLIFIED_P (exp
) || ATTR_CURR_SIMPLIFIED_P (exp
))
2434 switch (GET_CODE (exp
))
2437 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2438 if (left
== false_rtx
)
2440 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
2441 if (right
== false_rtx
)
2444 if (GET_CODE (left
) == EQ_ATTR_ALT
2445 && GET_CODE (right
) == EQ_ATTR_ALT
)
2447 exp
= attr_alt_intersection (left
, right
);
2448 return simplify_test_exp (exp
, insn_code
, insn_index
);
2451 /* If either side is an IOR and we have (eq_attr "alternative" ..")
2452 present on both sides, apply the distributive law since this will
2453 yield simplifications. */
2454 if ((GET_CODE (left
) == IOR
|| GET_CODE (right
) == IOR
)
2455 && compute_alternative_mask (left
, IOR
)
2456 && compute_alternative_mask (right
, IOR
))
2458 if (GET_CODE (left
) == IOR
)
2459 std::swap (left
, right
);
2461 newexp
= attr_rtx (IOR
,
2462 attr_rtx (AND
, left
, XEXP (right
, 0)),
2463 attr_rtx (AND
, left
, XEXP (right
, 1)));
2465 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2468 /* Try with the term on both sides. */
2469 right
= simplify_and_tree (right
, &left
, insn_code
, insn_index
);
2470 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
2471 left
= simplify_and_tree (left
, &right
, insn_code
, insn_index
);
2473 if (left
== false_rtx
|| right
== false_rtx
)
2475 else if (left
== true_rtx
)
2479 else if (right
== true_rtx
)
2483 /* See if all or all but one of the insn's alternatives are specified
2484 in this tree. Optimize if so. */
2486 if (GET_CODE (left
) == NOT
)
2487 left_alt
= (GET_CODE (XEXP (left
, 0)) == EQ_ATTR
2488 && XSTR (XEXP (left
, 0), 0) == alternative_name
);
2490 left_alt
= (GET_CODE (left
) == EQ_ATTR_ALT
2491 && XWINT (left
, 1));
2493 if (GET_CODE (right
) == NOT
)
2494 right_alt
= (GET_CODE (XEXP (right
, 0)) == EQ_ATTR
2495 && XSTR (XEXP (right
, 0), 0) == alternative_name
);
2497 right_alt
= (GET_CODE (right
) == EQ_ATTR_ALT
2498 && XWINT (right
, 1));
2501 && (GET_CODE (left
) == AND
2503 || GET_CODE (right
) == AND
2506 i
= compute_alternative_mask (exp
, AND
);
2507 if (i
& ~insn_alternatives
[insn_code
])
2508 fatal ("invalid alternative specified for pattern number %d",
2511 /* If all alternatives are excluded, this is false. */
2512 i
^= insn_alternatives
[insn_code
];
2515 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
2517 /* If just one excluded, AND a comparison with that one to the
2518 front of the tree. The others will be eliminated by
2519 optimization. We do not want to do this if the insn has one
2520 alternative and we have tested none of them! */
2521 left
= make_alternative_compare (i
);
2522 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
2523 newexp
= attr_rtx (AND
, left
, right
);
2525 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2529 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2531 newexp
= attr_rtx (AND
, left
, right
);
2532 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2537 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2538 if (left
== true_rtx
)
2540 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
2541 if (right
== true_rtx
)
2544 if (GET_CODE (left
) == EQ_ATTR_ALT
2545 && GET_CODE (right
) == EQ_ATTR_ALT
)
2547 exp
= attr_alt_union (left
, right
);
2548 return simplify_test_exp (exp
, insn_code
, insn_index
);
2551 right
= simplify_or_tree (right
, &left
, insn_code
, insn_index
);
2552 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
2553 left
= simplify_or_tree (left
, &right
, insn_code
, insn_index
);
2555 if (right
== true_rtx
|| left
== true_rtx
)
2557 else if (left
== false_rtx
)
2561 else if (right
== false_rtx
)
2566 /* Test for simple cases where the distributive law is useful. I.e.,
2567 convert (ior (and (x) (y))
2573 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
2574 && attr_equal_p (XEXP (left
, 0), XEXP (right
, 0)))
2576 newexp
= attr_rtx (IOR
, XEXP (left
, 1), XEXP (right
, 1));
2578 left
= XEXP (left
, 0);
2580 newexp
= attr_rtx (AND
, left
, right
);
2581 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2585 convert (ior (and (y) (x))
2587 to (and (ior (y) (z))
2589 Note that we want the common term to stay at the end.
2592 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
2593 && attr_equal_p (XEXP (left
, 1), XEXP (right
, 1)))
2595 newexp
= attr_rtx (IOR
, XEXP (left
, 0), XEXP (right
, 0));
2598 right
= XEXP (right
, 1);
2599 newexp
= attr_rtx (AND
, left
, right
);
2600 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2603 /* See if all or all but one of the insn's alternatives are specified
2604 in this tree. Optimize if so. */
2606 else if (insn_code
>= 0
2607 && (GET_CODE (left
) == IOR
2608 || (GET_CODE (left
) == EQ_ATTR_ALT
2609 && !XWINT (left
, 1))
2610 || (GET_CODE (left
) == EQ_ATTR
2611 && XSTR (left
, 0) == alternative_name
)
2612 || GET_CODE (right
) == IOR
2613 || (GET_CODE (right
) == EQ_ATTR_ALT
2614 && !XWINT (right
, 1))
2615 || (GET_CODE (right
) == EQ_ATTR
2616 && XSTR (right
, 0) == alternative_name
)))
2618 i
= compute_alternative_mask (exp
, IOR
);
2619 if (i
& ~insn_alternatives
[insn_code
])
2620 fatal ("invalid alternative specified for pattern number %d",
2623 /* If all alternatives are included, this is true. */
2624 i
^= insn_alternatives
[insn_code
];
2627 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
2629 /* If just one excluded, IOR a comparison with that one to the
2630 front of the tree. The others will be eliminated by
2631 optimization. We do not want to do this if the insn has one
2632 alternative and we have tested none of them! */
2633 left
= make_alternative_compare (i
);
2634 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
2635 newexp
= attr_rtx (IOR
, attr_rtx (NOT
, left
), right
);
2637 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2641 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2643 newexp
= attr_rtx (IOR
, left
, right
);
2644 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2649 if (GET_CODE (XEXP (exp
, 0)) == NOT
)
2651 left
= SIMPLIFY_TEST_EXP (XEXP (XEXP (exp
, 0), 0),
2652 insn_code
, insn_index
);
2656 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
2657 if (GET_CODE (left
) == NOT
)
2658 return XEXP (left
, 0);
2660 if (left
== false_rtx
)
2662 if (left
== true_rtx
)
2665 if (GET_CODE (left
) == EQ_ATTR_ALT
)
2667 exp
= attr_alt_complement (left
);
2668 return simplify_test_exp (exp
, insn_code
, insn_index
);
2671 /* Try to apply De`Morgan's laws. */
2672 if (GET_CODE (left
) == IOR
)
2674 newexp
= attr_rtx (AND
,
2675 attr_rtx (NOT
, XEXP (left
, 0)),
2676 attr_rtx (NOT
, XEXP (left
, 1)));
2678 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2680 else if (GET_CODE (left
) == AND
)
2682 newexp
= attr_rtx (IOR
,
2683 attr_rtx (NOT
, XEXP (left
, 0)),
2684 attr_rtx (NOT
, XEXP (left
, 1)));
2686 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2688 else if (left
!= XEXP (exp
, 0))
2690 newexp
= attr_rtx (NOT
, left
);
2695 if (!XWINT (exp
, 0))
2696 return XWINT (exp
, 1) ? true_rtx
: false_rtx
;
2700 if (XSTR (exp
, 0) == alternative_name
)
2702 newexp
= mk_attr_alt (((alternative_mask
) 1)
2703 << atoi (XSTR (exp
, 1)));
2707 /* Look at the value for this insn code in the specified attribute.
2708 We normally can replace this comparison with the condition that
2709 would give this insn the values being tested for. */
2711 && (attr
= find_attr (&XSTR (exp
, 0), 0)) != NULL
)
2716 if (insn_code_values
)
2718 for (iv
= insn_code_values
[insn_code
]; iv
; iv
= iv
->next
)
2719 if (iv
->attr
== attr
)
2727 for (av
= attr
->first_value
; av
; av
= av
->next
)
2728 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2729 if (ie
->def
->insn_code
== insn_code
)
2736 x
= evaluate_eq_attr (exp
, attr
, av
->value
,
2737 insn_code
, insn_index
);
2738 x
= SIMPLIFY_TEST_EXP (x
, insn_code
, insn_index
);
2739 if (attr_rtx_cost (x
) < 7)
2749 /* We have already simplified this expression. Simplifying it again
2750 won't buy anything unless we weren't given a valid insn code
2751 to process (i.e., we are canonicalizing something.). */
2753 && ! ATTR_IND_SIMPLIFIED_P (newexp
))
2754 return copy_rtx_unchanging (newexp
);
2759 /* Return 1 if any EQ_ATTR subexpression of P refers to ATTR,
2760 otherwise return 0. */
2763 tests_attr_p (rtx p
, struct attr_desc
*attr
)
2768 if (GET_CODE (p
) == EQ_ATTR
)
2770 if (XSTR (p
, 0) != attr
->name
)
2775 fmt
= GET_RTX_FORMAT (GET_CODE (p
));
2776 ie
= GET_RTX_LENGTH (GET_CODE (p
));
2777 for (i
= 0; i
< ie
; i
++)
2782 if (tests_attr_p (XEXP (p
, i
), attr
))
2787 je
= XVECLEN (p
, i
);
2788 for (j
= 0; j
< je
; ++j
)
2789 if (tests_attr_p (XVECEXP (p
, i
, j
), attr
))
2798 /* Calculate a topological sorting of all attributes so that
2799 all attributes only depend on attributes in front of it.
2800 Place the result in *RET (which is a pointer to an array of
2801 attr_desc pointers), and return the size of that array. */
2804 get_attr_order (struct attr_desc
***ret
)
2808 struct attr_desc
*attr
;
2809 struct attr_desc
**all
, **sorted
;
2811 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
2812 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
2814 all
= XNEWVEC (struct attr_desc
*, num
);
2815 sorted
= XNEWVEC (struct attr_desc
*, num
);
2816 handled
= XCNEWVEC (char, num
);
2818 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
2819 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
2823 for (i
= 0; i
< num
; i
++)
2824 if (all
[i
]->is_const
)
2825 handled
[i
] = 1, sorted
[j
++] = all
[i
];
2827 /* We have only few attributes hence we can live with the inner
2828 loop being O(n^2), unlike the normal fast variants of topological
2832 for (i
= 0; i
< num
; i
++)
2835 /* Let's see if I depends on anything interesting. */
2837 for (k
= 0; k
< num
; k
++)
2840 struct attr_value
*av
;
2841 for (av
= all
[i
]->first_value
; av
; av
= av
->next
)
2842 if (av
->num_insns
!= 0)
2843 if (tests_attr_p (av
->value
, all
[k
]))
2847 /* Something in I depends on K. */
2852 /* Nothing in I depended on anything intersting, so
2855 sorted
[j
++] = all
[i
];
2861 for (j
= 0; j
< num
; j
++)
2863 struct attr_desc
*attr2
;
2864 struct attr_value
*av
;
2867 fprintf (stderr
, "%s depends on: ", attr
->name
);
2868 for (i
= 0; i
< MAX_ATTRS_INDEX
; ++i
)
2869 for (attr2
= attrs
[i
]; attr2
; attr2
= attr2
->next
)
2870 if (!attr2
->is_const
)
2871 for (av
= attr
->first_value
; av
; av
= av
->next
)
2872 if (av
->num_insns
!= 0)
2873 if (tests_attr_p (av
->value
, attr2
))
2875 fprintf (stderr
, "%s, ", attr2
->name
);
2878 fprintf (stderr
, "\n");
2886 /* Optimize the attribute lists by seeing if we can determine conditional
2887 values from the known values of other attributes. This will save subroutine
2888 calls during the compilation. NUM_INSN_CODES is the number of unique
2889 instruction codes. */
2892 optimize_attrs (int num_insn_codes
)
2894 struct attr_desc
*attr
;
2895 struct attr_value
*av
;
2896 struct insn_ent
*ie
;
2899 struct attr_value_list
*ivbuf
;
2900 struct attr_value_list
*iv
;
2901 struct attr_desc
**topsort
;
2904 /* For each insn code, make a list of all the insn_ent's for it,
2905 for all values for all attributes. */
2907 if (num_insn_ents
== 0)
2910 /* Make 2 extra elements, for "code" values -2 and -1. */
2911 insn_code_values
= XCNEWVEC (struct attr_value_list
*, num_insn_codes
+ 2);
2913 /* Offset the table address so we can index by -2 or -1. */
2914 insn_code_values
+= 2;
2916 iv
= ivbuf
= XNEWVEC (struct attr_value_list
, num_insn_ents
);
2918 /* Create the chain of insn*attr values such that we see dependend
2919 attributes after their dependencies. As we use a stack via the
2920 next pointers start from the end of the topological order. */
2921 topnum
= get_attr_order (&topsort
);
2922 for (i
= topnum
- 1; i
>= 0; i
--)
2923 for (av
= topsort
[i
]->first_value
; av
; av
= av
->next
)
2924 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2926 iv
->attr
= topsort
[i
];
2929 iv
->next
= insn_code_values
[ie
->def
->insn_code
];
2930 insn_code_values
[ie
->def
->insn_code
] = iv
;
2935 /* Sanity check on num_insn_ents. */
2936 gcc_assert (iv
== ivbuf
+ num_insn_ents
);
2938 /* Process one insn code at a time. */
2939 for (i
= -2; i
< num_insn_codes
; i
++)
2941 /* Clear the ATTR_CURR_SIMPLIFIED_P flag everywhere relevant.
2942 We use it to mean "already simplified for this insn". */
2943 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
2944 clear_struct_flag (iv
->av
->value
);
2946 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
2948 struct obstack
*old
= rtl_obstack
;
2953 if (GET_CODE (av
->value
) != COND
)
2956 rtl_obstack
= temp_obstack
;
2958 while (GET_CODE (newexp
) == COND
)
2960 rtx newexp2
= simplify_cond (newexp
, ie
->def
->insn_code
,
2961 ie
->def
->insn_index
);
2962 if (newexp2
== newexp
)
2968 /* If we created a new value for this instruction, and it's
2969 cheaper than the old value, and overall cheap, use that
2970 one as specific value for the current instruction.
2971 The last test is to avoid exploding the get_attr_ function
2972 sizes for no much gain. */
2973 if (newexp
!= av
->value
2974 && attr_rtx_cost (newexp
) < attr_rtx_cost (av
->value
)
2975 && attr_rtx_cost (newexp
) < 26
2978 remove_insn_ent (av
, ie
);
2979 av
= get_attr_value (ie
->def
->loc
, newexp
, attr
,
2980 ie
->def
->insn_code
);
2982 insert_insn_ent (av
, ie
);
2988 free (insn_code_values
- 2);
2989 insn_code_values
= NULL
;
2992 /* Clear the ATTR_CURR_SIMPLIFIED_P flag in EXP and its subexpressions. */
2995 clear_struct_flag (rtx x
)
3002 ATTR_CURR_SIMPLIFIED_P (x
) = 0;
3003 if (ATTR_IND_SIMPLIFIED_P (x
))
3006 code
= GET_CODE (x
);
3025 /* Compare the elements. If any pair of corresponding elements
3026 fail to match, return 0 for the whole things. */
3028 fmt
= GET_RTX_FORMAT (code
);
3029 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3035 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3036 clear_struct_flag (XVECEXP (x
, i
, j
));
3040 clear_struct_flag (XEXP (x
, i
));
3046 /* Add attribute value NAME to the beginning of ATTR's list. */
3049 add_attr_value (struct attr_desc
*attr
, const char *name
)
3051 struct attr_value
*av
;
3053 av
= oballoc (struct attr_value
);
3054 av
->value
= attr_rtx (CONST_STRING
, name
);
3055 av
->next
= attr
->first_value
;
3056 attr
->first_value
= av
;
3057 av
->first_insn
= NULL
;
3059 av
->has_asm_insn
= 0;
3062 /* Create table entries for DEFINE_ATTR or DEFINE_ENUM_ATTR. */
3065 gen_attr (md_rtx_info
*info
)
3067 struct enum_type
*et
;
3068 struct enum_value
*ev
;
3069 struct attr_desc
*attr
;
3070 const char *name_ptr
;
3072 rtx def
= info
->def
;
3074 /* Make a new attribute structure. Check for duplicate by looking at
3075 attr->default_val, since it is initialized by this routine. */
3076 attr
= find_attr (&XSTR (def
, 0), 1);
3077 if (attr
->default_val
)
3079 error_at (info
->loc
, "duplicate definition for attribute %s",
3081 message_at (attr
->loc
, "previous definition");
3084 attr
->loc
= info
->loc
;
3086 if (GET_CODE (def
) == DEFINE_ENUM_ATTR
)
3088 attr
->enum_name
= XSTR (def
, 1);
3089 et
= rtx_reader_ptr
->lookup_enum_type (XSTR (def
, 1));
3090 if (!et
|| !et
->md_p
)
3091 error_at (info
->loc
, "No define_enum called `%s' defined",
3094 for (ev
= et
->values
; ev
; ev
= ev
->next
)
3095 add_attr_value (attr
, ev
->name
);
3097 else if (*XSTR (def
, 1) == '\0')
3098 attr
->is_numeric
= 1;
3101 name_ptr
= XSTR (def
, 1);
3102 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
3103 add_attr_value (attr
, p
);
3106 if (GET_CODE (XEXP (def
, 2)) == CONST
)
3109 if (attr
->is_numeric
)
3110 error_at (info
->loc
,
3111 "constant attributes may not take numeric values");
3113 /* Get rid of the CONST node. It is allowed only at top-level. */
3114 XEXP (def
, 2) = XEXP (XEXP (def
, 2), 0);
3117 if (! strcmp_check (attr
->name
, length_str
) && ! attr
->is_numeric
)
3118 error_at (info
->loc
, "`length' attribute must take numeric values");
3120 /* Set up the default value. */
3121 XEXP (def
, 2) = check_attr_value (info
->loc
, XEXP (def
, 2), attr
);
3122 attr
->default_val
= get_attr_value (info
->loc
, XEXP (def
, 2), attr
, -2);
3125 /* Given a pattern for DEFINE_PEEPHOLE or DEFINE_INSN, return the number of
3126 alternatives in the constraints. Assume all MATCH_OPERANDs have the same
3127 number of alternatives as this should be checked elsewhere. */
3130 count_alternatives (rtx exp
)
3135 if (GET_CODE (exp
) == MATCH_OPERAND
)
3136 return n_comma_elts (XSTR (exp
, 2));
3138 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
3139 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
3144 n
= count_alternatives (XEXP (exp
, i
));
3151 if (XVEC (exp
, i
) != NULL
)
3152 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
3154 n
= count_alternatives (XVECEXP (exp
, i
, j
));
3163 /* Returns nonzero if the given expression contains an EQ_ATTR with the
3164 `alternative' attribute. */
3167 compares_alternatives_p (rtx exp
)
3172 if (GET_CODE (exp
) == EQ_ATTR
&& XSTR (exp
, 0) == alternative_name
)
3175 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
3176 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
3181 if (compares_alternatives_p (XEXP (exp
, i
)))
3186 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
3187 if (compares_alternatives_p (XVECEXP (exp
, i
, j
)))
3195 /* Process DEFINE_PEEPHOLE, DEFINE_INSN, and DEFINE_ASM_ATTRIBUTES. */
3198 gen_insn (md_rtx_info
*info
)
3200 struct insn_def
*id
;
3201 rtx def
= info
->def
;
3203 id
= oballoc (struct insn_def
);
3207 id
->loc
= info
->loc
;
3209 switch (GET_CODE (def
))
3212 id
->insn_code
= info
->index
;
3213 id
->insn_index
= insn_index_number
;
3214 id
->num_alternatives
= count_alternatives (def
);
3215 if (id
->num_alternatives
== 0)
3216 id
->num_alternatives
= 1;
3220 case DEFINE_PEEPHOLE
:
3221 id
->insn_code
= info
->index
;
3222 id
->insn_index
= insn_index_number
;
3223 id
->num_alternatives
= count_alternatives (def
);
3224 if (id
->num_alternatives
== 0)
3225 id
->num_alternatives
= 1;
3229 case DEFINE_ASM_ATTRIBUTES
:
3231 id
->insn_index
= -1;
3232 id
->num_alternatives
= 1;
3234 got_define_asm_attributes
= 1;
3242 /* Process a DEFINE_DELAY. Validate the vector length, check if annul
3243 true or annul false is specified, and make a `struct delay_desc'. */
3246 gen_delay (md_rtx_info
*info
)
3248 struct delay_desc
*delay
;
3251 rtx def
= info
->def
;
3252 if (XVECLEN (def
, 1) % 3 != 0)
3254 error_at (info
->loc
, "number of elements in DEFINE_DELAY must"
3255 " be multiple of three");
3259 for (i
= 0; i
< XVECLEN (def
, 1); i
+= 3)
3261 if (XVECEXP (def
, 1, i
+ 1))
3262 have_annul_true
= 1;
3263 if (XVECEXP (def
, 1, i
+ 2))
3264 have_annul_false
= 1;
3267 delay
= oballoc (struct delay_desc
);
3269 delay
->num
= ++num_delays
;
3270 delay
->next
= delays
;
3271 delay
->loc
= info
->loc
;
3275 /* Names of attributes that could be possibly cached. */
3276 static const char *cached_attrs
[32];
3277 /* Number of such attributes. */
3278 static int cached_attr_count
;
3279 /* Bitmasks of possibly cached attributes. */
3280 static unsigned int attrs_seen_once
, attrs_seen_more_than_once
;
3281 static unsigned int attrs_to_cache
;
3282 static unsigned int attrs_cached_inside
, attrs_cached_after
;
3284 /* Finds non-const attributes that could be possibly cached.
3285 When create is TRUE, fills in cached_attrs array.
3286 Computes ATTRS_SEEN_ONCE and ATTRS_SEEN_MORE_THAN_ONCE
3290 find_attrs_to_cache (rtx exp
, bool create
)
3294 struct attr_desc
*attr
;
3299 switch (GET_CODE (exp
))
3302 if (GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
3303 find_attrs_to_cache (XEXP (exp
, 0), create
);
3307 name
= XSTR (exp
, 0);
3308 if (name
== alternative_name
)
3310 for (i
= 0; i
< cached_attr_count
; i
++)
3311 if (name
== cached_attrs
[i
])
3313 if ((attrs_seen_once
& (1U << i
)) != 0)
3314 attrs_seen_more_than_once
|= (1U << i
);
3316 attrs_seen_once
|= (1U << i
);
3321 attr
= find_attr (&name
, 0);
3325 if (cached_attr_count
== 32)
3327 cached_attrs
[cached_attr_count
] = XSTR (exp
, 0);
3328 attrs_seen_once
|= (1U << cached_attr_count
);
3329 cached_attr_count
++;
3334 find_attrs_to_cache (XEXP (exp
, 0), create
);
3335 find_attrs_to_cache (XEXP (exp
, 1), create
);
3339 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3340 find_attrs_to_cache (XVECEXP (exp
, 0, i
), create
);
3348 /* Given a piece of RTX, print a C expression to test its truth value to OUTF.
3349 We use AND and IOR both for logical and bit-wise operations, so
3350 interpret them as logical unless they are inside a comparison expression.
3352 An outermost pair of parentheses is emitted around this C expression unless
3353 EMIT_PARENS is false. */
3355 /* Interpret AND/IOR as bit-wise operations instead of logical. */
3356 #define FLG_BITWISE 1
3357 /* Set if cached attribute will be known initialized in else block after
3358 this condition. This is true for LHS of toplevel && and || and
3359 even for RHS of ||, but not for RHS of &&. */
3361 /* Set if cached attribute will be known initialized in then block after
3362 this condition. This is true for LHS of toplevel && and || and
3363 even for RHS of &&, but not for RHS of ||. */
3364 #define FLG_INSIDE 4
3365 /* Cleared when an operand of &&. */
3366 #define FLG_OUTSIDE_AND 8
3369 write_test_expr (FILE *outf
, rtx exp
, unsigned int attrs_cached
, int flags
,
3370 bool emit_parens
= true)
3372 int comparison_operator
= 0;
3374 struct attr_desc
*attr
;
3377 fprintf (outf
, "(");
3379 code
= GET_CODE (exp
);
3382 /* Binary operators. */
3385 fprintf (outf
, "(unsigned) ");
3391 comparison_operator
= FLG_BITWISE
;
3394 case PLUS
: case MINUS
: case MULT
: case DIV
: case MOD
:
3395 case AND
: case IOR
: case XOR
:
3396 case ASHIFT
: case LSHIFTRT
: case ASHIFTRT
:
3397 if ((code
!= AND
&& code
!= IOR
) || (flags
& FLG_BITWISE
))
3399 flags
&= ~(FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
);
3400 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
,
3401 flags
| comparison_operator
);
3406 flags
&= ~FLG_OUTSIDE_AND
;
3407 if (GET_CODE (XEXP (exp
, 0)) == code
3408 || GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
3409 || (GET_CODE (XEXP (exp
, 0)) == NOT
3410 && GET_CODE (XEXP (XEXP (exp
, 0), 0)) == EQ_ATTR
))
3412 = write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3414 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3419 fprintf (outf
, " == ");
3422 fprintf (outf
, " != ");
3425 fprintf (outf
, " >= ");
3428 fprintf (outf
, " > ");
3431 fprintf (outf
, " >= (unsigned) ");
3434 fprintf (outf
, " > (unsigned) ");
3437 fprintf (outf
, " <= ");
3440 fprintf (outf
, " < ");
3443 fprintf (outf
, " <= (unsigned) ");
3446 fprintf (outf
, " < (unsigned) ");
3449 fprintf (outf
, " + ");
3452 fprintf (outf
, " - ");
3455 fprintf (outf
, " * ");
3458 fprintf (outf
, " / ");
3461 fprintf (outf
, " %% ");
3464 if (flags
& FLG_BITWISE
)
3465 fprintf (outf
, " & ");
3467 fprintf (outf
, " && ");
3470 if (flags
& FLG_BITWISE
)
3471 fprintf (outf
, " | ");
3473 fprintf (outf
, " || ");
3476 fprintf (outf
, " ^ ");
3479 fprintf (outf
, " << ");
3483 fprintf (outf
, " >> ");
3491 /* For if (something && (cached_x = get_attr_x (insn)) == X)
3492 cached_x is only known to be initialized in then block. */
3493 flags
&= ~FLG_AFTER
;
3495 else if (code
== IOR
)
3497 if (flags
& FLG_OUTSIDE_AND
)
3498 /* For if (something || (cached_x = get_attr_x (insn)) == X)
3499 cached_x is only known to be initialized in else block
3500 and else if conditions. */
3501 flags
&= ~FLG_INSIDE
;
3503 /* For if ((something || (cached_x = get_attr_x (insn)) == X)
3505 cached_x is not know to be initialized anywhere. */
3506 flags
&= ~(FLG_AFTER
| FLG_INSIDE
);
3508 if ((code
== AND
|| code
== IOR
)
3509 && (GET_CODE (XEXP (exp
, 1)) == code
3510 || GET_CODE (XEXP (exp
, 1)) == EQ_ATTR
3511 || (GET_CODE (XEXP (exp
, 1)) == NOT
3512 && GET_CODE (XEXP (XEXP (exp
, 1), 0)) == EQ_ATTR
)))
3514 bool need_parens
= true;
3516 /* No need to emit parentheses around the right-hand operand if we are
3517 continuing a chain of && or || (or & or |). */
3518 if (GET_CODE (XEXP (exp
, 1)) == code
)
3519 need_parens
= false;
3522 = write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
, flags
,
3526 write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
,
3527 flags
| comparison_operator
);
3531 /* Special-case (not (eq_attrq "alternative" "x")) */
3532 if (! (flags
& FLG_BITWISE
) && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
3534 if (XSTR (XEXP (exp
, 0), 0) == alternative_name
)
3536 fprintf (outf
, "which_alternative != %s",
3537 XSTR (XEXP (exp
, 0), 1));
3541 fprintf (outf
, "! ");
3543 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3547 /* Otherwise, fall through to normal unary operator. */
3550 /* Unary operators. */
3555 if (flags
& FLG_BITWISE
)
3556 fprintf (outf
, "~ ");
3558 fprintf (outf
, "! ");
3561 fprintf (outf
, "abs ");
3564 fprintf (outf
, "-");
3570 flags
&= ~(FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
);
3571 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, flags
);
3576 alternative_mask set
= XWINT (exp
, 0);
3579 if (flags
& FLG_BITWISE
)
3580 fatal ("EQ_ATTR_ALT not valid inside comparison");
3583 fatal ("Empty EQ_ATTR_ALT should be optimized out");
3585 if (!(set
& (set
- 1)))
3587 if (!(set
& 0xffffffff))
3592 if (!(set
& 0xffff))
3615 fprintf (outf
, "which_alternative %s= %d",
3616 XWINT (exp
, 1) ? "!" : "=", bit
);
3620 fprintf (outf
, "%s((1ULL << which_alternative) & %#" PRIx64
3622 XWINT (exp
, 1) ? "!" : "", set
);
3627 /* Comparison test of an attribute with a value. Most of these will
3628 have been removed by optimization. Handle "alternative"
3629 specially and give error if EQ_ATTR present inside a comparison. */
3631 if (flags
& FLG_BITWISE
)
3632 fatal ("EQ_ATTR not valid inside comparison");
3634 if (XSTR (exp
, 0) == alternative_name
)
3636 fprintf (outf
, "which_alternative == %s", XSTR (exp
, 1));
3640 attr
= find_attr (&XSTR (exp
, 0), 0);
3643 /* Now is the time to expand the value of a constant attribute. */
3646 write_test_expr (outf
,
3647 evaluate_eq_attr (exp
, attr
,
3648 attr
->default_val
->value
,
3655 for (i
= 0; i
< cached_attr_count
; i
++)
3656 if (attr
->name
== cached_attrs
[i
])
3658 if (i
< cached_attr_count
&& (attrs_cached
& (1U << i
)) != 0)
3659 fprintf (outf
, "cached_%s", attr
->name
);
3660 else if (i
< cached_attr_count
&& (attrs_to_cache
& (1U << i
)) != 0)
3662 fprintf (outf
, "(cached_%s = get_attr_%s (insn))",
3663 attr
->name
, attr
->name
);
3664 if (flags
& FLG_AFTER
)
3665 attrs_cached_after
|= (1U << i
);
3666 if (flags
& FLG_INSIDE
)
3667 attrs_cached_inside
|= (1U << i
);
3668 attrs_cached
|= (1U << i
);
3671 fprintf (outf
, "get_attr_%s (insn)", attr
->name
);
3672 fprintf (outf
, " == ");
3673 write_attr_valueq (outf
, attr
, XSTR (exp
, 1));
3677 /* Comparison test of flags for define_delays. */
3679 if (flags
& FLG_BITWISE
)
3680 fatal ("ATTR_FLAG not valid inside comparison");
3681 fprintf (outf
, "(flags & ATTR_FLAG_%s) != 0", XSTR (exp
, 0));
3684 /* See if an operand matches a predicate. */
3686 /* If only a mode is given, just ensure the mode matches the operand.
3687 If neither a mode nor predicate is given, error. */
3688 if (XSTR (exp
, 1) == NULL
|| *XSTR (exp
, 1) == '\0')
3690 if (GET_MODE (exp
) == VOIDmode
)
3691 fatal ("null MATCH_OPERAND specified as test");
3693 fprintf (outf
, "GET_MODE (operands[%d]) == %smode",
3694 XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
3697 fprintf (outf
, "%s (operands[%d], %smode)",
3698 XSTR (exp
, 1), XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
3701 /* Constant integer. */
3703 fprintf (outf
, HOST_WIDE_INT_PRINT_DEC
, XWINT (exp
, 0));
3707 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (exp
, 0));
3708 if (flags
& FLG_BITWISE
)
3709 fprintf (outf
, " != 0");
3712 /* A random C expression. */
3714 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (exp
, 0));
3717 /* The address of the branch target. */
3720 "INSN_ADDRESSES_SET_P () ? INSN_ADDRESSES (INSN_UID (GET_CODE (operands[%d]) == LABEL_REF ? XEXP (operands[%d], 0) : operands[%d])) : 0",
3721 XINT (exp
, 0), XINT (exp
, 0), XINT (exp
, 0));
3725 /* The address of the current insn. We implement this actually as the
3726 address of the current insn for backward branches, but the last
3727 address of the next insn for forward branches, and both with
3728 adjustments that account for the worst-case possible stretching of
3729 intervening alignments between this insn and its destination. */
3730 fprintf (outf
, "insn_current_reference_address (insn)");
3734 fprintf (outf
, "%s", XSTR (exp
, 0));
3738 write_test_expr (outf
, XEXP (exp
, 0), attrs_cached
, 0);
3739 fprintf (outf
, " ? ");
3740 write_test_expr (outf
, XEXP (exp
, 1), attrs_cached
, FLG_BITWISE
);
3741 fprintf (outf
, " : ");
3742 write_test_expr (outf
, XEXP (exp
, 2), attrs_cached
, FLG_BITWISE
);
3746 fatal ("bad RTX code `%s' in attribute calculation\n",
3747 GET_RTX_NAME (code
));
3751 fprintf (outf
, ")");
3753 return attrs_cached
;
3756 /* Given an attribute value, return the maximum CONST_STRING argument
3757 encountered. Set *UNKNOWNP and return INT_MAX if the value is unknown. */
3760 max_attr_value (rtx exp
, int *unknownp
)
3765 switch (GET_CODE (exp
))
3768 current_max
= atoi (XSTR (exp
, 0));
3772 current_max
= max_attr_value (XEXP (exp
, 1), unknownp
);
3773 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3775 n
= max_attr_value (XVECEXP (exp
, 0, i
+ 1), unknownp
);
3776 if (n
> current_max
)
3782 current_max
= max_attr_value (XEXP (exp
, 1), unknownp
);
3783 n
= max_attr_value (XEXP (exp
, 2), unknownp
);
3784 if (n
> current_max
)
3790 current_max
= INT_MAX
;
3797 /* Given an attribute value, return the minimum CONST_STRING argument
3798 encountered. Set *UNKNOWNP and return 0 if the value is unknown. */
3801 min_attr_value (rtx exp
, int *unknownp
)
3806 switch (GET_CODE (exp
))
3809 current_min
= atoi (XSTR (exp
, 0));
3813 current_min
= min_attr_value (XEXP (exp
, 1), unknownp
);
3814 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3816 n
= min_attr_value (XVECEXP (exp
, 0, i
+ 1), unknownp
);
3817 if (n
< current_min
)
3823 current_min
= min_attr_value (XEXP (exp
, 1), unknownp
);
3824 n
= min_attr_value (XEXP (exp
, 2), unknownp
);
3825 if (n
< current_min
)
3831 current_min
= INT_MAX
;
3838 /* Given an attribute value, return the result of ORing together all
3839 CONST_STRING arguments encountered. Set *UNKNOWNP and return -1
3840 if the numeric value is not known. */
3843 or_attr_value (rtx exp
, int *unknownp
)
3848 switch (GET_CODE (exp
))
3851 current_or
= atoi (XSTR (exp
, 0));
3855 current_or
= or_attr_value (XEXP (exp
, 1), unknownp
);
3856 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3857 current_or
|= or_attr_value (XVECEXP (exp
, 0, i
+ 1), unknownp
);
3861 current_or
= or_attr_value (XEXP (exp
, 1), unknownp
);
3862 current_or
|= or_attr_value (XEXP (exp
, 2), unknownp
);
3874 /* Scan an attribute value, possibly a conditional, and record what actions
3875 will be required to do any conditional tests in it.
3878 `must_extract' if we need to extract the insn operands
3879 `must_constrain' if we must compute `which_alternative'
3880 `address_used' if an address expression was used
3881 `length_used' if an (eq_attr "length" ...) was used
3885 walk_attr_value (rtx exp
)
3894 code
= GET_CODE (exp
);
3898 if (! ATTR_IND_SIMPLIFIED_P (exp
))
3899 /* Since this is an arbitrary expression, it can look at anything.
3900 However, constant expressions do not depend on any particular
3902 must_extract
= must_constrain
= 1;
3911 must_extract
= must_constrain
= 1;
3915 if (XSTR (exp
, 0) == alternative_name
)
3916 must_extract
= must_constrain
= 1;
3917 else if (strcmp_check (XSTR (exp
, 0), length_str
) == 0)
3937 for (i
= 0, fmt
= GET_RTX_FORMAT (code
); i
< GET_RTX_LENGTH (code
); i
++)
3942 walk_attr_value (XEXP (exp
, i
));
3946 if (XVEC (exp
, i
) != NULL
)
3947 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
3948 walk_attr_value (XVECEXP (exp
, i
, j
));
3953 /* Write out a function to obtain the attribute for a given INSN. */
3956 write_attr_get (FILE *outf
, struct attr_desc
*attr
)
3958 struct attr_value
*av
, *common_av
;
3961 /* Find the most used attribute value. Handle that as the `default' of the
3962 switch we will generate. */
3963 common_av
= find_most_used (attr
);
3965 /* Write out start of function, then all values with explicit `case' lines,
3966 then a `default', then the value with the most uses. */
3967 if (attr
->enum_name
)
3968 fprintf (outf
, "enum %s\n", attr
->enum_name
);
3969 else if (!attr
->is_numeric
)
3970 fprintf (outf
, "enum attr_%s\n", attr
->name
);
3972 fprintf (outf
, "int\n");
3974 /* If the attribute name starts with a star, the remainder is the name of
3975 the subroutine to use, instead of `get_attr_...'. */
3976 if (attr
->name
[0] == '*')
3977 fprintf (outf
, "%s (rtx_insn *insn ATTRIBUTE_UNUSED)\n", &attr
->name
[1]);
3978 else if (attr
->is_const
== 0)
3979 fprintf (outf
, "get_attr_%s (rtx_insn *insn ATTRIBUTE_UNUSED)\n", attr
->name
);
3982 fprintf (outf
, "get_attr_%s (void)\n", attr
->name
);
3983 fprintf (outf
, "{\n");
3985 for (av
= attr
->first_value
; av
; av
= av
->next
)
3986 if (av
->num_insns
== 1)
3987 write_attr_set (outf
, attr
, 2, av
->value
, "return", ";",
3988 true_rtx
, av
->first_insn
->def
->insn_code
,
3989 av
->first_insn
->def
->insn_index
, 0);
3990 else if (av
->num_insns
!= 0)
3991 write_attr_set (outf
, attr
, 2, av
->value
, "return", ";",
3992 true_rtx
, -2, 0, 0);
3994 fprintf (outf
, "}\n\n");
3998 fprintf (outf
, "{\n");
4000 /* Find attributes that are worth caching in the conditions. */
4001 cached_attr_count
= 0;
4002 attrs_seen_more_than_once
= 0;
4003 for (av
= attr
->first_value
; av
; av
= av
->next
)
4005 attrs_seen_once
= 0;
4006 find_attrs_to_cache (av
->value
, true);
4008 /* Remove those that aren't worth caching from the array. */
4009 for (i
= 0, j
= 0; i
< cached_attr_count
; i
++)
4010 if ((attrs_seen_more_than_once
& (1U << i
)) != 0)
4012 const char *name
= cached_attrs
[i
];
4013 struct attr_desc
*cached_attr
;
4015 cached_attrs
[j
] = name
;
4016 cached_attr
= find_attr (&name
, 0);
4017 gcc_assert (cached_attr
&& cached_attr
->is_const
== 0);
4018 if (cached_attr
->enum_name
)
4019 fprintf (outf
, " enum %s", cached_attr
->enum_name
);
4020 else if (!cached_attr
->is_numeric
)
4021 fprintf (outf
, " enum attr_%s", cached_attr
->name
);
4023 fprintf (outf
, " int");
4024 fprintf (outf
, " cached_%s ATTRIBUTE_UNUSED;\n", name
);
4027 cached_attr_count
= j
;
4028 if (cached_attr_count
)
4029 fprintf (outf
, "\n");
4031 fprintf (outf
, " switch (recog_memoized (insn))\n");
4032 fprintf (outf
, " {\n");
4034 for (av
= attr
->first_value
; av
; av
= av
->next
)
4035 if (av
!= common_av
)
4036 write_attr_case (outf
, attr
, av
, 1, "return", ";", 4, true_rtx
);
4038 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4039 fprintf (outf
, " }\n}\n\n");
4040 cached_attr_count
= 0;
4043 /* Given an AND tree of known true terms (because we are inside an `if' with
4044 that as the condition or are in an `else' clause) and an expression,
4045 replace any known true terms with TRUE. Use `simplify_and_tree' to do
4046 the bulk of the work. */
4049 eliminate_known_true (rtx known_true
, rtx exp
, int insn_code
, int insn_index
)
4053 known_true
= SIMPLIFY_TEST_EXP (known_true
, insn_code
, insn_index
);
4055 if (GET_CODE (known_true
) == AND
)
4057 exp
= eliminate_known_true (XEXP (known_true
, 0), exp
,
4058 insn_code
, insn_index
);
4059 exp
= eliminate_known_true (XEXP (known_true
, 1), exp
,
4060 insn_code
, insn_index
);
4065 exp
= simplify_and_tree (exp
, &term
, insn_code
, insn_index
);
4071 /* Write out a series of tests and assignment statements to perform tests and
4072 sets of an attribute value. We are passed an indentation amount and prefix
4073 and suffix strings to write around each attribute value (e.g., "return"
4077 write_attr_set (FILE *outf
, struct attr_desc
*attr
, int indent
, rtx value
,
4078 const char *prefix
, const char *suffix
, rtx known_true
,
4079 int insn_code
, int insn_index
, unsigned int attrs_cached
)
4081 if (GET_CODE (value
) == COND
)
4083 /* Assume the default value will be the default of the COND unless we
4084 find an always true expression. */
4085 rtx default_val
= XEXP (value
, 1);
4086 rtx our_known_true
= known_true
;
4091 if (cached_attr_count
)
4093 attrs_seen_once
= 0;
4094 attrs_seen_more_than_once
= 0;
4095 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4096 find_attrs_to_cache (XVECEXP (value
, 0, i
), false);
4097 attrs_to_cache
|= attrs_seen_more_than_once
;
4100 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4105 /* Reset our_known_true after some time to not accumulate
4106 too much cruft (slowing down genattrtab). */
4108 our_known_true
= known_true
;
4109 testexp
= eliminate_known_true (our_known_true
,
4110 XVECEXP (value
, 0, i
),
4111 insn_code
, insn_index
);
4112 newexp
= attr_rtx (NOT
, testexp
);
4113 newexp
= insert_right_side (AND
, our_known_true
, newexp
,
4114 insn_code
, insn_index
);
4116 /* If the test expression is always true or if the next `known_true'
4117 expression is always false, this is the last case, so break
4118 out and let this value be the `else' case. */
4119 if (testexp
== true_rtx
|| newexp
== false_rtx
)
4121 default_val
= XVECEXP (value
, 0, i
+ 1);
4125 /* Compute the expression to pass to our recursive call as being
4127 inner_true
= insert_right_side (AND
, our_known_true
,
4128 testexp
, insn_code
, insn_index
);
4130 /* If this is always false, skip it. */
4131 if (inner_true
== false_rtx
)
4134 attrs_cached_inside
= attrs_cached
;
4135 attrs_cached_after
= attrs_cached
;
4136 write_indent (outf
, indent
);
4137 fprintf (outf
, "%sif ", first_if
? "" : "else ");
4139 write_test_expr (outf
, testexp
, attrs_cached
,
4140 (FLG_AFTER
| FLG_INSIDE
| FLG_OUTSIDE_AND
));
4141 attrs_cached
= attrs_cached_after
;
4142 fprintf (outf
, "\n");
4143 write_indent (outf
, indent
+ 2);
4144 fprintf (outf
, "{\n");
4146 write_attr_set (outf
, attr
, indent
+ 4,
4147 XVECEXP (value
, 0, i
+ 1), prefix
, suffix
,
4148 inner_true
, insn_code
, insn_index
,
4149 attrs_cached_inside
);
4150 write_indent (outf
, indent
+ 2);
4151 fprintf (outf
, "}\n");
4152 our_known_true
= newexp
;
4157 write_indent (outf
, indent
);
4158 fprintf (outf
, "else\n");
4159 write_indent (outf
, indent
+ 2);
4160 fprintf (outf
, "{\n");
4163 write_attr_set (outf
, attr
, first_if
? indent
: indent
+ 4, default_val
,
4164 prefix
, suffix
, our_known_true
, insn_code
, insn_index
,
4169 write_indent (outf
, indent
+ 2);
4170 fprintf (outf
, "}\n");
4175 write_indent (outf
, indent
);
4176 fprintf (outf
, "%s ", prefix
);
4177 write_attr_value (outf
, attr
, value
);
4178 fprintf (outf
, "%s\n", suffix
);
4182 /* Write a series of case statements for every instruction in list IE.
4183 INDENT is the amount of indentation to write before each case. */
4186 write_insn_cases (FILE *outf
, struct insn_ent
*ie
, int indent
)
4188 for (; ie
!= 0; ie
= ie
->next
)
4189 if (ie
->def
->insn_code
!= -1)
4191 write_indent (outf
, indent
);
4192 if (GET_CODE (ie
->def
->def
) == DEFINE_PEEPHOLE
)
4193 fprintf (outf
, "case %d: /* define_peephole, %s:%d */\n",
4194 ie
->def
->insn_code
, ie
->def
->loc
.filename
,
4195 ie
->def
->loc
.lineno
);
4197 fprintf (outf
, "case %d: /* %s */\n",
4198 ie
->def
->insn_code
, XSTR (ie
->def
->def
, 0));
4202 /* Write out the computation for one attribute value. */
4205 write_attr_case (FILE *outf
, struct attr_desc
*attr
, struct attr_value
*av
,
4206 int write_case_lines
, const char *prefix
, const char *suffix
,
4207 int indent
, rtx known_true
)
4209 if (av
->num_insns
== 0)
4212 if (av
->has_asm_insn
)
4214 write_indent (outf
, indent
);
4215 fprintf (outf
, "case -1:\n");
4216 write_indent (outf
, indent
+ 2);
4217 fprintf (outf
, "if (GET_CODE (PATTERN (insn)) != ASM_INPUT\n");
4218 write_indent (outf
, indent
+ 2);
4219 fprintf (outf
, " && asm_noperands (PATTERN (insn)) < 0)\n");
4220 write_indent (outf
, indent
+ 2);
4221 fprintf (outf
, " fatal_insn_not_found (insn);\n");
4222 write_indent (outf
, indent
+ 2);
4223 fprintf (outf
, "/* FALLTHRU */\n");
4226 if (write_case_lines
)
4227 write_insn_cases (outf
, av
->first_insn
, indent
);
4230 write_indent (outf
, indent
);
4231 fprintf (outf
, "default:\n");
4234 /* See what we have to do to output this value. */
4235 must_extract
= must_constrain
= address_used
= 0;
4236 walk_attr_value (av
->value
);
4240 write_indent (outf
, indent
+ 2);
4241 fprintf (outf
, "extract_constrain_insn_cached (insn);\n");
4243 else if (must_extract
)
4245 write_indent (outf
, indent
+ 2);
4246 fprintf (outf
, "extract_insn_cached (insn);\n");
4250 if (av
->num_insns
== 1)
4251 write_attr_set (outf
, attr
, indent
+ 2, av
->value
, prefix
, suffix
,
4252 known_true
, av
->first_insn
->def
->insn_code
,
4253 av
->first_insn
->def
->insn_index
, 0);
4255 write_attr_set (outf
, attr
, indent
+ 2, av
->value
, prefix
, suffix
,
4256 known_true
, -2, 0, 0);
4258 if (strncmp (prefix
, "return", 6))
4260 write_indent (outf
, indent
+ 2);
4261 fprintf (outf
, "break;\n");
4263 fprintf (outf
, "\n");
4266 /* Utilities to write in various forms. */
4269 write_attr_valueq (FILE *outf
, struct attr_desc
*attr
, const char *s
)
4271 if (attr
->is_numeric
)
4275 fprintf (outf
, "%d", num
);
4277 if (num
> 9 || num
< 0)
4278 fprintf (outf
, " /* %#x */", num
);
4282 write_upcase (outf
, attr
->enum_name
? attr
->enum_name
: attr
->name
);
4283 fprintf (outf
, "_");
4284 write_upcase (outf
, s
);
4289 write_attr_value (FILE *outf
, struct attr_desc
*attr
, rtx value
)
4293 switch (GET_CODE (value
))
4296 write_attr_valueq (outf
, attr
, XSTR (value
, 0));
4300 fprintf (outf
, HOST_WIDE_INT_PRINT_DEC
, INTVAL (value
));
4304 rtx_reader_ptr
->fprint_c_condition (outf
, XSTR (value
, 0));
4309 struct attr_desc
*attr2
= find_attr (&XSTR (value
, 0), 0);
4310 if (attr
->enum_name
)
4311 fprintf (outf
, "(enum %s)", attr
->enum_name
);
4312 else if (!attr
->is_numeric
)
4313 fprintf (outf
, "(enum attr_%s)", attr
->name
);
4314 else if (!attr2
->is_numeric
)
4315 fprintf (outf
, "(int)");
4317 fprintf (outf
, "get_attr_%s (%s)", attr2
->name
,
4318 (attr2
->is_const
? "" : "insn"));
4339 write_attr_value (outf
, attr
, XEXP (value
, 0));
4343 write_attr_value (outf
, attr
, XEXP (value
, 1));
4352 write_upcase (FILE *outf
, const char *str
)
4356 /* The argument of TOUPPER should not have side effects. */
4357 fputc (TOUPPER (*str
), outf
);
4363 write_indent (FILE *outf
, int indent
)
4365 for (; indent
> 8; indent
-= 8)
4366 fprintf (outf
, "\t");
4368 for (; indent
; indent
--)
4369 fprintf (outf
, " ");
4372 /* If the target does not have annul-true or annul-false delay slots, this
4373 function will create a dummy eligible_for function on OUTF which always
4374 returns false. KIND will be annul_true or annul_false. */
4377 write_dummy_eligible_delay (FILE *outf
, const char *kind
)
4379 /* Write function prelude. */
4381 fprintf (outf
, "int\n");
4382 fprintf (outf
, "eligible_for_%s (rtx_insn *delay_insn ATTRIBUTE_UNUSED,\n"
4383 " int slot ATTRIBUTE_UNUSED,\n"
4384 " rtx_insn *candidate_insn ATTRIBUTE_UNUSED,\n"
4385 " int flags ATTRIBUTE_UNUSED)\n",
4387 fprintf (outf
, "{\n");
4388 fprintf (outf
, " return 0;\n");
4389 fprintf (outf
, "}\n\n");
4392 /* Write a subroutine that is given an insn that requires a delay slot, a
4393 delay slot ordinal, and a candidate insn. It returns nonzero if the
4394 candidate can be placed in the specified delay slot of the insn.
4396 We can write as many as three subroutines. `eligible_for_delay'
4397 handles normal delay slots, `eligible_for_annul_true' indicates that
4398 the specified insn can be annulled if the branch is true, and likewise
4399 for `eligible_for_annul_false'.
4401 KIND is a string distinguishing these three cases ("delay", "annul_true",
4402 or "annul_false"). */
4405 write_eligible_delay (FILE *outf
, const char *kind
)
4407 struct delay_desc
*delay
;
4411 struct attr_desc
*attr
;
4412 struct attr_value
*av
, *common_av
;
4415 /* Compute the maximum number of delay slots required. We use the delay
4416 ordinal times this number plus one, plus the slot number as an index into
4417 the appropriate predicate to test. */
4419 for (delay
= delays
, max_slots
= 0; delay
; delay
= delay
->next
)
4420 if (XVECLEN (delay
->def
, 1) / 3 > max_slots
)
4421 max_slots
= XVECLEN (delay
->def
, 1) / 3;
4423 /* Write function prelude. */
4425 fprintf (outf
, "int\n");
4426 fprintf (outf
, "eligible_for_%s (rtx_insn *delay_insn ATTRIBUTE_UNUSED, int slot, \n"
4427 " rtx_insn *candidate_insn, int flags ATTRIBUTE_UNUSED)\n",
4429 fprintf (outf
, "{\n");
4430 fprintf (outf
, " rtx_insn *insn ATTRIBUTE_UNUSED;\n");
4431 fprintf (outf
, "\n");
4432 fprintf (outf
, " if (num_delay_slots (delay_insn) == 0)\n");
4433 fprintf (outf
, " return 0;");
4434 fprintf (outf
, "\n");
4435 fprintf (outf
, " gcc_assert (slot < %d);\n", max_slots
);
4436 fprintf (outf
, "\n");
4437 /* Allow dbr_schedule to pass labels, etc. This can happen if try_split
4438 converts a compound instruction into a loop. */
4439 fprintf (outf
, " if (!INSN_P (candidate_insn))\n");
4440 fprintf (outf
, " return 0;\n");
4441 fprintf (outf
, "\n");
4443 /* If more than one delay type, find out which type the delay insn is. */
4447 attr
= find_attr (&delay_type_str
, 0);
4449 common_av
= find_most_used (attr
);
4451 fprintf (outf
, " insn = delay_insn;\n");
4452 fprintf (outf
, " switch (recog_memoized (insn))\n");
4453 fprintf (outf
, " {\n");
4455 sprintf (str
, " * %d;\n break;", max_slots
);
4456 for (av
= attr
->first_value
; av
; av
= av
->next
)
4457 if (av
!= common_av
)
4458 write_attr_case (outf
, attr
, av
, 1, "slot +=", str
, 4, true_rtx
);
4460 write_attr_case (outf
, attr
, common_av
, 0, "slot +=", str
, 4, true_rtx
);
4461 fprintf (outf
, " }\n\n");
4463 /* Ensure matched. Otherwise, shouldn't have been called. */
4464 fprintf (outf
, " gcc_assert (slot >= %d);\n\n", max_slots
);
4467 /* If just one type of delay slot, write simple switch. */
4468 if (num_delays
== 1 && max_slots
== 1)
4470 fprintf (outf
, " insn = candidate_insn;\n");
4471 fprintf (outf
, " switch (recog_memoized (insn))\n");
4472 fprintf (outf
, " {\n");
4474 attr
= find_attr (&delay_1_0_str
, 0);
4476 common_av
= find_most_used (attr
);
4478 for (av
= attr
->first_value
; av
; av
= av
->next
)
4479 if (av
!= common_av
)
4480 write_attr_case (outf
, attr
, av
, 1, "return", ";", 4, true_rtx
);
4482 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4483 fprintf (outf
, " }\n");
4488 /* Write a nested CASE. The first indicates which condition we need to
4489 test, and the inner CASE tests the condition. */
4490 fprintf (outf
, " insn = candidate_insn;\n");
4491 fprintf (outf
, " switch (slot)\n");
4492 fprintf (outf
, " {\n");
4494 for (delay
= delays
; delay
; delay
= delay
->next
)
4495 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
4497 fprintf (outf
, " case %d:\n",
4498 (i
/ 3) + (num_delays
== 1 ? 0 : delay
->num
* max_slots
));
4499 fprintf (outf
, " switch (recog_memoized (insn))\n");
4500 fprintf (outf
, "\t{\n");
4502 sprintf (str
, "*%s_%d_%d", kind
, delay
->num
, i
/ 3);
4504 attr
= find_attr (&pstr
, 0);
4506 common_av
= find_most_used (attr
);
4508 for (av
= attr
->first_value
; av
; av
= av
->next
)
4509 if (av
!= common_av
)
4510 write_attr_case (outf
, attr
, av
, 1, "return", ";", 8, true_rtx
);
4512 write_attr_case (outf
, attr
, common_av
, 0, "return", ";", 8, true_rtx
);
4513 fprintf (outf
, " }\n");
4516 fprintf (outf
, " default:\n");
4517 fprintf (outf
, " gcc_unreachable ();\n");
4518 fprintf (outf
, " }\n");
4521 fprintf (outf
, "}\n\n");
4524 /* This page contains miscellaneous utility routines. */
4526 /* Given a pointer to a (char *), return a malloc'ed string containing the
4527 next comma-separated element. Advance the pointer to after the string
4528 scanned, or the end-of-string. Return NULL if at end of string. */
4531 next_comma_elt (const char **pstr
)
4535 start
= scan_comma_elt (pstr
);
4540 return attr_string (start
, *pstr
- start
);
4543 /* Return a `struct attr_desc' pointer for a given named attribute. If CREATE
4544 is nonzero, build a new attribute, if one does not exist. *NAME_P is
4545 replaced by a pointer to a canonical copy of the string. */
4547 static struct attr_desc
*
4548 find_attr (const char **name_p
, int create
)
4550 struct attr_desc
*attr
;
4552 const char *name
= *name_p
;
4554 /* Before we resort to using `strcmp', see if the string address matches
4555 anywhere. In most cases, it should have been canonicalized to do so. */
4556 if (name
== alternative_name
)
4559 index
= name
[0] & (MAX_ATTRS_INDEX
- 1);
4560 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
4561 if (name
== attr
->name
)
4564 /* Otherwise, do it the slow way. */
4565 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
4566 if (name
[0] == attr
->name
[0] && ! strcmp (name
, attr
->name
))
4568 *name_p
= attr
->name
;
4575 attr
= oballoc (struct attr_desc
);
4576 attr
->name
= DEF_ATTR_STRING (name
);
4577 attr
->enum_name
= 0;
4578 attr
->first_value
= attr
->default_val
= NULL
;
4579 attr
->is_numeric
= attr
->is_const
= attr
->is_special
= 0;
4580 attr
->next
= attrs
[index
];
4581 attrs
[index
] = attr
;
4583 *name_p
= attr
->name
;
4588 /* Create internal attribute with the given default value. */
4591 make_internal_attr (const char *name
, rtx value
, int special
)
4593 struct attr_desc
*attr
;
4595 attr
= find_attr (&name
, 1);
4596 gcc_assert (!attr
->default_val
);
4598 attr
->is_numeric
= 1;
4600 attr
->is_special
= (special
& ATTR_SPECIAL
) != 0;
4601 attr
->default_val
= get_attr_value (file_location ("<internal>", 0, 0),
4605 /* Find the most used value of an attribute. */
4607 static struct attr_value
*
4608 find_most_used (struct attr_desc
*attr
)
4610 struct attr_value
*av
;
4611 struct attr_value
*most_used
;
4617 for (av
= attr
->first_value
; av
; av
= av
->next
)
4618 if (av
->num_insns
> nuses
)
4619 nuses
= av
->num_insns
, most_used
= av
;
4624 /* Return (attr_value "n") */
4627 make_numeric_value (int n
)
4629 static rtx int_values
[20];
4633 gcc_assert (n
>= 0);
4635 if (n
< 20 && int_values
[n
])
4636 return int_values
[n
];
4638 p
= attr_printf (MAX_DIGITS
, "%d", n
);
4639 exp
= attr_rtx (CONST_STRING
, p
);
4642 int_values
[n
] = exp
;
4648 copy_rtx_unchanging (rtx orig
)
4650 if (ATTR_IND_SIMPLIFIED_P (orig
) || ATTR_CURR_SIMPLIFIED_P (orig
))
4653 ATTR_CURR_SIMPLIFIED_P (orig
) = 1;
4657 /* Determine if an insn has a constant number of delay slots, i.e., the
4658 number of delay slots is not a function of the length of the insn. */
4661 write_const_num_delay_slots (FILE *outf
)
4663 struct attr_desc
*attr
= find_attr (&num_delay_slots_str
, 0);
4664 struct attr_value
*av
;
4668 fprintf (outf
, "int\nconst_num_delay_slots (rtx_insn *insn)\n");
4669 fprintf (outf
, "{\n");
4670 fprintf (outf
, " switch (recog_memoized (insn))\n");
4671 fprintf (outf
, " {\n");
4673 for (av
= attr
->first_value
; av
; av
= av
->next
)
4676 walk_attr_value (av
->value
);
4678 write_insn_cases (outf
, av
->first_insn
, 4);
4681 fprintf (outf
, " default:\n");
4682 fprintf (outf
, " return 1;\n");
4683 fprintf (outf
, " }\n}\n\n");
4687 /* Synthetic attributes used by insn-automata.c and the scheduler.
4688 These are primarily concerned with (define_insn_reservation)
4693 struct insn_reserv
*next
;
4696 int default_latency
;
4699 /* Sequence number of this insn. */
4702 /* Whether a (define_bypass) construct names this insn in its
4707 static struct insn_reserv
*all_insn_reservs
= 0;
4708 static struct insn_reserv
**last_insn_reserv_p
= &all_insn_reservs
;
4709 static size_t n_insn_reservs
;
4711 /* Store information from a DEFINE_INSN_RESERVATION for future
4712 attribute generation. */
4714 gen_insn_reserv (md_rtx_info
*info
)
4716 struct insn_reserv
*decl
= oballoc (struct insn_reserv
);
4717 rtx def
= info
->def
;
4719 struct attr_desc attr
= { };
4721 attr
.name
= DEF_ATTR_STRING (XSTR (def
, 0));
4722 attr
.loc
= info
->loc
;
4724 decl
->name
= DEF_ATTR_STRING (XSTR (def
, 0));
4725 decl
->default_latency
= XINT (def
, 1);
4726 decl
->condexp
= check_attr_test (info
->loc
, XEXP (def
, 2), &attr
);
4727 decl
->insn_num
= n_insn_reservs
;
4728 decl
->bypassed
= false;
4731 *last_insn_reserv_p
= decl
;
4732 last_insn_reserv_p
= &decl
->next
;
4736 /* Store information from a DEFINE_BYPASS for future attribute
4737 generation. The only thing we care about is the list of output
4738 insns, which will later be used to tag reservation structures with
4739 a 'bypassed' bit. */
4743 struct bypass_list
*next
;
4744 const char *pattern
;
4747 static struct bypass_list
*all_bypasses
;
4748 static size_t n_bypasses
;
4749 static size_t n_bypassed
;
4752 gen_bypass_1 (const char *s
, size_t len
)
4754 struct bypass_list
*b
;
4759 s
= attr_string (s
, len
);
4760 for (b
= all_bypasses
; b
; b
= b
->next
)
4761 if (s
== b
->pattern
)
4762 return; /* already got that one */
4764 b
= oballoc (struct bypass_list
);
4766 b
->next
= all_bypasses
;
4772 gen_bypass (md_rtx_info
*info
)
4774 const char *p
, *base
;
4776 rtx def
= info
->def
;
4777 for (p
= base
= XSTR (def
, 1); *p
; p
++)
4780 gen_bypass_1 (base
, p
- base
);
4783 while (ISSPACE (*p
));
4786 gen_bypass_1 (base
, p
- base
);
4789 /* Find and mark all of the bypassed insns. */
4791 process_bypasses (void)
4793 struct bypass_list
*b
;
4794 struct insn_reserv
*r
;
4798 /* The reservation list is likely to be much longer than the bypass
4800 for (r
= all_insn_reservs
; r
; r
= r
->next
)
4801 for (b
= all_bypasses
; b
; b
= b
->next
)
4802 if (fnmatch (b
->pattern
, r
->name
, 0) == 0)
4810 /* Check that attribute NAME is used in define_insn_reservation condition
4811 EXP. Return true if it is. */
4813 check_tune_attr (const char *name
, rtx exp
)
4815 switch (GET_CODE (exp
))
4818 if (check_tune_attr (name
, XEXP (exp
, 0)))
4820 return check_tune_attr (name
, XEXP (exp
, 1));
4823 return (check_tune_attr (name
, XEXP (exp
, 0))
4824 && check_tune_attr (name
, XEXP (exp
, 1)));
4827 return XSTR (exp
, 0) == name
;
4834 /* Try to find a const attribute (usually cpu or tune) that is used
4835 in all define_insn_reservation conditions. */
4836 static struct attr_desc
*
4837 find_tune_attr (rtx exp
)
4839 struct attr_desc
*attr
;
4841 switch (GET_CODE (exp
))
4845 attr
= find_tune_attr (XEXP (exp
, 0));
4848 return find_tune_attr (XEXP (exp
, 1));
4851 if (XSTR (exp
, 0) == alternative_name
)
4854 attr
= find_attr (&XSTR (exp
, 0), 0);
4857 if (attr
->is_const
&& !attr
->is_special
)
4859 struct insn_reserv
*decl
;
4861 for (decl
= all_insn_reservs
; decl
; decl
= decl
->next
)
4862 if (! check_tune_attr (attr
->name
, decl
->condexp
))
4873 /* Create all of the attributes that describe automaton properties.
4874 Write the DFA and latency function prototypes to the files that
4875 need to have them, and write the init_sched_attrs(). */
4878 make_automaton_attrs (void)
4881 struct insn_reserv
*decl
;
4882 rtx code_exp
, lats_exp
, byps_exp
;
4883 struct attr_desc
*tune_attr
;
4885 if (n_insn_reservs
== 0)
4888 tune_attr
= find_tune_attr (all_insn_reservs
->condexp
);
4889 if (tune_attr
!= NULL
)
4891 rtx
*condexps
= XNEWVEC (rtx
, n_insn_reservs
* 3);
4892 struct attr_value
*val
;
4895 gcc_assert (tune_attr
->is_const
4896 && !tune_attr
->is_special
4897 && !tune_attr
->is_numeric
);
4899 /* Write the prototypes for all DFA functions. */
4900 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
4902 if (val
== tune_attr
->default_val
)
4904 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
4906 "extern int internal_dfa_insn_code_%s (rtx_insn *);\n",
4907 XSTR (val
->value
, 0));
4909 fprintf (dfa_file
, "\n");
4911 /* Write the prototypes for all latency functions. */
4912 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
4914 if (val
== tune_attr
->default_val
)
4916 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
4917 fprintf (latency_file
,
4918 "extern int insn_default_latency_%s (rtx_insn *);\n",
4919 XSTR (val
->value
, 0));
4921 fprintf (latency_file
, "\n");
4923 /* Write the prototypes for all automaton functions. */
4924 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
4926 if (val
== tune_attr
->default_val
)
4928 gcc_assert (GET_CODE (val
->value
) == CONST_STRING
);
4930 "extern int internal_dfa_insn_code_%s (rtx_insn *);\n"
4931 "extern int insn_default_latency_%s (rtx_insn *);\n",
4932 XSTR (val
->value
, 0), XSTR (val
->value
, 0));
4934 fprintf (attr_file
, "\n");
4935 fprintf (attr_file
, "int (*internal_dfa_insn_code) (rtx_insn *);\n");
4936 fprintf (attr_file
, "int (*insn_default_latency) (rtx_insn *);\n");
4937 fprintf (attr_file
, "\n");
4938 fprintf (attr_file
, "void\n");
4939 fprintf (attr_file
, "init_sched_attrs (void)\n");
4940 fprintf (attr_file
, "{\n");
4942 for (val
= tune_attr
->first_value
; val
; val
= val
->next
)
4946 rtx test
= attr_eq (tune_attr
->name
, XSTR (val
->value
, 0));
4948 if (val
== tune_attr
->default_val
)
4950 for (decl
= all_insn_reservs
, i
= 0;
4956 = simplify_and_tree (decl
->condexp
, &ctest
, -2, 0);
4957 if (condexp
== false_rtx
)
4959 if (condexp
== true_rtx
)
4961 condexps
[i
] = condexp
;
4962 condexps
[i
+ 1] = make_numeric_value (decl
->insn_num
);
4963 condexps
[i
+ 2] = make_numeric_value (decl
->default_latency
);
4967 code_exp
= rtx_alloc (COND
);
4968 lats_exp
= rtx_alloc (COND
);
4971 XVEC (code_exp
, 0) = rtvec_alloc (j
);
4972 XVEC (lats_exp
, 0) = rtvec_alloc (j
);
4976 XEXP (code_exp
, 1) = make_numeric_value (decl
->insn_num
);
4977 XEXP (lats_exp
, 1) = make_numeric_value (decl
->default_latency
);
4981 XEXP (code_exp
, 1) = make_numeric_value (n_insn_reservs
+ 1);
4982 XEXP (lats_exp
, 1) = make_numeric_value (0);
4989 XVECEXP (code_exp
, 0, j
) = condexps
[i
];
4990 XVECEXP (lats_exp
, 0, j
) = condexps
[i
];
4992 XVECEXP (code_exp
, 0, j
+ 1) = condexps
[i
+ 1];
4993 XVECEXP (lats_exp
, 0, j
+ 1) = condexps
[i
+ 2];
4996 name
= XNEWVEC (char,
4997 sizeof ("*internal_dfa_insn_code_")
4998 + strlen (XSTR (val
->value
, 0)));
4999 strcpy (name
, "*internal_dfa_insn_code_");
5000 strcat (name
, XSTR (val
->value
, 0));
5001 make_internal_attr (name
, code_exp
, ATTR_NONE
);
5002 strcpy (name
, "*insn_default_latency_");
5003 strcat (name
, XSTR (val
->value
, 0));
5004 make_internal_attr (name
, lats_exp
, ATTR_NONE
);
5009 fprintf (attr_file
, " if (");
5013 fprintf (attr_file
, " else if (");
5014 write_test_expr (attr_file
, test
, 0, 0);
5015 fprintf (attr_file
, ")\n");
5016 fprintf (attr_file
, " {\n");
5017 fprintf (attr_file
, " internal_dfa_insn_code\n");
5018 fprintf (attr_file
, " = internal_dfa_insn_code_%s;\n",
5019 XSTR (val
->value
, 0));
5020 fprintf (attr_file
, " insn_default_latency\n");
5021 fprintf (attr_file
, " = insn_default_latency_%s;\n",
5022 XSTR (val
->value
, 0));
5023 fprintf (attr_file
, " }\n");
5026 fprintf (attr_file
, " else\n");
5027 fprintf (attr_file
, " gcc_unreachable ();\n");
5028 fprintf (attr_file
, "}\n");
5029 fprintf (attr_file
, "\n");
5031 XDELETEVEC (condexps
);
5035 code_exp
= rtx_alloc (COND
);
5036 lats_exp
= rtx_alloc (COND
);
5038 XVEC (code_exp
, 0) = rtvec_alloc (n_insn_reservs
* 2);
5039 XVEC (lats_exp
, 0) = rtvec_alloc (n_insn_reservs
* 2);
5041 XEXP (code_exp
, 1) = make_numeric_value (n_insn_reservs
+ 1);
5042 XEXP (lats_exp
, 1) = make_numeric_value (0);
5044 for (decl
= all_insn_reservs
, i
= 0;
5046 decl
= decl
->next
, i
+= 2)
5048 XVECEXP (code_exp
, 0, i
) = decl
->condexp
;
5049 XVECEXP (lats_exp
, 0, i
) = decl
->condexp
;
5051 XVECEXP (code_exp
, 0, i
+1) = make_numeric_value (decl
->insn_num
);
5052 XVECEXP (lats_exp
, 0, i
+1)
5053 = make_numeric_value (decl
->default_latency
);
5055 make_internal_attr ("*internal_dfa_insn_code", code_exp
, ATTR_NONE
);
5056 make_internal_attr ("*insn_default_latency", lats_exp
, ATTR_NONE
);
5059 if (n_bypasses
== 0)
5060 byps_exp
= make_numeric_value (0);
5063 process_bypasses ();
5065 byps_exp
= rtx_alloc (COND
);
5066 XVEC (byps_exp
, 0) = rtvec_alloc (n_bypassed
* 2);
5067 XEXP (byps_exp
, 1) = make_numeric_value (0);
5068 for (decl
= all_insn_reservs
, i
= 0;
5073 XVECEXP (byps_exp
, 0, i
) = decl
->condexp
;
5074 XVECEXP (byps_exp
, 0, i
+1) = make_numeric_value (1);
5079 make_internal_attr ("*bypass_p", byps_exp
, ATTR_NONE
);
5083 write_header (FILE *outf
)
5085 fprintf (outf
, "/* Generated automatically by the program `genattrtab'\n"
5086 " from the machine description file `md'. */\n\n");
5088 fprintf (outf
, "#define IN_TARGET_CODE 1\n");
5089 fprintf (outf
, "#include \"config.h\"\n");
5090 fprintf (outf
, "#include \"system.h\"\n");
5091 fprintf (outf
, "#include \"coretypes.h\"\n");
5092 fprintf (outf
, "#include \"backend.h\"\n");
5093 fprintf (outf
, "#include \"predict.h\"\n");
5094 fprintf (outf
, "#include \"tree.h\"\n");
5095 fprintf (outf
, "#include \"rtl.h\"\n");
5096 fprintf (outf
, "#include \"alias.h\"\n");
5097 fprintf (outf
, "#include \"options.h\"\n");
5098 fprintf (outf
, "#include \"varasm.h\"\n");
5099 fprintf (outf
, "#include \"stor-layout.h\"\n");
5100 fprintf (outf
, "#include \"calls.h\"\n");
5101 fprintf (outf
, "#include \"insn-attr.h\"\n");
5102 fprintf (outf
, "#include \"memmodel.h\"\n");
5103 fprintf (outf
, "#include \"tm_p.h\"\n");
5104 fprintf (outf
, "#include \"insn-config.h\"\n");
5105 fprintf (outf
, "#include \"recog.h\"\n");
5106 fprintf (outf
, "#include \"regs.h\"\n");
5107 fprintf (outf
, "#include \"real.h\"\n");
5108 fprintf (outf
, "#include \"output.h\"\n");
5109 fprintf (outf
, "#include \"toplev.h\"\n");
5110 fprintf (outf
, "#include \"flags.h\"\n");
5111 fprintf (outf
, "#include \"emit-rtl.h\"\n");
5112 fprintf (outf
, "\n");
5113 fprintf (outf
, "#define operands recog_data.operand\n\n");
5117 open_outfile (const char *file_name
)
5120 outf
= fopen (file_name
, "w");
5122 fatal ("cannot open file %s: %s", file_name
, xstrerror (errno
));
5123 write_header (outf
);
5128 handle_arg (const char *arg
)
5133 attr_file_name
= &arg
[2];
5136 dfa_file_name
= &arg
[2];
5139 latency_file_name
= &arg
[2];
5147 main (int argc
, const char **argv
)
5149 struct attr_desc
*attr
;
5150 struct insn_def
*id
;
5153 progname
= "genattrtab";
5155 if (!init_rtx_reader_args_cb (argc
, argv
, handle_arg
))
5156 return FATAL_EXIT_CODE
;
5158 attr_file
= open_outfile (attr_file_name
);
5159 dfa_file
= open_outfile (dfa_file_name
);
5160 latency_file
= open_outfile (latency_file_name
);
5162 obstack_init (hash_obstack
);
5163 obstack_init (temp_obstack
);
5165 /* Set up true and false rtx's */
5166 true_rtx
= rtx_alloc (CONST_INT
);
5167 XWINT (true_rtx
, 0) = 1;
5168 false_rtx
= rtx_alloc (CONST_INT
);
5169 XWINT (false_rtx
, 0) = 0;
5170 ATTR_IND_SIMPLIFIED_P (true_rtx
) = ATTR_IND_SIMPLIFIED_P (false_rtx
) = 1;
5171 ATTR_PERMANENT_P (true_rtx
) = ATTR_PERMANENT_P (false_rtx
) = 1;
5173 alternative_name
= DEF_ATTR_STRING ("alternative");
5174 length_str
= DEF_ATTR_STRING ("length");
5175 delay_type_str
= DEF_ATTR_STRING ("*delay_type");
5176 delay_1_0_str
= DEF_ATTR_STRING ("*delay_1_0");
5177 num_delay_slots_str
= DEF_ATTR_STRING ("*num_delay_slots");
5179 /* Read the machine description. */
5182 while (read_md_rtx (&info
))
5184 switch (GET_CODE (info
.def
))
5187 case DEFINE_PEEPHOLE
:
5188 case DEFINE_ASM_ATTRIBUTES
:
5193 case DEFINE_ENUM_ATTR
:
5201 case DEFINE_INSN_RESERVATION
:
5202 gen_insn_reserv (&info
);
5212 if (GET_CODE (info
.def
) != DEFINE_ASM_ATTRIBUTES
)
5213 insn_index_number
++;
5217 return FATAL_EXIT_CODE
;
5219 /* If we didn't have a DEFINE_ASM_ATTRIBUTES, make a null one. */
5220 if (! got_define_asm_attributes
)
5223 info
.def
= rtx_alloc (DEFINE_ASM_ATTRIBUTES
);
5224 XVEC (info
.def
, 0) = rtvec_alloc (0);
5225 info
.loc
= file_location ("<internal>", 0, 0);
5230 /* Expand DEFINE_DELAY information into new attribute. */
5233 /* Make `insn_alternatives'. */
5234 int num_insn_codes
= get_num_insn_codes ();
5235 insn_alternatives
= oballocvec (alternative_mask
, num_insn_codes
);
5236 for (id
= defs
; id
; id
= id
->next
)
5237 if (id
->insn_code
>= 0)
5238 insn_alternatives
[id
->insn_code
]
5239 = (((alternative_mask
) 1) << id
->num_alternatives
) - 1;
5241 /* Make `insn_n_alternatives'. */
5242 insn_n_alternatives
= oballocvec (int, num_insn_codes
);
5243 for (id
= defs
; id
; id
= id
->next
)
5244 if (id
->insn_code
>= 0)
5245 insn_n_alternatives
[id
->insn_code
] = id
->num_alternatives
;
5247 /* Construct extra attributes for automata. */
5248 make_automaton_attrs ();
5250 /* Prepare to write out attribute subroutines by checking everything stored
5251 away and building the attribute cases. */
5255 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5256 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5257 attr
->default_val
->value
5258 = check_attr_value (attr
->loc
, attr
->default_val
->value
, attr
);
5261 return FATAL_EXIT_CODE
;
5263 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5264 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5267 /* Construct extra attributes for `length'. */
5268 make_length_attrs ();
5270 /* Perform any possible optimizations to speed up compilation. */
5271 optimize_attrs (num_insn_codes
);
5273 /* Now write out all the `gen_attr_...' routines. Do these before the
5274 special routines so that they get defined before they are used. */
5276 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5277 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5281 #define IS_ATTR_GROUP(X) (!strncmp (attr->name, X, strlen (X)))
5282 if (IS_ATTR_GROUP ("*internal_dfa_insn_code"))
5284 else if (IS_ATTR_GROUP ("*insn_default_latency"))
5285 outf
= latency_file
;
5288 #undef IS_ATTR_GROUP
5290 if (! attr
->is_special
&& ! attr
->is_const
)
5291 write_attr_get (outf
, attr
);
5294 /* Write out delay eligibility information, if DEFINE_DELAY present.
5295 (The function to compute the number of delay slots will be written
5297 write_eligible_delay (attr_file
, "delay");
5298 if (have_annul_true
)
5299 write_eligible_delay (attr_file
, "annul_true");
5301 write_dummy_eligible_delay (attr_file
, "annul_true");
5302 if (have_annul_false
)
5303 write_eligible_delay (attr_file
, "annul_false");
5305 write_dummy_eligible_delay (attr_file
, "annul_false");
5307 /* Write out constant delay slot info. */
5308 write_const_num_delay_slots (attr_file
);
5310 write_length_unit_log (attr_file
);
5312 if (fclose (attr_file
) != 0)
5313 fatal ("cannot close file %s: %s", attr_file_name
, xstrerror (errno
));
5314 if (fclose (dfa_file
) != 0)
5315 fatal ("cannot close file %s: %s", dfa_file_name
, xstrerror (errno
));
5316 if (fclose (latency_file
) != 0)
5317 fatal ("cannot close file %s: %s", latency_file_name
, xstrerror (errno
));
5319 return SUCCESS_EXIT_CODE
;