1 /* Generate code from machine description to compute values of attributes.
2 Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
4 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* This program handles insn attributes and the DEFINE_DELAY and
24 DEFINE_FUNCTION_UNIT definitions.
26 It produces a series of functions named `get_attr_...', one for each insn
27 attribute. Each of these is given the rtx for an insn and returns a member
28 of the enum for the attribute.
30 These subroutines have the form of a `switch' on the INSN_CODE (via
31 `recog_memoized'). Each case either returns a constant attribute value
32 or a value that depends on tests on other attributes, the form of
33 operands, or some random C expression (encoded with a SYMBOL_REF
36 If the attribute `alternative', or a random C expression is present,
37 `constrain_operands' is called. If either of these cases of a reference to
38 an operand is found, `extract_insn' is called.
40 The special attribute `length' is also recognized. For this operand,
41 expressions involving the address of an operand or the current insn,
42 (address (pc)), are valid. In this case, an initial pass is made to
43 set all lengths that do not depend on address. Those that do are set to
44 the maximum length. Then each insn that depends on an address is checked
45 and possibly has its length changed. The process repeats until no further
46 changed are made. The resulting lengths are saved for use by
49 A special form of DEFINE_ATTR, where the expression for default value is a
50 CONST expression, indicates an attribute that is constant for a given run
51 of the compiler. The subroutine generated for these attributes has no
52 parameters as it does not depend on any particular insn. Constant
53 attributes are typically used to specify which variety of processor is
56 Internal attributes are defined to handle DEFINE_DELAY and
57 DEFINE_FUNCTION_UNIT. Special routines are output for these cases.
59 This program works by keeping a list of possible values for each attribute.
60 These include the basic attribute choices, default values for attribute, and
61 all derived quantities.
63 As the description file is read, the definition for each insn is saved in a
64 `struct insn_def'. When the file reading is complete, a `struct insn_ent'
65 is created for each insn and chained to the corresponding attribute value,
66 either that specified, or the default.
68 An optimization phase is then run. This simplifies expressions for each
69 insn. EQ_ATTR tests are resolved, whenever possible, to a test that
70 indicates when the attribute has the specified value for the insn. This
71 avoids recursive calls during compilation.
73 The strategy used when processing DEFINE_DELAY and DEFINE_FUNCTION_UNIT
74 definitions is to create arbitrarily complex expressions and have the
75 optimization simplify them.
77 Once optimization is complete, any required routines and definitions
80 An optimization that is not yet implemented is to hoist the constant
81 expressions entirely out of the routines and definitions that are written.
82 A way to do this is to iterate over all possible combinations of values
83 for constant attributes and generate a set of functions for that given
84 combination. An initialization function would be written that evaluates
85 the attributes and installs the corresponding set of routines and
86 definitions (each would be accessed through a pointer).
88 We use the flags in an RTX as follows:
89 `unchanging' (RTX_UNCHANGING_P): This rtx is fully simplified
90 independent of the insn code.
91 `in_struct' (MEM_IN_STRUCT_P): This rtx is fully simplified
92 for the insn code currently being processed (see optimize_attrs).
93 `integrated' (RTX_INTEGRATED_P): This rtx is permanent and unique
95 `volatil' (MEM_VOLATILE_P): During simplify_by_exploding the value of an
96 EQ_ATTR rtx is true if !volatil and false if volatil. */
102 #include "gensupport.h"
104 #ifdef HAVE_SYS_RESOURCE_H
105 # include <sys/resource.h>
108 /* We must include obstack.h after <sys/time.h>, to avoid lossage with
109 /usr/include/sys/stdtypes.h on Sun OS 4.x. */
113 static struct obstack obstack1
, obstack2
;
114 struct obstack
*hash_obstack
= &obstack1
;
115 struct obstack
*temp_obstack
= &obstack2
;
117 #define obstack_chunk_alloc xmalloc
118 #define obstack_chunk_free free
120 /* enough space to reserve for printing out ints */
121 #define MAX_DIGITS (HOST_BITS_PER_INT * 3 / 10 + 3)
123 /* Define structures used to record attributes and values. */
125 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
126 encountered, we store all the relevant information into a
127 `struct insn_def'. This is done to allow attribute definitions to occur
128 anywhere in the file. */
132 struct insn_def
*next
; /* Next insn in chain. */
133 rtx def
; /* The DEFINE_... */
134 int insn_code
; /* Instruction number. */
135 int insn_index
; /* Expression numer in file, for errors. */
136 int lineno
; /* Line number. */
137 int num_alternatives
; /* Number of alternatives. */
138 int vec_idx
; /* Index of attribute vector in `def'. */
141 /* Once everything has been read in, we store in each attribute value a list
142 of insn codes that have that value. Here is the structure used for the
147 struct insn_ent
*next
; /* Next in chain. */
148 int insn_code
; /* Instruction number. */
149 int insn_index
; /* Index of definition in file */
150 int lineno
; /* Line number. */
153 /* Each value of an attribute (either constant or computed) is assigned a
154 structure which is used as the listhead of the insns that have that
159 rtx value
; /* Value of attribute. */
160 struct attr_value
*next
; /* Next attribute value in chain. */
161 struct insn_ent
*first_insn
; /* First insn with this value. */
162 int num_insns
; /* Number of insns with this value. */
163 int has_asm_insn
; /* True if this value used for `asm' insns */
166 /* Structure for each attribute. */
170 char *name
; /* Name of attribute. */
171 struct attr_desc
*next
; /* Next attribute. */
172 unsigned is_numeric
: 1; /* Values of this attribute are numeric. */
173 unsigned negative_ok
: 1; /* Allow negative numeric values. */
174 unsigned unsigned_p
: 1; /* Make the output function unsigned int. */
175 unsigned is_const
: 1; /* Attribute value constant for each run. */
176 unsigned is_special
: 1; /* Don't call `write_attr_set'. */
177 unsigned func_units_p
: 1; /* this is the function_units attribute */
178 unsigned blockage_p
: 1; /* this is the blockage range function */
179 struct attr_value
*first_value
; /* First value of this attribute. */
180 struct attr_value
*default_val
; /* Default value for this attribute. */
181 int lineno
; /* Line number. */
184 #define NULL_ATTR (struct attr_desc *) NULL
186 /* A range of values. */
194 /* Structure for each DEFINE_DELAY. */
198 rtx def
; /* DEFINE_DELAY expression. */
199 struct delay_desc
*next
; /* Next DEFINE_DELAY. */
200 int num
; /* Number of DEFINE_DELAY, starting at 1. */
201 int lineno
; /* Line number. */
204 /* Record information about each DEFINE_FUNCTION_UNIT. */
206 struct function_unit_op
208 rtx condexp
; /* Expression TRUE for applicable insn. */
209 struct function_unit_op
*next
; /* Next operation for this function unit. */
210 int num
; /* Ordinal for this operation type in unit. */
211 int ready
; /* Cost until data is ready. */
212 int issue_delay
; /* Cost until unit can accept another insn. */
213 rtx conflict_exp
; /* Expression TRUE for insns incurring issue delay. */
214 rtx issue_exp
; /* Expression computing issue delay. */
215 int lineno
; /* Line number. */
218 /* Record information about each function unit mentioned in a
219 DEFINE_FUNCTION_UNIT. */
223 const char *name
; /* Function unit name. */
224 struct function_unit
*next
; /* Next function unit. */
225 int num
; /* Ordinal of this unit type. */
226 int multiplicity
; /* Number of units of this type. */
227 int simultaneity
; /* Maximum number of simultaneous insns
228 on this function unit or 0 if unlimited. */
229 rtx condexp
; /* Expression TRUE for insn needing unit. */
230 int num_opclasses
; /* Number of different operation types. */
231 struct function_unit_op
*ops
; /* Pointer to first operation type. */
232 int needs_conflict_function
; /* Nonzero if a conflict function required. */
233 int needs_blockage_function
; /* Nonzero if a blockage function required. */
234 int needs_range_function
; /* Nonzero if blockage range function needed.*/
235 rtx default_cost
; /* Conflict cost, if constant. */
236 struct range issue_delay
; /* Range of issue delay values. */
237 int max_blockage
; /* Maximum time an insn blocks the unit. */
238 int first_lineno
; /* First seen line number. */
241 /* Listheads of above structures. */
243 /* This one is indexed by the first character of the attribute name. */
244 #define MAX_ATTRS_INDEX 256
245 static struct attr_desc
*attrs
[MAX_ATTRS_INDEX
];
246 static struct insn_def
*defs
;
247 static struct delay_desc
*delays
;
248 static struct function_unit
*units
;
250 /* An expression where all the unknown terms are EQ_ATTR tests can be
251 rearranged into a COND provided we can enumerate all possible
252 combinations of the unknown values. The set of combinations become the
253 tests of the COND; the value of the expression given that combination is
254 computed and becomes the corresponding value. To do this, we must be
255 able to enumerate all values for each attribute used in the expression
256 (currently, we give up if we find a numeric attribute).
258 If the set of EQ_ATTR tests used in an expression tests the value of N
259 different attributes, the list of all possible combinations can be made
260 by walking the N-dimensional attribute space defined by those
261 attributes. We record each of these as a struct dimension.
263 The algorithm relies on sharing EQ_ATTR nodes: if two nodes in an
264 expression are the same, the will also have the same address. We find
265 all the EQ_ATTR nodes by marking them MEM_VOLATILE_P. This bit later
266 represents the value of an EQ_ATTR node, so once all nodes are marked,
267 they are also given an initial value of FALSE.
269 We then separate the set of EQ_ATTR nodes into dimensions for each
270 attribute and put them on the VALUES list. Terms are added as needed by
271 `add_values_to_cover' so that all possible values of the attribute are
274 Each dimension also has a current value. This is the node that is
275 currently considered to be TRUE. If this is one of the nodes added by
276 `add_values_to_cover', all the EQ_ATTR tests in the original expression
277 will be FALSE. Otherwise, only the CURRENT_VALUE will be true.
279 NUM_VALUES is simply the length of the VALUES list and is there for
282 Once the dimensions are created, the algorithm enumerates all possible
283 values and computes the current value of the given expression. */
287 struct attr_desc
*attr
; /* Attribute for this dimension. */
288 rtx values
; /* List of attribute values used. */
289 rtx current_value
; /* Position in the list for the TRUE value. */
290 int num_values
; /* Length of the values list. */
293 /* Other variables. */
295 static int insn_code_number
;
296 static int insn_index_number
;
297 static int got_define_asm_attributes
;
298 static int must_extract
;
299 static int must_constrain
;
300 static int address_used
;
301 static int length_used
;
302 static int num_delays
;
303 static int have_annul_true
, have_annul_false
;
304 static int num_units
, num_unit_opclasses
;
305 static int num_insn_ents
;
307 /* Used as operand to `operate_exp': */
309 enum operator {PLUS_OP
, MINUS_OP
, POS_MINUS_OP
, EQ_OP
, OR_OP
, ORX_OP
, MAX_OP
, MIN_OP
, RANGE_OP
};
311 /* Stores, for each insn code, the number of constraint alternatives. */
313 static int *insn_n_alternatives
;
315 /* Stores, for each insn code, a bitmap that has bits on for each possible
318 static int *insn_alternatives
;
320 /* If nonzero, assume that the `alternative' attr has this value.
321 This is the hashed, unique string for the numeral
322 whose value is chosen alternative. */
324 static const char *current_alternative_string
;
326 /* Used to simplify expressions. */
328 static rtx true_rtx
, false_rtx
;
330 /* Used to reduce calls to `strcmp' */
332 static char *alternative_name
;
334 /* Indicate that REG_DEAD notes are valid if dead_or_set_p is ever
337 int reload_completed
= 0;
339 /* Some machines test `optimize' in macros called from rtlanal.c, so we need
340 to define it here. */
344 /* Simplify an expression. Only call the routine if there is something to
346 #define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \
347 (RTX_UNCHANGING_P (EXP) || MEM_IN_STRUCT_P (EXP) ? (EXP) \
348 : simplify_test_exp (EXP, INSN_CODE, INSN_INDEX))
350 /* Simplify (eq_attr ("alternative") ...)
351 when we are working with a particular alternative. */
352 #define SIMPLIFY_ALTERNATIVE(EXP) \
353 if (current_alternative_string \
354 && GET_CODE ((EXP)) == EQ_ATTR \
355 && XSTR ((EXP), 0) == alternative_name) \
356 (EXP) = (XSTR ((EXP), 1) == current_alternative_string \
357 ? true_rtx : false_rtx);
359 /* These are referenced by rtlanal.c and hence need to be defined somewhere.
360 They won't actually be used. */
362 rtx global_rtl
[GR_MAX
];
363 rtx pic_offset_table_rtx
;
365 static void attr_hash_add_rtx
PARAMS ((int, rtx
));
366 static void attr_hash_add_string
PARAMS ((int, char *));
367 static rtx attr_rtx
PARAMS ((enum rtx_code
, ...));
368 static char *attr_printf
PARAMS ((int, const char *, ...))
370 static char *attr_string
PARAMS ((const char *, int));
371 static rtx check_attr_test
PARAMS ((rtx
, int, int));
372 static rtx check_attr_value
PARAMS ((rtx
, struct attr_desc
*));
373 static rtx convert_set_attr_alternative
PARAMS ((rtx
, struct insn_def
*));
374 static rtx convert_set_attr
PARAMS ((rtx
, struct insn_def
*));
375 static void check_defs
PARAMS ((void));
377 static rtx convert_const_symbol_ref
PARAMS ((rtx
, struct attr_desc
*));
379 static rtx make_canonical
PARAMS ((struct attr_desc
*, rtx
));
380 static struct attr_value
*get_attr_value
PARAMS ((rtx
, struct attr_desc
*, int));
381 static rtx copy_rtx_unchanging
PARAMS ((rtx
));
382 static rtx copy_boolean
PARAMS ((rtx
));
383 static void expand_delays
PARAMS ((void));
384 static rtx operate_exp
PARAMS ((enum operator, rtx
, rtx
));
385 static void expand_units
PARAMS ((void));
386 static rtx simplify_knowing
PARAMS ((rtx
, rtx
));
387 static rtx encode_units_mask
PARAMS ((rtx
));
388 static void fill_attr
PARAMS ((struct attr_desc
*));
389 /* dpx2 compiler chokes if we specify the arg types of the args. */
390 static rtx substitute_address
PARAMS ((rtx
, rtx (*) (rtx
), rtx (*) (rtx
)));
391 static void make_length_attrs
PARAMS ((void));
392 static rtx identity_fn
PARAMS ((rtx
));
393 static rtx zero_fn
PARAMS ((rtx
));
394 static rtx one_fn
PARAMS ((rtx
));
395 static rtx max_fn
PARAMS ((rtx
));
396 static void write_length_unit_log
PARAMS ((void));
397 static rtx simplify_cond
PARAMS ((rtx
, int, int));
399 static rtx simplify_by_alternatives
PARAMS ((rtx
, int, int));
401 static rtx simplify_by_exploding
PARAMS ((rtx
));
402 static int find_and_mark_used_attributes
PARAMS ((rtx
, rtx
*, int *));
403 static void unmark_used_attributes
PARAMS ((rtx
, struct dimension
*, int));
404 static int add_values_to_cover
PARAMS ((struct dimension
*));
405 static int increment_current_value
PARAMS ((struct dimension
*, int));
406 static rtx test_for_current_value
PARAMS ((struct dimension
*, int));
407 static rtx simplify_with_current_value
PARAMS ((rtx
, struct dimension
*, int));
408 static rtx simplify_with_current_value_aux
PARAMS ((rtx
));
409 static void clear_struct_flag
PARAMS ((rtx
));
410 static int count_sub_rtxs
PARAMS ((rtx
, int));
411 static void remove_insn_ent
PARAMS ((struct attr_value
*, struct insn_ent
*));
412 static void insert_insn_ent
PARAMS ((struct attr_value
*, struct insn_ent
*));
413 static rtx insert_right_side
PARAMS ((enum rtx_code
, rtx
, rtx
, int, int));
414 static rtx make_alternative_compare
PARAMS ((int));
415 static int compute_alternative_mask
PARAMS ((rtx
, enum rtx_code
));
416 static rtx evaluate_eq_attr
PARAMS ((rtx
, rtx
, int, int));
417 static rtx simplify_and_tree
PARAMS ((rtx
, rtx
*, int, int));
418 static rtx simplify_or_tree
PARAMS ((rtx
, rtx
*, int, int));
419 static rtx simplify_test_exp
PARAMS ((rtx
, int, int));
420 static void optimize_attrs
PARAMS ((void));
421 static void gen_attr
PARAMS ((rtx
, int));
422 static int count_alternatives
PARAMS ((rtx
));
423 static int compares_alternatives_p
PARAMS ((rtx
));
424 static int contained_in_p
PARAMS ((rtx
, rtx
));
425 static void gen_insn
PARAMS ((rtx
, int));
426 static void gen_delay
PARAMS ((rtx
, int));
427 static void gen_unit
PARAMS ((rtx
, int));
428 static void write_test_expr
PARAMS ((rtx
, int));
429 static int max_attr_value
PARAMS ((rtx
, int*));
430 static int or_attr_value
PARAMS ((rtx
, int*));
431 static void walk_attr_value
PARAMS ((rtx
));
432 static void write_attr_get
PARAMS ((struct attr_desc
*));
433 static rtx eliminate_known_true
PARAMS ((rtx
, rtx
, int, int));
434 static void write_attr_set
PARAMS ((struct attr_desc
*, int, rtx
,
435 const char *, const char *, rtx
,
437 static void write_attr_case
PARAMS ((struct attr_desc
*, struct attr_value
*,
438 int, const char *, const char *, int, rtx
));
439 static void write_unit_name
PARAMS ((const char *, int, const char *));
440 static void write_attr_valueq
PARAMS ((struct attr_desc
*, const char *));
441 static void write_attr_value
PARAMS ((struct attr_desc
*, rtx
));
442 static void write_upcase
PARAMS ((const char *));
443 static void write_indent
PARAMS ((int));
444 static void write_eligible_delay
PARAMS ((const char *));
445 static void write_function_unit_info
PARAMS ((void));
446 static void write_complex_function
PARAMS ((struct function_unit
*, const char *,
448 static int write_expr_attr_cache
PARAMS ((rtx
, struct attr_desc
*));
449 static void write_toplevel_expr
PARAMS ((rtx
));
450 static void write_const_num_delay_slots
PARAMS ((void));
451 static int n_comma_elts
PARAMS ((const char *));
452 static char *next_comma_elt
PARAMS ((const char **));
453 static struct attr_desc
*find_attr
PARAMS ((const char *, int));
454 static void make_internal_attr
PARAMS ((const char *, rtx
, int));
455 static struct attr_value
*find_most_used
PARAMS ((struct attr_desc
*));
456 static rtx find_single_value
PARAMS ((struct attr_desc
*));
457 static rtx make_numeric_value
PARAMS ((int));
458 static void extend_range
PARAMS ((struct range
*, int, int));
459 static rtx attr_eq
PARAMS ((const char *, const char *));
460 static const char *attr_numeral
PARAMS ((int));
461 static int attr_equal_p
PARAMS ((rtx
, rtx
));
462 static rtx attr_copy_rtx
PARAMS ((rtx
));
463 static int attr_rtx_cost
PARAMS ((rtx
));
465 #define oballoc(size) obstack_alloc (hash_obstack, size)
467 /* Hash table for sharing RTL and strings. */
469 /* Each hash table slot is a bucket containing a chain of these structures.
470 Strings are given negative hash codes; RTL expressions are given positive
475 struct attr_hash
*next
; /* Next structure in the bucket. */
476 int hashcode
; /* Hash code of this rtx or string. */
479 char *str
; /* The string (negative hash codes) */
480 rtx rtl
; /* or the RTL recorded here. */
484 /* Now here is the hash table. When recording an RTL, it is added to
485 the slot whose index is the hash code mod the table size. Note
486 that the hash table is used for several kinds of RTL (see attr_rtx)
487 and for strings. While all these live in the same table, they are
488 completely independent, and the hash code is computed differently
491 #define RTL_HASH_SIZE 4093
492 struct attr_hash
*attr_hash_table
[RTL_HASH_SIZE
];
494 /* Here is how primitive or already-shared RTL's hash
496 #define RTL_HASH(RTL) ((long) (RTL) & 0777777)
498 /* Add an entry to the hash table for RTL with hash code HASHCODE. */
501 attr_hash_add_rtx (hashcode
, rtl
)
505 register struct attr_hash
*h
;
507 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
508 sizeof (struct attr_hash
));
509 h
->hashcode
= hashcode
;
511 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
512 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
515 /* Add an entry to the hash table for STRING with hash code HASHCODE. */
518 attr_hash_add_string (hashcode
, str
)
522 register struct attr_hash
*h
;
524 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
525 sizeof (struct attr_hash
));
526 h
->hashcode
= -hashcode
;
528 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
529 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
532 /* Generate an RTL expression, but avoid duplicates.
533 Set the RTX_INTEGRATED_P flag for these permanent objects.
535 In some cases we cannot uniquify; then we return an ordinary
536 impermanent rtx with RTX_INTEGRATED_P clear.
538 Args are like gen_rtx, but without the mode:
540 rtx attr_rtx (code, [element1, ..., elementn]) */
543 attr_rtx
VPARAMS ((enum rtx_code code
, ...))
545 #ifndef ANSI_PROTOTYPES
549 register int i
; /* Array indices... */
550 register const char *fmt
; /* Current rtx's format... */
551 register rtx rt_val
= NULL_RTX
;/* RTX to return to caller... */
553 register struct attr_hash
*h
;
554 struct obstack
*old_obstack
= rtl_obstack
;
558 #ifndef ANSI_PROTOTYPES
559 code
= va_arg (p
, enum rtx_code
);
562 /* For each of several cases, search the hash table for an existing entry.
563 Use that entry if one is found; otherwise create a new RTL and add it
566 if (GET_RTX_CLASS (code
) == '1')
568 rtx arg0
= va_arg (p
, rtx
);
570 /* A permanent object cannot point to impermanent ones. */
571 if (! RTX_INTEGRATED_P (arg0
))
573 rt_val
= rtx_alloc (code
);
574 XEXP (rt_val
, 0) = arg0
;
579 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
580 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
581 if (h
->hashcode
== hashcode
582 && GET_CODE (h
->u
.rtl
) == code
583 && XEXP (h
->u
.rtl
, 0) == arg0
)
588 rtl_obstack
= hash_obstack
;
589 rt_val
= rtx_alloc (code
);
590 XEXP (rt_val
, 0) = arg0
;
593 else if (GET_RTX_CLASS (code
) == 'c'
594 || GET_RTX_CLASS (code
) == '2'
595 || GET_RTX_CLASS (code
) == '<')
597 rtx arg0
= va_arg (p
, rtx
);
598 rtx arg1
= va_arg (p
, rtx
);
600 /* A permanent object cannot point to impermanent ones. */
601 if (! RTX_INTEGRATED_P (arg0
) || ! RTX_INTEGRATED_P (arg1
))
603 rt_val
= rtx_alloc (code
);
604 XEXP (rt_val
, 0) = arg0
;
605 XEXP (rt_val
, 1) = arg1
;
610 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
611 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
612 if (h
->hashcode
== hashcode
613 && GET_CODE (h
->u
.rtl
) == code
614 && XEXP (h
->u
.rtl
, 0) == arg0
615 && XEXP (h
->u
.rtl
, 1) == arg1
)
620 rtl_obstack
= hash_obstack
;
621 rt_val
= rtx_alloc (code
);
622 XEXP (rt_val
, 0) = arg0
;
623 XEXP (rt_val
, 1) = arg1
;
626 else if (GET_RTX_LENGTH (code
) == 1
627 && GET_RTX_FORMAT (code
)[0] == 's')
629 char *arg0
= va_arg (p
, char *);
631 if (code
== SYMBOL_REF
)
632 arg0
= attr_string (arg0
, strlen (arg0
));
634 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
635 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
636 if (h
->hashcode
== hashcode
637 && GET_CODE (h
->u
.rtl
) == code
638 && XSTR (h
->u
.rtl
, 0) == arg0
)
643 rtl_obstack
= hash_obstack
;
644 rt_val
= rtx_alloc (code
);
645 XSTR (rt_val
, 0) = arg0
;
648 else if (GET_RTX_LENGTH (code
) == 2
649 && GET_RTX_FORMAT (code
)[0] == 's'
650 && GET_RTX_FORMAT (code
)[1] == 's')
652 char *arg0
= va_arg (p
, char *);
653 char *arg1
= va_arg (p
, char *);
655 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
656 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
657 if (h
->hashcode
== hashcode
658 && GET_CODE (h
->u
.rtl
) == code
659 && XSTR (h
->u
.rtl
, 0) == arg0
660 && XSTR (h
->u
.rtl
, 1) == arg1
)
665 rtl_obstack
= hash_obstack
;
666 rt_val
= rtx_alloc (code
);
667 XSTR (rt_val
, 0) = arg0
;
668 XSTR (rt_val
, 1) = arg1
;
671 else if (code
== CONST_INT
)
673 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
689 rt_val
= rtx_alloc (code
); /* Allocate the storage space. */
691 fmt
= GET_RTX_FORMAT (code
); /* Find the right format... */
692 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
696 case '0': /* Unused field. */
699 case 'i': /* An integer? */
700 XINT (rt_val
, i
) = va_arg (p
, int);
703 case 'w': /* A wide integer? */
704 XWINT (rt_val
, i
) = va_arg (p
, HOST_WIDE_INT
);
707 case 's': /* A string? */
708 XSTR (rt_val
, i
) = va_arg (p
, char *);
711 case 'e': /* An expression? */
712 case 'u': /* An insn? Same except when printing. */
713 XEXP (rt_val
, i
) = va_arg (p
, rtx
);
716 case 'E': /* An RTX vector? */
717 XVEC (rt_val
, i
) = va_arg (p
, rtvec
);
728 rtl_obstack
= old_obstack
;
730 attr_hash_add_rtx (hashcode
, rt_val
);
731 RTX_INTEGRATED_P (rt_val
) = 1;
739 /* Create a new string printed with the printf line arguments into a space
740 of at most LEN bytes:
742 rtx attr_printf (len, format, [arg1, ..., argn]) */
745 attr_printf
VPARAMS ((register int len
, const char *fmt
, ...))
747 #ifndef ANSI_PROTOTYPES
756 #ifndef ANSI_PROTOTYPES
757 len
= va_arg (p
, int);
758 fmt
= va_arg (p
, const char *);
761 if (len
> 255) /* leave room for \0 */
764 vsprintf (str
, fmt
, p
);
767 return attr_string (str
, strlen (str
));
771 attr_eq (name
, value
)
772 const char *name
, *value
;
774 return attr_rtx (EQ_ATTR
, attr_string (name
, strlen (name
)),
775 attr_string (value
, strlen (value
)));
782 return XSTR (make_numeric_value (n
), 0);
785 /* Return a permanent (possibly shared) copy of a string STR (not assumed
786 to be null terminated) with LEN bytes. */
789 attr_string (str
, len
)
793 register struct attr_hash
*h
;
796 register char *new_str
;
798 /* Compute the hash code. */
799 hashcode
= (len
+ 1) * 613 + (unsigned) str
[0];
800 for (i
= 1; i
<= len
; i
+= 2)
801 hashcode
= ((hashcode
* 613) + (unsigned) str
[i
]);
803 hashcode
= -hashcode
;
805 /* Search the table for the string. */
806 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
807 if (h
->hashcode
== -hashcode
&& h
->u
.str
[0] == str
[0]
808 && !strncmp (h
->u
.str
, str
, len
))
809 return h
->u
.str
; /* <-- return if found. */
811 /* Not found; create a permanent copy and add it to the hash table. */
812 new_str
= (char *) obstack_alloc (hash_obstack
, len
+ 1);
813 memcpy (new_str
, str
, len
);
815 attr_hash_add_string (hashcode
, new_str
);
817 return new_str
; /* Return the new string. */
820 /* Check two rtx's for equality of contents,
821 taking advantage of the fact that if both are hashed
822 then they can't be equal unless they are the same object. */
828 return (x
== y
|| (! (RTX_INTEGRATED_P (x
) && RTX_INTEGRATED_P (y
))
829 && rtx_equal_p (x
, y
)));
832 /* Copy an attribute value expression,
833 descending to all depths, but not copying any
834 permanent hashed subexpressions. */
842 register RTX_CODE code
;
843 register const char *format_ptr
;
845 /* No need to copy a permanent object. */
846 if (RTX_INTEGRATED_P (orig
))
849 code
= GET_CODE (orig
);
867 copy
= rtx_alloc (code
);
868 PUT_MODE (copy
, GET_MODE (orig
));
869 copy
->in_struct
= orig
->in_struct
;
870 copy
->volatil
= orig
->volatil
;
871 copy
->unchanging
= orig
->unchanging
;
872 copy
->integrated
= orig
->integrated
;
874 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
876 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
878 switch (*format_ptr
++)
881 XEXP (copy
, i
) = XEXP (orig
, i
);
882 if (XEXP (orig
, i
) != NULL
)
883 XEXP (copy
, i
) = attr_copy_rtx (XEXP (orig
, i
));
888 XVEC (copy
, i
) = XVEC (orig
, i
);
889 if (XVEC (orig
, i
) != NULL
)
891 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
892 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
893 XVECEXP (copy
, i
, j
) = attr_copy_rtx (XVECEXP (orig
, i
, j
));
899 XINT (copy
, i
) = XINT (orig
, i
);
903 XWINT (copy
, i
) = XWINT (orig
, i
);
908 XSTR (copy
, i
) = XSTR (orig
, i
);
918 /* Given a test expression for an attribute, ensure it is validly formed.
919 IS_CONST indicates whether the expression is constant for each compiler
920 run (a constant expression may not test any particular insn).
922 Convert (eq_attr "att" "a1,a2") to (ior (eq_attr ... ) (eq_attrq ..))
923 and (eq_attr "att" "!a1") to (not (eq_attr "att" "a1")). Do the latter
924 test first so that (eq_attr "att" "!a1,a2,a3") works as expected.
926 Update the string address in EQ_ATTR expression to be the same used
927 in the attribute (or `alternative_name') to speed up subsequent
928 `find_attr' calls and eliminate most `strcmp' calls.
930 Return the new expression, if any. */
933 check_attr_test (exp
, is_const
, lineno
)
938 struct attr_desc
*attr
;
939 struct attr_value
*av
;
940 const char *name_ptr
, *p
;
943 switch (GET_CODE (exp
))
946 /* Handle negation test. */
947 if (XSTR (exp
, 1)[0] == '!')
948 return check_attr_test (attr_rtx (NOT
,
949 attr_eq (XSTR (exp
, 0),
953 else if (n_comma_elts (XSTR (exp
, 1)) == 1)
955 attr
= find_attr (XSTR (exp
, 0), 0);
958 if (! strcmp (XSTR (exp
, 0), "alternative"))
960 XSTR (exp
, 0) = alternative_name
;
961 /* This can't be simplified any further. */
962 RTX_UNCHANGING_P (exp
) = 1;
966 fatal ("Unknown attribute `%s' in EQ_ATTR", XSTR (exp
, 0));
969 if (is_const
&& ! attr
->is_const
)
970 fatal ("Constant expression uses insn attribute `%s' in EQ_ATTR",
973 /* Copy this just to make it permanent,
974 so expressions using it can be permanent too. */
975 exp
= attr_eq (XSTR (exp
, 0), XSTR (exp
, 1));
977 /* It shouldn't be possible to simplify the value given to a
978 constant attribute, so don't expand this until it's time to
979 write the test expression. */
981 RTX_UNCHANGING_P (exp
) = 1;
983 if (attr
->is_numeric
)
985 for (p
= XSTR (exp
, 1); *p
; p
++)
986 if (*p
< '0' || *p
> '9')
987 fatal ("Attribute `%s' takes only numeric values",
992 for (av
= attr
->first_value
; av
; av
= av
->next
)
993 if (GET_CODE (av
->value
) == CONST_STRING
994 && ! strcmp (XSTR (exp
, 1), XSTR (av
->value
, 0)))
998 fatal ("Unknown value `%s' for `%s' attribute",
999 XSTR (exp
, 1), XSTR (exp
, 0));
1004 /* Make an IOR tree of the possible values. */
1006 name_ptr
= XSTR (exp
, 1);
1007 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1009 newexp
= attr_eq (XSTR (exp
, 0), p
);
1010 orexp
= insert_right_side (IOR
, orexp
, newexp
, -2, -2);
1013 return check_attr_test (orexp
, is_const
, lineno
);
1021 /* Either TRUE or FALSE. */
1029 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
, lineno
);
1030 XEXP (exp
, 1) = check_attr_test (XEXP (exp
, 1), is_const
, lineno
);
1034 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
, lineno
);
1040 fatal ("RTL operator \"%s\" not valid in constant attribute test",
1041 GET_RTX_NAME (GET_CODE (exp
)));
1042 /* These cases can't be simplified. */
1043 RTX_UNCHANGING_P (exp
) = 1;
1046 case LE
: case LT
: case GT
: case GE
:
1047 case LEU
: case LTU
: case GTU
: case GEU
:
1049 if (GET_CODE (XEXP (exp
, 0)) == SYMBOL_REF
1050 && GET_CODE (XEXP (exp
, 1)) == SYMBOL_REF
)
1051 exp
= attr_rtx (GET_CODE (exp
),
1052 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 0), 0)),
1053 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 1), 0)));
1054 /* These cases can't be simplified. */
1055 RTX_UNCHANGING_P (exp
) = 1;
1061 /* These cases are valid for constant attributes, but can't be
1063 exp
= attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1064 RTX_UNCHANGING_P (exp
) = 1;
1068 fatal ("RTL operator \"%s\" not valid in attribute test",
1069 GET_RTX_NAME (GET_CODE (exp
)));
1075 /* Given an expression, ensure that it is validly formed and that all named
1076 attribute values are valid for the given attribute. Issue a fatal error
1077 if not. If no attribute is specified, assume a numeric attribute.
1079 Return a perhaps modified replacement expression for the value. */
1082 check_attr_value (exp
, attr
)
1084 struct attr_desc
*attr
;
1086 struct attr_value
*av
;
1090 switch (GET_CODE (exp
))
1093 if (attr
&& ! attr
->is_numeric
)
1095 message_with_line (attr
->lineno
,
1096 "CONST_INT not valid for non-numeric attribute %s",
1102 if (INTVAL (exp
) < 0 && ! attr
->negative_ok
)
1104 message_with_line (attr
->lineno
,
1105 "negative numeric value specified for attribute %s",
1113 if (! strcmp (XSTR (exp
, 0), "*"))
1116 if (attr
== 0 || attr
->is_numeric
)
1119 if (attr
&& attr
->negative_ok
&& *p
== '-')
1122 if (*p
> '9' || *p
< '0')
1124 message_with_line (attr
? attr
->lineno
: 0,
1125 "non-numeric value for numeric attribute %s",
1126 attr
? attr
->name
: "internal");
1133 for (av
= attr
->first_value
; av
; av
= av
->next
)
1134 if (GET_CODE (av
->value
) == CONST_STRING
1135 && ! strcmp (XSTR (av
->value
, 0), XSTR (exp
, 0)))
1140 message_with_line (attr
->lineno
,
1141 "unknown value `%s' for `%s' attribute",
1142 XSTR (exp
, 0), attr
? attr
->name
: "internal");
1148 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0),
1149 attr
? attr
->is_const
: 0,
1150 attr
? attr
->lineno
: 0);
1151 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1152 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
1160 if (attr
&& !attr
->is_numeric
)
1162 message_with_line (attr
->lineno
,
1163 "invalid operation `%s' for non-numeric attribute value",
1164 GET_RTX_NAME (GET_CODE (exp
)));
1172 XEXP (exp
, 0) = check_attr_value (XEXP (exp
, 0), attr
);
1173 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1177 XEXP (exp
, 0) = check_attr_value (XEXP (exp
, 0), attr
);
1181 if (XVECLEN (exp
, 0) % 2 != 0)
1183 message_with_line (attr
->lineno
,
1184 "first operand of COND must have even length");
1189 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1191 XVECEXP (exp
, 0, i
) = check_attr_test (XVECEXP (exp
, 0, i
),
1192 attr
? attr
->is_const
: 0,
1193 attr
? attr
->lineno
: 0);
1194 XVECEXP (exp
, 0, i
+ 1)
1195 = check_attr_value (XVECEXP (exp
, 0, i
+ 1), attr
);
1198 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1203 struct attr_desc
*attr2
= find_attr (XSTR (exp
, 0), 0);
1206 message_with_line (attr
? attr
->lineno
: 0,
1207 "unknown attribute `%s' in ATTR",
1211 else if (attr
&& attr
->is_const
&& ! attr2
->is_const
)
1213 message_with_line (attr
->lineno
,
1214 "non-constant attribute `%s' referenced from `%s'",
1215 XSTR (exp
, 0), attr
->name
);
1219 && (attr
->is_numeric
!= attr2
->is_numeric
1220 || (! attr
->negative_ok
&& attr2
->negative_ok
)))
1222 message_with_line (attr
->lineno
,
1223 "numeric attribute mismatch calling `%s' from `%s'",
1224 XSTR (exp
, 0), attr
->name
);
1231 /* A constant SYMBOL_REF is valid as a constant attribute test and
1232 is expanded later by make_canonical into a COND. In a non-constant
1233 attribute test, it is left be. */
1234 return attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1237 message_with_line (attr
? attr
->lineno
: 0,
1238 "invalid operation `%s' for attribute value",
1239 GET_RTX_NAME (GET_CODE (exp
)));
1247 /* Given an SET_ATTR_ALTERNATIVE expression, convert to the canonical SET.
1248 It becomes a COND with each test being (eq_attr "alternative "n") */
1251 convert_set_attr_alternative (exp
, id
)
1253 struct insn_def
*id
;
1255 int num_alt
= id
->num_alternatives
;
1259 if (XVECLEN (exp
, 1) != num_alt
)
1261 message_with_line (id
->lineno
,
1262 "bad number of entries in SET_ATTR_ALTERNATIVE");
1267 /* Make a COND with all tests but the last. Select the last value via the
1269 condexp
= rtx_alloc (COND
);
1270 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1272 for (i
= 0; i
< num_alt
- 1; i
++)
1275 p
= attr_numeral (i
);
1277 XVECEXP (condexp
, 0, 2 * i
) = attr_eq (alternative_name
, p
);
1278 XVECEXP (condexp
, 0, 2 * i
+ 1) = XVECEXP (exp
, 1, i
);
1281 XEXP (condexp
, 1) = XVECEXP (exp
, 1, i
);
1283 return attr_rtx (SET
, attr_rtx (ATTR
, XSTR (exp
, 0)), condexp
);
1286 /* Given a SET_ATTR, convert to the appropriate SET. If a comma-separated
1287 list of values is given, convert to SET_ATTR_ALTERNATIVE first. */
1290 convert_set_attr (exp
, id
)
1292 struct insn_def
*id
;
1295 const char *name_ptr
;
1299 /* See how many alternative specified. */
1300 n
= n_comma_elts (XSTR (exp
, 1));
1302 return attr_rtx (SET
,
1303 attr_rtx (ATTR
, XSTR (exp
, 0)),
1304 attr_rtx (CONST_STRING
, XSTR (exp
, 1)));
1306 newexp
= rtx_alloc (SET_ATTR_ALTERNATIVE
);
1307 XSTR (newexp
, 0) = XSTR (exp
, 0);
1308 XVEC (newexp
, 1) = rtvec_alloc (n
);
1310 /* Process each comma-separated name. */
1311 name_ptr
= XSTR (exp
, 1);
1313 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1314 XVECEXP (newexp
, 1, n
++) = attr_rtx (CONST_STRING
, p
);
1316 return convert_set_attr_alternative (newexp
, id
);
1319 /* Scan all definitions, checking for validity. Also, convert any SET_ATTR
1320 and SET_ATTR_ALTERNATIVE expressions to the corresponding SET
1326 struct insn_def
*id
;
1327 struct attr_desc
*attr
;
1331 for (id
= defs
; id
; id
= id
->next
)
1333 if (XVEC (id
->def
, id
->vec_idx
) == NULL
)
1336 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
1338 value
= XVECEXP (id
->def
, id
->vec_idx
, i
);
1339 switch (GET_CODE (value
))
1342 if (GET_CODE (XEXP (value
, 0)) != ATTR
)
1344 message_with_line (id
->lineno
, "bad attribute set");
1350 case SET_ATTR_ALTERNATIVE
:
1351 value
= convert_set_attr_alternative (value
, id
);
1355 value
= convert_set_attr (value
, id
);
1359 message_with_line (id
->lineno
, "invalid attribute code %s",
1360 GET_RTX_NAME (GET_CODE (value
)));
1364 if (value
== NULL_RTX
)
1367 if ((attr
= find_attr (XSTR (XEXP (value
, 0), 0), 0)) == NULL
)
1369 message_with_line (id
->lineno
, "unknown attribute %s",
1370 XSTR (XEXP (value
, 0), 0));
1375 XVECEXP (id
->def
, id
->vec_idx
, i
) = value
;
1376 XEXP (value
, 1) = check_attr_value (XEXP (value
, 1), attr
);
1382 /* Given a constant SYMBOL_REF expression, convert to a COND that
1383 explicitly tests each enumerated value. */
1386 convert_const_symbol_ref (exp
, attr
)
1388 struct attr_desc
*attr
;
1391 struct attr_value
*av
;
1395 for (av
= attr
->first_value
; av
; av
= av
->next
)
1398 /* Make a COND with all tests but the last, and in the original order.
1399 Select the last value via the default. Note that the attr values
1400 are constructed in reverse order. */
1402 condexp
= rtx_alloc (COND
);
1403 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1404 av
= attr
->first_value
;
1405 XEXP (condexp
, 1) = av
->value
;
1407 for (i
= num_alt
- 2; av
= av
->next
, i
>= 0; i
--)
1412 string
= p
= (char *) oballoc (2
1413 + strlen (attr
->name
)
1414 + strlen (XSTR (av
->value
, 0)));
1415 strcpy (p
, attr
->name
);
1417 strcat (p
, XSTR (av
->value
, 0));
1418 for (; *p
!= '\0'; p
++)
1421 value
= attr_rtx (SYMBOL_REF
, string
);
1422 RTX_UNCHANGING_P (value
) = 1;
1424 XVECEXP (condexp
, 0, 2 * i
) = attr_rtx (EQ
, exp
, value
);
1426 XVECEXP (condexp
, 0, 2 * i
+ 1) = av
->value
;
1433 /* Given a valid expression for an attribute value, remove any IF_THEN_ELSE
1434 expressions by converting them into a COND. This removes cases from this
1435 program. Also, replace an attribute value of "*" with the default attribute
1439 make_canonical (attr
, exp
)
1440 struct attr_desc
*attr
;
1446 switch (GET_CODE (exp
))
1449 exp
= make_numeric_value (INTVAL (exp
));
1453 if (! strcmp (XSTR (exp
, 0), "*"))
1455 if (attr
== 0 || attr
->default_val
== 0)
1456 fatal ("(attr_value \"*\") used in invalid context.");
1457 exp
= attr
->default_val
->value
;
1463 if (!attr
->is_const
|| RTX_UNCHANGING_P (exp
))
1465 /* The SYMBOL_REF is constant for a given run, so mark it as unchanging.
1466 This makes the COND something that won't be considered an arbitrary
1467 expression by walk_attr_value. */
1468 RTX_UNCHANGING_P (exp
) = 1;
1470 /* ??? Why do we do this? With attribute values { A B C D E }, this
1471 tends to generate (!(x==A) && !(x==B) && !(x==C) && !(x==D)) rather
1473 exp
= convert_const_symbol_ref (exp
, attr
);
1474 RTX_UNCHANGING_P (exp
) = 1;
1475 exp
= check_attr_value (exp
, attr
);
1476 /* Goto COND case since this is now a COND. Note that while the
1477 new expression is rescanned, all symbol_ref notes are marked as
1481 exp
= check_attr_value (exp
, attr
);
1486 newexp
= rtx_alloc (COND
);
1487 XVEC (newexp
, 0) = rtvec_alloc (2);
1488 XVECEXP (newexp
, 0, 0) = XEXP (exp
, 0);
1489 XVECEXP (newexp
, 0, 1) = XEXP (exp
, 1);
1491 XEXP (newexp
, 1) = XEXP (exp
, 2);
1494 /* Fall through to COND case since this is now a COND. */
1501 /* First, check for degenerate COND. */
1502 if (XVECLEN (exp
, 0) == 0)
1503 return make_canonical (attr
, XEXP (exp
, 1));
1504 defval
= XEXP (exp
, 1) = make_canonical (attr
, XEXP (exp
, 1));
1506 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1508 XVECEXP (exp
, 0, i
) = copy_boolean (XVECEXP (exp
, 0, i
));
1509 XVECEXP (exp
, 0, i
+ 1)
1510 = make_canonical (attr
, XVECEXP (exp
, 0, i
+ 1));
1511 if (! rtx_equal_p (XVECEXP (exp
, 0, i
+ 1), defval
))
1530 if (GET_CODE (exp
) == AND
|| GET_CODE (exp
) == IOR
)
1531 return attr_rtx (GET_CODE (exp
), copy_boolean (XEXP (exp
, 0)),
1532 copy_boolean (XEXP (exp
, 1)));
1536 /* Given a value and an attribute description, return a `struct attr_value *'
1537 that represents that value. This is either an existing structure, if the
1538 value has been previously encountered, or a newly-created structure.
1540 `insn_code' is the code of an insn whose attribute has the specified
1541 value (-2 if not processing an insn). We ensure that all insns for
1542 a given value have the same number of alternatives if the value checks
1545 static struct attr_value
*
1546 get_attr_value (value
, attr
, insn_code
)
1548 struct attr_desc
*attr
;
1551 struct attr_value
*av
;
1554 value
= make_canonical (attr
, value
);
1555 if (compares_alternatives_p (value
))
1557 if (insn_code
< 0 || insn_alternatives
== NULL
)
1558 fatal ("(eq_attr \"alternatives\" ...) used in non-insn context");
1560 num_alt
= insn_alternatives
[insn_code
];
1563 for (av
= attr
->first_value
; av
; av
= av
->next
)
1564 if (rtx_equal_p (value
, av
->value
)
1565 && (num_alt
== 0 || av
->first_insn
== NULL
1566 || insn_alternatives
[av
->first_insn
->insn_code
]))
1569 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
1571 av
->next
= attr
->first_value
;
1572 attr
->first_value
= av
;
1573 av
->first_insn
= NULL
;
1575 av
->has_asm_insn
= 0;
1580 /* After all DEFINE_DELAYs have been read in, create internal attributes
1581 to generate the required routines.
1583 First, we compute the number of delay slots for each insn (as a COND of
1584 each of the test expressions in DEFINE_DELAYs). Then, if more than one
1585 delay type is specified, we compute a similar function giving the
1586 DEFINE_DELAY ordinal for each insn.
1588 Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
1589 tells whether a given insn can be in that delay slot.
1591 Normal attribute filling and optimization expands these to contain the
1592 information needed to handle delay slots. */
1597 struct delay_desc
*delay
;
1603 /* First, generate data for `num_delay_slots' function. */
1605 condexp
= rtx_alloc (COND
);
1606 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1607 XEXP (condexp
, 1) = make_numeric_value (0);
1609 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1611 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1612 XVECEXP (condexp
, 0, i
+ 1)
1613 = make_numeric_value (XVECLEN (delay
->def
, 1) / 3);
1616 make_internal_attr ("*num_delay_slots", condexp
, 0);
1618 /* If more than one delay type, do the same for computing the delay type. */
1621 condexp
= rtx_alloc (COND
);
1622 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1623 XEXP (condexp
, 1) = make_numeric_value (0);
1625 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1627 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1628 XVECEXP (condexp
, 0, i
+ 1) = make_numeric_value (delay
->num
);
1631 make_internal_attr ("*delay_type", condexp
, 1);
1634 /* For each delay possibility and delay slot, compute an eligibility
1635 attribute for non-annulled insns and for each type of annulled (annul
1636 if true and annul if false). */
1637 for (delay
= delays
; delay
; delay
= delay
->next
)
1639 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
1641 condexp
= XVECEXP (delay
->def
, 1, i
);
1643 condexp
= false_rtx
;
1644 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1645 make_numeric_value (1), make_numeric_value (0));
1647 p
= attr_printf (sizeof ("*delay__") + MAX_DIGITS
* 2,
1650 make_internal_attr (p
, newexp
, 1);
1652 if (have_annul_true
)
1654 condexp
= XVECEXP (delay
->def
, 1, i
+ 1);
1655 if (condexp
== 0) condexp
= false_rtx
;
1656 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1657 make_numeric_value (1),
1658 make_numeric_value (0));
1659 p
= attr_printf (sizeof ("*annul_true__") + MAX_DIGITS
* 2,
1660 "*annul_true_%d_%d", delay
->num
, i
/ 3);
1661 make_internal_attr (p
, newexp
, 1);
1664 if (have_annul_false
)
1666 condexp
= XVECEXP (delay
->def
, 1, i
+ 2);
1667 if (condexp
== 0) condexp
= false_rtx
;
1668 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1669 make_numeric_value (1),
1670 make_numeric_value (0));
1671 p
= attr_printf (sizeof ("*annul_false__") + MAX_DIGITS
* 2,
1672 "*annul_false_%d_%d", delay
->num
, i
/ 3);
1673 make_internal_attr (p
, newexp
, 1);
1679 /* This function is given a left and right side expression and an operator.
1680 Each side is a conditional expression, each alternative of which has a
1681 numerical value. The function returns another conditional expression
1682 which, for every possible set of condition values, returns a value that is
1683 the operator applied to the values of the two sides.
1685 Since this is called early, it must also support IF_THEN_ELSE. */
1688 operate_exp (op
, left
, right
)
1692 int left_value
, right_value
;
1696 /* If left is a string, apply operator to it and the right side. */
1697 if (GET_CODE (left
) == CONST_STRING
)
1699 /* If right is also a string, just perform the operation. */
1700 if (GET_CODE (right
) == CONST_STRING
)
1702 left_value
= atoi (XSTR (left
, 0));
1703 right_value
= atoi (XSTR (right
, 0));
1707 i
= left_value
+ right_value
;
1711 i
= left_value
- right_value
;
1714 case POS_MINUS_OP
: /* The positive part of LEFT - RIGHT. */
1715 if (left_value
> right_value
)
1716 i
= left_value
- right_value
;
1723 i
= left_value
| right_value
;
1727 i
= left_value
== right_value
;
1731 i
= (left_value
<< (HOST_BITS_PER_INT
/ 2)) | right_value
;
1735 if (left_value
> right_value
)
1742 if (left_value
< right_value
)
1752 if (i
== left_value
)
1754 if (i
== right_value
)
1756 return make_numeric_value (i
);
1758 else if (GET_CODE (right
) == IF_THEN_ELSE
)
1760 /* Apply recursively to all values within. */
1761 rtx newleft
= operate_exp (op
, left
, XEXP (right
, 1));
1762 rtx newright
= operate_exp (op
, left
, XEXP (right
, 2));
1763 if (rtx_equal_p (newleft
, newright
))
1765 return attr_rtx (IF_THEN_ELSE
, XEXP (right
, 0), newleft
, newright
);
1767 else if (GET_CODE (right
) == COND
)
1772 newexp
= rtx_alloc (COND
);
1773 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (right
, 0));
1774 defval
= XEXP (newexp
, 1) = operate_exp (op
, left
, XEXP (right
, 1));
1776 for (i
= 0; i
< XVECLEN (right
, 0); i
+= 2)
1778 XVECEXP (newexp
, 0, i
) = XVECEXP (right
, 0, i
);
1779 XVECEXP (newexp
, 0, i
+ 1)
1780 = operate_exp (op
, left
, XVECEXP (right
, 0, i
+ 1));
1781 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1786 /* If the resulting cond is trivial (all alternatives
1787 give the same value), optimize it away. */
1789 return operate_exp (op
, left
, XEXP (right
, 1));
1794 fatal ("Badly formed attribute value");
1797 /* A hack to prevent expand_units from completely blowing up: ORX_OP does
1798 not associate through IF_THEN_ELSE. */
1799 else if (op
== ORX_OP
&& GET_CODE (right
) == IF_THEN_ELSE
)
1801 return attr_rtx (IOR
, left
, right
);
1804 /* Otherwise, do recursion the other way. */
1805 else if (GET_CODE (left
) == IF_THEN_ELSE
)
1807 rtx newleft
= operate_exp (op
, XEXP (left
, 1), right
);
1808 rtx newright
= operate_exp (op
, XEXP (left
, 2), right
);
1809 if (rtx_equal_p (newleft
, newright
))
1811 return attr_rtx (IF_THEN_ELSE
, XEXP (left
, 0), newleft
, newright
);
1813 else if (GET_CODE (left
) == COND
)
1818 newexp
= rtx_alloc (COND
);
1819 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (left
, 0));
1820 defval
= XEXP (newexp
, 1) = operate_exp (op
, XEXP (left
, 1), right
);
1822 for (i
= 0; i
< XVECLEN (left
, 0); i
+= 2)
1824 XVECEXP (newexp
, 0, i
) = XVECEXP (left
, 0, i
);
1825 XVECEXP (newexp
, 0, i
+ 1)
1826 = operate_exp (op
, XVECEXP (left
, 0, i
+ 1), right
);
1827 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1832 /* If the cond is trivial (all alternatives give the same value),
1833 optimize it away. */
1835 return operate_exp (op
, XEXP (left
, 1), right
);
1837 /* If the result is the same as the LEFT operand,
1839 if (rtx_equal_p (newexp
, left
))
1846 fatal ("Badly formed attribute value.");
1851 /* Once all attributes and DEFINE_FUNCTION_UNITs have been read, we
1852 construct a number of attributes.
1854 The first produces a function `function_units_used' which is given an
1855 insn and produces an encoding showing which function units are required
1856 for the execution of that insn. If the value is non-negative, the insn
1857 uses that unit; otherwise, the value is a one's compliment mask of units
1860 The second produces a function `result_ready_cost' which is used to
1861 determine the time that the result of an insn will be ready and hence
1862 a worst-case schedule.
1864 Both of these produce quite complex expressions which are then set as the
1865 default value of internal attributes. Normal attribute simplification
1866 should produce reasonable expressions.
1868 For each unit, a `<name>_unit_ready_cost' function will take an
1869 insn and give the delay until that unit will be ready with the result
1870 and a `<name>_unit_conflict_cost' function is given an insn already
1871 executing on the unit and a candidate to execute and will give the
1872 cost from the time the executing insn started until the candidate
1873 can start (ignore limitations on the number of simultaneous insns).
1875 For each unit, a `<name>_unit_blockage' function is given an insn
1876 already executing on the unit and a candidate to execute and will
1877 give the delay incurred due to function unit conflicts. The range of
1878 blockage cost values for a given executing insn is given by the
1879 `<name>_unit_blockage_range' function. These values are encoded in
1880 an int where the upper half gives the minimum value and the lower
1881 half gives the maximum value. */
1886 struct function_unit
*unit
, **unit_num
;
1887 struct function_unit_op
*op
, **op_array
, ***unit_ops
;
1892 int i
, j
, u
, num
, nvalues
;
1894 /* Rebuild the condition for the unit to share the RTL expressions.
1895 Sharing is required by simplify_by_exploding. Build the issue delay
1896 expressions. Validate the expressions we were given for the conditions
1897 and conflict vector. Then make attributes for use in the conflict
1900 for (unit
= units
; unit
; unit
= unit
->next
)
1902 unit
->condexp
= check_attr_test (unit
->condexp
, 0, unit
->first_lineno
);
1904 for (op
= unit
->ops
; op
; op
= op
->next
)
1906 rtx issue_delay
= make_numeric_value (op
->issue_delay
);
1907 rtx issue_exp
= issue_delay
;
1909 /* Build, validate, and simplify the issue delay expression. */
1910 if (op
->conflict_exp
!= true_rtx
)
1911 issue_exp
= attr_rtx (IF_THEN_ELSE
, op
->conflict_exp
,
1912 issue_exp
, make_numeric_value (0));
1913 issue_exp
= check_attr_value (make_canonical (NULL_ATTR
,
1916 issue_exp
= simplify_knowing (issue_exp
, unit
->condexp
);
1917 op
->issue_exp
= issue_exp
;
1919 /* Make an attribute for use in the conflict function if needed. */
1920 unit
->needs_conflict_function
= (unit
->issue_delay
.min
1921 != unit
->issue_delay
.max
);
1922 if (unit
->needs_conflict_function
)
1924 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cost_") + MAX_DIGITS
,
1925 "*%s_cost_%d", unit
->name
, op
->num
);
1926 make_internal_attr (str
, issue_exp
, 1);
1929 /* Validate the condition. */
1930 op
->condexp
= check_attr_test (op
->condexp
, 0, op
->lineno
);
1934 /* Compute the mask of function units used. Initially, the unitsmask is
1935 zero. Set up a conditional to compute each unit's contribution. */
1936 unitsmask
= make_numeric_value (0);
1937 newexp
= rtx_alloc (IF_THEN_ELSE
);
1938 XEXP (newexp
, 2) = make_numeric_value (0);
1940 /* If we have just a few units, we may be all right expanding the whole
1941 thing. But the expansion is 2**N in space on the number of opclasses,
1942 so we can't do this for very long -- Alpha and MIPS in particular have
1943 problems with this. So in that situation, we fall back on an alternate
1944 implementation method. */
1945 #define NUM_UNITOP_CUTOFF 20
1947 if (num_unit_opclasses
< NUM_UNITOP_CUTOFF
)
1949 /* Merge each function unit into the unit mask attributes. */
1950 for (unit
= units
; unit
; unit
= unit
->next
)
1952 XEXP (newexp
, 0) = unit
->condexp
;
1953 XEXP (newexp
, 1) = make_numeric_value (1 << unit
->num
);
1954 unitsmask
= operate_exp (OR_OP
, unitsmask
, newexp
);
1959 /* Merge each function unit into the unit mask attributes. */
1960 for (unit
= units
; unit
; unit
= unit
->next
)
1962 XEXP (newexp
, 0) = unit
->condexp
;
1963 XEXP (newexp
, 1) = make_numeric_value (1 << unit
->num
);
1964 unitsmask
= operate_exp (ORX_OP
, unitsmask
, attr_copy_rtx (newexp
));
1968 /* Simplify the unit mask expression, encode it, and make an attribute
1969 for the function_units_used function. */
1970 unitsmask
= simplify_by_exploding (unitsmask
);
1972 if (num_unit_opclasses
< NUM_UNITOP_CUTOFF
)
1973 unitsmask
= encode_units_mask (unitsmask
);
1976 /* We can no longer encode unitsmask at compile time, so emit code to
1977 calculate it at runtime. Rather, put a marker for where we'd do
1978 the code, and actually output it in write_attr_get(). */
1979 unitsmask
= attr_rtx (FFS
, unitsmask
);
1982 make_internal_attr ("*function_units_used", unitsmask
, 10);
1984 /* Create an array of ops for each unit. Add an extra unit for the
1985 result_ready_cost function that has the ops of all other units. */
1986 unit_ops
= (struct function_unit_op
***)
1987 xmalloc ((num_units
+ 1) * sizeof (struct function_unit_op
**));
1988 unit_num
= (struct function_unit
**)
1989 xmalloc ((num_units
+ 1) * sizeof (struct function_unit
*));
1991 unit_num
[num_units
] = unit
= (struct function_unit
*)
1992 xmalloc (sizeof (struct function_unit
));
1993 unit
->num
= num_units
;
1994 unit
->num_opclasses
= 0;
1996 for (unit
= units
; unit
; unit
= unit
->next
)
1998 unit_num
[num_units
]->num_opclasses
+= unit
->num_opclasses
;
1999 unit_num
[unit
->num
] = unit
;
2000 unit_ops
[unit
->num
] = op_array
= (struct function_unit_op
**)
2001 xmalloc (unit
->num_opclasses
* sizeof (struct function_unit_op
*));
2003 for (op
= unit
->ops
; op
; op
= op
->next
)
2004 op_array
[op
->num
] = op
;
2007 /* Compose the array of ops for the extra unit. */
2008 unit_ops
[num_units
] = op_array
= (struct function_unit_op
**)
2009 xmalloc (unit_num
[num_units
]->num_opclasses
2010 * sizeof (struct function_unit_op
*));
2012 for (unit
= units
, i
= 0; unit
; i
+= unit
->num_opclasses
, unit
= unit
->next
)
2013 memcpy (&op_array
[i
], unit_ops
[unit
->num
],
2014 unit
->num_opclasses
* sizeof (struct function_unit_op
*));
2016 /* Compute the ready cost function for each unit by computing the
2017 condition for each non-default value. */
2018 for (u
= 0; u
<= num_units
; u
++)
2024 op_array
= unit_ops
[unit
->num
];
2025 num
= unit
->num_opclasses
;
2027 /* Sort the array of ops into increasing ready cost order. */
2028 for (i
= 0; i
< num
; i
++)
2029 for (j
= num
- 1; j
> i
; j
--)
2030 if (op_array
[j
- 1]->ready
< op_array
[j
]->ready
)
2033 op_array
[j
] = op_array
[j
- 1];
2034 op_array
[j
- 1] = op
;
2037 /* Determine how many distinct non-default ready cost values there
2038 are. We use a default ready cost value of 1. */
2039 nvalues
= 0; value
= 1;
2040 for (i
= num
- 1; i
>= 0; i
--)
2041 if (op_array
[i
]->ready
> value
)
2043 value
= op_array
[i
]->ready
;
2048 readycost
= make_numeric_value (1);
2051 /* Construct the ready cost expression as a COND of each value from
2052 the largest to the smallest. */
2053 readycost
= rtx_alloc (COND
);
2054 XVEC (readycost
, 0) = rtvec_alloc (nvalues
* 2);
2055 XEXP (readycost
, 1) = make_numeric_value (1);
2059 value
= op_array
[0]->ready
;
2060 for (i
= 0; i
< num
; i
++)
2065 else if (op
->ready
== value
)
2066 orexp
= insert_right_side (IOR
, orexp
, op
->condexp
, -2, -2);
2069 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
2070 XVECEXP (readycost
, 0, nvalues
* 2 + 1)
2071 = make_numeric_value (value
);
2074 orexp
= op
->condexp
;
2077 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
2078 XVECEXP (readycost
, 0, nvalues
* 2 + 1) = make_numeric_value (value
);
2083 rtx max_blockage
= 0, min_blockage
= 0;
2085 /* Simplify the readycost expression by only considering insns
2086 that use the unit. */
2087 readycost
= simplify_knowing (readycost
, unit
->condexp
);
2089 /* Determine the blockage cost the executing insn (E) given
2090 the candidate insn (C). This is the maximum of the issue
2091 delay, the pipeline delay, and the simultaneity constraint.
2092 Each function_unit_op represents the characteristics of the
2093 candidate insn, so in the expressions below, C is a known
2094 term and E is an unknown term.
2096 We compute the blockage cost for each E for every possible C.
2097 Thus OP represents E, and READYCOST is a list of values for
2100 The issue delay function for C is op->issue_exp and is used to
2101 write the `<name>_unit_conflict_cost' function. Symbolicly
2102 this is "ISSUE-DELAY (E,C)".
2104 The pipeline delay results form the FIFO constraint on the
2105 function unit and is "READY-COST (E) + 1 - READY-COST (C)".
2107 The simultaneity constraint is based on how long it takes to
2108 fill the unit given the minimum issue delay. FILL-TIME is the
2109 constant "MIN (ISSUE-DELAY (*,*)) * (SIMULTANEITY - 1)", and
2110 the simultaneity constraint is "READY-COST (E) - FILL-TIME"
2111 if SIMULTANEITY is non-zero and zero otherwise.
2113 Thus, BLOCKAGE (E,C) when SIMULTANEITY is zero is
2115 MAX (ISSUE-DELAY (E,C),
2116 READY-COST (E) - (READY-COST (C) - 1))
2120 MAX (ISSUE-DELAY (E,C),
2121 READY-COST (E) - (READY-COST (C) - 1),
2122 READY-COST (E) - FILL-TIME)
2124 The `<name>_unit_blockage' function is computed by determining
2125 this value for each candidate insn. As these values are
2126 computed, we also compute the upper and lower bounds for
2127 BLOCKAGE (E,*). These are combined to form the function
2128 `<name>_unit_blockage_range'. Finally, the maximum blockage
2129 cost, MAX (BLOCKAGE (*,*)), is computed. */
2131 for (op
= unit
->ops
; op
; op
= op
->next
)
2133 rtx blockage
= op
->issue_exp
;
2134 blockage
= simplify_knowing (blockage
, unit
->condexp
);
2136 /* Add this op's contribution to MAX (BLOCKAGE (E,*)) and
2137 MIN (BLOCKAGE (E,*)). */
2138 if (max_blockage
== 0)
2139 max_blockage
= min_blockage
= blockage
;
2143 = simplify_knowing (operate_exp (MAX_OP
, max_blockage
,
2147 = simplify_knowing (operate_exp (MIN_OP
, min_blockage
,
2152 /* Make an attribute for use in the blockage function. */
2153 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_block_") + MAX_DIGITS
,
2154 "*%s_block_%d", unit
->name
, op
->num
);
2155 make_internal_attr (str
, blockage
, 1);
2158 /* Record MAX (BLOCKAGE (*,*)). */
2161 unit
->max_blockage
= max_attr_value (max_blockage
, &unknown
);
2164 /* See if the upper and lower bounds of BLOCKAGE (E,*) are the
2165 same. If so, the blockage function carries no additional
2166 information and is not written. */
2167 newexp
= operate_exp (EQ_OP
, max_blockage
, min_blockage
);
2168 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2169 unit
->needs_blockage_function
2170 = (GET_CODE (newexp
) != CONST_STRING
2171 || atoi (XSTR (newexp
, 0)) != 1);
2173 /* If the all values of BLOCKAGE (E,C) have the same value,
2174 neither blockage function is written. */
2175 unit
->needs_range_function
2176 = (unit
->needs_blockage_function
2177 || GET_CODE (max_blockage
) != CONST_STRING
);
2179 if (unit
->needs_range_function
)
2181 /* Compute the blockage range function and make an attribute
2182 for writing its value. */
2183 newexp
= operate_exp (RANGE_OP
, min_blockage
, max_blockage
);
2184 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2186 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_blockage_range"),
2187 "*%s_unit_blockage_range", unit
->name
);
2188 make_internal_attr (str
, newexp
, 20);
2191 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_ready_cost"),
2192 "*%s_unit_ready_cost", unit
->name
);
2195 str
= "*result_ready_cost";
2197 /* Make an attribute for the ready_cost function. Simplifying
2198 further with simplify_by_exploding doesn't win. */
2199 make_internal_attr (str
, readycost
, 0);
2202 /* For each unit that requires a conflict cost function, make an attribute
2203 that maps insns to the operation number. */
2204 for (unit
= units
; unit
; unit
= unit
->next
)
2208 if (! unit
->needs_conflict_function
2209 && ! unit
->needs_blockage_function
)
2212 caseexp
= rtx_alloc (COND
);
2213 XVEC (caseexp
, 0) = rtvec_alloc ((unit
->num_opclasses
- 1) * 2);
2215 for (op
= unit
->ops
; op
; op
= op
->next
)
2217 /* Make our adjustment to the COND being computed. If we are the
2218 last operation class, place our values into the default of the
2220 if (op
->num
== unit
->num_opclasses
- 1)
2222 XEXP (caseexp
, 1) = make_numeric_value (op
->num
);
2226 XVECEXP (caseexp
, 0, op
->num
* 2) = op
->condexp
;
2227 XVECEXP (caseexp
, 0, op
->num
* 2 + 1)
2228 = make_numeric_value (op
->num
);
2232 /* Simplifying caseexp with simplify_by_exploding doesn't win. */
2233 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cases"),
2234 "*%s_cases", unit
->name
);
2235 make_internal_attr (str
, caseexp
, 1);
2239 /* Simplify EXP given KNOWN_TRUE. */
2242 simplify_knowing (exp
, known_true
)
2243 rtx exp
, known_true
;
2245 if (GET_CODE (exp
) != CONST_STRING
)
2247 int unknown
= 0, max
;
2248 max
= max_attr_value (exp
, &unknown
);
2251 exp
= attr_rtx (IF_THEN_ELSE
, known_true
, exp
,
2252 make_numeric_value (max
));
2253 exp
= simplify_by_exploding (exp
);
2259 /* Translate the CONST_STRING expressions in X to change the encoding of
2260 value. On input, the value is a bitmask with a one bit for each unit
2261 used; on output, the value is the unit number (zero based) if one
2262 and only one unit is used or the one's compliment of the bitmask. */
2265 encode_units_mask (x
)
2270 register enum rtx_code code
;
2271 register const char *fmt
;
2273 code
= GET_CODE (x
);
2278 i
= atoi (XSTR (x
, 0));
2280 /* The sign bit encodes a one's compliment mask. */
2282 else if (i
!= 0 && i
== (i
& -i
))
2283 /* Only one bit is set, so yield that unit number. */
2284 for (j
= 0; (i
>>= 1) != 0; j
++)
2288 return attr_rtx (CONST_STRING
, attr_printf (MAX_DIGITS
, "%d", j
));
2305 /* Compare the elements. If any pair of corresponding elements
2306 fail to match, return 0 for the whole things. */
2308 fmt
= GET_RTX_FORMAT (code
);
2309 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2315 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2316 XVECEXP (x
, i
, j
) = encode_units_mask (XVECEXP (x
, i
, j
));
2320 XEXP (x
, i
) = encode_units_mask (XEXP (x
, i
));
2327 /* Once all attributes and insns have been read and checked, we construct for
2328 each attribute value a list of all the insns that have that value for
2333 struct attr_desc
*attr
;
2335 struct attr_value
*av
;
2336 struct insn_ent
*ie
;
2337 struct insn_def
*id
;
2341 /* Don't fill constant attributes. The value is independent of
2342 any particular insn. */
2346 for (id
= defs
; id
; id
= id
->next
)
2348 /* If no value is specified for this insn for this attribute, use the
2351 if (XVEC (id
->def
, id
->vec_idx
))
2352 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
2353 if (! strcmp (XSTR (XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 0), 0),
2355 value
= XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 1);
2358 av
= attr
->default_val
;
2360 av
= get_attr_value (value
, attr
, id
->insn_code
);
2362 ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2363 ie
->insn_code
= id
->insn_code
;
2364 ie
->insn_index
= id
->insn_code
;
2365 insert_insn_ent (av
, ie
);
2369 /* Given an expression EXP, see if it is a COND or IF_THEN_ELSE that has a
2370 test that checks relative positions of insns (uses MATCH_DUP or PC).
2371 If so, replace it with what is obtained by passing the expression to
2372 ADDRESS_FN. If not but it is a COND or IF_THEN_ELSE, call this routine
2373 recursively on each value (including the default value). Otherwise,
2374 return the value returned by NO_ADDRESS_FN applied to EXP. */
2377 substitute_address (exp
, no_address_fn
, address_fn
)
2379 rtx (*no_address_fn
) PARAMS ((rtx
));
2380 rtx (*address_fn
) PARAMS ((rtx
));
2385 if (GET_CODE (exp
) == COND
)
2387 /* See if any tests use addresses. */
2389 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2390 walk_attr_value (XVECEXP (exp
, 0, i
));
2393 return (*address_fn
) (exp
);
2395 /* Make a new copy of this COND, replacing each element. */
2396 newexp
= rtx_alloc (COND
);
2397 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (exp
, 0));
2398 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2400 XVECEXP (newexp
, 0, i
) = XVECEXP (exp
, 0, i
);
2401 XVECEXP (newexp
, 0, i
+ 1)
2402 = substitute_address (XVECEXP (exp
, 0, i
+ 1),
2403 no_address_fn
, address_fn
);
2406 XEXP (newexp
, 1) = substitute_address (XEXP (exp
, 1),
2407 no_address_fn
, address_fn
);
2412 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
2415 walk_attr_value (XEXP (exp
, 0));
2417 return (*address_fn
) (exp
);
2419 return attr_rtx (IF_THEN_ELSE
,
2420 substitute_address (XEXP (exp
, 0),
2421 no_address_fn
, address_fn
),
2422 substitute_address (XEXP (exp
, 1),
2423 no_address_fn
, address_fn
),
2424 substitute_address (XEXP (exp
, 2),
2425 no_address_fn
, address_fn
));
2428 return (*no_address_fn
) (exp
);
2431 /* Make new attributes from the `length' attribute. The following are made,
2432 each corresponding to a function called from `shorten_branches' or
2435 *insn_default_length This is the length of the insn to be returned
2436 by `get_attr_length' before `shorten_branches'
2437 has been called. In each case where the length
2438 depends on relative addresses, the largest
2439 possible is used. This routine is also used
2440 to compute the initial size of the insn.
2442 *insn_variable_length_p This returns 1 if the insn's length depends
2443 on relative addresses, zero otherwise.
2445 *insn_current_length This is only called when it is known that the
2446 insn has a variable length and returns the
2447 current length, based on relative addresses.
2451 make_length_attrs ()
2453 static const char *new_names
[] = {"*insn_default_length",
2454 "*insn_variable_length_p",
2455 "*insn_current_length"};
2456 static rtx (*no_address_fn
[]) PARAMS ((rtx
)) = {identity_fn
, zero_fn
, zero_fn
};
2457 static rtx (*address_fn
[]) PARAMS ((rtx
)) = {max_fn
, one_fn
, identity_fn
};
2459 struct attr_desc
*length_attr
, *new_attr
;
2460 struct attr_value
*av
, *new_av
;
2461 struct insn_ent
*ie
, *new_ie
;
2463 /* See if length attribute is defined. If so, it must be numeric. Make
2464 it special so we don't output anything for it. */
2465 length_attr
= find_attr ("length", 0);
2466 if (length_attr
== 0)
2469 if (! length_attr
->is_numeric
)
2470 fatal ("length attribute must be numeric.");
2472 length_attr
->is_const
= 0;
2473 length_attr
->is_special
= 1;
2475 /* Make each new attribute, in turn. */
2476 for (i
= 0; i
< ARRAY_SIZE (new_names
); i
++)
2478 make_internal_attr (new_names
[i
],
2479 substitute_address (length_attr
->default_val
->value
,
2480 no_address_fn
[i
], address_fn
[i
]),
2482 new_attr
= find_attr (new_names
[i
], 0);
2483 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
2484 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2486 new_av
= get_attr_value (substitute_address (av
->value
,
2489 new_attr
, ie
->insn_code
);
2490 new_ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2491 new_ie
->insn_code
= ie
->insn_code
;
2492 new_ie
->insn_index
= ie
->insn_index
;
2493 insert_insn_ent (new_av
, new_ie
);
2498 /* Utility functions called from above routine. */
2509 rtx exp ATTRIBUTE_UNUSED
;
2511 return make_numeric_value (0);
2516 rtx exp ATTRIBUTE_UNUSED
;
2518 return make_numeric_value (1);
2526 return make_numeric_value (max_attr_value (exp
, &unknown
));
2530 write_length_unit_log ()
2532 struct attr_desc
*length_attr
= find_attr ("length", 0);
2533 struct attr_value
*av
;
2534 struct insn_ent
*ie
;
2535 unsigned int length_unit_log
, length_or
;
2538 if (length_attr
== 0)
2540 length_or
= or_attr_value (length_attr
->default_val
->value
, &unknown
);
2541 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
2542 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2543 length_or
|= or_attr_value (av
->value
, &unknown
);
2546 length_unit_log
= 0;
2549 length_or
= ~length_or
;
2550 for (length_unit_log
= 0; length_or
& 1; length_or
>>= 1)
2553 printf ("int length_unit_log = %u;\n", length_unit_log
);
2556 /* Take a COND expression and see if any of the conditions in it can be
2557 simplified. If any are known true or known false for the particular insn
2558 code, the COND can be further simplified.
2560 Also call ourselves on any COND operations that are values of this COND.
2562 We do not modify EXP; rather, we make and return a new rtx. */
2565 simplify_cond (exp
, insn_code
, insn_index
)
2567 int insn_code
, insn_index
;
2570 /* We store the desired contents here,
2571 then build a new expression if they don't match EXP. */
2572 rtx defval
= XEXP (exp
, 1);
2573 rtx new_defval
= XEXP (exp
, 1);
2574 int len
= XVECLEN (exp
, 0);
2575 rtx
*tests
= (rtx
*) xmalloc (len
* sizeof (rtx
));
2580 /* This lets us free all storage allocated below, if appropriate. */
2581 first_spacer
= (char *) obstack_finish (rtl_obstack
);
2583 memcpy (tests
, XVEC (exp
, 0)->elem
, len
* sizeof (rtx
));
2585 /* See if default value needs simplification. */
2586 if (GET_CODE (defval
) == COND
)
2587 new_defval
= simplify_cond (defval
, insn_code
, insn_index
);
2589 /* Simplify the subexpressions, and see what tests we can get rid of. */
2591 for (i
= 0; i
< len
; i
+= 2)
2593 rtx newtest
, newval
;
2595 /* Simplify this test. */
2596 newtest
= SIMPLIFY_TEST_EXP (tests
[i
], insn_code
, insn_index
);
2599 newval
= tests
[i
+ 1];
2600 /* See if this value may need simplification. */
2601 if (GET_CODE (newval
) == COND
)
2602 newval
= simplify_cond (newval
, insn_code
, insn_index
);
2604 /* Look for ways to delete or combine this test. */
2605 if (newtest
== true_rtx
)
2607 /* If test is true, make this value the default
2608 and discard this + any following tests. */
2610 defval
= tests
[i
+ 1];
2611 new_defval
= newval
;
2614 else if (newtest
== false_rtx
)
2616 /* If test is false, discard it and its value. */
2617 for (j
= i
; j
< len
- 2; j
++)
2618 tests
[j
] = tests
[j
+ 2];
2622 else if (i
> 0 && attr_equal_p (newval
, tests
[i
- 1]))
2624 /* If this value and the value for the prev test are the same,
2628 = insert_right_side (IOR
, tests
[i
- 2], newtest
,
2629 insn_code
, insn_index
);
2631 /* Delete this test/value. */
2632 for (j
= i
; j
< len
- 2; j
++)
2633 tests
[j
] = tests
[j
+ 2];
2638 tests
[i
+ 1] = newval
;
2641 /* If the last test in a COND has the same value
2642 as the default value, that test isn't needed. */
2644 while (len
> 0 && attr_equal_p (tests
[len
- 1], new_defval
))
2647 /* See if we changed anything. */
2648 if (len
!= XVECLEN (exp
, 0) || new_defval
!= XEXP (exp
, 1))
2651 for (i
= 0; i
< len
; i
++)
2652 if (! attr_equal_p (tests
[i
], XVECEXP (exp
, 0, i
)))
2660 if (GET_CODE (defval
) == COND
)
2661 ret
= simplify_cond (defval
, insn_code
, insn_index
);
2669 rtx newexp
= rtx_alloc (COND
);
2671 XVEC (newexp
, 0) = rtvec_alloc (len
);
2672 memcpy (XVEC (newexp
, 0)->elem
, tests
, len
* sizeof (rtx
));
2673 XEXP (newexp
, 1) = new_defval
;
2680 /* Remove an insn entry from an attribute value. */
2683 remove_insn_ent (av
, ie
)
2684 struct attr_value
*av
;
2685 struct insn_ent
*ie
;
2687 struct insn_ent
*previe
;
2689 if (av
->first_insn
== ie
)
2690 av
->first_insn
= ie
->next
;
2693 for (previe
= av
->first_insn
; previe
->next
!= ie
; previe
= previe
->next
)
2695 previe
->next
= ie
->next
;
2699 if (ie
->insn_code
== -1)
2700 av
->has_asm_insn
= 0;
2705 /* Insert an insn entry in an attribute value list. */
2708 insert_insn_ent (av
, ie
)
2709 struct attr_value
*av
;
2710 struct insn_ent
*ie
;
2712 ie
->next
= av
->first_insn
;
2713 av
->first_insn
= ie
;
2715 if (ie
->insn_code
== -1)
2716 av
->has_asm_insn
= 1;
2721 /* This is a utility routine to take an expression that is a tree of either
2722 AND or IOR expressions and insert a new term. The new term will be
2723 inserted at the right side of the first node whose code does not match
2724 the root. A new node will be created with the root's code. Its left
2725 side will be the old right side and its right side will be the new
2728 If the `term' is itself a tree, all its leaves will be inserted. */
2731 insert_right_side (code
, exp
, term
, insn_code
, insn_index
)
2735 int insn_code
, insn_index
;
2739 /* Avoid consing in some special cases. */
2740 if (code
== AND
&& term
== true_rtx
)
2742 if (code
== AND
&& term
== false_rtx
)
2744 if (code
== AND
&& exp
== true_rtx
)
2746 if (code
== AND
&& exp
== false_rtx
)
2748 if (code
== IOR
&& term
== true_rtx
)
2750 if (code
== IOR
&& term
== false_rtx
)
2752 if (code
== IOR
&& exp
== true_rtx
)
2754 if (code
== IOR
&& exp
== false_rtx
)
2756 if (attr_equal_p (exp
, term
))
2759 if (GET_CODE (term
) == code
)
2761 exp
= insert_right_side (code
, exp
, XEXP (term
, 0),
2762 insn_code
, insn_index
);
2763 exp
= insert_right_side (code
, exp
, XEXP (term
, 1),
2764 insn_code
, insn_index
);
2769 if (GET_CODE (exp
) == code
)
2771 rtx
new = insert_right_side (code
, XEXP (exp
, 1),
2772 term
, insn_code
, insn_index
);
2773 if (new != XEXP (exp
, 1))
2774 /* Make a copy of this expression and call recursively. */
2775 newexp
= attr_rtx (code
, XEXP (exp
, 0), new);
2781 /* Insert the new term. */
2782 newexp
= attr_rtx (code
, exp
, term
);
2785 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2788 /* If we have an expression which AND's a bunch of
2789 (not (eq_attrq "alternative" "n"))
2790 terms, we may have covered all or all but one of the possible alternatives.
2791 If so, we can optimize. Similarly for IOR's of EQ_ATTR.
2793 This routine is passed an expression and either AND or IOR. It returns a
2794 bitmask indicating which alternatives are mentioned within EXP. */
2797 compute_alternative_mask (exp
, code
)
2802 if (GET_CODE (exp
) == code
)
2803 return compute_alternative_mask (XEXP (exp
, 0), code
)
2804 | compute_alternative_mask (XEXP (exp
, 1), code
);
2806 else if (code
== AND
&& GET_CODE (exp
) == NOT
2807 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2808 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
2809 string
= XSTR (XEXP (exp
, 0), 1);
2811 else if (code
== IOR
&& GET_CODE (exp
) == EQ_ATTR
2812 && XSTR (exp
, 0) == alternative_name
)
2813 string
= XSTR (exp
, 1);
2819 return 1 << (string
[0] - '0');
2820 return 1 << atoi (string
);
2823 /* Given I, a single-bit mask, return RTX to compare the `alternative'
2824 attribute with the value represented by that bit. */
2827 make_alternative_compare (mask
)
2834 for (i
= 0; (mask
& (1 << i
)) == 0; i
++)
2837 newexp
= attr_rtx (EQ_ATTR
, alternative_name
, attr_numeral (i
));
2838 RTX_UNCHANGING_P (newexp
) = 1;
2843 /* If we are processing an (eq_attr "attr" "value") test, we find the value
2844 of "attr" for this insn code. From that value, we can compute a test
2845 showing when the EQ_ATTR will be true. This routine performs that
2846 computation. If a test condition involves an address, we leave the EQ_ATTR
2847 intact because addresses are only valid for the `length' attribute.
2849 EXP is the EQ_ATTR expression and VALUE is the value of that attribute
2850 for the insn corresponding to INSN_CODE and INSN_INDEX. */
2853 evaluate_eq_attr (exp
, value
, insn_code
, insn_index
)
2856 int insn_code
, insn_index
;
2863 if (GET_CODE (value
) == CONST_STRING
)
2865 if (! strcmp (XSTR (value
, 0), XSTR (exp
, 1)))
2870 else if (GET_CODE (value
) == SYMBOL_REF
)
2875 if (GET_CODE (exp
) != EQ_ATTR
)
2878 if (strlen (XSTR (exp
, 0)) + strlen (XSTR (exp
, 1)) + 2 > 256)
2881 strcpy (string
, XSTR (exp
, 0));
2882 strcat (string
, "_");
2883 strcat (string
, XSTR (exp
, 1));
2884 for (p
= string
; *p
; p
++)
2887 newexp
= attr_rtx (EQ
, value
,
2888 attr_rtx (SYMBOL_REF
,
2889 attr_string (string
, strlen (string
))));
2891 else if (GET_CODE (value
) == COND
)
2893 /* We construct an IOR of all the cases for which the requested attribute
2894 value is present. Since we start with FALSE, if it is not present,
2895 FALSE will be returned.
2897 Each case is the AND of the NOT's of the previous conditions with the
2898 current condition; in the default case the current condition is TRUE.
2900 For each possible COND value, call ourselves recursively.
2902 The extra TRUE and FALSE expressions will be eliminated by another
2903 call to the simplification routine. */
2908 if (current_alternative_string
)
2909 clear_struct_flag (value
);
2911 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
2913 rtx
this = SIMPLIFY_TEST_EXP (XVECEXP (value
, 0, i
),
2914 insn_code
, insn_index
);
2916 SIMPLIFY_ALTERNATIVE (this);
2918 right
= insert_right_side (AND
, andexp
, this,
2919 insn_code
, insn_index
);
2920 right
= insert_right_side (AND
, right
,
2921 evaluate_eq_attr (exp
,
2924 insn_code
, insn_index
),
2925 insn_code
, insn_index
);
2926 orexp
= insert_right_side (IOR
, orexp
, right
,
2927 insn_code
, insn_index
);
2929 /* Add this condition into the AND expression. */
2930 newexp
= attr_rtx (NOT
, this);
2931 andexp
= insert_right_side (AND
, andexp
, newexp
,
2932 insn_code
, insn_index
);
2935 /* Handle the default case. */
2936 right
= insert_right_side (AND
, andexp
,
2937 evaluate_eq_attr (exp
, XEXP (value
, 1),
2938 insn_code
, insn_index
),
2939 insn_code
, insn_index
);
2940 newexp
= insert_right_side (IOR
, orexp
, right
, insn_code
, insn_index
);
2945 /* If uses an address, must return original expression. But set the
2946 RTX_UNCHANGING_P bit so we don't try to simplify it again. */
2949 walk_attr_value (newexp
);
2953 /* This had `&& current_alternative_string', which seems to be wrong. */
2954 if (! RTX_UNCHANGING_P (exp
))
2955 return copy_rtx_unchanging (exp
);
2962 /* This routine is called when an AND of a term with a tree of AND's is
2963 encountered. If the term or its complement is present in the tree, it
2964 can be replaced with TRUE or FALSE, respectively.
2966 Note that (eq_attr "att" "v1") and (eq_attr "att" "v2") cannot both
2967 be true and hence are complementary.
2969 There is one special case: If we see
2970 (and (not (eq_attr "att" "v1"))
2971 (eq_attr "att" "v2"))
2972 this can be replaced by (eq_attr "att" "v2"). To do this we need to
2973 replace the term, not anything in the AND tree. So we pass a pointer to
2977 simplify_and_tree (exp
, pterm
, insn_code
, insn_index
)
2980 int insn_code
, insn_index
;
2985 int left_eliminates_term
, right_eliminates_term
;
2987 if (GET_CODE (exp
) == AND
)
2989 left
= simplify_and_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2990 right
= simplify_and_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2991 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2993 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2995 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2999 else if (GET_CODE (exp
) == IOR
)
3001 /* For the IOR case, we do the same as above, except that we can
3002 only eliminate `term' if both sides of the IOR would do so. */
3004 left
= simplify_and_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
3005 left_eliminates_term
= (temp
== true_rtx
);
3008 right
= simplify_and_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
3009 right_eliminates_term
= (temp
== true_rtx
);
3011 if (left_eliminates_term
&& right_eliminates_term
)
3014 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3016 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
3018 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3022 /* Check for simplifications. Do some extra checking here since this
3023 routine is called so many times. */
3028 else if (GET_CODE (exp
) == NOT
&& XEXP (exp
, 0) == *pterm
)
3031 else if (GET_CODE (*pterm
) == NOT
&& exp
== XEXP (*pterm
, 0))
3034 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == EQ_ATTR
)
3036 if (XSTR (exp
, 0) != XSTR (*pterm
, 0))
3039 if (! strcmp (XSTR (exp
, 1), XSTR (*pterm
, 1)))
3045 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
3046 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
3048 if (XSTR (*pterm
, 0) != XSTR (XEXP (exp
, 0), 0))
3051 if (! strcmp (XSTR (*pterm
, 1), XSTR (XEXP (exp
, 0), 1)))
3057 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
3058 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
)
3060 if (XSTR (exp
, 0) != XSTR (XEXP (*pterm
, 0), 0))
3063 if (! strcmp (XSTR (exp
, 1), XSTR (XEXP (*pterm
, 0), 1)))
3069 else if (GET_CODE (exp
) == NOT
&& GET_CODE (*pterm
) == NOT
)
3071 if (attr_equal_p (XEXP (exp
, 0), XEXP (*pterm
, 0)))
3075 else if (GET_CODE (exp
) == NOT
)
3077 if (attr_equal_p (XEXP (exp
, 0), *pterm
))
3081 else if (GET_CODE (*pterm
) == NOT
)
3083 if (attr_equal_p (XEXP (*pterm
, 0), exp
))
3087 else if (attr_equal_p (exp
, *pterm
))
3093 /* Similar to `simplify_and_tree', but for IOR trees. */
3096 simplify_or_tree (exp
, pterm
, insn_code
, insn_index
)
3099 int insn_code
, insn_index
;
3104 int left_eliminates_term
, right_eliminates_term
;
3106 if (GET_CODE (exp
) == IOR
)
3108 left
= simplify_or_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
3109 right
= simplify_or_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
3110 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3112 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
3114 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3118 else if (GET_CODE (exp
) == AND
)
3120 /* For the AND case, we do the same as above, except that we can
3121 only eliminate `term' if both sides of the AND would do so. */
3123 left
= simplify_or_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
3124 left_eliminates_term
= (temp
== false_rtx
);
3127 right
= simplify_or_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
3128 right_eliminates_term
= (temp
== false_rtx
);
3130 if (left_eliminates_term
&& right_eliminates_term
)
3133 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3135 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
3137 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3141 if (attr_equal_p (exp
, *pterm
))
3144 else if (GET_CODE (exp
) == NOT
&& attr_equal_p (XEXP (exp
, 0), *pterm
))
3147 else if (GET_CODE (*pterm
) == NOT
&& attr_equal_p (XEXP (*pterm
, 0), exp
))
3150 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
3151 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
3152 && XSTR (*pterm
, 0) == XSTR (XEXP (exp
, 0), 0))
3155 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
3156 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
3157 && XSTR (exp
, 0) == XSTR (XEXP (*pterm
, 0), 0))
3162 /* Compute approximate cost of the expression. Used to decide whether
3163 expression is cheap enought for inline. */
3172 code
= GET_CODE (x
);
3181 /* Alternatives don't result into function call. */
3182 if (!strcmp (XSTR (x
, 0), "alternative"))
3189 const char *fmt
= GET_RTX_FORMAT (code
);
3190 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3196 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3197 cost
+= attr_rtx_cost (XVECEXP (x
, i
, j
));
3200 cost
+= attr_rtx_cost (XEXP (x
, i
));
3210 /* Given an expression, see if it can be simplified for a particular insn
3211 code based on the values of other attributes being tested. This can
3212 eliminate nested get_attr_... calls.
3214 Note that if an endless recursion is specified in the patterns, the
3215 optimization will loop. However, it will do so in precisely the cases where
3216 an infinite recursion loop could occur during compilation. It's better that
3220 simplify_test_exp (exp
, insn_code
, insn_index
)
3222 int insn_code
, insn_index
;
3225 struct attr_desc
*attr
;
3226 struct attr_value
*av
;
3227 struct insn_ent
*ie
;
3231 /* Don't re-simplify something we already simplified. */
3232 if (RTX_UNCHANGING_P (exp
) || MEM_IN_STRUCT_P (exp
))
3235 switch (GET_CODE (exp
))
3238 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3239 SIMPLIFY_ALTERNATIVE (left
);
3240 if (left
== false_rtx
)
3242 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3243 SIMPLIFY_ALTERNATIVE (right
);
3244 if (left
== false_rtx
)
3247 /* If either side is an IOR and we have (eq_attr "alternative" ..")
3248 present on both sides, apply the distributive law since this will
3249 yield simplifications. */
3250 if ((GET_CODE (left
) == IOR
|| GET_CODE (right
) == IOR
)
3251 && compute_alternative_mask (left
, IOR
)
3252 && compute_alternative_mask (right
, IOR
))
3254 if (GET_CODE (left
) == IOR
)
3261 newexp
= attr_rtx (IOR
,
3262 attr_rtx (AND
, left
, XEXP (right
, 0)),
3263 attr_rtx (AND
, left
, XEXP (right
, 1)));
3265 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3268 /* Try with the term on both sides. */
3269 right
= simplify_and_tree (right
, &left
, insn_code
, insn_index
);
3270 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3271 left
= simplify_and_tree (left
, &right
, insn_code
, insn_index
);
3273 if (left
== false_rtx
|| right
== false_rtx
)
3275 else if (left
== true_rtx
)
3279 else if (right
== true_rtx
)
3283 /* See if all or all but one of the insn's alternatives are specified
3284 in this tree. Optimize if so. */
3286 else if (insn_code
>= 0
3287 && (GET_CODE (left
) == AND
3288 || (GET_CODE (left
) == NOT
3289 && GET_CODE (XEXP (left
, 0)) == EQ_ATTR
3290 && XSTR (XEXP (left
, 0), 0) == alternative_name
)
3291 || GET_CODE (right
) == AND
3292 || (GET_CODE (right
) == NOT
3293 && GET_CODE (XEXP (right
, 0)) == EQ_ATTR
3294 && XSTR (XEXP (right
, 0), 0) == alternative_name
)))
3296 i
= compute_alternative_mask (exp
, AND
);
3297 if (i
& ~insn_alternatives
[insn_code
])
3298 fatal ("Invalid alternative specified for pattern number %d",
3301 /* If all alternatives are excluded, this is false. */
3302 i
^= insn_alternatives
[insn_code
];
3305 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3307 /* If just one excluded, AND a comparison with that one to the
3308 front of the tree. The others will be eliminated by
3309 optimization. We do not want to do this if the insn has one
3310 alternative and we have tested none of them! */
3311 left
= make_alternative_compare (i
);
3312 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3313 newexp
= attr_rtx (AND
, left
, right
);
3315 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3319 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3321 newexp
= attr_rtx (AND
, left
, right
);
3322 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3327 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3328 SIMPLIFY_ALTERNATIVE (left
);
3329 if (left
== true_rtx
)
3331 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3332 SIMPLIFY_ALTERNATIVE (right
);
3333 if (right
== true_rtx
)
3336 right
= simplify_or_tree (right
, &left
, insn_code
, insn_index
);
3337 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3338 left
= simplify_or_tree (left
, &right
, insn_code
, insn_index
);
3340 if (right
== true_rtx
|| left
== true_rtx
)
3342 else if (left
== false_rtx
)
3346 else if (right
== false_rtx
)
3351 /* Test for simple cases where the distributive law is useful. I.e.,
3352 convert (ior (and (x) (y))
3358 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
3359 && attr_equal_p (XEXP (left
, 0), XEXP (right
, 0)))
3361 newexp
= attr_rtx (IOR
, XEXP (left
, 1), XEXP (right
, 1));
3363 left
= XEXP (left
, 0);
3365 newexp
= attr_rtx (AND
, left
, right
);
3366 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3369 /* See if all or all but one of the insn's alternatives are specified
3370 in this tree. Optimize if so. */
3372 else if (insn_code
>= 0
3373 && (GET_CODE (left
) == IOR
3374 || (GET_CODE (left
) == EQ_ATTR
3375 && XSTR (left
, 0) == alternative_name
)
3376 || GET_CODE (right
) == IOR
3377 || (GET_CODE (right
) == EQ_ATTR
3378 && XSTR (right
, 0) == alternative_name
)))
3380 i
= compute_alternative_mask (exp
, IOR
);
3381 if (i
& ~insn_alternatives
[insn_code
])
3382 fatal ("Invalid alternative specified for pattern number %d",
3385 /* If all alternatives are included, this is true. */
3386 i
^= insn_alternatives
[insn_code
];
3389 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3391 /* If just one excluded, IOR a comparison with that one to the
3392 front of the tree. The others will be eliminated by
3393 optimization. We do not want to do this if the insn has one
3394 alternative and we have tested none of them! */
3395 left
= make_alternative_compare (i
);
3396 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3397 newexp
= attr_rtx (IOR
, attr_rtx (NOT
, left
), right
);
3399 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3403 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3405 newexp
= attr_rtx (IOR
, left
, right
);
3406 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3411 if (GET_CODE (XEXP (exp
, 0)) == NOT
)
3413 left
= SIMPLIFY_TEST_EXP (XEXP (XEXP (exp
, 0), 0),
3414 insn_code
, insn_index
);
3415 SIMPLIFY_ALTERNATIVE (left
);
3419 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3420 SIMPLIFY_ALTERNATIVE (left
);
3421 if (GET_CODE (left
) == NOT
)
3422 return XEXP (left
, 0);
3424 if (left
== false_rtx
)
3426 else if (left
== true_rtx
)
3429 /* Try to apply De`Morgan's laws. */
3430 else if (GET_CODE (left
) == IOR
)
3432 newexp
= attr_rtx (AND
,
3433 attr_rtx (NOT
, XEXP (left
, 0)),
3434 attr_rtx (NOT
, XEXP (left
, 1)));
3436 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3438 else if (GET_CODE (left
) == AND
)
3440 newexp
= attr_rtx (IOR
,
3441 attr_rtx (NOT
, XEXP (left
, 0)),
3442 attr_rtx (NOT
, XEXP (left
, 1)));
3444 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3446 else if (left
!= XEXP (exp
, 0))
3448 newexp
= attr_rtx (NOT
, left
);
3453 if (current_alternative_string
&& XSTR (exp
, 0) == alternative_name
)
3454 return (XSTR (exp
, 1) == current_alternative_string
3455 ? true_rtx
: false_rtx
);
3457 /* Look at the value for this insn code in the specified attribute.
3458 We normally can replace this comparison with the condition that
3459 would give this insn the values being tested for. */
3460 if (XSTR (exp
, 0) != alternative_name
3461 && (attr
= find_attr (XSTR (exp
, 0), 0)) != NULL
)
3462 for (av
= attr
->first_value
; av
; av
= av
->next
)
3463 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3464 if (ie
->insn_code
== insn_code
)
3467 struct obstack
*old
= rtl_obstack
;
3468 rtl_obstack
= temp_obstack
;
3469 x
= evaluate_eq_attr (exp
, av
->value
, insn_code
, insn_index
);
3470 x
= SIMPLIFY_TEST_EXP (x
, insn_code
, insn_index
);
3472 if (attr_rtx_cost(x
) < 20)
3473 return attr_copy_rtx (x
);
3481 /* We have already simplified this expression. Simplifying it again
3482 won't buy anything unless we weren't given a valid insn code
3483 to process (i.e., we are canonicalizing something.). */
3484 if (insn_code
!= -2 /* Seems wrong: && current_alternative_string. */
3485 && ! RTX_UNCHANGING_P (newexp
))
3486 return copy_rtx_unchanging (newexp
);
3491 /* Optimize the attribute lists by seeing if we can determine conditional
3492 values from the known values of other attributes. This will save subroutine
3493 calls during the compilation. */
3498 struct attr_desc
*attr
;
3499 struct attr_value
*av
;
3500 struct insn_ent
*ie
;
3502 int something_changed
= 1;
3504 struct attr_value_list
3506 struct attr_value
*av
;
3507 struct insn_ent
*ie
;
3508 struct attr_desc
*attr
;
3509 struct attr_value_list
*next
;
3511 struct attr_value_list
**insn_code_values
;
3512 struct attr_value_list
*ivbuf
;
3513 struct attr_value_list
*iv
;
3515 /* For each insn code, make a list of all the insn_ent's for it,
3516 for all values for all attributes. */
3518 if (num_insn_ents
== 0)
3521 /* Make 2 extra elements, for "code" values -2 and -1. */
3523 = (struct attr_value_list
**) xmalloc ((insn_code_number
+ 2)
3524 * sizeof (struct attr_value_list
*));
3525 memset ((char *) insn_code_values
, 0,
3526 (insn_code_number
+ 2) * sizeof (struct attr_value_list
*));
3528 /* Offset the table address so we can index by -2 or -1. */
3529 insn_code_values
+= 2;
3531 iv
= ivbuf
= ((struct attr_value_list
*)
3532 xmalloc (num_insn_ents
* sizeof (struct attr_value_list
)));
3534 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
3535 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
3536 for (av
= attr
->first_value
; av
; av
= av
->next
)
3537 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3542 iv
->next
= insn_code_values
[ie
->insn_code
];
3543 insn_code_values
[ie
->insn_code
] = iv
;
3547 /* Sanity check on num_insn_ents. */
3548 if (iv
!= ivbuf
+ num_insn_ents
)
3551 /* Process one insn code at a time. */
3552 for (i
= -2; i
< insn_code_number
; i
++)
3554 /* Clear the MEM_IN_STRUCT_P flag everywhere relevant.
3555 We use it to mean "already simplified for this insn". */
3556 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3557 clear_struct_flag (iv
->av
->value
);
3559 /* Loop until nothing changes for one iteration. */
3560 something_changed
= 1;
3561 while (something_changed
)
3563 something_changed
= 0;
3564 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3566 struct obstack
*old
= rtl_obstack
;
3571 if (GET_CODE (av
->value
) != COND
)
3574 rtl_obstack
= temp_obstack
;
3575 #if 0 /* This was intended as a speed up, but it was slower. */
3576 if (insn_n_alternatives
[ie
->insn_code
] > 6
3577 && count_sub_rtxs (av
->value
, 200) >= 200)
3578 newexp
= simplify_by_alternatives (av
->value
, ie
->insn_code
,
3582 newexp
= simplify_cond (av
->value
, ie
->insn_code
,
3586 if (newexp
!= av
->value
)
3588 newexp
= attr_copy_rtx (newexp
);
3589 remove_insn_ent (av
, ie
);
3590 av
= get_attr_value (newexp
, attr
, ie
->insn_code
);
3592 insert_insn_ent (av
, ie
);
3593 something_changed
= 1;
3600 free (insn_code_values
- 2);
3605 simplify_by_alternatives (exp
, insn_code
, insn_index
)
3607 int insn_code
, insn_index
;
3610 int len
= insn_n_alternatives
[insn_code
];
3611 rtx newexp
= rtx_alloc (COND
);
3614 XVEC (newexp
, 0) = rtvec_alloc (len
* 2);
3616 /* It will not matter what value we use as the default value
3617 of the new COND, since that default will never be used.
3618 Choose something of the right type. */
3619 for (ultimate
= exp
; GET_CODE (ultimate
) == COND
;)
3620 ultimate
= XEXP (ultimate
, 1);
3621 XEXP (newexp
, 1) = ultimate
;
3623 for (i
= 0; i
< insn_n_alternatives
[insn_code
]; i
++)
3625 current_alternative_string
= attr_numeral (i
);
3626 XVECEXP (newexp
, 0, i
* 2) = make_alternative_compare (1 << i
);
3627 XVECEXP (newexp
, 0, i
* 2 + 1)
3628 = simplify_cond (exp
, insn_code
, insn_index
);
3631 current_alternative_string
= 0;
3632 return simplify_cond (newexp
, insn_code
, insn_index
);
3636 /* If EXP is a suitable expression, reorganize it by constructing an
3637 equivalent expression that is a COND with the tests being all combinations
3638 of attribute values and the values being simple constants. */
3641 simplify_by_exploding (exp
)
3644 rtx list
= 0, link
, condexp
, defval
= NULL_RTX
;
3645 struct dimension
*space
;
3646 rtx
*condtest
, *condval
;
3647 int i
, j
, total
, ndim
= 0;
3648 int most_tests
, num_marks
, new_marks
;
3651 /* Locate all the EQ_ATTR expressions. */
3652 if (! find_and_mark_used_attributes (exp
, &list
, &ndim
) || ndim
== 0)
3654 unmark_used_attributes (list
, 0, 0);
3658 /* Create an attribute space from the list of used attributes. For each
3659 dimension in the attribute space, record the attribute, list of values
3660 used, and number of values used. Add members to the list of values to
3661 cover the domain of the attribute. This makes the expanded COND form
3662 order independent. */
3664 space
= (struct dimension
*) xmalloc (ndim
* sizeof (struct dimension
));
3667 for (ndim
= 0; list
; ndim
++)
3669 /* Pull the first attribute value from the list and record that
3670 attribute as another dimension in the attribute space. */
3671 const char *name
= XSTR (XEXP (list
, 0), 0);
3674 if ((space
[ndim
].attr
= find_attr (name
, 0)) == 0
3675 || space
[ndim
].attr
->is_numeric
)
3677 unmark_used_attributes (list
, space
, ndim
);
3681 /* Add all remaining attribute values that refer to this attribute. */
3682 space
[ndim
].num_values
= 0;
3683 space
[ndim
].values
= 0;
3685 for (link
= list
; link
; link
= *prev
)
3686 if (! strcmp (XSTR (XEXP (link
, 0), 0), name
))
3688 space
[ndim
].num_values
++;
3689 *prev
= XEXP (link
, 1);
3690 XEXP (link
, 1) = space
[ndim
].values
;
3691 space
[ndim
].values
= link
;
3694 prev
= &XEXP (link
, 1);
3696 /* Add sufficient members to the list of values to make the list
3697 mutually exclusive and record the total size of the attribute
3699 total
*= add_values_to_cover (&space
[ndim
]);
3702 /* Sort the attribute space so that the attributes go from non-constant
3703 to constant and from most values to least values. */
3704 for (i
= 0; i
< ndim
; i
++)
3705 for (j
= ndim
- 1; j
> i
; j
--)
3706 if ((space
[j
-1].attr
->is_const
&& !space
[j
].attr
->is_const
)
3707 || space
[j
-1].num_values
< space
[j
].num_values
)
3709 struct dimension tmp
;
3711 space
[j
] = space
[j
- 1];
3715 /* Establish the initial current value. */
3716 for (i
= 0; i
< ndim
; i
++)
3717 space
[i
].current_value
= space
[i
].values
;
3719 condtest
= (rtx
*) xmalloc (total
* sizeof (rtx
));
3720 condval
= (rtx
*) xmalloc (total
* sizeof (rtx
));
3722 /* Expand the tests and values by iterating over all values in the
3726 condtest
[i
] = test_for_current_value (space
, ndim
);
3727 condval
[i
] = simplify_with_current_value (exp
, space
, ndim
);
3728 if (! increment_current_value (space
, ndim
))
3734 /* We are now finished with the original expression. */
3735 unmark_used_attributes (0, space
, ndim
);
3738 /* Find the most used constant value and make that the default. */
3740 for (i
= num_marks
= 0; i
< total
; i
++)
3741 if (GET_CODE (condval
[i
]) == CONST_STRING
3742 && ! MEM_VOLATILE_P (condval
[i
]))
3744 /* Mark the unmarked constant value and count how many are marked. */
3745 MEM_VOLATILE_P (condval
[i
]) = 1;
3746 for (j
= new_marks
= 0; j
< total
; j
++)
3747 if (GET_CODE (condval
[j
]) == CONST_STRING
3748 && MEM_VOLATILE_P (condval
[j
]))
3750 if (new_marks
- num_marks
> most_tests
)
3752 most_tests
= new_marks
- num_marks
;
3753 defval
= condval
[i
];
3755 num_marks
= new_marks
;
3757 /* Clear all the marks. */
3758 for (i
= 0; i
< total
; i
++)
3759 MEM_VOLATILE_P (condval
[i
]) = 0;
3761 /* Give up if nothing is constant. */
3765 /* If all values are the default, use that. */
3766 else if (total
== most_tests
)
3769 /* Make a COND with the most common constant value the default. (A more
3770 complex method where tests with the same value were combined didn't
3771 seem to improve things.) */
3774 condexp
= rtx_alloc (COND
);
3775 XVEC (condexp
, 0) = rtvec_alloc ((total
- most_tests
) * 2);
3776 XEXP (condexp
, 1) = defval
;
3777 for (i
= j
= 0; i
< total
; i
++)
3778 if (condval
[i
] != defval
)
3780 XVECEXP (condexp
, 0, 2 * j
) = condtest
[i
];
3781 XVECEXP (condexp
, 0, 2 * j
+ 1) = condval
[i
];
3791 /* Set the MEM_VOLATILE_P flag for all EQ_ATTR expressions in EXP and
3792 verify that EXP can be simplified to a constant term if all the EQ_ATTR
3793 tests have known value. */
3796 find_and_mark_used_attributes (exp
, terms
, nterms
)
3802 switch (GET_CODE (exp
))
3805 if (! MEM_VOLATILE_P (exp
))
3807 rtx link
= rtx_alloc (EXPR_LIST
);
3808 XEXP (link
, 0) = exp
;
3809 XEXP (link
, 1) = *terms
;
3812 MEM_VOLATILE_P (exp
) = 1;
3821 if (! find_and_mark_used_attributes (XEXP (exp
, 2), terms
, nterms
))
3825 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3828 if (! find_and_mark_used_attributes (XEXP (exp
, 0), terms
, nterms
))
3833 for (i
= 0; i
< XVECLEN (exp
, 0); i
++)
3834 if (! find_and_mark_used_attributes (XVECEXP (exp
, 0, i
), terms
, nterms
))
3836 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3845 /* Clear the MEM_VOLATILE_P flag in all EQ_ATTR expressions on LIST and
3846 in the values of the NDIM-dimensional attribute space SPACE. */
3849 unmark_used_attributes (list
, space
, ndim
)
3851 struct dimension
*space
;
3857 for (i
= 0; i
< ndim
; i
++)
3858 unmark_used_attributes (space
[i
].values
, 0, 0);
3860 for (link
= list
; link
; link
= XEXP (link
, 1))
3862 exp
= XEXP (link
, 0);
3863 if (GET_CODE (exp
) == EQ_ATTR
)
3864 MEM_VOLATILE_P (exp
) = 0;
3868 /* Update the attribute dimension DIM so that all values of the attribute
3869 are tested. Return the updated number of values. */
3872 add_values_to_cover (dim
)
3873 struct dimension
*dim
;
3875 struct attr_value
*av
;
3876 rtx exp
, link
, *prev
;
3879 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3880 if (GET_CODE (av
->value
) == CONST_STRING
)
3883 if (nalt
< dim
->num_values
)
3885 else if (nalt
== dim
->num_values
)
3888 else if (nalt
* 2 < dim
->num_values
* 3)
3890 /* Most all the values of the attribute are used, so add all the unused
3892 prev
= &dim
->values
;
3893 for (link
= dim
->values
; link
; link
= *prev
)
3894 prev
= &XEXP (link
, 1);
3896 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3897 if (GET_CODE (av
->value
) == CONST_STRING
)
3899 exp
= attr_eq (dim
->attr
->name
, XSTR (av
->value
, 0));
3900 if (MEM_VOLATILE_P (exp
))
3903 link
= rtx_alloc (EXPR_LIST
);
3904 XEXP (link
, 0) = exp
;
3907 prev
= &XEXP (link
, 1);
3909 dim
->num_values
= nalt
;
3913 rtx orexp
= false_rtx
;
3915 /* Very few values are used, so compute a mutually exclusive
3916 expression. (We could do this for numeric values if that becomes
3918 prev
= &dim
->values
;
3919 for (link
= dim
->values
; link
; link
= *prev
)
3921 orexp
= insert_right_side (IOR
, orexp
, XEXP (link
, 0), -2, -2);
3922 prev
= &XEXP (link
, 1);
3924 link
= rtx_alloc (EXPR_LIST
);
3925 XEXP (link
, 0) = attr_rtx (NOT
, orexp
);
3930 return dim
->num_values
;
3933 /* Increment the current value for the NDIM-dimensional attribute space SPACE
3934 and return FALSE if the increment overflowed. */
3937 increment_current_value (space
, ndim
)
3938 struct dimension
*space
;
3943 for (i
= ndim
- 1; i
>= 0; i
--)
3945 if ((space
[i
].current_value
= XEXP (space
[i
].current_value
, 1)) == 0)
3946 space
[i
].current_value
= space
[i
].values
;
3953 /* Construct an expression corresponding to the current value for the
3954 NDIM-dimensional attribute space SPACE. */
3957 test_for_current_value (space
, ndim
)
3958 struct dimension
*space
;
3964 for (i
= 0; i
< ndim
; i
++)
3965 exp
= insert_right_side (AND
, exp
, XEXP (space
[i
].current_value
, 0),
3971 /* Given the current value of the NDIM-dimensional attribute space SPACE,
3972 set the corresponding EQ_ATTR expressions to that value and reduce
3973 the expression EXP as much as possible. On input [and output], all
3974 known EQ_ATTR expressions are set to FALSE. */
3977 simplify_with_current_value (exp
, space
, ndim
)
3979 struct dimension
*space
;
3985 /* Mark each current value as TRUE. */
3986 for (i
= 0; i
< ndim
; i
++)
3988 x
= XEXP (space
[i
].current_value
, 0);
3989 if (GET_CODE (x
) == EQ_ATTR
)
3990 MEM_VOLATILE_P (x
) = 0;
3993 exp
= simplify_with_current_value_aux (exp
);
3995 /* Change each current value back to FALSE. */
3996 for (i
= 0; i
< ndim
; i
++)
3998 x
= XEXP (space
[i
].current_value
, 0);
3999 if (GET_CODE (x
) == EQ_ATTR
)
4000 MEM_VOLATILE_P (x
) = 1;
4006 /* Reduce the expression EXP based on the MEM_VOLATILE_P settings of
4007 all EQ_ATTR expressions. */
4010 simplify_with_current_value_aux (exp
)
4016 switch (GET_CODE (exp
))
4019 if (MEM_VOLATILE_P (exp
))
4028 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
4029 if (cond
== true_rtx
)
4030 return simplify_with_current_value_aux (XEXP (exp
, 1));
4031 else if (cond
== false_rtx
)
4032 return simplify_with_current_value_aux (XEXP (exp
, 2));
4034 return attr_rtx (IF_THEN_ELSE
, cond
,
4035 simplify_with_current_value_aux (XEXP (exp
, 1)),
4036 simplify_with_current_value_aux (XEXP (exp
, 2)));
4039 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
4040 if (cond
== true_rtx
)
4042 else if (cond
== false_rtx
)
4043 return simplify_with_current_value_aux (XEXP (exp
, 0));
4045 return attr_rtx (IOR
, cond
,
4046 simplify_with_current_value_aux (XEXP (exp
, 0)));
4049 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
4050 if (cond
== true_rtx
)
4051 return simplify_with_current_value_aux (XEXP (exp
, 0));
4052 else if (cond
== false_rtx
)
4055 return attr_rtx (AND
, cond
,
4056 simplify_with_current_value_aux (XEXP (exp
, 0)));
4059 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
4060 if (cond
== true_rtx
)
4062 else if (cond
== false_rtx
)
4065 return attr_rtx (NOT
, cond
);
4068 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
4070 cond
= simplify_with_current_value_aux (XVECEXP (exp
, 0, i
));
4071 if (cond
== true_rtx
)
4072 return simplify_with_current_value_aux (XVECEXP (exp
, 0, i
+ 1));
4073 else if (cond
== false_rtx
)
4076 abort (); /* With all EQ_ATTR's of known value, a case should
4077 have been selected. */
4079 return simplify_with_current_value_aux (XEXP (exp
, 1));
4086 /* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions. */
4089 clear_struct_flag (x
)
4094 register enum rtx_code code
;
4095 register const char *fmt
;
4097 MEM_IN_STRUCT_P (x
) = 0;
4098 if (RTX_UNCHANGING_P (x
))
4101 code
= GET_CODE (x
);
4121 /* Compare the elements. If any pair of corresponding elements
4122 fail to match, return 0 for the whole things. */
4124 fmt
= GET_RTX_FORMAT (code
);
4125 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4131 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4132 clear_struct_flag (XVECEXP (x
, i
, j
));
4136 clear_struct_flag (XEXP (x
, i
));
4142 /* Return the number of RTX objects making up the expression X.
4143 But if we count more than MAX objects, stop counting. */
4146 count_sub_rtxs (x
, max
)
4152 register enum rtx_code code
;
4153 register const char *fmt
;
4156 code
= GET_CODE (x
);
4176 /* Compare the elements. If any pair of corresponding elements
4177 fail to match, return 0 for the whole things. */
4179 fmt
= GET_RTX_FORMAT (code
);
4180 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4189 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4190 total
+= count_sub_rtxs (XVECEXP (x
, i
, j
), max
);
4194 total
+= count_sub_rtxs (XEXP (x
, i
), max
);
4202 /* Create table entries for DEFINE_ATTR. */
4205 gen_attr (exp
, lineno
)
4209 struct attr_desc
*attr
;
4210 struct attr_value
*av
;
4211 const char *name_ptr
;
4214 /* Make a new attribute structure. Check for duplicate by looking at
4215 attr->default_val, since it is initialized by this routine. */
4216 attr
= find_attr (XSTR (exp
, 0), 1);
4217 if (attr
->default_val
)
4219 message_with_line (lineno
, "duplicate definition for attribute %s",
4221 message_with_line (attr
->lineno
, "previous definition");
4225 attr
->lineno
= lineno
;
4227 if (*XSTR (exp
, 1) == '\0')
4228 attr
->is_numeric
= 1;
4231 name_ptr
= XSTR (exp
, 1);
4232 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
4234 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
4235 av
->value
= attr_rtx (CONST_STRING
, p
);
4236 av
->next
= attr
->first_value
;
4237 attr
->first_value
= av
;
4238 av
->first_insn
= NULL
;
4240 av
->has_asm_insn
= 0;
4244 if (GET_CODE (XEXP (exp
, 2)) == CONST
)
4247 if (attr
->is_numeric
)
4249 message_with_line (lineno
,
4250 "constant attributes may not take numeric values");
4254 /* Get rid of the CONST node. It is allowed only at top-level. */
4255 XEXP (exp
, 2) = XEXP (XEXP (exp
, 2), 0);
4258 if (! strcmp (attr
->name
, "length") && ! attr
->is_numeric
)
4260 message_with_line (lineno
,
4261 "`length' attribute must take numeric values");
4265 /* Set up the default value. */
4266 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
4267 attr
->default_val
= get_attr_value (XEXP (exp
, 2), attr
, -2);
4270 /* Given a pattern for DEFINE_PEEPHOLE or DEFINE_INSN, return the number of
4271 alternatives in the constraints. Assume all MATCH_OPERANDs have the same
4272 number of alternatives as this should be checked elsewhere. */
4275 count_alternatives (exp
)
4281 if (GET_CODE (exp
) == MATCH_OPERAND
)
4282 return n_comma_elts (XSTR (exp
, 2));
4284 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4285 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4290 n
= count_alternatives (XEXP (exp
, i
));
4297 if (XVEC (exp
, i
) != NULL
)
4298 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4300 n
= count_alternatives (XVECEXP (exp
, i
, j
));
4309 /* Returns non-zero if the given expression contains an EQ_ATTR with the
4310 `alternative' attribute. */
4313 compares_alternatives_p (exp
)
4319 if (GET_CODE (exp
) == EQ_ATTR
&& XSTR (exp
, 0) == alternative_name
)
4322 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4323 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4328 if (compares_alternatives_p (XEXP (exp
, i
)))
4333 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4334 if (compares_alternatives_p (XVECEXP (exp
, i
, j
)))
4342 /* Returns non-zero is INNER is contained in EXP. */
4345 contained_in_p (inner
, exp
)
4352 if (rtx_equal_p (inner
, exp
))
4355 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4356 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4361 if (contained_in_p (inner
, XEXP (exp
, i
)))
4366 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4367 if (contained_in_p (inner
, XVECEXP (exp
, i
, j
)))
4375 /* Process DEFINE_PEEPHOLE, DEFINE_INSN, and DEFINE_ASM_ATTRIBUTES. */
4378 gen_insn (exp
, lineno
)
4382 struct insn_def
*id
;
4384 id
= (struct insn_def
*) oballoc (sizeof (struct insn_def
));
4388 id
->lineno
= lineno
;
4390 switch (GET_CODE (exp
))
4393 id
->insn_code
= insn_code_number
;
4394 id
->insn_index
= insn_index_number
;
4395 id
->num_alternatives
= count_alternatives (exp
);
4396 if (id
->num_alternatives
== 0)
4397 id
->num_alternatives
= 1;
4401 case DEFINE_PEEPHOLE
:
4402 id
->insn_code
= insn_code_number
;
4403 id
->insn_index
= insn_index_number
;
4404 id
->num_alternatives
= count_alternatives (exp
);
4405 if (id
->num_alternatives
== 0)
4406 id
->num_alternatives
= 1;
4410 case DEFINE_ASM_ATTRIBUTES
:
4412 id
->insn_index
= -1;
4413 id
->num_alternatives
= 1;
4415 got_define_asm_attributes
= 1;
4423 /* Process a DEFINE_DELAY. Validate the vector length, check if annul
4424 true or annul false is specified, and make a `struct delay_desc'. */
4427 gen_delay (def
, lineno
)
4431 struct delay_desc
*delay
;
4434 if (XVECLEN (def
, 1) % 3 != 0)
4436 message_with_line (lineno
,
4437 "number of elements in DEFINE_DELAY must be multiple of three");
4442 for (i
= 0; i
< XVECLEN (def
, 1); i
+= 3)
4444 if (XVECEXP (def
, 1, i
+ 1))
4445 have_annul_true
= 1;
4446 if (XVECEXP (def
, 1, i
+ 2))
4447 have_annul_false
= 1;
4450 delay
= (struct delay_desc
*) oballoc (sizeof (struct delay_desc
));
4452 delay
->num
= ++num_delays
;
4453 delay
->next
= delays
;
4454 delay
->lineno
= lineno
;
4458 /* Process a DEFINE_FUNCTION_UNIT.
4460 This gives information about a function unit contained in the CPU.
4461 We fill in a `struct function_unit_op' and a `struct function_unit'
4462 with information used later by `expand_unit'. */
4465 gen_unit (def
, lineno
)
4469 struct function_unit
*unit
;
4470 struct function_unit_op
*op
;
4471 const char *name
= XSTR (def
, 0);
4472 int multiplicity
= XINT (def
, 1);
4473 int simultaneity
= XINT (def
, 2);
4474 rtx condexp
= XEXP (def
, 3);
4475 int ready_cost
= MAX (XINT (def
, 4), 1);
4476 int issue_delay
= MAX (XINT (def
, 5), 1);
4478 /* See if we have already seen this function unit. If so, check that
4479 the multiplicity and simultaneity values are the same. If not, make
4480 a structure for this function unit. */
4481 for (unit
= units
; unit
; unit
= unit
->next
)
4482 if (! strcmp (unit
->name
, name
))
4484 if (unit
->multiplicity
!= multiplicity
4485 || unit
->simultaneity
!= simultaneity
)
4487 message_with_line (lineno
,
4488 "differing specifications given for function unit %s",
4490 message_with_line (unit
->first_lineno
, "previous definition");
4499 unit
= (struct function_unit
*) oballoc (sizeof (struct function_unit
));
4501 unit
->multiplicity
= multiplicity
;
4502 unit
->simultaneity
= simultaneity
;
4503 unit
->issue_delay
.min
= unit
->issue_delay
.max
= issue_delay
;
4504 unit
->num
= num_units
++;
4505 unit
->num_opclasses
= 0;
4506 unit
->condexp
= false_rtx
;
4509 unit
->first_lineno
= lineno
;
4513 /* Make a new operation class structure entry and initialize it. */
4514 op
= (struct function_unit_op
*) oballoc (sizeof (struct function_unit_op
));
4515 op
->condexp
= condexp
;
4516 op
->num
= unit
->num_opclasses
++;
4517 op
->ready
= ready_cost
;
4518 op
->issue_delay
= issue_delay
;
4519 op
->next
= unit
->ops
;
4520 op
->lineno
= lineno
;
4522 num_unit_opclasses
++;
4524 /* Set our issue expression based on whether or not an optional conflict
4525 vector was specified. */
4528 /* Compute the IOR of all the specified expressions. */
4529 rtx orexp
= false_rtx
;
4532 for (i
= 0; i
< XVECLEN (def
, 6); i
++)
4533 orexp
= insert_right_side (IOR
, orexp
, XVECEXP (def
, 6, i
), -2, -2);
4535 op
->conflict_exp
= orexp
;
4536 extend_range (&unit
->issue_delay
, 1, issue_delay
);
4540 op
->conflict_exp
= true_rtx
;
4541 extend_range (&unit
->issue_delay
, issue_delay
, issue_delay
);
4544 /* Merge our conditional into that of the function unit so we can determine
4545 which insns are used by the function unit. */
4546 unit
->condexp
= insert_right_side (IOR
, unit
->condexp
, op
->condexp
, -2, -2);
4549 /* Given a piece of RTX, print a C expression to test its truth value.
4550 We use AND and IOR both for logical and bit-wise operations, so
4551 interpret them as logical unless they are inside a comparison expression.
4552 The first bit of FLAGS will be non-zero in that case.
4554 Set the second bit of FLAGS to make references to attribute values use
4555 a cached local variable instead of calling a function. */
4558 write_test_expr (exp
, flags
)
4562 int comparison_operator
= 0;
4564 struct attr_desc
*attr
;
4566 /* In order not to worry about operator precedence, surround our part of
4567 the expression with parentheses. */
4570 code
= GET_CODE (exp
);
4573 /* Binary operators. */
4575 case GE
: case GT
: case GEU
: case GTU
:
4576 case LE
: case LT
: case LEU
: case LTU
:
4577 comparison_operator
= 1;
4579 case PLUS
: case MINUS
: case MULT
: case DIV
: case MOD
:
4580 case AND
: case IOR
: case XOR
:
4581 case ASHIFT
: case LSHIFTRT
: case ASHIFTRT
:
4582 write_test_expr (XEXP (exp
, 0), flags
| comparison_operator
);
4598 printf (" >= (unsigned) ");
4601 printf (" > (unsigned) ");
4610 printf (" <= (unsigned) ");
4613 printf (" < (unsigned) ");
4656 write_test_expr (XEXP (exp
, 1), flags
| comparison_operator
);
4660 /* Special-case (not (eq_attrq "alternative" "x")) */
4661 if (! (flags
& 1) && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
4662 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
4664 printf ("which_alternative != %s", XSTR (XEXP (exp
, 0), 1));
4668 /* Otherwise, fall through to normal unary operator. */
4670 /* Unary operators. */
4690 write_test_expr (XEXP (exp
, 0), flags
);
4693 /* Comparison test of an attribute with a value. Most of these will
4694 have been removed by optimization. Handle "alternative"
4695 specially and give error if EQ_ATTR present inside a comparison. */
4698 fatal ("EQ_ATTR not valid inside comparison");
4700 if (XSTR (exp
, 0) == alternative_name
)
4702 printf ("which_alternative == %s", XSTR (exp
, 1));
4706 attr
= find_attr (XSTR (exp
, 0), 0);
4710 /* Now is the time to expand the value of a constant attribute. */
4713 write_test_expr (evaluate_eq_attr (exp
, attr
->default_val
->value
,
4720 printf ("attr_%s", attr
->name
);
4722 printf ("get_attr_%s (insn)", attr
->name
);
4724 write_attr_valueq (attr
, XSTR (exp
, 1));
4728 /* Comparison test of flags for define_delays. */
4731 fatal ("ATTR_FLAG not valid inside comparison");
4732 printf ("(flags & ATTR_FLAG_%s) != 0", XSTR (exp
, 0));
4735 /* See if an operand matches a predicate. */
4737 /* If only a mode is given, just ensure the mode matches the operand.
4738 If neither a mode nor predicate is given, error. */
4739 if (XSTR (exp
, 1) == NULL
|| *XSTR (exp
, 1) == '\0')
4741 if (GET_MODE (exp
) == VOIDmode
)
4742 fatal ("Null MATCH_OPERAND specified as test");
4744 printf ("GET_MODE (operands[%d]) == %smode",
4745 XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4748 printf ("%s (operands[%d], %smode)",
4749 XSTR (exp
, 1), XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4753 printf ("%s (insn)", XSTR (exp
, 0));
4756 /* Constant integer. */
4758 printf (HOST_WIDE_INT_PRINT_DEC
, XWINT (exp
, 0));
4761 /* A random C expression. */
4763 printf ("%s", XSTR (exp
, 0));
4766 /* The address of the branch target. */
4768 printf ("INSN_ADDRESSES_SET_P () ? INSN_ADDRESSES (INSN_UID (GET_CODE (operands[%d]) == LABEL_REF ? XEXP (operands[%d], 0) : operands[%d])) : 0",
4769 XINT (exp
, 0), XINT (exp
, 0), XINT (exp
, 0));
4773 /* The address of the current insn. We implement this actually as the
4774 address of the current insn for backward branches, but the last
4775 address of the next insn for forward branches, and both with
4776 adjustments that account for the worst-case possible stretching of
4777 intervening alignments between this insn and its destination. */
4778 printf ("insn_current_reference_address (insn)");
4782 printf ("%s", XSTR (exp
, 0));
4786 write_test_expr (XEXP (exp
, 0), flags
& 2);
4788 write_test_expr (XEXP (exp
, 1), flags
| 1);
4790 write_test_expr (XEXP (exp
, 2), flags
| 1);
4794 fatal ("bad RTX code `%s' in attribute calculation\n",
4795 GET_RTX_NAME (code
));
4801 /* Given an attribute value, return the maximum CONST_STRING argument
4802 encountered. Set *UNKNOWNP and return INT_MAX if the value is unknown. */
4805 max_attr_value (exp
, unknownp
)
4812 switch (GET_CODE (exp
))
4815 current_max
= atoi (XSTR (exp
, 0));
4819 current_max
= max_attr_value (XEXP (exp
, 1), unknownp
);
4820 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
4822 n
= max_attr_value (XVECEXP (exp
, 0, i
+ 1), unknownp
);
4823 if (n
> current_max
)
4829 current_max
= max_attr_value (XEXP (exp
, 1), unknownp
);
4830 n
= max_attr_value (XEXP (exp
, 2), unknownp
);
4831 if (n
> current_max
)
4837 current_max
= INT_MAX
;
4844 /* Given an attribute value, return the result of ORing together all
4845 CONST_STRING arguments encountered. Set *UNKNOWNP and return -1
4846 if the numeric value is not known. */
4849 or_attr_value (exp
, unknownp
)
4856 switch (GET_CODE (exp
))
4859 current_or
= atoi (XSTR (exp
, 0));
4863 current_or
= or_attr_value (XEXP (exp
, 1), unknownp
);
4864 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
4865 current_or
|= or_attr_value (XVECEXP (exp
, 0, i
+ 1), unknownp
);
4869 current_or
= or_attr_value (XEXP (exp
, 1), unknownp
);
4870 current_or
|= or_attr_value (XEXP (exp
, 2), unknownp
);
4882 /* Scan an attribute value, possibly a conditional, and record what actions
4883 will be required to do any conditional tests in it.
4886 `must_extract' if we need to extract the insn operands
4887 `must_constrain' if we must compute `which_alternative'
4888 `address_used' if an address expression was used
4889 `length_used' if an (eq_attr "length" ...) was used
4893 walk_attr_value (exp
)
4897 register const char *fmt
;
4903 code
= GET_CODE (exp
);
4907 if (! RTX_UNCHANGING_P (exp
))
4908 /* Since this is an arbitrary expression, it can look at anything.
4909 However, constant expressions do not depend on any particular
4911 must_extract
= must_constrain
= 1;
4919 if (XSTR (exp
, 0) == alternative_name
)
4920 must_extract
= must_constrain
= 1;
4921 else if (strcmp (XSTR (exp
, 0), "length") == 0)
4941 for (i
= 0, fmt
= GET_RTX_FORMAT (code
); i
< GET_RTX_LENGTH (code
); i
++)
4946 walk_attr_value (XEXP (exp
, i
));
4950 if (XVEC (exp
, i
) != NULL
)
4951 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4952 walk_attr_value (XVECEXP (exp
, i
, j
));
4957 /* Write out a function to obtain the attribute for a given INSN. */
4960 write_attr_get (attr
)
4961 struct attr_desc
*attr
;
4963 struct attr_value
*av
, *common_av
;
4965 /* Find the most used attribute value. Handle that as the `default' of the
4966 switch we will generate. */
4967 common_av
= find_most_used (attr
);
4969 /* Write out prototype of function. */
4970 if (!attr
->is_numeric
)
4971 printf ("extern enum attr_%s ", attr
->name
);
4972 else if (attr
->unsigned_p
)
4973 printf ("extern unsigned int ");
4975 printf ("extern int ");
4976 /* If the attribute name starts with a star, the remainder is the name of
4977 the subroutine to use, instead of `get_attr_...'. */
4978 if (attr
->name
[0] == '*')
4979 printf ("%s PARAMS ((rtx));\n", &attr
->name
[1]);
4981 printf ("get_attr_%s PARAMS ((%s));\n", attr
->name
,
4982 (attr
->is_const
? "void" : "rtx"));
4984 /* Write out start of function, then all values with explicit `case' lines,
4985 then a `default', then the value with the most uses. */
4986 if (!attr
->is_numeric
)
4987 printf ("enum attr_%s\n", attr
->name
);
4988 else if (attr
->unsigned_p
)
4989 printf ("unsigned int\n");
4993 /* If the attribute name starts with a star, the remainder is the name of
4994 the subroutine to use, instead of `get_attr_...'. */
4995 if (attr
->name
[0] == '*')
4996 printf ("%s (insn)\n", &attr
->name
[1]);
4997 else if (attr
->is_const
== 0)
4998 printf ("get_attr_%s (insn)\n", attr
->name
);
5001 printf ("get_attr_%s ()\n", attr
->name
);
5004 for (av
= attr
->first_value
; av
; av
= av
->next
)
5005 if (av
->num_insns
!= 0)
5006 write_attr_set (attr
, 2, av
->value
, "return", ";",
5007 true_rtx
, av
->first_insn
->insn_code
,
5008 av
->first_insn
->insn_index
);
5014 printf (" rtx insn;\n");
5017 if (GET_CODE (common_av
->value
) == FFS
)
5019 rtx p
= XEXP (common_av
->value
, 0);
5021 /* No need to emit code to abort if the insn is unrecognized; the
5022 other get_attr_foo functions will do that when we call them. */
5024 write_toplevel_expr (p
);
5026 printf ("\n if (accum && accum == (accum & -accum))\n");
5028 printf (" int i;\n");
5029 printf (" for (i = 0; accum >>= 1; ++i) continue;\n");
5030 printf (" accum = i;\n");
5031 printf (" }\n else\n");
5032 printf (" accum = ~accum;\n");
5033 printf (" return accum;\n}\n\n");
5037 printf (" switch (recog_memoized (insn))\n");
5040 for (av
= attr
->first_value
; av
; av
= av
->next
)
5041 if (av
!= common_av
)
5042 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
5044 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
5045 printf (" }\n}\n\n");
5049 /* Given an AND tree of known true terms (because we are inside an `if' with
5050 that as the condition or are in an `else' clause) and an expression,
5051 replace any known true terms with TRUE. Use `simplify_and_tree' to do
5052 the bulk of the work. */
5055 eliminate_known_true (known_true
, exp
, insn_code
, insn_index
)
5058 int insn_code
, insn_index
;
5062 known_true
= SIMPLIFY_TEST_EXP (known_true
, insn_code
, insn_index
);
5064 if (GET_CODE (known_true
) == AND
)
5066 exp
= eliminate_known_true (XEXP (known_true
, 0), exp
,
5067 insn_code
, insn_index
);
5068 exp
= eliminate_known_true (XEXP (known_true
, 1), exp
,
5069 insn_code
, insn_index
);
5074 exp
= simplify_and_tree (exp
, &term
, insn_code
, insn_index
);
5080 /* Write out a series of tests and assignment statements to perform tests and
5081 sets of an attribute value. We are passed an indentation amount and prefix
5082 and suffix strings to write around each attribute value (e.g., "return"
5086 write_attr_set (attr
, indent
, value
, prefix
, suffix
, known_true
,
5087 insn_code
, insn_index
)
5088 struct attr_desc
*attr
;
5094 int insn_code
, insn_index
;
5096 if (GET_CODE (value
) == COND
)
5098 /* Assume the default value will be the default of the COND unless we
5099 find an always true expression. */
5100 rtx default_val
= XEXP (value
, 1);
5101 rtx our_known_true
= known_true
;
5106 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
5111 testexp
= eliminate_known_true (our_known_true
,
5112 XVECEXP (value
, 0, i
),
5113 insn_code
, insn_index
);
5114 newexp
= attr_rtx (NOT
, testexp
);
5115 newexp
= insert_right_side (AND
, our_known_true
, newexp
,
5116 insn_code
, insn_index
);
5118 /* If the test expression is always true or if the next `known_true'
5119 expression is always false, this is the last case, so break
5120 out and let this value be the `else' case. */
5121 if (testexp
== true_rtx
|| newexp
== false_rtx
)
5123 default_val
= XVECEXP (value
, 0, i
+ 1);
5127 /* Compute the expression to pass to our recursive call as being
5129 inner_true
= insert_right_side (AND
, our_known_true
,
5130 testexp
, insn_code
, insn_index
);
5132 /* If this is always false, skip it. */
5133 if (inner_true
== false_rtx
)
5136 write_indent (indent
);
5137 printf ("%sif ", first_if
? "" : "else ");
5139 write_test_expr (testexp
, 0);
5141 write_indent (indent
+ 2);
5144 write_attr_set (attr
, indent
+ 4,
5145 XVECEXP (value
, 0, i
+ 1), prefix
, suffix
,
5146 inner_true
, insn_code
, insn_index
);
5147 write_indent (indent
+ 2);
5149 our_known_true
= newexp
;
5154 write_indent (indent
);
5156 write_indent (indent
+ 2);
5160 write_attr_set (attr
, first_if
? indent
: indent
+ 4, default_val
,
5161 prefix
, suffix
, our_known_true
, insn_code
, insn_index
);
5165 write_indent (indent
+ 2);
5171 write_indent (indent
);
5172 printf ("%s ", prefix
);
5173 write_attr_value (attr
, value
);
5174 printf ("%s\n", suffix
);
5178 /* Write out the computation for one attribute value. */
5181 write_attr_case (attr
, av
, write_case_lines
, prefix
, suffix
, indent
,
5183 struct attr_desc
*attr
;
5184 struct attr_value
*av
;
5185 int write_case_lines
;
5186 const char *prefix
, *suffix
;
5190 struct insn_ent
*ie
;
5192 if (av
->num_insns
== 0)
5195 if (av
->has_asm_insn
)
5197 write_indent (indent
);
5198 printf ("case -1:\n");
5199 write_indent (indent
+ 2);
5200 printf ("if (GET_CODE (PATTERN (insn)) != ASM_INPUT\n");
5201 write_indent (indent
+ 2);
5202 printf (" && asm_noperands (PATTERN (insn)) < 0)\n");
5203 write_indent (indent
+ 2);
5204 printf (" fatal_insn_not_found (insn);\n");
5207 if (write_case_lines
)
5209 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
5210 if (ie
->insn_code
!= -1)
5212 write_indent (indent
);
5213 printf ("case %d:\n", ie
->insn_code
);
5218 write_indent (indent
);
5219 printf ("default:\n");
5222 /* See what we have to do to output this value. */
5223 must_extract
= must_constrain
= address_used
= 0;
5224 walk_attr_value (av
->value
);
5228 write_indent (indent
+ 2);
5229 printf ("extract_constrain_insn_cached (insn);\n");
5231 else if (must_extract
)
5233 write_indent (indent
+ 2);
5234 printf ("extract_insn_cached (insn);\n");
5237 write_attr_set (attr
, indent
+ 2, av
->value
, prefix
, suffix
,
5238 known_true
, av
->first_insn
->insn_code
,
5239 av
->first_insn
->insn_index
);
5241 if (strncmp (prefix
, "return", 6))
5243 write_indent (indent
+ 2);
5244 printf ("break;\n");
5249 /* Search for uses of non-const attributes and write code to cache them. */
5252 write_expr_attr_cache (p
, attr
)
5254 struct attr_desc
*attr
;
5259 if (GET_CODE (p
) == EQ_ATTR
)
5261 if (XSTR (p
, 0) != attr
->name
)
5264 if (!attr
->is_numeric
)
5265 printf (" register enum attr_%s ", attr
->name
);
5266 else if (attr
->unsigned_p
)
5267 printf (" register unsigned int ");
5269 printf (" register int ");
5271 printf ("attr_%s = get_attr_%s (insn);\n", attr
->name
, attr
->name
);
5275 fmt
= GET_RTX_FORMAT (GET_CODE (p
));
5276 ie
= GET_RTX_LENGTH (GET_CODE (p
));
5277 for (i
= 0; i
< ie
; i
++)
5282 if (write_expr_attr_cache (XEXP (p
, i
), attr
))
5287 je
= XVECLEN (p
, i
);
5288 for (j
= 0; j
< je
; ++j
)
5289 if (write_expr_attr_cache (XVECEXP (p
, i
, j
), attr
))
5298 /* Evaluate an expression at top level. A front end to write_test_expr,
5299 in which we cache attribute values and break up excessively large
5300 expressions to cater to older compilers. */
5303 write_toplevel_expr (p
)
5306 struct attr_desc
*attr
;
5309 for (i
= 0; i
< MAX_ATTRS_INDEX
; ++i
)
5310 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5311 if (!attr
->is_const
)
5312 write_expr_attr_cache (p
, attr
);
5314 printf (" register unsigned long accum = 0;\n\n");
5316 while (GET_CODE (p
) == IOR
)
5319 if (GET_CODE (XEXP (p
, 0)) == IOR
)
5320 e
= XEXP (p
, 1), p
= XEXP (p
, 0);
5322 e
= XEXP (p
, 0), p
= XEXP (p
, 1);
5324 printf (" accum |= ");
5325 write_test_expr (e
, 3);
5328 printf (" accum |= ");
5329 write_test_expr (p
, 3);
5333 /* Utilities to write names in various forms. */
5336 write_unit_name (prefix
, num
, suffix
)
5341 struct function_unit
*unit
;
5343 for (unit
= units
; unit
; unit
= unit
->next
)
5344 if (unit
->num
== num
)
5346 printf ("%s%s%s", prefix
, unit
->name
, suffix
);
5350 printf ("%s<unknown>%s", prefix
, suffix
);
5354 write_attr_valueq (attr
, s
)
5355 struct attr_desc
*attr
;
5358 if (attr
->is_numeric
)
5364 /* Make the blockage range values and function units used values easier
5366 if (attr
->func_units_p
)
5369 printf (" /* units: none */");
5371 write_unit_name (" /* units: ", num
, " */");
5375 const char *sep
= " /* units: ";
5376 for (i
= 0, num
= ~num
; num
; i
++, num
>>= 1)
5379 write_unit_name (sep
, i
, (num
== 1) ? " */" : "");
5385 else if (attr
->blockage_p
)
5386 printf (" /* min %d, max %d */", num
>> (HOST_BITS_PER_INT
/ 2),
5387 num
& ((1 << (HOST_BITS_PER_INT
/ 2)) - 1));
5389 else if (num
> 9 || num
< 0)
5390 printf (" /* 0x%x */", num
);
5394 write_upcase (attr
->name
);
5401 write_attr_value (attr
, value
)
5402 struct attr_desc
*attr
;
5407 switch (GET_CODE (value
))
5410 write_attr_valueq (attr
, XSTR (value
, 0));
5414 printf (HOST_WIDE_INT_PRINT_DEC
, INTVAL (value
));
5418 fputs (XSTR (value
, 0), stdout
);
5423 struct attr_desc
*attr2
= find_attr (XSTR (value
, 0), 0);
5424 printf ("get_attr_%s (%s)", attr2
->name
,
5425 (attr2
->is_const
? "" : "insn"));
5446 write_attr_value (attr
, XEXP (value
, 0));
5450 write_attr_value (attr
, XEXP (value
, 1));
5464 /* The argument of TOUPPER should not have side effects. */
5465 putchar (TOUPPER(*str
));
5471 write_indent (indent
)
5474 for (; indent
> 8; indent
-= 8)
5477 for (; indent
; indent
--)
5481 /* Write a subroutine that is given an insn that requires a delay slot, a
5482 delay slot ordinal, and a candidate insn. It returns non-zero if the
5483 candidate can be placed in the specified delay slot of the insn.
5485 We can write as many as three subroutines. `eligible_for_delay'
5486 handles normal delay slots, `eligible_for_annul_true' indicates that
5487 the specified insn can be annulled if the branch is true, and likewise
5488 for `eligible_for_annul_false'.
5490 KIND is a string distinguishing these three cases ("delay", "annul_true",
5491 or "annul_false"). */
5494 write_eligible_delay (kind
)
5497 struct delay_desc
*delay
;
5500 struct attr_desc
*attr
;
5501 struct attr_value
*av
, *common_av
;
5504 /* Compute the maximum number of delay slots required. We use the delay
5505 ordinal times this number plus one, plus the slot number as an index into
5506 the appropriate predicate to test. */
5508 for (delay
= delays
, max_slots
= 0; delay
; delay
= delay
->next
)
5509 if (XVECLEN (delay
->def
, 1) / 3 > max_slots
)
5510 max_slots
= XVECLEN (delay
->def
, 1) / 3;
5512 /* Write function prelude. */
5515 printf ("eligible_for_%s (delay_insn, slot, candidate_insn, flags)\n",
5517 printf (" rtx delay_insn;\n");
5518 printf (" int slot;\n");
5519 printf (" rtx candidate_insn;\n");
5520 printf (" int flags ATTRIBUTE_UNUSED;\n");
5522 printf (" rtx insn;\n");
5524 printf (" if (slot >= %d)\n", max_slots
);
5525 printf (" abort ();\n");
5528 /* If more than one delay type, find out which type the delay insn is. */
5532 attr
= find_attr ("*delay_type", 0);
5535 common_av
= find_most_used (attr
);
5537 printf (" insn = delay_insn;\n");
5538 printf (" switch (recog_memoized (insn))\n");
5541 sprintf (str
, " * %d;\n break;", max_slots
);
5542 for (av
= attr
->first_value
; av
; av
= av
->next
)
5543 if (av
!= common_av
)
5544 write_attr_case (attr
, av
, 1, "slot +=", str
, 4, true_rtx
);
5546 write_attr_case (attr
, common_av
, 0, "slot +=", str
, 4, true_rtx
);
5549 /* Ensure matched. Otherwise, shouldn't have been called. */
5550 printf (" if (slot < %d)\n", max_slots
);
5551 printf (" abort ();\n\n");
5554 /* If just one type of delay slot, write simple switch. */
5555 if (num_delays
== 1 && max_slots
== 1)
5557 printf (" insn = candidate_insn;\n");
5558 printf (" switch (recog_memoized (insn))\n");
5561 attr
= find_attr ("*delay_1_0", 0);
5564 common_av
= find_most_used (attr
);
5566 for (av
= attr
->first_value
; av
; av
= av
->next
)
5567 if (av
!= common_av
)
5568 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
5570 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
5576 /* Write a nested CASE. The first indicates which condition we need to
5577 test, and the inner CASE tests the condition. */
5578 printf (" insn = candidate_insn;\n");
5579 printf (" switch (slot)\n");
5582 for (delay
= delays
; delay
; delay
= delay
->next
)
5583 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
5585 printf (" case %d:\n",
5586 (i
/ 3) + (num_delays
== 1 ? 0 : delay
->num
* max_slots
));
5587 printf (" switch (recog_memoized (insn))\n");
5590 sprintf (str
, "*%s_%d_%d", kind
, delay
->num
, i
/ 3);
5591 attr
= find_attr (str
, 0);
5594 common_av
= find_most_used (attr
);
5596 for (av
= attr
->first_value
; av
; av
= av
->next
)
5597 if (av
!= common_av
)
5598 write_attr_case (attr
, av
, 1, "return", ";", 8, true_rtx
);
5600 write_attr_case (attr
, common_av
, 0, "return", ";", 8, true_rtx
);
5604 printf (" default:\n");
5605 printf (" abort ();\n");
5612 /* Write routines to compute conflict cost for function units. Then write a
5613 table describing the available function units. */
5616 write_function_unit_info ()
5618 struct function_unit
*unit
;
5621 /* Write out conflict routines for function units. Don't bother writing
5622 one if there is only one issue delay value. */
5624 for (unit
= units
; unit
; unit
= unit
->next
)
5626 if (unit
->needs_blockage_function
)
5627 write_complex_function (unit
, "blockage", "block");
5629 /* If the minimum and maximum conflict costs are the same, there
5630 is only one value, so we don't need a function. */
5631 if (! unit
->needs_conflict_function
)
5633 unit
->default_cost
= make_numeric_value (unit
->issue_delay
.max
);
5637 /* The function first computes the case from the candidate insn. */
5638 unit
->default_cost
= make_numeric_value (0);
5639 write_complex_function (unit
, "conflict_cost", "cost");
5642 /* Now that all functions have been written, write the table describing
5643 the function units. The name is included for documentation purposes
5646 printf ("struct function_unit_desc function_units[] = {\n");
5648 /* Write out the descriptions in numeric order, but don't force that order
5649 on the list. Doing so increases the runtime of genattrtab.c. */
5650 for (i
= 0; i
< num_units
; i
++)
5652 for (unit
= units
; unit
; unit
= unit
->next
)
5656 printf (" {\"%s\", %d, %d, %d, %s, %d, %s_unit_ready_cost, ",
5657 unit
->name
, 1 << unit
->num
, unit
->multiplicity
,
5658 unit
->simultaneity
, XSTR (unit
->default_cost
, 0),
5659 unit
->issue_delay
.max
, unit
->name
);
5661 if (unit
->needs_conflict_function
)
5662 printf ("%s_unit_conflict_cost, ", unit
->name
);
5666 printf ("%d, ", unit
->max_blockage
);
5668 if (unit
->needs_range_function
)
5669 printf ("%s_unit_blockage_range, ", unit
->name
);
5673 if (unit
->needs_blockage_function
)
5674 printf ("%s_unit_blockage", unit
->name
);
5685 write_complex_function (unit
, name
, connection
)
5686 struct function_unit
*unit
;
5687 const char *name
, *connection
;
5689 struct attr_desc
*case_attr
, *attr
;
5690 struct attr_value
*av
, *common_av
;
5696 printf ("static int %s_unit_%s PARAMS ((rtx, rtx));\n", unit
->name
, name
);
5697 printf ("static int\n");
5698 printf ("%s_unit_%s (executing_insn, candidate_insn)\n", unit
->name
, name
);
5699 printf (" rtx executing_insn;\n");
5700 printf (" rtx candidate_insn;\n");
5702 printf (" rtx insn;\n");
5703 printf (" int casenum;\n\n");
5704 printf (" insn = executing_insn;\n");
5705 printf (" switch (recog_memoized (insn))\n");
5708 /* Write the `switch' statement to get the case value. */
5709 if (strlen (unit
->name
) + sizeof "*_cases" > 256)
5711 sprintf (str
, "*%s_cases", unit
->name
);
5712 case_attr
= find_attr (str
, 0);
5715 common_av
= find_most_used (case_attr
);
5717 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5718 if (av
!= common_av
)
5719 write_attr_case (case_attr
, av
, 1,
5720 "casenum =", ";", 4, unit
->condexp
);
5722 write_attr_case (case_attr
, common_av
, 0,
5723 "casenum =", ";", 4, unit
->condexp
);
5726 /* Now write an outer switch statement on each case. Then write
5727 the tests on the executing function within each. */
5728 printf (" insn = candidate_insn;\n");
5729 printf (" switch (casenum)\n");
5732 for (i
= 0; i
< unit
->num_opclasses
; i
++)
5734 /* Ensure using this case. */
5736 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5738 && contained_in_p (make_numeric_value (i
), av
->value
))
5744 printf (" case %d:\n", i
);
5745 sprintf (str
, "*%s_%s_%d", unit
->name
, connection
, i
);
5746 attr
= find_attr (str
, 0);
5750 /* If single value, just write it. */
5751 value
= find_single_value (attr
);
5753 write_attr_set (attr
, 6, value
, "return", ";\n", true_rtx
, -2, -2);
5756 common_av
= find_most_used (attr
);
5757 printf (" switch (recog_memoized (insn))\n");
5760 for (av
= attr
->first_value
; av
; av
= av
->next
)
5761 if (av
!= common_av
)
5762 write_attr_case (attr
, av
, 1,
5763 "return", ";", 8, unit
->condexp
);
5765 write_attr_case (attr
, common_av
, 0,
5766 "return", ";", 8, unit
->condexp
);
5771 /* This default case should not be needed, but gcc's analysis is not
5772 good enough to realize that the default case is not needed for the
5773 second switch statement. */
5774 printf (" default:\n abort ();\n");
5775 printf (" }\n}\n\n");
5778 /* This page contains miscellaneous utility routines. */
5780 /* Given a string, return the number of comma-separated elements in it.
5781 Return 0 for the null string. */
5792 for (n
= 1; *s
; s
++)
5799 /* Given a pointer to a (char *), return a malloc'ed string containing the
5800 next comma-separated element. Advance the pointer to after the string
5801 scanned, or the end-of-string. Return NULL if at end of string. */
5804 next_comma_elt (pstr
)
5813 /* Find end of string to compute length. */
5814 for (p
= *pstr
; *p
!= ',' && *p
!= '\0'; p
++)
5817 out_str
= attr_string (*pstr
, p
- *pstr
);
5826 /* Return a `struct attr_desc' pointer for a given named attribute. If CREATE
5827 is non-zero, build a new attribute, if one does not exist. */
5829 static struct attr_desc
*
5830 find_attr (name
, create
)
5834 struct attr_desc
*attr
;
5837 /* Before we resort to using `strcmp', see if the string address matches
5838 anywhere. In most cases, it should have been canonicalized to do so. */
5839 if (name
== alternative_name
)
5842 index
= name
[0] & (MAX_ATTRS_INDEX
- 1);
5843 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5844 if (name
== attr
->name
)
5847 /* Otherwise, do it the slow way. */
5848 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5849 if (name
[0] == attr
->name
[0] && ! strcmp (name
, attr
->name
))
5855 attr
= (struct attr_desc
*) oballoc (sizeof (struct attr_desc
));
5856 attr
->name
= attr_string (name
, strlen (name
));
5857 attr
->first_value
= attr
->default_val
= NULL
;
5858 attr
->is_numeric
= attr
->negative_ok
= attr
->is_const
= attr
->is_special
= 0;
5859 attr
->unsigned_p
= attr
->func_units_p
= attr
->blockage_p
= 0;
5860 attr
->next
= attrs
[index
];
5861 attrs
[index
] = attr
;
5866 /* Create internal attribute with the given default value. */
5869 make_internal_attr (name
, value
, special
)
5874 struct attr_desc
*attr
;
5876 attr
= find_attr (name
, 1);
5877 if (attr
->default_val
)
5880 attr
->is_numeric
= 1;
5882 attr
->is_special
= (special
& 1) != 0;
5883 attr
->negative_ok
= (special
& 2) != 0;
5884 attr
->unsigned_p
= (special
& 4) != 0;
5885 attr
->func_units_p
= (special
& 8) != 0;
5886 attr
->blockage_p
= (special
& 16) != 0;
5887 attr
->default_val
= get_attr_value (value
, attr
, -2);
5890 /* Find the most used value of an attribute. */
5892 static struct attr_value
*
5893 find_most_used (attr
)
5894 struct attr_desc
*attr
;
5896 struct attr_value
*av
;
5897 struct attr_value
*most_used
;
5903 for (av
= attr
->first_value
; av
; av
= av
->next
)
5904 if (av
->num_insns
> nuses
)
5905 nuses
= av
->num_insns
, most_used
= av
;
5910 /* If an attribute only has a single value used, return it. Otherwise
5914 find_single_value (attr
)
5915 struct attr_desc
*attr
;
5917 struct attr_value
*av
;
5920 unique_value
= NULL
;
5921 for (av
= attr
->first_value
; av
; av
= av
->next
)
5927 unique_value
= av
->value
;
5930 return unique_value
;
5933 /* Return (attr_value "n") */
5936 make_numeric_value (n
)
5939 static rtx int_values
[20];
5946 if (n
< 20 && int_values
[n
])
5947 return int_values
[n
];
5949 p
= attr_printf (MAX_DIGITS
, "%d", n
);
5950 exp
= attr_rtx (CONST_STRING
, p
);
5953 int_values
[n
] = exp
;
5959 extend_range (range
, min
, max
)
5960 struct range
*range
;
5964 if (range
->min
> min
)
5966 if (range
->max
< max
)
5971 copy_rtx_unchanging (orig
)
5976 register RTX_CODE code
;
5979 if (RTX_UNCHANGING_P (orig
) || MEM_IN_STRUCT_P (orig
))
5982 MEM_IN_STRUCT_P (orig
) = 1;
5986 code
= GET_CODE (orig
);
5999 copy
= rtx_alloc (code
);
6000 PUT_MODE (copy
, GET_MODE (orig
));
6001 RTX_UNCHANGING_P (copy
) = 1;
6003 memcpy (&XEXP (copy
, 0), &XEXP (orig
, 0),
6004 GET_RTX_LENGTH (GET_CODE (copy
)) * sizeof (rtx
));
6009 /* Determine if an insn has a constant number of delay slots, i.e., the
6010 number of delay slots is not a function of the length of the insn. */
6013 write_const_num_delay_slots ()
6015 struct attr_desc
*attr
= find_attr ("*num_delay_slots", 0);
6016 struct attr_value
*av
;
6017 struct insn_ent
*ie
;
6021 printf ("int\nconst_num_delay_slots (insn)\n");
6022 printf (" rtx insn;\n");
6024 printf (" switch (recog_memoized (insn))\n");
6027 for (av
= attr
->first_value
; av
; av
= av
->next
)
6030 walk_attr_value (av
->value
);
6033 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
6034 if (ie
->insn_code
!= -1)
6035 printf (" case %d:\n", ie
->insn_code
);
6036 printf (" return 0;\n");
6040 printf (" default:\n");
6041 printf (" return 1;\n");
6042 printf (" }\n}\n\n");
6046 extern int main
PARAMS ((int, char **));
6054 struct attr_desc
*attr
;
6055 struct insn_def
*id
;
6059 progname
= "genattrtab";
6062 fatal ("No input file name.");
6064 if (init_md_reader (argv
[1]) != SUCCESS_EXIT_CODE
)
6065 return (FATAL_EXIT_CODE
);
6067 obstack_init (hash_obstack
);
6068 obstack_init (temp_obstack
);
6070 /* Set up true and false rtx's */
6071 true_rtx
= rtx_alloc (CONST_INT
);
6072 XWINT (true_rtx
, 0) = 1;
6073 false_rtx
= rtx_alloc (CONST_INT
);
6074 XWINT (false_rtx
, 0) = 0;
6075 RTX_UNCHANGING_P (true_rtx
) = RTX_UNCHANGING_P (false_rtx
) = 1;
6076 RTX_INTEGRATED_P (true_rtx
) = RTX_INTEGRATED_P (false_rtx
) = 1;
6078 alternative_name
= attr_string ("alternative", strlen ("alternative"));
6080 printf ("/* Generated automatically by the program `genattrtab'\n\
6081 from the machine description file `md'. */\n\n");
6083 /* Read the machine description. */
6089 desc
= read_md_rtx (&lineno
, &insn_code_number
);
6093 switch (GET_CODE (desc
))
6096 case DEFINE_PEEPHOLE
:
6097 case DEFINE_ASM_ATTRIBUTES
:
6098 gen_insn (desc
, lineno
);
6102 gen_attr (desc
, lineno
);
6106 gen_delay (desc
, lineno
);
6109 case DEFINE_FUNCTION_UNIT
:
6110 gen_unit (desc
, lineno
);
6116 if (GET_CODE (desc
) != DEFINE_ASM_ATTRIBUTES
)
6117 insn_index_number
++;
6121 return FATAL_EXIT_CODE
;
6125 /* If we didn't have a DEFINE_ASM_ATTRIBUTES, make a null one. */
6126 if (! got_define_asm_attributes
)
6128 tem
= rtx_alloc (DEFINE_ASM_ATTRIBUTES
);
6129 XVEC (tem
, 0) = rtvec_alloc (0);
6133 /* Expand DEFINE_DELAY information into new attribute. */
6137 /* Expand DEFINE_FUNCTION_UNIT information into new attributes. */
6141 printf ("#include \"config.h\"\n");
6142 printf ("#include \"system.h\"\n");
6143 printf ("#include \"rtl.h\"\n");
6144 printf ("#include \"tm_p.h\"\n");
6145 printf ("#include \"insn-config.h\"\n");
6146 printf ("#include \"recog.h\"\n");
6147 printf ("#include \"regs.h\"\n");
6148 printf ("#include \"real.h\"\n");
6149 printf ("#include \"output.h\"\n");
6150 printf ("#include \"insn-attr.h\"\n");
6151 printf ("#include \"toplev.h\"\n");
6152 printf ("#include \"flags.h\"\n");
6154 printf ("#define operands recog_data.operand\n\n");
6156 /* Make `insn_alternatives'. */
6157 insn_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
6158 for (id
= defs
; id
; id
= id
->next
)
6159 if (id
->insn_code
>= 0)
6160 insn_alternatives
[id
->insn_code
] = (1 << id
->num_alternatives
) - 1;
6162 /* Make `insn_n_alternatives'. */
6163 insn_n_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
6164 for (id
= defs
; id
; id
= id
->next
)
6165 if (id
->insn_code
>= 0)
6166 insn_n_alternatives
[id
->insn_code
] = id
->num_alternatives
;
6168 /* Prepare to write out attribute subroutines by checking everything stored
6169 away and building the attribute cases. */
6173 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
6174 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
6175 attr
->default_val
->value
6176 = check_attr_value (attr
->default_val
->value
, attr
);
6179 return FATAL_EXIT_CODE
;
6181 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
6182 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
6185 /* Construct extra attributes for `length'. */
6186 make_length_attrs ();
6188 /* Perform any possible optimizations to speed up compilation. */
6191 /* Now write out all the `gen_attr_...' routines. Do these before the
6192 special routines (specifically before write_function_unit_info), so
6193 that they get defined before they are used. */
6195 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
6196 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
6198 if (! attr
->is_special
&& ! attr
->is_const
)
6199 write_attr_get (attr
);
6202 /* Write out delay eligibility information, if DEFINE_DELAY present.
6203 (The function to compute the number of delay slots will be written
6207 write_eligible_delay ("delay");
6208 if (have_annul_true
)
6209 write_eligible_delay ("annul_true");
6210 if (have_annul_false
)
6211 write_eligible_delay ("annul_false");
6214 /* Write out information about function units. */
6216 write_function_unit_info ();
6218 /* Write out constant delay slot info */
6219 write_const_num_delay_slots ();
6221 write_length_unit_log ();
6224 return (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
6227 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
6229 get_insn_name (code
)
6230 int code ATTRIBUTE_UNUSED
;