1 /* Generate code from machine description to perform peephole optimizations.
2 Copyright (C) 1987, 1989, 1992, 1997, 1998, 1999, 2000, 2003, 2004,
3 2007, 2010, 2012 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "gensupport.h"
31 /* While tree-walking an instruction pattern, we keep a chain
32 of these `struct link's to record how to get down to the
33 current position. In each one, POS is the operand number,
34 and if the operand is a vector VEC is the element number.
35 VEC is -1 if the operand is not a vector. */
46 /* Number of operands used in current peephole definition. */
48 static int n_operands
;
50 static void gen_peephole (rtx
, int);
51 static void match_rtx (rtx
, struct link
*, int);
52 static void print_path (struct link
*);
53 static void print_code (RTX_CODE
);
56 gen_peephole (rtx peep
, int insn_code_number
)
58 int ninsns
= XVECLEN (peep
, 0);
63 printf (" insn = ins1;\n");
65 for (i
= 0; i
< ninsns
; i
++)
69 printf (" do { insn = NEXT_INSN (insn);\n");
70 printf (" if (insn == 0) goto L%d; }\n",
72 printf (" while (NOTE_P (insn)\n");
73 printf ("\t || (NONJUMP_INSN_P (insn)\n");
74 printf ("\t && (GET_CODE (PATTERN (insn)) == USE\n");
75 printf ("\t\t || GET_CODE (PATTERN (insn)) == CLOBBER)));\n");
77 printf (" if (LABEL_P (insn)\n\
78 || BARRIER_P (insn))\n goto L%d;\n",
82 printf (" pat = PATTERN (insn);\n");
84 /* Walk the insn's pattern, remembering at all times the path
85 down to the walking point. */
87 match_rtx (XVECEXP (peep
, 0, i
), NULL
, insn_code_number
);
90 /* We get this far if the pattern matches.
91 Now test the extra condition. */
93 if (XSTR (peep
, 1) && XSTR (peep
, 1)[0])
94 printf (" if (! (%s)) goto L%d;\n",
95 XSTR (peep
, 1), insn_code_number
);
97 /* If that matches, construct new pattern and put it in the first insn.
98 This new pattern will never be matched.
99 It exists only so that insn-extract can get the operands back.
100 So use a simple regular form: a PARALLEL containing a vector
101 of all the operands. */
103 printf (" PATTERN (ins1) = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (%d, operands));\n", n_operands
);
105 /* Record this define_peephole's insn code in the insn,
106 as if it had been recognized to match this. */
107 printf (" INSN_CODE (ins1) = %d;\n",
110 /* Delete the remaining insns. */
112 printf (" delete_for_peephole (NEXT_INSN (ins1), insn);\n");
114 /* See reload1.c for insertion of NOTE which guarantees that this
116 printf (" return NEXT_INSN (insn);\n");
118 printf (" L%d:\n\n", insn_code_number
);
122 match_rtx (rtx x
, struct link
*path
, int fail_label
)
139 if (XINT (x
, 0) > max_opno
)
140 max_opno
= XINT (x
, 0);
141 if (XINT (x
, 0) >= n_operands
)
142 n_operands
= 1 + XINT (x
, 0);
148 printf (" operands[%d] = x;\n", XINT (x
, 0));
149 if (XSTR (x
, 1) && XSTR (x
, 1)[0])
150 printf (" if (! %s (x, %smode)) goto L%d;\n",
151 XSTR (x
, 1), GET_MODE_NAME (GET_MODE (x
)), fail_label
);
160 printf (" if (!rtx_equal_p (operands[%d], x)) goto L%d;\n",
161 XINT (x
, 0), fail_label
);
169 printf (" if (GET_CODE (operands[%d]) != GET_CODE (x)\n", XINT (x
, 0));
170 printf (" || GET_MODE (operands[%d]) != GET_MODE (x)) goto L%d;\n",
171 XINT (x
, 0), fail_label
);
172 printf (" operands[%d] = x;\n", XINT (x
, 0));
175 for (i
= 0; i
< XVECLEN (x
, 1); i
++)
178 match_rtx (XVECEXP (x
, 1, i
), &link
, fail_label
);
183 if (XINT (x
, 0) > max_opno
)
184 max_opno
= XINT (x
, 0);
185 if (XINT (x
, 0) >= n_operands
)
186 n_operands
= 1 + XINT (x
, 0);
192 printf (" operands[%d] = x;\n", XINT (x
, 0));
193 if (XSTR (x
, 1) && XSTR (x
, 1)[0])
194 printf (" if (! %s (x, %smode)) goto L%d;\n",
195 XSTR (x
, 1), GET_MODE_NAME (GET_MODE (x
)), fail_label
);
198 for (i
= 0; i
< XVECLEN (x
, 2); i
++)
201 match_rtx (XVECEXP (x
, 2, i
), &link
, fail_label
);
206 if (XINT (x
, 0) > max_opno
)
207 max_opno
= XINT (x
, 0);
208 if (XINT (x
, 0) >= n_operands
)
209 n_operands
= 1 + XINT (x
, 0);
215 printf (" if (GET_CODE (x) != PARALLEL) goto L%d;\n", fail_label
);
216 printf (" operands[%d] = x;\n", XINT (x
, 0));
217 if (XSTR (x
, 1) && XSTR (x
, 1)[0])
218 printf (" if (! %s (x, %smode)) goto L%d;\n",
219 XSTR (x
, 1), GET_MODE_NAME (GET_MODE (x
)), fail_label
);
222 for (i
= 0; i
< XVECLEN (x
, 2); i
++)
225 match_rtx (XVECEXP (x
, 2, i
), &link
, fail_label
);
237 printf (" if (GET_CODE (x) != ");
239 printf (") goto L%d;\n", fail_label
);
241 if (GET_MODE (x
) != VOIDmode
)
243 printf (" if (GET_MODE (x) != %smode) goto L%d;\n",
244 GET_MODE_NAME (GET_MODE (x
)), fail_label
);
249 fmt
= GET_RTX_FORMAT (code
);
250 len
= GET_RTX_LENGTH (code
);
251 for (i
= 0; i
< len
; i
++)
254 if (fmt
[i
] == 'e' || fmt
[i
] == 'u')
255 match_rtx (XEXP (x
, i
), &link
, fail_label
);
256 else if (fmt
[i
] == 'E')
259 printf (" if (XVECLEN (x, %d) != %d) goto L%d;\n",
260 i
, XVECLEN (x
, i
), fail_label
);
261 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
264 match_rtx (XVECEXP (x
, i
, j
), &link
, fail_label
);
267 else if (fmt
[i
] == 'i')
269 /* Make sure that at run time `x' is the RTX we want to test. */
277 printf (" if (XINT (x, %d) != %d) goto L%d;\n",
278 i
, XINT (x
, i
), fail_label
);
280 else if (fmt
[i
] == 'w')
282 /* Make sure that at run time `x' is the RTX we want to test. */
290 printf (" if (XWINT (x, %d) != ", i
);
291 printf (HOST_WIDE_INT_PRINT_DEC
, XWINT (x
, i
));
292 printf (") goto L%d;\n", fail_label
);
294 else if (fmt
[i
] == 's')
296 /* Make sure that at run time `x' is the RTX we want to test. */
304 printf (" if (strcmp (XSTR (x, %d), \"%s\")) goto L%d;\n",
305 i
, XSTR (x
, i
), fail_label
);
310 /* Given a PATH, representing a path down the instruction's
311 pattern from the root to a certain point, output code to
312 evaluate to the rtx at that point. */
315 print_path (struct link
*path
)
319 else if (path
->vecelt
>= 0)
321 printf ("XVECEXP (");
322 print_path (path
->next
);
323 printf (", %d, %d)", path
->pos
, path
->vecelt
);
328 print_path (path
->next
);
329 printf (", %d)", path
->pos
);
334 print_code (RTX_CODE code
)
337 for (p1
= GET_RTX_NAME (code
); *p1
; p1
++)
338 putchar (TOUPPER(*p1
));
341 extern int main (int, char **);
344 main (int argc
, char **argv
)
350 progname
= "genpeep";
352 if (!init_rtx_reader_args (argc
, argv
))
353 return (FATAL_EXIT_CODE
);
355 printf ("/* Generated automatically by the program `genpeep'\n\
356 from the machine description file `md'. */\n\n");
358 printf ("#include \"config.h\"\n");
359 printf ("#include \"system.h\"\n");
360 printf ("#include \"coretypes.h\"\n");
361 printf ("#include \"tm.h\"\n");
362 printf ("#include \"insn-config.h\"\n");
363 printf ("#include \"rtl.h\"\n");
364 printf ("#include \"tm_p.h\"\n");
365 printf ("#include \"regs.h\"\n");
366 printf ("#include \"output.h\"\n");
367 printf ("#include \"recog.h\"\n");
368 printf ("#include \"except.h\"\n");
369 printf ("#include \"function.h\"\n");
370 printf ("#include \"diagnostic-core.h\"\n");
371 printf ("#include \"flags.h\"\n");
372 printf ("#include \"tm-constrs.h\"\n\n");
374 printf ("#ifdef HAVE_peephole\n");
375 printf ("extern rtx peep_operand[];\n\n");
376 printf ("#define operands peep_operand\n\n");
378 printf ("rtx\npeephole (rtx ins1)\n{\n");
379 printf (" rtx insn ATTRIBUTE_UNUSED, x ATTRIBUTE_UNUSED, pat ATTRIBUTE_UNUSED;\n\n");
381 /* Early out: no peepholes for insns followed by barriers. */
382 printf (" if (NEXT_INSN (ins1)\n");
383 printf (" && BARRIER_P (NEXT_INSN (ins1)))\n");
384 printf (" return 0;\n\n");
386 /* Read the machine description. */
391 int insn_code_number
;
393 desc
= read_md_rtx (&line_no
, &insn_code_number
);
397 if (GET_CODE (desc
) == DEFINE_PEEPHOLE
)
398 gen_peephole (desc
, insn_code_number
);
401 printf (" return 0;\n}\n\n");
406 printf ("rtx peep_operand[%d];\n", max_opno
+ 1);
410 return (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);