* gcc.dg/c99-float-1.c: XFAIL portions on Solaris.
[official-gcc.git] / gcc / genextract.c
blob76cde0e3aec4ad4a325b90e281d3656c06a7e30f
1 /* Generate code from machine description to extract operands from insn as rtl.
2 Copyright (C) 1987, 1991, 1992, 1993, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include "hconfig.h"
24 #include "system.h"
25 #include "rtl.h"
26 #include "errors.h"
27 #include "insn-config.h"
28 #include "gensupport.h"
31 /* This structure contains all the information needed to describe one
32 set of extractions methods. Each method may be used by more than
33 one pattern if the operands are in the same place.
35 The string for each operand describes that path to the operand and
36 contains `0' through `9' when going into an expression and `a' through
37 `z' when going into a vector. We assume here that only the first operand
38 of an rtl expression is a vector. genrecog.c makes the same assumption
39 (and uses the same representation) and it is currently true. */
41 struct extraction
43 int op_count;
44 char *oplocs[MAX_RECOG_OPERANDS];
45 int dup_count;
46 char *duplocs[MAX_DUP_OPERANDS];
47 int dupnums[MAX_DUP_OPERANDS];
48 struct code_ptr *insns;
49 struct extraction *next;
52 /* Holds a single insn code that use an extraction method. */
54 struct code_ptr
56 int insn_code;
57 struct code_ptr *next;
60 static struct extraction *extractions;
62 /* Holds an array of names indexed by insn_code_number. */
63 static char **insn_name_ptr = 0;
64 static int insn_name_ptr_size = 0;
66 /* Number instruction patterns handled, starting at 0 for first one. */
68 static int insn_code_number;
70 /* Records the large operand number in this insn. */
72 static int op_count;
74 /* Records the location of any operands using the string format described
75 above. */
77 static char *oplocs[MAX_RECOG_OPERANDS];
79 /* Number the occurrences of MATCH_DUP in each instruction,
80 starting at 0 for the first occurrence. */
82 static int dup_count;
84 /* Records the location of any MATCH_DUP operands. */
86 static char *duplocs[MAX_DUP_OPERANDS];
88 /* Record the operand number of any MATCH_DUPs. */
90 static int dupnums[MAX_DUP_OPERANDS];
92 /* Record the list of insn_codes for peepholes. */
94 static struct code_ptr *peepholes;
96 static void gen_insn PARAMS ((rtx));
97 static void walk_rtx PARAMS ((rtx, const char *));
98 static void print_path PARAMS ((const char *));
99 static void record_insn_name PARAMS ((int, const char *));
101 static void
102 gen_insn (insn)
103 rtx insn;
105 register int i;
106 register struct extraction *p;
107 register struct code_ptr *link;
109 op_count = 0;
110 dup_count = 0;
112 /* No operands seen so far in this pattern. */
113 memset (oplocs, 0, sizeof oplocs);
115 /* Walk the insn's pattern, remembering at all times the path
116 down to the walking point. */
118 if (XVECLEN (insn, 1) == 1)
119 walk_rtx (XVECEXP (insn, 1, 0), "");
120 else
121 for (i = XVECLEN (insn, 1) - 1; i >= 0; i--)
123 char *path = (char *) alloca (2);
125 path[0] = 'a' + i;
126 path[1] = 0;
128 walk_rtx (XVECEXP (insn, 1, i), path);
131 link = (struct code_ptr *) xmalloc (sizeof (struct code_ptr));
132 link->insn_code = insn_code_number;
134 /* See if we find something that already had this extraction method. */
136 for (p = extractions; p; p = p->next)
138 if (p->op_count != op_count || p->dup_count != dup_count)
139 continue;
141 for (i = 0; i < op_count; i++)
142 if (p->oplocs[i] != oplocs[i]
143 && ! (p->oplocs[i] != 0 && oplocs[i] != 0
144 && ! strcmp (p->oplocs[i], oplocs[i])))
145 break;
147 if (i != op_count)
148 continue;
150 for (i = 0; i < dup_count; i++)
151 if (p->dupnums[i] != dupnums[i]
152 || strcmp (p->duplocs[i], duplocs[i]))
153 break;
155 if (i != dup_count)
156 continue;
158 /* This extraction is the same as ours. Just link us in. */
159 link->next = p->insns;
160 p->insns = link;
161 return;
164 /* Otherwise, make a new extraction method. */
166 p = (struct extraction *) xmalloc (sizeof (struct extraction));
167 p->op_count = op_count;
168 p->dup_count = dup_count;
169 p->next = extractions;
170 extractions = p;
171 p->insns = link;
172 link->next = 0;
174 for (i = 0; i < op_count; i++)
175 p->oplocs[i] = oplocs[i];
177 for (i = 0; i < dup_count; i++)
178 p->dupnums[i] = dupnums[i], p->duplocs[i] = duplocs[i];
181 static void
182 walk_rtx (x, path)
183 rtx x;
184 const char *path;
186 register RTX_CODE code;
187 register int i;
188 register int len;
189 register const char *fmt;
190 int depth = strlen (path);
191 char *newpath;
193 if (x == 0)
194 return;
196 code = GET_CODE (x);
198 switch (code)
200 case PC:
201 case CC0:
202 case CONST_INT:
203 case SYMBOL_REF:
204 return;
206 case MATCH_OPERAND:
207 case MATCH_SCRATCH:
208 oplocs[XINT (x, 0)] = xstrdup (path);
209 op_count = MAX (op_count, XINT (x, 0) + 1);
210 break;
212 case MATCH_DUP:
213 case MATCH_PAR_DUP:
214 duplocs[dup_count] = xstrdup (path);
215 dupnums[dup_count] = XINT (x, 0);
216 dup_count++;
217 break;
219 case MATCH_OP_DUP:
220 duplocs[dup_count] = xstrdup (path);
221 dupnums[dup_count] = XINT (x, 0);
222 dup_count++;
224 newpath = (char *) alloca (depth + 2);
225 strcpy (newpath, path);
226 newpath[depth + 1] = 0;
228 for (i = XVECLEN (x, 1) - 1; i >= 0; i--)
230 newpath[depth] = '0' + i;
231 walk_rtx (XVECEXP (x, 1, i), newpath);
233 return;
235 case MATCH_OPERATOR:
236 oplocs[XINT (x, 0)] = xstrdup (path);
237 op_count = MAX (op_count, XINT (x, 0) + 1);
239 newpath = (char *) alloca (depth + 2);
240 strcpy (newpath, path);
241 newpath[depth + 1] = 0;
243 for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
245 newpath[depth] = '0' + i;
246 walk_rtx (XVECEXP (x, 2, i), newpath);
248 return;
250 case MATCH_PARALLEL:
251 oplocs[XINT (x, 0)] = xstrdup (path);
252 op_count = MAX (op_count, XINT (x, 0) + 1);
254 newpath = (char *) alloca (depth + 2);
255 strcpy (newpath, path);
256 newpath[depth + 1] = 0;
258 for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
260 newpath[depth] = 'a' + i;
261 walk_rtx (XVECEXP (x, 2, i), newpath);
263 return;
265 case ADDRESS:
266 walk_rtx (XEXP (x, 0), path);
267 return;
269 default:
270 break;
273 newpath = (char *) alloca (depth + 2);
274 strcpy (newpath, path);
275 newpath[depth + 1] = 0;
277 fmt = GET_RTX_FORMAT (code);
278 len = GET_RTX_LENGTH (code);
279 for (i = 0; i < len; i++)
281 if (fmt[i] == 'e' || fmt[i] == 'u')
283 newpath[depth] = '0' + i;
284 walk_rtx (XEXP (x, i), newpath);
286 else if (fmt[i] == 'E')
288 int j;
289 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
291 newpath[depth] = 'a' + j;
292 walk_rtx (XVECEXP (x, i, j), newpath);
298 /* Given a PATH, representing a path down the instruction's
299 pattern from the root to a certain point, output code to
300 evaluate to the rtx at that point. */
302 static void
303 print_path (path)
304 const char *path;
306 register int len = strlen (path);
307 register int i;
309 if (len == 0)
311 /* Don't emit "pat", since we may try to take the address of it,
312 which isn't what is intended. */
313 printf("PATTERN (insn)");
314 return;
317 /* We first write out the operations (XEXP or XVECEXP) in reverse
318 order, then write "insn", then the indices in forward order. */
320 for (i = len - 1; i >=0 ; i--)
322 if (ISLOWER(path[i]))
323 printf ("XVECEXP (");
324 else if (ISDIGIT(path[i]))
325 printf ("XEXP (");
326 else
327 abort ();
330 printf ("pat");
332 for (i = 0; i < len; i++)
334 if (ISLOWER(path[i]))
335 printf (", 0, %d)", path[i] - 'a');
336 else if (ISDIGIT(path[i]))
337 printf (", %d)", path[i] - '0');
338 else
339 abort ();
343 extern int main PARAMS ((int, char **));
346 main (argc, argv)
347 int argc;
348 char **argv;
350 rtx desc;
351 int i;
352 struct extraction *p;
353 struct code_ptr *link;
354 const char *name;
356 progname = "genextract";
358 if (argc <= 1)
359 fatal ("No input file name.");
361 if (init_md_reader (argv[1]) != SUCCESS_EXIT_CODE)
362 return (FATAL_EXIT_CODE);
364 /* Assign sequential codes to all entries in the machine description
365 in parallel with the tables in insn-output.c. */
367 insn_code_number = 0;
369 printf ("/* Generated automatically by the program `genextract'\n\
370 from the machine description file `md'. */\n\n");
372 printf ("#include \"config.h\"\n");
373 printf ("#include \"system.h\"\n");
374 printf ("#include \"rtl.h\"\n");
375 printf ("#include \"insn-config.h\"\n");
376 printf ("#include \"recog.h\"\n");
377 printf ("#include \"toplev.h\"\n\n");
379 /* This variable exists only so it can be the "location"
380 of any missing operand whose numbers are skipped by a given pattern. */
381 printf ("static rtx junk ATTRIBUTE_UNUSED;\n");
383 printf ("void\ninsn_extract (insn)\n");
384 printf (" rtx insn;\n");
385 printf ("{\n");
386 printf (" register rtx *ro = recog_data.operand;\n");
387 printf (" register rtx **ro_loc = recog_data.operand_loc;\n");
388 printf (" rtx pat = PATTERN (insn);\n");
389 printf (" int i ATTRIBUTE_UNUSED;\n\n");
390 printf (" memset (ro, 0, sizeof (*ro) * MAX_RECOG_OPERANDS);\n");
391 printf (" memset (ro_loc, 0, sizeof (*ro_loc) * MAX_RECOG_OPERANDS);\n");
392 printf (" switch (INSN_CODE (insn))\n");
393 printf (" {\n");
394 printf (" case -1:\n");
395 printf (" fatal_insn_not_found (insn);\n\n");
397 /* Read the machine description. */
399 while (1)
401 int line_no;
403 desc = read_md_rtx (&line_no, &insn_code_number);
404 if (desc == NULL)
405 break;
407 if (GET_CODE (desc) == DEFINE_INSN)
409 record_insn_name (insn_code_number, XSTR (desc, 0));
410 gen_insn (desc);
413 else if (GET_CODE (desc) == DEFINE_PEEPHOLE)
415 struct code_ptr *link
416 = (struct code_ptr *) xmalloc (sizeof (struct code_ptr));
418 link->insn_code = insn_code_number;
419 link->next = peepholes;
420 peepholes = link;
424 /* Write out code to handle peepholes and the insn_codes that it should
425 be called for. */
426 if (peepholes)
428 for (link = peepholes; link; link = link->next)
429 printf (" case %d:\n", link->insn_code);
431 /* The vector in the insn says how many operands it has.
432 And all it contains are operands. In fact, the vector was
433 created just for the sake of this function. */
434 printf (" for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)\n");
435 printf (" ro[i] = XVECEXP (pat, 0, i);\n");
436 printf (" break;\n\n");
439 /* Write out all the ways to extract insn operands. */
440 for (p = extractions; p; p = p->next)
442 for (link = p->insns; link; link = link->next)
444 i = link->insn_code;
445 name = get_insn_name (i);
446 if (name)
447 printf (" case %d: /* %s */\n", i, name);
448 else
449 printf (" case %d:\n", i);
452 for (i = 0; i < p->op_count; i++)
454 if (p->oplocs[i] == 0)
456 printf (" ro[%d] = const0_rtx;\n", i);
457 printf (" ro_loc[%d] = &junk;\n", i);
459 else
461 printf (" ro[%d] = *(ro_loc[%d] = &", i, i);
462 print_path (p->oplocs[i]);
463 printf (");\n");
467 for (i = 0; i < p->dup_count; i++)
469 printf (" recog_data.dup_loc[%d] = &", i);
470 print_path (p->duplocs[i]);
471 printf (";\n");
472 printf (" recog_data.dup_num[%d] = %d;\n", i, p->dupnums[i]);
475 printf (" break;\n\n");
478 /* This should never be reached. Note that we would also reach this abort
479 if we tried to extract something whose INSN_CODE was a DEFINE_EXPAND or
480 DEFINE_SPLIT, but that is correct. */
481 printf (" default:\n abort ();\n");
483 printf (" }\n}\n");
485 fflush (stdout);
486 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
489 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
490 const char *
491 get_insn_name (code)
492 int code ATTRIBUTE_UNUSED;
494 if (code < insn_name_ptr_size)
495 return insn_name_ptr[code];
496 else
497 return NULL;
500 static void
501 record_insn_name (code, name)
502 int code;
503 const char *name;
505 static const char *last_real_name = "insn";
506 static int last_real_code = 0;
507 char *new;
509 if (insn_name_ptr_size <= code)
511 int new_size;
512 new_size = (insn_name_ptr_size ? insn_name_ptr_size * 2 : 512);
513 insn_name_ptr =
514 (char **) xrealloc (insn_name_ptr, sizeof(char *) * new_size);
515 memset (insn_name_ptr + insn_name_ptr_size, 0,
516 sizeof(char *) * (new_size - insn_name_ptr_size));
517 insn_name_ptr_size = new_size;
520 if (!name || name[0] == '\0')
522 new = xmalloc (strlen (last_real_name) + 10);
523 sprintf (new, "%s+%d", last_real_name, code - last_real_code);
525 else
527 last_real_name = new = xstrdup (name);
528 last_real_code = code;
531 insn_name_ptr[code] = new;