1 /* Generate code from machine description to compute values of attributes.
2 Copyright (C) 1991, 1993, 1994, 1995 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. */
106 #include "insn-config.h" /* For REGISTER_CONSTRAINTS */
111 #include <sys/time.h>
112 #include <sys/resource.h>
116 /* We must include obstack.h after <sys/time.h>, to avoid lossage with
117 /usr/include/sys/stdtypes.h on Sun OS 4.x. */
120 static struct obstack obstack
, obstack1
, obstack2
;
121 struct obstack
*rtl_obstack
= &obstack
;
122 struct obstack
*hash_obstack
= &obstack1
;
123 struct obstack
*temp_obstack
= &obstack2
;
125 #define obstack_chunk_alloc xmalloc
126 #define obstack_chunk_free free
128 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
129 char **insn_name_ptr
= 0;
132 extern rtx
read_rtx ();
134 static void fatal ();
137 /* enough space to reserve for printing out ints */
138 #define MAX_DIGITS (HOST_BITS_PER_INT * 3 / 10 + 3)
140 /* Define structures used to record attributes and values. */
142 /* As each DEFINE_INSN, DEFINE_PEEPHOLE, or DEFINE_ASM_ATTRIBUTES is
143 encountered, we store all the relevant information into a
144 `struct insn_def'. This is done to allow attribute definitions to occur
145 anywhere in the file. */
149 int insn_code
; /* Instruction number. */
150 int insn_index
; /* Expression numer in file, for errors. */
151 struct insn_def
*next
; /* Next insn in chain. */
152 rtx def
; /* The DEFINE_... */
153 int num_alternatives
; /* Number of alternatives. */
154 int vec_idx
; /* Index of attribute vector in `def'. */
157 /* Once everything has been read in, we store in each attribute value a list
158 of insn codes that have that value. Here is the structure used for the
163 int insn_code
; /* Instruction number. */
164 int insn_index
; /* Index of definition in file */
165 struct insn_ent
*next
; /* Next in chain. */
168 /* Each value of an attribute (either constant or computed) is assigned a
169 structure which is used as the listhead of the insns that have that
174 rtx value
; /* Value of attribute. */
175 struct attr_value
*next
; /* Next attribute value in chain. */
176 struct insn_ent
*first_insn
; /* First insn with this value. */
177 int num_insns
; /* Number of insns with this value. */
178 int has_asm_insn
; /* True if this value used for `asm' insns */
181 /* Structure for each attribute. */
185 char *name
; /* Name of attribute. */
186 struct attr_desc
*next
; /* Next attribute. */
187 int is_numeric
; /* Values of this attribute are numeric. */
188 int negative_ok
; /* Allow negative numeric values. */
189 int unsigned_p
; /* Make the output function unsigned int. */
190 int is_const
; /* Attribute value constant for each run. */
191 int is_special
; /* Don't call `write_attr_set'. */
192 struct attr_value
*first_value
; /* First value of this attribute. */
193 struct attr_value
*default_val
; /* Default value for this attribute. */
196 #define NULL_ATTR (struct attr_desc *) NULL
198 /* A range of values. */
206 /* Structure for each DEFINE_DELAY. */
210 rtx def
; /* DEFINE_DELAY expression. */
211 struct delay_desc
*next
; /* Next DEFINE_DELAY. */
212 int num
; /* Number of DEFINE_DELAY, starting at 1. */
215 /* Record information about each DEFINE_FUNCTION_UNIT. */
217 struct function_unit_op
219 rtx condexp
; /* Expression TRUE for applicable insn. */
220 struct function_unit_op
*next
; /* Next operation for this function unit. */
221 int num
; /* Ordinal for this operation type in unit. */
222 int ready
; /* Cost until data is ready. */
223 int issue_delay
; /* Cost until unit can accept another insn. */
224 rtx conflict_exp
; /* Expression TRUE for insns incurring issue delay. */
225 rtx issue_exp
; /* Expression computing issue delay. */
228 /* Record information about each function unit mentioned in a
229 DEFINE_FUNCTION_UNIT. */
233 char *name
; /* Function unit name. */
234 struct function_unit
*next
; /* Next function unit. */
235 int num
; /* Ordinal of this unit type. */
236 int multiplicity
; /* Number of units of this type. */
237 int simultaneity
; /* Maximum number of simultaneous insns
238 on this function unit or 0 if unlimited. */
239 rtx condexp
; /* Expression TRUE for insn needing unit. */
240 int num_opclasses
; /* Number of different operation types. */
241 struct function_unit_op
*ops
; /* Pointer to first operation type. */
242 int needs_conflict_function
; /* Nonzero if a conflict function required. */
243 int needs_blockage_function
; /* Nonzero if a blockage function required. */
244 int needs_range_function
; /* Nonzero if blockage range function needed.*/
245 rtx default_cost
; /* Conflict cost, if constant. */
246 struct range issue_delay
; /* Range of issue delay values. */
247 int max_blockage
; /* Maximum time an insn blocks the unit. */
250 /* Listheads of above structures. */
252 /* This one is indexed by the first character of the attribute name. */
253 #define MAX_ATTRS_INDEX 256
254 static struct attr_desc
*attrs
[MAX_ATTRS_INDEX
];
255 static struct insn_def
*defs
;
256 static struct delay_desc
*delays
;
257 static struct function_unit
*units
;
259 /* An expression where all the unknown terms are EQ_ATTR tests can be
260 rearranged into a COND provided we can enumerate all possible
261 combinations of the unknown values. The set of combinations become the
262 tests of the COND; the value of the expression given that combination is
263 computed and becomes the corresponding value. To do this, we must be
264 able to enumerate all values for each attribute used in the expression
265 (currently, we give up if we find a numeric attribute).
267 If the set of EQ_ATTR tests used in an expression tests the value of N
268 different attributes, the list of all possible combinations can be made
269 by walking the N-dimensional attribute space defined by those
270 attributes. We record each of these as a struct dimension.
272 The algorithm relies on sharing EQ_ATTR nodes: if two nodes in an
273 expression are the same, the will also have the same address. We find
274 all the EQ_ATTR nodes by marking them MEM_VOLATILE_P. This bit later
275 represents the value of an EQ_ATTR node, so once all nodes are marked,
276 they are also given an initial value of FALSE.
278 We then separate the set of EQ_ATTR nodes into dimensions for each
279 attribute and put them on the VALUES list. Terms are added as needed by
280 `add_values_to_cover' so that all possible values of the attribute are
283 Each dimension also has a current value. This is the node that is
284 currently considered to be TRUE. If this is one of the nodes added by
285 `add_values_to_cover', all the EQ_ATTR tests in the original expression
286 will be FALSE. Otherwise, only the CURRENT_VALUE will be true.
288 NUM_VALUES is simply the length of the VALUES list and is there for
291 Once the dimensions are created, the algorithm enumerates all possible
292 values and computes the current value of the given expression. */
296 struct attr_desc
*attr
; /* Attribute for this dimension. */
297 rtx values
; /* List of attribute values used. */
298 rtx current_value
; /* Position in the list for the TRUE value. */
299 int num_values
; /* Length of the values list. */
302 /* Other variables. */
304 static int insn_code_number
;
305 static int insn_index_number
;
306 static int got_define_asm_attributes
;
307 static int must_extract
;
308 static int must_constrain
;
309 static int address_used
;
310 static int length_used
;
311 static int num_delays
;
312 static int have_annul_true
, have_annul_false
;
313 static int num_units
;
314 static int num_insn_ents
;
316 /* Used as operand to `operate_exp': */
318 enum operator {PLUS_OP
, MINUS_OP
, POS_MINUS_OP
, EQ_OP
, OR_OP
, MAX_OP
, MIN_OP
, RANGE_OP
};
320 /* Stores, for each insn code, the number of constraint alternatives. */
322 static int *insn_n_alternatives
;
324 /* Stores, for each insn code, a bitmap that has bits on for each possible
327 static int *insn_alternatives
;
329 /* If nonzero, assume that the `alternative' attr has this value.
330 This is the hashed, unique string for the numeral
331 whose value is chosen alternative. */
333 static char *current_alternative_string
;
335 /* Used to simplify expressions. */
337 static rtx true_rtx
, false_rtx
;
339 /* Used to reduce calls to `strcmp' */
341 static char *alternative_name
;
343 /* Simplify an expression. Only call the routine if there is something to
345 #define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \
346 (RTX_UNCHANGING_P (EXP) || MEM_IN_STRUCT_P (EXP) ? (EXP) \
347 : simplify_test_exp (EXP, INSN_CODE, INSN_INDEX))
349 /* Simplify (eq_attr ("alternative") ...)
350 when we are working with a particular alternative. */
351 #define SIMPLIFY_ALTERNATIVE(EXP) \
352 if (current_alternative_string \
353 && GET_CODE ((EXP)) == EQ_ATTR \
354 && XSTR ((EXP), 0) == alternative_name) \
355 (EXP) = (XSTR ((EXP), 1) == current_alternative_string \
356 ? true_rtx : false_rtx);
358 /* These are referenced by rtlanal.c and hence need to be defined somewhere.
359 They won't actually be used. */
361 rtx frame_pointer_rtx
, hard_frame_pointer_rtx
, stack_pointer_rtx
;
364 static rtx attr_rtx
PVPROTO((enum rtx_code
, ...));
366 static char *attr_printf
PVPROTO((int, char *, ...));
368 static char *attr_printf ();
371 static char *attr_string
PROTO((char *, int));
372 static rtx check_attr_test
PROTO((rtx
, int));
373 static rtx check_attr_value
PROTO((rtx
, struct attr_desc
*));
374 static rtx convert_set_attr_alternative
PROTO((rtx
, int, int, int));
375 static rtx convert_set_attr
PROTO((rtx
, int, int, int));
376 static void check_defs
PROTO((void));
377 static rtx convert_const_symbol_ref
PROTO((rtx
, struct attr_desc
*));
378 static rtx make_canonical
PROTO((struct attr_desc
*, rtx
));
379 static struct attr_value
*get_attr_value
PROTO((rtx
, struct attr_desc
*, int));
380 static rtx copy_rtx_unchanging
PROTO((rtx
));
381 static rtx copy_boolean
PROTO((rtx
));
382 static void expand_delays
PROTO((void));
383 static rtx operate_exp
PROTO((enum operator, rtx
, rtx
));
384 static void expand_units
PROTO((void));
385 static rtx simplify_knowing
PROTO((rtx
, rtx
));
386 static rtx encode_units_mask
PROTO((rtx
));
387 static void fill_attr
PROTO((struct attr_desc
*));
388 /* dpx2 compiler chokes if we specify the arg types of the args. */
389 static rtx substitute_address
PROTO((rtx
, rtx (*) (), rtx (*) ()));
390 static void make_length_attrs
PROTO((void));
391 static rtx identity_fn
PROTO((rtx
));
392 static rtx zero_fn
PROTO((rtx
));
393 static rtx one_fn
PROTO((rtx
));
394 static rtx max_fn
PROTO((rtx
));
395 static rtx simplify_cond
PROTO((rtx
, int, int));
396 static rtx simplify_by_alternatives
PROTO((rtx
, int, int));
397 static rtx simplify_by_exploding
PROTO((rtx
));
398 static int find_and_mark_used_attributes
PROTO((rtx
, rtx
*, int *));
399 static void unmark_used_attributes
PROTO((rtx
, struct dimension
*, int));
400 static int add_values_to_cover
PROTO((struct dimension
*));
401 static int increment_current_value
PROTO((struct dimension
*, int));
402 static rtx test_for_current_value
PROTO((struct dimension
*, int));
403 static rtx simplify_with_current_value
PROTO((rtx
, struct dimension
*, int));
404 static rtx simplify_with_current_value_aux
PROTO((rtx
));
405 static void clear_struct_flag
PROTO((rtx
));
406 static int count_sub_rtxs
PROTO((rtx
, int));
407 static void remove_insn_ent
PROTO((struct attr_value
*, struct insn_ent
*));
408 static void insert_insn_ent
PROTO((struct attr_value
*, struct insn_ent
*));
409 static rtx insert_right_side
PROTO((enum rtx_code
, rtx
, rtx
, int, int));
410 static rtx make_alternative_compare
PROTO((int));
411 static int compute_alternative_mask
PROTO((rtx
, enum rtx_code
));
412 static rtx evaluate_eq_attr
PROTO((rtx
, rtx
, int, int));
413 static rtx simplify_and_tree
PROTO((rtx
, rtx
*, int, int));
414 static rtx simplify_or_tree
PROTO((rtx
, rtx
*, int, int));
415 static rtx simplify_test_exp
PROTO((rtx
, int, int));
416 static void optimize_attrs
PROTO((void));
417 static void gen_attr
PROTO((rtx
));
418 static int count_alternatives
PROTO((rtx
));
419 static int compares_alternatives_p
PROTO((rtx
));
420 static int contained_in_p
PROTO((rtx
, rtx
));
421 static void gen_insn
PROTO((rtx
));
422 static void gen_delay
PROTO((rtx
));
423 static void gen_unit
PROTO((rtx
));
424 static void write_test_expr
PROTO((rtx
, int));
425 static int max_attr_value
PROTO((rtx
));
426 static void walk_attr_value
PROTO((rtx
));
427 static void write_attr_get
PROTO((struct attr_desc
*));
428 static rtx eliminate_known_true
PROTO((rtx
, rtx
, int, int));
429 static void write_attr_set
PROTO((struct attr_desc
*, int, rtx
, char *,
430 char *, rtx
, int, int));
431 static void write_attr_case
PROTO((struct attr_desc
*, struct attr_value
*,
432 int, char *, char *, int, rtx
));
433 static void write_attr_valueq
PROTO((struct attr_desc
*, char *));
434 static void write_attr_value
PROTO((struct attr_desc
*, rtx
));
435 static void write_upcase
PROTO((char *));
436 static void write_indent
PROTO((int));
437 static void write_eligible_delay
PROTO((char *));
438 static void write_function_unit_info
PROTO((void));
439 static void write_complex_function
PROTO((struct function_unit
*, char *,
441 static int n_comma_elts
PROTO((char *));
442 static char *next_comma_elt
PROTO((char **));
443 static struct attr_desc
*find_attr
PROTO((char *, int));
444 static void make_internal_attr
PROTO((char *, rtx
, int));
445 static struct attr_value
*find_most_used
PROTO((struct attr_desc
*));
446 static rtx find_single_value
PROTO((struct attr_desc
*));
447 static rtx make_numeric_value
PROTO((int));
448 static void extend_range
PROTO((struct range
*, int, int));
449 char *xrealloc
PROTO((char *, unsigned));
450 char *xmalloc
PROTO((unsigned));
452 #define oballoc(size) obstack_alloc (hash_obstack, size)
455 /* Hash table for sharing RTL and strings. */
457 /* Each hash table slot is a bucket containing a chain of these structures.
458 Strings are given negative hash codes; RTL expressions are given positive
463 struct attr_hash
*next
; /* Next structure in the bucket. */
464 int hashcode
; /* Hash code of this rtx or string. */
467 char *str
; /* The string (negative hash codes) */
468 rtx rtl
; /* or the RTL recorded here. */
472 /* Now here is the hash table. When recording an RTL, it is added to
473 the slot whose index is the hash code mod the table size. Note
474 that the hash table is used for several kinds of RTL (see attr_rtx)
475 and for strings. While all these live in the same table, they are
476 completely independent, and the hash code is computed differently
479 #define RTL_HASH_SIZE 4093
480 struct attr_hash
*attr_hash_table
[RTL_HASH_SIZE
];
482 /* Here is how primitive or already-shared RTL's hash
484 #define RTL_HASH(RTL) ((HOST_WIDE_INT) (RTL) & 0777777)
486 /* Add an entry to the hash table for RTL with hash code HASHCODE. */
489 attr_hash_add_rtx (hashcode
, rtl
)
493 register struct attr_hash
*h
;
495 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
496 sizeof (struct attr_hash
));
497 h
->hashcode
= hashcode
;
499 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
500 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
503 /* Add an entry to the hash table for STRING with hash code HASHCODE. */
506 attr_hash_add_string (hashcode
, str
)
510 register struct attr_hash
*h
;
512 h
= (struct attr_hash
*) obstack_alloc (hash_obstack
,
513 sizeof (struct attr_hash
));
514 h
->hashcode
= -hashcode
;
516 h
->next
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
];
517 attr_hash_table
[hashcode
% RTL_HASH_SIZE
] = h
;
520 /* Generate an RTL expression, but avoid duplicates.
521 Set the RTX_INTEGRATED_P flag for these permanent objects.
523 In some cases we cannot uniquify; then we return an ordinary
524 impermanent rtx with RTX_INTEGRATED_P clear.
526 Args are like gen_rtx, but without the mode:
528 rtx attr_rtx (code, [element1, ..., elementn]) */
532 attr_rtx
VPROTO((enum rtx_code code
, ...))
538 register int i
; /* Array indices... */
539 register char *fmt
; /* Current rtx's format... */
540 register rtx rt_val
; /* RTX to return to caller... */
542 register struct attr_hash
*h
;
543 struct obstack
*old_obstack
= rtl_obstack
;
548 code
= va_arg (p
, enum rtx_code
);
551 /* For each of several cases, search the hash table for an existing entry.
552 Use that entry if one is found; otherwise create a new RTL and add it
555 if (GET_RTX_CLASS (code
) == '1')
557 rtx arg0
= va_arg (p
, rtx
);
559 /* A permanent object cannot point to impermanent ones. */
560 if (! RTX_INTEGRATED_P (arg0
))
562 rt_val
= rtx_alloc (code
);
563 XEXP (rt_val
, 0) = arg0
;
568 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
569 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
570 if (h
->hashcode
== hashcode
571 && GET_CODE (h
->u
.rtl
) == code
572 && XEXP (h
->u
.rtl
, 0) == arg0
)
577 rtl_obstack
= hash_obstack
;
578 rt_val
= rtx_alloc (code
);
579 XEXP (rt_val
, 0) = arg0
;
582 else if (GET_RTX_CLASS (code
) == 'c'
583 || GET_RTX_CLASS (code
) == '2'
584 || GET_RTX_CLASS (code
) == '<')
586 rtx arg0
= va_arg (p
, rtx
);
587 rtx arg1
= va_arg (p
, rtx
);
589 /* A permanent object cannot point to impermanent ones. */
590 if (! RTX_INTEGRATED_P (arg0
) || ! RTX_INTEGRATED_P (arg1
))
592 rt_val
= rtx_alloc (code
);
593 XEXP (rt_val
, 0) = arg0
;
594 XEXP (rt_val
, 1) = arg1
;
599 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
600 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
601 if (h
->hashcode
== hashcode
602 && GET_CODE (h
->u
.rtl
) == code
603 && XEXP (h
->u
.rtl
, 0) == arg0
604 && XEXP (h
->u
.rtl
, 1) == arg1
)
609 rtl_obstack
= hash_obstack
;
610 rt_val
= rtx_alloc (code
);
611 XEXP (rt_val
, 0) = arg0
;
612 XEXP (rt_val
, 1) = arg1
;
615 else if (GET_RTX_LENGTH (code
) == 1
616 && GET_RTX_FORMAT (code
)[0] == 's')
618 char * arg0
= va_arg (p
, char *);
620 if (code
== SYMBOL_REF
)
621 arg0
= attr_string (arg0
, strlen (arg0
));
623 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
));
624 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
625 if (h
->hashcode
== hashcode
626 && GET_CODE (h
->u
.rtl
) == code
627 && XSTR (h
->u
.rtl
, 0) == arg0
)
632 rtl_obstack
= hash_obstack
;
633 rt_val
= rtx_alloc (code
);
634 XSTR (rt_val
, 0) = arg0
;
637 else if (GET_RTX_LENGTH (code
) == 2
638 && GET_RTX_FORMAT (code
)[0] == 's'
639 && GET_RTX_FORMAT (code
)[1] == 's')
641 char *arg0
= va_arg (p
, char *);
642 char *arg1
= va_arg (p
, char *);
644 hashcode
= ((HOST_WIDE_INT
) code
+ RTL_HASH (arg0
) + RTL_HASH (arg1
));
645 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
646 if (h
->hashcode
== hashcode
647 && GET_CODE (h
->u
.rtl
) == code
648 && XSTR (h
->u
.rtl
, 0) == arg0
649 && XSTR (h
->u
.rtl
, 1) == arg1
)
654 rtl_obstack
= hash_obstack
;
655 rt_val
= rtx_alloc (code
);
656 XSTR (rt_val
, 0) = arg0
;
657 XSTR (rt_val
, 1) = arg1
;
660 else if (code
== CONST_INT
)
662 HOST_WIDE_INT arg0
= va_arg (p
, HOST_WIDE_INT
);
672 rt_val
= rtx_alloc (code
); /* Allocate the storage space. */
674 fmt
= GET_RTX_FORMAT (code
); /* Find the right format... */
675 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
679 case '0': /* Unused field. */
682 case 'i': /* An integer? */
683 XINT (rt_val
, i
) = va_arg (p
, int);
686 case 'w': /* A wide integer? */
687 XWINT (rt_val
, i
) = va_arg (p
, HOST_WIDE_INT
);
690 case 's': /* A string? */
691 XSTR (rt_val
, i
) = va_arg (p
, char *);
694 case 'e': /* An expression? */
695 case 'u': /* An insn? Same except when printing. */
696 XEXP (rt_val
, i
) = va_arg (p
, rtx
);
699 case 'E': /* An RTX vector? */
700 XVEC (rt_val
, i
) = va_arg (p
, rtvec
);
711 rtl_obstack
= old_obstack
;
713 attr_hash_add_rtx (hashcode
, rt_val
);
714 RTX_INTEGRATED_P (rt_val
) = 1;
722 /* Create a new string printed with the printf line arguments into a space
723 of at most LEN bytes:
725 rtx attr_printf (len, format, [arg1, ..., argn]) */
731 attr_printf
VPROTO((register int len
, char *fmt
, ...))
743 len
= va_arg (p
, int);
744 fmt
= va_arg (p
, char*);
747 /* Print the string into a temporary location. */
748 str
= (char *) alloca (len
);
749 vsprintf (str
, fmt
, p
);
752 return attr_string (str
, strlen (str
));
755 #else /* not HAVE_VPRINTF */
758 attr_printf (len
, fmt
, arg1
, arg2
, arg3
)
761 char *arg1
, *arg2
, *arg3
; /* also int */
765 /* Print the string into a temporary location. */
766 str
= (char *) alloca (len
);
767 sprintf (str
, fmt
, arg1
, arg2
, arg3
);
769 return attr_string (str
, strlen (str
));
771 #endif /* not HAVE_VPRINTF */
774 attr_eq (name
, value
)
777 return attr_rtx (EQ_ATTR
, attr_string (name
, strlen (name
)),
778 attr_string (value
, strlen (value
)));
785 return XSTR (make_numeric_value (n
), 0);
788 /* Return a permanent (possibly shared) copy of a string STR (not assumed
789 to be null terminated) with LEN bytes. */
792 attr_string (str
, len
)
796 register struct attr_hash
*h
;
799 register char *new_str
;
801 /* Compute the hash code. */
802 hashcode
= (len
+ 1) * 613 + (unsigned)str
[0];
803 for (i
= 1; i
<= len
; i
+= 2)
804 hashcode
= ((hashcode
* 613) + (unsigned)str
[i
]);
806 hashcode
= -hashcode
;
808 /* Search the table for the string. */
809 for (h
= attr_hash_table
[hashcode
% RTL_HASH_SIZE
]; h
; h
= h
->next
)
810 if (h
->hashcode
== -hashcode
&& h
->u
.str
[0] == str
[0]
811 && !strncmp (h
->u
.str
, str
, len
))
812 return h
->u
.str
; /* <-- return if found. */
814 /* Not found; create a permanent copy and add it to the hash table. */
815 new_str
= (char *) obstack_alloc (hash_obstack
, len
+ 1);
816 bcopy (str
, new_str
, len
);
818 attr_hash_add_string (hashcode
, new_str
);
820 return new_str
; /* Return the new string. */
823 /* Check two rtx's for equality of contents,
824 taking advantage of the fact that if both are hashed
825 then they can't be equal unless they are the same object. */
831 return (x
== y
|| (! (RTX_INTEGRATED_P (x
) && RTX_INTEGRATED_P (y
))
832 && rtx_equal_p (x
, y
)));
835 /* Copy an attribute value expression,
836 descending to all depths, but not copying any
837 permanent hashed subexpressions. */
845 register RTX_CODE code
;
846 register char *format_ptr
;
848 /* No need to copy a permanent object. */
849 if (RTX_INTEGRATED_P (orig
))
852 code
= GET_CODE (orig
);
867 copy
= rtx_alloc (code
);
868 PUT_MODE (copy
, GET_MODE (orig
));
869 copy
->in_struct
= orig
->in_struct
;
870 copy
->volatil
= orig
->volatil
;
871 copy
->unchanging
= orig
->unchanging
;
872 copy
->integrated
= orig
->integrated
;
874 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
876 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
878 switch (*format_ptr
++)
881 XEXP (copy
, i
) = XEXP (orig
, i
);
882 if (XEXP (orig
, i
) != NULL
)
883 XEXP (copy
, i
) = attr_copy_rtx (XEXP (orig
, i
));
888 XVEC (copy
, i
) = XVEC (orig
, i
);
889 if (XVEC (orig
, i
) != NULL
)
891 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
892 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
893 XVECEXP (copy
, i
, j
) = attr_copy_rtx (XVECEXP (orig
, i
, j
));
899 XINT (copy
, i
) = XINT (orig
, i
);
903 XWINT (copy
, i
) = XWINT (orig
, i
);
908 XSTR (copy
, i
) = XSTR (orig
, i
);
918 /* Given a test expression for an attribute, ensure it is validly formed.
919 IS_CONST indicates whether the expression is constant for each compiler
920 run (a constant expression may not test any particular insn).
922 Convert (eq_attr "att" "a1,a2") to (ior (eq_attr ... ) (eq_attrq ..))
923 and (eq_attr "att" "!a1") to (not (eq_attr "att" "a1")). Do the latter
924 test first so that (eq_attr "att" "!a1,a2,a3") works as expected.
926 Update the string address in EQ_ATTR expression to be the same used
927 in the attribute (or `alternative_name') to speed up subsequent
928 `find_attr' calls and eliminate most `strcmp' calls.
930 Return the new expression, if any. */
933 check_attr_test (exp
, is_const
)
937 struct attr_desc
*attr
;
938 struct attr_value
*av
;
942 switch (GET_CODE (exp
))
945 /* Handle negation test. */
946 if (XSTR (exp
, 1)[0] == '!')
947 return check_attr_test (attr_rtx (NOT
,
948 attr_eq (XSTR (exp
, 0),
952 else if (n_comma_elts (XSTR (exp
, 1)) == 1)
954 attr
= find_attr (XSTR (exp
, 0), 0);
957 if (! strcmp (XSTR (exp
, 0), "alternative"))
959 XSTR (exp
, 0) = alternative_name
;
960 /* This can't be simplified any further. */
961 RTX_UNCHANGING_P (exp
) = 1;
965 fatal ("Unknown attribute `%s' in EQ_ATTR", XEXP (exp
, 0));
968 if (is_const
&& ! attr
->is_const
)
969 fatal ("Constant expression uses insn attribute `%s' in EQ_ATTR",
972 /* Copy this just to make it permanent,
973 so expressions using it can be permanent too. */
974 exp
= attr_eq (XSTR (exp
, 0), XSTR (exp
, 1));
976 /* It shouldn't be possible to simplify the value given to a
977 constant attribute, so don't expand this until it's time to
978 write the test expression. */
980 RTX_UNCHANGING_P (exp
) = 1;
982 if (attr
->is_numeric
)
984 for (p
= XSTR (exp
, 1); *p
; p
++)
985 if (*p
< '0' || *p
> '9')
986 fatal ("Attribute `%s' takes only numeric values",
991 for (av
= attr
->first_value
; av
; av
= av
->next
)
992 if (GET_CODE (av
->value
) == CONST_STRING
993 && ! strcmp (XSTR (exp
, 1), XSTR (av
->value
, 0)))
997 fatal ("Unknown value `%s' for `%s' attribute",
998 XEXP (exp
, 1), XEXP (exp
, 0));
1003 /* Make an IOR tree of the possible values. */
1005 name_ptr
= XSTR (exp
, 1);
1006 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1008 newexp
= attr_eq (XSTR (exp
, 0), p
);
1009 orexp
= insert_right_side (IOR
, orexp
, newexp
, -2, -2);
1012 return check_attr_test (orexp
, is_const
);
1020 /* Either TRUE or FALSE. */
1028 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
);
1029 XEXP (exp
, 1) = check_attr_test (XEXP (exp
, 1), is_const
);
1033 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0), is_const
);
1038 fatal ("RTL operator \"%s\" not valid in constant attribute test",
1039 GET_RTX_NAME (MATCH_OPERAND
));
1040 /* These cases can't be simplified. */
1041 RTX_UNCHANGING_P (exp
) = 1;
1044 case LE
: case LT
: case GT
: case GE
:
1045 case LEU
: case LTU
: case GTU
: case GEU
:
1047 if (GET_CODE (XEXP (exp
, 0)) == SYMBOL_REF
1048 && GET_CODE (XEXP (exp
, 1)) == SYMBOL_REF
)
1049 exp
= attr_rtx (GET_CODE (exp
),
1050 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 0), 0)),
1051 attr_rtx (SYMBOL_REF
, XSTR (XEXP (exp
, 1), 0)));
1052 /* These cases can't be simplified. */
1053 RTX_UNCHANGING_P (exp
) = 1;
1059 /* These cases are valid for constant attributes, but can't be
1061 exp
= attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1062 RTX_UNCHANGING_P (exp
) = 1;
1066 fatal ("RTL operator \"%s\" not valid in attribute test",
1067 GET_RTX_NAME (GET_CODE (exp
)));
1073 /* Given an expression, ensure that it is validly formed and that all named
1074 attribute values are valid for the given attribute. Issue a fatal error
1075 if not. If no attribute is specified, assume a numeric attribute.
1077 Return a perhaps modified replacement expression for the value. */
1080 check_attr_value (exp
, attr
)
1082 struct attr_desc
*attr
;
1084 struct attr_value
*av
;
1088 switch (GET_CODE (exp
))
1091 if (attr
&& ! attr
->is_numeric
)
1092 fatal ("CONST_INT not valid for non-numeric `%s' attribute",
1095 if (INTVAL (exp
) < 0)
1096 fatal ("Negative numeric value specified for `%s' attribute",
1102 if (! strcmp (XSTR (exp
, 0), "*"))
1105 if (attr
== 0 || attr
->is_numeric
)
1108 if (attr
&& attr
->negative_ok
&& *p
== '-')
1111 if (*p
> '9' || *p
< '0')
1112 fatal ("Non-numeric value for numeric `%s' attribute",
1113 attr
? attr
->name
: "internal");
1117 for (av
= attr
->first_value
; av
; av
= av
->next
)
1118 if (GET_CODE (av
->value
) == CONST_STRING
1119 && ! strcmp (XSTR (av
->value
, 0), XSTR (exp
, 0)))
1123 fatal ("Unknown value `%s' for `%s' attribute",
1124 XSTR (exp
, 0), attr
? attr
->name
: "internal");
1129 XEXP (exp
, 0) = check_attr_test (XEXP (exp
, 0),
1130 attr
? attr
->is_const
: 0);
1131 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1132 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
1136 if (XVECLEN (exp
, 0) % 2 != 0)
1137 fatal ("First operand of COND must have even length");
1139 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1141 XVECEXP (exp
, 0, i
) = check_attr_test (XVECEXP (exp
, 0, i
),
1142 attr
? attr
->is_const
: 0);
1143 XVECEXP (exp
, 0, i
+ 1)
1144 = check_attr_value (XVECEXP (exp
, 0, i
+ 1), attr
);
1147 XEXP (exp
, 1) = check_attr_value (XEXP (exp
, 1), attr
);
1151 if (attr
&& attr
->is_const
)
1152 /* A constant SYMBOL_REF is valid as a constant attribute test and
1153 is expanded later by make_canonical into a COND. */
1154 return attr_rtx (SYMBOL_REF
, XSTR (exp
, 0));
1155 /* Otherwise, fall through... */
1158 fatal ("Invalid operation `%s' for attribute value",
1159 GET_RTX_NAME (GET_CODE (exp
)));
1165 /* Given an SET_ATTR_ALTERNATIVE expression, convert to the canonical SET.
1166 It becomes a COND with each test being (eq_attr "alternative "n") */
1169 convert_set_attr_alternative (exp
, num_alt
, insn_code
, insn_index
)
1172 int insn_code
, insn_index
;
1177 if (XVECLEN (exp
, 1) != num_alt
)
1178 fatal ("Bad number of entries in SET_ATTR_ALTERNATIVE for insn %d",
1181 /* Make a COND with all tests but the last. Select the last value via the
1183 condexp
= rtx_alloc (COND
);
1184 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1186 for (i
= 0; i
< num_alt
- 1; i
++)
1189 p
= attr_numeral (i
);
1191 XVECEXP (condexp
, 0, 2 * i
) = attr_eq (alternative_name
, p
);
1193 /* Sharing this EQ_ATTR rtl causes trouble. */
1194 XVECEXP (condexp
, 0, 2 * i
) = rtx_alloc (EQ_ATTR
);
1195 XSTR (XVECEXP (condexp
, 0, 2 * i
), 0) = alternative_name
;
1196 XSTR (XVECEXP (condexp
, 0, 2 * i
), 1) = p
;
1198 XVECEXP (condexp
, 0, 2 * i
+ 1) = XVECEXP (exp
, 1, i
);
1201 XEXP (condexp
, 1) = XVECEXP (exp
, 1, i
);
1203 return attr_rtx (SET
, attr_rtx (ATTR
, XSTR (exp
, 0)), condexp
);
1206 /* Given a SET_ATTR, convert to the appropriate SET. If a comma-separated
1207 list of values is given, convert to SET_ATTR_ALTERNATIVE first. */
1210 convert_set_attr (exp
, num_alt
, insn_code
, insn_index
)
1213 int insn_code
, insn_index
;
1220 /* See how many alternative specified. */
1221 n
= n_comma_elts (XSTR (exp
, 1));
1223 return attr_rtx (SET
,
1224 attr_rtx (ATTR
, XSTR (exp
, 0)),
1225 attr_rtx (CONST_STRING
, XSTR (exp
, 1)));
1227 newexp
= rtx_alloc (SET_ATTR_ALTERNATIVE
);
1228 XSTR (newexp
, 0) = XSTR (exp
, 0);
1229 XVEC (newexp
, 1) = rtvec_alloc (n
);
1231 /* Process each comma-separated name. */
1232 name_ptr
= XSTR (exp
, 1);
1234 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
1235 XVECEXP (newexp
, 1, n
++) = attr_rtx (CONST_STRING
, p
);
1237 return convert_set_attr_alternative (newexp
, num_alt
, insn_code
, insn_index
);
1240 /* Scan all definitions, checking for validity. Also, convert any SET_ATTR
1241 and SET_ATTR_ALTERNATIVE expressions to the corresponding SET
1247 struct insn_def
*id
;
1248 struct attr_desc
*attr
;
1252 for (id
= defs
; id
; id
= id
->next
)
1254 if (XVEC (id
->def
, id
->vec_idx
) == NULL
)
1257 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
1259 value
= XVECEXP (id
->def
, id
->vec_idx
, i
);
1260 switch (GET_CODE (value
))
1263 if (GET_CODE (XEXP (value
, 0)) != ATTR
)
1264 fatal ("Bad attribute set in pattern %d", id
->insn_index
);
1267 case SET_ATTR_ALTERNATIVE
:
1268 value
= convert_set_attr_alternative (value
,
1269 id
->num_alternatives
,
1275 value
= convert_set_attr (value
, id
->num_alternatives
,
1276 id
->insn_code
, id
->insn_index
);
1280 fatal ("Invalid attribute code `%s' for pattern %d",
1281 GET_RTX_NAME (GET_CODE (value
)), id
->insn_index
);
1284 if ((attr
= find_attr (XSTR (XEXP (value
, 0), 0), 0)) == NULL
)
1285 fatal ("Unknown attribute `%s' for pattern number %d",
1286 XSTR (XEXP (value
, 0), 0), id
->insn_index
);
1288 XVECEXP (id
->def
, id
->vec_idx
, i
) = value
;
1289 XEXP (value
, 1) = check_attr_value (XEXP (value
, 1), attr
);
1294 /* Given a constant SYMBOL_REF expression, convert to a COND that
1295 explicitly tests each enumerated value. */
1298 convert_const_symbol_ref (exp
, attr
)
1300 struct attr_desc
*attr
;
1303 struct attr_value
*av
;
1307 for (av
= attr
->first_value
; av
; av
= av
->next
)
1310 /* Make a COND with all tests but the last, and in the original order.
1311 Select the last value via the default. Note that the attr values
1312 are constructed in reverse order. */
1314 condexp
= rtx_alloc (COND
);
1315 XVEC (condexp
, 0) = rtvec_alloc ((num_alt
- 1) * 2);
1316 av
= attr
->first_value
;
1317 XEXP (condexp
, 1) = av
->value
;
1319 for (i
= num_alt
- 2; av
= av
->next
, i
>= 0; i
--)
1324 string
= p
= (char *) oballoc (2
1325 + strlen (attr
->name
)
1326 + strlen (XSTR (av
->value
, 0)));
1327 strcpy (p
, attr
->name
);
1329 strcat (p
, XSTR (av
->value
, 0));
1330 for (; *p
!= '\0'; p
++)
1331 if (*p
>= 'a' && *p
<= 'z')
1334 value
= attr_rtx (SYMBOL_REF
, string
);
1335 RTX_UNCHANGING_P (value
) = 1;
1337 XVECEXP (condexp
, 0, 2 * i
) = attr_rtx (EQ
, exp
, value
);
1339 XVECEXP (condexp
, 0, 2 * i
+ 1) = av
->value
;
1345 /* Given a valid expression for an attribute value, remove any IF_THEN_ELSE
1346 expressions by converting them into a COND. This removes cases from this
1347 program. Also, replace an attribute value of "*" with the default attribute
1351 make_canonical (attr
, exp
)
1352 struct attr_desc
*attr
;
1358 switch (GET_CODE (exp
))
1361 exp
= make_numeric_value (INTVAL (exp
));
1365 if (! strcmp (XSTR (exp
, 0), "*"))
1367 if (attr
== 0 || attr
->default_val
== 0)
1368 fatal ("(attr_value \"*\") used in invalid context.");
1369 exp
= attr
->default_val
->value
;
1375 if (!attr
->is_const
|| RTX_UNCHANGING_P (exp
))
1377 /* The SYMBOL_REF is constant for a given run, so mark it as unchanging.
1378 This makes the COND something that won't be considered an arbitrary
1379 expression by walk_attr_value. */
1380 RTX_UNCHANGING_P (exp
) = 1;
1381 exp
= convert_const_symbol_ref (exp
, attr
);
1382 RTX_UNCHANGING_P (exp
) = 1;
1383 exp
= check_attr_value (exp
, attr
);
1384 /* Goto COND case since this is now a COND. Note that while the
1385 new expression is rescanned, all symbol_ref notes are mared as
1390 newexp
= rtx_alloc (COND
);
1391 XVEC (newexp
, 0) = rtvec_alloc (2);
1392 XVECEXP (newexp
, 0, 0) = XEXP (exp
, 0);
1393 XVECEXP (newexp
, 0, 1) = XEXP (exp
, 1);
1395 XEXP (newexp
, 1) = XEXP (exp
, 2);
1398 /* Fall through to COND case since this is now a COND. */
1406 /* First, check for degenerate COND. */
1407 if (XVECLEN (exp
, 0) == 0)
1408 return make_canonical (attr
, XEXP (exp
, 1));
1409 defval
= XEXP (exp
, 1) = make_canonical (attr
, XEXP (exp
, 1));
1411 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
1413 XVECEXP (exp
, 0, i
) = copy_boolean (XVECEXP (exp
, 0, i
));
1414 XVECEXP (exp
, 0, i
+ 1)
1415 = make_canonical (attr
, XVECEXP (exp
, 0, i
+ 1));
1416 if (! rtx_equal_p (XVECEXP (exp
, 0, i
+ 1), defval
))
1432 if (GET_CODE (exp
) == AND
|| GET_CODE (exp
) == IOR
)
1433 return attr_rtx (GET_CODE (exp
), copy_boolean (XEXP (exp
, 0)),
1434 copy_boolean (XEXP (exp
, 1)));
1438 /* Given a value and an attribute description, return a `struct attr_value *'
1439 that represents that value. This is either an existing structure, if the
1440 value has been previously encountered, or a newly-created structure.
1442 `insn_code' is the code of an insn whose attribute has the specified
1443 value (-2 if not processing an insn). We ensure that all insns for
1444 a given value have the same number of alternatives if the value checks
1447 static struct attr_value
*
1448 get_attr_value (value
, attr
, insn_code
)
1450 struct attr_desc
*attr
;
1453 struct attr_value
*av
;
1456 value
= make_canonical (attr
, value
);
1457 if (compares_alternatives_p (value
))
1459 if (insn_code
< 0 || insn_alternatives
== NULL
)
1460 fatal ("(eq_attr \"alternatives\" ...) used in non-insn context");
1462 num_alt
= insn_alternatives
[insn_code
];
1465 for (av
= attr
->first_value
; av
; av
= av
->next
)
1466 if (rtx_equal_p (value
, av
->value
)
1467 && (num_alt
== 0 || av
->first_insn
== NULL
1468 || insn_alternatives
[av
->first_insn
->insn_code
]))
1471 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
1473 av
->next
= attr
->first_value
;
1474 attr
->first_value
= av
;
1475 av
->first_insn
= NULL
;
1477 av
->has_asm_insn
= 0;
1482 /* After all DEFINE_DELAYs have been read in, create internal attributes
1483 to generate the required routines.
1485 First, we compute the number of delay slots for each insn (as a COND of
1486 each of the test expressions in DEFINE_DELAYs). Then, if more than one
1487 delay type is specified, we compute a similar function giving the
1488 DEFINE_DELAY ordinal for each insn.
1490 Finally, for each [DEFINE_DELAY, slot #] pair, we compute an attribute that
1491 tells whether a given insn can be in that delay slot.
1493 Normal attribute filling and optimization expands these to contain the
1494 information needed to handle delay slots. */
1499 struct delay_desc
*delay
;
1505 /* First, generate data for `num_delay_slots' function. */
1507 condexp
= rtx_alloc (COND
);
1508 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1509 XEXP (condexp
, 1) = make_numeric_value (0);
1511 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1513 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1514 XVECEXP (condexp
, 0, i
+ 1)
1515 = make_numeric_value (XVECLEN (delay
->def
, 1) / 3);
1518 make_internal_attr ("*num_delay_slots", condexp
, 0);
1520 /* If more than one delay type, do the same for computing the delay type. */
1523 condexp
= rtx_alloc (COND
);
1524 XVEC (condexp
, 0) = rtvec_alloc (num_delays
* 2);
1525 XEXP (condexp
, 1) = make_numeric_value (0);
1527 for (i
= 0, delay
= delays
; delay
; i
+= 2, delay
= delay
->next
)
1529 XVECEXP (condexp
, 0, i
) = XEXP (delay
->def
, 0);
1530 XVECEXP (condexp
, 0, i
+ 1) = make_numeric_value (delay
->num
);
1533 make_internal_attr ("*delay_type", condexp
, 1);
1536 /* For each delay possibility and delay slot, compute an eligibility
1537 attribute for non-annulled insns and for each type of annulled (annul
1538 if true and annul if false). */
1539 for (delay
= delays
; delay
; delay
= delay
->next
)
1541 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
1543 condexp
= XVECEXP (delay
->def
, 1, i
);
1544 if (condexp
== 0) condexp
= false_rtx
;
1545 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1546 make_numeric_value (1), make_numeric_value (0));
1548 p
= attr_printf (sizeof ("*delay__") + MAX_DIGITS
*2, "*delay_%d_%d",
1550 make_internal_attr (p
, newexp
, 1);
1552 if (have_annul_true
)
1554 condexp
= XVECEXP (delay
->def
, 1, i
+ 1);
1555 if (condexp
== 0) condexp
= false_rtx
;
1556 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1557 make_numeric_value (1),
1558 make_numeric_value (0));
1559 p
= attr_printf (sizeof ("*annul_true__") + MAX_DIGITS
*2,
1560 "*annul_true_%d_%d", delay
->num
, i
/ 3);
1561 make_internal_attr (p
, newexp
, 1);
1564 if (have_annul_false
)
1566 condexp
= XVECEXP (delay
->def
, 1, i
+ 2);
1567 if (condexp
== 0) condexp
= false_rtx
;
1568 newexp
= attr_rtx (IF_THEN_ELSE
, condexp
,
1569 make_numeric_value (1),
1570 make_numeric_value (0));
1571 p
= attr_printf (sizeof ("*annul_false__") + MAX_DIGITS
*2,
1572 "*annul_false_%d_%d", delay
->num
, i
/ 3);
1573 make_internal_attr (p
, newexp
, 1);
1579 /* This function is given a left and right side expression and an operator.
1580 Each side is a conditional expression, each alternative of which has a
1581 numerical value. The function returns another conditional expression
1582 which, for every possible set of condition values, returns a value that is
1583 the operator applied to the values of the two sides.
1585 Since this is called early, it must also support IF_THEN_ELSE. */
1588 operate_exp (op
, left
, right
)
1592 int left_value
, right_value
;
1596 /* If left is a string, apply operator to it and the right side. */
1597 if (GET_CODE (left
) == CONST_STRING
)
1599 /* If right is also a string, just perform the operation. */
1600 if (GET_CODE (right
) == CONST_STRING
)
1602 left_value
= atoi (XSTR (left
, 0));
1603 right_value
= atoi (XSTR (right
, 0));
1607 i
= left_value
+ right_value
;
1611 i
= left_value
- right_value
;
1614 case POS_MINUS_OP
: /* The positive part of LEFT - RIGHT. */
1615 if (left_value
> right_value
)
1616 i
= left_value
- right_value
;
1622 i
= left_value
| right_value
;
1626 i
= left_value
== right_value
;
1630 i
= (left_value
<< (HOST_BITS_PER_INT
/ 2)) | right_value
;
1634 if (left_value
> right_value
)
1641 if (left_value
< right_value
)
1651 return make_numeric_value (i
);
1653 else if (GET_CODE (right
) == IF_THEN_ELSE
)
1655 /* Apply recursively to all values within. */
1656 rtx newleft
= operate_exp (op
, left
, XEXP (right
, 1));
1657 rtx newright
= operate_exp (op
, left
, XEXP (right
, 2));
1658 if (rtx_equal_p (newleft
, newright
))
1660 return attr_rtx (IF_THEN_ELSE
, XEXP (right
, 0), newleft
, newright
);
1662 else if (GET_CODE (right
) == COND
)
1667 newexp
= rtx_alloc (COND
);
1668 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (right
, 0));
1669 defval
= XEXP (newexp
, 1) = operate_exp (op
, left
, XEXP (right
, 1));
1671 for (i
= 0; i
< XVECLEN (right
, 0); i
+= 2)
1673 XVECEXP (newexp
, 0, i
) = XVECEXP (right
, 0, i
);
1674 XVECEXP (newexp
, 0, i
+ 1)
1675 = operate_exp (op
, left
, XVECEXP (right
, 0, i
+ 1));
1676 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1681 /* If the resulting cond is trivial (all alternatives
1682 give the same value), optimize it away. */
1685 obstack_free (rtl_obstack
, newexp
);
1686 return operate_exp (op
, left
, XEXP (right
, 1));
1689 /* If the result is the same as the RIGHT operand,
1691 if (rtx_equal_p (newexp
, right
))
1693 obstack_free (rtl_obstack
, newexp
);
1700 fatal ("Badly formed attribute value");
1703 /* Otherwise, do recursion the other way. */
1704 else if (GET_CODE (left
) == IF_THEN_ELSE
)
1706 rtx newleft
= operate_exp (op
, XEXP (left
, 1), right
);
1707 rtx newright
= operate_exp (op
, XEXP (left
, 2), right
);
1708 if (rtx_equal_p (newleft
, newright
))
1710 return attr_rtx (IF_THEN_ELSE
, XEXP (left
, 0), newleft
, newright
);
1712 else if (GET_CODE (left
) == COND
)
1717 newexp
= rtx_alloc (COND
);
1718 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (left
, 0));
1719 defval
= XEXP (newexp
, 1) = operate_exp (op
, XEXP (left
, 1), right
);
1721 for (i
= 0; i
< XVECLEN (left
, 0); i
+= 2)
1723 XVECEXP (newexp
, 0, i
) = XVECEXP (left
, 0, i
);
1724 XVECEXP (newexp
, 0, i
+ 1)
1725 = operate_exp (op
, XVECEXP (left
, 0, i
+ 1), right
);
1726 if (! rtx_equal_p (XVECEXP (newexp
, 0, i
+ 1),
1731 /* If the cond is trivial (all alternatives give the same value),
1732 optimize it away. */
1735 obstack_free (rtl_obstack
, newexp
);
1736 return operate_exp (op
, XEXP (left
, 1), right
);
1739 /* If the result is the same as the LEFT operand,
1741 if (rtx_equal_p (newexp
, left
))
1743 obstack_free (rtl_obstack
, newexp
);
1751 fatal ("Badly formed attribute value.");
1756 /* Once all attributes and DEFINE_FUNCTION_UNITs have been read, we
1757 construct a number of attributes.
1759 The first produces a function `function_units_used' which is given an
1760 insn and produces an encoding showing which function units are required
1761 for the execution of that insn. If the value is non-negative, the insn
1762 uses that unit; otherwise, the value is a one's compliment mask of units
1765 The second produces a function `result_ready_cost' which is used to
1766 determine the time that the result of an insn will be ready and hence
1767 a worst-case schedule.
1769 Both of these produce quite complex expressions which are then set as the
1770 default value of internal attributes. Normal attribute simplification
1771 should produce reasonable expressions.
1773 For each unit, a `<name>_unit_ready_cost' function will take an
1774 insn and give the delay until that unit will be ready with the result
1775 and a `<name>_unit_conflict_cost' function is given an insn already
1776 executing on the unit and a candidate to execute and will give the
1777 cost from the time the executing insn started until the candidate
1778 can start (ignore limitations on the number of simultaneous insns).
1780 For each unit, a `<name>_unit_blockage' function is given an insn
1781 already executing on the unit and a candidate to execute and will
1782 give the delay incurred due to function unit conflicts. The range of
1783 blockage cost values for a given executing insn is given by the
1784 `<name>_unit_blockage_range' function. These values are encoded in
1785 an int where the upper half gives the minimum value and the lower
1786 half gives the maximum value. */
1791 struct function_unit
*unit
, **unit_num
;
1792 struct function_unit_op
*op
, **op_array
, ***unit_ops
;
1797 int i
, j
, u
, num
, nvalues
;
1799 /* Rebuild the condition for the unit to share the RTL expressions.
1800 Sharing is required by simplify_by_exploding. Build the issue delay
1801 expressions. Validate the expressions we were given for the conditions
1802 and conflict vector. Then make attributes for use in the conflict
1805 for (unit
= units
; unit
; unit
= unit
->next
)
1807 unit
->condexp
= check_attr_test (unit
->condexp
, 0);
1809 for (op
= unit
->ops
; op
; op
= op
->next
)
1811 rtx issue_delay
= make_numeric_value (op
->issue_delay
);
1812 rtx issue_exp
= issue_delay
;
1814 /* Build, validate, and simplify the issue delay expression. */
1815 if (op
->conflict_exp
!= true_rtx
)
1816 issue_exp
= attr_rtx (IF_THEN_ELSE
, op
->conflict_exp
,
1817 issue_exp
, make_numeric_value (0));
1818 issue_exp
= check_attr_value (make_canonical (NULL_ATTR
,
1821 issue_exp
= simplify_knowing (issue_exp
, unit
->condexp
);
1822 op
->issue_exp
= issue_exp
;
1824 /* Make an attribute for use in the conflict function if needed. */
1825 unit
->needs_conflict_function
= (unit
->issue_delay
.min
1826 != unit
->issue_delay
.max
);
1827 if (unit
->needs_conflict_function
)
1829 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cost_") + MAX_DIGITS
,
1830 "*%s_cost_%d", unit
->name
, op
->num
);
1831 make_internal_attr (str
, issue_exp
, 1);
1834 /* Validate the condition. */
1835 op
->condexp
= check_attr_test (op
->condexp
, 0);
1839 /* Compute the mask of function units used. Initially, the unitsmask is
1840 zero. Set up a conditional to compute each unit's contribution. */
1841 unitsmask
= make_numeric_value (0);
1842 newexp
= rtx_alloc (IF_THEN_ELSE
);
1843 XEXP (newexp
, 2) = make_numeric_value (0);
1845 /* Merge each function unit into the unit mask attributes. */
1846 for (unit
= units
; unit
; unit
= unit
->next
)
1848 XEXP (newexp
, 0) = unit
->condexp
;
1849 XEXP (newexp
, 1) = make_numeric_value (1 << unit
->num
);
1850 unitsmask
= operate_exp (OR_OP
, unitsmask
, newexp
);
1853 /* Simplify the unit mask expression, encode it, and make an attribute
1854 for the function_units_used function. */
1855 unitsmask
= simplify_by_exploding (unitsmask
);
1856 unitsmask
= encode_units_mask (unitsmask
);
1857 make_internal_attr ("*function_units_used", unitsmask
, 2);
1859 /* Create an array of ops for each unit. Add an extra unit for the
1860 result_ready_cost function that has the ops of all other units. */
1861 unit_ops
= (struct function_unit_op
***)
1862 alloca ((num_units
+ 1) * sizeof (struct function_unit_op
**));
1863 unit_num
= (struct function_unit
**)
1864 alloca ((num_units
+ 1) * sizeof (struct function_unit
*));
1866 unit_num
[num_units
] = unit
= (struct function_unit
*)
1867 alloca (sizeof (struct function_unit
));
1868 unit
->num
= num_units
;
1869 unit
->num_opclasses
= 0;
1871 for (unit
= units
; unit
; unit
= unit
->next
)
1873 unit_num
[num_units
]->num_opclasses
+= unit
->num_opclasses
;
1874 unit_num
[unit
->num
] = unit
;
1875 unit_ops
[unit
->num
] = op_array
= (struct function_unit_op
**)
1876 alloca (unit
->num_opclasses
* sizeof (struct function_unit_op
*));
1878 for (op
= unit
->ops
; op
; op
= op
->next
)
1879 op_array
[op
->num
] = op
;
1882 /* Compose the array of ops for the extra unit. */
1883 unit_ops
[num_units
] = op_array
= (struct function_unit_op
**)
1884 alloca (unit_num
[num_units
]->num_opclasses
1885 * sizeof (struct function_unit_op
*));
1887 for (unit
= units
, i
= 0; unit
; i
+= unit
->num_opclasses
, unit
= unit
->next
)
1888 bcopy ((char *) unit_ops
[unit
->num
], (char *) &op_array
[i
],
1889 unit
->num_opclasses
* sizeof (struct function_unit_op
*));
1891 /* Compute the ready cost function for each unit by computing the
1892 condition for each non-default value. */
1893 for (u
= 0; u
<= num_units
; u
++)
1899 op_array
= unit_ops
[unit
->num
];
1900 num
= unit
->num_opclasses
;
1902 /* Sort the array of ops into increasing ready cost order. */
1903 for (i
= 0; i
< num
; i
++)
1904 for (j
= num
- 1; j
> i
; j
--)
1905 if (op_array
[j
-1]->ready
< op_array
[j
]->ready
)
1908 op_array
[j
] = op_array
[j
-1];
1912 /* Determine how many distinct non-default ready cost values there
1913 are. We use a default ready cost value of 1. */
1914 nvalues
= 0; value
= 1;
1915 for (i
= num
- 1; i
>= 0; i
--)
1916 if (op_array
[i
]->ready
> value
)
1918 value
= op_array
[i
]->ready
;
1923 readycost
= make_numeric_value (1);
1926 /* Construct the ready cost expression as a COND of each value from
1927 the largest to the smallest. */
1928 readycost
= rtx_alloc (COND
);
1929 XVEC (readycost
, 0) = rtvec_alloc (nvalues
* 2);
1930 XEXP (readycost
, 1) = make_numeric_value (1);
1932 nvalues
= 0; orexp
= false_rtx
; value
= op_array
[0]->ready
;
1933 for (i
= 0; i
< num
; i
++)
1938 else if (op
->ready
== value
)
1939 orexp
= insert_right_side (IOR
, orexp
, op
->condexp
, -2, -2);
1942 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
1943 XVECEXP (readycost
, 0, nvalues
* 2 + 1)
1944 = make_numeric_value (value
);
1947 orexp
= op
->condexp
;
1950 XVECEXP (readycost
, 0, nvalues
* 2) = orexp
;
1951 XVECEXP (readycost
, 0, nvalues
* 2 + 1) = make_numeric_value (value
);
1956 rtx max_blockage
= 0, min_blockage
= 0;
1958 /* Simplify the readycost expression by only considering insns
1959 that use the unit. */
1960 readycost
= simplify_knowing (readycost
, unit
->condexp
);
1962 /* Determine the blockage cost the executing insn (E) given
1963 the candidate insn (C). This is the maximum of the issue
1964 delay, the pipeline delay, and the simultaneity constraint.
1965 Each function_unit_op represents the characteristics of the
1966 candidate insn, so in the expressions below, C is a known
1967 term and E is an unknown term.
1969 We compute the blockage cost for each E for every possible C.
1970 Thus OP represents E, and READYCOST is a list of values for
1973 The issue delay function for C is op->issue_exp and is used to
1974 write the `<name>_unit_conflict_cost' function. Symbolicly
1975 this is "ISSUE-DELAY (E,C)".
1977 The pipeline delay results form the FIFO constraint on the
1978 function unit and is "READY-COST (E) + 1 - READY-COST (C)".
1980 The simultaneity constraint is based on how long it takes to
1981 fill the unit given the minimum issue delay. FILL-TIME is the
1982 constant "MIN (ISSUE-DELAY (*,*)) * (SIMULTANEITY - 1)", and
1983 the simultaneity constraint is "READY-COST (E) - FILL-TIME"
1984 if SIMULTANEITY is non-zero and zero otherwise.
1986 Thus, BLOCKAGE (E,C) when SIMULTANEITY is zero is
1988 MAX (ISSUE-DELAY (E,C),
1989 READY-COST (E) - (READY-COST (C) - 1))
1993 MAX (ISSUE-DELAY (E,C),
1994 READY-COST (E) - (READY-COST (C) - 1),
1995 READY-COST (E) - FILL-TIME)
1997 The `<name>_unit_blockage' function is computed by determining
1998 this value for each candidate insn. As these values are
1999 computed, we also compute the upper and lower bounds for
2000 BLOCKAGE (E,*). These are combined to form the function
2001 `<name>_unit_blockage_range'. Finally, the maximum blockage
2002 cost, MAX (BLOCKAGE (*,*)), is computed. */
2004 for (op
= unit
->ops
; op
; op
= op
->next
)
2006 rtx blockage
= operate_exp (POS_MINUS_OP
, readycost
,
2007 make_numeric_value (1));
2009 if (unit
->simultaneity
!= 0)
2011 rtx filltime
= make_numeric_value ((unit
->simultaneity
- 1)
2012 * unit
->issue_delay
.min
);
2013 blockage
= operate_exp (MIN_OP
, blockage
, filltime
);
2016 blockage
= operate_exp (POS_MINUS_OP
,
2017 make_numeric_value (op
->ready
),
2020 blockage
= operate_exp (MAX_OP
, blockage
, op
->issue_exp
);
2021 blockage
= simplify_knowing (blockage
, unit
->condexp
);
2023 /* Add this op's contribution to MAX (BLOCKAGE (E,*)) and
2024 MIN (BLOCKAGE (E,*)). */
2025 if (max_blockage
== 0)
2026 max_blockage
= min_blockage
= blockage
;
2030 = simplify_knowing (operate_exp (MAX_OP
, max_blockage
,
2034 = simplify_knowing (operate_exp (MIN_OP
, min_blockage
,
2039 /* Make an attribute for use in the blockage function. */
2040 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_block_") + MAX_DIGITS
,
2041 "*%s_block_%d", unit
->name
, op
->num
);
2042 make_internal_attr (str
, blockage
, 1);
2045 /* Record MAX (BLOCKAGE (*,*)). */
2046 unit
->max_blockage
= max_attr_value (max_blockage
);
2048 /* See if the upper and lower bounds of BLOCKAGE (E,*) are the
2049 same. If so, the blockage function carries no additional
2050 information and is not written. */
2051 newexp
= operate_exp (EQ_OP
, max_blockage
, min_blockage
);
2052 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2053 unit
->needs_blockage_function
2054 = (GET_CODE (newexp
) != CONST_STRING
2055 || atoi (XSTR (newexp
, 0)) != 1);
2057 /* If the all values of BLOCKAGE (E,C) have the same value,
2058 neither blockage function is written. */
2059 unit
->needs_range_function
2060 = (unit
->needs_blockage_function
2061 || GET_CODE (max_blockage
) != CONST_STRING
);
2063 if (unit
->needs_range_function
)
2065 /* Compute the blockage range function and make an attribute
2066 for writing it's value. */
2067 newexp
= operate_exp (RANGE_OP
, min_blockage
, max_blockage
);
2068 newexp
= simplify_knowing (newexp
, unit
->condexp
);
2070 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_blockage_range"),
2071 "*%s_unit_blockage_range", unit
->name
);
2072 make_internal_attr (str
, newexp
, 4);
2075 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_unit_ready_cost"),
2076 "*%s_unit_ready_cost", unit
->name
);
2079 str
= "*result_ready_cost";
2081 /* Make an attribute for the ready_cost function. Simplifying
2082 further with simplify_by_exploding doesn't win. */
2083 make_internal_attr (str
, readycost
, 0);
2086 /* For each unit that requires a conflict cost function, make an attribute
2087 that maps insns to the operation number. */
2088 for (unit
= units
; unit
; unit
= unit
->next
)
2092 if (! unit
->needs_conflict_function
2093 && ! unit
->needs_blockage_function
)
2096 caseexp
= rtx_alloc (COND
);
2097 XVEC (caseexp
, 0) = rtvec_alloc ((unit
->num_opclasses
- 1) * 2);
2099 for (op
= unit
->ops
; op
; op
= op
->next
)
2101 /* Make our adjustment to the COND being computed. If we are the
2102 last operation class, place our values into the default of the
2104 if (op
->num
== unit
->num_opclasses
- 1)
2106 XEXP (caseexp
, 1) = make_numeric_value (op
->num
);
2110 XVECEXP (caseexp
, 0, op
->num
* 2) = op
->condexp
;
2111 XVECEXP (caseexp
, 0, op
->num
* 2 + 1)
2112 = make_numeric_value (op
->num
);
2116 /* Simplifying caseexp with simplify_by_exploding doesn't win. */
2117 str
= attr_printf (strlen (unit
->name
) + sizeof ("*_cases"),
2118 "*%s_cases", unit
->name
);
2119 make_internal_attr (str
, caseexp
, 1);
2123 /* Simplify EXP given KNOWN_TRUE. */
2126 simplify_knowing (exp
, known_true
)
2127 rtx exp
, known_true
;
2129 if (GET_CODE (exp
) != CONST_STRING
)
2131 exp
= attr_rtx (IF_THEN_ELSE
, known_true
, exp
,
2132 make_numeric_value (max_attr_value (exp
)));
2133 exp
= simplify_by_exploding (exp
);
2138 /* Translate the CONST_STRING expressions in X to change the encoding of
2139 value. On input, the value is a bitmask with a one bit for each unit
2140 used; on output, the value is the unit number (zero based) if one
2141 and only one unit is used or the one's compliment of the bitmask. */
2144 encode_units_mask (x
)
2149 register enum rtx_code code
;
2152 code
= GET_CODE (x
);
2157 i
= atoi (XSTR (x
, 0));
2159 abort (); /* The sign bit encodes a one's compliment mask. */
2160 else if (i
!= 0 && i
== (i
& -i
))
2161 /* Only one bit is set, so yield that unit number. */
2162 for (j
= 0; (i
>>= 1) != 0; j
++)
2166 return attr_rtx (CONST_STRING
, attr_printf (MAX_DIGITS
, "%d", j
));
2180 /* Compare the elements. If any pair of corresponding elements
2181 fail to match, return 0 for the whole things. */
2183 fmt
= GET_RTX_FORMAT (code
);
2184 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2190 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2191 XVECEXP (x
, i
, j
) = encode_units_mask (XVECEXP (x
, i
, j
));
2195 XEXP (x
, i
) = encode_units_mask (XEXP (x
, i
));
2202 /* Once all attributes and insns have been read and checked, we construct for
2203 each attribute value a list of all the insns that have that value for
2208 struct attr_desc
*attr
;
2210 struct attr_value
*av
;
2211 struct insn_ent
*ie
;
2212 struct insn_def
*id
;
2216 /* Don't fill constant attributes. The value is independent of
2217 any particular insn. */
2221 for (id
= defs
; id
; id
= id
->next
)
2223 /* If no value is specified for this insn for this attribute, use the
2226 if (XVEC (id
->def
, id
->vec_idx
))
2227 for (i
= 0; i
< XVECLEN (id
->def
, id
->vec_idx
); i
++)
2228 if (! strcmp (XSTR (XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 0), 0),
2230 value
= XEXP (XVECEXP (id
->def
, id
->vec_idx
, i
), 1);
2233 av
= attr
->default_val
;
2235 av
= get_attr_value (value
, attr
, id
->insn_code
);
2237 ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2238 ie
->insn_code
= id
->insn_code
;
2239 ie
->insn_index
= id
->insn_code
;
2240 insert_insn_ent (av
, ie
);
2244 /* Given an expression EXP, see if it is a COND or IF_THEN_ELSE that has a
2245 test that checks relative positions of insns (uses MATCH_DUP or PC).
2246 If so, replace it with what is obtained by passing the expression to
2247 ADDRESS_FN. If not but it is a COND or IF_THEN_ELSE, call this routine
2248 recursively on each value (including the default value). Otherwise,
2249 return the value returned by NO_ADDRESS_FN applied to EXP. */
2252 substitute_address (exp
, no_address_fn
, address_fn
)
2254 rtx (*no_address_fn
) ();
2255 rtx (*address_fn
) ();
2260 if (GET_CODE (exp
) == COND
)
2262 /* See if any tests use addresses. */
2264 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2265 walk_attr_value (XVECEXP (exp
, 0, i
));
2268 return (*address_fn
) (exp
);
2270 /* Make a new copy of this COND, replacing each element. */
2271 newexp
= rtx_alloc (COND
);
2272 XVEC (newexp
, 0) = rtvec_alloc (XVECLEN (exp
, 0));
2273 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
2275 XVECEXP (newexp
, 0, i
) = XVECEXP (exp
, 0, i
);
2276 XVECEXP (newexp
, 0, i
+ 1)
2277 = substitute_address (XVECEXP (exp
, 0, i
+ 1),
2278 no_address_fn
, address_fn
);
2281 XEXP (newexp
, 1) = substitute_address (XEXP (exp
, 1),
2282 no_address_fn
, address_fn
);
2287 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
2290 walk_attr_value (XEXP (exp
, 0));
2292 return (*address_fn
) (exp
);
2294 return attr_rtx (IF_THEN_ELSE
,
2295 substitute_address (XEXP (exp
, 0),
2296 no_address_fn
, address_fn
),
2297 substitute_address (XEXP (exp
, 1),
2298 no_address_fn
, address_fn
),
2299 substitute_address (XEXP (exp
, 2),
2300 no_address_fn
, address_fn
));
2303 return (*no_address_fn
) (exp
);
2306 /* Make new attributes from the `length' attribute. The following are made,
2307 each corresponding to a function called from `shorten_branches' or
2310 *insn_default_length This is the length of the insn to be returned
2311 by `get_attr_length' before `shorten_branches'
2312 has been called. In each case where the length
2313 depends on relative addresses, the largest
2314 possible is used. This routine is also used
2315 to compute the initial size of the insn.
2317 *insn_variable_length_p This returns 1 if the insn's length depends
2318 on relative addresses, zero otherwise.
2320 *insn_current_length This is only called when it is known that the
2321 insn has a variable length and returns the
2322 current length, based on relative addresses.
2326 make_length_attrs ()
2328 static char *new_names
[] = {"*insn_default_length",
2329 "*insn_variable_length_p",
2330 "*insn_current_length"};
2331 static rtx (*no_address_fn
[]) PROTO((rtx
)) = {identity_fn
, zero_fn
, zero_fn
};
2332 static rtx (*address_fn
[]) PROTO((rtx
)) = {max_fn
, one_fn
, identity_fn
};
2334 struct attr_desc
*length_attr
, *new_attr
;
2335 struct attr_value
*av
, *new_av
;
2336 struct insn_ent
*ie
, *new_ie
;
2338 /* See if length attribute is defined. If so, it must be numeric. Make
2339 it special so we don't output anything for it. */
2340 length_attr
= find_attr ("length", 0);
2341 if (length_attr
== 0)
2344 if (! length_attr
->is_numeric
)
2345 fatal ("length attribute must be numeric.");
2347 length_attr
->is_const
= 0;
2348 length_attr
->is_special
= 1;
2350 /* Make each new attribute, in turn. */
2351 for (i
= 0; i
< sizeof new_names
/ sizeof new_names
[0]; i
++)
2353 make_internal_attr (new_names
[i
],
2354 substitute_address (length_attr
->default_val
->value
,
2355 no_address_fn
[i
], address_fn
[i
]),
2357 new_attr
= find_attr (new_names
[i
], 0);
2358 for (av
= length_attr
->first_value
; av
; av
= av
->next
)
2359 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
2361 new_av
= get_attr_value (substitute_address (av
->value
,
2364 new_attr
, ie
->insn_code
);
2365 new_ie
= (struct insn_ent
*) oballoc (sizeof (struct insn_ent
));
2366 new_ie
->insn_code
= ie
->insn_code
;
2367 new_ie
->insn_index
= ie
->insn_index
;
2368 insert_insn_ent (new_av
, new_ie
);
2373 /* Utility functions called from above routine. */
2386 return make_numeric_value (0);
2393 return make_numeric_value (1);
2400 return make_numeric_value (max_attr_value (exp
));
2403 /* Take a COND expression and see if any of the conditions in it can be
2404 simplified. If any are known true or known false for the particular insn
2405 code, the COND can be further simplified.
2407 Also call ourselves on any COND operations that are values of this COND.
2409 We do not modify EXP; rather, we make and return a new rtx. */
2412 simplify_cond (exp
, insn_code
, insn_index
)
2414 int insn_code
, insn_index
;
2417 /* We store the desired contents here,
2418 then build a new expression if they don't match EXP. */
2419 rtx defval
= XEXP (exp
, 1);
2420 rtx new_defval
= XEXP (exp
, 1);
2422 int len
= XVECLEN (exp
, 0);
2423 rtx
*tests
= (rtx
*) alloca (len
* sizeof (rtx
));
2427 /* This lets us free all storage allocated below, if appropriate. */
2428 first_spacer
= (char *) obstack_finish (rtl_obstack
);
2430 bcopy ((char *) &XVECEXP (exp
, 0, 0), (char *) tests
, len
* sizeof (rtx
));
2432 /* See if default value needs simplification. */
2433 if (GET_CODE (defval
) == COND
)
2434 new_defval
= simplify_cond (defval
, insn_code
, insn_index
);
2436 /* Simplify the subexpressions, and see what tests we can get rid of. */
2438 for (i
= 0; i
< len
; i
+= 2)
2440 rtx newtest
, newval
;
2442 /* Simplify this test. */
2443 newtest
= SIMPLIFY_TEST_EXP (tests
[i
], insn_code
, insn_index
);
2446 newval
= tests
[i
+ 1];
2447 /* See if this value may need simplification. */
2448 if (GET_CODE (newval
) == COND
)
2449 newval
= simplify_cond (newval
, insn_code
, insn_index
);
2451 /* Look for ways to delete or combine this test. */
2452 if (newtest
== true_rtx
)
2454 /* If test is true, make this value the default
2455 and discard this + any following tests. */
2457 defval
= tests
[i
+ 1];
2458 new_defval
= newval
;
2461 else if (newtest
== false_rtx
)
2463 /* If test is false, discard it and its value. */
2464 for (j
= i
; j
< len
- 2; j
++)
2465 tests
[j
] = tests
[j
+ 2];
2469 else if (i
> 0 && attr_equal_p (newval
, tests
[i
- 1]))
2471 /* If this value and the value for the prev test are the same,
2475 = insert_right_side (IOR
, tests
[i
- 2], newtest
,
2476 insn_code
, insn_index
);
2478 /* Delete this test/value. */
2479 for (j
= i
; j
< len
- 2; j
++)
2480 tests
[j
] = tests
[j
+ 2];
2485 tests
[i
+ 1] = newval
;
2488 /* If the last test in a COND has the same value
2489 as the default value, that test isn't needed. */
2491 while (len
> 0 && attr_equal_p (tests
[len
- 1], new_defval
))
2494 /* See if we changed anything. */
2495 if (len
!= XVECLEN (exp
, 0) || new_defval
!= XEXP (exp
, 1))
2498 for (i
= 0; i
< len
; i
++)
2499 if (! attr_equal_p (tests
[i
], XVECEXP (exp
, 0, i
)))
2507 obstack_free (rtl_obstack
, first_spacer
);
2508 if (GET_CODE (defval
) == COND
)
2509 return simplify_cond (defval
, insn_code
, insn_index
);
2514 obstack_free (rtl_obstack
, first_spacer
);
2519 rtx newexp
= rtx_alloc (COND
);
2521 XVEC (newexp
, 0) = rtvec_alloc (len
);
2522 bcopy ((char *) tests
, (char *) &XVECEXP (newexp
, 0, 0),
2523 len
* sizeof (rtx
));
2524 XEXP (newexp
, 1) = new_defval
;
2529 /* Remove an insn entry from an attribute value. */
2532 remove_insn_ent (av
, ie
)
2533 struct attr_value
*av
;
2534 struct insn_ent
*ie
;
2536 struct insn_ent
*previe
;
2538 if (av
->first_insn
== ie
)
2539 av
->first_insn
= ie
->next
;
2542 for (previe
= av
->first_insn
; previe
->next
!= ie
; previe
= previe
->next
)
2544 previe
->next
= ie
->next
;
2548 if (ie
->insn_code
== -1)
2549 av
->has_asm_insn
= 0;
2554 /* Insert an insn entry in an attribute value list. */
2557 insert_insn_ent (av
, ie
)
2558 struct attr_value
*av
;
2559 struct insn_ent
*ie
;
2561 ie
->next
= av
->first_insn
;
2562 av
->first_insn
= ie
;
2564 if (ie
->insn_code
== -1)
2565 av
->has_asm_insn
= 1;
2570 /* This is a utility routine to take an expression that is a tree of either
2571 AND or IOR expressions and insert a new term. The new term will be
2572 inserted at the right side of the first node whose code does not match
2573 the root. A new node will be created with the root's code. Its left
2574 side will be the old right side and its right side will be the new
2577 If the `term' is itself a tree, all its leaves will be inserted. */
2580 insert_right_side (code
, exp
, term
, insn_code
, insn_index
)
2584 int insn_code
, insn_index
;
2588 /* Avoid consing in some special cases. */
2589 if (code
== AND
&& term
== true_rtx
)
2591 if (code
== AND
&& term
== false_rtx
)
2593 if (code
== AND
&& exp
== true_rtx
)
2595 if (code
== AND
&& exp
== false_rtx
)
2597 if (code
== IOR
&& term
== true_rtx
)
2599 if (code
== IOR
&& term
== false_rtx
)
2601 if (code
== IOR
&& exp
== true_rtx
)
2603 if (code
== IOR
&& exp
== false_rtx
)
2605 if (attr_equal_p (exp
, term
))
2608 if (GET_CODE (term
) == code
)
2610 exp
= insert_right_side (code
, exp
, XEXP (term
, 0),
2611 insn_code
, insn_index
);
2612 exp
= insert_right_side (code
, exp
, XEXP (term
, 1),
2613 insn_code
, insn_index
);
2618 if (GET_CODE (exp
) == code
)
2620 rtx
new = insert_right_side (code
, XEXP (exp
, 1),
2621 term
, insn_code
, insn_index
);
2622 if (new != XEXP (exp
, 1))
2623 /* Make a copy of this expression and call recursively. */
2624 newexp
= attr_rtx (code
, XEXP (exp
, 0), new);
2630 /* Insert the new term. */
2631 newexp
= attr_rtx (code
, exp
, term
);
2634 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2637 /* If we have an expression which AND's a bunch of
2638 (not (eq_attrq "alternative" "n"))
2639 terms, we may have covered all or all but one of the possible alternatives.
2640 If so, we can optimize. Similarly for IOR's of EQ_ATTR.
2642 This routine is passed an expression and either AND or IOR. It returns a
2643 bitmask indicating which alternatives are mentioned within EXP. */
2646 compute_alternative_mask (exp
, code
)
2651 if (GET_CODE (exp
) == code
)
2652 return compute_alternative_mask (XEXP (exp
, 0), code
)
2653 | compute_alternative_mask (XEXP (exp
, 1), code
);
2655 else if (code
== AND
&& GET_CODE (exp
) == NOT
2656 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2657 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
2658 string
= XSTR (XEXP (exp
, 0), 1);
2660 else if (code
== IOR
&& GET_CODE (exp
) == EQ_ATTR
2661 && XSTR (exp
, 0) == alternative_name
)
2662 string
= XSTR (exp
, 1);
2668 return 1 << (string
[0] - '0');
2669 return 1 << atoi (string
);
2672 /* Given I, a single-bit mask, return RTX to compare the `alternative'
2673 attribute with the value represented by that bit. */
2676 make_alternative_compare (mask
)
2683 for (i
= 0; (mask
& (1 << i
)) == 0; i
++)
2686 newexp
= attr_rtx (EQ_ATTR
, alternative_name
, attr_numeral (i
));
2687 RTX_UNCHANGING_P (newexp
) = 1;
2692 /* If we are processing an (eq_attr "attr" "value") test, we find the value
2693 of "attr" for this insn code. From that value, we can compute a test
2694 showing when the EQ_ATTR will be true. This routine performs that
2695 computation. If a test condition involves an address, we leave the EQ_ATTR
2696 intact because addresses are only valid for the `length' attribute.
2698 EXP is the EQ_ATTR expression and VALUE is the value of that attribute
2699 for the insn corresponding to INSN_CODE and INSN_INDEX. */
2702 evaluate_eq_attr (exp
, value
, insn_code
, insn_index
)
2705 int insn_code
, insn_index
;
2712 if (GET_CODE (value
) == CONST_STRING
)
2714 if (! strcmp (XSTR (value
, 0), XSTR (exp
, 1)))
2719 else if (GET_CODE (value
) == COND
)
2721 /* We construct an IOR of all the cases for which the requested attribute
2722 value is present. Since we start with FALSE, if it is not present,
2723 FALSE will be returned.
2725 Each case is the AND of the NOT's of the previous conditions with the
2726 current condition; in the default case the current condition is TRUE.
2728 For each possible COND value, call ourselves recursively.
2730 The extra TRUE and FALSE expressions will be eliminated by another
2731 call to the simplification routine. */
2736 if (current_alternative_string
)
2737 clear_struct_flag (value
);
2739 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
2741 rtx
this = SIMPLIFY_TEST_EXP (XVECEXP (value
, 0, i
),
2742 insn_code
, insn_index
);
2744 SIMPLIFY_ALTERNATIVE (this);
2746 right
= insert_right_side (AND
, andexp
, this,
2747 insn_code
, insn_index
);
2748 right
= insert_right_side (AND
, right
,
2749 evaluate_eq_attr (exp
,
2752 insn_code
, insn_index
),
2753 insn_code
, insn_index
);
2754 orexp
= insert_right_side (IOR
, orexp
, right
,
2755 insn_code
, insn_index
);
2757 /* Add this condition into the AND expression. */
2758 newexp
= attr_rtx (NOT
, this);
2759 andexp
= insert_right_side (AND
, andexp
, newexp
,
2760 insn_code
, insn_index
);
2763 /* Handle the default case. */
2764 right
= insert_right_side (AND
, andexp
,
2765 evaluate_eq_attr (exp
, XEXP (value
, 1),
2766 insn_code
, insn_index
),
2767 insn_code
, insn_index
);
2768 newexp
= insert_right_side (IOR
, orexp
, right
, insn_code
, insn_index
);
2773 /* If uses an address, must return original expression. But set the
2774 RTX_UNCHANGING_P bit so we don't try to simplify it again. */
2777 walk_attr_value (newexp
);
2781 /* This had `&& current_alternative_string', which seems to be wrong. */
2782 if (! RTX_UNCHANGING_P (exp
))
2783 return copy_rtx_unchanging (exp
);
2790 /* This routine is called when an AND of a term with a tree of AND's is
2791 encountered. If the term or its complement is present in the tree, it
2792 can be replaced with TRUE or FALSE, respectively.
2794 Note that (eq_attr "att" "v1") and (eq_attr "att" "v2") cannot both
2795 be true and hence are complementary.
2797 There is one special case: If we see
2798 (and (not (eq_attr "att" "v1"))
2799 (eq_attr "att" "v2"))
2800 this can be replaced by (eq_attr "att" "v2"). To do this we need to
2801 replace the term, not anything in the AND tree. So we pass a pointer to
2805 simplify_and_tree (exp
, pterm
, insn_code
, insn_index
)
2808 int insn_code
, insn_index
;
2813 int left_eliminates_term
, right_eliminates_term
;
2815 if (GET_CODE (exp
) == AND
)
2817 left
= simplify_and_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2818 right
= simplify_and_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2819 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2821 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2823 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2827 else if (GET_CODE (exp
) == IOR
)
2829 /* For the IOR case, we do the same as above, except that we can
2830 only eliminate `term' if both sides of the IOR would do so. */
2832 left
= simplify_and_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2833 left_eliminates_term
= (temp
== true_rtx
);
2836 right
= simplify_and_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2837 right_eliminates_term
= (temp
== true_rtx
);
2839 if (left_eliminates_term
&& right_eliminates_term
)
2842 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2844 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2846 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2850 /* Check for simplifications. Do some extra checking here since this
2851 routine is called so many times. */
2856 else if (GET_CODE (exp
) == NOT
&& XEXP (exp
, 0) == *pterm
)
2859 else if (GET_CODE (*pterm
) == NOT
&& exp
== XEXP (*pterm
, 0))
2862 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == EQ_ATTR
)
2864 if (XSTR (exp
, 0) != XSTR (*pterm
, 0))
2867 if (! strcmp (XSTR (exp
, 1), XSTR (*pterm
, 1)))
2873 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2874 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
)
2876 if (XSTR (*pterm
, 0) != XSTR (XEXP (exp
, 0), 0))
2879 if (! strcmp (XSTR (*pterm
, 1), XSTR (XEXP (exp
, 0), 1)))
2885 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2886 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
)
2888 if (XSTR (exp
, 0) != XSTR (XEXP (*pterm
, 0), 0))
2891 if (! strcmp (XSTR (exp
, 1), XSTR (XEXP (*pterm
, 0), 1)))
2897 else if (GET_CODE (exp
) == NOT
&& GET_CODE (*pterm
) == NOT
)
2899 if (attr_equal_p (XEXP (exp
, 0), XEXP (*pterm
, 0)))
2903 else if (GET_CODE (exp
) == NOT
)
2905 if (attr_equal_p (XEXP (exp
, 0), *pterm
))
2909 else if (GET_CODE (*pterm
) == NOT
)
2911 if (attr_equal_p (XEXP (*pterm
, 0), exp
))
2915 else if (attr_equal_p (exp
, *pterm
))
2921 /* Similar to `simplify_and_tree', but for IOR trees. */
2924 simplify_or_tree (exp
, pterm
, insn_code
, insn_index
)
2927 int insn_code
, insn_index
;
2932 int left_eliminates_term
, right_eliminates_term
;
2934 if (GET_CODE (exp
) == IOR
)
2936 left
= simplify_or_tree (XEXP (exp
, 0), pterm
, insn_code
, insn_index
);
2937 right
= simplify_or_tree (XEXP (exp
, 1), pterm
, insn_code
, insn_index
);
2938 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2940 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2942 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2946 else if (GET_CODE (exp
) == AND
)
2948 /* For the AND case, we do the same as above, except that we can
2949 only eliminate `term' if both sides of the AND would do so. */
2951 left
= simplify_or_tree (XEXP (exp
, 0), &temp
, insn_code
, insn_index
);
2952 left_eliminates_term
= (temp
== false_rtx
);
2955 right
= simplify_or_tree (XEXP (exp
, 1), &temp
, insn_code
, insn_index
);
2956 right_eliminates_term
= (temp
== false_rtx
);
2958 if (left_eliminates_term
&& right_eliminates_term
)
2961 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
2963 newexp
= attr_rtx (GET_CODE (exp
), left
, right
);
2965 exp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
2969 if (attr_equal_p (exp
, *pterm
))
2972 else if (GET_CODE (exp
) == NOT
&& attr_equal_p (XEXP (exp
, 0), *pterm
))
2975 else if (GET_CODE (*pterm
) == NOT
&& attr_equal_p (XEXP (*pterm
, 0), exp
))
2978 else if (GET_CODE (*pterm
) == EQ_ATTR
&& GET_CODE (exp
) == NOT
2979 && GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
2980 && XSTR (*pterm
, 0) == XSTR (XEXP (exp
, 0), 0))
2983 else if (GET_CODE (exp
) == EQ_ATTR
&& GET_CODE (*pterm
) == NOT
2984 && GET_CODE (XEXP (*pterm
, 0)) == EQ_ATTR
2985 && XSTR (exp
, 0) == XSTR (XEXP (*pterm
, 0), 0))
2991 /* Given an expression, see if it can be simplified for a particular insn
2992 code based on the values of other attributes being tested. This can
2993 eliminate nested get_attr_... calls.
2995 Note that if an endless recursion is specified in the patterns, the
2996 optimization will loop. However, it will do so in precisely the cases where
2997 an infinite recursion loop could occur during compilation. It's better that
3001 simplify_test_exp (exp
, insn_code
, insn_index
)
3003 int insn_code
, insn_index
;
3006 struct attr_desc
*attr
;
3007 struct attr_value
*av
;
3008 struct insn_ent
*ie
;
3011 char *spacer
= (char *) obstack_finish (rtl_obstack
);
3013 /* Don't re-simplify something we already simplified. */
3014 if (RTX_UNCHANGING_P (exp
) || MEM_IN_STRUCT_P (exp
))
3017 switch (GET_CODE (exp
))
3020 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3021 SIMPLIFY_ALTERNATIVE (left
);
3022 if (left
== false_rtx
)
3024 obstack_free (rtl_obstack
, spacer
);
3027 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3028 SIMPLIFY_ALTERNATIVE (right
);
3029 if (left
== false_rtx
)
3031 obstack_free (rtl_obstack
, spacer
);
3035 /* If either side is an IOR and we have (eq_attr "alternative" ..")
3036 present on both sides, apply the distributive law since this will
3037 yield simplifications. */
3038 if ((GET_CODE (left
) == IOR
|| GET_CODE (right
) == IOR
)
3039 && compute_alternative_mask (left
, IOR
)
3040 && compute_alternative_mask (right
, IOR
))
3042 if (GET_CODE (left
) == IOR
)
3049 newexp
= attr_rtx (IOR
,
3050 attr_rtx (AND
, left
, XEXP (right
, 0)),
3051 attr_rtx (AND
, left
, XEXP (right
, 1)));
3053 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3056 /* Try with the term on both sides. */
3057 right
= simplify_and_tree (right
, &left
, insn_code
, insn_index
);
3058 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3059 left
= simplify_and_tree (left
, &right
, insn_code
, insn_index
);
3061 if (left
== false_rtx
|| right
== false_rtx
)
3063 obstack_free (rtl_obstack
, spacer
);
3066 else if (left
== true_rtx
)
3070 else if (right
== true_rtx
)
3074 /* See if all or all but one of the insn's alternatives are specified
3075 in this tree. Optimize if so. */
3077 else if (insn_code
>= 0
3078 && (GET_CODE (left
) == AND
3079 || (GET_CODE (left
) == NOT
3080 && GET_CODE (XEXP (left
, 0)) == EQ_ATTR
3081 && XSTR (XEXP (left
, 0), 0) == alternative_name
)
3082 || GET_CODE (right
) == AND
3083 || (GET_CODE (right
) == NOT
3084 && GET_CODE (XEXP (right
, 0)) == EQ_ATTR
3085 && XSTR (XEXP (right
, 0), 0) == alternative_name
)))
3087 i
= compute_alternative_mask (exp
, AND
);
3088 if (i
& ~insn_alternatives
[insn_code
])
3089 fatal ("Invalid alternative specified for pattern number %d",
3092 /* If all alternatives are excluded, this is false. */
3093 i
^= insn_alternatives
[insn_code
];
3096 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3098 /* If just one excluded, AND a comparison with that one to the
3099 front of the tree. The others will be eliminated by
3100 optimization. We do not want to do this if the insn has one
3101 alternative and we have tested none of them! */
3102 left
= make_alternative_compare (i
);
3103 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3104 newexp
= attr_rtx (AND
, left
, right
);
3106 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3110 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3112 newexp
= attr_rtx (AND
, left
, right
);
3113 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3118 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3119 SIMPLIFY_ALTERNATIVE (left
);
3120 if (left
== true_rtx
)
3122 obstack_free (rtl_obstack
, spacer
);
3125 right
= SIMPLIFY_TEST_EXP (XEXP (exp
, 1), insn_code
, insn_index
);
3126 SIMPLIFY_ALTERNATIVE (right
);
3127 if (right
== true_rtx
)
3129 obstack_free (rtl_obstack
, spacer
);
3133 right
= simplify_or_tree (right
, &left
, insn_code
, insn_index
);
3134 if (left
== XEXP (exp
, 0) && right
== XEXP (exp
, 1))
3135 left
= simplify_or_tree (left
, &right
, insn_code
, insn_index
);
3137 if (right
== true_rtx
|| left
== true_rtx
)
3139 obstack_free (rtl_obstack
, spacer
);
3142 else if (left
== false_rtx
)
3146 else if (right
== false_rtx
)
3151 /* Test for simple cases where the distributive law is useful. I.e.,
3152 convert (ior (and (x) (y))
3158 else if (GET_CODE (left
) == AND
&& GET_CODE (right
) == AND
3159 && attr_equal_p (XEXP (left
, 0), XEXP (right
, 0)))
3161 newexp
= attr_rtx (IOR
, XEXP (left
, 1), XEXP (right
, 1));
3163 left
= XEXP (left
, 0);
3165 newexp
= attr_rtx (AND
, left
, right
);
3166 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3169 /* See if all or all but one of the insn's alternatives are specified
3170 in this tree. Optimize if so. */
3172 else if (insn_code
>= 0
3173 && (GET_CODE (left
) == IOR
3174 || (GET_CODE (left
) == EQ_ATTR
3175 && XSTR (left
, 0) == alternative_name
)
3176 || GET_CODE (right
) == IOR
3177 || (GET_CODE (right
) == EQ_ATTR
3178 && XSTR (right
, 0) == alternative_name
)))
3180 i
= compute_alternative_mask (exp
, IOR
);
3181 if (i
& ~insn_alternatives
[insn_code
])
3182 fatal ("Invalid alternative specified for pattern number %d",
3185 /* If all alternatives are included, this is true. */
3186 i
^= insn_alternatives
[insn_code
];
3189 else if ((i
& (i
- 1)) == 0 && insn_alternatives
[insn_code
] > 1)
3191 /* If just one excluded, IOR a comparison with that one to the
3192 front of the tree. The others will be eliminated by
3193 optimization. We do not want to do this if the insn has one
3194 alternative and we have tested none of them! */
3195 left
= make_alternative_compare (i
);
3196 right
= simplify_and_tree (exp
, &left
, insn_code
, insn_index
);
3197 newexp
= attr_rtx (IOR
, attr_rtx (NOT
, left
), right
);
3199 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3203 if (left
!= XEXP (exp
, 0) || right
!= XEXP (exp
, 1))
3205 newexp
= attr_rtx (IOR
, left
, right
);
3206 return SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3211 if (GET_CODE (XEXP (exp
, 0)) == NOT
)
3213 left
= SIMPLIFY_TEST_EXP (XEXP (XEXP (exp
, 0), 0),
3214 insn_code
, insn_index
);
3215 SIMPLIFY_ALTERNATIVE (left
);
3219 left
= SIMPLIFY_TEST_EXP (XEXP (exp
, 0), insn_code
, insn_index
);
3220 SIMPLIFY_ALTERNATIVE (left
);
3221 if (GET_CODE (left
) == NOT
)
3222 return XEXP (left
, 0);
3224 if (left
== false_rtx
)
3226 obstack_free (rtl_obstack
, spacer
);
3229 else if (left
== true_rtx
)
3231 obstack_free (rtl_obstack
, spacer
);
3235 /* Try to apply De`Morgan's laws. */
3236 else if (GET_CODE (left
) == IOR
)
3238 newexp
= attr_rtx (AND
,
3239 attr_rtx (NOT
, XEXP (left
, 0)),
3240 attr_rtx (NOT
, XEXP (left
, 1)));
3242 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3244 else if (GET_CODE (left
) == AND
)
3246 newexp
= attr_rtx (IOR
,
3247 attr_rtx (NOT
, XEXP (left
, 0)),
3248 attr_rtx (NOT
, XEXP (left
, 1)));
3250 newexp
= SIMPLIFY_TEST_EXP (newexp
, insn_code
, insn_index
);
3252 else if (left
!= XEXP (exp
, 0))
3254 newexp
= attr_rtx (NOT
, left
);
3259 if (current_alternative_string
&& XSTR (exp
, 0) == alternative_name
)
3260 return (XSTR (exp
, 1) == current_alternative_string
3261 ? true_rtx
: false_rtx
);
3263 /* Look at the value for this insn code in the specified attribute.
3264 We normally can replace this comparison with the condition that
3265 would give this insn the values being tested for. */
3266 if (XSTR (exp
, 0) != alternative_name
3267 && (attr
= find_attr (XSTR (exp
, 0), 0)) != NULL
)
3268 for (av
= attr
->first_value
; av
; av
= av
->next
)
3269 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3270 if (ie
->insn_code
== insn_code
)
3271 return evaluate_eq_attr (exp
, av
->value
, insn_code
, insn_index
);
3274 /* We have already simplified this expression. Simplifying it again
3275 won't buy anything unless we weren't given a valid insn code
3276 to process (i.e., we are canonicalizing something.). */
3277 if (insn_code
!= -2 /* Seems wrong: && current_alternative_string. */
3278 && ! RTX_UNCHANGING_P (newexp
))
3279 return copy_rtx_unchanging (newexp
);
3284 /* Optimize the attribute lists by seeing if we can determine conditional
3285 values from the known values of other attributes. This will save subroutine
3286 calls during the compilation. */
3291 struct attr_desc
*attr
;
3292 struct attr_value
*av
;
3293 struct insn_ent
*ie
;
3295 int something_changed
= 1;
3297 struct attr_value_list
{ struct attr_value
*av
;
3298 struct insn_ent
*ie
;
3299 struct attr_desc
* attr
;
3300 struct attr_value_list
*next
; };
3301 struct attr_value_list
**insn_code_values
;
3302 struct attr_value_list
*ivbuf
;
3303 struct attr_value_list
*iv
;
3305 /* For each insn code, make a list of all the insn_ent's for it,
3306 for all values for all attributes. */
3308 if (num_insn_ents
== 0)
3311 /* Make 2 extra elements, for "code" values -2 and -1. */
3313 = (struct attr_value_list
**) alloca ((insn_code_number
+ 2)
3314 * sizeof (struct attr_value_list
*));
3315 bzero ((char *) insn_code_values
,
3316 (insn_code_number
+ 2) * sizeof (struct attr_value_list
*));
3318 /* Offset the table address so we can index by -2 or -1. */
3319 insn_code_values
+= 2;
3321 /* Allocate the attr_value_list structures using xmalloc rather than
3322 alloca, because using alloca can overflow the maximum permitted
3323 stack limit on SPARC Lynx. */
3324 iv
= ivbuf
= ((struct attr_value_list
*)
3325 xmalloc (num_insn_ents
* sizeof (struct attr_value_list
)));
3327 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
3328 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
3329 for (av
= attr
->first_value
; av
; av
= av
->next
)
3330 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
3335 iv
->next
= insn_code_values
[ie
->insn_code
];
3336 insn_code_values
[ie
->insn_code
] = iv
;
3340 /* Sanity check on num_insn_ents. */
3341 if (iv
!= ivbuf
+ num_insn_ents
)
3344 /* Process one insn code at a time. */
3345 for (i
= -2; i
< insn_code_number
; i
++)
3347 /* Clear the MEM_IN_STRUCT_P flag everywhere relevant.
3348 We use it to mean "already simplified for this insn". */
3349 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3350 clear_struct_flag (iv
->av
->value
);
3352 /* Loop until nothing changes for one iteration. */
3353 something_changed
= 1;
3354 while (something_changed
)
3356 something_changed
= 0;
3357 for (iv
= insn_code_values
[i
]; iv
; iv
= iv
->next
)
3359 struct obstack
*old
= rtl_obstack
;
3360 char *spacer
= (char *) obstack_finish (temp_obstack
);
3365 if (GET_CODE (av
->value
) != COND
)
3368 rtl_obstack
= temp_obstack
;
3369 #if 0 /* This was intended as a speed up, but it was slower. */
3370 if (insn_n_alternatives
[ie
->insn_code
] > 6
3371 && count_sub_rtxs (av
->value
, 200) >= 200)
3372 newexp
= simplify_by_alternatives (av
->value
, ie
->insn_code
,
3376 newexp
= simplify_cond (av
->value
, ie
->insn_code
,
3380 if (newexp
!= av
->value
)
3382 newexp
= attr_copy_rtx (newexp
);
3383 remove_insn_ent (av
, ie
);
3384 av
= get_attr_value (newexp
, attr
, ie
->insn_code
);
3386 insert_insn_ent (av
, ie
);
3387 something_changed
= 1;
3389 obstack_free (temp_obstack
, spacer
);
3399 simplify_by_alternatives (exp
, insn_code
, insn_index
)
3401 int insn_code
, insn_index
;
3404 int len
= insn_n_alternatives
[insn_code
];
3405 rtx newexp
= rtx_alloc (COND
);
3409 XVEC (newexp
, 0) = rtvec_alloc (len
* 2);
3411 /* It will not matter what value we use as the default value
3412 of the new COND, since that default will never be used.
3413 Choose something of the right type. */
3414 for (ultimate
= exp
; GET_CODE (ultimate
) == COND
;)
3415 ultimate
= XEXP (ultimate
, 1);
3416 XEXP (newexp
, 1) = ultimate
;
3418 for (i
= 0; i
< insn_n_alternatives
[insn_code
]; i
++)
3420 current_alternative_string
= attr_numeral (i
);
3421 XVECEXP (newexp
, 0, i
* 2) = make_alternative_compare (1 << i
);
3422 XVECEXP (newexp
, 0, i
* 2 + 1)
3423 = simplify_cond (exp
, insn_code
, insn_index
);
3426 current_alternative_string
= 0;
3427 return simplify_cond (newexp
, insn_code
, insn_index
);
3431 /* If EXP is a suitable expression, reorganize it by constructing an
3432 equivalent expression that is a COND with the tests being all combinations
3433 of attribute values and the values being simple constants. */
3436 simplify_by_exploding (exp
)
3439 rtx list
= 0, link
, condexp
, defval
;
3440 struct dimension
*space
;
3441 rtx
*condtest
, *condval
;
3442 int i
, j
, total
, ndim
= 0;
3443 int most_tests
, num_marks
, new_marks
;
3445 /* Locate all the EQ_ATTR expressions. */
3446 if (! find_and_mark_used_attributes (exp
, &list
, &ndim
) || ndim
== 0)
3448 unmark_used_attributes (list
, 0, 0);
3452 /* Create an attribute space from the list of used attributes. For each
3453 dimension in the attribute space, record the attribute, list of values
3454 used, and number of values used. Add members to the list of values to
3455 cover the domain of the attribute. This makes the expanded COND form
3456 order independent. */
3458 space
= (struct dimension
*) alloca (ndim
* sizeof (struct dimension
));
3461 for (ndim
= 0; list
; ndim
++)
3463 /* Pull the first attribute value from the list and record that
3464 attribute as another dimension in the attribute space. */
3465 char *name
= XSTR (XEXP (list
, 0), 0);
3468 if ((space
[ndim
].attr
= find_attr (name
, 0)) == 0
3469 || space
[ndim
].attr
->is_numeric
)
3471 unmark_used_attributes (list
, space
, ndim
);
3475 /* Add all remaining attribute values that refer to this attribute. */
3476 space
[ndim
].num_values
= 0;
3477 space
[ndim
].values
= 0;
3479 for (link
= list
; link
; link
= *prev
)
3480 if (! strcmp (XSTR (XEXP (link
, 0), 0), name
))
3482 space
[ndim
].num_values
++;
3483 *prev
= XEXP (link
, 1);
3484 XEXP (link
, 1) = space
[ndim
].values
;
3485 space
[ndim
].values
= link
;
3488 prev
= &XEXP (link
, 1);
3490 /* Add sufficient members to the list of values to make the list
3491 mutually exclusive and record the total size of the attribute
3493 total
*= add_values_to_cover (&space
[ndim
]);
3496 /* Sort the attribute space so that the attributes go from non-constant
3497 to constant and from most values to least values. */
3498 for (i
= 0; i
< ndim
; i
++)
3499 for (j
= ndim
- 1; j
> i
; j
--)
3500 if ((space
[j
-1].attr
->is_const
&& !space
[j
].attr
->is_const
)
3501 || space
[j
-1].num_values
< space
[j
].num_values
)
3503 struct dimension tmp
;
3505 space
[j
] = space
[j
-1];
3509 /* Establish the initial current value. */
3510 for (i
= 0; i
< ndim
; i
++)
3511 space
[i
].current_value
= space
[i
].values
;
3513 condtest
= (rtx
*) alloca (total
* sizeof (rtx
));
3514 condval
= (rtx
*) alloca (total
* sizeof (rtx
));
3516 /* Expand the tests and values by iterating over all values in the
3520 condtest
[i
] = test_for_current_value (space
, ndim
);
3521 condval
[i
] = simplify_with_current_value (exp
, space
, ndim
);
3522 if (! increment_current_value (space
, ndim
))
3528 /* We are now finished with the original expression. */
3529 unmark_used_attributes (0, space
, ndim
);
3531 /* Find the most used constant value and make that the default. */
3533 for (i
= num_marks
= 0; i
< total
; i
++)
3534 if (GET_CODE (condval
[i
]) == CONST_STRING
3535 && ! MEM_VOLATILE_P (condval
[i
]))
3537 /* Mark the unmarked constant value and count how many are marked. */
3538 MEM_VOLATILE_P (condval
[i
]) = 1;
3539 for (j
= new_marks
= 0; j
< total
; j
++)
3540 if (GET_CODE (condval
[j
]) == CONST_STRING
3541 && MEM_VOLATILE_P (condval
[j
]))
3543 if (new_marks
- num_marks
> most_tests
)
3545 most_tests
= new_marks
- num_marks
;
3546 defval
= condval
[i
];
3548 num_marks
= new_marks
;
3550 /* Clear all the marks. */
3551 for (i
= 0; i
< total
; i
++)
3552 MEM_VOLATILE_P (condval
[i
]) = 0;
3554 /* Give up if nothing is constant. */
3558 /* If all values are the default, use that. */
3559 if (total
== most_tests
)
3562 /* Make a COND with the most common constant value the default. (A more
3563 complex method where tests with the same value were combined didn't
3564 seem to improve things.) */
3565 condexp
= rtx_alloc (COND
);
3566 XVEC (condexp
, 0) = rtvec_alloc ((total
- most_tests
) * 2);
3567 XEXP (condexp
, 1) = defval
;
3568 for (i
= j
= 0; i
< total
; i
++)
3569 if (condval
[i
] != defval
)
3571 XVECEXP (condexp
, 0, 2 * j
) = condtest
[i
];
3572 XVECEXP (condexp
, 0, 2 * j
+ 1) = condval
[i
];
3579 /* Set the MEM_VOLATILE_P flag for all EQ_ATTR expressions in EXP and
3580 verify that EXP can be simplified to a constant term if all the EQ_ATTR
3581 tests have known value. */
3584 find_and_mark_used_attributes (exp
, terms
, nterms
)
3590 switch (GET_CODE (exp
))
3593 if (! MEM_VOLATILE_P (exp
))
3595 rtx link
= rtx_alloc (EXPR_LIST
);
3596 XEXP (link
, 0) = exp
;
3597 XEXP (link
, 1) = *terms
;
3600 MEM_VOLATILE_P (exp
) = 1;
3606 if (! find_and_mark_used_attributes (XEXP (exp
, 2), terms
, nterms
))
3610 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3613 if (! find_and_mark_used_attributes (XEXP (exp
, 0), terms
, nterms
))
3618 for (i
= 0; i
< XVECLEN (exp
, 0); i
++)
3619 if (! find_and_mark_used_attributes (XVECEXP (exp
, 0, i
), terms
, nterms
))
3621 if (! find_and_mark_used_attributes (XEXP (exp
, 1), terms
, nterms
))
3629 /* Clear the MEM_VOLATILE_P flag in all EQ_ATTR expressions on LIST and
3630 in the values of the NDIM-dimensional attribute space SPACE. */
3633 unmark_used_attributes (list
, space
, ndim
)
3635 struct dimension
*space
;
3641 for (i
= 0; i
< ndim
; i
++)
3642 unmark_used_attributes (space
[i
].values
, 0, 0);
3644 for (link
= list
; link
; link
= XEXP (link
, 1))
3646 exp
= XEXP (link
, 0);
3647 if (GET_CODE (exp
) == EQ_ATTR
)
3648 MEM_VOLATILE_P (exp
) = 0;
3652 /* Update the attribute dimension DIM so that all values of the attribute
3653 are tested. Return the updated number of values. */
3656 add_values_to_cover (dim
)
3657 struct dimension
*dim
;
3659 struct attr_value
*av
;
3660 rtx exp
, link
, *prev
;
3663 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3664 if (GET_CODE (av
->value
) == CONST_STRING
)
3667 if (nalt
< dim
->num_values
)
3669 else if (nalt
== dim
->num_values
)
3671 else if (nalt
* 2 < dim
->num_values
* 3)
3673 /* Most all the values of the attribute are used, so add all the unused
3675 prev
= &dim
->values
;
3676 for (link
= dim
->values
; link
; link
= *prev
)
3677 prev
= &XEXP (link
, 1);
3679 for (av
= dim
->attr
->first_value
; av
; av
= av
->next
)
3680 if (GET_CODE (av
->value
) == CONST_STRING
)
3682 exp
= attr_eq (dim
->attr
->name
, XSTR (av
->value
, 0));
3683 if (MEM_VOLATILE_P (exp
))
3686 link
= rtx_alloc (EXPR_LIST
);
3687 XEXP (link
, 0) = exp
;
3690 prev
= &XEXP (link
, 1);
3692 dim
->num_values
= nalt
;
3696 rtx orexp
= false_rtx
;
3698 /* Very few values are used, so compute a mutually exclusive
3699 expression. (We could do this for numeric values if that becomes
3701 prev
= &dim
->values
;
3702 for (link
= dim
->values
; link
; link
= *prev
)
3704 orexp
= insert_right_side (IOR
, orexp
, XEXP (link
, 0), -2, -2);
3705 prev
= &XEXP (link
, 1);
3707 link
= rtx_alloc (EXPR_LIST
);
3708 XEXP (link
, 0) = attr_rtx (NOT
, orexp
);
3713 return dim
->num_values
;
3716 /* Increment the current value for the NDIM-dimensional attribute space SPACE
3717 and return FALSE if the increment overflowed. */
3720 increment_current_value (space
, ndim
)
3721 struct dimension
*space
;
3726 for (i
= ndim
- 1; i
>= 0; i
--)
3728 if ((space
[i
].current_value
= XEXP (space
[i
].current_value
, 1)) == 0)
3729 space
[i
].current_value
= space
[i
].values
;
3736 /* Construct an expression corresponding to the current value for the
3737 NDIM-dimensional attribute space SPACE. */
3740 test_for_current_value (space
, ndim
)
3741 struct dimension
*space
;
3747 for (i
= 0; i
< ndim
; i
++)
3748 exp
= insert_right_side (AND
, exp
, XEXP (space
[i
].current_value
, 0),
3754 /* Given the current value of the NDIM-dimensional attribute space SPACE,
3755 set the corresponding EQ_ATTR expressions to that value and reduce
3756 the expression EXP as much as possible. On input [and output], all
3757 known EQ_ATTR expressions are set to FALSE. */
3760 simplify_with_current_value (exp
, space
, ndim
)
3762 struct dimension
*space
;
3768 /* Mark each current value as TRUE. */
3769 for (i
= 0; i
< ndim
; i
++)
3771 x
= XEXP (space
[i
].current_value
, 0);
3772 if (GET_CODE (x
) == EQ_ATTR
)
3773 MEM_VOLATILE_P (x
) = 0;
3776 exp
= simplify_with_current_value_aux (exp
);
3778 /* Change each current value back to FALSE. */
3779 for (i
= 0; i
< ndim
; i
++)
3781 x
= XEXP (space
[i
].current_value
, 0);
3782 if (GET_CODE (x
) == EQ_ATTR
)
3783 MEM_VOLATILE_P (x
) = 1;
3789 /* Reduce the expression EXP based on the MEM_VOLATILE_P settings of
3790 all EQ_ATTR expressions. */
3793 simplify_with_current_value_aux (exp
)
3799 switch (GET_CODE (exp
))
3802 if (MEM_VOLATILE_P (exp
))
3810 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
3811 if (cond
== true_rtx
)
3812 return simplify_with_current_value_aux (XEXP (exp
, 1));
3813 else if (cond
== false_rtx
)
3814 return simplify_with_current_value_aux (XEXP (exp
, 2));
3816 return attr_rtx (IF_THEN_ELSE
, cond
,
3817 simplify_with_current_value_aux (XEXP (exp
, 1)),
3818 simplify_with_current_value_aux (XEXP (exp
, 2)));
3821 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
3822 if (cond
== true_rtx
)
3824 else if (cond
== false_rtx
)
3825 return simplify_with_current_value_aux (XEXP (exp
, 0));
3827 return attr_rtx (IOR
, cond
,
3828 simplify_with_current_value_aux (XEXP (exp
, 0)));
3831 cond
= simplify_with_current_value_aux (XEXP (exp
, 1));
3832 if (cond
== true_rtx
)
3833 return simplify_with_current_value_aux (XEXP (exp
, 0));
3834 else if (cond
== false_rtx
)
3837 return attr_rtx (AND
, cond
,
3838 simplify_with_current_value_aux (XEXP (exp
, 0)));
3841 cond
= simplify_with_current_value_aux (XEXP (exp
, 0));
3842 if (cond
== true_rtx
)
3844 else if (cond
== false_rtx
)
3847 return attr_rtx (NOT
, cond
);
3850 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
3852 cond
= simplify_with_current_value_aux (XVECEXP (exp
, 0, i
));
3853 if (cond
== true_rtx
)
3854 return simplify_with_current_value_aux (XVECEXP (exp
, 0, i
+ 1));
3855 else if (cond
== false_rtx
)
3858 abort (); /* With all EQ_ATTR's of known value, a case should
3859 have been selected. */
3861 return simplify_with_current_value_aux (XEXP (exp
, 1));
3866 /* Clear the MEM_IN_STRUCT_P flag in EXP and its subexpressions. */
3869 clear_struct_flag (x
)
3874 register enum rtx_code code
;
3877 MEM_IN_STRUCT_P (x
) = 0;
3878 if (RTX_UNCHANGING_P (x
))
3881 code
= GET_CODE (x
);
3898 /* Compare the elements. If any pair of corresponding elements
3899 fail to match, return 0 for the whole things. */
3901 fmt
= GET_RTX_FORMAT (code
);
3902 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3908 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3909 clear_struct_flag (XVECEXP (x
, i
, j
));
3913 clear_struct_flag (XEXP (x
, i
));
3919 /* Return the number of RTX objects making up the expression X.
3920 But if we count more more than MAX objects, stop counting. */
3923 count_sub_rtxs (x
, max
)
3929 register enum rtx_code code
;
3933 code
= GET_CODE (x
);
3950 /* Compare the elements. If any pair of corresponding elements
3951 fail to match, return 0 for the whole things. */
3953 fmt
= GET_RTX_FORMAT (code
);
3954 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3963 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3964 total
+= count_sub_rtxs (XVECEXP (x
, i
, j
), max
);
3968 total
+= count_sub_rtxs (XEXP (x
, i
), max
);
3976 /* Create table entries for DEFINE_ATTR. */
3982 struct attr_desc
*attr
;
3983 struct attr_value
*av
;
3987 /* Make a new attribute structure. Check for duplicate by looking at
3988 attr->default_val, since it is initialized by this routine. */
3989 attr
= find_attr (XSTR (exp
, 0), 1);
3990 if (attr
->default_val
)
3991 fatal ("Duplicate definition for `%s' attribute", attr
->name
);
3993 if (*XSTR (exp
, 1) == '\0')
3994 attr
->is_numeric
= 1;
3997 name_ptr
= XSTR (exp
, 1);
3998 while ((p
= next_comma_elt (&name_ptr
)) != NULL
)
4000 av
= (struct attr_value
*) oballoc (sizeof (struct attr_value
));
4001 av
->value
= attr_rtx (CONST_STRING
, p
);
4002 av
->next
= attr
->first_value
;
4003 attr
->first_value
= av
;
4004 av
->first_insn
= NULL
;
4006 av
->has_asm_insn
= 0;
4010 if (GET_CODE (XEXP (exp
, 2)) == CONST
)
4013 if (attr
->is_numeric
)
4014 fatal ("Constant attributes may not take numeric values");
4015 /* Get rid of the CONST node. It is allowed only at top-level. */
4016 XEXP (exp
, 2) = XEXP (XEXP (exp
, 2), 0);
4019 if (! strcmp (attr
->name
, "length") && ! attr
->is_numeric
)
4020 fatal ("`length' attribute must take numeric values");
4022 /* Set up the default value. */
4023 XEXP (exp
, 2) = check_attr_value (XEXP (exp
, 2), attr
);
4024 attr
->default_val
= get_attr_value (XEXP (exp
, 2), attr
, -2);
4027 /* Given a pattern for DEFINE_PEEPHOLE or DEFINE_INSN, return the number of
4028 alternatives in the constraints. Assume all MATCH_OPERANDs have the same
4029 number of alternatives as this should be checked elsewhere. */
4032 count_alternatives (exp
)
4038 if (GET_CODE (exp
) == MATCH_OPERAND
)
4039 return n_comma_elts (XSTR (exp
, 2));
4041 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4042 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4047 n
= count_alternatives (XEXP (exp
, i
));
4054 if (XVEC (exp
, i
) != NULL
)
4055 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4057 n
= count_alternatives (XVECEXP (exp
, i
, j
));
4066 /* Returns non-zero if the given expression contains an EQ_ATTR with the
4067 `alternative' attribute. */
4070 compares_alternatives_p (exp
)
4076 if (GET_CODE (exp
) == EQ_ATTR
&& XSTR (exp
, 0) == alternative_name
)
4079 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4080 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4085 if (compares_alternatives_p (XEXP (exp
, i
)))
4090 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4091 if (compares_alternatives_p (XVECEXP (exp
, i
, j
)))
4099 /* Returns non-zero is INNER is contained in EXP. */
4102 contained_in_p (inner
, exp
)
4109 if (rtx_equal_p (inner
, exp
))
4112 for (i
= 0, fmt
= GET_RTX_FORMAT (GET_CODE (exp
));
4113 i
< GET_RTX_LENGTH (GET_CODE (exp
)); i
++)
4118 if (contained_in_p (inner
, XEXP (exp
, i
)))
4123 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4124 if (contained_in_p (inner
, XVECEXP (exp
, i
, j
)))
4132 /* Process DEFINE_PEEPHOLE, DEFINE_INSN, and DEFINE_ASM_ATTRIBUTES. */
4138 struct insn_def
*id
;
4140 id
= (struct insn_def
*) oballoc (sizeof (struct insn_def
));
4145 switch (GET_CODE (exp
))
4148 id
->insn_code
= insn_code_number
++;
4149 id
->insn_index
= insn_index_number
++;
4150 id
->num_alternatives
= count_alternatives (exp
);
4151 if (id
->num_alternatives
== 0)
4152 id
->num_alternatives
= 1;
4156 case DEFINE_PEEPHOLE
:
4157 id
->insn_code
= insn_code_number
++;
4158 id
->insn_index
= insn_index_number
++;
4159 id
->num_alternatives
= count_alternatives (exp
);
4160 if (id
->num_alternatives
== 0)
4161 id
->num_alternatives
= 1;
4165 case DEFINE_ASM_ATTRIBUTES
:
4167 id
->insn_index
= -1;
4168 id
->num_alternatives
= 1;
4170 got_define_asm_attributes
= 1;
4175 /* Process a DEFINE_DELAY. Validate the vector length, check if annul
4176 true or annul false is specified, and make a `struct delay_desc'. */
4182 struct delay_desc
*delay
;
4185 if (XVECLEN (def
, 1) % 3 != 0)
4186 fatal ("Number of elements in DEFINE_DELAY must be multiple of three.");
4188 for (i
= 0; i
< XVECLEN (def
, 1); i
+= 3)
4190 if (XVECEXP (def
, 1, i
+ 1))
4191 have_annul_true
= 1;
4192 if (XVECEXP (def
, 1, i
+ 2))
4193 have_annul_false
= 1;
4196 delay
= (struct delay_desc
*) oballoc (sizeof (struct delay_desc
));
4198 delay
->num
= ++num_delays
;
4199 delay
->next
= delays
;
4203 /* Process a DEFINE_FUNCTION_UNIT.
4205 This gives information about a function unit contained in the CPU.
4206 We fill in a `struct function_unit_op' and a `struct function_unit'
4207 with information used later by `expand_unit'. */
4213 struct function_unit
*unit
;
4214 struct function_unit_op
*op
;
4215 char *name
= XSTR (def
, 0);
4216 int multiplicity
= XINT (def
, 1);
4217 int simultaneity
= XINT (def
, 2);
4218 rtx condexp
= XEXP (def
, 3);
4219 int ready_cost
= MAX (XINT (def
, 4), 1);
4220 int issue_delay
= MAX (XINT (def
, 5), 1);
4222 /* See if we have already seen this function unit. If so, check that
4223 the multiplicity and simultaneity values are the same. If not, make
4224 a structure for this function unit. */
4225 for (unit
= units
; unit
; unit
= unit
->next
)
4226 if (! strcmp (unit
->name
, name
))
4228 if (unit
->multiplicity
!= multiplicity
4229 || unit
->simultaneity
!= simultaneity
)
4230 fatal ("Differing specifications given for `%s' function unit.",
4237 unit
= (struct function_unit
*) oballoc (sizeof (struct function_unit
));
4239 unit
->multiplicity
= multiplicity
;
4240 unit
->simultaneity
= simultaneity
;
4241 unit
->issue_delay
.min
= unit
->issue_delay
.max
= issue_delay
;
4242 unit
->num
= num_units
++;
4243 unit
->num_opclasses
= 0;
4244 unit
->condexp
= false_rtx
;
4250 /* Make a new operation class structure entry and initialize it. */
4251 op
= (struct function_unit_op
*) oballoc (sizeof (struct function_unit_op
));
4252 op
->condexp
= condexp
;
4253 op
->num
= unit
->num_opclasses
++;
4254 op
->ready
= ready_cost
;
4255 op
->issue_delay
= issue_delay
;
4256 op
->next
= unit
->ops
;
4259 /* Set our issue expression based on whether or not an optional conflict
4260 vector was specified. */
4263 /* Compute the IOR of all the specified expressions. */
4264 rtx orexp
= false_rtx
;
4267 for (i
= 0; i
< XVECLEN (def
, 6); i
++)
4268 orexp
= insert_right_side (IOR
, orexp
, XVECEXP (def
, 6, i
), -2, -2);
4270 op
->conflict_exp
= orexp
;
4271 extend_range (&unit
->issue_delay
, 1, issue_delay
);
4275 op
->conflict_exp
= true_rtx
;
4276 extend_range (&unit
->issue_delay
, issue_delay
, issue_delay
);
4279 /* Merge our conditional into that of the function unit so we can determine
4280 which insns are used by the function unit. */
4281 unit
->condexp
= insert_right_side (IOR
, unit
->condexp
, op
->condexp
, -2, -2);
4284 /* Given a piece of RTX, print a C expression to test it's truth value.
4285 We use AND and IOR both for logical and bit-wise operations, so
4286 interpret them as logical unless they are inside a comparison expression.
4287 The second operand of this function will be non-zero in that case. */
4290 write_test_expr (exp
, in_comparison
)
4294 int comparison_operator
= 0;
4296 struct attr_desc
*attr
;
4298 /* In order not to worry about operator precedence, surround our part of
4299 the expression with parentheses. */
4302 code
= GET_CODE (exp
);
4305 /* Binary operators. */
4307 case GE
: case GT
: case GEU
: case GTU
:
4308 case LE
: case LT
: case LEU
: case LTU
:
4309 comparison_operator
= 1;
4311 case PLUS
: case MINUS
: case MULT
: case DIV
: case MOD
:
4312 case AND
: case IOR
: case XOR
:
4313 case ASHIFT
: case LSHIFTRT
: case ASHIFTRT
:
4314 write_test_expr (XEXP (exp
, 0), in_comparison
|| comparison_operator
);
4330 printf (" >= (unsigned) ");
4333 printf (" > (unsigned) ");
4342 printf (" <= (unsigned) ");
4345 printf (" < (unsigned) ");
4386 write_test_expr (XEXP (exp
, 1), in_comparison
|| comparison_operator
);
4390 /* Special-case (not (eq_attrq "alternative" "x")) */
4391 if (! in_comparison
&& GET_CODE (XEXP (exp
, 0)) == EQ_ATTR
4392 && XSTR (XEXP (exp
, 0), 0) == alternative_name
)
4394 printf ("which_alternative != %s", XSTR (XEXP (exp
, 0), 1));
4398 /* Otherwise, fall through to normal unary operator. */
4400 /* Unary operators. */
4418 write_test_expr (XEXP (exp
, 0), in_comparison
);
4421 /* Comparison test of an attribute with a value. Most of these will
4422 have been removed by optimization. Handle "alternative"
4423 specially and give error if EQ_ATTR present inside a comparison. */
4426 fatal ("EQ_ATTR not valid inside comparison");
4428 if (XSTR (exp
, 0) == alternative_name
)
4430 printf ("which_alternative == %s", XSTR (exp
, 1));
4434 attr
= find_attr (XSTR (exp
, 0), 0);
4435 if (! attr
) abort ();
4437 /* Now is the time to expand the value of a constant attribute. */
4440 write_test_expr (evaluate_eq_attr (exp
, attr
->default_val
->value
,
4446 printf ("get_attr_%s (insn) == ", attr
->name
);
4447 write_attr_valueq (attr
, XSTR (exp
, 1));
4451 /* Comparison test of flags for define_delays. */
4454 fatal ("ATTR_FLAG not valid inside comparison");
4455 printf ("(flags & ATTR_FLAG_%s) != 0", XSTR (exp
, 0));
4458 /* See if an operand matches a predicate. */
4460 /* If only a mode is given, just ensure the mode matches the operand.
4461 If neither a mode nor predicate is given, error. */
4462 if (XSTR (exp
, 1) == NULL
|| *XSTR (exp
, 1) == '\0')
4464 if (GET_MODE (exp
) == VOIDmode
)
4465 fatal ("Null MATCH_OPERAND specified as test");
4467 printf ("GET_MODE (operands[%d]) == %smode",
4468 XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4471 printf ("%s (operands[%d], %smode)",
4472 XSTR (exp
, 1), XINT (exp
, 0), GET_MODE_NAME (GET_MODE (exp
)));
4475 /* Constant integer. */
4477 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
4478 printf ("%d", XWINT (exp
, 0));
4480 printf ("%ld", XWINT (exp
, 0));
4484 /* A random C expression. */
4486 printf ("%s", XSTR (exp
, 0));
4489 /* The address of the branch target. */
4491 printf ("insn_addresses[INSN_UID (operands[%d])]", XINT (exp
, 0));
4494 /* The address of the current insn. It would be more consistent with
4495 other usage to make this the address of the NEXT insn, but this gets
4496 too confusing because of the ambiguity regarding the length of the
4499 printf ("insn_current_address");
4503 fatal ("bad RTX code `%s' in attribute calculation\n",
4504 GET_RTX_NAME (code
));
4510 /* Given an attribute value, return the maximum CONST_STRING argument
4511 encountered. It is assumed that they are all numeric. */
4514 max_attr_value (exp
)
4517 int current_max
= 0;
4521 if (GET_CODE (exp
) == CONST_STRING
)
4522 return atoi (XSTR (exp
, 0));
4524 else if (GET_CODE (exp
) == COND
)
4526 for (i
= 0; i
< XVECLEN (exp
, 0); i
+= 2)
4528 n
= max_attr_value (XVECEXP (exp
, 0, i
+ 1));
4529 if (n
> current_max
)
4533 n
= max_attr_value (XEXP (exp
, 1));
4534 if (n
> current_max
)
4538 else if (GET_CODE (exp
) == IF_THEN_ELSE
)
4540 current_max
= max_attr_value (XEXP (exp
, 1));
4541 n
= max_attr_value (XEXP (exp
, 2));
4542 if (n
> current_max
)
4552 /* Scan an attribute value, possibly a conditional, and record what actions
4553 will be required to do any conditional tests in it.
4556 `must_extract' if we need to extract the insn operands
4557 `must_constrain' if we must compute `which_alternative'
4558 `address_used' if an address expression was used
4559 `length_used' if an (eq_attr "length" ...) was used
4563 walk_attr_value (exp
)
4573 code
= GET_CODE (exp
);
4577 if (! RTX_UNCHANGING_P (exp
))
4578 /* Since this is an arbitrary expression, it can look at anything.
4579 However, constant expressions do not depend on any particular
4581 must_extract
= must_constrain
= 1;
4589 if (XSTR (exp
, 0) == alternative_name
)
4590 must_extract
= must_constrain
= 1;
4591 else if (strcmp (XSTR (exp
, 0), "length") == 0)
4608 for (i
= 0, fmt
= GET_RTX_FORMAT (code
); i
< GET_RTX_LENGTH (code
); i
++)
4613 walk_attr_value (XEXP (exp
, i
));
4617 if (XVEC (exp
, i
) != NULL
)
4618 for (j
= 0; j
< XVECLEN (exp
, i
); j
++)
4619 walk_attr_value (XVECEXP (exp
, i
, j
));
4624 /* Write out a function to obtain the attribute for a given INSN. */
4627 write_attr_get (attr
)
4628 struct attr_desc
*attr
;
4630 struct attr_value
*av
, *common_av
;
4632 /* Find the most used attribute value. Handle that as the `default' of the
4633 switch we will generate. */
4634 common_av
= find_most_used (attr
);
4636 /* Write out start of function, then all values with explicit `case' lines,
4637 then a `default', then the value with the most uses. */
4638 if (!attr
->is_numeric
)
4639 printf ("enum attr_%s\n", attr
->name
);
4640 else if (attr
->unsigned_p
)
4641 printf ("unsigned int\n");
4645 /* If the attribute name starts with a star, the remainder is the name of
4646 the subroutine to use, instead of `get_attr_...'. */
4647 if (attr
->name
[0] == '*')
4648 printf ("%s (insn)\n", &attr
->name
[1]);
4649 else if (attr
->is_const
== 0)
4650 printf ("get_attr_%s (insn)\n", attr
->name
);
4653 printf ("get_attr_%s ()\n", attr
->name
);
4656 for (av
= attr
->first_value
; av
; av
= av
->next
)
4657 if (av
->num_insns
!= 0)
4658 write_attr_set (attr
, 2, av
->value
, "return", ";",
4659 true_rtx
, av
->first_insn
->insn_code
,
4660 av
->first_insn
->insn_index
);
4665 printf (" rtx insn;\n");
4667 printf (" switch (recog_memoized (insn))\n");
4670 for (av
= attr
->first_value
; av
; av
= av
->next
)
4671 if (av
!= common_av
)
4672 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
4674 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
4675 printf (" }\n}\n\n");
4678 /* Given an AND tree of known true terms (because we are inside an `if' with
4679 that as the condition or are in an `else' clause) and an expression,
4680 replace any known true terms with TRUE. Use `simplify_and_tree' to do
4681 the bulk of the work. */
4684 eliminate_known_true (known_true
, exp
, insn_code
, insn_index
)
4687 int insn_code
, insn_index
;
4691 known_true
= SIMPLIFY_TEST_EXP (known_true
, insn_code
, insn_index
);
4693 if (GET_CODE (known_true
) == AND
)
4695 exp
= eliminate_known_true (XEXP (known_true
, 0), exp
,
4696 insn_code
, insn_index
);
4697 exp
= eliminate_known_true (XEXP (known_true
, 1), exp
,
4698 insn_code
, insn_index
);
4703 exp
= simplify_and_tree (exp
, &term
, insn_code
, insn_index
);
4709 /* Write out a series of tests and assignment statements to perform tests and
4710 sets of an attribute value. We are passed an indentation amount and prefix
4711 and suffix strings to write around each attribute value (e.g., "return"
4715 write_attr_set (attr
, indent
, value
, prefix
, suffix
, known_true
,
4716 insn_code
, insn_index
)
4717 struct attr_desc
*attr
;
4723 int insn_code
, insn_index
;
4725 if (GET_CODE (value
) == CONST_STRING
)
4727 write_indent (indent
);
4728 printf ("%s ", prefix
);
4729 write_attr_value (attr
, value
);
4730 printf ("%s\n", suffix
);
4732 else if (GET_CODE (value
) == COND
)
4734 /* Assume the default value will be the default of the COND unless we
4735 find an always true expression. */
4736 rtx default_val
= XEXP (value
, 1);
4737 rtx our_known_true
= known_true
;
4742 for (i
= 0; i
< XVECLEN (value
, 0); i
+= 2)
4747 testexp
= eliminate_known_true (our_known_true
,
4748 XVECEXP (value
, 0, i
),
4749 insn_code
, insn_index
);
4750 newexp
= attr_rtx (NOT
, testexp
);
4751 newexp
= insert_right_side (AND
, our_known_true
, newexp
,
4752 insn_code
, insn_index
);
4754 /* If the test expression is always true or if the next `known_true'
4755 expression is always false, this is the last case, so break
4756 out and let this value be the `else' case. */
4757 if (testexp
== true_rtx
|| newexp
== false_rtx
)
4759 default_val
= XVECEXP (value
, 0, i
+ 1);
4763 /* Compute the expression to pass to our recursive call as being
4765 inner_true
= insert_right_side (AND
, our_known_true
,
4766 testexp
, insn_code
, insn_index
);
4768 /* If this is always false, skip it. */
4769 if (inner_true
== false_rtx
)
4772 write_indent (indent
);
4773 printf ("%sif ", first_if
? "" : "else ");
4775 write_test_expr (testexp
, 0);
4777 write_indent (indent
+ 2);
4780 write_attr_set (attr
, indent
+ 4,
4781 XVECEXP (value
, 0, i
+ 1), prefix
, suffix
,
4782 inner_true
, insn_code
, insn_index
);
4783 write_indent (indent
+ 2);
4785 our_known_true
= newexp
;
4790 write_indent (indent
);
4792 write_indent (indent
+ 2);
4796 write_attr_set (attr
, first_if
? indent
: indent
+ 4, default_val
,
4797 prefix
, suffix
, our_known_true
, insn_code
, insn_index
);
4801 write_indent (indent
+ 2);
4809 /* Write out the computation for one attribute value. */
4812 write_attr_case (attr
, av
, write_case_lines
, prefix
, suffix
, indent
,
4814 struct attr_desc
*attr
;
4815 struct attr_value
*av
;
4816 int write_case_lines
;
4817 char *prefix
, *suffix
;
4821 struct insn_ent
*ie
;
4823 if (av
->num_insns
== 0)
4826 if (av
->has_asm_insn
)
4828 write_indent (indent
);
4829 printf ("case -1:\n");
4830 write_indent (indent
+ 2);
4831 printf ("if (GET_CODE (PATTERN (insn)) != ASM_INPUT\n");
4832 write_indent (indent
+ 2);
4833 printf (" && asm_noperands (PATTERN (insn)) < 0)\n");
4834 write_indent (indent
+ 2);
4835 printf (" fatal_insn_not_found (insn);\n");
4838 if (write_case_lines
)
4840 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
4841 if (ie
->insn_code
!= -1)
4843 write_indent (indent
);
4844 printf ("case %d:\n", ie
->insn_code
);
4849 write_indent (indent
);
4850 printf ("default:\n");
4853 /* See what we have to do to output this value. */
4854 must_extract
= must_constrain
= address_used
= 0;
4855 walk_attr_value (av
->value
);
4859 write_indent (indent
+ 2);
4860 printf ("insn_extract (insn);\n");
4865 #ifdef REGISTER_CONSTRAINTS
4866 write_indent (indent
+ 2);
4867 printf ("if (! constrain_operands (INSN_CODE (insn), reload_completed))\n");
4868 write_indent (indent
+ 2);
4869 printf (" fatal_insn_not_found (insn);\n");
4873 write_attr_set (attr
, indent
+ 2, av
->value
, prefix
, suffix
,
4874 known_true
, av
->first_insn
->insn_code
,
4875 av
->first_insn
->insn_index
);
4877 if (strncmp (prefix
, "return", 6))
4879 write_indent (indent
+ 2);
4880 printf ("break;\n");
4885 /* Utilities to write names in various forms. */
4888 write_attr_valueq (attr
, s
)
4889 struct attr_desc
*attr
;
4892 if (attr
->is_numeric
)
4895 /* Make the blockage range values easier to read. */
4897 printf (" /* 0x%x */", atoi (s
));
4901 write_upcase (attr
->name
);
4908 write_attr_value (attr
, value
)
4909 struct attr_desc
*attr
;
4912 if (GET_CODE (value
) != CONST_STRING
)
4915 write_attr_valueq (attr
, XSTR (value
, 0));
4923 if (*str
< 'a' || *str
> 'z')
4924 printf ("%c", *str
++);
4926 printf ("%c", *str
++ - 'a' + 'A');
4930 write_indent (indent
)
4933 for (; indent
> 8; indent
-= 8)
4936 for (; indent
; indent
--)
4940 /* Write a subroutine that is given an insn that requires a delay slot, a
4941 delay slot ordinal, and a candidate insn. It returns non-zero if the
4942 candidate can be placed in the specified delay slot of the insn.
4944 We can write as many as three subroutines. `eligible_for_delay'
4945 handles normal delay slots, `eligible_for_annul_true' indicates that
4946 the specified insn can be annulled if the branch is true, and likewise
4947 for `eligible_for_annul_false'.
4949 KIND is a string distinguishing these three cases ("delay", "annul_true",
4950 or "annul_false"). */
4953 write_eligible_delay (kind
)
4956 struct delay_desc
*delay
;
4959 struct attr_desc
*attr
;
4960 struct attr_value
*av
, *common_av
;
4963 /* Compute the maximum number of delay slots required. We use the delay
4964 ordinal times this number plus one, plus the slot number as an index into
4965 the appropriate predicate to test. */
4967 for (delay
= delays
, max_slots
= 0; delay
; delay
= delay
->next
)
4968 if (XVECLEN (delay
->def
, 1) / 3 > max_slots
)
4969 max_slots
= XVECLEN (delay
->def
, 1) / 3;
4971 /* Write function prelude. */
4974 printf ("eligible_for_%s (delay_insn, slot, candidate_insn, flags)\n",
4976 printf (" rtx delay_insn;\n");
4977 printf (" int slot;\n");
4978 printf (" rtx candidate_insn;\n");
4979 printf (" int flags;\n");
4981 printf (" rtx insn;\n");
4983 printf (" if (slot >= %d)\n", max_slots
);
4984 printf (" abort ();\n");
4987 /* If more than one delay type, find out which type the delay insn is. */
4991 attr
= find_attr ("*delay_type", 0);
4992 if (! attr
) abort ();
4993 common_av
= find_most_used (attr
);
4995 printf (" insn = delay_insn;\n");
4996 printf (" switch (recog_memoized (insn))\n");
4999 sprintf (str
, " * %d;\n break;", max_slots
);
5000 for (av
= attr
->first_value
; av
; av
= av
->next
)
5001 if (av
!= common_av
)
5002 write_attr_case (attr
, av
, 1, "slot +=", str
, 4, true_rtx
);
5004 write_attr_case (attr
, common_av
, 0, "slot +=", str
, 4, true_rtx
);
5007 /* Ensure matched. Otherwise, shouldn't have been called. */
5008 printf (" if (slot < %d)\n", max_slots
);
5009 printf (" abort ();\n\n");
5012 /* If just one type of delay slot, write simple switch. */
5013 if (num_delays
== 1 && max_slots
== 1)
5015 printf (" insn = candidate_insn;\n");
5016 printf (" switch (recog_memoized (insn))\n");
5019 attr
= find_attr ("*delay_1_0", 0);
5020 if (! attr
) abort ();
5021 common_av
= find_most_used (attr
);
5023 for (av
= attr
->first_value
; av
; av
= av
->next
)
5024 if (av
!= common_av
)
5025 write_attr_case (attr
, av
, 1, "return", ";", 4, true_rtx
);
5027 write_attr_case (attr
, common_av
, 0, "return", ";", 4, true_rtx
);
5033 /* Write a nested CASE. The first indicates which condition we need to
5034 test, and the inner CASE tests the condition. */
5035 printf (" insn = candidate_insn;\n");
5036 printf (" switch (slot)\n");
5039 for (delay
= delays
; delay
; delay
= delay
->next
)
5040 for (i
= 0; i
< XVECLEN (delay
->def
, 1); i
+= 3)
5042 printf (" case %d:\n",
5043 (i
/ 3) + (num_delays
== 1 ? 0 : delay
->num
* max_slots
));
5044 printf (" switch (recog_memoized (insn))\n");
5047 sprintf (str
, "*%s_%d_%d", kind
, delay
->num
, i
/ 3);
5048 attr
= find_attr (str
, 0);
5049 if (! attr
) abort ();
5050 common_av
= find_most_used (attr
);
5052 for (av
= attr
->first_value
; av
; av
= av
->next
)
5053 if (av
!= common_av
)
5054 write_attr_case (attr
, av
, 1, "return", ";", 8, true_rtx
);
5056 write_attr_case (attr
, common_av
, 0, "return", ";", 8, true_rtx
);
5060 printf (" default:\n");
5061 printf (" abort ();\n");
5068 /* Write routines to compute conflict cost for function units. Then write a
5069 table describing the available function units. */
5072 write_function_unit_info ()
5074 struct function_unit
*unit
;
5077 /* Write out conflict routines for function units. Don't bother writing
5078 one if there is only one issue delay value. */
5080 for (unit
= units
; unit
; unit
= unit
->next
)
5082 if (unit
->needs_blockage_function
)
5083 write_complex_function (unit
, "blockage", "block");
5085 /* If the minimum and maximum conflict costs are the same, there
5086 is only one value, so we don't need a function. */
5087 if (! unit
->needs_conflict_function
)
5089 unit
->default_cost
= make_numeric_value (unit
->issue_delay
.max
);
5093 /* The function first computes the case from the candidate insn. */
5094 unit
->default_cost
= make_numeric_value (0);
5095 write_complex_function (unit
, "conflict_cost", "cost");
5098 /* Now that all functions have been written, write the table describing
5099 the function units. The name is included for documentation purposes
5102 printf ("struct function_unit_desc function_units[] = {\n");
5104 /* Write out the descriptions in numeric order, but don't force that order
5105 on the list. Doing so increases the runtime of genattrtab.c. */
5106 for (i
= 0; i
< num_units
; i
++)
5108 for (unit
= units
; unit
; unit
= unit
->next
)
5112 printf (" {\"%s\", %d, %d, %d, %s, %d, %s_unit_ready_cost, ",
5113 unit
->name
, 1 << unit
->num
, unit
->multiplicity
,
5114 unit
->simultaneity
, XSTR (unit
->default_cost
, 0),
5115 unit
->issue_delay
.max
, unit
->name
);
5117 if (unit
->needs_conflict_function
)
5118 printf ("%s_unit_conflict_cost, ", unit
->name
);
5122 printf ("%d, ", unit
->max_blockage
);
5124 if (unit
->needs_range_function
)
5125 printf ("%s_unit_blockage_range, ", unit
->name
);
5129 if (unit
->needs_blockage_function
)
5130 printf ("%s_unit_blockage", unit
->name
);
5141 write_complex_function (unit
, name
, connection
)
5142 struct function_unit
*unit
;
5143 char *name
, *connection
;
5145 struct attr_desc
*case_attr
, *attr
;
5146 struct attr_value
*av
, *common_av
;
5152 printf ("static int\n");
5153 printf ("%s_unit_%s (executing_insn, candidate_insn)\n",
5155 printf (" rtx executing_insn;\n");
5156 printf (" rtx candidate_insn;\n");
5158 printf (" rtx insn;\n");
5159 printf (" int casenum;\n\n");
5160 printf (" insn = executing_insn;\n");
5161 printf (" switch (recog_memoized (insn))\n");
5164 /* Write the `switch' statement to get the case value. */
5165 str
= (char *) alloca (strlen (unit
->name
) + strlen (name
) + strlen (connection
) + 10);
5166 sprintf (str
, "*%s_cases", unit
->name
);
5167 case_attr
= find_attr (str
, 0);
5168 if (! case_attr
) abort ();
5169 common_av
= find_most_used (case_attr
);
5171 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5172 if (av
!= common_av
)
5173 write_attr_case (case_attr
, av
, 1,
5174 "casenum =", ";", 4, unit
->condexp
);
5176 write_attr_case (case_attr
, common_av
, 0,
5177 "casenum =", ";", 4, unit
->condexp
);
5180 /* Now write an outer switch statement on each case. Then write
5181 the tests on the executing function within each. */
5182 printf (" insn = candidate_insn;\n");
5183 printf (" switch (casenum)\n");
5186 for (i
= 0; i
< unit
->num_opclasses
; i
++)
5188 /* Ensure using this case. */
5190 for (av
= case_attr
->first_value
; av
; av
= av
->next
)
5192 && contained_in_p (make_numeric_value (i
), av
->value
))
5198 printf (" case %d:\n", i
);
5199 sprintf (str
, "*%s_%s_%d", unit
->name
, connection
, i
);
5200 attr
= find_attr (str
, 0);
5201 if (! attr
) abort ();
5203 /* If single value, just write it. */
5204 value
= find_single_value (attr
);
5206 write_attr_set (attr
, 6, value
, "return", ";\n", true_rtx
, -2, -2);
5209 common_av
= find_most_used (attr
);
5210 printf (" switch (recog_memoized (insn))\n");
5213 for (av
= attr
->first_value
; av
; av
= av
->next
)
5214 if (av
!= common_av
)
5215 write_attr_case (attr
, av
, 1,
5216 "return", ";", 8, unit
->condexp
);
5218 write_attr_case (attr
, common_av
, 0,
5219 "return", ";", 8, unit
->condexp
);
5224 printf (" }\n}\n\n");
5227 /* This page contains miscellaneous utility routines. */
5229 /* Given a string, return the number of comma-separated elements in it.
5230 Return 0 for the null string. */
5241 for (n
= 1; *s
; s
++)
5248 /* Given a pointer to a (char *), return a malloc'ed string containing the
5249 next comma-separated element. Advance the pointer to after the string
5250 scanned, or the end-of-string. Return NULL if at end of string. */
5253 next_comma_elt (pstr
)
5262 /* Find end of string to compute length. */
5263 for (p
= *pstr
; *p
!= ',' && *p
!= '\0'; p
++)
5266 out_str
= attr_string (*pstr
, p
- *pstr
);
5275 /* Return a `struct attr_desc' pointer for a given named attribute. If CREATE
5276 is non-zero, build a new attribute, if one does not exist. */
5278 static struct attr_desc
*
5279 find_attr (name
, create
)
5283 struct attr_desc
*attr
;
5286 /* Before we resort to using `strcmp', see if the string address matches
5287 anywhere. In most cases, it should have been canonicalized to do so. */
5288 if (name
== alternative_name
)
5291 index
= name
[0] & (MAX_ATTRS_INDEX
- 1);
5292 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5293 if (name
== attr
->name
)
5296 /* Otherwise, do it the slow way. */
5297 for (attr
= attrs
[index
]; attr
; attr
= attr
->next
)
5298 if (name
[0] == attr
->name
[0] && ! strcmp (name
, attr
->name
))
5304 attr
= (struct attr_desc
*) oballoc (sizeof (struct attr_desc
));
5305 attr
->name
= attr_string (name
, strlen (name
));
5306 attr
->first_value
= attr
->default_val
= NULL
;
5307 attr
->is_numeric
= attr
->negative_ok
= attr
->is_const
= attr
->is_special
= 0;
5308 attr
->next
= attrs
[index
];
5309 attrs
[index
] = attr
;
5314 /* Create internal attribute with the given default value. */
5317 make_internal_attr (name
, value
, special
)
5322 struct attr_desc
*attr
;
5324 attr
= find_attr (name
, 1);
5325 if (attr
->default_val
)
5328 attr
->is_numeric
= 1;
5330 attr
->is_special
= (special
& 1) != 0;
5331 attr
->negative_ok
= (special
& 2) != 0;
5332 attr
->unsigned_p
= (special
& 4) != 0;
5333 attr
->default_val
= get_attr_value (value
, attr
, -2);
5336 /* Find the most used value of an attribute. */
5338 static struct attr_value
*
5339 find_most_used (attr
)
5340 struct attr_desc
*attr
;
5342 struct attr_value
*av
;
5343 struct attr_value
*most_used
;
5349 for (av
= attr
->first_value
; av
; av
= av
->next
)
5350 if (av
->num_insns
> nuses
)
5351 nuses
= av
->num_insns
, most_used
= av
;
5356 /* If an attribute only has a single value used, return it. Otherwise
5360 find_single_value (attr
)
5361 struct attr_desc
*attr
;
5363 struct attr_value
*av
;
5366 unique_value
= NULL
;
5367 for (av
= attr
->first_value
; av
; av
= av
->next
)
5373 unique_value
= av
->value
;
5376 return unique_value
;
5379 /* Return (attr_value "n") */
5382 make_numeric_value (n
)
5385 static rtx int_values
[20];
5392 if (n
< 20 && int_values
[n
])
5393 return int_values
[n
];
5395 p
= attr_printf (MAX_DIGITS
, "%d", n
);
5396 exp
= attr_rtx (CONST_STRING
, p
);
5399 int_values
[n
] = exp
;
5405 extend_range (range
, min
, max
)
5406 struct range
*range
;
5410 if (range
->min
> min
) range
->min
= min
;
5411 if (range
->max
< max
) range
->max
= max
;
5415 xrealloc (ptr
, size
)
5419 char *result
= (char *) realloc (ptr
, size
);
5421 fatal ("virtual memory exhausted");
5429 register char *val
= (char *) malloc (size
);
5432 fatal ("virtual memory exhausted");
5437 copy_rtx_unchanging (orig
)
5442 register RTX_CODE code
;
5445 if (RTX_UNCHANGING_P (orig
) || MEM_IN_STRUCT_P (orig
))
5448 MEM_IN_STRUCT_P (orig
) = 1;
5452 code
= GET_CODE (orig
);
5462 copy
= rtx_alloc (code
);
5463 PUT_MODE (copy
, GET_MODE (orig
));
5464 RTX_UNCHANGING_P (copy
) = 1;
5466 bcopy ((char *) &XEXP (orig
, 0), (char *) &XEXP (copy
, 0),
5467 GET_RTX_LENGTH (GET_CODE (copy
)) * sizeof (rtx
));
5476 fprintf (stderr
, "genattrtab: ");
5477 fprintf (stderr
, s
, a1
, a2
);
5478 fprintf (stderr
, "\n");
5479 exit (FATAL_EXIT_CODE
);
5482 /* More 'friendly' abort that prints the line and file.
5483 config.h can #define abort fancy_abort if you like that sort of thing. */
5488 fatal ("Internal gcc abort.");
5491 /* Determine if an insn has a constant number of delay slots, i.e., the
5492 number of delay slots is not a function of the length of the insn. */
5495 write_const_num_delay_slots ()
5497 struct attr_desc
*attr
= find_attr ("*num_delay_slots", 0);
5498 struct attr_value
*av
;
5499 struct insn_ent
*ie
;
5504 printf ("int\nconst_num_delay_slots (insn)\n");
5505 printf (" rtx insn;\n");
5507 printf (" switch (recog_memoized (insn))\n");
5510 for (av
= attr
->first_value
; av
; av
= av
->next
)
5513 walk_attr_value (av
->value
);
5516 for (ie
= av
->first_insn
; ie
; ie
= ie
->next
)
5517 if (ie
->insn_code
!= -1)
5518 printf (" case %d:\n", ie
->insn_code
);
5519 printf (" return 0;\n");
5523 printf (" default:\n");
5524 printf (" return 1;\n");
5538 struct attr_desc
*attr
;
5539 struct insn_def
*id
;
5544 /* Get rid of any avoidable limit on stack size. */
5548 /* Set the stack limit huge so that alloca does not fail. */
5549 getrlimit (RLIMIT_STACK
, &rlim
);
5550 rlim
.rlim_cur
= rlim
.rlim_max
;
5551 setrlimit (RLIMIT_STACK
, &rlim
);
5553 #endif /* RLIMIT_STACK defined */
5555 obstack_init (rtl_obstack
);
5556 obstack_init (hash_obstack
);
5557 obstack_init (temp_obstack
);
5560 fatal ("No input file name.");
5562 infile
= fopen (argv
[1], "r");
5566 exit (FATAL_EXIT_CODE
);
5571 /* Set up true and false rtx's */
5572 true_rtx
= rtx_alloc (CONST_INT
);
5573 XWINT (true_rtx
, 0) = 1;
5574 false_rtx
= rtx_alloc (CONST_INT
);
5575 XWINT (false_rtx
, 0) = 0;
5576 RTX_UNCHANGING_P (true_rtx
) = RTX_UNCHANGING_P (false_rtx
) = 1;
5577 RTX_INTEGRATED_P (true_rtx
) = RTX_INTEGRATED_P (false_rtx
) = 1;
5579 alternative_name
= attr_string ("alternative", strlen ("alternative"));
5581 printf ("/* Generated automatically by the program `genattrtab'\n\
5582 from the machine description file `md'. */\n\n");
5584 /* Read the machine description. */
5588 c
= read_skip_spaces (infile
);
5593 desc
= read_rtx (infile
);
5594 if (GET_CODE (desc
) == DEFINE_INSN
5595 || GET_CODE (desc
) == DEFINE_PEEPHOLE
5596 || GET_CODE (desc
) == DEFINE_ASM_ATTRIBUTES
)
5599 else if (GET_CODE (desc
) == DEFINE_EXPAND
)
5600 insn_code_number
++, insn_index_number
++;
5602 else if (GET_CODE (desc
) == DEFINE_SPLIT
)
5603 insn_code_number
++, insn_index_number
++;
5605 else if (GET_CODE (desc
) == DEFINE_ATTR
)
5608 insn_index_number
++;
5611 else if (GET_CODE (desc
) == DEFINE_DELAY
)
5614 insn_index_number
++;
5617 else if (GET_CODE (desc
) == DEFINE_FUNCTION_UNIT
)
5620 insn_index_number
++;
5624 /* If we didn't have a DEFINE_ASM_ATTRIBUTES, make a null one. */
5625 if (! got_define_asm_attributes
)
5627 tem
= rtx_alloc (DEFINE_ASM_ATTRIBUTES
);
5628 XVEC (tem
, 0) = rtvec_alloc (0);
5632 /* Expand DEFINE_DELAY information into new attribute. */
5636 /* Expand DEFINE_FUNCTION_UNIT information into new attributes. */
5640 printf ("#include \"config.h\"\n");
5641 printf ("#include \"rtl.h\"\n");
5642 printf ("#include \"insn-config.h\"\n");
5643 printf ("#include \"recog.h\"\n");
5644 printf ("#include \"regs.h\"\n");
5645 printf ("#include \"real.h\"\n");
5646 printf ("#include \"output.h\"\n");
5647 printf ("#include \"insn-attr.h\"\n");
5649 printf ("#define operands recog_operand\n\n");
5651 /* Make `insn_alternatives'. */
5652 insn_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
5653 for (id
= defs
; id
; id
= id
->next
)
5654 if (id
->insn_code
>= 0)
5655 insn_alternatives
[id
->insn_code
] = (1 << id
->num_alternatives
) - 1;
5657 /* Make `insn_n_alternatives'. */
5658 insn_n_alternatives
= (int *) oballoc (insn_code_number
* sizeof (int));
5659 for (id
= defs
; id
; id
= id
->next
)
5660 if (id
->insn_code
>= 0)
5661 insn_n_alternatives
[id
->insn_code
] = id
->num_alternatives
;
5663 /* Prepare to write out attribute subroutines by checking everything stored
5664 away and building the attribute cases. */
5667 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5668 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5670 attr
->default_val
->value
5671 = check_attr_value (attr
->default_val
->value
, attr
);
5675 /* Construct extra attributes for `length'. */
5676 make_length_attrs ();
5678 /* Perform any possible optimizations to speed up compilation. */
5681 /* Now write out all the `gen_attr_...' routines. Do these before the
5682 special routines (specifically before write_function_unit_info), so
5683 that they get defined before they are used. */
5685 for (i
= 0; i
< MAX_ATTRS_INDEX
; i
++)
5686 for (attr
= attrs
[i
]; attr
; attr
= attr
->next
)
5688 if (! attr
->is_special
)
5689 write_attr_get (attr
);
5692 /* Write out delay eligibility information, if DEFINE_DELAY present.
5693 (The function to compute the number of delay slots will be written
5697 write_eligible_delay ("delay");
5698 if (have_annul_true
)
5699 write_eligible_delay ("annul_true");
5700 if (have_annul_false
)
5701 write_eligible_delay ("annul_false");
5704 /* Write out information about function units. */
5706 write_function_unit_info ();
5708 /* Write out constant delay slot info */
5709 write_const_num_delay_slots ();
5712 exit (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);