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