Bump for snapshot
[gcc.git] / gcc / genrecog.c
1 /* Generate code from machine description to recognize rtl as insns.
2 Copyright (C) 1987, 88, 92-95, 97-98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 /* This program is used to produce insn-recog.c, which contains
23 a function called `recog' plus its subroutines.
24 These functions contain a decision tree
25 that recognizes whether an rtx, the argument given to recog,
26 is a valid instruction.
27
28 recog returns -1 if the rtx is not valid.
29 If the rtx is valid, recog returns a nonnegative number
30 which is the insn code number for the pattern that matched.
31 This is the same as the order in the machine description of the
32 entry that matched. This number can be used as an index into various
33 insn_* tables, such as insn_template, insn_outfun, and insn_n_operands
34 (found in insn-output.c).
35
36 The third argument to recog is an optional pointer to an int.
37 If present, recog will accept a pattern if it matches except for
38 missing CLOBBER expressions at the end. In that case, the value
39 pointed to by the optional pointer will be set to the number of
40 CLOBBERs that need to be added (it should be initialized to zero by
41 the caller). If it is set nonzero, the caller should allocate a
42 PARALLEL of the appropriate size, copy the initial entries, and call
43 add_clobbers (found in insn-emit.c) to fill in the CLOBBERs.
44
45 This program also generates the function `split_insns',
46 which returns 0 if the rtl could not be split, or
47 it returns the split rtl in a SEQUENCE. */
48
49 #include "hconfig.h"
50 #include "system.h"
51 #include "rtl.h"
52 #include "obstack.h"
53
54 #define OUTPUT_LABEL(INDENT_STRING, LABEL_NUMBER) \
55 printf("%sL%d: ATTRIBUTE_UNUSED_LABEL\n", (INDENT_STRING), (LABEL_NUMBER))
56
57 static struct obstack obstack;
58 struct obstack *rtl_obstack = &obstack;
59
60 #define obstack_chunk_alloc xmalloc
61 #define obstack_chunk_free free
62
63 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
64 char **insn_name_ptr = 0;
65
66 /* Data structure for a listhead of decision trees. The alternatives
67 to a node are kept in a doublely-linked list so we can easily add nodes
68 to the proper place when merging. */
69
70 struct decision_head { struct decision *first, *last; };
71
72 /* Data structure for decision tree for recognizing
73 legitimate instructions. */
74
75 struct decision
76 {
77 int number; /* Node number, used for labels */
78 char *position; /* String denoting position in pattern */
79 RTX_CODE code; /* Code to test for or UNKNOWN to suppress */
80 char ignore_code; /* If non-zero, need not test code */
81 char ignore_mode; /* If non-zero, need not test mode */
82 int veclen; /* Length of vector, if nonzero */
83 enum machine_mode mode; /* Machine mode of node */
84 char enforce_mode; /* If non-zero, test `mode' */
85 char retest_code, retest_mode; /* See write_tree_1 */
86 int test_elt_zero_int; /* Nonzero if should test XINT (rtl, 0) */
87 int elt_zero_int; /* Required value for XINT (rtl, 0) */
88 int test_elt_one_int; /* Nonzero if should test XINT (rtl, 1) */
89 int elt_one_int; /* Required value for XINT (rtl, 1) */
90 int test_elt_zero_wide; /* Nonzero if should test XWINT (rtl, 0) */
91 HOST_WIDE_INT elt_zero_wide; /* Required value for XWINT (rtl, 0) */
92 const char *tests; /* If nonzero predicate to call */
93 int pred; /* `preds' index of predicate or -1 */
94 char *c_test; /* Additional test to perform */
95 struct decision_head success; /* Nodes to test on success */
96 int insn_code_number; /* Insn number matched, if success */
97 int num_clobbers_to_add; /* Number of CLOBBERs to be added to pattern */
98 struct decision *next; /* Node to test on failure */
99 struct decision *prev; /* Node whose failure tests us */
100 struct decision *afterward; /* Node to test on success, but failure of
101 successor nodes */
102 int opno; /* Operand number, if >= 0 */
103 int dupno; /* Number of operand to compare against */
104 int label_needed; /* Nonzero if label needed when writing tree */
105 int subroutine_number; /* Number of subroutine this node starts */
106 };
107
108 #define SUBROUTINE_THRESHOLD 50
109
110 static int next_subroutine_number;
111
112 /* We can write two types of subroutines: One for insn recognition and
113 one to split insns. This defines which type is being written. */
114
115 enum routine_type {RECOG, SPLIT};
116
117 /* Next available node number for tree nodes. */
118
119 static int next_number;
120
121 /* Next number to use as an insn_code. */
122
123 static int next_insn_code;
124
125 /* Similar, but counts all expressions in the MD file; used for
126 error messages. */
127
128 static int next_index;
129
130 /* Record the highest depth we ever have so we know how many variables to
131 allocate in each subroutine we make. */
132
133 static int max_depth;
134 \f
135 /* This table contains a list of the rtl codes that can possibly match a
136 predicate defined in recog.c. The function `not_both_true' uses it to
137 deduce that there are no expressions that can be matches by certain pairs
138 of tree nodes. Also, if a predicate can match only one code, we can
139 hardwire that code into the node testing the predicate. */
140
141 static struct pred_table
142 {
143 const char *name;
144 RTX_CODE codes[NUM_RTX_CODE];
145 } preds[]
146 = {{"general_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
147 LABEL_REF, SUBREG, REG, MEM}},
148 #ifdef PREDICATE_CODES
149 PREDICATE_CODES
150 #endif
151 {"address_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
152 LABEL_REF, SUBREG, REG, MEM, PLUS, MINUS, MULT}},
153 {"register_operand", {SUBREG, REG}},
154 {"scratch_operand", {SCRATCH, REG}},
155 {"immediate_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
156 LABEL_REF}},
157 {"const_int_operand", {CONST_INT}},
158 {"const_double_operand", {CONST_INT, CONST_DOUBLE}},
159 {"nonimmediate_operand", {SUBREG, REG, MEM}},
160 {"nonmemory_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
161 LABEL_REF, SUBREG, REG}},
162 {"push_operand", {MEM}},
163 {"memory_operand", {SUBREG, MEM}},
164 {"indirect_operand", {SUBREG, MEM}},
165 {"comparison_operator", {EQ, NE, LE, LT, GE, GT, LEU, LTU, GEU, GTU}},
166 {"mode_independent_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,
167 LABEL_REF, SUBREG, REG, MEM}}};
168
169 #define NUM_KNOWN_PREDS (sizeof preds / sizeof preds[0])
170
171 static struct decision_head make_insn_sequence PROTO((rtx, enum routine_type));
172 static struct decision *add_to_sequence PROTO((rtx, struct decision_head *,
173 const char *));
174 static int not_both_true PROTO((struct decision *, struct decision *,
175 int));
176 static int position_merit PROTO((struct decision *, enum machine_mode,
177 enum rtx_code));
178 static struct decision_head merge_trees PROTO((struct decision_head,
179 struct decision_head));
180 static int break_out_subroutines PROTO((struct decision_head,
181 enum routine_type, int));
182 static void write_subroutine PROTO((struct decision *, enum routine_type));
183 static void write_tree_1 PROTO((struct decision *, const char *,
184 struct decision *, enum routine_type));
185 static void print_code PROTO((enum rtx_code));
186 static int same_codes PROTO((struct decision *, enum rtx_code));
187 static void clear_codes PROTO((struct decision *));
188 static int same_modes PROTO((struct decision *, enum machine_mode));
189 static void clear_modes PROTO((struct decision *));
190 static void write_tree PROTO((struct decision *, const char *,
191 struct decision *, int,
192 enum routine_type));
193 static void change_state PROTO((const char *, const char *, int));
194 static void fatal PVPROTO((const char *, ...))
195 ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN;
196 void fancy_abort PROTO((void)) ATTRIBUTE_NORETURN;
197 \f
198 /* Construct and return a sequence of decisions
199 that will recognize INSN.
200
201 TYPE says what type of routine we are recognizing (RECOG or SPLIT). */
202
203 static struct decision_head
204 make_insn_sequence (insn, type)
205 rtx insn;
206 enum routine_type type;
207 {
208 rtx x;
209 char *c_test = XSTR (insn, type == RECOG ? 2 : 1);
210 struct decision *last;
211 struct decision_head head;
212
213 if (XVECLEN (insn, type == RECOG) == 1)
214 x = XVECEXP (insn, type == RECOG, 0);
215 else
216 {
217 x = rtx_alloc (PARALLEL);
218 XVEC (x, 0) = XVEC (insn, type == RECOG);
219 PUT_MODE (x, VOIDmode);
220 }
221
222 last = add_to_sequence (x, &head, "");
223
224 if (c_test[0])
225 last->c_test = c_test;
226 last->insn_code_number = next_insn_code;
227 last->num_clobbers_to_add = 0;
228
229 /* If this is not a DEFINE_SPLIT and X is a PARALLEL, see if it ends with a
230 group of CLOBBERs of (hard) registers or MATCH_SCRATCHes. If so, set up
231 to recognize the pattern without these CLOBBERs. */
232
233 if (type == RECOG && GET_CODE (x) == PARALLEL)
234 {
235 int i;
236
237 for (i = XVECLEN (x, 0); i > 0; i--)
238 if (GET_CODE (XVECEXP (x, 0, i - 1)) != CLOBBER
239 || (GET_CODE (XEXP (XVECEXP (x, 0, i - 1), 0)) != REG
240 && GET_CODE (XEXP (XVECEXP (x, 0, i - 1), 0)) != MATCH_SCRATCH))
241 break;
242
243 if (i != XVECLEN (x, 0))
244 {
245 rtx new;
246 struct decision_head clobber_head;
247
248 if (i == 1)
249 new = XVECEXP (x, 0, 0);
250 else
251 {
252 int j;
253
254 new = rtx_alloc (PARALLEL);
255 XVEC (new, 0) = rtvec_alloc (i);
256 for (j = i - 1; j >= 0; j--)
257 XVECEXP (new, 0, j) = XVECEXP (x, 0, j);
258 }
259
260 last = add_to_sequence (new, &clobber_head, "");
261
262 if (c_test[0])
263 last->c_test = c_test;
264 last->insn_code_number = next_insn_code;
265 last->num_clobbers_to_add = XVECLEN (x, 0) - i;
266
267 head = merge_trees (head, clobber_head);
268 }
269 }
270
271 next_insn_code++;
272
273 if (type == SPLIT)
274 /* Define the subroutine we will call below and emit in genemit. */
275 printf ("extern rtx gen_split_%d ();\n", last->insn_code_number);
276
277 return head;
278 }
279 \f
280 /* Create a chain of nodes to verify that an rtl expression matches
281 PATTERN.
282
283 LAST is a pointer to the listhead in the previous node in the chain (or
284 in the calling function, for the first node).
285
286 POSITION is the string representing the current position in the insn.
287
288 A pointer to the final node in the chain is returned. */
289
290 static struct decision *
291 add_to_sequence (pattern, last, position)
292 rtx pattern;
293 struct decision_head *last;
294 const char *position;
295 {
296 register RTX_CODE code;
297 register struct decision *new
298 = (struct decision *) xmalloc (sizeof (struct decision));
299 struct decision *this;
300 char *newpos;
301 register char *fmt;
302 register size_t i;
303 int depth = strlen (position);
304 int len;
305
306 if (depth > max_depth)
307 max_depth = depth;
308
309 new->number = next_number++;
310 new->position = xstrdup (position);
311 new->ignore_code = 0;
312 new->ignore_mode = 0;
313 new->enforce_mode = 1;
314 new->retest_code = new->retest_mode = 0;
315 new->veclen = 0;
316 new->test_elt_zero_int = 0;
317 new->test_elt_one_int = 0;
318 new->test_elt_zero_wide = 0;
319 new->elt_zero_int = 0;
320 new->elt_one_int = 0;
321 new->elt_zero_wide = 0;
322 new->tests = 0;
323 new->pred = -1;
324 new->c_test = 0;
325 new->success.first = new->success.last = 0;
326 new->insn_code_number = -1;
327 new->num_clobbers_to_add = 0;
328 new->next = 0;
329 new->prev = 0;
330 new->afterward = 0;
331 new->opno = -1;
332 new->dupno = -1;
333 new->label_needed = 0;
334 new->subroutine_number = 0;
335
336 this = new;
337
338 last->first = last->last = new;
339
340 newpos = (char *) alloca (depth + 2);
341 strcpy (newpos, position);
342 newpos[depth + 1] = 0;
343
344 restart:
345
346 new->mode = GET_MODE (pattern);
347 new->code = code = GET_CODE (pattern);
348
349 switch (code)
350 {
351 case MATCH_OPERAND:
352 case MATCH_SCRATCH:
353 case MATCH_OPERATOR:
354 case MATCH_PARALLEL:
355 case MATCH_INSN2:
356 new->opno = XINT (pattern, 0);
357 new->code = (code == MATCH_PARALLEL ? PARALLEL : UNKNOWN);
358 new->enforce_mode = 0;
359
360 if (code == MATCH_SCRATCH)
361 new->tests = "scratch_operand";
362 else
363 new->tests = XSTR (pattern, 1);
364
365 if (*new->tests == 0)
366 new->tests = 0;
367
368 /* See if we know about this predicate and save its number. If we do,
369 and it only accepts one code, note that fact. The predicate
370 `const_int_operand' only tests for a CONST_INT, so if we do so we
371 can avoid calling it at all.
372
373 Finally, if we know that the predicate does not allow CONST_INT, we
374 know that the only way the predicate can match is if the modes match
375 (here we use the kludge of relying on the fact that "address_operand"
376 accepts CONST_INT; otherwise, it would have to be a special case),
377 so we can test the mode (but we need not). This fact should
378 considerably simplify the generated code. */
379
380 if (new->tests)
381 {
382 for (i = 0; i < NUM_KNOWN_PREDS; i++)
383 if (! strcmp (preds[i].name, new->tests))
384 {
385 int j;
386 int allows_const_int = 0;
387
388 new->pred = i;
389
390 if (preds[i].codes[1] == 0 && new->code == UNKNOWN)
391 {
392 new->code = preds[i].codes[0];
393 if (! strcmp ("const_int_operand", new->tests))
394 new->tests = 0, new->pred = -1;
395 }
396
397 for (j = 0; j < NUM_RTX_CODE && preds[i].codes[j] != 0; j++)
398 if (preds[i].codes[j] == CONST_INT)
399 allows_const_int = 1;
400
401 if (! allows_const_int)
402 new->enforce_mode = new->ignore_mode= 1;
403
404 break;
405 }
406
407 #ifdef PREDICATE_CODES
408 /* If the port has a list of the predicates it uses but omits
409 one, warn. */
410 if (i == NUM_KNOWN_PREDS)
411 fprintf (stderr, "Warning: `%s' not in PREDICATE_CODES\n",
412 new->tests);
413 #endif
414 }
415
416 if (code == MATCH_OPERATOR || code == MATCH_PARALLEL)
417 {
418 for (i = 0; i < (size_t) XVECLEN (pattern, 2); i++)
419 {
420 newpos[depth] = i + (code == MATCH_OPERATOR ? '0': 'a');
421 new = add_to_sequence (XVECEXP (pattern, 2, i),
422 &new->success, newpos);
423 }
424 }
425
426 return new;
427
428 case MATCH_OP_DUP:
429 new->opno = XINT (pattern, 0);
430 new->dupno = XINT (pattern, 0);
431 new->code = UNKNOWN;
432 new->tests = 0;
433 for (i = 0; i < (size_t) XVECLEN (pattern, 1); i++)
434 {
435 newpos[depth] = i + '0';
436 new = add_to_sequence (XVECEXP (pattern, 1, i),
437 &new->success, newpos);
438 }
439 return new;
440
441 case MATCH_DUP:
442 case MATCH_PAR_DUP:
443 new->dupno = XINT (pattern, 0);
444 new->code = UNKNOWN;
445 new->enforce_mode = 0;
446 return new;
447
448 case ADDRESS:
449 pattern = XEXP (pattern, 0);
450 goto restart;
451
452 case SET:
453 /* The operands of a SET must have the same mode unless one is VOIDmode. */
454 if (GET_MODE (SET_SRC (pattern)) != VOIDmode
455 && GET_MODE (SET_DEST (pattern)) != VOIDmode
456 && GET_MODE (SET_SRC (pattern)) != GET_MODE (SET_DEST (pattern))
457 /* The mode of an ADDRESS_OPERAND is the mode of the memory reference,
458 not the mode of the address. */
459 && ! (GET_CODE (SET_SRC (pattern)) == MATCH_OPERAND
460 && ! strcmp (XSTR (SET_SRC (pattern), 1), "address_operand")))
461 {
462 print_rtl (stderr, pattern);
463 fputc ('\n', stderr);
464 fatal ("mode mismatch in SET");
465 }
466 newpos[depth] = '0';
467 new = add_to_sequence (SET_DEST (pattern), &new->success, newpos);
468 this->success.first->enforce_mode = 1;
469 newpos[depth] = '1';
470 new = add_to_sequence (SET_SRC (pattern), &new->success, newpos);
471
472 /* If set are setting CC0 from anything other than a COMPARE, we
473 must enforce the mode so that we do not produce ambiguous insns. */
474 if (GET_CODE (SET_DEST (pattern)) == CC0
475 && GET_CODE (SET_SRC (pattern)) != COMPARE)
476 this->success.first->enforce_mode = 1;
477 return new;
478
479 case SIGN_EXTEND:
480 case ZERO_EXTEND:
481 case STRICT_LOW_PART:
482 newpos[depth] = '0';
483 new = add_to_sequence (XEXP (pattern, 0), &new->success, newpos);
484 this->success.first->enforce_mode = 1;
485 return new;
486
487 case SUBREG:
488 this->test_elt_one_int = 1;
489 this->elt_one_int = XINT (pattern, 1);
490 newpos[depth] = '0';
491 new = add_to_sequence (XEXP (pattern, 0), &new->success, newpos);
492 this->success.first->enforce_mode = 1;
493 return new;
494
495 case ZERO_EXTRACT:
496 case SIGN_EXTRACT:
497 newpos[depth] = '0';
498 new = add_to_sequence (XEXP (pattern, 0), &new->success, newpos);
499 this->success.first->enforce_mode = 1;
500 newpos[depth] = '1';
501 new = add_to_sequence (XEXP (pattern, 1), &new->success, newpos);
502 newpos[depth] = '2';
503 new = add_to_sequence (XEXP (pattern, 2), &new->success, newpos);
504 return new;
505
506 case EQ: case NE: case LE: case LT: case GE: case GT:
507 case LEU: case LTU: case GEU: case GTU:
508 /* If the first operand is (cc0), we don't have to do anything
509 special. */
510 if (GET_CODE (XEXP (pattern, 0)) == CC0)
511 break;
512
513 /* ... fall through ... */
514
515 case COMPARE:
516 /* Enforce the mode on the first operand to avoid ambiguous insns. */
517 newpos[depth] = '0';
518 new = add_to_sequence (XEXP (pattern, 0), &new->success, newpos);
519 this->success.first->enforce_mode = 1;
520 newpos[depth] = '1';
521 new = add_to_sequence (XEXP (pattern, 1), &new->success, newpos);
522 return new;
523
524 default:
525 break;
526 }
527
528 fmt = GET_RTX_FORMAT (code);
529 len = GET_RTX_LENGTH (code);
530 for (i = 0; i < (size_t) len; i++)
531 {
532 newpos[depth] = '0' + i;
533 if (fmt[i] == 'e' || fmt[i] == 'u')
534 new = add_to_sequence (XEXP (pattern, i), &new->success, newpos);
535 else if (fmt[i] == 'i' && i == 0)
536 {
537 this->test_elt_zero_int = 1;
538 this->elt_zero_int = XINT (pattern, i);
539 }
540 else if (fmt[i] == 'i' && i == 1)
541 {
542 this->test_elt_one_int = 1;
543 this->elt_one_int = XINT (pattern, i);
544 }
545 else if (fmt[i] == 'w' && i == 0)
546 {
547 this->test_elt_zero_wide = 1;
548 this->elt_zero_wide = XWINT (pattern, i);
549 }
550 else if (fmt[i] == 'E')
551 {
552 register int j;
553 /* We do not handle a vector appearing as other than
554 the first item, just because nothing uses them
555 and by handling only the special case
556 we can use one element in newpos for either
557 the item number of a subexpression
558 or the element number in a vector. */
559 if (i != 0)
560 abort ();
561 this->veclen = XVECLEN (pattern, i);
562 for (j = 0; j < XVECLEN (pattern, i); j++)
563 {
564 newpos[depth] = 'a' + j;
565 new = add_to_sequence (XVECEXP (pattern, i, j),
566 &new->success, newpos);
567 }
568 }
569 else if (fmt[i] != '0')
570 abort ();
571 }
572 return new;
573 }
574 \f
575 /* Return 1 if we can prove that there is no RTL that can match both
576 D1 and D2. Otherwise, return 0 (it may be that there is an RTL that
577 can match both or just that we couldn't prove there wasn't such an RTL).
578
579 TOPLEVEL is non-zero if we are to only look at the top level and not
580 recursively descend. */
581
582 static int
583 not_both_true (d1, d2, toplevel)
584 struct decision *d1, *d2;
585 int toplevel;
586 {
587 struct decision *p1, *p2;
588
589 /* If they are both to test modes and the modes are different, they aren't
590 both true. Similarly for codes, integer elements, and vector lengths. */
591
592 if ((d1->enforce_mode && d2->enforce_mode
593 && d1->mode != VOIDmode && d2->mode != VOIDmode && d1->mode != d2->mode)
594 || (d1->code != UNKNOWN && d2->code != UNKNOWN && d1->code != d2->code)
595 || (d1->test_elt_zero_int && d2->test_elt_zero_int
596 && d1->elt_zero_int != d2->elt_zero_int)
597 || (d1->test_elt_one_int && d2->test_elt_one_int
598 && d1->elt_one_int != d2->elt_one_int)
599 || (d1->test_elt_zero_wide && d2->test_elt_zero_wide
600 && d1->elt_zero_wide != d2->elt_zero_wide)
601 || (d1->veclen && d2->veclen && d1->veclen != d2->veclen))
602 return 1;
603
604 /* If either is a wild-card MATCH_OPERAND without a predicate, it can match
605 absolutely anything, so we can't say that no intersection is possible.
606 This case is detected by having a zero TESTS field with a code of
607 UNKNOWN. */
608
609 if ((d1->tests == 0 && d1->code == UNKNOWN)
610 || (d2->tests == 0 && d2->code == UNKNOWN))
611 return 0;
612
613 /* If either has a predicate that we know something about, set things up so
614 that D1 is the one that always has a known predicate. Then see if they
615 have any codes in common. */
616
617 if (d1->pred >= 0 || d2->pred >= 0)
618 {
619 int i, j;
620
621 if (d2->pred >= 0)
622 p1 = d1, d1 = d2, d2 = p1;
623
624 /* If D2 tests an explicit code, see if it is in the list of valid codes
625 for D1's predicate. */
626 if (d2->code != UNKNOWN)
627 {
628 for (i = 0; i < NUM_RTX_CODE && preds[d1->pred].codes[i] != 0; i++)
629 if (preds[d1->pred].codes[i] == d2->code)
630 break;
631
632 if (preds[d1->pred].codes[i] == 0)
633 return 1;
634 }
635
636 /* Otherwise see if the predicates have any codes in common. */
637
638 else if (d2->pred >= 0)
639 {
640 for (i = 0; i < NUM_RTX_CODE && preds[d1->pred].codes[i] != 0; i++)
641 {
642 for (j = 0; j < NUM_RTX_CODE; j++)
643 if (preds[d2->pred].codes[j] == 0
644 || preds[d2->pred].codes[j] == preds[d1->pred].codes[i])
645 break;
646
647 if (preds[d2->pred].codes[j] != 0)
648 break;
649 }
650
651 if (preds[d1->pred].codes[i] == 0)
652 return 1;
653 }
654 }
655
656 /* If we got here, we can't prove that D1 and D2 cannot both be true.
657 If we are only to check the top level, return 0. Otherwise, see if
658 we can prove that all choices in both successors are mutually
659 exclusive. If either does not have any successors, we can't prove
660 they can't both be true. */
661
662 if (toplevel || d1->success.first == 0 || d2->success.first == 0)
663 return 0;
664
665 for (p1 = d1->success.first; p1; p1 = p1->next)
666 for (p2 = d2->success.first; p2; p2 = p2->next)
667 if (! not_both_true (p1, p2, 0))
668 return 0;
669
670 return 1;
671 }
672 \f
673 /* Assuming that we can reorder all the alternatives at a specific point in
674 the tree (see discussion in merge_trees), we would prefer an ordering of
675 nodes where groups of consecutive nodes test the same mode and, within each
676 mode, groups of nodes test the same code. With this order, we can
677 construct nested switch statements, the inner one to test the code and
678 the outer one to test the mode.
679
680 We would like to list nodes testing for specific codes before those
681 that test predicates to avoid unnecessary function calls. Similarly,
682 tests for specific modes should precede nodes that allow any mode.
683
684 This function returns the merit (with 0 being the best) of inserting
685 a test involving the specified MODE and CODE after node P. If P is
686 zero, we are to determine the merit of inserting the test at the front
687 of the list. */
688
689 static int
690 position_merit (p, mode, code)
691 struct decision *p;
692 enum machine_mode mode;
693 enum rtx_code code;
694 {
695 enum machine_mode p_mode;
696
697 /* The only time the front of the list is anything other than the worst
698 position is if we are testing a mode that isn't VOIDmode. */
699 if (p == 0)
700 return mode == VOIDmode ? 3 : 2;
701
702 p_mode = p->enforce_mode ? p->mode : VOIDmode;
703
704 /* The best case is if the codes and modes both match. */
705 if (p_mode == mode && p->code== code)
706 return 0;
707
708 /* If the codes don't match, the next best case is if the modes match.
709 In that case, the best position for this node depends on whether
710 we are testing for a specific code or not. If we are, the best place
711 is after some other test for an explicit code and our mode or after
712 the last test in the previous mode if every test in our mode is for
713 an unknown code.
714
715 If we are testing for UNKNOWN, then the next best case is at the end of
716 our mode. */
717
718 if ((code != UNKNOWN
719 && ((p_mode == mode && p->code != UNKNOWN)
720 || (p_mode != mode && p->next
721 && (p->next->enforce_mode ? p->next->mode : VOIDmode) == mode
722 && (p->next->code == UNKNOWN))))
723 || (code == UNKNOWN && p_mode == mode
724 && (p->next == 0
725 || (p->next->enforce_mode ? p->next->mode : VOIDmode) != mode)))
726 return 1;
727
728 /* The third best case occurs when nothing is testing MODE. If MODE
729 is not VOIDmode, then the third best case is after something of any
730 mode that is not VOIDmode. If we are testing VOIDmode, the third best
731 place is the end of the list. */
732
733 if (p_mode != mode
734 && ((mode != VOIDmode && p_mode != VOIDmode)
735 || (mode == VOIDmode && p->next == 0)))
736 return 2;
737
738 /* Otherwise, we have the worst case. */
739 return 3;
740 }
741 \f
742 /* Merge two decision tree listheads OLDH and ADDH,
743 modifying OLDH destructively, and return the merged tree. */
744
745 static struct decision_head
746 merge_trees (oldh, addh)
747 register struct decision_head oldh, addh;
748 {
749 struct decision *add, *next;
750
751 if (oldh.first == 0)
752 return addh;
753
754 if (addh.first == 0)
755 return oldh;
756
757 /* If we are adding things at different positions, something is wrong. */
758 if (strcmp (oldh.first->position, addh.first->position))
759 abort ();
760
761 for (add = addh.first; add; add = next)
762 {
763 enum machine_mode add_mode = add->enforce_mode ? add->mode : VOIDmode;
764 struct decision *best_position = 0;
765 int best_merit = 4;
766 struct decision *old;
767
768 next = add->next;
769
770 /* The semantics of pattern matching state that the tests are done in
771 the order given in the MD file so that if an insn matches two
772 patterns, the first one will be used. However, in practice, most,
773 if not all, patterns are unambiguous so that their order is
774 independent. In that case, we can merge identical tests and
775 group all similar modes and codes together.
776
777 Scan starting from the end of OLDH until we reach a point
778 where we reach the head of the list or where we pass a pattern
779 that could also be true if NEW is true. If we find an identical
780 pattern, we can merge them. Also, record the last node that tests
781 the same code and mode and the last one that tests just the same mode.
782
783 If we have no match, place NEW after the closest match we found. */
784
785 for (old = oldh.last; old; old = old->prev)
786 {
787 int our_merit;
788
789 /* If we don't have anything to test except an additional test,
790 do not consider the two nodes equal. If we did, the test below
791 would cause an infinite recursion. */
792 if (old->tests == 0 && old->test_elt_zero_int == 0
793 && old->test_elt_one_int == 0 && old->veclen == 0
794 && old->test_elt_zero_wide == 0
795 && old->dupno == -1 && old->mode == VOIDmode
796 && old->code == UNKNOWN
797 && (old->c_test != 0 || add->c_test != 0))
798 ;
799
800 else if ((old->tests == add->tests
801 || (old->pred >= 0 && old->pred == add->pred)
802 || (old->tests && add->tests
803 && !strcmp (old->tests, add->tests)))
804 && old->test_elt_zero_int == add->test_elt_zero_int
805 && old->elt_zero_int == add->elt_zero_int
806 && old->test_elt_one_int == add->test_elt_one_int
807 && old->elt_one_int == add->elt_one_int
808 && old->test_elt_zero_wide == add->test_elt_zero_wide
809 && old->elt_zero_wide == add->elt_zero_wide
810 && old->veclen == add->veclen
811 && old->dupno == add->dupno
812 && old->opno == add->opno
813 && old->code == add->code
814 && old->enforce_mode == add->enforce_mode
815 && old->mode == add->mode)
816 {
817 /* If the additional test is not the same, split both nodes
818 into nodes that just contain all things tested before the
819 additional test and nodes that contain the additional test
820 and actions when it is true. This optimization is important
821 because of the case where we have almost identical patterns
822 with different tests on target flags. */
823
824 if (old->c_test != add->c_test
825 && ! (old->c_test && add->c_test
826 && !strcmp (old->c_test, add->c_test)))
827 {
828 if (old->insn_code_number >= 0 || old->opno >= 0)
829 {
830 struct decision *split
831 = (struct decision *) xmalloc (sizeof (struct decision));
832
833 memcpy (split, old, sizeof (struct decision));
834
835 old->success.first = old->success.last = split;
836 old->c_test = 0;
837 old->opno = -1;
838 old->insn_code_number = -1;
839 old->num_clobbers_to_add = 0;
840
841 split->number = next_number++;
842 split->next = split->prev = 0;
843 split->mode = VOIDmode;
844 split->code = UNKNOWN;
845 split->veclen = 0;
846 split->test_elt_zero_int = 0;
847 split->test_elt_one_int = 0;
848 split->test_elt_zero_wide = 0;
849 split->tests = 0;
850 split->pred = -1;
851 split->dupno = -1;
852 }
853
854 if (add->insn_code_number >= 0 || add->opno >= 0)
855 {
856 struct decision *split
857 = (struct decision *) xmalloc (sizeof (struct decision));
858
859 memcpy (split, add, sizeof (struct decision));
860
861 add->success.first = add->success.last = split;
862 add->c_test = 0;
863 add->opno = -1;
864 add->insn_code_number = -1;
865 add->num_clobbers_to_add = 0;
866
867 split->number = next_number++;
868 split->next = split->prev = 0;
869 split->mode = VOIDmode;
870 split->code = UNKNOWN;
871 split->veclen = 0;
872 split->test_elt_zero_int = 0;
873 split->test_elt_one_int = 0;
874 split->test_elt_zero_wide = 0;
875 split->tests = 0;
876 split->pred = -1;
877 split->dupno = -1;
878 }
879 }
880
881 if (old->insn_code_number >= 0 && add->insn_code_number >= 0)
882 {
883 /* If one node is for a normal insn and the second is
884 for the base insn with clobbers stripped off, the
885 second node should be ignored. */
886
887 if (old->num_clobbers_to_add == 0
888 && add->num_clobbers_to_add > 0)
889 /* Nothing to do here. */
890 ;
891 else if (old->num_clobbers_to_add > 0
892 && add->num_clobbers_to_add == 0)
893 {
894 /* In this case, replace OLD with ADD. */
895 old->insn_code_number = add->insn_code_number;
896 old->num_clobbers_to_add = 0;
897 }
898 else
899 fatal ("Two actions at one point in tree");
900 }
901
902 if (old->insn_code_number == -1)
903 old->insn_code_number = add->insn_code_number;
904 old->success = merge_trees (old->success, add->success);
905 add = 0;
906 break;
907 }
908
909 /* Unless we have already found the best possible insert point,
910 see if this position is better. If so, record it. */
911
912 if (best_merit != 0
913 && ((our_merit = position_merit (old, add_mode, add->code))
914 < best_merit))
915 best_merit = our_merit, best_position = old;
916
917 if (! not_both_true (old, add, 0))
918 break;
919 }
920
921 /* If ADD was duplicate, we are done. */
922 if (add == 0)
923 continue;
924
925 /* Otherwise, find the best place to insert ADD. Normally this is
926 BEST_POSITION. However, if we went all the way to the top of
927 the list, it might be better to insert at the top. */
928
929 if (best_position == 0)
930 abort ();
931
932 if (old == 0
933 && position_merit (NULL_PTR, add_mode, add->code) < best_merit)
934 {
935 add->prev = 0;
936 add->next = oldh.first;
937 oldh.first->prev = add;
938 oldh.first = add;
939 }
940
941 else
942 {
943 add->prev = best_position;
944 add->next = best_position->next;
945 best_position->next = add;
946 if (best_position == oldh.last)
947 oldh.last = add;
948 else
949 add->next->prev = add;
950 }
951 }
952
953 return oldh;
954 }
955 \f
956 /* Count the number of subnodes of HEAD. If the number is high enough,
957 make the first node in HEAD start a separate subroutine in the C code
958 that is generated.
959
960 TYPE gives the type of routine we are writing.
961
962 INITIAL is non-zero if this is the highest-level node. We never write
963 it out here. */
964
965 static int
966 break_out_subroutines (head, type, initial)
967 struct decision_head head;
968 enum routine_type type;
969 int initial;
970 {
971 int size = 0;
972 struct decision *sub;
973
974 for (sub = head.first; sub; sub = sub->next)
975 size += 1 + break_out_subroutines (sub->success, type, 0);
976
977 if (size > SUBROUTINE_THRESHOLD && ! initial)
978 {
979 head.first->subroutine_number = ++next_subroutine_number;
980 write_subroutine (head.first, type);
981 size = 1;
982 }
983 return size;
984 }
985 \f
986 /* Write out a subroutine of type TYPE to do comparisons starting at node
987 TREE. */
988
989 static void
990 write_subroutine (tree, type)
991 struct decision *tree;
992 enum routine_type type;
993 {
994 int i;
995
996 if (type == SPLIT)
997 printf ("rtx\nsplit");
998 else
999 printf ("int\nrecog");
1000
1001 if (tree != 0 && tree->subroutine_number > 0)
1002 printf ("_%d", tree->subroutine_number);
1003 else if (type == SPLIT)
1004 printf ("_insns");
1005
1006 printf (" (x0, insn");
1007 if (type == RECOG)
1008 printf (", pnum_clobbers");
1009
1010 printf (")\n");
1011 printf (" register rtx x0;\n rtx insn ATTRIBUTE_UNUSED;\n");
1012 if (type == RECOG)
1013 printf (" int *pnum_clobbers ATTRIBUTE_UNUSED;\n");
1014
1015 printf ("{\n");
1016 printf (" register rtx *ro = &recog_operand[0];\n");
1017
1018 printf (" register rtx ");
1019 for (i = 1; i < max_depth; i++)
1020 printf ("x%d ATTRIBUTE_UNUSED, ", i);
1021
1022 printf ("x%d ATTRIBUTE_UNUSED;\n", max_depth);
1023 printf (" %s tem ATTRIBUTE_UNUSED;\n", type == SPLIT ? "rtx" : "int");
1024 write_tree (tree, "", NULL_PTR, 1, type);
1025 printf (" ret0: return %d;\n}\n\n", type == SPLIT ? 0 : -1);
1026 }
1027 \f
1028 /* This table is used to indent the recog_* functions when we are inside
1029 conditions or switch statements. We only support small indentations
1030 and always indent at least two spaces. */
1031
1032 static const char *indents[]
1033 = {" ", " ", " ", " ", " ", " ", " ", " ",
1034 "\t", "\t ", "\t ", "\t ", "\t ", "\t ", "\t ",
1035 "\t\t", "\t\t ", "\t\t ", "\t\t ", "\t\t ", "\t\t "};
1036
1037 /* Write out C code to perform the decisions in TREE for a subroutine of
1038 type TYPE. If all of the choices fail, branch to node AFTERWARD, if
1039 non-zero, otherwise return. PREVPOS is the position of the node that
1040 branched to this test.
1041
1042 When we merged all alternatives, we tried to set up a convenient order.
1043 Specifically, tests involving the same mode are all grouped together,
1044 followed by a group that does not contain a mode test. Within each group
1045 of the same mode, we also group tests with the same code, followed by a
1046 group that does not test a code.
1047
1048 Occasionally, we cannot arbitrarily reorder the tests so that multiple
1049 sequence of groups as described above are present.
1050
1051 We generate two nested switch statements, the outer statement for
1052 testing modes, and the inner switch for testing RTX codes. It is
1053 not worth optimizing cases when only a small number of modes or
1054 codes is tested, since the compiler can do that when compiling the
1055 resulting function. We do check for when every test is the same mode
1056 or code. */
1057
1058 static void
1059 write_tree_1 (tree, prevpos, afterward, type)
1060 struct decision *tree;
1061 const char *prevpos;
1062 struct decision *afterward;
1063 enum routine_type type;
1064 {
1065 register struct decision *p, *p1;
1066 register int depth = tree ? strlen (tree->position) : 0;
1067 enum machine_mode switch_mode = VOIDmode;
1068 RTX_CODE switch_code = UNKNOWN;
1069 int uncond = 0;
1070 char modemap[NUM_MACHINE_MODES];
1071 char codemap[NUM_RTX_CODE];
1072 int indent = 2;
1073 int i;
1074
1075 /* One tricky area is what is the exact state when we branch to a
1076 node's label. There are two cases where we branch: when looking at
1077 successors to a node, or when a set of tests fails.
1078
1079 In the former case, we are always branching to the first node in a
1080 decision list and we want all required tests to be performed. We
1081 put the labels for such nodes in front of any switch or test statements.
1082 These branches are done without updating the position to that of the
1083 target node.
1084
1085 In the latter case, we are branching to a node that is not the first
1086 node in a decision list. We have already checked that it is possible
1087 for both the node we originally tested at this level and the node we
1088 are branching to to both match some pattern. That means that they
1089 usually will be testing the same mode and code. So it is normally safe
1090 for such labels to be inside switch statements, since the tests done
1091 by virtue of arriving at that label will usually already have been
1092 done. The exception is a branch from a node that does not test a
1093 mode or code to one that does. In such cases, we set the `retest_mode'
1094 or `retest_code' flags. That will ensure that we start a new switch
1095 at that position and put the label before the switch.
1096
1097 The branches in the latter case must set the position to that of the
1098 target node. */
1099
1100
1101 printf ("\n");
1102 if (tree && tree->subroutine_number == 0)
1103 {
1104 OUTPUT_LABEL (" ", tree->number);
1105 tree->label_needed = 0;
1106 }
1107
1108 if (tree)
1109 {
1110 change_state (prevpos, tree->position, 2);
1111 prevpos = tree->position;
1112 }
1113
1114 for (p = tree; p; p = p->next)
1115 {
1116 enum machine_mode mode = p->enforce_mode ? p->mode : VOIDmode;
1117 int need_bracket;
1118 int wrote_bracket = 0;
1119 int inner_indent;
1120
1121 if (p->success.first == 0 && p->insn_code_number < 0)
1122 abort ();
1123
1124 /* Find the next alternative to p that might be true when p is true.
1125 Test that one next if p's successors fail. */
1126
1127 for (p1 = p->next; p1 && not_both_true (p, p1, 1); p1 = p1->next)
1128 ;
1129 p->afterward = p1;
1130
1131 if (p1)
1132 {
1133 if (mode == VOIDmode && p1->enforce_mode && p1->mode != VOIDmode)
1134 p1->retest_mode = 1;
1135 if (p->code == UNKNOWN && p1->code != UNKNOWN)
1136 p1->retest_code = 1;
1137 p1->label_needed = 1;
1138 }
1139
1140 /* If we have a different code or mode than the last node and
1141 are in a switch on codes, we must either end the switch or
1142 go to another case. We must also end the switch if this
1143 node needs a label and to retest either the mode or code. */
1144
1145 if (switch_code != UNKNOWN
1146 && (switch_code != p->code || switch_mode != mode
1147 || (p->label_needed && (p->retest_mode || p->retest_code))))
1148 {
1149 enum rtx_code code = p->code;
1150
1151 /* If P is testing a predicate that we know about and we haven't
1152 seen any of the codes that are valid for the predicate, we
1153 can write a series of "case" statement, one for each possible
1154 code. Since we are already in a switch, these redundant tests
1155 are very cheap and will reduce the number of predicate called. */
1156
1157 if (p->pred >= 0)
1158 {
1159 for (i = 0; i < NUM_RTX_CODE && preds[p->pred].codes[i] != 0; i++)
1160 if (codemap[(int) preds[p->pred].codes[i]])
1161 break;
1162
1163 if (preds[p->pred].codes[i] == 0)
1164 code = MATCH_OPERAND;
1165 }
1166
1167 if (code == UNKNOWN || codemap[(int) code]
1168 || switch_mode != mode
1169 || (p->label_needed && (p->retest_mode || p->retest_code)))
1170 {
1171 printf ("%s}\n", indents[indent - 2]);
1172 switch_code = UNKNOWN;
1173 indent -= 4;
1174 }
1175 else
1176 {
1177 if (! uncond)
1178 printf ("%sbreak;\n", indents[indent]);
1179
1180 if (code == MATCH_OPERAND)
1181 {
1182 for (i = 0; i < NUM_RTX_CODE && preds[p->pred].codes[i] != 0; i++)
1183 {
1184 printf ("%scase ", indents[indent - 2]);
1185 print_code (preds[p->pred].codes[i]);
1186 printf (":\n");
1187 codemap[(int) preds[p->pred].codes[i]] = 1;
1188 }
1189 }
1190 else
1191 {
1192 printf ("%scase ", indents[indent - 2]);
1193 print_code (code);
1194 printf (":\n");
1195 codemap[(int) p->code] = 1;
1196 }
1197
1198 switch_code = code;
1199 }
1200
1201 uncond = 0;
1202 }
1203
1204 /* If we were previously in a switch on modes and now have a different
1205 mode, end at least the case, and maybe end the switch if we are
1206 not testing a mode or testing a mode whose case we already saw. */
1207
1208 if (switch_mode != VOIDmode
1209 && (switch_mode != mode || (p->label_needed && p->retest_mode)))
1210 {
1211 if (mode == VOIDmode || modemap[(int) mode]
1212 || (p->label_needed && p->retest_mode))
1213 {
1214 printf ("%s}\n", indents[indent - 2]);
1215 switch_mode = VOIDmode;
1216 indent -= 4;
1217 }
1218 else
1219 {
1220 if (! uncond)
1221 printf (" break;\n");
1222 printf (" case %smode:\n", GET_MODE_NAME (mode));
1223 switch_mode = mode;
1224 modemap[(int) mode] = 1;
1225 }
1226
1227 uncond = 0;
1228 }
1229
1230 /* If we are about to write dead code, something went wrong. */
1231 if (! p->label_needed && uncond)
1232 abort ();
1233
1234 /* If we need a label and we will want to retest the mode or code at
1235 that label, write the label now. We have already ensured that
1236 things will be valid for the test. */
1237
1238 if (p->label_needed && (p->retest_mode || p->retest_code))
1239 {
1240 OUTPUT_LABEL (indents[indent - 2], p->number);
1241 p->label_needed = 0;
1242 }
1243
1244 uncond = 0;
1245
1246 /* If we are not in any switches, see if we can shortcut things
1247 by checking for identical modes and codes. */
1248
1249 if (switch_mode == VOIDmode && switch_code == UNKNOWN)
1250 {
1251 /* If p and its alternatives all want the same mode,
1252 reject all others at once, first, then ignore the mode. */
1253
1254 if (mode != VOIDmode && p->next && same_modes (p, mode))
1255 {
1256 printf (" if (GET_MODE (x%d) != %smode)\n",
1257 depth, GET_MODE_NAME (p->mode));
1258 if (afterward)
1259 {
1260 printf (" {\n");
1261 change_state (p->position, afterward->position, 6);
1262 printf (" goto L%d;\n }\n", afterward->number);
1263 }
1264 else
1265 printf (" goto ret0;\n");
1266 clear_modes (p);
1267 mode = VOIDmode;
1268 }
1269
1270 /* If p and its alternatives all want the same code,
1271 reject all others at once, first, then ignore the code. */
1272
1273 if (p->code != UNKNOWN && p->next && same_codes (p, p->code))
1274 {
1275 printf (" if (GET_CODE (x%d) != ", depth);
1276 print_code (p->code);
1277 printf (")\n");
1278 if (afterward)
1279 {
1280 printf (" {\n");
1281 change_state (p->position, afterward->position, indent + 4);
1282 printf (" goto L%d;\n }\n", afterward->number);
1283 }
1284 else
1285 printf (" goto ret0;\n");
1286 clear_codes (p);
1287 }
1288 }
1289
1290 /* If we are not in a mode switch and we are testing for a specific
1291 mode, start a mode switch unless we have just one node or the next
1292 node is not testing a mode (we have already tested for the case of
1293 more than one mode, but all of the same mode). */
1294
1295 if (switch_mode == VOIDmode && mode != VOIDmode && p->next != 0
1296 && p->next->enforce_mode && p->next->mode != VOIDmode)
1297 {
1298 memset (modemap, 0, sizeof modemap);
1299 printf ("%sswitch (GET_MODE (x%d))\n", indents[indent], depth);
1300 printf ("%s{\n", indents[indent + 2]);
1301 indent += 4;
1302 printf ("%sdefault:\n%sbreak;\n", indents[indent - 2],
1303 indents[indent]);
1304 printf ("%scase %smode:\n", indents[indent - 2],
1305 GET_MODE_NAME (mode));
1306 modemap[(int) mode] = 1;
1307 switch_mode = mode;
1308 }
1309
1310 /* Similarly for testing codes. */
1311
1312 if (switch_code == UNKNOWN && p->code != UNKNOWN && ! p->ignore_code
1313 && p->next != 0 && p->next->code != UNKNOWN)
1314 {
1315 memset (codemap, 0, sizeof codemap);
1316 printf ("%sswitch (GET_CODE (x%d))\n", indents[indent], depth);
1317 printf ("%s{\n", indents[indent + 2]);
1318 indent += 4;
1319 printf ("%sdefault:\n%sbreak;\n", indents[indent - 2],
1320 indents[indent]);
1321 printf ("%scase ", indents[indent - 2]);
1322 print_code (p->code);
1323 printf (":\n");
1324 codemap[(int) p->code] = 1;
1325 switch_code = p->code;
1326 }
1327
1328 /* Now that most mode and code tests have been done, we can write out
1329 a label for an inner node, if we haven't already. */
1330 if (p->label_needed)
1331 OUTPUT_LABEL (indents[indent - 2], p->number);
1332
1333 inner_indent = indent;
1334
1335 /* The only way we can have to do a mode or code test here is if
1336 this node needs such a test but is the only node to be tested.
1337 In that case, we won't have started a switch. Note that this is
1338 the only way the switch and test modes can disagree. */
1339
1340 if ((mode != switch_mode && ! p->ignore_mode)
1341 || (p->code != switch_code && p->code != UNKNOWN && ! p->ignore_code)
1342 || p->test_elt_zero_int || p->test_elt_one_int
1343 || p->test_elt_zero_wide || p->veclen
1344 || p->dupno >= 0 || p->tests || p->num_clobbers_to_add)
1345 {
1346 printf ("%sif (", indents[indent]);
1347
1348 if (mode != switch_mode && ! p->ignore_mode)
1349 printf ("GET_MODE (x%d) == %smode && ",
1350 depth, GET_MODE_NAME (mode));
1351 if (p->code != switch_code && p->code != UNKNOWN && ! p->ignore_code)
1352 {
1353 printf ("GET_CODE (x%d) == ", depth);
1354 print_code (p->code);
1355 printf (" && ");
1356 }
1357
1358 if (p->test_elt_zero_int)
1359 printf ("XINT (x%d, 0) == %d && ", depth, p->elt_zero_int);
1360 if (p->test_elt_one_int)
1361 printf ("XINT (x%d, 1) == %d && ", depth, p->elt_one_int);
1362 if (p->test_elt_zero_wide)
1363 {
1364 /* Set offset to 1 iff the number might get propagated to
1365 unsigned long by ANSI C rules, else 0.
1366 Prospective hosts are required to have at least 32 bit
1367 ints, and integer constants in machine descriptions
1368 must fit in 32 bit, thus it suffices to check only
1369 for 1 << 31 . */
1370 HOST_WIDE_INT offset = p->elt_zero_wide == -2147483647 - 1;
1371 printf ("XWINT (x%d, 0) == ", depth);
1372 printf (HOST_WIDE_INT_PRINT_DEC, p->elt_zero_wide + offset);
1373 printf ("%s && ", offset ? "-1" : "");
1374 }
1375 if (p->veclen)
1376 printf ("XVECLEN (x%d, 0) == %d && ", depth, p->veclen);
1377 if (p->dupno >= 0)
1378 printf ("rtx_equal_p (x%d, ro[%d]) && ", depth, p->dupno);
1379 if (p->num_clobbers_to_add)
1380 printf ("pnum_clobbers != 0 && ");
1381 if (p->tests)
1382 printf ("%s (x%d, %smode)", p->tests, depth,
1383 GET_MODE_NAME (p->mode));
1384 else
1385 printf ("1");
1386
1387 printf (")\n");
1388 inner_indent += 2;
1389 }
1390 else
1391 uncond = 1;
1392
1393 need_bracket = ! uncond;
1394
1395 if (p->opno >= 0)
1396 {
1397 if (need_bracket)
1398 {
1399 printf ("%s{\n", indents[inner_indent]);
1400 inner_indent += 2;
1401 wrote_bracket = 1;
1402 need_bracket = 0;
1403 }
1404
1405 printf ("%sro[%d] = x%d;\n", indents[inner_indent], p->opno, depth);
1406 }
1407
1408 if (p->c_test)
1409 {
1410 printf ("%sif (%s)\n", indents[inner_indent], p->c_test);
1411 inner_indent += 2;
1412 uncond = 0;
1413 need_bracket = 1;
1414 }
1415
1416 if (p->insn_code_number >= 0)
1417 {
1418 if (type == SPLIT)
1419 printf ("%sreturn gen_split_%d (operands);\n",
1420 indents[inner_indent], p->insn_code_number);
1421 else
1422 {
1423 if (p->num_clobbers_to_add)
1424 {
1425 if (need_bracket)
1426 {
1427 printf ("%s{\n", indents[inner_indent]);
1428 inner_indent += 2;
1429 }
1430
1431 printf ("%s*pnum_clobbers = %d;\n",
1432 indents[inner_indent], p->num_clobbers_to_add);
1433 printf ("%sreturn %d;\n",
1434 indents[inner_indent], p->insn_code_number);
1435
1436 if (need_bracket)
1437 {
1438 inner_indent -= 2;
1439 printf ("%s}\n", indents[inner_indent]);
1440 }
1441 }
1442 else
1443 printf ("%sreturn %d;\n",
1444 indents[inner_indent], p->insn_code_number);
1445 }
1446 }
1447 else
1448 printf ("%sgoto L%d;\n", indents[inner_indent],
1449 p->success.first->number);
1450
1451 if (wrote_bracket)
1452 printf ("%s}\n", indents[inner_indent - 2]);
1453 }
1454
1455 /* We have now tested all alternatives. End any switches we have open
1456 and branch to the alternative node unless we know that we can't fall
1457 through to the branch. */
1458
1459 if (switch_code != UNKNOWN)
1460 {
1461 printf ("%s}\n", indents[indent - 2]);
1462 indent -= 4;
1463 uncond = 0;
1464 }
1465
1466 if (switch_mode != VOIDmode)
1467 {
1468 printf ("%s}\n", indents[indent - 2]);
1469 indent -= 4;
1470 uncond = 0;
1471 }
1472
1473 if (indent != 2)
1474 abort ();
1475
1476 if (uncond)
1477 return;
1478
1479 if (afterward)
1480 {
1481 change_state (prevpos, afterward->position, 2);
1482 printf (" goto L%d;\n", afterward->number);
1483 }
1484 else
1485 printf (" goto ret0;\n");
1486 }
1487
1488 static void
1489 print_code (code)
1490 enum rtx_code code;
1491 {
1492 register char *p1;
1493 for (p1 = GET_RTX_NAME (code); *p1; p1++)
1494 {
1495 if (*p1 >= 'a' && *p1 <= 'z')
1496 putchar (*p1 + 'A' - 'a');
1497 else
1498 putchar (*p1);
1499 }
1500 }
1501
1502 static int
1503 same_codes (p, code)
1504 register struct decision *p;
1505 register enum rtx_code code;
1506 {
1507 for (; p; p = p->next)
1508 if (p->code != code)
1509 return 0;
1510
1511 return 1;
1512 }
1513
1514 static void
1515 clear_codes (p)
1516 register struct decision *p;
1517 {
1518 for (; p; p = p->next)
1519 p->ignore_code = 1;
1520 }
1521
1522 static int
1523 same_modes (p, mode)
1524 register struct decision *p;
1525 register enum machine_mode mode;
1526 {
1527 for (; p; p = p->next)
1528 if ((p->enforce_mode ? p->mode : VOIDmode) != mode)
1529 return 0;
1530
1531 return 1;
1532 }
1533
1534 static void
1535 clear_modes (p)
1536 register struct decision *p;
1537 {
1538 for (; p; p = p->next)
1539 p->enforce_mode = 0;
1540 }
1541 \f
1542 /* Write out the decision tree starting at TREE for a subroutine of type TYPE.
1543
1544 PREVPOS is the position at the node that branched to this node.
1545
1546 INITIAL is nonzero if this is the first node we are writing in a subroutine.
1547
1548 If all nodes are false, branch to the node AFTERWARD. */
1549
1550 static void
1551 write_tree (tree, prevpos, afterward, initial, type)
1552 struct decision *tree;
1553 const char *prevpos;
1554 struct decision *afterward;
1555 int initial;
1556 enum routine_type type;
1557 {
1558 register struct decision *p;
1559 const char *name_prefix = (type == SPLIT ? "split" : "recog");
1560 const char *call_suffix = (type == SPLIT ? "" : ", pnum_clobbers");
1561
1562 if (! initial && tree->subroutine_number > 0)
1563 {
1564 OUTPUT_LABEL (" ", tree->number);
1565
1566 if (afterward)
1567 {
1568 printf (" tem = %s_%d (x0, insn%s);\n",
1569 name_prefix, tree->subroutine_number, call_suffix);
1570 if (type == SPLIT)
1571 printf (" if (tem != 0) return tem;\n");
1572 else
1573 printf (" if (tem >= 0) return tem;\n");
1574 change_state (tree->position, afterward->position, 2);
1575 printf (" goto L%d;\n", afterward->number);
1576 }
1577 else
1578 printf (" return %s_%d (x0, insn%s);\n",
1579 name_prefix, tree->subroutine_number, call_suffix);
1580 return;
1581 }
1582
1583 write_tree_1 (tree, prevpos, afterward, type);
1584
1585 for (p = tree; p; p = p->next)
1586 if (p->success.first)
1587 write_tree (p->success.first, p->position,
1588 p->afterward ? p->afterward : afterward, 0, type);
1589 }
1590
1591 \f
1592 /* Assuming that the state of argument is denoted by OLDPOS, take whatever
1593 actions are necessary to move to NEWPOS.
1594
1595 INDENT says how many blanks to place at the front of lines. */
1596
1597 static void
1598 change_state (oldpos, newpos, indent)
1599 const char *oldpos;
1600 const char *newpos;
1601 int indent;
1602 {
1603 int odepth = strlen (oldpos);
1604 int depth = odepth;
1605 int ndepth = strlen (newpos);
1606
1607 /* Pop up as many levels as necessary. */
1608
1609 while (strncmp (oldpos, newpos, depth))
1610 --depth;
1611
1612 /* Go down to desired level. */
1613
1614 while (depth < ndepth)
1615 {
1616 if (newpos[depth] >= 'a' && newpos[depth] <= 'z')
1617 printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
1618 indents[indent], depth + 1, depth, newpos[depth] - 'a');
1619 else
1620 printf ("%sx%d = XEXP (x%d, %c);\n",
1621 indents[indent], depth + 1, depth, newpos[depth]);
1622 ++depth;
1623 }
1624 }
1625 \f
1626 char *
1627 xstrdup (input)
1628 const char *input;
1629 {
1630 register size_t len = strlen (input) + 1;
1631 register char *output = xmalloc (len);
1632 memcpy (output, input, len);
1633 return output;
1634 }
1635
1636 PTR
1637 xrealloc (ptr, size)
1638 PTR ptr;
1639 size_t size;
1640 {
1641 register PTR result = (PTR) realloc (ptr, size);
1642 if (!result)
1643 fatal ("virtual memory exhausted");
1644 return result;
1645 }
1646
1647 PTR
1648 xmalloc (size)
1649 size_t size;
1650 {
1651 register PTR val = (PTR) malloc (size);
1652
1653 if (val == 0)
1654 fatal ("virtual memory exhausted");
1655 return val;
1656 }
1657
1658 static void
1659 fatal VPROTO ((const char *format, ...))
1660 {
1661 #ifndef ANSI_PROTOTYPES
1662 const char *format;
1663 #endif
1664 va_list ap;
1665
1666 VA_START (ap, format);
1667
1668 #ifndef ANSI_PROTOTYPES
1669 format = va_arg (ap, const char *);
1670 #endif
1671
1672 fprintf (stderr, "genrecog: ");
1673 vfprintf (stderr, format, ap);
1674 va_end (ap);
1675 fprintf (stderr, "\n");
1676 fprintf (stderr, "after %d definitions\n", next_index);
1677 exit (FATAL_EXIT_CODE);
1678 }
1679
1680 /* More 'friendly' abort that prints the line and file.
1681 config.h can #define abort fancy_abort if you like that sort of thing. */
1682
1683 void
1684 fancy_abort ()
1685 {
1686 fatal ("Internal gcc abort.");
1687 }
1688 \f
1689 int
1690 main (argc, argv)
1691 int argc;
1692 char **argv;
1693 {
1694 rtx desc;
1695 struct decision_head recog_tree;
1696 struct decision_head split_tree;
1697 FILE *infile;
1698 register int c;
1699
1700 obstack_init (rtl_obstack);
1701 recog_tree.first = recog_tree.last = split_tree.first = split_tree.last = 0;
1702
1703 if (argc <= 1)
1704 fatal ("No input file name.");
1705
1706 infile = fopen (argv[1], "r");
1707 if (infile == 0)
1708 {
1709 perror (argv[1]);
1710 exit (FATAL_EXIT_CODE);
1711 }
1712
1713 init_rtl ();
1714 next_insn_code = 0;
1715 next_index = 0;
1716
1717 printf ("/* Generated automatically by the program `genrecog'\n\
1718 from the machine description file `md'. */\n\n");
1719
1720 printf ("#include \"config.h\"\n");
1721 printf ("#include \"system.h\"\n");
1722 printf ("#include \"rtl.h\"\n");
1723 printf ("#include \"insn-config.h\"\n");
1724 printf ("#include \"recog.h\"\n");
1725 printf ("#include \"real.h\"\n");
1726 printf ("#include \"output.h\"\n");
1727 printf ("#include \"flags.h\"\n");
1728 printf ("\n");
1729
1730 /* Read the machine description. */
1731
1732 while (1)
1733 {
1734 c = read_skip_spaces (infile);
1735 if (c == EOF)
1736 break;
1737 ungetc (c, infile);
1738
1739 desc = read_rtx (infile);
1740 if (GET_CODE (desc) == DEFINE_INSN)
1741 recog_tree = merge_trees (recog_tree,
1742 make_insn_sequence (desc, RECOG));
1743 else if (GET_CODE (desc) == DEFINE_SPLIT)
1744 split_tree = merge_trees (split_tree,
1745 make_insn_sequence (desc, SPLIT));
1746 if (GET_CODE (desc) == DEFINE_PEEPHOLE
1747 || GET_CODE (desc) == DEFINE_EXPAND)
1748 next_insn_code++;
1749 next_index++;
1750 }
1751
1752 printf ("\n\
1753 /* `recog' contains a decision tree\n\
1754 that recognizes whether the rtx X0 is a valid instruction.\n\
1755 \n\
1756 recog returns -1 if the rtx is not valid.\n\
1757 If the rtx is valid, recog returns a nonnegative number\n\
1758 which is the insn code number for the pattern that matched.\n");
1759 printf (" This is the same as the order in the machine description of\n\
1760 the entry that matched. This number can be used as an index into various\n\
1761 insn_* tables, such as insn_templates, insn_outfun, and insn_n_operands\n\
1762 (found in insn-output.c).\n\n");
1763 printf (" The third argument to recog is an optional pointer to an int.\n\
1764 If present, recog will accept a pattern if it matches except for\n\
1765 missing CLOBBER expressions at the end. In that case, the value\n\
1766 pointed to by the optional pointer will be set to the number of\n\
1767 CLOBBERs that need to be added (it should be initialized to zero by\n\
1768 the caller). If it is set nonzero, the caller should allocate a\n\
1769 PARALLEL of the appropriate size, copy the initial entries, and call\n\
1770 add_clobbers (found in insn-emit.c) to fill in the CLOBBERs.");
1771
1772 if (split_tree.first)
1773 printf ("\n\n The function split_insns returns 0 if the rtl could not\n\
1774 be split or the split rtl in a SEQUENCE if it can be.");
1775
1776 printf ("*/\n\n");
1777
1778 printf ("#define operands recog_operand\n\n");
1779
1780 next_subroutine_number = 0;
1781 break_out_subroutines (recog_tree, RECOG, 1);
1782 write_subroutine (recog_tree.first, RECOG);
1783
1784 next_subroutine_number = 0;
1785 break_out_subroutines (split_tree, SPLIT, 1);
1786 write_subroutine (split_tree.first, SPLIT);
1787
1788 fflush (stdout);
1789 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
1790 /* NOTREACHED */
1791 return 0;
1792 }