68188e6c2ea96b94701043de8a64a9520e61ed4a
[gcc.git] / gcc / genemit.c
1 /* Generate code from machine description to emit insns as rtl.
2 Copyright (C) 1987, 88, 91, 94, 95, 97, 98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include "hconfig.h"
23 #include "system.h"
24 #include "rtl.h"
25 #include "obstack.h"
26 #include "errors.h"
27
28 static struct obstack obstack;
29 struct obstack *rtl_obstack = &obstack;
30
31 #define obstack_chunk_alloc xmalloc
32 #define obstack_chunk_free free
33
34 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
35 char **insn_name_ptr = 0;
36
37 static int max_opno;
38 static int max_dup_opno;
39 static int max_scratch_opno;
40 static int register_constraints;
41 static int insn_code_number;
42 static int insn_index_number;
43
44 /* Data structure for recording the patterns of insns that have CLOBBERs.
45 We use this to output a function that adds these CLOBBERs to a
46 previously-allocated PARALLEL expression. */
47
48 struct clobber_pat
49 {
50 struct clobber_ent *insns;
51 rtx pattern;
52 int first_clobber;
53 struct clobber_pat *next;
54 } *clobber_list;
55
56 /* Records one insn that uses the clobber list. */
57
58 struct clobber_ent
59 {
60 int code_number; /* Counts only insns. */
61 struct clobber_ent *next;
62 };
63
64 static void max_operand_1 PROTO((rtx));
65 static int max_operand_vec PROTO((rtx, int));
66 static void print_code PROTO((RTX_CODE));
67 static void gen_exp PROTO((rtx, enum rtx_code));
68 static void gen_insn PROTO((rtx));
69 static void gen_expand PROTO((rtx));
70 static void gen_split PROTO((rtx));
71 static void output_add_clobbers PROTO((void));
72 static void gen_rtx_scratch PROTO((rtx, enum rtx_code));
73 static void output_peephole2_scratches PROTO((rtx));
74
75 \f
76 static void
77 max_operand_1 (x)
78 rtx x;
79 {
80 register RTX_CODE code;
81 register int i;
82 register int len;
83 register const char *fmt;
84
85 if (x == 0)
86 return;
87
88 code = GET_CODE (x);
89
90 if (code == MATCH_OPERAND && XSTR (x, 2) != 0 && *XSTR (x, 2) != '\0')
91 register_constraints = 1;
92 if (code == MATCH_SCRATCH && XSTR (x, 1) != 0 && *XSTR (x, 1) != '\0')
93 register_constraints = 1;
94 if (code == MATCH_OPERAND || code == MATCH_OPERATOR
95 || code == MATCH_PARALLEL)
96 max_opno = MAX (max_opno, XINT (x, 0));
97 if (code == MATCH_DUP || code == MATCH_OP_DUP || code == MATCH_PAR_DUP)
98 max_dup_opno = MAX (max_dup_opno, XINT (x, 0));
99 if (code == MATCH_SCRATCH)
100 max_scratch_opno = MAX (max_scratch_opno, XINT (x, 0));
101
102 fmt = GET_RTX_FORMAT (code);
103 len = GET_RTX_LENGTH (code);
104 for (i = 0; i < len; i++)
105 {
106 if (fmt[i] == 'e' || fmt[i] == 'u')
107 max_operand_1 (XEXP (x, i));
108 else if (fmt[i] == 'E')
109 {
110 int j;
111 for (j = 0; j < XVECLEN (x, i); j++)
112 max_operand_1 (XVECEXP (x, i, j));
113 }
114 }
115 }
116
117 static int
118 max_operand_vec (insn, arg)
119 rtx insn;
120 int arg;
121 {
122 register int len = XVECLEN (insn, arg);
123 register int i;
124
125 max_opno = -1;
126 max_dup_opno = -1;
127 max_scratch_opno = -1;
128
129 for (i = 0; i < len; i++)
130 max_operand_1 (XVECEXP (insn, arg, i));
131
132 return max_opno + 1;
133 }
134 \f
135 static void
136 print_code (code)
137 RTX_CODE code;
138 {
139 register const char *p1;
140 for (p1 = GET_RTX_NAME (code); *p1; p1++)
141 {
142 if (*p1 >= 'a' && *p1 <= 'z')
143 putchar (*p1 + 'A' - 'a');
144 else
145 putchar (*p1);
146 }
147 }
148
149 static void
150 gen_rtx_scratch (x, subroutine_type)
151 rtx x;
152 enum rtx_code subroutine_type;
153 {
154 if (subroutine_type == DEFINE_PEEPHOLE2)
155 {
156 printf ("operand%d", XINT (x, 0));
157 }
158 else
159 {
160 printf ("gen_rtx_SCRATCH (%smode)", GET_MODE_NAME (GET_MODE (x)));
161 }
162 }
163
164 /* Print a C expression to construct an RTX just like X,
165 substituting any operand references appearing within. */
166
167 static void
168 gen_exp (x, subroutine_type)
169 rtx x;
170 enum rtx_code subroutine_type;
171 {
172 register RTX_CODE code;
173 register int i;
174 register int len;
175 register const char *fmt;
176
177 if (x == 0)
178 {
179 printf ("NULL_RTX");
180 return;
181 }
182
183 code = GET_CODE (x);
184
185 switch (code)
186 {
187 case MATCH_OPERAND:
188 case MATCH_DUP:
189 printf ("operand%d", XINT (x, 0));
190 return;
191
192 case MATCH_OP_DUP:
193 printf ("gen_rtx (GET_CODE (operand%d), ", XINT (x, 0));
194 if (GET_MODE (x) == VOIDmode)
195 printf ("GET_MODE (operand%d)", XINT (x, 0));
196 else
197 printf ("%smode", GET_MODE_NAME (GET_MODE (x)));
198 for (i = 0; i < XVECLEN (x, 1); i++)
199 {
200 printf (",\n\t\t");
201 gen_exp (XVECEXP (x, 1, i), subroutine_type);
202 }
203 printf (")");
204 return;
205
206 case MATCH_OPERATOR:
207 printf ("gen_rtx (GET_CODE (operand%d)", XINT (x, 0));
208 printf (", %smode", GET_MODE_NAME (GET_MODE (x)));
209 for (i = 0; i < XVECLEN (x, 2); i++)
210 {
211 printf (",\n\t\t");
212 gen_exp (XVECEXP (x, 2, i), subroutine_type);
213 }
214 printf (")");
215 return;
216
217 case MATCH_PARALLEL:
218 case MATCH_PAR_DUP:
219 printf ("operand%d", XINT (x, 0));
220 return;
221
222 case MATCH_SCRATCH:
223 gen_rtx_scratch (x, subroutine_type);
224 return;
225
226 case ADDRESS:
227 fatal ("ADDRESS expression code used in named instruction pattern");
228
229 case PC:
230 printf ("pc_rtx");
231 return;
232
233 case CC0:
234 printf ("cc0_rtx");
235 return;
236
237 case CONST_INT:
238 if (INTVAL (x) == 0)
239 printf ("const0_rtx");
240 else if (INTVAL (x) == 1)
241 printf ("const1_rtx");
242 else if (INTVAL (x) == -1)
243 printf ("constm1_rtx");
244 else if (INTVAL (x) == STORE_FLAG_VALUE)
245 printf ("const_true_rtx");
246 else
247 {
248 printf ("GEN_INT (");
249 printf (HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
250 printf (")");
251 }
252 return;
253
254 case CONST_DOUBLE:
255 /* These shouldn't be written in MD files. Instead, the appropriate
256 routines in varasm.c should be called. */
257 abort ();
258
259 default:
260 break;
261 }
262
263 printf ("gen_rtx_");
264 print_code (code);
265 printf (" (%smode", GET_MODE_NAME (GET_MODE (x)));
266
267 fmt = GET_RTX_FORMAT (code);
268 len = GET_RTX_LENGTH (code);
269 for (i = 0; i < len; i++)
270 {
271 if (fmt[i] == '0')
272 break;
273 printf (",\n\t");
274 if (fmt[i] == 'e' || fmt[i] == 'u')
275 gen_exp (XEXP (x, i), subroutine_type);
276 else if (fmt[i] == 'i')
277 printf ("%u", XINT (x, i));
278 else if (fmt[i] == 's')
279 printf ("\"%s\"", XSTR (x, i));
280 else if (fmt[i] == 'E')
281 {
282 int j;
283 printf ("gen_rtvec (%d", XVECLEN (x, i));
284 for (j = 0; j < XVECLEN (x, i); j++)
285 {
286 printf (",\n\t\t");
287 gen_exp (XVECEXP (x, i, j), subroutine_type);
288 }
289 printf (")");
290 }
291 else
292 abort ();
293 }
294 printf (")");
295 }
296 \f
297 /* Generate the `gen_...' function for a DEFINE_INSN. */
298
299 static void
300 gen_insn (insn)
301 rtx insn;
302 {
303 int operands;
304 register int i;
305
306 /* See if the pattern for this insn ends with a group of CLOBBERs of (hard)
307 registers or MATCH_SCRATCHes. If so, store away the information for
308 later. */
309
310 if (XVEC (insn, 1))
311 {
312 for (i = XVECLEN (insn, 1) - 1; i > 0; i--)
313 if (GET_CODE (XVECEXP (insn, 1, i)) != CLOBBER
314 || (GET_CODE (XEXP (XVECEXP (insn, 1, i), 0)) != REG
315 && GET_CODE (XEXP (XVECEXP (insn, 1, i), 0)) != MATCH_SCRATCH))
316 break;
317
318 if (i != XVECLEN (insn, 1) - 1)
319 {
320 register struct clobber_pat *p;
321 register struct clobber_ent *link
322 = (struct clobber_ent *) xmalloc (sizeof (struct clobber_ent));
323 register int j;
324
325 link->code_number = insn_code_number;
326
327 /* See if any previous CLOBBER_LIST entry is the same as this
328 one. */
329
330 for (p = clobber_list; p; p = p->next)
331 {
332 if (p->first_clobber != i + 1
333 || XVECLEN (p->pattern, 1) != XVECLEN (insn, 1))
334 continue;
335
336 for (j = i + 1; j < XVECLEN (insn, 1); j++)
337 {
338 rtx old = XEXP (XVECEXP (p->pattern, 1, j), 0);
339 rtx new = XEXP (XVECEXP (insn, 1, j), 0);
340
341 /* OLD and NEW are the same if both are to be a SCRATCH
342 of the same mode,
343 or if both are registers of the same mode and number. */
344 if (! (GET_MODE (old) == GET_MODE (new)
345 && ((GET_CODE (old) == MATCH_SCRATCH
346 && GET_CODE (new) == MATCH_SCRATCH)
347 || (GET_CODE (old) == REG && GET_CODE (new) == REG
348 && REGNO (old) == REGNO (new)))))
349 break;
350 }
351
352 if (j == XVECLEN (insn, 1))
353 break;
354 }
355
356 if (p == 0)
357 {
358 p = (struct clobber_pat *) xmalloc (sizeof (struct clobber_pat));
359
360 p->insns = 0;
361 p->pattern = insn;
362 p->first_clobber = i + 1;
363 p->next = clobber_list;
364 clobber_list = p;
365 }
366
367 link->next = p->insns;
368 p->insns = link;
369 }
370 }
371
372 /* Don't mention instructions whose names are the null string
373 or begin with '*'. They are in the machine description just
374 to be recognized. */
375 if (XSTR (insn, 0)[0] == 0 || XSTR (insn, 0)[0] == '*')
376 return;
377
378 /* Find out how many operands this function has,
379 and also whether any of them have register constraints. */
380 register_constraints = 0;
381 operands = max_operand_vec (insn, 1);
382 if (max_dup_opno >= operands)
383 fatal ("match_dup operand number has no match_operand");
384
385 /* Output the function name and argument declarations. */
386 printf ("rtx\ngen_%s (", XSTR (insn, 0));
387 for (i = 0; i < operands; i++)
388 printf (i ? ", operand%d" : "operand%d", i);
389 printf (")\n");
390 for (i = 0; i < operands; i++)
391 printf (" rtx operand%d;\n", i);
392 printf ("{\n");
393
394 /* Output code to construct and return the rtl for the instruction body */
395
396 if (XVECLEN (insn, 1) == 1)
397 {
398 printf (" return ");
399 gen_exp (XVECEXP (insn, 1, 0), DEFINE_INSN);
400 printf (";\n}\n\n");
401 }
402 else
403 {
404 printf (" return gen_rtx_PARALLEL (VOIDmode, gen_rtvec (%d", XVECLEN (insn, 1));
405 for (i = 0; i < XVECLEN (insn, 1); i++)
406 {
407 printf (",\n\t\t");
408 gen_exp (XVECEXP (insn, 1, i), DEFINE_INSN);
409 }
410 printf ("));\n}\n\n");
411 }
412 }
413 \f
414 /* Generate the `gen_...' function for a DEFINE_EXPAND. */
415
416 static void
417 gen_expand (expand)
418 rtx expand;
419 {
420 int operands;
421 register int i;
422
423 if (strlen (XSTR (expand, 0)) == 0)
424 fatal ("define_expand lacks a name");
425 if (XVEC (expand, 1) == 0)
426 fatal ("define_expand for %s lacks a pattern", XSTR (expand, 0));
427
428 /* Find out how many operands this function has,
429 and also whether any of them have register constraints. */
430 register_constraints = 0;
431
432 operands = max_operand_vec (expand, 1);
433
434 /* Output the function name and argument declarations. */
435 printf ("rtx\ngen_%s (", XSTR (expand, 0));
436 for (i = 0; i < operands; i++)
437 printf (i ? ", operand%d" : "operand%d", i);
438 printf (")\n");
439 for (i = 0; i < operands; i++)
440 printf (" rtx operand%d;\n", i);
441 printf ("{\n");
442
443 /* If we don't have any C code to write, only one insn is being written,
444 and no MATCH_DUPs are present, we can just return the desired insn
445 like we do for a DEFINE_INSN. This saves memory. */
446 if ((XSTR (expand, 3) == 0 || *XSTR (expand, 3) == '\0')
447 && operands > max_dup_opno
448 && XVECLEN (expand, 1) == 1)
449 {
450 printf (" return ");
451 gen_exp (XVECEXP (expand, 1, 0), DEFINE_EXPAND);
452 printf (";\n}\n\n");
453 return;
454 }
455
456 /* For each operand referred to only with MATCH_DUPs,
457 make a local variable. */
458 for (i = operands; i <= max_dup_opno; i++)
459 printf (" rtx operand%d;\n", i);
460 for (; i <= max_scratch_opno; i++)
461 printf (" rtx operand%d;\n", i);
462 if (operands > 0 || max_dup_opno >= 0 || max_scratch_opno >= 0)
463 printf (" rtx operands[%d];\n",
464 MAX (operands, MAX (max_scratch_opno, max_dup_opno) + 1));
465 printf (" rtx _val = 0;\n");
466 printf (" start_sequence ();\n");
467
468 /* The fourth operand of DEFINE_EXPAND is some code to be executed
469 before the actual construction.
470 This code expects to refer to `operands'
471 just as the output-code in a DEFINE_INSN does,
472 but here `operands' is an automatic array.
473 So copy the operand values there before executing it. */
474 if (XSTR (expand, 3) && *XSTR (expand, 3))
475 {
476 /* Output code to copy the arguments into `operands'. */
477 for (i = 0; i < operands; i++)
478 printf (" operands[%d] = operand%d;\n", i, i);
479
480 /* Output the special code to be executed before the sequence
481 is generated. */
482 printf ("%s\n", XSTR (expand, 3));
483
484 /* Output code to copy the arguments back out of `operands'
485 (unless we aren't going to use them at all). */
486 if (XVEC (expand, 1) != 0)
487 {
488 for (i = 0; i < operands; i++)
489 printf (" operand%d = operands[%d];\n", i, i);
490 for (; i <= max_dup_opno; i++)
491 printf (" operand%d = operands[%d];\n", i, i);
492 for (; i <= max_scratch_opno; i++)
493 printf (" operand%d = operands[%d];\n", i, i);
494 }
495 }
496
497 /* Output code to construct the rtl for the instruction bodies.
498 Use emit_insn to add them to the sequence being accumulated.
499 But don't do this if the user's code has set `no_more' nonzero. */
500
501 for (i = 0; i < XVECLEN (expand, 1); i++)
502 {
503 rtx next = XVECEXP (expand, 1, i);
504 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC)
505 || (GET_CODE (next) == PARALLEL
506 && GET_CODE (XVECEXP (next, 0, 0)) == SET
507 && GET_CODE (SET_DEST (XVECEXP (next, 0, 0))) == PC)
508 || GET_CODE (next) == RETURN)
509 printf (" emit_jump_insn (");
510 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL)
511 || GET_CODE (next) == CALL
512 || (GET_CODE (next) == PARALLEL
513 && GET_CODE (XVECEXP (next, 0, 0)) == SET
514 && GET_CODE (SET_SRC (XVECEXP (next, 0, 0))) == CALL)
515 || (GET_CODE (next) == PARALLEL
516 && GET_CODE (XVECEXP (next, 0, 0)) == CALL))
517 printf (" emit_call_insn (");
518 else if (GET_CODE (next) == CODE_LABEL)
519 printf (" emit_label (");
520 else if (GET_CODE (next) == MATCH_OPERAND
521 || GET_CODE (next) == MATCH_DUP
522 || GET_CODE (next) == MATCH_OPERATOR
523 || GET_CODE (next) == MATCH_OP_DUP
524 || GET_CODE (next) == MATCH_PARALLEL
525 || GET_CODE (next) == MATCH_PAR_DUP
526 || GET_CODE (next) == PARALLEL)
527 printf (" emit (");
528 else
529 printf (" emit_insn (");
530 gen_exp (next, DEFINE_EXPAND);
531 printf (");\n");
532 if (GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC
533 && GET_CODE (SET_SRC (next)) == LABEL_REF)
534 printf (" emit_barrier ();");
535 }
536
537 /* Call `gen_sequence' to make a SEQUENCE out of all the
538 insns emitted within this gen_... function. */
539
540 printf (" _val = gen_sequence ();\n");
541 printf (" end_sequence ();\n");
542 printf (" return _val;\n}\n\n");
543 }
544
545 /* Like gen_expand, but generates a SEQUENCE. */
546
547 static void
548 gen_split (split)
549 rtx split;
550 {
551 register int i;
552 int operands;
553 char *name = "split";
554
555 if (GET_CODE (split) == DEFINE_PEEPHOLE2)
556 name = "peephole2";
557
558 if (XVEC (split, 0) == 0)
559 fatal ("define_%s (definition %d) lacks a pattern", name,
560 insn_index_number);
561 else if (XVEC (split, 2) == 0)
562 fatal ("define_%s (definition %d) lacks a replacement pattern", name,
563 insn_index_number);
564
565 /* Find out how many operands this function has. */
566
567 max_operand_vec (split, 2);
568 operands = MAX (max_opno, MAX (max_dup_opno, max_scratch_opno)) + 1;
569
570 /* Output the prototype, function name and argument declarations. */
571 if (GET_CODE (split) == DEFINE_PEEPHOLE2)
572 {
573 printf ("extern rtx gen_%s_%d PROTO ((rtx, rtx *));\n",
574 name, insn_code_number);
575 printf ("rtx\ngen_%s_%d (curr_insn, operands)\n\
576 rtx curr_insn ATTRIBUTE_UNUSED;\n\
577 rtx *operands;\n",
578 name, insn_code_number);
579 }
580 else
581 {
582 printf ("extern rtx gen_split_%d PROTO ((rtx *));\n", insn_code_number);
583 printf ("rtx\ngen_%s_%d (operands)\n rtx *operands;\n", name,
584 insn_code_number);
585 }
586 printf ("{\n");
587
588 /* Declare all local variables. */
589 for (i = 0; i < operands; i++)
590 printf (" rtx operand%d;\n", i);
591 printf (" rtx _val = 0;\n");
592
593 if (GET_CODE (split) == DEFINE_PEEPHOLE2)
594 output_peephole2_scratches (split);
595
596 printf (" start_sequence ();\n");
597
598 /* The fourth operand of DEFINE_SPLIT is some code to be executed
599 before the actual construction. */
600
601 if (XSTR (split, 3))
602 printf ("%s\n", XSTR (split, 3));
603
604 /* Output code to copy the arguments back out of `operands' */
605 for (i = 0; i < operands; i++)
606 printf (" operand%d = operands[%d];\n", i, i);
607
608 /* Output code to construct the rtl for the instruction bodies.
609 Use emit_insn to add them to the sequence being accumulated.
610 But don't do this if the user's code has set `no_more' nonzero. */
611
612 for (i = 0; i < XVECLEN (split, 2); i++)
613 {
614 rtx next = XVECEXP (split, 2, i);
615 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC)
616 || (GET_CODE (next) == PARALLEL
617 && GET_CODE (XVECEXP (next, 0, 0)) == SET
618 && GET_CODE (SET_DEST (XVECEXP (next, 0, 0))) == PC)
619 || GET_CODE (next) == RETURN)
620 printf (" emit_jump_insn (");
621 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL)
622 || GET_CODE (next) == CALL
623 || (GET_CODE (next) == PARALLEL
624 && GET_CODE (XVECEXP (next, 0, 0)) == SET
625 && GET_CODE (SET_SRC (XVECEXP (next, 0, 0))) == CALL)
626 || (GET_CODE (next) == PARALLEL
627 && GET_CODE (XVECEXP (next, 0, 0)) == CALL))
628 printf (" emit_call_insn (");
629 else if (GET_CODE (next) == CODE_LABEL)
630 printf (" emit_label (");
631 else if (GET_CODE (next) == MATCH_OPERAND
632 || GET_CODE (next) == MATCH_OPERATOR
633 || GET_CODE (next) == MATCH_PARALLEL
634 || GET_CODE (next) == MATCH_OP_DUP
635 || GET_CODE (next) == MATCH_DUP
636 || GET_CODE (next) == PARALLEL)
637 printf (" emit (");
638 else
639 printf (" emit_insn (");
640 gen_exp (next, GET_CODE (split));
641 printf (");\n");
642 if (GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC
643 && GET_CODE (SET_SRC (next)) == LABEL_REF)
644 printf (" emit_barrier ();");
645 }
646
647 /* Call `gen_sequence' to make a SEQUENCE out of all the
648 insns emitted within this gen_... function. */
649
650 printf (" _val = gen_sequence ();\n");
651 printf (" end_sequence ();\n");
652 printf (" return _val;\n}\n\n");
653 }
654 \f
655 /* Write a function, `add_clobbers', that is given a PARALLEL of sufficient
656 size for the insn and an INSN_CODE, and inserts the required CLOBBERs at
657 the end of the vector. */
658
659 static void
660 output_add_clobbers ()
661 {
662 struct clobber_pat *clobber;
663 struct clobber_ent *ent;
664 int i;
665
666 printf ("\n\nvoid\nadd_clobbers (pattern, insn_code_number)\n");
667 printf (" rtx pattern;\n int insn_code_number;\n");
668 printf ("{\n");
669 printf (" switch (insn_code_number)\n");
670 printf (" {\n");
671
672 for (clobber = clobber_list; clobber; clobber = clobber->next)
673 {
674 for (ent = clobber->insns; ent; ent = ent->next)
675 printf (" case %d:\n", ent->code_number);
676
677 for (i = clobber->first_clobber; i < XVECLEN (clobber->pattern, 1); i++)
678 {
679 printf (" XVECEXP (pattern, 0, %d) = ", i);
680 gen_exp (XVECEXP (clobber->pattern, 1, i),
681 GET_CODE (clobber->pattern));
682 printf (";\n");
683 }
684
685 printf (" break;\n\n");
686 }
687
688 printf (" default:\n");
689 printf (" abort ();\n");
690 printf (" }\n");
691 printf ("}\n");
692 }
693 \f
694 /* Generate code to invoke find_free_register () as needed for the
695 scratch registers used by the peephole2 pattern in SPLIT. */
696
697 static void
698 output_peephole2_scratches (split)
699 rtx split;
700 {
701 int i;
702 int insn_nr = 0;
703
704 printf (" rtx first_insn ATTRIBUTE_UNUSED;\n");
705 printf (" rtx last_insn ATTRIBUTE_UNUSED;\n");
706 printf (" HARD_REG_SET _regs_allocated;\n");
707
708 printf (" CLEAR_HARD_REG_SET (_regs_allocated);\n");
709
710 for (i = 0; i < XVECLEN (split, 0); i++)
711 {
712 rtx elt = XVECEXP (split, 0, i);
713 if (GET_CODE (elt) == MATCH_SCRATCH)
714 {
715 int last_insn_nr = insn_nr;
716 int cur_insn_nr = insn_nr;
717 int j;
718 for (j = i + 1; j < XVECLEN (split, 0); j++)
719 if (GET_CODE (XVECEXP (split, 0, j)) == MATCH_DUP)
720 {
721 if (XINT (XVECEXP (split, 0, j), 0) == XINT (elt, 0))
722 last_insn_nr = cur_insn_nr;
723 }
724 else if (GET_CODE (XVECEXP (split, 0, j)) != MATCH_SCRATCH)
725 cur_insn_nr++;
726 printf (" first_insn = recog_next_insn (curr_insn, %d);\n", insn_nr);
727 if (last_insn_nr > insn_nr)
728 printf (" last_insn = recog_next_insn (curr_insn, %d);\n",
729 last_insn_nr - 1);
730 else
731 printf (" last_insn = 0;\n");
732 printf (" if ((operands[%d] = find_free_register (first_insn, last_insn, \"%s\", %smode, &_regs_allocated)) == NULL_RTX)\n\
733 return NULL;\n",
734 XINT (elt, 0),
735 XSTR (elt, 1),
736 GET_MODE_NAME (GET_MODE (elt)));
737
738 }
739 else if (GET_CODE (elt) != MATCH_DUP)
740 insn_nr++;
741 }
742 }
743 \f
744 PTR
745 xmalloc (size)
746 size_t size;
747 {
748 register PTR val = (PTR) malloc (size);
749
750 if (val == 0)
751 fatal ("virtual memory exhausted");
752
753 return val;
754 }
755
756 PTR
757 xrealloc (old, size)
758 PTR old;
759 size_t size;
760 {
761 register PTR ptr;
762 if (old)
763 ptr = (PTR) realloc (old, size);
764 else
765 ptr = (PTR) malloc (size);
766 if (!ptr)
767 fatal ("virtual memory exhausted");
768 return ptr;
769 }
770
771 int
772 main (argc, argv)
773 int argc;
774 char **argv;
775 {
776 rtx desc;
777 FILE *infile;
778 register int c;
779
780 progname = "genemit";
781 obstack_init (rtl_obstack);
782
783 if (argc <= 1)
784 fatal ("No input file name.");
785
786 infile = fopen (argv[1], "r");
787 if (infile == 0)
788 {
789 perror (argv[1]);
790 exit (FATAL_EXIT_CODE);
791 }
792
793 /* Assign sequential codes to all entries in the machine description
794 in parallel with the tables in insn-output.c. */
795
796 insn_code_number = 0;
797 insn_index_number = 0;
798
799 printf ("/* Generated automatically by the program `genemit'\n\
800 from the machine description file `md'. */\n\n");
801
802 printf ("#include \"config.h\"\n");
803 printf ("#include \"system.h\"\n");
804 printf ("#include \"rtl.h\"\n");
805 printf ("#include \"function.h\"\n");
806 printf ("#include \"expr.h\"\n");
807 printf ("#include \"real.h\"\n");
808 printf ("#include \"flags.h\"\n");
809 printf ("#include \"output.h\"\n");
810 printf ("#include \"insn-config.h\"\n");
811 printf ("#include \"insn-flags.h\"\n");
812 printf ("#include \"insn-codes.h\"\n");
813 printf ("#include \"recog.h\"\n");
814 printf ("#include \"hard-reg-set.h\"\n");
815 printf ("#include \"resource.h\"\n");
816 printf ("#include \"reload.h\"\n\n");
817 printf ("extern rtx recog_operand[];\n");
818 printf ("#define operands emit_operand\n\n");
819 printf ("#define FAIL return (end_sequence (), _val)\n");
820 printf ("#define DONE return (_val = gen_sequence (), end_sequence (), _val)\n");
821
822 /* Read the machine description. */
823
824 while (1)
825 {
826 c = read_skip_spaces (infile);
827 if (c == EOF)
828 break;
829 ungetc (c, infile);
830
831 desc = read_rtx (infile);
832
833 if (GET_CODE (desc) == DEFINE_INSN)
834 {
835 gen_insn (desc);
836 ++insn_code_number;
837 }
838 if (GET_CODE (desc) == DEFINE_EXPAND)
839 {
840 gen_expand (desc);
841 ++insn_code_number;
842 }
843 if (GET_CODE (desc) == DEFINE_SPLIT)
844 {
845 gen_split (desc);
846 ++insn_code_number;
847 }
848 if (GET_CODE (desc) == DEFINE_PEEPHOLE2)
849 {
850 gen_split (desc);
851 ++insn_code_number;
852 }
853 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
854 {
855 ++insn_code_number;
856 }
857 ++insn_index_number;
858 }
859
860 /* Write out the routine to add CLOBBERs to a pattern. */
861 output_add_clobbers ();
862
863 fflush (stdout);
864 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
865 /* NOTREACHED */
866 return 0;
867 }