1 /* Generate code from machine description to compute values of attributes.
2 Copyright (C) 1991, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
3 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* This program handles insn attributes and the DEFINE_DELAY and
23 DEFINE_FUNCTION_UNIT definitions.
25 It produces a series of functions named `get_attr_...', one for each insn
26 attribute. Each of these is given the rtx for an insn and returns a member
27 of the enum for the attribute.
29 These subroutines have the form of a `switch' on the INSN_CODE (via
30 `recog_memoized'). Each case either returns a constant attribute value
31 or a value that depends on tests on other attributes, the form of
32 operands, or some random C expression (encoded with a SYMBOL_REF
35 If the attribute `alternative', or a random C expression is present,
36 `constrain_operands' is called. If either of these cases of a reference to
37 an operand is found, `insn_extract' is called.
39 The special attribute `length' is also recognized. For this operand,
40 expressions involving the address of an operand or the current insn,
41 (address (pc)), are valid. In this case, an initial pass is made to
42 set all lengths that do not depend on address. Those that do are set to
43 the maximum length. Then each insn that depends on an address is checked
44 and possibly has its length changed. The process repeats until no further
45 changed are made. The resulting lengths are saved for use by
48 A special form of DEFINE_ATTR, where the expression for default value is a
49 CONST expression, indicates an attribute that is constant for a given run
50 of the compiler. The subroutine generated for these attributes has no
51 parameters as it does not depend on any particular insn. Constant
52 attributes are typically used to specify which variety of processor is
55 Internal attributes are defined to handle DEFINE_DELAY and
56 DEFINE_FUNCTION_UNIT. Special routines are output for these cases.
58 This program works by keeping a list of possible values for each attribute.
59 These include the basic attribute choices, default values for attribute, and
60 all derived quantities.
62 As the description file is read, the definition for each insn is saved in a
63 `struct insn_def'. When the file reading is complete, a `struct insn_ent'
64 is created for each insn and chained to the corresponding attribute value,
65 either that specified, or the default.
67 An optimization phase is then run. This simplifies expressions for each
68 insn. EQ_ATTR tests are resolved, whenever possible, to a test that
69 indicates when the attribute has the specified value for the insn. This
70 avoids recursive calls during compilation.
72 The strategy used when processing DEFINE_DELAY and DEFINE_FUNCTION_UNIT
73 definitions is to create arbitrarily complex expressions and have the
74 optimization simplify them.
76 Once optimization is complete, any required routines and definitions
79 An optimization that is not yet implemented is to hoist the constant
80 expressions entirely out of the routines and definitions that are written.
81 A way to do this is to iterate over all possible combinations of values
82 for constant attributes and generate a set of functions for that given
83 combination. An initialization function would be written that evaluates
84 the attributes and installs the corresponding set of routines and
85 definitions (each would be accessed through a pointer).
87 We use the flags in an RTX as follows:
88 `unchanging' (RTX_UNCHANGING_P): This rtx is fully simplified
89 independent of the insn code.
90 `in_struct' (MEM_IN_STRUCT_P): This rtx is fully simplified
91 for the insn code currently being processed (see optimize_attrs).
92 `integrated' (RTX_INTEGRATED_P): This rtx is permanent and unique
94 `volatil' (MEM_VOLATILE_P): During simplify_by_exploding the value of an
95 EQ_ATTR rtx is true if !volatil and false if volatil. */
99 /* varargs must always be included after *config.h. */
107 #include "insn-config.h" /* For REGISTER_CONSTRAINTS */
109 #ifdef TIME_WITH_SYS_TIME
110 # include <sys/time.h>
114 # include <sys/time.h>
120 #ifdef HAVE_SYS_RESOURCE_H
121 # include <sys/resource.h>
124 /* We must include obstack.h after <sys/time.h>, to avoid lossage with
125 /usr/include/sys/stdtypes.h on Sun OS 4.x. */
128 static struct obstack obstack
, obstack1
, obstack2
;
129 struct obstack
*rtl_obstack
= &obstack
;
130 struct obstack
*hash_obstack
= &obstack1
;
131 struct obstack
*temp_obstack
= &obstack2
;
133 #define obstack_chunk_alloc xmalloc
134 #define obstack_chunk_free free
136 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
137 char **insn_name_ptr
= 0;
140 extern rtx
read_rtx ();
142 static void fatal ();
145 /* enough space to reserve for printing out ints */
146 #define MAX_DIGITS (HOST_BITS_PER_INT * 3 / 10 + 3)
148 /* Define structures used to record attributes and values. */
150 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
151 encountered, we store all the relevant information into a
152 `struct insn_def'. This is done to allow attribute definitions to occur
153 anywhere in the file. */
157 int insn_code
; /* Instruction number. */
158 int insn_index
; /* Expression numer in file, for errors. */
159 struct insn_def
*next
; /* Next insn in chain. */
160 rtx def
; /* The DEFINE_... */
161 int num_alternatives
; /* Number of alternatives. */
162 int vec_idx
; /* Index of attribute vector in `def'. */
165 /* Once everything has been read in, we store in each attribute value a list
166 of insn codes that have that value. Here is the structure used for the
171 int insn_code
; /* Instruction number. */
172 int insn_index
; /* Index of definition in file */
173 struct insn_ent
*next
; /* Next in chain. */
176 /* Each value of an attribute (either constant or computed) is assigned a
177 structure which is used as the listhead of the insns that have that
182 rtx value
; /* Value of attribute. */
183 struct attr_value
*next
; /* Next attribute value in chain. */
184 struct insn_ent
*first_insn
; /* First insn with this value. */
185 int num_insns
; /* Number of insns with this value. */
186 int has_asm_insn
; /* True if this value used for `asm' insns */
189 /* Structure for each attribute. */
193 char *name
; /* Name of attribute. */
194 struct attr_desc
*next
; /* Next attribute. */
195 int is_numeric
; /* Values of this attribute are numeric. */
196 int negative_ok
; /* Allow negative numeric values. */
197 int unsigned_p
; /* Make the output function unsigned int. */
198 int is_const
; /* Attribute value constant for each run. */
199 int is_special
; /* Don't call `write_attr_set'. */
200 struct attr_value
*first_value
; /* First value of this attribute. */
201 struct attr_value
*default_val
; /* Default value for this attribute. */
204 #define NULL_ATTR (struct attr_desc *) NULL
206 /* A range of values. */
214 /* Structure for each DEFINE_DELAY. */
218 rtx def
; /* DEFINE_DELAY expression. */
219 struct delay_desc
*next
; /* Next DEFINE_DELAY. */
220 int num
; /* Number of DEFINE_DELAY, starting at 1. */
223 /* Record information about each DEFINE_FUNCTION_UNIT. */
225 struct function_unit_op
227 rtx condexp
; /* Expression TRUE for applicable insn. */
228 struct function_unit_op
*next
; /* Next operation for this function unit. */
229 int num
; /* Ordinal for this operation type in unit. */
230 int ready
; /* Cost until data is ready. */
231 int issue_delay
; /* Cost until unit can accept another insn. */
232 rtx conflict_exp
; /* Expression TRUE for insns incurring issue delay. */
233 rtx issue_exp
; /* Expression computing issue delay. */
236 /* Record information about each function unit mentioned in a
237 DEFINE_FUNCTION_UNIT. */
241 char *name
; /* Function unit name. */
242 struct function_unit
*next
; /* Next function unit. */
243 int num
; /* Ordinal of this unit type. */
244 int multiplicity
; /* Number of units of this type. */
245 int simultaneity
; /* Maximum number of simultaneous insns
246 on this function unit or 0 if unlimited. */
247 rtx condexp
; /* Expression TRUE for insn needing unit. */
248 int num_opclasses
; /* Number of different operation types. */
249 struct function_unit_op
*ops
; /* Pointer to first operation type. */
250 int needs_conflict_function
; /* Nonzero if a conflict function required. */
251 int needs_blockage_function
; /* Nonzero if a blockage function required. */
252 int needs_range_function
; /* Nonzero if blockage range function needed.*/
253 rtx default_cost
; /* Conflict cost, if constant. */
254 struct range issue_delay
; /* Range of issue delay values. */
255 int max_blockage
; /* Maximum time an insn blocks the unit. */
258 /* Listheads of above structures. */
260 /* This one is indexed by the first character of the attribute name. */
261 #define MAX_ATTRS_INDEX 256
262 static struct attr_desc
*attrs
[MAX_ATTRS_INDEX
];
263 static struct insn_def
*defs
;
264 static struct delay_desc
*delays
;
265 static struct function_unit
*units
;
267 /* An expression where all the unknown terms are EQ_ATTR tests can be
268 rearranged into a COND provided we can enumerate all possible
269 combinations of the unknown values. The set of combinations become the
270 tests of the COND; the value of the expression given that combination is
271 computed and becomes the corresponding value. To do this, we must be
272 able to enumerate all values for each attribute used in the expression
273 (currently, we give up if we find a numeric attribute).
275 If the set of EQ_ATTR tests used in an expression tests the value of N
276 different attributes, the list of all possible combinations can be made
277 by walking the N-dimensional attribute space defined by those
278 attributes. We record each of these as a struct dimension.
280 The algorithm relies on sharing EQ_ATTR nodes: if two nodes in an
281 expression are the same, the will also have the same address. We find
282 all the EQ_ATTR nodes by marking them MEM_VOLATILE_P. This bit later
283 represents the value of an EQ_ATTR node, so once all nodes are marked,
284 they are also given an initial value of FALSE.
286 We then separate the set of EQ_ATTR nodes into dimensions for each
287 attribute and put them on the VALUES list. Terms are added as needed by
288 `add_values_to_cover' so that all possible values of the attribute are
291 Each dimension also has a current value. This is the node that is
292 currently considered to be TRUE. If this is one of the nodes added by
293 `add_values_to_cover', all the EQ_ATTR tests in the original expression
294 will be FALSE. Otherwise, only the CURRENT_VALUE will be true.
296 NUM_VALUES is simply the length of the VALUES list and is there for
299 Once the dimensions are created, the algorithm enumerates all possible
300 values and computes the current value of the given expression. */
304 struct attr_desc
*attr
; /* Attribute for this dimension. */
305 rtx values
; /* List of attribute values used. */
306 rtx current_value
; /* Position in the list for the TRUE value. */
307 int num_values
; /* Length of the values list. */
310 /* Other variables. */
312 static int insn_code_number
;
313 static int insn_index_number
;
314 static int got_define_asm_attributes
;
315 static int must_extract
;
316 static int must_constrain
;
317 static int address_used
;
318 static int length_used
;
319 static int num_delays
;
320 static int have_annul_true
, have_annul_false
;
321 static int num_units
, num_unit_opclasses
;
322 static int num_insn_ents
;
324 /* Used as operand to `operate_exp': */
326 enum operator {PLUS_OP
, MINUS_OP
, POS_MINUS_OP
, EQ_OP
, OR_OP
, ORX_OP
, MAX_OP
, MIN_OP
, RANGE_OP
};
328 /* Stores, for each insn code, the number of constraint alternatives. */
330 static int *insn_n_alternatives
;
332 /* Stores, for each insn code, a bitmap that has bits on for each possible
335 static int *insn_alternatives
;
337 /* If nonzero, assume that the `alternative' attr has this value.
338 This is the hashed, unique string for the numeral
339 whose value is chosen alternative. */
341 static char *current_alternative_string
;
343 /* Used to simplify expressions. */
345 static rtx true_rtx
, false_rtx
;
347 /* Used to reduce calls to `strcmp' */
349 static char *alternative_name
;
351 /* Simplify an expression. Only call the routine if there is something to
353 #define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \
354 (RTX_UNCHANGING_P (EXP) || MEM_IN_STRUCT_P (EXP) ? (EXP) \
355 : simplify_test_exp (EXP, INSN_CODE, INSN_INDEX))
357 /* Simplify (eq_attr ("alternative") ...)
358 when we are working with a particular alternative. */
359 #define SIMPLIFY_ALTERNATIVE(EXP) \
360 if (current_alternative_string \
361 && GET_CODE ((EXP)) == EQ_ATTR \
362 && XSTR ((EXP), 0) == alternative_name) \
363 (EXP) = (XSTR ((EXP), 1) == current_alternative_string \
364 ? true_rtx : false_rtx);
366 /* These are referenced by rtlanal.c and hence need to be defined somewhere.
367 They won't actually be used. */
369 struct _global_rtl global_rtl
;
371 static rtx attr_rtx
PVPROTO((enum rtx_code
, ...));
373 static char *attr_printf
PVPROTO((int, char *, ...));
375 static char *attr_printf ();
378 static char *attr_string
PROTO((char *, int));
379 static rtx check_attr_test
PROTO((rtx
, int));
380 static rtx check_attr_value
PROTO((rtx
, struct attr_desc
*));
381 static rtx convert_set_attr_alternative
PROTO((rtx
, int, int, int));
382 static rtx convert_set_attr
PROTO((rtx
, int, int, int));
383 static void check_defs
PROTO((void));
385 static rtx convert_const_symbol_ref
PROTO((rtx
, struct attr_desc
*));
387 static rtx make_canonical
PROTO((struct attr_desc
*, rtx
));
388 static struct attr_value
*get_attr_value
PROTO((rtx
, struct attr_desc
*, int));
389 static rtx copy_rtx_unchanging
PROTO((rtx
));
390 static rtx copy_boolean
PROTO((rtx
));
391 static void expand_delays
PROTO((void));
392 static rtx operate_exp
PROTO((enum operator, rtx
, rtx
));
393 static void expand_units
PROTO((void));
394 static rtx simplify_knowing
PROTO((rtx
, rtx
));
395 static rtx encode_units_mask
PROTO((rtx
));
396 static void fill_attr
PROTO((struct attr_desc
*));
397 /* dpx2 compiler chokes if we specify the arg types of the args. */
398 static rtx substitute_address
PROTO((rtx
, rtx (*) (), rtx (*) ()));
399 static void make_length_attrs
PROTO((void));
400 static rtx identity_fn
PROTO((rtx
));
401 static rtx zero_fn
PROTO((rtx
));
402 static rtx one_fn
PROTO((rtx
));
403 static rtx max_fn
PROTO((rtx
));
404 static rtx simplify_cond
PROTO((rtx
, int, int));
406 static rtx simplify_by_alternatives
PROTO((rtx
, int, int));
408 static rtx simplify_by_exploding
PROTO((rtx
));
409 static int find_and_mark_used_attributes
PROTO((rtx
, rtx
*, int *));
410 static void unmark_used_attributes
PROTO((rtx
, struct dimension
*, int));
411 static int add_values_to_cover
PROTO((struct dimension
*));
412 static int increment_current_value
PROTO((struct dimension
*, int));
413 static rtx test_for_current_value
PROTO((struct dimension
*, int));
414 static rtx simplify_with_current_value
PROTO((rtx
, struct dimension
*, int));
415 static rtx simplify_with_current_value_aux
PROTO((rtx
));
416 static void clear_struct_flag
PROTO((rtx
));
417 static int count_sub_rtxs
PROTO((rtx
, int));
418 static void remove_insn_ent
PROTO((struct attr_value
*, struct insn_ent
*));
419 static void insert_insn_ent
PROTO((struct attr_value
*, struct insn_ent
*));
420 static rtx insert_right_side
PROTO((enum rtx_code
, rtx
, rtx
, int, int));
421 static rtx make_alternative_compare
PROTO((int));
422 static int compute_alternative_mask
PROTO((rtx
, enum rtx_code
));
423 static rtx evaluate_eq_attr
PROTO((rtx
, rtx
, int, int));
424 static rtx simplify_and_tree
PROTO((rtx
, rtx
*, int, int));
425 static rtx simplify_or_tree
PROTO((rtx
, rtx
*, int, int));
426 static rtx simplify_test_exp
PROTO((rtx
, int, int));
427 static void optimize_attrs
PROTO((void));
428 static void gen_attr
PROTO((rtx
));
429 static int count_alternatives
PROTO((rtx
));
430 static int compares_alternatives_p
PROTO((rtx
));
431 static int contained_in_p
PROTO((rtx
, rtx
));
432 static void gen_insn
PROTO((rtx
));
433 static void gen_delay
PROTO((rtx
));
434 static void gen_unit
PROTO((rtx
));
435 static void write_test_expr
PROTO((rtx
, int));
436 static int max_attr_value
PROTO((rtx
));
437 static void walk_attr_value
PROTO((rtx
));
438 static void write_attr_get
PROTO((struct attr_desc
*));
439 static rtx eliminate_known_true
PROTO((rtx
, rtx
, int, int));
440 static void write_attr_set
PROTO((struct attr_desc
*, int, rtx
, char *,
441 char *, rtx
, int, int));
442 static void write_attr_case
PROTO((struct attr_desc
*, struct attr_value
*,
443 int, char *, char *, int, rtx
));
444 static void write_attr_valueq
PROTO((struct attr_desc
*, char *));
445 static void write_attr_value
PROTO((struct attr_desc
*, rtx
));
446 static void write_upcase
PROTO((char *));
447 static void write_indent
PROTO((int));
448 static void write_eligible_delay
PROTO((char *));
449 static void write_function_unit_info
PROTO((void));
450 static void write_complex_function
PROTO((struct function_unit
*, char *,
452 static int write_expr_attr_cache
PROTO((rtx
, struct attr_desc
*));
453 static void write_toplevel_expr
PROTO((rtx
));
454 static int n_comma_elts
PROTO((char *));
455 static char *next_comma_elt
PROTO((char **));
456 static struct attr_desc
*find_attr
PROTO((char *, int));
457 static void make_internal_attr
PROTO((char *, rtx
, int));
458 static struct attr_value
*find_most_used
PROTO((struct attr_desc
*));
459 static rtx find_single_value
PROTO((struct attr_desc
*));
460 static rtx make_numeric_value
PROTO((int));
461 static void extend_range
PROTO((struct range
*, int, int));
462 char *xrealloc
PROTO((char *, unsigned));
463 char *xmalloc
PROTO((unsigned));
465 #define oballoc(size) obstack_alloc (hash_obstack, size)
468 /* Hash table for sharing RTL and strings. */
470 /* Each hash table slot is a bucket containing a chain of these structures.
471 Strings are given negative hash codes; RTL expressions are given positive
476 struct attr_hash
*next
; /* Next structure in the bucket. */
477 int hashcode
; /* Hash code of this rtx or string. */
480 char *str
; /* The string (negative hash codes) */
481 rtx rtl
; /* or the RTL recorded here. */
485 /* Now here is the hash table. When recording an RTL, it is added to
486 the slot whose index is the hash code mod the table size. Note
487 that the hash table is used for several kinds of RTL (see attr_rtx)
488 and for strings. While all these live in the same table, they are
489 completely independent, and the hash code is computed differently
492 #define RTL_HASH_SIZE 4093
493 struct attr_hash
*attr_hash_table
[RTL_HASH_SIZE
];
495 /* Here is how primitive or already-shared RTL's hash
497 #define RTL_HASH(RTL) ((HOST_WIDE_INT) (RTL) & 0777777)
499 /* Add an entry to the hash table for RTL with hash code HASHCODE. */
502 attr_hash_add_rtx (hashcode
, rtl
)
506 register struct attr_hash
*h
;
508 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
509 sizeof (struct attr_hash
));
510 h
->hashcode
= hashcode
;
512 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
513 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
516 /* Add an entry to the hash table for STRING with hash code HASHCODE. */
519 attr_hash_add_string (hashcode
, str
)
523 register struct attr_hash
*h
;
525 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
526 sizeof (struct attr_hash
));
527 h
->hashcode
= -hashcode
;
529 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
530 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
533 /* Generate an RTL expression, but avoid duplicates.
534 Set the RTX_INTEGRATED_P flag for these permanent objects.
536 In some cases we cannot uniquify; then we return an ordinary
537 impermanent rtx with RTX_INTEGRATED_P clear.
539 Args are like gen_rtx, but without the mode:
541 rtx attr_rtx (code, [element1, ..., elementn]) */
545 attr_rtx
VPROTO((enum rtx_code code
, ...))
551 register int i
; /* Array indices... */
552 register char *fmt
; /* Current rtx's format... */
553 register rtx rt_val
; /* RTX to return to caller... */
555 register struct attr_hash
*h
;
556 struct obstack
*old_obstack
= rtl_obstack
;
561 code
= va_arg (p
, enum rtx_code
);
564 /* For each of several cases, search the hash table for an existing entry.
565 Use that entry if one is found; otherwise create a new RTL and add it
568 if (GET_RTX_CLASS (code
) == '1')
570 rtx arg0
= va_arg (p
, rtx
);
572 /* A permanent object cannot point to impermanent ones. */
573 if (! RTX_INTEGRATED_P (arg0
))
575 rt_val
= rtx_alloc (code
);
576 XEXP (rt_val
, 0) = arg0
;
581 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
582 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
583 if (h
->hashcode
== hashcode
584 && GET_CODE (h
->u
.rtl
) == code
585 && XEXP (h
->u
.rtl
, 0) == arg0
)
590 rtl_obstack
= hash_obstack
;
591 rt_val
= rtx_alloc (code
);
592 XEXP (rt_val
, 0) = arg0
;
595 else if (GET_RTX_CLASS (code
) == 'c'
596 || GET_RTX_CLASS (code
) == '2'
597 || GET_RTX_CLASS (code
) == '<')
599 rtx arg0
= va_arg (p
, rtx
);
600 rtx arg1
= va_arg (p
, rtx
);
602 /* A permanent object cannot point to impermanent ones. */
603 if (! RTX_INTEGRATED_P (arg0
) || ! RTX_INTEGRATED_P (arg1
))
605 rt_val
= rtx_alloc (code
);
606 XEXP (rt_val
, 0) = arg0
;
607 XEXP (rt_val
, 1) = arg1
;
612 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
613 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
614 if (h
->hashcode
== hashcode
615 && GET_CODE (h
->u
.rtl
) == code
616 && XEXP (h
->u
.rtl
, 0) == arg0
617 && XEXP (h
->u
.rtl
, 1) == arg1
)
622 rtl_obstack
= hash_obstack
;
623 rt_val
= rtx_alloc (code
);
624 XEXP (rt_val
, 0) = arg0
;
625 XEXP (rt_val
, 1) = arg1
;
628 else if (GET_RTX_LENGTH (code
) == 1
629 && GET_RTX_FORMAT (code
)[0] == 's')
631 char * arg0
= va_arg (p
, char *);
633 if (code
== SYMBOL_REF
)
634 arg0
= attr_string (arg0
, strlen (arg0
));
636 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
637 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
638 if (h
->hashcode
== hashcode
639 && GET_CODE (h
->u
.rtl
) == code
640 && XSTR (h
->u
.rtl
, 0) == arg0
)
645 rtl_obstack
= hash_obstack
;
646 rt_val
= rtx_alloc (code
);
647 XSTR (rt_val
, 0) = arg0
;
650 else if (GET_RTX_LENGTH (code
) == 2
651 && GET_RTX_FORMAT (code
)[0] == 's'
652 && GET_RTX_FORMAT (code
)[1] == 's')
654 char *arg0
= va_arg (p
, char *);
655 char *arg1
= va_arg (p
, char *);
657 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
658 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
659 if (h
->hashcode
== hashcode
660 && GET_CODE (h
->u
.rtl
) == code
661 && XSTR (h
->u
.rtl
, 0) == arg0
662 && XSTR (h
->u
.rtl
, 1) == arg1
)
667 rtl_obstack
= hash_obstack
;
668 rt_val
= rtx_alloc (code
);
669 XSTR (rt_val
, 0) = arg0
;
670 XSTR (rt_val
, 1) = arg1
;
673 else if (code
== CONST_INT
)
675 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
685 rt_val
= rtx_alloc (code
); /* Allocate the storage space. */
687 fmt
= GET_RTX_FORMAT (code
); /* Find the right format... */
688 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
692 case '0': /* Unused field. */
695 case 'i': /* An integer? */
696 XINT (rt_val
, i
) = va_arg (p
, int);
699 case 'w': /* A wide integer? */
700 XWINT (rt_val
, i
) = va_arg (p
, HOST_WIDE_INT
);
703 case 's': /* A string? */
704 XSTR (rt_val
, i
) = va_arg (p
, char *);
707 case 'e': /* An expression? */
708 case 'u': /* An insn? Same except when printing. */
709 XEXP (rt_val
, i
) = va_arg (p
, rtx
);
712 case 'E': /* An RTX vector? */
713 XVEC (rt_val
, i
) = va_arg (p
, rtvec
);
724 rtl_obstack
= old_obstack
;
726 attr_hash_add_rtx (hashcode
, rt_val
);
727 RTX_INTEGRATED_P (rt_val
) = 1;
735 /* Create a new string printed with the printf line arguments into a space
736 of at most LEN bytes:
738 rtx attr_printf (len, format, [arg1, ..., argn]) */
744 attr_printf
VPROTO((register int len
, char *fmt
, ...))
756 len
= va_arg (p
, int);
757 fmt
= va_arg (p
, char *);
760 /* Print the string into a temporary location. */
761 str
= (char *) alloca (len
);
762 vsprintf (str
, fmt
, p
);
765 return attr_string (str
, strlen (str
));
768 #else /* not HAVE_VPRINTF */
771 attr_printf (len
, fmt
, arg1
, arg2
, arg3
)
774 char *arg1
, *arg2
, *arg3
; /* also int */
778 /* Print the string into a temporary location. */
779 str
= (char *) alloca (len
);
780 sprintf (str
, fmt
, arg1
, arg2
, arg3
);
782 return attr_string (str
, strlen (str
));
784 #endif /* not HAVE_VPRINTF */
787 attr_eq (name
, value
)
790 return attr_rtx (EQ_ATTR
, attr_string (name
, strlen (name
)),
791 attr_string (value
, strlen (value
)));
798 return XSTR (make_numeric_value (n
), 0);
801 /* Return a permanent (possibly shared) copy of a string STR (not assumed
802 to be null terminated) with LEN bytes. */
805 attr_string (str
, len
)
809 register struct attr_hash
*h
;
812 register char *new_str
;
814 /* Compute the hash code. */
815 hashcode
= (len
+ 1) * 613 + (unsigned)str
[0];
816 for (i
= 1; i
<= len
; i
+= 2)
817 hashcode
= ((hashcode
* 613) + (unsigned)str
[i
]);
819 hashcode
= -hashcode
;
821 /* Search the table for the string. */
822 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
823 if (h
->hashcode
== -hashcode
&& h
->u
.str
[0] == str
[0]
824 && !strncmp (h
->u
.str
, str
, len
))
825 return h
->u
.str
; /* <-- return if found. */
827 /* Not found; create a permanent copy and add it to the hash table. */
828 new_str
= (char *) obstack_alloc (hash_obstack
, len
+ 1);
829 bcopy (str
, new_str
, len
);
831 attr_hash_add_string (hashcode
, new_str
);
833 return new_str
; /* Return the new string. */
836 /* Check two rtx's for equality of contents,
837 taking advantage of the fact that if both are hashed
838 then they can't be equal unless they are the same object. */
844 return (x
== y
|| (! (RTX_INTEGRATED_P (x
) && RTX_INTEGRATED_P (y
))
845 && rtx_equal_p (x
, y
)));
848 /* Copy an attribute value expression,
849 descending to all depths, but not copying any
850 permanent hashed subexpressions. */
858 register RTX_CODE code
;
859 register char *format_ptr
;
861 /* No need to copy a permanent object. */
862 if (RTX_INTEGRATED_P (orig
))
865 code
= GET_CODE (orig
);
883 copy
= rtx_alloc (code
);
884 PUT_MODE (copy
, GET_MODE (orig
));
885 copy
->in_struct
= orig
->in_struct
;
886 copy
->volatil
= orig
->volatil
;
887 copy
->unchanging
= orig
->unchanging
;
888 copy
->integrated
= orig
->integrated
;
890 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
892 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
894 switch (*format_ptr
++)
897 XEXP (copy
, i
) = XEXP (orig
, i
);
898 if (XEXP (orig
, i
) != NULL
)
899 XEXP (copy
, i
) = attr_copy_rtx (XEXP (orig
, i
));
904 XVEC (copy
, i
) = XVEC (orig
, i
);
905 if (XVEC (orig
, i
) != NULL
)
907 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
908 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
909 XVECEXP (copy
, i
, j
) = attr_copy_rtx (XVECEXP (orig
, i
, j
));
915 XINT (copy
, i
) = XINT (orig
, i
);
919 XWINT (copy
, i
) = XWINT (orig
, i
);
924 XSTR (copy
, i
) = XSTR (orig
, i
);
934 /* Given a test expression for an attribute, ensure it is validly formed.
935 IS_CONST indicates whether the expression is constant for each compiler
936 run (a constant expression may not test any particular insn).
938 Convert (eq_attr "att" "a1,a2") to (ior (eq_attr ... ) (eq_attrq ..))
939 and (eq_attr "att" "!a1") to (not (eq_attr "att" "a1")). Do the latter
940 test first so that (eq_attr "att" "!a1,a2,a3") works as expected.
942 Update the string address in EQ_ATTR expression to be the same used
943 in the attribute (or `alternative_name') to speed up subsequent
944 `find_attr' calls and eliminate most `strcmp' calls.
946 Return the new expression, if any. */
949 check_attr_test (exp
, is_const
)
953 struct attr_desc
*attr
;
954 struct attr_value
*av
;
958 switch (GET_CODE (exp
))
961 /* Handle negation test. */
962 if (XSTR (exp
, 1)[0] == '!')
963 return check_attr_test (attr_rtx (NOT
,
964 attr_eq (XSTR (exp
, 0),
968 else if (n_comma_elts (XSTR (exp
, 1)) == 1)
970 attr
= find_attr (XSTR (exp
, 0), 0);
973 if (! strcmp (XSTR (exp
, 0), "alternative"))
975 XSTR (exp
, 0) = alternative_name
;
976 /* This can't be simplified any further. */
977 RTX_UNCHANGING_P (exp
) = 1;
981 fatal ("Unknown attribute `%s' in EQ_ATTR", XEXP (exp
, 0));
984 if (is_const
&& ! attr
->is_const
)
985 fatal ("Constant expression uses insn attribute `%s' in EQ_ATTR",
988 /* Copy this just to make it permanent,
989 so expressions using it can be permanent too. */
990 exp
= attr_eq (XSTR (exp
, 0), XSTR (exp
, 1));
992 /* It shouldn't be possible to simplify the value given to a
993 constant attribute, so don't expand this until it's time to
994 write the test expression. */
996 RTX_UNCHANGING_P (exp
) = 1;
998 if (attr
->is_numeric
)
1000 for (p
= XSTR (exp
, 1); *p
; p
++)
1001 if (*p
< '0' || *p
> '9')
1002 fatal ("Attribute `%s' takes only numeric values",
1007 for (av
= attr
->first_value
; av
; av
= av
->next
)
1008 if (GET_CODE (av
->value
) == CONST_STRING
1009 && ! strcmp (XSTR (exp
, 1), XSTR (av
->value
, 0)))
1013 fatal ("Unknown value `%s' for `%s' attribute",
1014 XEXP (exp
, 1), XEXP (exp
, 0));
1019 /* Make an IOR tree of the possible values. */
1021 name_ptr
= XSTR (exp
, 1);
1022 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1024 newexp
= attr_eq (XSTR (exp
, 0), p
);
1025 orexp
= insert_right_side (IOR
, orexp
, newexp
, -2, -2);
1028 return check_attr_test (orexp
, is_const
);
1036 /* Either TRUE or FALSE. */
1044 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
);
1045 XEXP (exp
, 1) = check_attr_test (XEXP (exp
, 1), is_const
);
1049 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
);
1054 fatal ("RTL operator \"%s\" not valid in constant attribute test",
1055 GET_RTX_NAME (MATCH_OPERAND
));
1056 /* These cases can't be simplified. */
1057 RTX_UNCHANGING_P (exp
) = 1;
1060 case LE
: case LT
: case GT
: case GE
:
1061 case LEU
: case LTU
: case GTU
: case GEU
:
1063 if (GET_CODE (XEXP (exp
, 0)) == SYMBOL_REF
1064 && GET_CODE (XEXP (exp
, 1)) == SYMBOL_REF
)
1065 exp
= attr_rtx (GET_CODE (exp
),
1066 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 0), 0)),
1067 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 1), 0)));
1068 /* These cases can't be simplified. */
1069 RTX_UNCHANGING_P (exp
) = 1;
1075 /* These cases are valid for constant attributes, but can't be
1077 exp
= attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1078 RTX_UNCHANGING_P (exp
) = 1;
1082 fatal ("RTL operator \"%s\" not valid in attribute test",
1083 GET_RTX_NAME (GET_CODE (exp
)));
1089 /* Given an expression, ensure that it is validly formed and that all named
1090 attribute values are valid for the given attribute. Issue a fatal error
1091 if not. If no attribute is specified, assume a numeric attribute.
1093 Return a perhaps modified replacement expression for the value. */
1096 check_attr_value (exp
, attr
)
1098 struct attr_desc
*attr
;
1100 struct attr_value
*av
;
1104 switch (GET_CODE (exp
))
1107 if (attr
&& ! attr
->is_numeric
)
1108 fatal ("CONST_INT not valid for non-numeric `%s' attribute",
1111 if (INTVAL (exp
) < 0)
1112 fatal ("Negative numeric value specified for `%s' attribute",
1118 if (! strcmp (XSTR (exp
, 0), "*"))
1121 if (attr
== 0 || attr
->is_numeric
)
1124 if (attr
&& attr
->negative_ok
&& *p
== '-')
1127 if (*p
> '9' || *p
< '0')
1128 fatal ("Non-numeric value for numeric `%s' attribute",
1129 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)))
1139 fatal ("Unknown value `%s' for `%s' attribute",
1140 XSTR (exp
, 0), attr
? attr
->name
: "internal");
1145 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0),
1146 attr
? attr
->is_const
: 0);
1147 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1148 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
1153 XEXP (exp
, 0) = check_attr_value (XEXP (exp
, 0), attr
);
1154 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1158 XEXP (exp
, 0) = check_attr_value (XEXP (exp
, 0), attr
);
1162 if (XVECLEN (exp
, 0) % 2 != 0)
1163 fatal ("First operand of COND must have even length");
1165 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1167 XVECEXP (exp
, 0, i
) = check_attr_test (XVECEXP (exp
, 0, i
),
1168 attr
? attr
->is_const
: 0);
1169 XVECEXP (exp
, 0, i
+ 1)
1170 = check_attr_value (XVECEXP (exp
, 0, i
+ 1), attr
);
1173 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1177 if (attr
&& attr
->is_const
)
1178 /* A constant SYMBOL_REF is valid as a constant attribute test and
1179 is expanded later by make_canonical into a COND. */
1180 return attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1181 /* Otherwise, fall through... */
1184 fatal ("Invalid operation `%s' for attribute value",
1185 GET_RTX_NAME (GET_CODE (exp
)));
1191 /* Given an SET_ATTR_ALTERNATIVE expression, convert to the canonical SET.
1192 It becomes a COND with each test being (eq_attr "alternative "n") */
1195 convert_set_attr_alternative (exp
, num_alt
, insn_code
, insn_index
)
1198 int insn_code
, insn_index
;
1203 if (XVECLEN (exp
, 1) != num_alt
)
1204 fatal ("Bad number of entries in SET_ATTR_ALTERNATIVE for insn %d",
1207 /* Make a COND with all tests but the last. Select the last value via the
1209 condexp
= rtx_alloc (COND
);
1210 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1212 for (i
= 0; i
< num_alt
- 1; i
++)
1215 p
= attr_numeral (i
);
1217 XVECEXP (condexp
, 0, 2 * i
) = attr_eq (alternative_name
, p
);
1219 /* Sharing this EQ_ATTR rtl causes trouble. */
1220 XVECEXP (condexp
, 0, 2 * i
) = rtx_alloc (EQ_ATTR
);
1221 XSTR (XVECEXP (condexp
, 0, 2 * i
), 0) = alternative_name
;
1222 XSTR (XVECEXP (condexp
, 0, 2 * i
), 1) = p
;
1224 XVECEXP (condexp
, 0, 2 * i
+ 1) = XVECEXP (exp
, 1, i
);
1227 XEXP (condexp
, 1) = XVECEXP (exp
, 1, i
);
1229 return attr_rtx (SET
, attr_rtx (ATTR
, XSTR (exp
, 0)), condexp
);
1232 /* Given a SET_ATTR, convert to the appropriate SET. If a comma-separated
1233 list of values is given, convert to SET_ATTR_ALTERNATIVE first. */
1236 convert_set_attr (exp
, num_alt
, insn_code
, insn_index
)
1239 int insn_code
, insn_index
;
1246 /* See how many alternative specified. */
1247 n
= n_comma_elts (XSTR (exp
, 1));
1249 return attr_rtx (SET
,
1250 attr_rtx (ATTR
, XSTR (exp
, 0)),
1251 attr_rtx (CONST_STRING
, XSTR (exp
, 1)));
1253 newexp
= rtx_alloc (SET_ATTR_ALTERNATIVE
);
1254 XSTR (newexp
, 0) = XSTR (exp
, 0);
1255 XVEC (newexp
, 1) = rtvec_alloc (n
);
1257 /* Process each comma-separated name. */
1258 name_ptr
= XSTR (exp
, 1);
1260 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1261 XVECEXP (newexp
, 1, n
++) = attr_rtx (CONST_STRING
, p
);
1263 return convert_set_attr_alternative (newexp
, num_alt
, insn_code
, insn_index
);
1266 /* Scan all definitions, checking for validity. Also, convert any SET_ATTR
1267 and SET_ATTR_ALTERNATIVE expressions to the corresponding SET
1273 struct insn_def
*id
;
1274 struct attr_desc
*attr
;
1278 for (id
= defs
; id
; id
= id
->next
)
1280 if (XVEC (id
->def
, id
->vec_idx
) == NULL
)
1283 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
1285 value
= XVECEXP (id
->def
, id
->vec_idx
, i
);
1286 switch (GET_CODE (value
))
1289 if (GET_CODE (XEXP (value
, 0)) != ATTR
)
1290 fatal ("Bad attribute set in pattern %d", id
->insn_index
);
1293 case SET_ATTR_ALTERNATIVE
:
1294 value
= convert_set_attr_alternative (value
,
1295 id
->num_alternatives
,
1301 value
= convert_set_attr (value
, id
->num_alternatives
,
1302 id
->insn_code
, id
->insn_index
);
1306 fatal ("Invalid attribute code `%s' for pattern %d",
1307 GET_RTX_NAME (GET_CODE (value
)), id
->insn_index
);
1310 if ((attr
= find_attr (XSTR (XEXP (value
, 0), 0), 0)) == NULL
)
1311 fatal ("Unknown attribute `%s' for pattern number %d",
1312 XSTR (XEXP (value
, 0), 0), id
->insn_index
);
1314 XVECEXP (id
->def
, id
->vec_idx
, i
) = value
;
1315 XEXP (value
, 1) = check_attr_value (XEXP (value
, 1), attr
);
1321 /* Given a constant SYMBOL_REF expression, convert to a COND that
1322 explicitly tests each enumerated value. */
1325 convert_const_symbol_ref (exp
, attr
)
1327 struct attr_desc
*attr
;
1330 struct attr_value
*av
;
1334 for (av
= attr
->first_value
; av
; av
= av
->next
)
1337 /* Make a COND with all tests but the last, and in the original order.
1338 Select the last value via the default. Note that the attr values
1339 are constructed in reverse order. */
1341 condexp
= rtx_alloc (COND
);
1342 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1343 av
= attr
->first_value
;
1344 XEXP (condexp
, 1) = av
->value
;
1346 for (i
= num_alt
- 2; av
= av
->next
, i
>= 0; i
--)
1351 string
= p
= (char *) oballoc (2
1352 + strlen (attr
->name
)
1353 + strlen (XSTR (av
->value
, 0)));
1354 strcpy (p
, attr
->name
);
1356 strcat (p
, XSTR (av
->value
, 0));
1357 for (; *p
!= '\0'; p
++)
1358 if (*p
>= 'a' && *p
<= 'z')
1361 value
= attr_rtx (SYMBOL_REF
, string
);
1362 RTX_UNCHANGING_P (value
) = 1;
1364 XVECEXP (condexp
, 0, 2 * i
) = attr_rtx (EQ
, exp
, value
);
1366 XVECEXP (condexp
, 0, 2 * i
+ 1) = av
->value
;
1373 /* Given a valid expression for an attribute value, remove any IF_THEN_ELSE
1374 expressions by converting them into a COND. This removes cases from this
1375 program. Also, replace an attribute value of "*" with the default attribute
1379 make_canonical (attr
, exp
)
1380 struct attr_desc
*attr
;
1386 switch (GET_CODE (exp
))
1389 exp
= make_numeric_value (INTVAL (exp
));
1393 if (! strcmp (XSTR (exp
, 0), "*"))
1395 if (attr
== 0 || attr
->default_val
== 0)
1396 fatal ("(attr_value \"*\") used in invalid context.");
1397 exp
= attr
->default_val
->value
;
1403 if (!attr
->is_const
|| RTX_UNCHANGING_P (exp
))
1405 /* The SYMBOL_REF is constant for a given run, so mark it as unchanging.
1406 This makes the COND something that won't be considered an arbitrary
1407 expression by walk_attr_value. */
1408 RTX_UNCHANGING_P (exp
) = 1;
1410 /* ??? Why do we do this? With attribute values { A B C D E }, this
1411 tends to generate (!(x==A) && !(x==B) && !(x==C) && !(x==D)) rather
1413 exp
= convert_const_symbol_ref (exp
, attr
);
1414 RTX_UNCHANGING_P (exp
) = 1;
1415 exp
= check_attr_value (exp
, attr
);
1416 /* Goto COND case since this is now a COND. Note that while the
1417 new expression is rescanned, all symbol_ref notes are marked as
1421 exp
= check_attr_value (exp
, attr
);
1426 newexp
= rtx_alloc (COND
);
1427 XVEC (newexp
, 0) = rtvec_alloc (2);
1428 XVECEXP (newexp
, 0, 0) = XEXP (exp
, 0);
1429 XVECEXP (newexp
, 0, 1) = XEXP (exp
, 1);
1431 XEXP (newexp
, 1) = XEXP (exp
, 2);
1434 /* Fall through to COND case since this is now a COND. */
1442 /* First, check for degenerate COND. */
1443 if (XVECLEN (exp
, 0) == 0)
1444 return make_canonical (attr
, XEXP (exp
, 1));
1445 defval
= XEXP (exp
, 1) = make_canonical (attr
, XEXP (exp
, 1));
1447 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1449 XVECEXP (exp
, 0, i
) = copy_boolean (XVECEXP (exp
, 0, i
));
1450 XVECEXP (exp
, 0, i
+ 1)
1451 = make_canonical (attr
, XVECEXP (exp
, 0, i
+ 1));
1452 if (! rtx_equal_p (XVECEXP (exp
, 0, i
+ 1), defval
))
1471 if (GET_CODE (exp
) == AND
|| GET_CODE (exp
) == IOR
)
1472 return attr_rtx (GET_CODE (exp
), copy_boolean (XEXP (exp
, 0)),
1473 copy_boolean (XEXP (exp
, 1)));
1477 /* Given a value and an attribute description, return a `struct attr_value *'
1478 that represents that value. This is either an existing structure, if the
1479 value has been previously encountered, or a newly-created structure.
1481 `insn_code' is the code of an insn whose attribute has the specified
1482 value (-2 if not processing an insn). We ensure that all insns for
1483 a given value have the same number of alternatives if the value checks
1486 static struct attr_value
*
1487 get_attr_value (value
, attr
, insn_code
)
1489 struct attr_desc
*attr
;
1492 struct attr_value
*av
;
1495 value
= make_canonical (attr
, value
);
1496 if (compares_alternatives_p (value
))
1498 if (insn_code
< 0 || insn_alternatives
== NULL
)
1499 fatal ("(eq_attr \"alternatives\" ...) used in non-insn context");
1501 num_alt
= insn_alternatives
[insn_code
];
1504 for (av
= attr
->first_value
; av
; av
= av
->next
)
1505 if (rtx_equal_p (value
, av
->value
)
1506 && (num_alt
== 0 || av
->first_insn
== NULL
1507 || insn_alternatives
[av
->first_insn
->insn_code
]))
1510 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
1512 av
->next
= attr
->first_value
;
1513 attr
->first_value
= av
;
1514 av
->first_insn
= NULL
;
1516 av
->has_asm_insn
= 0;
1521 /* After all DEFINE_DELAYs have been read in, create internal attributes
1522 to generate the required routines.
1524 First, we compute the number of delay slots for each insn (as a COND of
1525 each of the test expressions in DEFINE_DELAYs). Then, if more than one
1526 delay type is specified, we compute a similar function giving the
1527 DEFINE_DELAY ordinal for each insn.
1529 Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
1530 tells whether a given insn can be in that delay slot.
1532 Normal attribute filling and optimization expands these to contain the
1533 information needed to handle delay slots. */
1538 struct delay_desc
*delay
;
1544 /* First, generate data for `num_delay_slots' function. */
1546 condexp
= rtx_alloc (COND
);
1547 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1548 XEXP (condexp
, 1) = make_numeric_value (0);
1550 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1552 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1553 XVECEXP (condexp
, 0, i
+ 1)
1554 = make_numeric_value (XVECLEN (delay
->def
, 1) / 3);
1557 make_internal_attr ("*num_delay_slots", condexp
, 0);
1559 /* If more than one delay type, do the same for computing the delay type. */
1562 condexp
= rtx_alloc (COND
);
1563 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1564 XEXP (condexp
, 1) = make_numeric_value (0);
1566 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1568 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1569 XVECEXP (condexp
, 0, i
+ 1) = make_numeric_value (delay
->num
);
1572 make_internal_attr ("*delay_type", condexp
, 1);
1575 /* For each delay possibility and delay slot, compute an eligibility
1576 attribute for non-annulled insns and for each type of annulled (annul
1577 if true and annul if false). */
1578 for (delay
= delays
; delay
; delay
= delay
->next
)
1580 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
1582 condexp
= XVECEXP (delay
->def
, 1, i
);
1583 if (condexp
== 0) condexp
= false_rtx
;
1584 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1585 make_numeric_value (1), make_numeric_value (0));
1587 p
= attr_printf (sizeof ("*delay__") + MAX_DIGITS
*2, "*delay_%d_%d",
1589 make_internal_attr (p
, newexp
, 1);
1591 if (have_annul_true
)
1593 condexp
= XVECEXP (delay
->def
, 1, i
+ 1);
1594 if (condexp
== 0) condexp
= false_rtx
;
1595 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1596 make_numeric_value (1),
1597 make_numeric_value (0));
1598 p
= attr_printf (sizeof ("*annul_true__") + MAX_DIGITS
*2,
1599 "*annul_true_%d_%d", delay
->num
, i
/ 3);
1600 make_internal_attr (p
, newexp
, 1);
1603 if (have_annul_false
)
1605 condexp
= XVECEXP (delay
->def
, 1, i
+ 2);
1606 if (condexp
== 0) condexp
= false_rtx
;
1607 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1608 make_numeric_value (1),
1609 make_numeric_value (0));
1610 p
= attr_printf (sizeof ("*annul_false__") + MAX_DIGITS
*2,
1611 "*annul_false_%d_%d", delay
->num
, i
/ 3);
1612 make_internal_attr (p
, newexp
, 1);
1618 /* This function is given a left and right side expression and an operator.
1619 Each side is a conditional expression, each alternative of which has a
1620 numerical value. The function returns another conditional expression
1621 which, for every possible set of condition values, returns a value that is
1622 the operator applied to the values of the two sides.
1624 Since this is called early, it must also support IF_THEN_ELSE. */
1627 operate_exp (op
, left
, right
)
1631 int left_value
, right_value
;
1635 /* If left is a string, apply operator to it and the right side. */
1636 if (GET_CODE (left
) == CONST_STRING
)
1638 /* If right is also a string, just perform the operation. */
1639 if (GET_CODE (right
) == CONST_STRING
)
1641 left_value
= atoi (XSTR (left
, 0));
1642 right_value
= atoi (XSTR (right
, 0));
1646 i
= left_value
+ right_value
;
1650 i
= left_value
- right_value
;
1653 case POS_MINUS_OP
: /* The positive part of LEFT - RIGHT. */
1654 if (left_value
> right_value
)
1655 i
= left_value
- right_value
;
1662 i
= left_value
| right_value
;
1666 i
= left_value
== right_value
;
1670 i
= (left_value
<< (HOST_BITS_PER_INT
/ 2)) | right_value
;
1674 if (left_value
> right_value
)
1681 if (left_value
< right_value
)
1691 if (i
== left_value
)
1693 if (i
== right_value
)
1695 return make_numeric_value (i
);
1697 else if (GET_CODE (right
) == IF_THEN_ELSE
)
1699 /* Apply recursively to all values within. */
1700 rtx newleft
= operate_exp (op
, left
, XEXP (right
, 1));
1701 rtx newright
= operate_exp (op
, left
, XEXP (right
, 2));
1702 if (rtx_equal_p (newleft
, newright
))
1704 return attr_rtx (IF_THEN_ELSE
, XEXP (right
, 0), newleft
, newright
);
1706 else if (GET_CODE (right
) == COND
)
1711 newexp
= rtx_alloc (COND
);
1712 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (right
, 0));
1713 defval
= XEXP (newexp
, 1) = operate_exp (op
, left
, XEXP (right
, 1));
1715 for (i
= 0; i
< XVECLEN (right
, 0); i
+= 2)
1717 XVECEXP (newexp
, 0, i
) = XVECEXP (right
, 0, i
);
1718 XVECEXP (newexp
, 0, i
+ 1)
1719 = operate_exp (op
, left
, XVECEXP (right
, 0, i
+ 1));
1720 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1725 /* If the resulting cond is trivial (all alternatives
1726 give the same value), optimize it away. */
1729 obstack_free (rtl_obstack
, newexp
);
1730 return operate_exp (op
, left
, XEXP (right
, 1));
1733 /* If the result is the same as the RIGHT operand,
1735 if (rtx_equal_p (newexp
, right
))
1737 obstack_free (rtl_obstack
, newexp
);
1744 fatal ("Badly formed attribute value");
1747 /* A hack to prevent expand_units from completely blowing up: ORX_OP does
1748 not associate through IF_THEN_ELSE. */
1749 else if (op
== ORX_OP
&& GET_CODE (right
) == IF_THEN_ELSE
)
1751 return attr_rtx (IOR
, left
, right
);
1754 /* Otherwise, do recursion the other way. */
1755 else if (GET_CODE (left
) == IF_THEN_ELSE
)
1757 rtx newleft
= operate_exp (op
, XEXP (left
, 1), right
);
1758 rtx newright
= operate_exp (op
, XEXP (left
, 2), right
);
1759 if (rtx_equal_p (newleft
, newright
))
1761 return attr_rtx (IF_THEN_ELSE
, XEXP (left
, 0), newleft
, newright
);
1763 else if (GET_CODE (left
) == COND
)
1768 newexp
= rtx_alloc (COND
);
1769 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (left
, 0));
1770 defval
= XEXP (newexp
, 1) = operate_exp (op
, XEXP (left
, 1), right
);
1772 for (i
= 0; i
< XVECLEN (left
, 0); i
+= 2)
1774 XVECEXP (newexp
, 0, i
) = XVECEXP (left
, 0, i
);
1775 XVECEXP (newexp
, 0, i
+ 1)
1776 = operate_exp (op
, XVECEXP (left
, 0, i
+ 1), right
);
1777 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1782 /* If the cond is trivial (all alternatives give the same value),
1783 optimize it away. */
1786 obstack_free (rtl_obstack
, newexp
);
1787 return operate_exp (op
, XEXP (left
, 1), right
);
1790 /* If the result is the same as the LEFT operand,
1792 if (rtx_equal_p (newexp
, left
))
1794 obstack_free (rtl_obstack
, newexp
);
1802 fatal ("Badly formed attribute value.");
1807 /* Once all attributes and DEFINE_FUNCTION_UNITs have been read, we
1808 construct a number of attributes.
1810 The first produces a function `function_units_used' which is given an
1811 insn and produces an encoding showing which function units are required
1812 for the execution of that insn. If the value is non-negative, the insn
1813 uses that unit; otherwise, the value is a one's compliment mask of units
1816 The second produces a function `result_ready_cost' which is used to
1817 determine the time that the result of an insn will be ready and hence
1818 a worst-case schedule.
1820 Both of these produce quite complex expressions which are then set as the
1821 default value of internal attributes. Normal attribute simplification
1822 should produce reasonable expressions.
1824 For each unit, a `<name>_unit_ready_cost' function will take an
1825 insn and give the delay until that unit will be ready with the result
1826 and a `<name>_unit_conflict_cost' function is given an insn already
1827 executing on the unit and a candidate to execute and will give the
1828 cost from the time the executing insn started until the candidate
1829 can start (ignore limitations on the number of simultaneous insns).
1831 For each unit, a `<name>_unit_blockage' function is given an insn
1832 already executing on the unit and a candidate to execute and will
1833 give the delay incurred due to function unit conflicts. The range of
1834 blockage cost values for a given executing insn is given by the
1835 `<name>_unit_blockage_range' function. These values are encoded in
1836 an int where the upper half gives the minimum value and the lower
1837 half gives the maximum value. */
1842 struct function_unit
*unit
, **unit_num
;
1843 struct function_unit_op
*op
, **op_array
, ***unit_ops
;
1848 int i
, j
, u
, num
, nvalues
;
1850 /* Rebuild the condition for the unit to share the RTL expressions.
1851 Sharing is required by simplify_by_exploding. Build the issue delay
1852 expressions. Validate the expressions we were given for the conditions
1853 and conflict vector. Then make attributes for use in the conflict
1856 for (unit
= units
; unit
; unit
= unit
->next
)
1858 unit
->condexp
= check_attr_test (unit
->condexp
, 0);
1860 for (op
= unit
->ops
; op
; op
= op
->next
)
1862 rtx issue_delay
= make_numeric_value (op
->issue_delay
);
1863 rtx issue_exp
= issue_delay
;
1865 /* Build, validate, and simplify the issue delay expression. */
1866 if (op
->conflict_exp
!= true_rtx
)
1867 issue_exp
= attr_rtx (IF_THEN_ELSE
, op
->conflict_exp
,
1868 issue_exp
, make_numeric_value (0));
1869 issue_exp
= check_attr_value (make_canonical (NULL_ATTR
,
1872 issue_exp
= simplify_knowing (issue_exp
, unit
->condexp
);
1873 op
->issue_exp
= issue_exp
;
1875 /* Make an attribute for use in the conflict function if needed. */
1876 unit
->needs_conflict_function
= (unit
->issue_delay
.min
1877 != unit
->issue_delay
.max
);
1878 if (unit
->needs_conflict_function
)
1880 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cost_") + MAX_DIGITS
,
1881 "*%s_cost_%d", unit
->name
, op
->num
);
1882 make_internal_attr (str
, issue_exp
, 1);
1885 /* Validate the condition. */
1886 op
->condexp
= check_attr_test (op
->condexp
, 0);
1890 /* Compute the mask of function units used. Initially, the unitsmask is
1891 zero. Set up a conditional to compute each unit's contribution. */
1892 unitsmask
= make_numeric_value (0);
1893 newexp
= rtx_alloc (IF_THEN_ELSE
);
1894 XEXP (newexp
, 2) = make_numeric_value (0);
1896 /* If we have just a few units, we may be all right expanding the whole
1897 thing. But the expansion is 2**N in space on the number of opclasses,
1898 so we can't do this for very long -- Alpha and MIPS in particular have
1899 problems with this. So in that situation, we fall back on an alternate
1900 implementation method. */
1901 #define NUM_UNITOP_CUTOFF 20
1903 if (num_unit_opclasses
< NUM_UNITOP_CUTOFF
)
1905 /* Merge each function unit into the unit mask attributes. */
1906 for (unit
= units
; unit
; unit
= unit
->next
)
1908 XEXP (newexp
, 0) = unit
->condexp
;
1909 XEXP (newexp
, 1) = make_numeric_value (1 << unit
->num
);
1910 unitsmask
= operate_exp (OR_OP
, unitsmask
, newexp
);
1915 /* Merge each function unit into the unit mask attributes. */
1916 for (unit
= units
; unit
; unit
= unit
->next
)
1918 XEXP (newexp
, 0) = unit
->condexp
;
1919 XEXP (newexp
, 1) = make_numeric_value (1 << unit
->num
);
1920 unitsmask
= operate_exp (ORX_OP
, unitsmask
, attr_copy_rtx (newexp
));
1924 /* Simplify the unit mask expression, encode it, and make an attribute
1925 for the function_units_used function. */
1926 unitsmask
= simplify_by_exploding (unitsmask
);
1928 if (num_unit_opclasses
< NUM_UNITOP_CUTOFF
)
1929 unitsmask
= encode_units_mask (unitsmask
);
1932 /* We can no longer encode unitsmask at compile time, so emit code to
1933 calculate it at runtime. Rather, put a marker for where we'd do
1934 the code, and actually output it in write_attr_get(). */
1935 unitsmask
= attr_rtx (FFS
, unitsmask
);
1938 make_internal_attr ("*function_units_used", unitsmask
, 2);
1940 /* Create an array of ops for each unit. Add an extra unit for the
1941 result_ready_cost function that has the ops of all other units. */
1942 unit_ops
= (struct function_unit_op
***)
1943 alloca ((num_units
+ 1) * sizeof (struct function_unit_op
**));
1944 unit_num
= (struct function_unit
**)
1945 alloca ((num_units
+ 1) * sizeof (struct function_unit
*));
1947 unit_num
[num_units
] = unit
= (struct function_unit
*)
1948 alloca (sizeof (struct function_unit
));
1949 unit
->num
= num_units
;
1950 unit
->num_opclasses
= 0;
1952 for (unit
= units
; unit
; unit
= unit
->next
)
1954 unit_num
[num_units
]->num_opclasses
+= unit
->num_opclasses
;
1955 unit_num
[unit
->num
] = unit
;
1956 unit_ops
[unit
->num
] = op_array
= (struct function_unit_op
**)
1957 alloca (unit
->num_opclasses
* sizeof (struct function_unit_op
*));
1959 for (op
= unit
->ops
; op
; op
= op
->next
)
1960 op_array
[op
->num
] = op
;
1963 /* Compose the array of ops for the extra unit. */
1964 unit_ops
[num_units
] = op_array
= (struct function_unit_op
**)
1965 alloca (unit_num
[num_units
]->num_opclasses
1966 * sizeof (struct function_unit_op
*));
1968 for (unit
= units
, i
= 0; unit
; i
+= unit
->num_opclasses
, unit
= unit
->next
)
1969 bcopy ((char *) unit_ops
[unit
->num
], (char *) &op_array
[i
],
1970 unit
->num_opclasses
* sizeof (struct function_unit_op
*));
1972 /* Compute the ready cost function for each unit by computing the
1973 condition for each non-default value. */
1974 for (u
= 0; u
<= num_units
; u
++)
1980 op_array
= unit_ops
[unit
->num
];
1981 num
= unit
->num_opclasses
;
1983 /* Sort the array of ops into increasing ready cost order. */
1984 for (i
= 0; i
< num
; i
++)
1985 for (j
= num
- 1; j
> i
; j
--)
1986 if (op_array
[j
-1]->ready
< op_array
[j
]->ready
)
1989 op_array
[j
] = op_array
[j
-1];
1993 /* Determine how many distinct non-default ready cost values there
1994 are. We use a default ready cost value of 1. */
1995 nvalues
= 0; value
= 1;
1996 for (i
= num
- 1; i
>= 0; i
--)
1997 if (op_array
[i
]->ready
> value
)
1999 value
= op_array
[i
]->ready
;
2004 readycost
= make_numeric_value (1);
2007 /* Construct the ready cost expression as a COND of each value from
2008 the largest to the smallest. */
2009 readycost
= rtx_alloc (COND
);
2010 XVEC (readycost
, 0) = rtvec_alloc (nvalues
* 2);
2011 XEXP (readycost
, 1) = make_numeric_value (1);
2013 nvalues
= 0; orexp
= false_rtx
; value
= op_array
[0]->ready
;
2014 for (i
= 0; i
< num
; i
++)
2019 else if (op
->ready
== value
)
2020 orexp
= insert_right_side (IOR
, orexp
, op
->condexp
, -2, -2);
2023 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
2024 XVECEXP (readycost
, 0, nvalues
* 2 + 1)
2025 = make_numeric_value (value
);
2028 orexp
= op
->condexp
;
2031 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
2032 XVECEXP (readycost
, 0, nvalues
* 2 + 1) = make_numeric_value (value
);
2037 rtx max_blockage
= 0, min_blockage
= 0;
2039 /* Simplify the readycost expression by only considering insns
2040 that use the unit. */
2041 readycost
= simplify_knowing (readycost
, unit
->condexp
);
2043 /* Determine the blockage cost the executing insn (E) given
2044 the candidate insn (C). This is the maximum of the issue
2045 delay, the pipeline delay, and the simultaneity constraint.
2046 Each function_unit_op represents the characteristics of the
2047 candidate insn, so in the expressions below, C is a known
2048 term and E is an unknown term.
2050 We compute the blockage cost for each E for every possible C.
2051 Thus OP represents E, and READYCOST is a list of values for
2054 The issue delay function for C is op->issue_exp and is used to
2055 write the `<name>_unit_conflict_cost' function. Symbolicly
2056 this is "ISSUE-DELAY (E,C)".
2058 The pipeline delay results form the FIFO constraint on the
2059 function unit and is "READY-COST (E) + 1 - READY-COST (C)".
2061 The simultaneity constraint is based on how long it takes to
2062 fill the unit given the minimum issue delay. FILL-TIME is the
2063 constant "MIN (ISSUE-DELAY (*,*)) * (SIMULTANEITY - 1)", and
2064 the simultaneity constraint is "READY-COST (E) - FILL-TIME"
2065 if SIMULTANEITY is non-zero and zero otherwise.
2067 Thus, BLOCKAGE (E,C) when SIMULTANEITY is zero is
2069 MAX (ISSUE-DELAY (E,C),
2070 READY-COST (E) - (READY-COST (C) - 1))
2074 MAX (ISSUE-DELAY (E,C),
2075 READY-COST (E) - (READY-COST (C) - 1),
2076 READY-COST (E) - FILL-TIME)
2078 The `<name>_unit_blockage' function is computed by determining
2079 this value for each candidate insn. As these values are
2080 computed, we also compute the upper and lower bounds for
2081 BLOCKAGE (E,*). These are combined to form the function
2082 `<name>_unit_blockage_range'. Finally, the maximum blockage
2083 cost, MAX (BLOCKAGE (*,*)), is computed. */
2085 for (op
= unit
->ops
; op
; op
= op
->next
)
2088 rtx blockage
= op
->issue_exp
;
2090 rtx blockage
= operate_exp (POS_MINUS_OP
, readycost
,
2091 make_numeric_value (1));
2093 if (unit
->simultaneity
!= 0)
2095 rtx filltime
= make_numeric_value ((unit
->simultaneity
- 1)
2096 * unit
->issue_delay
.min
);
2097 blockage
= operate_exp (MIN_OP
, blockage
, filltime
);
2100 blockage
= operate_exp (POS_MINUS_OP
,
2101 make_numeric_value (op
->ready
),
2104 blockage
= operate_exp (MAX_OP
, blockage
, op
->issue_exp
);
2106 blockage
= simplify_knowing (blockage
, unit
->condexp
);
2108 /* Add this op's contribution to MAX (BLOCKAGE (E,*)) and
2109 MIN (BLOCKAGE (E,*)). */
2110 if (max_blockage
== 0)
2111 max_blockage
= min_blockage
= blockage
;
2115 = simplify_knowing (operate_exp (MAX_OP
, max_blockage
,
2119 = simplify_knowing (operate_exp (MIN_OP
, min_blockage
,
2124 /* Make an attribute for use in the blockage function. */
2125 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_block_") + MAX_DIGITS
,
2126 "*%s_block_%d", unit
->name
, op
->num
);
2127 make_internal_attr (str
, blockage
, 1);
2130 /* Record MAX (BLOCKAGE (*,*)). */
2131 unit
->max_blockage
= max_attr_value (max_blockage
);
2133 /* See if the upper and lower bounds of BLOCKAGE (E,*) are the
2134 same. If so, the blockage function carries no additional
2135 information and is not written. */
2136 newexp
= operate_exp (EQ_OP
, max_blockage
, min_blockage
);
2137 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2138 unit
->needs_blockage_function
2139 = (GET_CODE (newexp
) != CONST_STRING
2140 || atoi (XSTR (newexp
, 0)) != 1);
2142 /* If the all values of BLOCKAGE (E,C) have the same value,
2143 neither blockage function is written. */
2144 unit
->needs_range_function
2145 = (unit
->needs_blockage_function
2146 || GET_CODE (max_blockage
) != CONST_STRING
);
2148 if (unit
->needs_range_function
)
2150 /* Compute the blockage range function and make an attribute
2151 for writing it's value. */
2152 newexp
= operate_exp (RANGE_OP
, min_blockage
, max_blockage
);
2153 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2155 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_blockage_range"),
2156 "*%s_unit_blockage_range", unit
->name
);
2157 make_internal_attr (str
, newexp
, 4);
2160 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_ready_cost"),
2161 "*%s_unit_ready_cost", unit
->name
);
2164 str
= "*result_ready_cost";
2166 /* Make an attribute for the ready_cost function. Simplifying
2167 further with simplify_by_exploding doesn't win. */
2168 make_internal_attr (str
, readycost
, 0);
2171 /* For each unit that requires a conflict cost function, make an attribute
2172 that maps insns to the operation number. */
2173 for (unit
= units
; unit
; unit
= unit
->next
)
2177 if (! unit
->needs_conflict_function
2178 && ! unit
->needs_blockage_function
)
2181 caseexp
= rtx_alloc (COND
);
2182 XVEC (caseexp
, 0) = rtvec_alloc ((unit
->num_opclasses
- 1) * 2);
2184 for (op
= unit
->ops
; op
; op
= op
->next
)
2186 /* Make our adjustment to the COND being computed. If we are the
2187 last operation class, place our values into the default of the
2189 if (op
->num
== unit
->num_opclasses
- 1)
2191 XEXP (caseexp
, 1) = make_numeric_value (op
->num
);
2195 XVECEXP (caseexp
, 0, op
->num
* 2) = op
->condexp
;
2196 XVECEXP (caseexp
, 0, op
->num
* 2 + 1)
2197 = make_numeric_value (op
->num
);
2201 /* Simplifying caseexp with simplify_by_exploding doesn't win. */
2202 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cases"),
2203 "*%s_cases", unit
->name
);
2204 make_internal_attr (str
, caseexp
, 1);
2208 /* Simplify EXP given KNOWN_TRUE. */
2211 simplify_knowing (exp
, known_true
)
2212 rtx exp
, known_true
;
2214 if (GET_CODE (exp
) != CONST_STRING
)
2216 exp
= attr_rtx (IF_THEN_ELSE
, known_true
, exp
,
2217 make_numeric_value (max_attr_value (exp
)));
2218 exp
= simplify_by_exploding (exp
);
2223 /* Translate the CONST_STRING expressions in X to change the encoding of
2224 value. On input, the value is a bitmask with a one bit for each unit
2225 used; on output, the value is the unit number (zero based) if one
2226 and only one unit is used or the one's compliment of the bitmask. */
2229 encode_units_mask (x
)
2234 register enum rtx_code code
;
2237 code
= GET_CODE (x
);
2242 i
= atoi (XSTR (x
, 0));
2244 abort (); /* The sign bit encodes a one's compliment mask. */
2245 else if (i
!= 0 && i
== (i
& -i
))
2246 /* Only one bit is set, so yield that unit number. */
2247 for (j
= 0; (i
>>= 1) != 0; j
++)
2251 return attr_rtx (CONST_STRING
, attr_printf (MAX_DIGITS
, "%d", j
));
2268 /* Compare the elements. If any pair of corresponding elements
2269 fail to match, return 0 for the whole things. */
2271 fmt
= GET_RTX_FORMAT (code
);
2272 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2278 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2279 XVECEXP (x
, i
, j
) = encode_units_mask (XVECEXP (x
, i
, j
));
2283 XEXP (x
, i
) = encode_units_mask (XEXP (x
, i
));
2290 /* Once all attributes and insns have been read and checked, we construct for
2291 each attribute value a list of all the insns that have that value for
2296 struct attr_desc
*attr
;
2298 struct attr_value
*av
;
2299 struct insn_ent
*ie
;
2300 struct insn_def
*id
;
2304 /* Don't fill constant attributes. The value is independent of
2305 any particular insn. */
2309 for (id
= defs
; id
; id
= id
->next
)
2311 /* If no value is specified for this insn for this attribute, use the
2314 if (XVEC (id
->def
, id
->vec_idx
))
2315 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
2316 if (! strcmp (XSTR (XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 0), 0),
2318 value
= XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 1);
2321 av
= attr
->default_val
;
2323 av
= get_attr_value (value
, attr
, id
->insn_code
);
2325 ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2326 ie
->insn_code
= id
->insn_code
;
2327 ie
->insn_index
= id
->insn_code
;
2328 insert_insn_ent (av
, ie
);
2332 /* Given an expression EXP, see if it is a COND or IF_THEN_ELSE that has a
2333 test that checks relative positions of insns (uses MATCH_DUP or PC).
2334 If so, replace it with what is obtained by passing the expression to
2335 ADDRESS_FN. If not but it is a COND or IF_THEN_ELSE, call this routine
2336 recursively on each value (including the default value). Otherwise,
2337 return the value returned by NO_ADDRESS_FN applied to EXP. */
2340 substitute_address (exp
, no_address_fn
, address_fn
)
2342 rtx (*no_address_fn
) ();
2343 rtx (*address_fn
) ();
2348 if (GET_CODE (exp
) == COND
)
2350 /* See if any tests use addresses. */
2352 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2353 walk_attr_value (XVECEXP (exp
, 0, i
));
2356 return (*address_fn
) (exp
);
2358 /* Make a new copy of this COND, replacing each element. */
2359 newexp
= rtx_alloc (COND
);
2360 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (exp
, 0));
2361 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2363 XVECEXP (newexp
, 0, i
) = XVECEXP (exp
, 0, i
);
2364 XVECEXP (newexp
, 0, i
+ 1)
2365 = substitute_address (XVECEXP (exp
, 0, i
+ 1),
2366 no_address_fn
, address_fn
);
2369 XEXP (newexp
, 1) = substitute_address (XEXP (exp
, 1),
2370 no_address_fn
, address_fn
);
2375 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
2378 walk_attr_value (XEXP (exp
, 0));
2380 return (*address_fn
) (exp
);
2382 return attr_rtx (IF_THEN_ELSE
,
2383 substitute_address (XEXP (exp
, 0),
2384 no_address_fn
, address_fn
),
2385 substitute_address (XEXP (exp
, 1),
2386 no_address_fn
, address_fn
),
2387 substitute_address (XEXP (exp
, 2),
2388 no_address_fn
, address_fn
));
2391 return (*no_address_fn
) (exp
);
2394 /* Make new attributes from the `length' attribute. The following are made,
2395 each corresponding to a function called from `shorten_branches' or
2398 *insn_default_length This is the length of the insn to be returned
2399 by `get_attr_length' before `shorten_branches'
2400 has been called. In each case where the length
2401 depends on relative addresses, the largest
2402 possible is used. This routine is also used
2403 to compute the initial size of the insn.
2405 *insn_variable_length_p This returns 1 if the insn's length depends
2406 on relative addresses, zero otherwise.
2408 *insn_current_length This is only called when it is known that the
2409 insn has a variable length and returns the
2410 current length, based on relative addresses.
2414 make_length_attrs ()
2416 static char *new_names
[] = {"*insn_default_length",
2417 "*insn_variable_length_p",
2418 "*insn_current_length"};
2419 static rtx (*no_address_fn
[]) PROTO((rtx
)) = {identity_fn
, zero_fn
, zero_fn
};
2420 static rtx (*address_fn
[]) PROTO((rtx
)) = {max_fn
, one_fn
, identity_fn
};
2422 struct attr_desc
*length_attr
, *new_attr
;
2423 struct attr_value
*av
, *new_av
;
2424 struct insn_ent
*ie
, *new_ie
;
2426 /* See if length attribute is defined. If so, it must be numeric. Make
2427 it special so we don't output anything for it. */
2428 length_attr
= find_attr ("length", 0);
2429 if (length_attr
== 0)
2432 if (! length_attr
->is_numeric
)
2433 fatal ("length attribute must be numeric.");
2435 length_attr
->is_const
= 0;
2436 length_attr
->is_special
= 1;
2438 /* Make each new attribute, in turn. */
2439 for (i
= 0; i
< sizeof new_names
/ sizeof new_names
[0]; i
++)
2441 make_internal_attr (new_names
[i
],
2442 substitute_address (length_attr
->default_val
->value
,
2443 no_address_fn
[i
], address_fn
[i
]),
2445 new_attr
= find_attr (new_names
[i
], 0);
2446 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
2447 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2449 new_av
= get_attr_value (substitute_address (av
->value
,
2452 new_attr
, ie
->insn_code
);
2453 new_ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2454 new_ie
->insn_code
= ie
->insn_code
;
2455 new_ie
->insn_index
= ie
->insn_index
;
2456 insert_insn_ent (new_av
, new_ie
);
2461 /* Utility functions called from above routine. */
2474 return make_numeric_value (0);
2481 return make_numeric_value (1);
2488 return make_numeric_value (max_attr_value (exp
));
2491 /* Take a COND expression and see if any of the conditions in it can be
2492 simplified. If any are known true or known false for the particular insn
2493 code, the COND can be further simplified.
2495 Also call ourselves on any COND operations that are values of this COND.
2497 We do not modify EXP; rather, we make and return a new rtx. */
2500 simplify_cond (exp
, insn_code
, insn_index
)
2502 int insn_code
, insn_index
;
2505 /* We store the desired contents here,
2506 then build a new expression if they don't match EXP. */
2507 rtx defval
= XEXP (exp
, 1);
2508 rtx new_defval
= XEXP (exp
, 1);
2509 int len
= XVECLEN (exp
, 0);
2510 rtunion
*tests
= (rtunion
*) alloca (len
* sizeof (rtunion
));
2514 /* This lets us free all storage allocated below, if appropriate. */
2515 first_spacer
= (char *) obstack_finish (rtl_obstack
);
2517 bcopy ((char *) XVEC (exp
, 0)->elem
, (char *) tests
, len
* sizeof (rtunion
));
2519 /* See if default value needs simplification. */
2520 if (GET_CODE (defval
) == COND
)
2521 new_defval
= simplify_cond (defval
, insn_code
, insn_index
);
2523 /* Simplify the subexpressions, and see what tests we can get rid of. */
2525 for (i
= 0; i
< len
; i
+= 2)
2527 rtx newtest
, newval
;
2529 /* Simplify this test. */
2530 newtest
= SIMPLIFY_TEST_EXP (tests
[i
].rtx
, insn_code
, insn_index
);
2531 tests
[i
].rtx
= newtest
;
2533 newval
= tests
[i
+ 1].rtx
;
2534 /* See if this value may need simplification. */
2535 if (GET_CODE (newval
) == COND
)
2536 newval
= simplify_cond (newval
, insn_code
, insn_index
);
2538 /* Look for ways to delete or combine this test. */
2539 if (newtest
== true_rtx
)
2541 /* If test is true, make this value the default
2542 and discard this + any following tests. */
2544 defval
= tests
[i
+ 1].rtx
;
2545 new_defval
= newval
;
2548 else if (newtest
== false_rtx
)
2550 /* If test is false, discard it and its value. */
2551 for (j
= i
; j
< len
- 2; j
++)
2552 tests
[j
].rtx
= tests
[j
+ 2].rtx
;
2556 else if (i
> 0 && attr_equal_p (newval
, tests
[i
- 1].rtx
))
2558 /* If this value and the value for the prev test are the same,
2562 = insert_right_side (IOR
, tests
[i
- 2].rtx
, newtest
,
2563 insn_code
, insn_index
);
2565 /* Delete this test/value. */
2566 for (j
= i
; j
< len
- 2; j
++)
2567 tests
[j
].rtx
= tests
[j
+ 2].rtx
;
2572 tests
[i
+ 1].rtx
= newval
;
2575 /* If the last test in a COND has the same value
2576 as the default value, that test isn't needed. */
2578 while (len
> 0 && attr_equal_p (tests
[len
- 1].rtx
, new_defval
))
2581 /* See if we changed anything. */
2582 if (len
!= XVECLEN (exp
, 0) || new_defval
!= XEXP (exp
, 1))
2585 for (i
= 0; i
< len
; i
++)
2586 if (! attr_equal_p (tests
[i
].rtx
, XVECEXP (exp
, 0, i
)))
2594 obstack_free (rtl_obstack
, first_spacer
);
2595 if (GET_CODE (defval
) == COND
)
2596 return simplify_cond (defval
, insn_code
, insn_index
);
2601 obstack_free (rtl_obstack
, first_spacer
);
2606 rtx newexp
= rtx_alloc (COND
);
2608 XVEC (newexp
, 0) = rtvec_alloc (len
);
2609 bcopy ((char *) tests
, (char *) XVEC (newexp
, 0)->elem
,
2610 len
* sizeof (rtunion
));
2611 XEXP (newexp
, 1) = new_defval
;
2616 /* Remove an insn entry from an attribute value. */
2619 remove_insn_ent (av
, ie
)
2620 struct attr_value
*av
;
2621 struct insn_ent
*ie
;
2623 struct insn_ent
*previe
;
2625 if (av
->first_insn
== ie
)
2626 av
->first_insn
= ie
->next
;
2629 for (previe
= av
->first_insn
; previe
->next
!= ie
; previe
= previe
->next
)
2631 previe
->next
= ie
->next
;
2635 if (ie
->insn_code
== -1)
2636 av
->has_asm_insn
= 0;
2641 /* Insert an insn entry in an attribute value list. */
2644 insert_insn_ent (av
, ie
)
2645 struct attr_value
*av
;
2646 struct insn_ent
*ie
;
2648 ie
->next
= av
->first_insn
;
2649 av
->first_insn
= ie
;
2651 if (ie
->insn_code
== -1)
2652 av
->has_asm_insn
= 1;
2657 /* This is a utility routine to take an expression that is a tree of either
2658 AND or IOR expressions and insert a new term. The new term will be
2659 inserted at the right side of the first node whose code does not match
2660 the root. A new node will be created with the root's code. Its left
2661 side will be the old right side and its right side will be the new
2664 If the `term' is itself a tree, all its leaves will be inserted. */
2667 insert_right_side (code
, exp
, term
, insn_code
, insn_index
)
2671 int insn_code
, insn_index
;
2675 /* Avoid consing in some special cases. */
2676 if (code
== AND
&& term
== true_rtx
)
2678 if (code
== AND
&& term
== false_rtx
)
2680 if (code
== AND
&& exp
== true_rtx
)
2682 if (code
== AND
&& exp
== false_rtx
)
2684 if (code
== IOR
&& term
== true_rtx
)
2686 if (code
== IOR
&& term
== false_rtx
)
2688 if (code
== IOR
&& exp
== true_rtx
)
2690 if (code
== IOR
&& exp
== false_rtx
)
2692 if (attr_equal_p (exp
, term
))
2695 if (GET_CODE (term
) == code
)
2697 exp
= insert_right_side (code
, exp
, XEXP (term
, 0),
2698 insn_code
, insn_index
);
2699 exp
= insert_right_side (code
, exp
, XEXP (term
, 1),
2700 insn_code
, insn_index
);
2705 if (GET_CODE (exp
) == code
)
2707 rtx
new = insert_right_side (code
, XEXP (exp
, 1),
2708 term
, insn_code
, insn_index
);
2709 if (new != XEXP (exp
, 1))
2710 /* Make a copy of this expression and call recursively. */
2711 newexp
= attr_rtx (code
, XEXP (exp
, 0), new);
2717 /* Insert the new term. */
2718 newexp
= attr_rtx (code
, exp
, term
);
2721 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2724 /* If we have an expression which AND's a bunch of
2725 (not (eq_attrq "alternative" "n"))
2726 terms, we may have covered all or all but one of the possible alternatives.
2727 If so, we can optimize. Similarly for IOR's of EQ_ATTR.
2729 This routine is passed an expression and either AND or IOR. It returns a
2730 bitmask indicating which alternatives are mentioned within EXP. */
2733 compute_alternative_mask (exp
, code
)
2738 if (GET_CODE (exp
) == code
)
2739 return compute_alternative_mask (XEXP (exp
, 0), code
)
2740 | compute_alternative_mask (XEXP (exp
, 1), code
);
2742 else if (code
== AND
&& GET_CODE (exp
) == NOT
2743 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2744 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
2745 string
= XSTR (XEXP (exp
, 0), 1);
2747 else if (code
== IOR
&& GET_CODE (exp
) == EQ_ATTR
2748 && XSTR (exp
, 0) == alternative_name
)
2749 string
= XSTR (exp
, 1);
2755 return 1 << (string
[0] - '0');
2756 return 1 << atoi (string
);
2759 /* Given I, a single-bit mask, return RTX to compare the `alternative'
2760 attribute with the value represented by that bit. */
2763 make_alternative_compare (mask
)
2770 for (i
= 0; (mask
& (1 << i
)) == 0; i
++)
2773 newexp
= attr_rtx (EQ_ATTR
, alternative_name
, attr_numeral (i
));
2774 RTX_UNCHANGING_P (newexp
) = 1;
2779 /* If we are processing an (eq_attr "attr" "value") test, we find the value
2780 of "attr" for this insn code. From that value, we can compute a test
2781 showing when the EQ_ATTR will be true. This routine performs that
2782 computation. If a test condition involves an address, we leave the EQ_ATTR
2783 intact because addresses are only valid for the `length' attribute.
2785 EXP is the EQ_ATTR expression and VALUE is the value of that attribute
2786 for the insn corresponding to INSN_CODE and INSN_INDEX. */
2789 evaluate_eq_attr (exp
, value
, insn_code
, insn_index
)
2792 int insn_code
, insn_index
;
2799 if (GET_CODE (value
) == CONST_STRING
)
2801 if (! strcmp (XSTR (value
, 0), XSTR (exp
, 1)))
2806 else if (GET_CODE (value
) == SYMBOL_REF
)
2810 if (GET_CODE (exp
) != EQ_ATTR
)
2813 string
= (char *) alloca (2 + strlen (XSTR (exp
, 0))
2814 + strlen (XSTR (exp
, 1)));
2815 strcpy (string
, XSTR (exp
, 0));
2816 strcat (string
, "_");
2817 strcat (string
, XSTR (exp
, 1));
2818 for (p
= string
; *p
; p
++)
2819 if (*p
>= 'a' && *p
<= 'z')
2822 newexp
= attr_rtx (EQ
, value
,
2823 attr_rtx (SYMBOL_REF
,
2824 attr_string(string
, strlen(string
))));
2826 else if (GET_CODE (value
) == COND
)
2828 /* We construct an IOR of all the cases for which the requested attribute
2829 value is present. Since we start with FALSE, if it is not present,
2830 FALSE will be returned.
2832 Each case is the AND of the NOT's of the previous conditions with the
2833 current condition; in the default case the current condition is TRUE.
2835 For each possible COND value, call ourselves recursively.
2837 The extra TRUE and FALSE expressions will be eliminated by another
2838 call to the simplification routine. */
2843 if (current_alternative_string
)
2844 clear_struct_flag (value
);
2846 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
2848 rtx
this = SIMPLIFY_TEST_EXP (XVECEXP (value
, 0, i
),
2849 insn_code
, insn_index
);
2851 SIMPLIFY_ALTERNATIVE (this);
2853 right
= insert_right_side (AND
, andexp
, this,
2854 insn_code
, insn_index
);
2855 right
= insert_right_side (AND
, right
,
2856 evaluate_eq_attr (exp
,
2859 insn_code
, insn_index
),
2860 insn_code
, insn_index
);
2861 orexp
= insert_right_side (IOR
, orexp
, right
,
2862 insn_code
, insn_index
);
2864 /* Add this condition into the AND expression. */
2865 newexp
= attr_rtx (NOT
, this);
2866 andexp
= insert_right_side (AND
, andexp
, newexp
,
2867 insn_code
, insn_index
);
2870 /* Handle the default case. */
2871 right
= insert_right_side (AND
, andexp
,
2872 evaluate_eq_attr (exp
, XEXP (value
, 1),
2873 insn_code
, insn_index
),
2874 insn_code
, insn_index
);
2875 newexp
= insert_right_side (IOR
, orexp
, right
, insn_code
, insn_index
);
2880 /* If uses an address, must return original expression. But set the
2881 RTX_UNCHANGING_P bit so we don't try to simplify it again. */
2884 walk_attr_value (newexp
);
2888 /* This had `&& current_alternative_string', which seems to be wrong. */
2889 if (! RTX_UNCHANGING_P (exp
))
2890 return copy_rtx_unchanging (exp
);
2897 /* This routine is called when an AND of a term with a tree of AND's is
2898 encountered. If the term or its complement is present in the tree, it
2899 can be replaced with TRUE or FALSE, respectively.
2901 Note that (eq_attr "att" "v1") and (eq_attr "att" "v2") cannot both
2902 be true and hence are complementary.
2904 There is one special case: If we see
2905 (and (not (eq_attr "att" "v1"))
2906 (eq_attr "att" "v2"))
2907 this can be replaced by (eq_attr "att" "v2"). To do this we need to
2908 replace the term, not anything in the AND tree. So we pass a pointer to
2912 simplify_and_tree (exp
, pterm
, insn_code
, insn_index
)
2915 int insn_code
, insn_index
;
2920 int left_eliminates_term
, right_eliminates_term
;
2922 if (GET_CODE (exp
) == AND
)
2924 left
= simplify_and_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2925 right
= simplify_and_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2926 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2928 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2930 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2934 else if (GET_CODE (exp
) == IOR
)
2936 /* For the IOR case, we do the same as above, except that we can
2937 only eliminate `term' if both sides of the IOR would do so. */
2939 left
= simplify_and_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2940 left_eliminates_term
= (temp
== true_rtx
);
2943 right
= simplify_and_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2944 right_eliminates_term
= (temp
== true_rtx
);
2946 if (left_eliminates_term
&& right_eliminates_term
)
2949 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2951 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2953 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2957 /* Check for simplifications. Do some extra checking here since this
2958 routine is called so many times. */
2963 else if (GET_CODE (exp
) == NOT
&& XEXP (exp
, 0) == *pterm
)
2966 else if (GET_CODE (*pterm
) == NOT
&& exp
== XEXP (*pterm
, 0))
2969 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == EQ_ATTR
)
2971 if (XSTR (exp
, 0) != XSTR (*pterm
, 0))
2974 if (! strcmp (XSTR (exp
, 1), XSTR (*pterm
, 1)))
2980 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2981 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
2983 if (XSTR (*pterm
, 0) != XSTR (XEXP (exp
, 0), 0))
2986 if (! strcmp (XSTR (*pterm
, 1), XSTR (XEXP (exp
, 0), 1)))
2992 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2993 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
)
2995 if (XSTR (exp
, 0) != XSTR (XEXP (*pterm
, 0), 0))
2998 if (! strcmp (XSTR (exp
, 1), XSTR (XEXP (*pterm
, 0), 1)))
3004 else if (GET_CODE (exp
) == NOT
&& GET_CODE (*pterm
) == NOT
)
3006 if (attr_equal_p (XEXP (exp
, 0), XEXP (*pterm
, 0)))
3010 else if (GET_CODE (exp
) == NOT
)
3012 if (attr_equal_p (XEXP (exp
, 0), *pterm
))
3016 else if (GET_CODE (*pterm
) == NOT
)
3018 if (attr_equal_p (XEXP (*pterm
, 0), exp
))
3022 else if (attr_equal_p (exp
, *pterm
))
3028 /* Similar to `simplify_and_tree', but for IOR trees. */
3031 simplify_or_tree (exp
, pterm
, insn_code
, insn_index
)
3034 int insn_code
, insn_index
;
3039 int left_eliminates_term
, right_eliminates_term
;
3041 if (GET_CODE (exp
) == IOR
)
3043 left
= simplify_or_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
3044 right
= simplify_or_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
3045 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3047 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
3049 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3053 else if (GET_CODE (exp
) == AND
)
3055 /* For the AND case, we do the same as above, except that we can
3056 only eliminate `term' if both sides of the AND would do so. */
3058 left
= simplify_or_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
3059 left_eliminates_term
= (temp
== false_rtx
);
3062 right
= simplify_or_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
3063 right_eliminates_term
= (temp
== false_rtx
);
3065 if (left_eliminates_term
&& right_eliminates_term
)
3068 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3070 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
3072 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3076 if (attr_equal_p (exp
, *pterm
))
3079 else if (GET_CODE (exp
) == NOT
&& attr_equal_p (XEXP (exp
, 0), *pterm
))
3082 else if (GET_CODE (*pterm
) == NOT
&& attr_equal_p (XEXP (*pterm
, 0), exp
))
3085 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
3086 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
3087 && XSTR (*pterm
, 0) == XSTR (XEXP (exp
, 0), 0))
3090 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
3091 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
3092 && XSTR (exp
, 0) == XSTR (XEXP (*pterm
, 0), 0))
3098 /* Given an expression, see if it can be simplified for a particular insn
3099 code based on the values of other attributes being tested. This can
3100 eliminate nested get_attr_... calls.
3102 Note that if an endless recursion is specified in the patterns, the
3103 optimization will loop. However, it will do so in precisely the cases where
3104 an infinite recursion loop could occur during compilation. It's better that
3108 simplify_test_exp (exp
, insn_code
, insn_index
)
3110 int insn_code
, insn_index
;
3113 struct attr_desc
*attr
;
3114 struct attr_value
*av
;
3115 struct insn_ent
*ie
;
3118 char *spacer
= (char *) obstack_finish (rtl_obstack
);
3120 /* Don't re-simplify something we already simplified. */
3121 if (RTX_UNCHANGING_P (exp
) || MEM_IN_STRUCT_P (exp
))
3124 switch (GET_CODE (exp
))
3127 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3128 SIMPLIFY_ALTERNATIVE (left
);
3129 if (left
== false_rtx
)
3131 obstack_free (rtl_obstack
, spacer
);
3134 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3135 SIMPLIFY_ALTERNATIVE (right
);
3136 if (left
== false_rtx
)
3138 obstack_free (rtl_obstack
, spacer
);
3142 /* If either side is an IOR and we have (eq_attr "alternative" ..")
3143 present on both sides, apply the distributive law since this will
3144 yield simplifications. */
3145 if ((GET_CODE (left
) == IOR
|| GET_CODE (right
) == IOR
)
3146 && compute_alternative_mask (left
, IOR
)
3147 && compute_alternative_mask (right
, IOR
))
3149 if (GET_CODE (left
) == IOR
)
3156 newexp
= attr_rtx (IOR
,
3157 attr_rtx (AND
, left
, XEXP (right
, 0)),
3158 attr_rtx (AND
, left
, XEXP (right
, 1)));
3160 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3163 /* Try with the term on both sides. */
3164 right
= simplify_and_tree (right
, &left
, insn_code
, insn_index
);
3165 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3166 left
= simplify_and_tree (left
, &right
, insn_code
, insn_index
);
3168 if (left
== false_rtx
|| right
== false_rtx
)
3170 obstack_free (rtl_obstack
, spacer
);
3173 else if (left
== true_rtx
)
3177 else if (right
== true_rtx
)
3181 /* See if all or all but one of the insn's alternatives are specified
3182 in this tree. Optimize if so. */
3184 else if (insn_code
>= 0
3185 && (GET_CODE (left
) == AND
3186 || (GET_CODE (left
) == NOT
3187 && GET_CODE (XEXP (left
, 0)) == EQ_ATTR
3188 && XSTR (XEXP (left
, 0), 0) == alternative_name
)
3189 || GET_CODE (right
) == AND
3190 || (GET_CODE (right
) == NOT
3191 && GET_CODE (XEXP (right
, 0)) == EQ_ATTR
3192 && XSTR (XEXP (right
, 0), 0) == alternative_name
)))
3194 i
= compute_alternative_mask (exp
, AND
);
3195 if (i
& ~insn_alternatives
[insn_code
])
3196 fatal ("Invalid alternative specified for pattern number %d",
3199 /* If all alternatives are excluded, this is false. */
3200 i
^= insn_alternatives
[insn_code
];
3203 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3205 /* If just one excluded, AND a comparison with that one to the
3206 front of the tree. The others will be eliminated by
3207 optimization. We do not want to do this if the insn has one
3208 alternative and we have tested none of them! */
3209 left
= make_alternative_compare (i
);
3210 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3211 newexp
= attr_rtx (AND
, left
, right
);
3213 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3217 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3219 newexp
= attr_rtx (AND
, left
, right
);
3220 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3225 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3226 SIMPLIFY_ALTERNATIVE (left
);
3227 if (left
== true_rtx
)
3229 obstack_free (rtl_obstack
, spacer
);
3232 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3233 SIMPLIFY_ALTERNATIVE (right
);
3234 if (right
== true_rtx
)
3236 obstack_free (rtl_obstack
, spacer
);
3240 right
= simplify_or_tree (right
, &left
, insn_code
, insn_index
);
3241 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3242 left
= simplify_or_tree (left
, &right
, insn_code
, insn_index
);
3244 if (right
== true_rtx
|| left
== true_rtx
)
3246 obstack_free (rtl_obstack
, spacer
);
3249 else if (left
== false_rtx
)
3253 else if (right
== false_rtx
)
3258 /* Test for simple cases where the distributive law is useful. I.e.,
3259 convert (ior (and (x) (y))
3265 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
3266 && attr_equal_p (XEXP (left
, 0), XEXP (right
, 0)))
3268 newexp
= attr_rtx (IOR
, XEXP (left
, 1), XEXP (right
, 1));
3270 left
= XEXP (left
, 0);
3272 newexp
= attr_rtx (AND
, left
, right
);
3273 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3276 /* See if all or all but one of the insn's alternatives are specified
3277 in this tree. Optimize if so. */
3279 else if (insn_code
>= 0
3280 && (GET_CODE (left
) == IOR
3281 || (GET_CODE (left
) == EQ_ATTR
3282 && XSTR (left
, 0) == alternative_name
)
3283 || GET_CODE (right
) == IOR
3284 || (GET_CODE (right
) == EQ_ATTR
3285 && XSTR (right
, 0) == alternative_name
)))
3287 i
= compute_alternative_mask (exp
, IOR
);
3288 if (i
& ~insn_alternatives
[insn_code
])
3289 fatal ("Invalid alternative specified for pattern number %d",
3292 /* If all alternatives are included, this is true. */
3293 i
^= insn_alternatives
[insn_code
];
3296 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3298 /* If just one excluded, IOR a comparison with that one to the
3299 front of the tree. The others will be eliminated by
3300 optimization. We do not want to do this if the insn has one
3301 alternative and we have tested none of them! */
3302 left
= make_alternative_compare (i
);
3303 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3304 newexp
= attr_rtx (IOR
, attr_rtx (NOT
, left
), right
);
3306 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3310 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3312 newexp
= attr_rtx (IOR
, left
, right
);
3313 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3318 if (GET_CODE (XEXP (exp
, 0)) == NOT
)
3320 left
= SIMPLIFY_TEST_EXP (XEXP (XEXP (exp
, 0), 0),
3321 insn_code
, insn_index
);
3322 SIMPLIFY_ALTERNATIVE (left
);
3326 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3327 SIMPLIFY_ALTERNATIVE (left
);
3328 if (GET_CODE (left
) == NOT
)
3329 return XEXP (left
, 0);
3331 if (left
== false_rtx
)
3333 obstack_free (rtl_obstack
, spacer
);
3336 else if (left
== true_rtx
)
3338 obstack_free (rtl_obstack
, spacer
);
3342 /* Try to apply De`Morgan's laws. */
3343 else if (GET_CODE (left
) == IOR
)
3345 newexp
= attr_rtx (AND
,
3346 attr_rtx (NOT
, XEXP (left
, 0)),
3347 attr_rtx (NOT
, XEXP (left
, 1)));
3349 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3351 else if (GET_CODE (left
) == AND
)
3353 newexp
= attr_rtx (IOR
,
3354 attr_rtx (NOT
, XEXP (left
, 0)),
3355 attr_rtx (NOT
, XEXP (left
, 1)));
3357 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3359 else if (left
!= XEXP (exp
, 0))
3361 newexp
= attr_rtx (NOT
, left
);
3366 if (current_alternative_string
&& XSTR (exp
, 0) == alternative_name
)
3367 return (XSTR (exp
, 1) == current_alternative_string
3368 ? true_rtx
: false_rtx
);
3370 /* Look at the value for this insn code in the specified attribute.
3371 We normally can replace this comparison with the condition that
3372 would give this insn the values being tested for. */
3373 if (XSTR (exp
, 0) != alternative_name
3374 && (attr
= find_attr (XSTR (exp
, 0), 0)) != NULL
)
3375 for (av
= attr
->first_value
; av
; av
= av
->next
)
3376 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3377 if (ie
->insn_code
== insn_code
)
3378 return evaluate_eq_attr (exp
, av
->value
, insn_code
, insn_index
);
3385 /* We have already simplified this expression. Simplifying it again
3386 won't buy anything unless we weren't given a valid insn code
3387 to process (i.e., we are canonicalizing something.). */
3388 if (insn_code
!= -2 /* Seems wrong: && current_alternative_string. */
3389 && ! RTX_UNCHANGING_P (newexp
))
3390 return copy_rtx_unchanging (newexp
);
3395 /* Optimize the attribute lists by seeing if we can determine conditional
3396 values from the known values of other attributes. This will save subroutine
3397 calls during the compilation. */
3402 struct attr_desc
*attr
;
3403 struct attr_value
*av
;
3404 struct insn_ent
*ie
;
3406 int something_changed
= 1;
3408 struct attr_value_list
{ struct attr_value
*av
;
3409 struct insn_ent
*ie
;
3410 struct attr_desc
* attr
;
3411 struct attr_value_list
*next
; };
3412 struct attr_value_list
**insn_code_values
;
3413 struct attr_value_list
*ivbuf
;
3414 struct attr_value_list
*iv
;
3416 /* For each insn code, make a list of all the insn_ent's for it,
3417 for all values for all attributes. */
3419 if (num_insn_ents
== 0)
3422 /* Make 2 extra elements, for "code" values -2 and -1. */
3424 = (struct attr_value_list
**) alloca ((insn_code_number
+ 2)
3425 * sizeof (struct attr_value_list
*));
3426 bzero ((char *) insn_code_values
,
3427 (insn_code_number
+ 2) * sizeof (struct attr_value_list
*));
3429 /* Offset the table address so we can index by -2 or -1. */
3430 insn_code_values
+= 2;
3432 /* Allocate the attr_value_list structures using xmalloc rather than
3433 alloca, because using alloca can overflow the maximum permitted
3434 stack limit on SPARC Lynx. */
3435 iv
= ivbuf
= ((struct attr_value_list
*)
3436 xmalloc (num_insn_ents
* sizeof (struct attr_value_list
)));
3438 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
3439 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
3440 for (av
= attr
->first_value
; av
; av
= av
->next
)
3441 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3446 iv
->next
= insn_code_values
[ie
->insn_code
];
3447 insn_code_values
[ie
->insn_code
] = iv
;
3451 /* Sanity check on num_insn_ents. */
3452 if (iv
!= ivbuf
+ num_insn_ents
)
3455 /* Process one insn code at a time. */
3456 for (i
= -2; i
< insn_code_number
; i
++)
3458 /* Clear the MEM_IN_STRUCT_P flag everywhere relevant.
3459 We use it to mean "already simplified for this insn". */
3460 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3461 clear_struct_flag (iv
->av
->value
);
3463 /* Loop until nothing changes for one iteration. */
3464 something_changed
= 1;
3465 while (something_changed
)
3467 something_changed
= 0;
3468 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3470 struct obstack
*old
= rtl_obstack
;
3471 char *spacer
= (char *) obstack_finish (temp_obstack
);
3476 if (GET_CODE (av
->value
) != COND
)
3479 rtl_obstack
= temp_obstack
;
3480 #if 0 /* This was intended as a speed up, but it was slower. */
3481 if (insn_n_alternatives
[ie
->insn_code
] > 6
3482 && count_sub_rtxs (av
->value
, 200) >= 200)
3483 newexp
= simplify_by_alternatives (av
->value
, ie
->insn_code
,
3487 newexp
= simplify_cond (av
->value
, ie
->insn_code
,
3491 if (newexp
!= av
->value
)
3493 newexp
= attr_copy_rtx (newexp
);
3494 remove_insn_ent (av
, ie
);
3495 av
= get_attr_value (newexp
, attr
, ie
->insn_code
);
3497 insert_insn_ent (av
, ie
);
3498 something_changed
= 1;
3500 obstack_free (temp_obstack
, spacer
);
3510 simplify_by_alternatives (exp
, insn_code
, insn_index
)
3512 int insn_code
, insn_index
;
3515 int len
= insn_n_alternatives
[insn_code
];
3516 rtx newexp
= rtx_alloc (COND
);
3520 XVEC (newexp
, 0) = rtvec_alloc (len
* 2);
3522 /* It will not matter what value we use as the default value
3523 of the new COND, since that default will never be used.
3524 Choose something of the right type. */
3525 for (ultimate
= exp
; GET_CODE (ultimate
) == COND
;)
3526 ultimate
= XEXP (ultimate
, 1);
3527 XEXP (newexp
, 1) = ultimate
;
3529 for (i
= 0; i
< insn_n_alternatives
[insn_code
]; i
++)
3531 current_alternative_string
= attr_numeral (i
);
3532 XVECEXP (newexp
, 0, i
* 2) = make_alternative_compare (1 << i
);
3533 XVECEXP (newexp
, 0, i
* 2 + 1)
3534 = simplify_cond (exp
, insn_code
, insn_index
);
3537 current_alternative_string
= 0;
3538 return simplify_cond (newexp
, insn_code
, insn_index
);
3542 /* If EXP is a suitable expression, reorganize it by constructing an
3543 equivalent expression that is a COND with the tests being all combinations
3544 of attribute values and the values being simple constants. */
3547 simplify_by_exploding (exp
)
3550 rtx list
= 0, link
, condexp
, defval
;
3551 struct dimension
*space
;
3552 rtx
*condtest
, *condval
;
3553 int i
, j
, total
, ndim
= 0;
3554 int most_tests
, num_marks
, new_marks
;
3556 /* Locate all the EQ_ATTR expressions. */
3557 if (! find_and_mark_used_attributes (exp
, &list
, &ndim
) || ndim
== 0)
3559 unmark_used_attributes (list
, 0, 0);
3563 /* Create an attribute space from the list of used attributes. For each
3564 dimension in the attribute space, record the attribute, list of values
3565 used, and number of values used. Add members to the list of values to
3566 cover the domain of the attribute. This makes the expanded COND form
3567 order independent. */
3569 space
= (struct dimension
*) alloca (ndim
* sizeof (struct dimension
));
3572 for (ndim
= 0; list
; ndim
++)
3574 /* Pull the first attribute value from the list and record that
3575 attribute as another dimension in the attribute space. */
3576 char *name
= XSTR (XEXP (list
, 0), 0);
3579 if ((space
[ndim
].attr
= find_attr (name
, 0)) == 0
3580 || space
[ndim
].attr
->is_numeric
)
3582 unmark_used_attributes (list
, space
, ndim
);
3586 /* Add all remaining attribute values that refer to this attribute. */
3587 space
[ndim
].num_values
= 0;
3588 space
[ndim
].values
= 0;
3590 for (link
= list
; link
; link
= *prev
)
3591 if (! strcmp (XSTR (XEXP (link
, 0), 0), name
))
3593 space
[ndim
].num_values
++;
3594 *prev
= XEXP (link
, 1);
3595 XEXP (link
, 1) = space
[ndim
].values
;
3596 space
[ndim
].values
= link
;
3599 prev
= &XEXP (link
, 1);
3601 /* Add sufficient members to the list of values to make the list
3602 mutually exclusive and record the total size of the attribute
3604 total
*= add_values_to_cover (&space
[ndim
]);
3607 /* Sort the attribute space so that the attributes go from non-constant
3608 to constant and from most values to least values. */
3609 for (i
= 0; i
< ndim
; i
++)
3610 for (j
= ndim
- 1; j
> i
; j
--)
3611 if ((space
[j
-1].attr
->is_const
&& !space
[j
].attr
->is_const
)
3612 || space
[j
-1].num_values
< space
[j
].num_values
)
3614 struct dimension tmp
;
3616 space
[j
] = space
[j
-1];
3620 /* Establish the initial current value. */
3621 for (i
= 0; i
< ndim
; i
++)
3622 space
[i
].current_value
= space
[i
].values
;
3624 condtest
= (rtx
*) alloca (total
* sizeof (rtx
));
3625 condval
= (rtx
*) alloca (total
* sizeof (rtx
));
3627 /* Expand the tests and values by iterating over all values in the
3631 condtest
[i
] = test_for_current_value (space
, ndim
);
3632 condval
[i
] = simplify_with_current_value (exp
, space
, ndim
);
3633 if (! increment_current_value (space
, ndim
))
3639 /* We are now finished with the original expression. */
3640 unmark_used_attributes (0, space
, ndim
);
3642 /* Find the most used constant value and make that the default. */
3644 for (i
= num_marks
= 0; i
< total
; i
++)
3645 if (GET_CODE (condval
[i
]) == CONST_STRING
3646 && ! MEM_VOLATILE_P (condval
[i
]))
3648 /* Mark the unmarked constant value and count how many are marked. */
3649 MEM_VOLATILE_P (condval
[i
]) = 1;
3650 for (j
= new_marks
= 0; j
< total
; j
++)
3651 if (GET_CODE (condval
[j
]) == CONST_STRING
3652 && MEM_VOLATILE_P (condval
[j
]))
3654 if (new_marks
- num_marks
> most_tests
)
3656 most_tests
= new_marks
- num_marks
;
3657 defval
= condval
[i
];
3659 num_marks
= new_marks
;
3661 /* Clear all the marks. */
3662 for (i
= 0; i
< total
; i
++)
3663 MEM_VOLATILE_P (condval
[i
]) = 0;
3665 /* Give up if nothing is constant. */
3669 /* If all values are the default, use that. */
3670 if (total
== most_tests
)
3673 /* Make a COND with the most common constant value the default. (A more
3674 complex method where tests with the same value were combined didn't
3675 seem to improve things.) */
3676 condexp
= rtx_alloc (COND
);
3677 XVEC (condexp
, 0) = rtvec_alloc ((total
- most_tests
) * 2);
3678 XEXP (condexp
, 1) = defval
;
3679 for (i
= j
= 0; i
< total
; i
++)
3680 if (condval
[i
] != defval
)
3682 XVECEXP (condexp
, 0, 2 * j
) = condtest
[i
];
3683 XVECEXP (condexp
, 0, 2 * j
+ 1) = condval
[i
];
3690 /* Set the MEM_VOLATILE_P flag for all EQ_ATTR expressions in EXP and
3691 verify that EXP can be simplified to a constant term if all the EQ_ATTR
3692 tests have known value. */
3695 find_and_mark_used_attributes (exp
, terms
, nterms
)
3701 switch (GET_CODE (exp
))
3704 if (! MEM_VOLATILE_P (exp
))
3706 rtx link
= rtx_alloc (EXPR_LIST
);
3707 XEXP (link
, 0) = exp
;
3708 XEXP (link
, 1) = *terms
;
3711 MEM_VOLATILE_P (exp
) = 1;
3717 if (! find_and_mark_used_attributes (XEXP (exp
, 2), terms
, nterms
))
3721 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3724 if (! find_and_mark_used_attributes (XEXP (exp
, 0), terms
, nterms
))
3729 for (i
= 0; i
< XVECLEN (exp
, 0); i
++)
3730 if (! find_and_mark_used_attributes (XVECEXP (exp
, 0, i
), terms
, nterms
))
3732 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3741 /* Clear the MEM_VOLATILE_P flag in all EQ_ATTR expressions on LIST and
3742 in the values of the NDIM-dimensional attribute space SPACE. */
3745 unmark_used_attributes (list
, space
, ndim
)
3747 struct dimension
*space
;
3753 for (i
= 0; i
< ndim
; i
++)
3754 unmark_used_attributes (space
[i
].values
, 0, 0);
3756 for (link
= list
; link
; link
= XEXP (link
, 1))
3758 exp
= XEXP (link
, 0);
3759 if (GET_CODE (exp
) == EQ_ATTR
)
3760 MEM_VOLATILE_P (exp
) = 0;
3764 /* Update the attribute dimension DIM so that all values of the attribute
3765 are tested. Return the updated number of values. */
3768 add_values_to_cover (dim
)
3769 struct dimension
*dim
;
3771 struct attr_value
*av
;
3772 rtx exp
, link
, *prev
;
3775 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3776 if (GET_CODE (av
->value
) == CONST_STRING
)
3779 if (nalt
< dim
->num_values
)
3781 else if (nalt
== dim
->num_values
)
3783 else if (nalt
* 2 >= dim
->num_values
)
3785 /* Most all the values of the attribute are used, so add all the unused
3787 prev
= &dim
->values
;
3788 for (link
= dim
->values
; link
; link
= *prev
)
3789 prev
= &XEXP (link
, 1);
3791 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3792 if (GET_CODE (av
->value
) == CONST_STRING
)
3794 exp
= attr_eq (dim
->attr
->name
, XSTR (av
->value
, 0));
3795 if (MEM_VOLATILE_P (exp
))
3798 link
= rtx_alloc (EXPR_LIST
);
3799 XEXP (link
, 0) = exp
;
3802 prev
= &XEXP (link
, 1);
3804 dim
->num_values
= nalt
;
3808 rtx orexp
= false_rtx
;
3810 /* Very few values are used, so compute a mutually exclusive
3811 expression. (We could do this for numeric values if that becomes
3813 prev
= &dim
->values
;
3814 for (link
= dim
->values
; link
; link
= *prev
)
3816 orexp
= insert_right_side (IOR
, orexp
, XEXP (link
, 0), -2, -2);
3817 prev
= &XEXP (link
, 1);
3819 link
= rtx_alloc (EXPR_LIST
);
3820 XEXP (link
, 0) = attr_rtx (NOT
, orexp
);
3825 return dim
->num_values
;
3828 /* Increment the current value for the NDIM-dimensional attribute space SPACE
3829 and return FALSE if the increment overflowed. */
3832 increment_current_value (space
, ndim
)
3833 struct dimension
*space
;
3838 for (i
= ndim
- 1; i
>= 0; i
--)
3840 if ((space
[i
].current_value
= XEXP (space
[i
].current_value
, 1)) == 0)
3841 space
[i
].current_value
= space
[i
].values
;
3848 /* Construct an expression corresponding to the current value for the
3849 NDIM-dimensional attribute space SPACE. */
3852 test_for_current_value (space
, ndim
)
3853 struct dimension
*space
;
3859 for (i
= 0; i
< ndim
; i
++)
3860 exp
= insert_right_side (AND
, exp
, XEXP (space
[i
].current_value
, 0),
3866 /* Given the current value of the NDIM-dimensional attribute space SPACE,
3867 set the corresponding EQ_ATTR expressions to that value and reduce
3868 the expression EXP as much as possible. On input [and output], all
3869 known EQ_ATTR expressions are set to FALSE. */
3872 simplify_with_current_value (exp
, space
, ndim
)
3874 struct dimension
*space
;
3880 /* Mark each current value as TRUE. */
3881 for (i
= 0; i
< ndim
; i
++)
3883 x
= XEXP (space
[i
].current_value
, 0);
3884 if (GET_CODE (x
) == EQ_ATTR
)
3885 MEM_VOLATILE_P (x
) = 0;
3888 exp
= simplify_with_current_value_aux (exp
);
3890 /* Change each current value back to FALSE. */
3891 for (i
= 0; i
< ndim
; i
++)
3893 x
= XEXP (space
[i
].current_value
, 0);
3894 if (GET_CODE (x
) == EQ_ATTR
)
3895 MEM_VOLATILE_P (x
) = 1;
3901 /* Reduce the expression EXP based on the MEM_VOLATILE_P settings of
3902 all EQ_ATTR expressions. */
3905 simplify_with_current_value_aux (exp
)
3911 switch (GET_CODE (exp
))
3914 if (MEM_VOLATILE_P (exp
))
3922 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
3923 if (cond
== true_rtx
)
3924 return simplify_with_current_value_aux (XEXP (exp
, 1));
3925 else if (cond
== false_rtx
)
3926 return simplify_with_current_value_aux (XEXP (exp
, 2));
3928 return attr_rtx (IF_THEN_ELSE
, cond
,
3929 simplify_with_current_value_aux (XEXP (exp
, 1)),
3930 simplify_with_current_value_aux (XEXP (exp
, 2)));
3933 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
3934 if (cond
== true_rtx
)
3936 else if (cond
== false_rtx
)
3937 return simplify_with_current_value_aux (XEXP (exp
, 0));
3939 return attr_rtx (IOR
, cond
,
3940 simplify_with_current_value_aux (XEXP (exp
, 0)));
3943 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
3944 if (cond
== true_rtx
)
3945 return simplify_with_current_value_aux (XEXP (exp
, 0));
3946 else if (cond
== false_rtx
)
3949 return attr_rtx (AND
, cond
,
3950 simplify_with_current_value_aux (XEXP (exp
, 0)));
3953 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
3954 if (cond
== true_rtx
)
3956 else if (cond
== false_rtx
)
3959 return attr_rtx (NOT
, cond
);
3962 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3964 cond
= simplify_with_current_value_aux (XVECEXP (exp
, 0, i
));
3965 if (cond
== true_rtx
)
3966 return simplify_with_current_value_aux (XVECEXP (exp
, 0, i
+ 1));
3967 else if (cond
== false_rtx
)
3970 abort (); /* With all EQ_ATTR's of known value, a case should
3971 have been selected. */
3973 return simplify_with_current_value_aux (XEXP (exp
, 1));
3980 /* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions. */
3983 clear_struct_flag (x
)
3988 register enum rtx_code code
;
3991 MEM_IN_STRUCT_P (x
) = 0;
3992 if (RTX_UNCHANGING_P (x
))
3995 code
= GET_CODE (x
);
4015 /* Compare the elements. If any pair of corresponding elements
4016 fail to match, return 0 for the whole things. */
4018 fmt
= GET_RTX_FORMAT (code
);
4019 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4025 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4026 clear_struct_flag (XVECEXP (x
, i
, j
));
4030 clear_struct_flag (XEXP (x
, i
));
4036 /* Return the number of RTX objects making up the expression X.
4037 But if we count more more than MAX objects, stop counting. */
4040 count_sub_rtxs (x
, max
)
4046 register enum rtx_code code
;
4050 code
= GET_CODE (x
);
4070 /* Compare the elements. If any pair of corresponding elements
4071 fail to match, return 0 for the whole things. */
4073 fmt
= GET_RTX_FORMAT (code
);
4074 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4083 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4084 total
+= count_sub_rtxs (XVECEXP (x
, i
, j
), max
);
4088 total
+= count_sub_rtxs (XEXP (x
, i
), max
);
4096 /* Create table entries for DEFINE_ATTR. */
4102 struct attr_desc
*attr
;
4103 struct attr_value
*av
;
4107 /* Make a new attribute structure. Check for duplicate by looking at
4108 attr->default_val, since it is initialized by this routine. */
4109 attr
= find_attr (XSTR (exp
, 0), 1);
4110 if (attr
->default_val
)
4111 fatal ("Duplicate definition for `%s' attribute", attr
->name
);
4113 if (*XSTR (exp
, 1) == '\0')
4114 attr
->is_numeric
= 1;
4117 name_ptr
= XSTR (exp
, 1);
4118 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
4120 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
4121 av
->value
= attr_rtx (CONST_STRING
, p
);
4122 av
->next
= attr
->first_value
;
4123 attr
->first_value
= av
;
4124 av
->first_insn
= NULL
;
4126 av
->has_asm_insn
= 0;
4130 if (GET_CODE (XEXP (exp
, 2)) == CONST
)
4133 if (attr
->is_numeric
)
4134 fatal ("Constant attributes may not take numeric values");
4135 /* Get rid of the CONST node. It is allowed only at top-level. */
4136 XEXP (exp
, 2) = XEXP (XEXP (exp
, 2), 0);
4139 if (! strcmp (attr
->name
, "length") && ! attr
->is_numeric
)
4140 fatal ("`length' attribute must take numeric values");
4142 /* Set up the default value. */
4143 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
4144 attr
->default_val
= get_attr_value (XEXP (exp
, 2), attr
, -2);
4147 /* Given a pattern for DEFINE_PEEPHOLE or DEFINE_INSN, return the number of
4148 alternatives in the constraints. Assume all MATCH_OPERANDs have the same
4149 number of alternatives as this should be checked elsewhere. */
4152 count_alternatives (exp
)
4158 if (GET_CODE (exp
) == MATCH_OPERAND
)
4159 return n_comma_elts (XSTR (exp
, 2));
4161 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4162 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4167 n
= count_alternatives (XEXP (exp
, i
));
4174 if (XVEC (exp
, i
) != NULL
)
4175 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4177 n
= count_alternatives (XVECEXP (exp
, i
, j
));
4186 /* Returns non-zero if the given expression contains an EQ_ATTR with the
4187 `alternative' attribute. */
4190 compares_alternatives_p (exp
)
4196 if (GET_CODE (exp
) == EQ_ATTR
&& XSTR (exp
, 0) == alternative_name
)
4199 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4200 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4205 if (compares_alternatives_p (XEXP (exp
, i
)))
4210 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4211 if (compares_alternatives_p (XVECEXP (exp
, i
, j
)))
4219 /* Returns non-zero is INNER is contained in EXP. */
4222 contained_in_p (inner
, exp
)
4229 if (rtx_equal_p (inner
, exp
))
4232 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4233 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4238 if (contained_in_p (inner
, XEXP (exp
, i
)))
4243 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4244 if (contained_in_p (inner
, XVECEXP (exp
, i
, j
)))
4252 /* Process DEFINE_PEEPHOLE, DEFINE_INSN, and DEFINE_ASM_ATTRIBUTES. */
4258 struct insn_def
*id
;
4260 id
= (struct insn_def
*) oballoc (sizeof (struct insn_def
));
4265 switch (GET_CODE (exp
))
4268 id
->insn_code
= insn_code_number
++;
4269 id
->insn_index
= insn_index_number
++;
4270 id
->num_alternatives
= count_alternatives (exp
);
4271 if (id
->num_alternatives
== 0)
4272 id
->num_alternatives
= 1;
4276 case DEFINE_PEEPHOLE
:
4277 id
->insn_code
= insn_code_number
++;
4278 id
->insn_index
= insn_index_number
++;
4279 id
->num_alternatives
= count_alternatives (exp
);
4280 if (id
->num_alternatives
== 0)
4281 id
->num_alternatives
= 1;
4285 case DEFINE_ASM_ATTRIBUTES
:
4287 id
->insn_index
= -1;
4288 id
->num_alternatives
= 1;
4290 got_define_asm_attributes
= 1;
4298 /* Process a DEFINE_DELAY. Validate the vector length, check if annul
4299 true or annul false is specified, and make a `struct delay_desc'. */
4305 struct delay_desc
*delay
;
4308 if (XVECLEN (def
, 1) % 3 != 0)
4309 fatal ("Number of elements in DEFINE_DELAY must be multiple of three.");
4311 for (i
= 0; i
< XVECLEN (def
, 1); i
+= 3)
4313 if (XVECEXP (def
, 1, i
+ 1))
4314 have_annul_true
= 1;
4315 if (XVECEXP (def
, 1, i
+ 2))
4316 have_annul_false
= 1;
4319 delay
= (struct delay_desc
*) oballoc (sizeof (struct delay_desc
));
4321 delay
->num
= ++num_delays
;
4322 delay
->next
= delays
;
4326 /* Process a DEFINE_FUNCTION_UNIT.
4328 This gives information about a function unit contained in the CPU.
4329 We fill in a `struct function_unit_op' and a `struct function_unit'
4330 with information used later by `expand_unit'. */
4336 struct function_unit
*unit
;
4337 struct function_unit_op
*op
;
4338 char *name
= XSTR (def
, 0);
4339 int multiplicity
= XINT (def
, 1);
4340 int simultaneity
= XINT (def
, 2);
4341 rtx condexp
= XEXP (def
, 3);
4342 int ready_cost
= MAX (XINT (def
, 4), 1);
4343 int issue_delay
= MAX (XINT (def
, 5), 1);
4345 /* See if we have already seen this function unit. If so, check that
4346 the multiplicity and simultaneity values are the same. If not, make
4347 a structure for this function unit. */
4348 for (unit
= units
; unit
; unit
= unit
->next
)
4349 if (! strcmp (unit
->name
, name
))
4351 if (unit
->multiplicity
!= multiplicity
4352 || unit
->simultaneity
!= simultaneity
)
4353 fatal ("Differing specifications given for `%s' function unit.",
4360 unit
= (struct function_unit
*) oballoc (sizeof (struct function_unit
));
4362 unit
->multiplicity
= multiplicity
;
4363 unit
->simultaneity
= simultaneity
;
4364 unit
->issue_delay
.min
= unit
->issue_delay
.max
= issue_delay
;
4365 unit
->num
= num_units
++;
4366 unit
->num_opclasses
= 0;
4367 unit
->condexp
= false_rtx
;
4373 /* Make a new operation class structure entry and initialize it. */
4374 op
= (struct function_unit_op
*) oballoc (sizeof (struct function_unit_op
));
4375 op
->condexp
= condexp
;
4376 op
->num
= unit
->num_opclasses
++;
4377 op
->ready
= ready_cost
;
4378 op
->issue_delay
= issue_delay
;
4379 op
->next
= unit
->ops
;
4381 num_unit_opclasses
++;
4383 /* Set our issue expression based on whether or not an optional conflict
4384 vector was specified. */
4387 /* Compute the IOR of all the specified expressions. */
4388 rtx orexp
= false_rtx
;
4391 for (i
= 0; i
< XVECLEN (def
, 6); i
++)
4392 orexp
= insert_right_side (IOR
, orexp
, XVECEXP (def
, 6, i
), -2, -2);
4394 op
->conflict_exp
= orexp
;
4395 extend_range (&unit
->issue_delay
, 1, issue_delay
);
4399 op
->conflict_exp
= true_rtx
;
4400 extend_range (&unit
->issue_delay
, issue_delay
, issue_delay
);
4403 /* Merge our conditional into that of the function unit so we can determine
4404 which insns are used by the function unit. */
4405 unit
->condexp
= insert_right_side (IOR
, unit
->condexp
, op
->condexp
, -2, -2);
4408 /* Given a piece of RTX, print a C expression to test it's truth value.
4410 We use AND and IOR both for logical and bit-wise operations, so
4411 interpret them as logical unless they are inside a comparison expression.
4412 The first bit of FLAGS will be non-zero in that case.
4414 Set the second bit of FLAGS to make references to attribute values use
4415 a cached local variable instead of calling a function. */
4418 write_test_expr (exp
, flags
)
4422 int comparison_operator
= 0;
4424 struct attr_desc
*attr
;
4426 /* In order not to worry about operator precedence, surround our part of
4427 the expression with parentheses. */
4430 code
= GET_CODE (exp
);
4433 /* Binary operators. */
4435 case GE
: case GT
: case GEU
: case GTU
:
4436 case LE
: case LT
: case LEU
: case LTU
:
4437 comparison_operator
= 1;
4439 case PLUS
: case MINUS
: case MULT
: case DIV
: case MOD
:
4440 case AND
: case IOR
: case XOR
:
4441 case ASHIFT
: case LSHIFTRT
: case ASHIFTRT
:
4442 write_test_expr (XEXP (exp
, 0), flags
| comparison_operator
);
4458 printf (" >= (unsigned) ");
4461 printf (" > (unsigned) ");
4470 printf (" <= (unsigned) ");
4473 printf (" < (unsigned) ");
4516 write_test_expr (XEXP (exp
, 1), flags
| comparison_operator
);
4520 /* Special-case (not (eq_attrq "alternative" "x")) */
4521 if (! (flags
& 1) && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
4522 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
4524 printf ("which_alternative != %s", XSTR (XEXP (exp
, 0), 1));
4528 /* Otherwise, fall through to normal unary operator. */
4530 /* Unary operators. */
4550 write_test_expr (XEXP (exp
, 0), flags
);
4553 /* Comparison test of an attribute with a value. Most of these will
4554 have been removed by optimization. Handle "alternative"
4555 specially and give error if EQ_ATTR present inside a comparison. */
4558 fatal ("EQ_ATTR not valid inside comparison");
4560 if (XSTR (exp
, 0) == alternative_name
)
4562 printf ("which_alternative == %s", XSTR (exp
, 1));
4566 attr
= find_attr (XSTR (exp
, 0), 0);
4567 if (! attr
) abort ();
4569 /* Now is the time to expand the value of a constant attribute. */
4572 write_test_expr (evaluate_eq_attr (exp
, attr
->default_val
->value
,
4579 printf ("attr_%s", attr
->name
);
4581 printf ("get_attr_%s (insn)", attr
->name
);
4583 write_attr_valueq (attr
, XSTR (exp
, 1));
4587 /* Comparison test of flags for define_delays. */
4590 fatal ("ATTR_FLAG not valid inside comparison");
4591 printf ("(flags & ATTR_FLAG_%s) != 0", XSTR (exp
, 0));
4594 /* See if an operand matches a predicate. */
4596 /* If only a mode is given, just ensure the mode matches the operand.
4597 If neither a mode nor predicate is given, error. */
4598 if (XSTR (exp
, 1) == NULL
|| *XSTR (exp
, 1) == '\0')
4600 if (GET_MODE (exp
) == VOIDmode
)
4601 fatal ("Null MATCH_OPERAND specified as test");
4603 printf ("GET_MODE (operands[%d]) == %smode",
4604 XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4607 printf ("%s (operands[%d], %smode)",
4608 XSTR (exp
, 1), XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4611 /* Constant integer. */
4613 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
4614 printf ("%d", XWINT (exp
, 0));
4616 printf ("%ld", XWINT (exp
, 0));
4620 /* A random C expression. */
4622 printf ("%s", XSTR (exp
, 0));
4625 /* The address of the branch target. */
4627 printf ("insn_addresses[INSN_UID (GET_CODE (operands[%d]) == LABEL_REF ? XEXP (operands[%d], 0) : operands[%d])]",
4628 XINT (exp
, 0), XINT (exp
, 0), XINT (exp
, 0));
4631 /* The address of the current insn. It would be more consistent with
4632 other usage to make this the address of the NEXT insn, but this gets
4633 too confusing because of the ambiguity regarding the length of the
4636 printf ("insn_current_address");
4640 printf ("%s", XSTR (exp
, 0));
4644 write_test_expr (XEXP (exp
, 0), flags
& 2);
4646 write_test_expr (XEXP (exp
, 1), flags
| 1);
4648 write_test_expr (XEXP (exp
, 2), flags
| 1);
4652 fatal ("bad RTX code `%s' in attribute calculation\n",
4653 GET_RTX_NAME (code
));
4659 /* Given an attribute value, return the maximum CONST_STRING argument
4660 encountered. It is assumed that they are all numeric. */
4663 max_attr_value (exp
)
4666 int current_max
= 0;
4670 if (GET_CODE (exp
) == CONST_STRING
)
4671 return atoi (XSTR (exp
, 0));
4673 else if (GET_CODE (exp
) == COND
)
4675 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
4677 n
= max_attr_value (XVECEXP (exp
, 0, i
+ 1));
4678 if (n
> current_max
)
4682 n
= max_attr_value (XEXP (exp
, 1));
4683 if (n
> current_max
)
4687 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
4689 current_max
= max_attr_value (XEXP (exp
, 1));
4690 n
= max_attr_value (XEXP (exp
, 2));
4691 if (n
> current_max
)
4701 /* Scan an attribute value, possibly a conditional, and record what actions
4702 will be required to do any conditional tests in it.
4705 `must_extract' if we need to extract the insn operands
4706 `must_constrain' if we must compute `which_alternative'
4707 `address_used' if an address expression was used
4708 `length_used' if an (eq_attr "length" ...) was used
4712 walk_attr_value (exp
)
4722 code
= GET_CODE (exp
);
4726 if (! RTX_UNCHANGING_P (exp
))
4727 /* Since this is an arbitrary expression, it can look at anything.
4728 However, constant expressions do not depend on any particular
4730 must_extract
= must_constrain
= 1;
4738 if (XSTR (exp
, 0) == alternative_name
)
4739 must_extract
= must_constrain
= 1;
4740 else if (strcmp (XSTR (exp
, 0), "length") == 0)
4760 for (i
= 0, fmt
= GET_RTX_FORMAT (code
); i
< GET_RTX_LENGTH (code
); i
++)
4765 walk_attr_value (XEXP (exp
, i
));
4769 if (XVEC (exp
, i
) != NULL
)
4770 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4771 walk_attr_value (XVECEXP (exp
, i
, j
));
4776 /* Write out a function to obtain the attribute for a given INSN. */
4779 write_attr_get (attr
)
4780 struct attr_desc
*attr
;
4782 struct attr_value
*av
, *common_av
;
4784 /* Find the most used attribute value. Handle that as the `default' of the
4785 switch we will generate. */
4786 common_av
= find_most_used (attr
);
4788 /* Write out start of function, then all values with explicit `case' lines,
4789 then a `default', then the value with the most uses. */
4790 if (!attr
->is_numeric
)
4791 printf ("enum attr_%s\n", attr
->name
);
4792 else if (attr
->unsigned_p
)
4793 printf ("unsigned int\n");
4797 /* If the attribute name starts with a star, the remainder is the name of
4798 the subroutine to use, instead of `get_attr_...'. */
4799 if (attr
->name
[0] == '*')
4800 printf ("%s (insn)\n", &attr
->name
[1]);
4801 else if (attr
->is_const
== 0)
4802 printf ("get_attr_%s (insn)\n", attr
->name
);
4805 printf ("get_attr_%s ()\n", attr
->name
);
4808 for (av
= attr
->first_value
; av
; av
= av
->next
)
4809 if (av
->num_insns
!= 0)
4810 write_attr_set (attr
, 2, av
->value
, "return", ";",
4811 true_rtx
, av
->first_insn
->insn_code
,
4812 av
->first_insn
->insn_index
);
4818 printf (" rtx insn;\n");
4821 if (GET_CODE (common_av
->value
) == FFS
)
4823 rtx p
= XEXP (common_av
->value
, 0);
4825 /* No need to emit code to abort if the insn is unrecognized; the
4826 other get_attr_foo functions will do that when we call them. */
4828 write_toplevel_expr (p
);
4830 printf ("\n if (accum && accum == (accum & -accum))\n");
4832 printf (" int i;\n");
4833 printf (" for (i = 0; accum >>= 1; ++i) continue;\n");
4834 printf (" accum = i;\n");
4835 printf (" }\n else\n");
4836 printf (" accum = ~accum;\n");
4837 printf (" return accum;\n}\n\n");
4841 printf (" switch (recog_memoized (insn))\n");
4844 for (av
= attr
->first_value
; av
; av
= av
->next
)
4845 if (av
!= common_av
)
4846 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
4848 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4849 printf (" }\n}\n\n");
4853 /* Given an AND tree of known true terms (because we are inside an `if' with
4854 that as the condition or are in an `else' clause) and an expression,
4855 replace any known true terms with TRUE. Use `simplify_and_tree' to do
4856 the bulk of the work. */
4859 eliminate_known_true (known_true
, exp
, insn_code
, insn_index
)
4862 int insn_code
, insn_index
;
4866 known_true
= SIMPLIFY_TEST_EXP (known_true
, insn_code
, insn_index
);
4868 if (GET_CODE (known_true
) == AND
)
4870 exp
= eliminate_known_true (XEXP (known_true
, 0), exp
,
4871 insn_code
, insn_index
);
4872 exp
= eliminate_known_true (XEXP (known_true
, 1), exp
,
4873 insn_code
, insn_index
);
4878 exp
= simplify_and_tree (exp
, &term
, insn_code
, insn_index
);
4884 /* Write out a series of tests and assignment statements to perform tests and
4885 sets of an attribute value. We are passed an indentation amount and prefix
4886 and suffix strings to write around each attribute value (e.g., "return"
4890 write_attr_set (attr
, indent
, value
, prefix
, suffix
, known_true
,
4891 insn_code
, insn_index
)
4892 struct attr_desc
*attr
;
4898 int insn_code
, insn_index
;
4900 if (GET_CODE (value
) == CONST_STRING
)
4902 write_indent (indent
);
4903 printf ("%s ", prefix
);
4904 write_attr_value (attr
, value
);
4905 printf ("%s\n", suffix
);
4907 else if (GET_CODE (value
) == COND
)
4909 /* Assume the default value will be the default of the COND unless we
4910 find an always true expression. */
4911 rtx default_val
= XEXP (value
, 1);
4912 rtx our_known_true
= known_true
;
4917 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4922 testexp
= eliminate_known_true (our_known_true
,
4923 XVECEXP (value
, 0, i
),
4924 insn_code
, insn_index
);
4925 newexp
= attr_rtx (NOT
, testexp
);
4926 newexp
= insert_right_side (AND
, our_known_true
, newexp
,
4927 insn_code
, insn_index
);
4929 /* If the test expression is always true or if the next `known_true'
4930 expression is always false, this is the last case, so break
4931 out and let this value be the `else' case. */
4932 if (testexp
== true_rtx
|| newexp
== false_rtx
)
4934 default_val
= XVECEXP (value
, 0, i
+ 1);
4938 /* Compute the expression to pass to our recursive call as being
4940 inner_true
= insert_right_side (AND
, our_known_true
,
4941 testexp
, insn_code
, insn_index
);
4943 /* If this is always false, skip it. */
4944 if (inner_true
== false_rtx
)
4947 write_indent (indent
);
4948 printf ("%sif ", first_if
? "" : "else ");
4950 write_test_expr (testexp
, 0);
4952 write_indent (indent
+ 2);
4955 write_attr_set (attr
, indent
+ 4,
4956 XVECEXP (value
, 0, i
+ 1), prefix
, suffix
,
4957 inner_true
, insn_code
, insn_index
);
4958 write_indent (indent
+ 2);
4960 our_known_true
= newexp
;
4965 write_indent (indent
);
4967 write_indent (indent
+ 2);
4971 write_attr_set (attr
, first_if
? indent
: indent
+ 4, default_val
,
4972 prefix
, suffix
, our_known_true
, insn_code
, insn_index
);
4976 write_indent (indent
+ 2);
4984 /* Write out the computation for one attribute value. */
4987 write_attr_case (attr
, av
, write_case_lines
, prefix
, suffix
, indent
,
4989 struct attr_desc
*attr
;
4990 struct attr_value
*av
;
4991 int write_case_lines
;
4992 char *prefix
, *suffix
;
4996 struct insn_ent
*ie
;
4998 if (av
->num_insns
== 0)
5001 if (av
->has_asm_insn
)
5003 write_indent (indent
);
5004 printf ("case -1:\n");
5005 write_indent (indent
+ 2);
5006 printf ("if (GET_CODE (PATTERN (insn)) != ASM_INPUT\n");
5007 write_indent (indent
+ 2);
5008 printf (" && asm_noperands (PATTERN (insn)) < 0)\n");
5009 write_indent (indent
+ 2);
5010 printf (" fatal_insn_not_found (insn);\n");
5013 if (write_case_lines
)
5015 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
5016 if (ie
->insn_code
!= -1)
5018 write_indent (indent
);
5019 printf ("case %d:\n", ie
->insn_code
);
5024 write_indent (indent
);
5025 printf ("default:\n");
5028 /* See what we have to do to output this value. */
5029 must_extract
= must_constrain
= address_used
= 0;
5030 walk_attr_value (av
->value
);
5034 write_indent (indent
+ 2);
5035 printf ("insn_extract (insn);\n");
5040 #ifdef REGISTER_CONSTRAINTS
5041 write_indent (indent
+ 2);
5042 printf ("if (! constrain_operands (INSN_CODE (insn), reload_completed))\n");
5043 write_indent (indent
+ 2);
5044 printf (" fatal_insn_not_found (insn);\n");
5048 write_attr_set (attr
, indent
+ 2, av
->value
, prefix
, suffix
,
5049 known_true
, av
->first_insn
->insn_code
,
5050 av
->first_insn
->insn_index
);
5052 if (strncmp (prefix
, "return", 6))
5054 write_indent (indent
+ 2);
5055 printf ("break;\n");
5060 /* Search for uses of non-const attributes and write code to cache them. */
5063 write_expr_attr_cache (p
, attr
)
5065 struct attr_desc
*attr
;
5070 if (GET_CODE (p
) == EQ_ATTR
)
5072 if (XSTR (p
, 0) != attr
->name
)
5075 if (!attr
->is_numeric
)
5076 printf (" register enum attr_%s ", attr
->name
);
5077 else if (attr
->unsigned_p
)
5078 printf (" register unsigned int ");
5080 printf (" register int ");
5082 printf ("attr_%s = get_attr_%s (insn);\n", attr
->name
, attr
->name
);
5086 fmt
= GET_RTX_FORMAT (GET_CODE (p
));
5087 ie
= GET_RTX_LENGTH (GET_CODE (p
));
5088 for (i
= 0; i
< ie
; i
++)
5093 if (write_expr_attr_cache (XEXP (p
, i
), attr
))
5098 je
= XVECLEN (p
, i
);
5099 for (j
= 0; j
< je
; ++j
)
5100 if (write_expr_attr_cache (XVECEXP (p
, i
, j
), attr
))
5109 /* Evaluate an expression at top level. A front end to write_test_expr,
5110 in which we cache attribute values and break up excessively large
5111 expressions to cater to older compilers. */
5114 write_toplevel_expr (p
)
5117 struct attr_desc
*attr
;
5120 for (i
= 0; i
< MAX_ATTRS_INDEX
; ++i
)
5121 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5122 if (!attr
->is_const
)
5123 write_expr_attr_cache (p
, attr
);
5125 printf(" register unsigned long accum = 0;\n\n");
5127 while (GET_CODE (p
) == IOR
)
5130 if (GET_CODE (XEXP (p
, 0)) == IOR
)
5131 e
= XEXP (p
, 1), p
= XEXP (p
, 0);
5133 e
= XEXP (p
, 0), p
= XEXP (p
, 1);
5135 printf (" accum |= ");
5136 write_test_expr (e
, 3);
5139 printf (" accum |= ");
5140 write_test_expr (p
, 3);
5144 /* Utilities to write names in various forms. */
5147 write_attr_valueq (attr
, s
)
5148 struct attr_desc
*attr
;
5151 if (attr
->is_numeric
)
5154 /* Make the blockage range values easier to read. */
5156 printf (" /* 0x%x */", atoi (s
));
5160 write_upcase (attr
->name
);
5167 write_attr_value (attr
, value
)
5168 struct attr_desc
*attr
;
5171 if (GET_CODE (value
) != CONST_STRING
)
5174 write_attr_valueq (attr
, XSTR (value
, 0));
5182 if (*str
< 'a' || *str
> 'z')
5183 printf ("%c", *str
++);
5185 printf ("%c", *str
++ - 'a' + 'A');
5189 write_indent (indent
)
5192 for (; indent
> 8; indent
-= 8)
5195 for (; indent
; indent
--)
5199 /* Write a subroutine that is given an insn that requires a delay slot, a
5200 delay slot ordinal, and a candidate insn. It returns non-zero if the
5201 candidate can be placed in the specified delay slot of the insn.
5203 We can write as many as three subroutines. `eligible_for_delay'
5204 handles normal delay slots, `eligible_for_annul_true' indicates that
5205 the specified insn can be annulled if the branch is true, and likewise
5206 for `eligible_for_annul_false'.
5208 KIND is a string distinguishing these three cases ("delay", "annul_true",
5209 or "annul_false"). */
5212 write_eligible_delay (kind
)
5215 struct delay_desc
*delay
;
5218 struct attr_desc
*attr
;
5219 struct attr_value
*av
, *common_av
;
5222 /* Compute the maximum number of delay slots required. We use the delay
5223 ordinal times this number plus one, plus the slot number as an index into
5224 the appropriate predicate to test. */
5226 for (delay
= delays
, max_slots
= 0; delay
; delay
= delay
->next
)
5227 if (XVECLEN (delay
->def
, 1) / 3 > max_slots
)
5228 max_slots
= XVECLEN (delay
->def
, 1) / 3;
5230 /* Write function prelude. */
5233 printf ("eligible_for_%s (delay_insn, slot, candidate_insn, flags)\n",
5235 printf (" rtx delay_insn;\n");
5236 printf (" int slot;\n");
5237 printf (" rtx candidate_insn;\n");
5238 printf (" int flags;\n");
5240 printf (" rtx insn;\n");
5242 printf (" if (slot >= %d)\n", max_slots
);
5243 printf (" abort ();\n");
5246 /* If more than one delay type, find out which type the delay insn is. */
5250 attr
= find_attr ("*delay_type", 0);
5251 if (! attr
) abort ();
5252 common_av
= find_most_used (attr
);
5254 printf (" insn = delay_insn;\n");
5255 printf (" switch (recog_memoized (insn))\n");
5258 sprintf (str
, " * %d;\n break;", max_slots
);
5259 for (av
= attr
->first_value
; av
; av
= av
->next
)
5260 if (av
!= common_av
)
5261 write_attr_case (attr
, av
, 1, "slot +=", str
, 4, true_rtx
);
5263 write_attr_case (attr
, common_av
, 0, "slot +=", str
, 4, true_rtx
);
5266 /* Ensure matched. Otherwise, shouldn't have been called. */
5267 printf (" if (slot < %d)\n", max_slots
);
5268 printf (" abort ();\n\n");
5271 /* If just one type of delay slot, write simple switch. */
5272 if (num_delays
== 1 && max_slots
== 1)
5274 printf (" insn = candidate_insn;\n");
5275 printf (" switch (recog_memoized (insn))\n");
5278 attr
= find_attr ("*delay_1_0", 0);
5279 if (! attr
) abort ();
5280 common_av
= find_most_used (attr
);
5282 for (av
= attr
->first_value
; av
; av
= av
->next
)
5283 if (av
!= common_av
)
5284 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
5286 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
5292 /* Write a nested CASE. The first indicates which condition we need to
5293 test, and the inner CASE tests the condition. */
5294 printf (" insn = candidate_insn;\n");
5295 printf (" switch (slot)\n");
5298 for (delay
= delays
; delay
; delay
= delay
->next
)
5299 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
5301 printf (" case %d:\n",
5302 (i
/ 3) + (num_delays
== 1 ? 0 : delay
->num
* max_slots
));
5303 printf (" switch (recog_memoized (insn))\n");
5306 sprintf (str
, "*%s_%d_%d", kind
, delay
->num
, i
/ 3);
5307 attr
= find_attr (str
, 0);
5308 if (! attr
) abort ();
5309 common_av
= find_most_used (attr
);
5311 for (av
= attr
->first_value
; av
; av
= av
->next
)
5312 if (av
!= common_av
)
5313 write_attr_case (attr
, av
, 1, "return", ";", 8, true_rtx
);
5315 write_attr_case (attr
, common_av
, 0, "return", ";", 8, true_rtx
);
5319 printf (" default:\n");
5320 printf (" abort ();\n");
5327 /* Write routines to compute conflict cost for function units. Then write a
5328 table describing the available function units. */
5331 write_function_unit_info ()
5333 struct function_unit
*unit
;
5336 /* Write out conflict routines for function units. Don't bother writing
5337 one if there is only one issue delay value. */
5339 for (unit
= units
; unit
; unit
= unit
->next
)
5341 if (unit
->needs_blockage_function
)
5342 write_complex_function (unit
, "blockage", "block");
5344 /* If the minimum and maximum conflict costs are the same, there
5345 is only one value, so we don't need a function. */
5346 if (! unit
->needs_conflict_function
)
5348 unit
->default_cost
= make_numeric_value (unit
->issue_delay
.max
);
5352 /* The function first computes the case from the candidate insn. */
5353 unit
->default_cost
= make_numeric_value (0);
5354 write_complex_function (unit
, "conflict_cost", "cost");
5357 /* Now that all functions have been written, write the table describing
5358 the function units. The name is included for documentation purposes
5361 printf ("struct function_unit_desc function_units[] = {\n");
5363 /* Write out the descriptions in numeric order, but don't force that order
5364 on the list. Doing so increases the runtime of genattrtab.c. */
5365 for (i
= 0; i
< num_units
; i
++)
5367 for (unit
= units
; unit
; unit
= unit
->next
)
5371 printf (" {\"%s\", %d, %d, %d, %s, %d, %s_unit_ready_cost, ",
5372 unit
->name
, 1 << unit
->num
, unit
->multiplicity
,
5373 unit
->simultaneity
, XSTR (unit
->default_cost
, 0),
5374 unit
->issue_delay
.max
, unit
->name
);
5376 if (unit
->needs_conflict_function
)
5377 printf ("%s_unit_conflict_cost, ", unit
->name
);
5381 printf ("%d, ", unit
->max_blockage
);
5383 if (unit
->needs_range_function
)
5384 printf ("%s_unit_blockage_range, ", unit
->name
);
5388 if (unit
->needs_blockage_function
)
5389 printf ("%s_unit_blockage", unit
->name
);
5400 write_complex_function (unit
, name
, connection
)
5401 struct function_unit
*unit
;
5402 char *name
, *connection
;
5404 struct attr_desc
*case_attr
, *attr
;
5405 struct attr_value
*av
, *common_av
;
5411 printf ("static int\n");
5412 printf ("%s_unit_%s (executing_insn, candidate_insn)\n",
5414 printf (" rtx executing_insn;\n");
5415 printf (" rtx candidate_insn;\n");
5417 printf (" rtx insn;\n");
5418 printf (" int casenum;\n\n");
5419 printf (" insn = executing_insn;\n");
5420 printf (" switch (recog_memoized (insn))\n");
5423 /* Write the `switch' statement to get the case value. */
5424 str
= (char *) alloca (strlen (unit
->name
) + strlen (name
) + strlen (connection
) + 10);
5425 sprintf (str
, "*%s_cases", unit
->name
);
5426 case_attr
= find_attr (str
, 0);
5427 if (! case_attr
) abort ();
5428 common_av
= find_most_used (case_attr
);
5430 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5431 if (av
!= common_av
)
5432 write_attr_case (case_attr
, av
, 1,
5433 "casenum =", ";", 4, unit
->condexp
);
5435 write_attr_case (case_attr
, common_av
, 0,
5436 "casenum =", ";", 4, unit
->condexp
);
5439 /* Now write an outer switch statement on each case. Then write
5440 the tests on the executing function within each. */
5441 printf (" insn = candidate_insn;\n");
5442 printf (" switch (casenum)\n");
5445 for (i
= 0; i
< unit
->num_opclasses
; i
++)
5447 /* Ensure using this case. */
5449 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5451 && contained_in_p (make_numeric_value (i
), av
->value
))
5457 printf (" case %d:\n", i
);
5458 sprintf (str
, "*%s_%s_%d", unit
->name
, connection
, i
);
5459 attr
= find_attr (str
, 0);
5460 if (! attr
) abort ();
5462 /* If single value, just write it. */
5463 value
= find_single_value (attr
);
5465 write_attr_set (attr
, 6, value
, "return", ";\n", true_rtx
, -2, -2);
5468 common_av
= find_most_used (attr
);
5469 printf (" switch (recog_memoized (insn))\n");
5472 for (av
= attr
->first_value
; av
; av
= av
->next
)
5473 if (av
!= common_av
)
5474 write_attr_case (attr
, av
, 1,
5475 "return", ";", 8, unit
->condexp
);
5477 write_attr_case (attr
, common_av
, 0,
5478 "return", ";", 8, unit
->condexp
);
5483 printf (" }\n}\n\n");
5486 /* This page contains miscellaneous utility routines. */
5488 /* Given a string, return the number of comma-separated elements in it.
5489 Return 0 for the null string. */
5500 for (n
= 1; *s
; s
++)
5507 /* Given a pointer to a (char *), return a malloc'ed string containing the
5508 next comma-separated element. Advance the pointer to after the string
5509 scanned, or the end-of-string. Return NULL if at end of string. */
5512 next_comma_elt (pstr
)
5521 /* Find end of string to compute length. */
5522 for (p
= *pstr
; *p
!= ',' && *p
!= '\0'; p
++)
5525 out_str
= attr_string (*pstr
, p
- *pstr
);
5534 /* Return a `struct attr_desc' pointer for a given named attribute. If CREATE
5535 is non-zero, build a new attribute, if one does not exist. */
5537 static struct attr_desc
*
5538 find_attr (name
, create
)
5542 struct attr_desc
*attr
;
5545 /* Before we resort to using `strcmp', see if the string address matches
5546 anywhere. In most cases, it should have been canonicalized to do so. */
5547 if (name
== alternative_name
)
5550 index
= name
[0] & (MAX_ATTRS_INDEX
- 1);
5551 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5552 if (name
== attr
->name
)
5555 /* Otherwise, do it the slow way. */
5556 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5557 if (name
[0] == attr
->name
[0] && ! strcmp (name
, attr
->name
))
5563 attr
= (struct attr_desc
*) oballoc (sizeof (struct attr_desc
));
5564 attr
->name
= attr_string (name
, strlen (name
));
5565 attr
->first_value
= attr
->default_val
= NULL
;
5566 attr
->is_numeric
= attr
->negative_ok
= attr
->is_const
= attr
->is_special
= 0;
5567 attr
->next
= attrs
[index
];
5568 attrs
[index
] = attr
;
5573 /* Create internal attribute with the given default value. */
5576 make_internal_attr (name
, value
, special
)
5581 struct attr_desc
*attr
;
5583 attr
= find_attr (name
, 1);
5584 if (attr
->default_val
)
5587 attr
->is_numeric
= 1;
5589 attr
->is_special
= (special
& 1) != 0;
5590 attr
->negative_ok
= (special
& 2) != 0;
5591 attr
->unsigned_p
= (special
& 4) != 0;
5592 attr
->default_val
= get_attr_value (value
, attr
, -2);
5595 /* Find the most used value of an attribute. */
5597 static struct attr_value
*
5598 find_most_used (attr
)
5599 struct attr_desc
*attr
;
5601 struct attr_value
*av
;
5602 struct attr_value
*most_used
;
5608 for (av
= attr
->first_value
; av
; av
= av
->next
)
5609 if (av
->num_insns
> nuses
)
5610 nuses
= av
->num_insns
, most_used
= av
;
5615 /* If an attribute only has a single value used, return it. Otherwise
5619 find_single_value (attr
)
5620 struct attr_desc
*attr
;
5622 struct attr_value
*av
;
5625 unique_value
= NULL
;
5626 for (av
= attr
->first_value
; av
; av
= av
->next
)
5632 unique_value
= av
->value
;
5635 return unique_value
;
5638 /* Return (attr_value "n") */
5641 make_numeric_value (n
)
5644 static rtx int_values
[20];
5651 if (n
< 20 && int_values
[n
])
5652 return int_values
[n
];
5654 p
= attr_printf (MAX_DIGITS
, "%d", n
);
5655 exp
= attr_rtx (CONST_STRING
, p
);
5658 int_values
[n
] = exp
;
5664 extend_range (range
, min
, max
)
5665 struct range
*range
;
5669 if (range
->min
> min
) range
->min
= min
;
5670 if (range
->max
< max
) range
->max
= max
;
5674 xrealloc (ptr
, size
)
5678 char *result
= (char *) realloc (ptr
, size
);
5680 fatal ("virtual memory exhausted");
5688 register char *val
= (char *) malloc (size
);
5691 fatal ("virtual memory exhausted");
5696 copy_rtx_unchanging (orig
)
5701 register RTX_CODE code
;
5704 if (RTX_UNCHANGING_P (orig
) || MEM_IN_STRUCT_P (orig
))
5707 MEM_IN_STRUCT_P (orig
) = 1;
5711 code
= GET_CODE (orig
);
5724 copy
= rtx_alloc (code
);
5725 PUT_MODE (copy
, GET_MODE (orig
));
5726 RTX_UNCHANGING_P (copy
) = 1;
5728 bcopy ((char *) &XEXP (orig
, 0), (char *) &XEXP (copy
, 0),
5729 GET_RTX_LENGTH (GET_CODE (copy
)) * sizeof (rtx
));
5739 fprintf (stderr
, "genattrtab: ");
5740 fprintf (stderr
, s
, a1
, a2
);
5741 fprintf (stderr
, "\n");
5742 exit (FATAL_EXIT_CODE
);
5745 /* More 'friendly' abort that prints the line and file.
5746 config.h can #define abort fancy_abort if you like that sort of thing. */
5751 fatal ("Internal gcc abort.");
5754 /* Determine if an insn has a constant number of delay slots, i.e., the
5755 number of delay slots is not a function of the length of the insn. */
5758 write_const_num_delay_slots ()
5760 struct attr_desc
*attr
= find_attr ("*num_delay_slots", 0);
5761 struct attr_value
*av
;
5762 struct insn_ent
*ie
;
5767 printf ("int\nconst_num_delay_slots (insn)\n");
5768 printf (" rtx insn;\n");
5770 printf (" switch (recog_memoized (insn))\n");
5773 for (av
= attr
->first_value
; av
; av
= av
->next
)
5776 walk_attr_value (av
->value
);
5779 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
5780 if (ie
->insn_code
!= -1)
5781 printf (" case %d:\n", ie
->insn_code
);
5782 printf (" return 0;\n");
5786 printf (" default:\n");
5787 printf (" return 1;\n");
5801 struct attr_desc
*attr
;
5802 struct insn_def
*id
;
5806 #if defined (RLIMIT_STACK) && defined (HAVE_GETRLIMIT) && defined (HAVE_SETRLIMIT)
5807 /* Get rid of any avoidable limit on stack size. */
5811 /* Set the stack limit huge so that alloca does not fail. */
5812 getrlimit (RLIMIT_STACK
, &rlim
);
5813 rlim
.rlim_cur
= rlim
.rlim_max
;
5814 setrlimit (RLIMIT_STACK
, &rlim
);
5816 #endif /* RLIMIT_STACK defined */
5818 obstack_init (rtl_obstack
);
5819 obstack_init (hash_obstack
);
5820 obstack_init (temp_obstack
);
5823 fatal ("No input file name.");
5825 infile
= fopen (argv
[1], "r");
5829 exit (FATAL_EXIT_CODE
);
5834 /* Set up true and false rtx's */
5835 true_rtx
= rtx_alloc (CONST_INT
);
5836 XWINT (true_rtx
, 0) = 1;
5837 false_rtx
= rtx_alloc (CONST_INT
);
5838 XWINT (false_rtx
, 0) = 0;
5839 RTX_UNCHANGING_P (true_rtx
) = RTX_UNCHANGING_P (false_rtx
) = 1;
5840 RTX_INTEGRATED_P (true_rtx
) = RTX_INTEGRATED_P (false_rtx
) = 1;
5842 alternative_name
= attr_string ("alternative", strlen ("alternative"));
5844 printf ("/* Generated automatically by the program `genattrtab'\n\
5845 from the machine description file `md'. */\n\n");
5847 /* Read the machine description. */
5851 c
= read_skip_spaces (infile
);
5856 desc
= read_rtx (infile
);
5857 if (GET_CODE (desc
) == DEFINE_INSN
5858 || GET_CODE (desc
) == DEFINE_PEEPHOLE
5859 || GET_CODE (desc
) == DEFINE_ASM_ATTRIBUTES
)
5862 else if (GET_CODE (desc
) == DEFINE_EXPAND
)
5863 insn_code_number
++, insn_index_number
++;
5865 else if (GET_CODE (desc
) == DEFINE_SPLIT
)
5866 insn_code_number
++, insn_index_number
++;
5868 else if (GET_CODE (desc
) == DEFINE_ATTR
)
5871 insn_index_number
++;
5874 else if (GET_CODE (desc
) == DEFINE_DELAY
)
5877 insn_index_number
++;
5880 else if (GET_CODE (desc
) == DEFINE_FUNCTION_UNIT
)
5883 insn_index_number
++;
5887 /* If we didn't have a DEFINE_ASM_ATTRIBUTES, make a null one. */
5888 if (! got_define_asm_attributes
)
5890 tem
= rtx_alloc (DEFINE_ASM_ATTRIBUTES
);
5891 XVEC (tem
, 0) = rtvec_alloc (0);
5895 /* Expand DEFINE_DELAY information into new attribute. */
5899 /* Expand DEFINE_FUNCTION_UNIT information into new attributes. */
5903 printf ("#include \"config.h\"\n");
5904 printf ("#include <stdio.h>\n");
5905 printf ("#include \"rtl.h\"\n");
5906 printf ("#include \"insn-config.h\"\n");
5907 printf ("#include \"recog.h\"\n");
5908 printf ("#include \"regs.h\"\n");
5909 printf ("#include \"real.h\"\n");
5910 printf ("#include \"output.h\"\n");
5911 printf ("#include \"insn-attr.h\"\n");
5913 printf ("#define operands recog_operand\n\n");
5915 /* Make `insn_alternatives'. */
5916 insn_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
5917 for (id
= defs
; id
; id
= id
->next
)
5918 if (id
->insn_code
>= 0)
5919 insn_alternatives
[id
->insn_code
] = (1 << id
->num_alternatives
) - 1;
5921 /* Make `insn_n_alternatives'. */
5922 insn_n_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
5923 for (id
= defs
; id
; id
= id
->next
)
5924 if (id
->insn_code
>= 0)
5925 insn_n_alternatives
[id
->insn_code
] = id
->num_alternatives
;
5927 /* Prepare to write out attribute subroutines by checking everything stored
5928 away and building the attribute cases. */
5931 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5932 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5934 attr
->default_val
->value
5935 = check_attr_value (attr
->default_val
->value
, attr
);
5939 /* Construct extra attributes for `length'. */
5940 make_length_attrs ();
5942 /* Perform any possible optimizations to speed up compilation. */
5945 /* Now write out all the `gen_attr_...' routines. Do these before the
5946 special routines (specifically before write_function_unit_info), so
5947 that they get defined before they are used. */
5949 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5950 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5952 if (! attr
->is_special
&& ! attr
->is_const
)
5953 write_attr_get (attr
);
5956 /* Write out delay eligibility information, if DEFINE_DELAY present.
5957 (The function to compute the number of delay slots will be written
5961 write_eligible_delay ("delay");
5962 if (have_annul_true
)
5963 write_eligible_delay ("annul_true");
5964 if (have_annul_false
)
5965 write_eligible_delay ("annul_false");
5968 /* Write out information about function units. */
5970 write_function_unit_info ();
5972 /* Write out constant delay slot info */
5973 write_const_num_delay_slots ();
5976 exit (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);