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