oops - omitted from previous delta fixing UNIQUE_SECTION
[official-gcc.git] / gcc / genpeep.c
blobd26d0eabdef0e7d998ee28c7845114901b10f7b6
1 /* Generate code from machine description to perform peephole optimizations.
2 Copyright (C) 1987, 89, 92, 97-99, 2000 Free Software Foundation, Inc.
4 This file is part of GNU CC.
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.
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.
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. */
22 #include "hconfig.h"
23 #include "system.h"
24 #include "rtl.h"
25 #include "obstack.h"
26 #include "errors.h"
28 static struct obstack obstack;
29 struct obstack *rtl_obstack = &obstack;
31 #define obstack_chunk_alloc xmalloc
32 #define obstack_chunk_free free
34 /* While tree-walking an instruction pattern, we keep a chain
35 of these `struct link's to record how to get down to the
36 current position. In each one, POS is the operand number,
37 and if the operand is a vector VEC is the element number.
38 VEC is -1 if the operand is not a vector. */
40 struct link
42 struct link *next;
43 int pos;
44 int vecelt;
47 static int max_opno;
49 /* Number of operands used in current peephole definition. */
51 static int n_operands;
53 /* Peephole optimizations get insn codes just like insn patterns.
54 Count them so we know the code of the define_peephole we are handling. */
56 static int insn_code_number = 0;
58 static void gen_peephole PARAMS ((rtx));
59 static void match_rtx PARAMS ((rtx, struct link *, int));
60 static void print_path PARAMS ((struct link *));
61 static void print_code PARAMS ((RTX_CODE));
63 static void
64 gen_peephole (peep)
65 rtx peep;
67 int ninsns = XVECLEN (peep, 0);
68 int i;
70 n_operands = 0;
72 printf (" insn = ins1;\n");
73 #if 0
74 printf (" want_jump = 0;\n");
75 #endif
77 for (i = 0; i < ninsns; i++)
79 if (i > 0)
81 printf (" do { insn = NEXT_INSN (insn);\n");
82 printf (" if (insn == 0) goto L%d; }\n",
83 insn_code_number);
84 printf (" while (GET_CODE (insn) == NOTE\n");
85 printf ("\t || (GET_CODE (insn) == INSN\n");
86 printf ("\t && (GET_CODE (PATTERN (insn)) == USE\n");
87 printf ("\t\t || GET_CODE (PATTERN (insn)) == CLOBBER)));\n");
89 printf (" if (GET_CODE (insn) == CODE_LABEL\n\
90 || GET_CODE (insn) == BARRIER)\n goto L%d;\n",
91 insn_code_number);
94 #if 0
95 printf (" if (GET_CODE (insn) == JUMP_INSN)\n");
96 printf (" want_jump = JUMP_LABEL (insn);\n");
97 #endif
99 printf (" pat = PATTERN (insn);\n");
101 /* Walk the insn's pattern, remembering at all times the path
102 down to the walking point. */
104 match_rtx (XVECEXP (peep, 0, i), NULL_PTR, insn_code_number);
107 /* We get this far if the pattern matches.
108 Now test the extra condition. */
110 if (XSTR (peep, 1) && XSTR (peep, 1)[0])
111 printf (" if (! (%s)) goto L%d;\n",
112 XSTR (peep, 1), insn_code_number);
114 /* If that matches, construct new pattern and put it in the first insn.
115 This new pattern will never be matched.
116 It exists only so that insn-extract can get the operands back.
117 So use a simple regular form: a PARALLEL containing a vector
118 of all the operands. */
120 printf (" PATTERN (ins1) = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (%d, operands));\n", n_operands);
122 #if 0
123 printf (" if (want_jump && GET_CODE (ins1) != JUMP_INSN)\n");
124 printf (" {\n");
125 printf (" rtx insn2 = emit_jump_insn_before (PATTERN (ins1), ins1);\n");
126 printf (" delete_insn (ins1);\n");
127 printf (" ins1 = ins2;\n");
128 printf (" }\n");
129 #endif
131 /* Record this define_peephole's insn code in the insn,
132 as if it had been recognized to match this. */
133 printf (" INSN_CODE (ins1) = %d;\n",
134 insn_code_number);
136 /* Delete the remaining insns. */
137 if (ninsns > 1)
138 printf (" delete_for_peephole (NEXT_INSN (ins1), insn);\n");
140 /* See reload1.c for insertion of NOTE which guarantees that this
141 cannot be zero. */
142 printf (" return NEXT_INSN (insn);\n");
144 printf (" L%d:\n\n", insn_code_number);
147 static void
148 match_rtx (x, path, fail_label)
149 rtx x;
150 struct link *path;
151 int fail_label;
153 register RTX_CODE code;
154 register int i;
155 register int len;
156 register const char *fmt;
157 struct link link;
159 if (x == 0)
160 return;
163 code = GET_CODE (x);
165 switch (code)
167 case MATCH_OPERAND:
168 if (XINT (x, 0) > max_opno)
169 max_opno = XINT (x, 0);
170 if (XINT (x, 0) >= n_operands)
171 n_operands = 1 + XINT (x, 0);
173 printf (" x = ");
174 print_path (path);
175 printf (";\n");
177 printf (" operands[%d] = x;\n", XINT (x, 0));
178 if (XSTR (x, 1) && XSTR (x, 1)[0])
179 printf (" if (! %s (x, %smode)) goto L%d;\n",
180 XSTR (x, 1), GET_MODE_NAME (GET_MODE (x)), fail_label);
181 return;
183 case MATCH_DUP:
184 case MATCH_PAR_DUP:
185 printf (" x = ");
186 print_path (path);
187 printf (";\n");
189 printf (" if (!rtx_equal_p (operands[%d], x)) goto L%d;\n",
190 XINT (x, 0), fail_label);
191 return;
193 case MATCH_OP_DUP:
194 printf (" x = ");
195 print_path (path);
196 printf (";\n");
198 printf (" if (GET_CODE (operands[%d]) != GET_CODE (x)\n", XINT (x, 0));
199 printf (" || GET_MODE (operands[%d]) != GET_MODE (x)) goto L%d;\n",
200 XINT (x, 0), fail_label);
201 printf (" operands[%d] = x;\n", XINT (x, 0));
202 link.next = path;
203 link.vecelt = -1;
204 for (i = 0; i < XVECLEN (x, 1); i++)
206 link.pos = i;
207 match_rtx (XVECEXP (x, 1, i), &link, fail_label);
209 return;
211 case MATCH_OPERATOR:
212 if (XINT (x, 0) > max_opno)
213 max_opno = XINT (x, 0);
214 if (XINT (x, 0) >= n_operands)
215 n_operands = 1 + XINT (x, 0);
217 printf (" x = ");
218 print_path (path);
219 printf (";\n");
221 printf (" operands[%d] = x;\n", XINT (x, 0));
222 if (XSTR (x, 1) && XSTR (x, 1)[0])
223 printf (" if (! %s (x, %smode)) goto L%d;\n",
224 XSTR (x, 1), GET_MODE_NAME (GET_MODE (x)), fail_label);
225 link.next = path;
226 link.vecelt = -1;
227 for (i = 0; i < XVECLEN (x, 2); i++)
229 link.pos = i;
230 match_rtx (XVECEXP (x, 2, i), &link, fail_label);
232 return;
234 case MATCH_PARALLEL:
235 if (XINT (x, 0) > max_opno)
236 max_opno = XINT (x, 0);
237 if (XINT (x, 0) >= n_operands)
238 n_operands = 1 + XINT (x, 0);
240 printf (" x = ");
241 print_path (path);
242 printf (";\n");
244 printf (" if (GET_CODE (x) != PARALLEL) goto L%d;\n", fail_label);
245 printf (" operands[%d] = x;\n", XINT (x, 0));
246 if (XSTR (x, 1) && XSTR (x, 1)[0])
247 printf (" if (! %s (x, %smode)) goto L%d;\n",
248 XSTR (x, 1), GET_MODE_NAME (GET_MODE (x)), fail_label);
249 link.next = path;
250 link.pos = 0;
251 for (i = 0; i < XVECLEN (x, 2); i++)
253 link.vecelt = i;
254 match_rtx (XVECEXP (x, 2, i), &link, fail_label);
256 return;
258 case ADDRESS:
259 match_rtx (XEXP (x, 0), path, fail_label);
260 return;
262 default:
263 break;
266 printf (" x = ");
267 print_path (path);
268 printf (";\n");
270 printf (" if (GET_CODE (x) != ");
271 print_code (code);
272 printf (") goto L%d;\n", fail_label);
274 if (GET_MODE (x) != VOIDmode)
276 printf (" if (GET_MODE (x) != %smode) goto L%d;\n",
277 GET_MODE_NAME (GET_MODE (x)), fail_label);
280 link.next = path;
281 link.vecelt = -1;
282 fmt = GET_RTX_FORMAT (code);
283 len = GET_RTX_LENGTH (code);
284 for (i = 0; i < len; i++)
286 link.pos = i;
287 if (fmt[i] == 'e' || fmt[i] == 'u')
288 match_rtx (XEXP (x, i), &link, fail_label);
289 else if (fmt[i] == 'E')
291 int j;
292 printf (" if (XVECLEN (x, %d) != %d) goto L%d;\n",
293 i, XVECLEN (x, i), fail_label);
294 for (j = 0; j < XVECLEN (x, i); j++)
296 link.vecelt = j;
297 match_rtx (XVECEXP (x, i, j), &link, fail_label);
300 else if (fmt[i] == 'i')
302 /* Make sure that at run time `x' is the RTX we want to test. */
303 if (i != 0)
305 printf (" x = ");
306 print_path (path);
307 printf (";\n");
310 printf (" if (XINT (x, %d) != %d) goto L%d;\n",
311 i, XINT (x, i), fail_label);
313 else if (fmt[i] == 'w')
315 /* Make sure that at run time `x' is the RTX we want to test. */
316 if (i != 0)
318 printf (" x = ");
319 print_path (path);
320 printf (";\n");
323 printf (" if (XWINT (x, %d) != ", i);
324 printf (HOST_WIDE_INT_PRINT_DEC, XWINT (x, i));
325 printf (") goto L%d;\n", fail_label);
327 else if (fmt[i] == 's')
329 /* Make sure that at run time `x' is the RTX we want to test. */
330 if (i != 0)
332 printf (" x = ");
333 print_path (path);
334 printf (";\n");
337 printf (" if (strcmp (XSTR (x, %d), \"%s\")) goto L%d;\n",
338 i, XSTR (x, i), fail_label);
343 /* Given a PATH, representing a path down the instruction's
344 pattern from the root to a certain point, output code to
345 evaluate to the rtx at that point. */
347 static void
348 print_path (path)
349 struct link *path;
351 if (path == 0)
352 printf ("pat");
353 else if (path->vecelt >= 0)
355 printf ("XVECEXP (");
356 print_path (path->next);
357 printf (", %d, %d)", path->pos, path->vecelt);
359 else
361 printf ("XEXP (");
362 print_path (path->next);
363 printf (", %d)", path->pos);
367 static void
368 print_code (code)
369 RTX_CODE code;
371 register const char *p1;
372 for (p1 = GET_RTX_NAME (code); *p1; p1++)
373 putchar (TOUPPER(*p1));
377 xmalloc (size)
378 size_t size;
380 register PTR val = (PTR) malloc (size);
382 if (val == 0)
383 fatal ("virtual memory exhausted");
384 return val;
388 xrealloc (old, size)
389 PTR old;
390 size_t size;
392 register PTR ptr;
393 if (old)
394 ptr = (PTR) realloc (old, size);
395 else
396 ptr = (PTR) malloc (size);
397 if (!ptr)
398 fatal ("virtual memory exhausted");
399 return ptr;
402 extern int main PARAMS ((int, char **));
405 main (argc, argv)
406 int argc;
407 char **argv;
409 rtx desc;
410 FILE *infile;
411 register int c;
413 max_opno = -1;
415 progname = "genpeep";
416 obstack_init (rtl_obstack);
418 if (argc <= 1)
419 fatal ("No input file name.");
421 infile = fopen (argv[1], "r");
422 if (infile == 0)
424 perror (argv[1]);
425 return (FATAL_EXIT_CODE);
427 read_rtx_filename = argv[1];
429 printf ("/* Generated automatically by the program `genpeep'\n\
430 from the machine description file `md'. */\n\n");
432 printf ("#include \"config.h\"\n");
433 printf ("#include \"system.h\"\n");
434 printf ("#include \"insn-config.h\"\n");
435 printf ("#include \"rtl.h\"\n");
436 printf ("#include \"tm_p.h\"\n");
437 printf ("#include \"regs.h\"\n");
438 printf ("#include \"output.h\"\n");
439 printf ("#include \"real.h\"\n");
440 printf ("#include \"recog.h\"\n");
441 printf ("#include \"except.h\"\n\n");
442 printf ("#include \"function.h\"\n\n");
444 printf ("#ifdef HAVE_peephole\n");
445 printf ("extern rtx peep_operand[];\n\n");
446 printf ("#define operands peep_operand\n\n");
448 printf ("rtx\npeephole (ins1)\n rtx ins1;\n{\n");
449 printf (" rtx insn ATTRIBUTE_UNUSED, x ATTRIBUTE_UNUSED, pat ATTRIBUTE_UNUSED;\n\n");
451 /* Early out: no peepholes for insns followed by barriers. */
452 printf (" if (NEXT_INSN (ins1)\n");
453 printf (" && GET_CODE (NEXT_INSN (ins1)) == BARRIER)\n");
454 printf (" return 0;\n\n");
456 /* Read the machine description. */
458 while (1)
460 c = read_skip_spaces (infile);
461 if (c == EOF)
462 break;
463 ungetc (c, infile);
465 desc = read_rtx (infile);
466 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
468 gen_peephole (desc);
469 insn_code_number++;
471 if (GET_CODE (desc) == DEFINE_INSN
472 || GET_CODE (desc) == DEFINE_EXPAND
473 || GET_CODE (desc) == DEFINE_SPLIT)
475 insn_code_number++;
479 printf (" return 0;\n}\n\n");
481 if (max_opno == -1)
482 max_opno = 1;
484 printf ("rtx peep_operand[%d];\n", max_opno + 1);
485 printf ("#endif\n");
487 fflush (stdout);
488 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
491 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
492 const char *
493 get_insn_name (code)
494 int code ATTRIBUTE_UNUSED;
496 return NULL;