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