1 /* Generate code from machine description to extract operands from insn as rtl.
2 Copyright (C) 1987, 91-93, 97-98, 1999 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)
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. */
27 #include "insn-config.h"
29 static struct obstack obstack
;
30 struct obstack
*rtl_obstack
= &obstack
;
32 #define obstack_chunk_alloc xmalloc
33 #define obstack_chunk_free free
35 /* This structure contains all the information needed to describe one
36 set of extractions methods. Each method may be used by more than
37 one pattern if the operands are in the same place.
39 The string for each operand describes that path to the operand and
40 contains `0' through `9' when going into an expression and `a' through
41 `z' when going into a vector. We assume here that only the first operand
42 of an rtl expression is a vector. genrecog.c makes the same assumption
43 (and uses the same representation) and it is currently true. */
48 char *oplocs
[MAX_RECOG_OPERANDS
];
50 char *duplocs
[MAX_DUP_OPERANDS
];
51 int dupnums
[MAX_DUP_OPERANDS
];
52 struct code_ptr
*insns
;
53 struct extraction
*next
;
56 /* Holds a single insn code that use an extraction method. */
61 struct code_ptr
*next
;
64 static struct extraction
*extractions
;
66 /* Holds an array of names indexed by insn_code_number. */
67 static char **insn_name_ptr
= 0;
68 static int insn_name_ptr_size
= 0;
70 /* Number instruction patterns handled, starting at 0 for first one. */
72 static int insn_code_number
;
74 /* Records the large operand number in this insn. */
78 /* Records the location of any operands using the string format described
81 static char *oplocs
[MAX_RECOG_OPERANDS
];
83 /* Number the occurrences of MATCH_DUP in each instruction,
84 starting at 0 for the first occurrence. */
88 /* Records the location of any MATCH_DUP operands. */
90 static char *duplocs
[MAX_DUP_OPERANDS
];
92 /* Record the operand number of any MATCH_DUPs. */
94 static int dupnums
[MAX_DUP_OPERANDS
];
96 /* Record the list of insn_codes for peepholes. */
98 static struct code_ptr
*peepholes
;
100 static void gen_insn
PROTO ((rtx
));
101 static void walk_rtx
PROTO ((rtx
, const char *));
102 static void print_path
PROTO ((const char *));
103 static void record_insn_name
PROTO((int, const char *));
110 register struct extraction
*p
;
111 register struct code_ptr
*link
;
116 /* No operands seen so far in this pattern. */
117 memset (oplocs
, 0, sizeof oplocs
);
119 /* Walk the insn's pattern, remembering at all times the path
120 down to the walking point. */
122 if (XVECLEN (insn
, 1) == 1)
123 walk_rtx (XVECEXP (insn
, 1, 0), "");
125 for (i
= XVECLEN (insn
, 1) - 1; i
>= 0; i
--)
127 char *path
= (char *) alloca (2);
132 walk_rtx (XVECEXP (insn
, 1, i
), path
);
135 link
= (struct code_ptr
*) xmalloc (sizeof (struct code_ptr
));
136 link
->insn_code
= insn_code_number
;
138 /* See if we find something that already had this extraction method. */
140 for (p
= extractions
; p
; p
= p
->next
)
142 if (p
->op_count
!= op_count
|| p
->dup_count
!= dup_count
)
145 for (i
= 0; i
< op_count
; i
++)
146 if (p
->oplocs
[i
] != oplocs
[i
]
147 && ! (p
->oplocs
[i
] != 0 && oplocs
[i
] != 0
148 && ! strcmp (p
->oplocs
[i
], oplocs
[i
])))
154 for (i
= 0; i
< dup_count
; i
++)
155 if (p
->dupnums
[i
] != dupnums
[i
]
156 || strcmp (p
->duplocs
[i
], duplocs
[i
]))
162 /* This extraction is the same as ours. Just link us in. */
163 link
->next
= p
->insns
;
168 /* Otherwise, make a new extraction method. */
170 p
= (struct extraction
*) xmalloc (sizeof (struct extraction
));
171 p
->op_count
= op_count
;
172 p
->dup_count
= dup_count
;
173 p
->next
= extractions
;
178 for (i
= 0; i
< op_count
; i
++)
179 p
->oplocs
[i
] = oplocs
[i
];
181 for (i
= 0; i
< dup_count
; i
++)
182 p
->dupnums
[i
] = dupnums
[i
], p
->duplocs
[i
] = duplocs
[i
];
190 register RTX_CODE code
;
193 register const char *fmt
;
194 int depth
= strlen (path
);
212 oplocs
[XINT (x
, 0)] = xstrdup (path
);
213 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
218 duplocs
[dup_count
] = xstrdup (path
);
219 dupnums
[dup_count
] = XINT (x
, 0);
224 duplocs
[dup_count
] = xstrdup (path
);
225 dupnums
[dup_count
] = XINT (x
, 0);
228 newpath
= (char *) alloca (depth
+ 2);
229 strcpy (newpath
, path
);
230 newpath
[depth
+ 1] = 0;
232 for (i
= XVECLEN (x
, 1) - 1; i
>= 0; i
--)
234 newpath
[depth
] = '0' + i
;
235 walk_rtx (XVECEXP (x
, 1, i
), newpath
);
240 oplocs
[XINT (x
, 0)] = xstrdup (path
);
241 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
243 newpath
= (char *) alloca (depth
+ 2);
244 strcpy (newpath
, path
);
245 newpath
[depth
+ 1] = 0;
247 for (i
= XVECLEN (x
, 2) - 1; i
>= 0; i
--)
249 newpath
[depth
] = '0' + i
;
250 walk_rtx (XVECEXP (x
, 2, i
), newpath
);
255 oplocs
[XINT (x
, 0)] = xstrdup (path
);
256 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
258 newpath
= (char *) alloca (depth
+ 2);
259 strcpy (newpath
, path
);
260 newpath
[depth
+ 1] = 0;
262 for (i
= XVECLEN (x
, 2) - 1; i
>= 0; i
--)
264 newpath
[depth
] = 'a' + i
;
265 walk_rtx (XVECEXP (x
, 2, i
), newpath
);
270 walk_rtx (XEXP (x
, 0), path
);
277 newpath
= (char *) alloca (depth
+ 2);
278 strcpy (newpath
, path
);
279 newpath
[depth
+ 1] = 0;
281 fmt
= GET_RTX_FORMAT (code
);
282 len
= GET_RTX_LENGTH (code
);
283 for (i
= 0; i
< len
; i
++)
285 if (fmt
[i
] == 'e' || fmt
[i
] == 'u')
287 newpath
[depth
] = '0' + i
;
288 walk_rtx (XEXP (x
, i
), newpath
);
290 else if (fmt
[i
] == 'E')
293 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
295 newpath
[depth
] = 'a' + j
;
296 walk_rtx (XVECEXP (x
, i
, j
), newpath
);
302 /* Given a PATH, representing a path down the instruction's
303 pattern from the root to a certain point, output code to
304 evaluate to the rtx at that point. */
310 register int len
= strlen (path
);
315 /* Don't emit "pat", since we may try to take the address of it,
316 which isn't what is intended. */
317 printf("PATTERN (insn)");
321 /* We first write out the operations (XEXP or XVECEXP) in reverse
322 order, then write "insn", then the indices in forward order. */
324 for (i
= len
- 1; i
>=0 ; i
--)
326 if (ISLOWER(path
[i
]))
327 printf ("XVECEXP (");
328 else if (ISDIGIT(path
[i
]))
336 for (i
= 0; i
< len
; i
++)
338 if (ISLOWER(path
[i
]))
339 printf (", 0, %d)", path
[i
] - 'a');
340 else if (ISDIGIT(path
[i
]))
341 printf (", %d)", path
[i
] - '0');
351 register PTR val
= (PTR
) malloc (size
);
354 fatal ("virtual memory exhausted");
365 ptr
= (PTR
) realloc (old
, size
);
367 ptr
= (PTR
) malloc (size
);
369 fatal ("virtual memory exhausted");
377 register size_t len
= strlen (input
) + 1;
378 register char *output
= xmalloc (len
);
379 memcpy (output
, input
, len
);
383 extern int main
PROTO ((int, char **));
393 struct extraction
*p
;
394 struct code_ptr
*link
;
397 progname
= "genextract";
398 obstack_init (rtl_obstack
);
401 fatal ("No input file name.");
403 infile
= fopen (argv
[1], "r");
407 return (FATAL_EXIT_CODE
);
409 read_rtx_filename
= argv
[1];
411 /* Assign sequential codes to all entries in the machine description
412 in parallel with the tables in insn-output.c. */
414 insn_code_number
= 0;
416 printf ("/* Generated automatically by the program `genextract'\n\
417 from the machine description file `md'. */\n\n");
419 printf ("#include \"config.h\"\n");
420 printf ("#include \"system.h\"\n");
421 printf ("#include \"rtl.h\"\n");
422 printf ("#include \"insn-config.h\"\n");
423 printf ("#include \"recog.h\"\n");
424 printf ("#include \"toplev.h\"\n\n");
426 /* This variable exists only so it can be the "location"
427 of any missing operand whose numbers are skipped by a given pattern. */
428 printf ("static rtx junk ATTRIBUTE_UNUSED;\n");
430 printf ("void\ninsn_extract (insn)\n");
431 printf (" rtx insn;\n");
433 printf (" register rtx *ro = recog_data.operand;\n");
434 printf (" register rtx **ro_loc = recog_data.operand_loc;\n");
435 printf (" rtx pat = PATTERN (insn);\n");
436 printf (" int i ATTRIBUTE_UNUSED;\n\n");
437 printf (" memset (ro, 0, sizeof (*ro) * MAX_RECOG_OPERANDS);\n");
438 printf (" memset (ro_loc, 0, sizeof (*ro_loc) * MAX_RECOG_OPERANDS);\n");
439 printf (" switch (INSN_CODE (insn))\n");
441 printf (" case -1:\n");
442 printf (" fatal_insn_not_found (insn);\n\n");
444 /* Read the machine description. */
448 c
= read_skip_spaces (infile
);
453 desc
= read_rtx (infile
);
454 if (GET_CODE (desc
) == DEFINE_INSN
)
456 record_insn_name (insn_code_number
, XSTR (desc
, 0));
461 else if (GET_CODE (desc
) == DEFINE_PEEPHOLE
)
463 struct code_ptr
*link
464 = (struct code_ptr
*) xmalloc (sizeof (struct code_ptr
));
466 link
->insn_code
= insn_code_number
;
467 link
->next
= peepholes
;
472 else if (GET_CODE (desc
) == DEFINE_EXPAND
473 || GET_CODE (desc
) == DEFINE_PEEPHOLE2
474 || GET_CODE (desc
) == DEFINE_SPLIT
)
478 /* Write out code to handle peepholes and the insn_codes that it should
482 for (link
= peepholes
; link
; link
= link
->next
)
483 printf (" case %d:\n", link
->insn_code
);
485 /* The vector in the insn says how many operands it has.
486 And all it contains are operands. In fact, the vector was
487 created just for the sake of this function. */
488 printf (" for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)\n");
489 printf (" ro[i] = XVECEXP (pat, 0, i);\n");
490 printf (" break;\n\n");
493 /* Write out all the ways to extract insn operands. */
494 for (p
= extractions
; p
; p
= p
->next
)
496 for (link
= p
->insns
; link
; link
= link
->next
)
499 name
= get_insn_name (i
);
501 printf (" case %d: /* %s */\n", i
, name
);
503 printf (" case %d:\n", i
);
506 for (i
= 0; i
< p
->op_count
; i
++)
508 if (p
->oplocs
[i
] == 0)
510 printf (" ro[%d] = const0_rtx;\n", i
);
511 printf (" ro_loc[%d] = &junk;\n", i
);
515 printf (" ro[%d] = *(ro_loc[%d] = &", i
, i
);
516 print_path (p
->oplocs
[i
]);
521 for (i
= 0; i
< p
->dup_count
; i
++)
523 printf (" recog_data.dup_loc[%d] = &", i
);
524 print_path (p
->duplocs
[i
]);
526 printf (" recog_data.dup_num[%d] = %d;\n", i
, p
->dupnums
[i
]);
529 printf (" break;\n\n");
532 /* This should never be reached. Note that we would also reach this abort
533 if we tried to extract something whose INSN_CODE was a DEFINE_EXPAND or
534 DEFINE_SPLIT, but that is correct. */
535 printf (" default:\n abort ();\n");
540 return (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
543 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
546 int code ATTRIBUTE_UNUSED
;
548 if (code
< insn_name_ptr_size
)
549 return insn_name_ptr
[code
];
555 record_insn_name (code
, name
)
559 static const char *last_real_name
= "insn";
560 static int last_real_code
= 0;
563 if (insn_name_ptr_size
<= code
)
566 new_size
= (insn_name_ptr_size
? insn_name_ptr_size
* 2 : 512);
568 (char **) xrealloc (insn_name_ptr
, sizeof(char *) * new_size
);
569 memset (insn_name_ptr
+ insn_name_ptr_size
, 0,
570 sizeof(char *) * (new_size
- insn_name_ptr_size
));
571 insn_name_ptr_size
= new_size
;
574 if (!name
|| name
[0] == '\0')
576 new = xmalloc (strlen (last_real_name
) + 10);
577 sprintf (new, "%s+%d", last_real_name
, code
- last_real_code
);
581 last_real_name
= new = xstrdup (name
);
582 last_real_code
= code
;
585 insn_name_ptr
[code
] = new;