]>
Commit | Line | Data |
---|---|---|
41299f41 | 1 | /* Generate code from machine description to extract operands from insn as rtl. |
efd59a33 | 2 | Copyright (C) 1987, 91-93, 97-98, 1999 Free Software Foundation, Inc. |
41299f41 TW |
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 | |
a35311b0 RK |
18 | the Free Software Foundation, 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. */ | |
41299f41 TW |
20 | |
21 | ||
0d64891c | 22 | #include "hconfig.h" |
0b93b64e | 23 | #include "system.h" |
41299f41 TW |
24 | #include "rtl.h" |
25 | #include "obstack.h" | |
9482d6de | 26 | #include "insn-config.h" |
41299f41 TW |
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 | ||
809ffa71 RK |
34 | /* Names for patterns. Need to allow linking with print-rtl. */ |
35 | char **insn_name_ptr; | |
36 | ||
9482d6de RK |
37 | /* This structure contains all the information needed to describe one |
38 | set of extractions methods. Each method may be used by more than | |
39 | one pattern if the operands are in the same place. | |
40 | ||
41 | The string for each operand describes that path to the operand and | |
42 | contains `0' through `9' when going into an expression and `a' through | |
43 | `z' when going into a vector. We assume here that only the first operand | |
44 | of an rtl expression is a vector. genrecog.c makes the same assumption | |
45 | (and uses the same representation) and it is currently true. */ | |
46 | ||
47 | struct extraction | |
48 | { | |
49 | int op_count; | |
50 | char *oplocs[MAX_RECOG_OPERANDS]; | |
51 | int dup_count; | |
52 | char *duplocs[MAX_DUP_OPERANDS]; | |
53 | int dupnums[MAX_DUP_OPERANDS]; | |
54 | struct code_ptr *insns; | |
55 | struct extraction *next; | |
56 | }; | |
57 | ||
58 | /* Holds a single insn code that use an extraction method. */ | |
59 | ||
60 | struct code_ptr | |
61 | { | |
62 | int insn_code; | |
63 | struct code_ptr *next; | |
64 | }; | |
65 | ||
66 | static struct extraction *extractions; | |
67 | ||
41299f41 TW |
68 | /* Number instruction patterns handled, starting at 0 for first one. */ |
69 | ||
70 | static int insn_code_number; | |
71 | ||
9482d6de RK |
72 | /* Records the large operand number in this insn. */ |
73 | ||
74 | static int op_count; | |
75 | ||
76 | /* Records the location of any operands using the string format described | |
77 | above. */ | |
78 | ||
79 | static char *oplocs[MAX_RECOG_OPERANDS]; | |
80 | ||
41299f41 TW |
81 | /* Number the occurrences of MATCH_DUP in each instruction, |
82 | starting at 0 for the first occurrence. */ | |
83 | ||
84 | static int dup_count; | |
85 | ||
9482d6de | 86 | /* Records the location of any MATCH_DUP operands. */ |
41299f41 | 87 | |
9482d6de | 88 | static char *duplocs[MAX_DUP_OPERANDS]; |
41299f41 | 89 | |
9482d6de | 90 | /* Record the operand number of any MATCH_DUPs. */ |
41299f41 | 91 | |
9482d6de | 92 | static int dupnums[MAX_DUP_OPERANDS]; |
41299f41 | 93 | |
9482d6de | 94 | /* Record the list of insn_codes for peepholes. */ |
41299f41 | 95 | |
9482d6de | 96 | static struct code_ptr *peepholes; |
41299f41 | 97 | |
e009aaf3 | 98 | static void gen_insn PROTO ((rtx)); |
85fda1eb | 99 | static void walk_rtx PROTO ((rtx, const char *)); |
0b93b64e | 100 | static void print_path PROTO ((char *)); |
85fda1eb | 101 | static void fatal PVPROTO ((const char *, ...)) |
bf94d1ec | 102 | ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; |
bf94d1ec | 103 | void fancy_abort PROTO ((void)) ATTRIBUTE_NORETURN; |
41299f41 TW |
104 | \f |
105 | static void | |
106 | gen_insn (insn) | |
107 | rtx insn; | |
108 | { | |
109 | register int i; | |
9482d6de RK |
110 | register struct extraction *p; |
111 | register struct code_ptr *link; | |
41299f41 | 112 | |
9482d6de | 113 | op_count = 0; |
41299f41 TW |
114 | dup_count = 0; |
115 | ||
116 | /* No operands seen so far in this pattern. */ | |
efd59a33 | 117 | memset (oplocs, 0, sizeof oplocs); |
41299f41 TW |
118 | |
119 | /* Walk the insn's pattern, remembering at all times the path | |
120 | down to the walking point. */ | |
121 | ||
122 | if (XVECLEN (insn, 1) == 1) | |
9482d6de | 123 | walk_rtx (XVECEXP (insn, 1, 0), ""); |
41299f41 TW |
124 | else |
125 | for (i = XVECLEN (insn, 1) - 1; i >= 0; i--) | |
126 | { | |
9482d6de | 127 | char *path = (char *) alloca (2); |
41299f41 | 128 | |
9482d6de RK |
129 | path[0] = 'a' + i; |
130 | path[1] = 0; | |
131 | ||
132 | walk_rtx (XVECEXP (insn, 1, i), path); | |
41299f41 | 133 | } |
41299f41 | 134 | |
9482d6de RK |
135 | link = (struct code_ptr *) xmalloc (sizeof (struct code_ptr)); |
136 | link->insn_code = insn_code_number; | |
137 | ||
0f41302f | 138 | /* See if we find something that already had this extraction method. */ |
9482d6de RK |
139 | |
140 | for (p = extractions; p; p = p->next) | |
41299f41 | 141 | { |
9482d6de RK |
142 | if (p->op_count != op_count || p->dup_count != dup_count) |
143 | continue; | |
144 | ||
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]))) | |
149 | break; | |
150 | ||
151 | if (i != op_count) | |
152 | continue; | |
153 | ||
154 | for (i = 0; i < dup_count; i++) | |
155 | if (p->dupnums[i] != dupnums[i] | |
156 | || strcmp (p->duplocs[i], duplocs[i])) | |
157 | break; | |
158 | ||
159 | if (i != dup_count) | |
160 | continue; | |
161 | ||
162 | /* This extraction is the same as ours. Just link us in. */ | |
163 | link->next = p->insns; | |
164 | p->insns = link; | |
165 | return; | |
41299f41 TW |
166 | } |
167 | ||
9482d6de | 168 | /* Otherwise, make a new extraction method. */ |
41299f41 | 169 | |
9482d6de RK |
170 | p = (struct extraction *) xmalloc (sizeof (struct extraction)); |
171 | p->op_count = op_count; | |
172 | p->dup_count = dup_count; | |
173 | p->next = extractions; | |
174 | extractions = p; | |
175 | p->insns = link; | |
176 | link->next = 0; | |
177 | ||
178 | for (i = 0; i < op_count; i++) | |
179 | p->oplocs[i] = oplocs[i]; | |
180 | ||
181 | for (i = 0; i < dup_count; i++) | |
182 | p->dupnums[i] = dupnums[i], p->duplocs[i] = duplocs[i]; | |
183 | } | |
184 | \f | |
41299f41 TW |
185 | static void |
186 | walk_rtx (x, path) | |
187 | rtx x; | |
85fda1eb | 188 | const char *path; |
41299f41 TW |
189 | { |
190 | register RTX_CODE code; | |
191 | register int i; | |
192 | register int len; | |
193 | register char *fmt; | |
9482d6de RK |
194 | int depth = strlen (path); |
195 | char *newpath; | |
41299f41 TW |
196 | |
197 | if (x == 0) | |
198 | return; | |
199 | ||
200 | code = GET_CODE (x); | |
201 | ||
202 | switch (code) | |
203 | { | |
204 | case PC: | |
205 | case CC0: | |
206 | case CONST_INT: | |
207 | case SYMBOL_REF: | |
208 | return; | |
209 | ||
210 | case MATCH_OPERAND: | |
211 | case MATCH_SCRATCH: | |
efd59a33 | 212 | oplocs[XINT (x, 0)] = xstrdup (path); |
9482d6de | 213 | op_count = MAX (op_count, XINT (x, 0) + 1); |
41299f41 TW |
214 | break; |
215 | ||
216 | case MATCH_DUP: | |
f3e0821d | 217 | case MATCH_PAR_DUP: |
efd59a33 | 218 | duplocs[dup_count] = xstrdup (path); |
9482d6de | 219 | dupnums[dup_count] = XINT (x, 0); |
41299f41 TW |
220 | dup_count++; |
221 | break; | |
222 | ||
809ffa71 | 223 | case MATCH_OP_DUP: |
efd59a33 | 224 | duplocs[dup_count] = xstrdup (path); |
809ffa71 RK |
225 | dupnums[dup_count] = XINT (x, 0); |
226 | dup_count++; | |
227 | ||
228 | newpath = (char *) alloca (depth + 2); | |
229 | strcpy (newpath, path); | |
230 | newpath[depth + 1] = 0; | |
231 | ||
232 | for (i = XVECLEN (x, 1) - 1; i >= 0; i--) | |
233 | { | |
234 | newpath[depth] = '0' + i; | |
235 | walk_rtx (XVECEXP (x, 1, i), newpath); | |
236 | } | |
237 | return; | |
238 | ||
41299f41 | 239 | case MATCH_OPERATOR: |
efd59a33 | 240 | oplocs[XINT (x, 0)] = xstrdup (path); |
9482d6de RK |
241 | op_count = MAX (op_count, XINT (x, 0) + 1); |
242 | ||
243 | newpath = (char *) alloca (depth + 2); | |
244 | strcpy (newpath, path); | |
245 | newpath[depth + 1] = 0; | |
246 | ||
41299f41 TW |
247 | for (i = XVECLEN (x, 2) - 1; i >= 0; i--) |
248 | { | |
9482d6de RK |
249 | newpath[depth] = '0' + i; |
250 | walk_rtx (XVECEXP (x, 2, i), newpath); | |
41299f41 TW |
251 | } |
252 | return; | |
253 | ||
254 | case MATCH_PARALLEL: | |
efd59a33 | 255 | oplocs[XINT (x, 0)] = xstrdup (path); |
9482d6de RK |
256 | op_count = MAX (op_count, XINT (x, 0) + 1); |
257 | ||
258 | newpath = (char *) alloca (depth + 2); | |
259 | strcpy (newpath, path); | |
260 | newpath[depth + 1] = 0; | |
261 | ||
41299f41 TW |
262 | for (i = XVECLEN (x, 2) - 1; i >= 0; i--) |
263 | { | |
9482d6de RK |
264 | newpath[depth] = 'a' + i; |
265 | walk_rtx (XVECEXP (x, 2, i), newpath); | |
41299f41 TW |
266 | } |
267 | return; | |
268 | ||
269 | case ADDRESS: | |
270 | walk_rtx (XEXP (x, 0), path); | |
271 | return; | |
ccd043a9 RL |
272 | |
273 | default: | |
274 | break; | |
41299f41 TW |
275 | } |
276 | ||
9482d6de RK |
277 | newpath = (char *) alloca (depth + 2); |
278 | strcpy (newpath, path); | |
279 | newpath[depth + 1] = 0; | |
280 | ||
41299f41 TW |
281 | fmt = GET_RTX_FORMAT (code); |
282 | len = GET_RTX_LENGTH (code); | |
283 | for (i = 0; i < len; i++) | |
284 | { | |
41299f41 TW |
285 | if (fmt[i] == 'e' || fmt[i] == 'u') |
286 | { | |
9482d6de RK |
287 | newpath[depth] = '0' + i; |
288 | walk_rtx (XEXP (x, i), newpath); | |
41299f41 TW |
289 | } |
290 | else if (fmt[i] == 'E') | |
291 | { | |
292 | int j; | |
293 | for (j = XVECLEN (x, i) - 1; j >= 0; j--) | |
294 | { | |
21163e24 | 295 | newpath[depth] = 'a' + j; |
9482d6de | 296 | walk_rtx (XVECEXP (x, i, j), newpath); |
41299f41 TW |
297 | } |
298 | } | |
299 | } | |
300 | } | |
301 | ||
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. */ | |
305 | ||
306 | static void | |
307 | print_path (path) | |
9482d6de | 308 | char *path; |
41299f41 | 309 | { |
9482d6de RK |
310 | register int len = strlen (path); |
311 | register int i; | |
312 | ||
07704a9a RE |
313 | if (len == 0) |
314 | { | |
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)"); | |
318 | return; | |
319 | } | |
320 | ||
9482d6de RK |
321 | /* We first write out the operations (XEXP or XVECEXP) in reverse |
322 | order, then write "insn", then the indices in forward order. */ | |
323 | ||
324 | for (i = len - 1; i >=0 ; i--) | |
41299f41 | 325 | { |
9482d6de RK |
326 | if (path[i] >= 'a' && path[i] <= 'z') |
327 | printf ("XVECEXP ("); | |
328 | else if (path[i] >= '0' && path[i] <= '9') | |
329 | printf ("XEXP ("); | |
330 | else | |
331 | abort (); | |
41299f41 | 332 | } |
9482d6de | 333 | |
cc30cc14 | 334 | printf ("pat"); |
9482d6de RK |
335 | |
336 | for (i = 0; i < len; i++) | |
41299f41 | 337 | { |
9482d6de RK |
338 | if (path[i] >= 'a' && path[i] <= 'z') |
339 | printf (", 0, %d)", path[i] - 'a'); | |
340 | else if (path[i] >= '0' && path[i] <= '9') | |
341 | printf (", %d)", path[i] - '0'); | |
342 | else | |
343 | abort (); | |
41299f41 TW |
344 | } |
345 | } | |
346 | \f | |
2778b98d | 347 | PTR |
41299f41 | 348 | xmalloc (size) |
2778b98d | 349 | size_t size; |
41299f41 | 350 | { |
2778b98d | 351 | register PTR val = (PTR) malloc (size); |
41299f41 TW |
352 | |
353 | if (val == 0) | |
354 | fatal ("virtual memory exhausted"); | |
355 | return val; | |
356 | } | |
357 | ||
2778b98d | 358 | PTR |
470b68c0 RH |
359 | xrealloc (old, size) |
360 | PTR old; | |
2778b98d | 361 | size_t size; |
41299f41 | 362 | { |
470b68c0 | 363 | register PTR ptr; |
09d83d25 | 364 | if (old) |
470b68c0 RH |
365 | ptr = (PTR) realloc (old, size); |
366 | else | |
367 | ptr = (PTR) malloc (size); | |
368 | if (!ptr) | |
41299f41 | 369 | fatal ("virtual memory exhausted"); |
470b68c0 | 370 | return ptr; |
41299f41 TW |
371 | } |
372 | ||
373 | static void | |
85fda1eb | 374 | fatal VPROTO ((const char *format, ...)) |
41299f41 | 375 | { |
5148a72b | 376 | #ifndef ANSI_PROTOTYPES |
85fda1eb | 377 | const char *format; |
320e7c40 KG |
378 | #endif |
379 | va_list ap; | |
380 | ||
381 | VA_START (ap, format); | |
382 | ||
5148a72b | 383 | #ifndef ANSI_PROTOTYPES |
85fda1eb | 384 | format = va_arg (ap, const char *); |
320e7c40 KG |
385 | #endif |
386 | ||
41299f41 | 387 | fprintf (stderr, "genextract: "); |
320e7c40 KG |
388 | vfprintf (stderr, format, ap); |
389 | va_end (ap); | |
41299f41 TW |
390 | fprintf (stderr, "\n"); |
391 | exit (FATAL_EXIT_CODE); | |
392 | } | |
393 | ||
394 | /* More 'friendly' abort that prints the line and file. | |
395 | config.h can #define abort fancy_abort if you like that sort of thing. */ | |
396 | ||
397 | void | |
398 | fancy_abort () | |
399 | { | |
400 | fatal ("Internal gcc abort."); | |
401 | } | |
8433ffc5 | 402 | |
efd59a33 | 403 | char * |
31ee9d6c | 404 | xstrdup (input) |
efd59a33 | 405 | const char *input; |
9482d6de | 406 | { |
efd59a33 KG |
407 | register size_t len = strlen (input) + 1; |
408 | register char *output = xmalloc (len); | |
409 | memcpy (output, input, len); | |
410 | return output; | |
8433ffc5 | 411 | } |
41299f41 TW |
412 | \f |
413 | int | |
414 | main (argc, argv) | |
415 | int argc; | |
416 | char **argv; | |
417 | { | |
418 | rtx desc; | |
419 | FILE *infile; | |
41299f41 | 420 | register int c, i; |
9482d6de RK |
421 | struct extraction *p; |
422 | struct code_ptr *link; | |
41299f41 TW |
423 | |
424 | obstack_init (rtl_obstack); | |
425 | ||
426 | if (argc <= 1) | |
427 | fatal ("No input file name."); | |
428 | ||
429 | infile = fopen (argv[1], "r"); | |
430 | if (infile == 0) | |
431 | { | |
432 | perror (argv[1]); | |
433 | exit (FATAL_EXIT_CODE); | |
434 | } | |
435 | ||
436 | init_rtl (); | |
437 | ||
438 | /* Assign sequential codes to all entries in the machine description | |
439 | in parallel with the tables in insn-output.c. */ | |
440 | ||
441 | insn_code_number = 0; | |
442 | ||
41299f41 TW |
443 | printf ("/* Generated automatically by the program `genextract'\n\ |
444 | from the machine description file `md'. */\n\n"); | |
445 | ||
446 | printf ("#include \"config.h\"\n"); | |
729da3f5 | 447 | printf ("#include \"system.h\"\n"); |
114791ea | 448 | printf ("#include \"rtl.h\"\n"); |
0a578fee BS |
449 | printf ("#include \"insn-config.h\"\n"); |
450 | printf ("#include \"recog.h\"\n"); | |
114791ea | 451 | printf ("#include \"toplev.h\"\n\n"); |
41299f41 TW |
452 | |
453 | /* This variable exists only so it can be the "location" | |
454 | of any missing operand whose numbers are skipped by a given pattern. */ | |
d6f4ec51 | 455 | printf ("static rtx junk ATTRIBUTE_UNUSED;\n"); |
9482d6de | 456 | |
41299f41 TW |
457 | printf ("void\ninsn_extract (insn)\n"); |
458 | printf (" rtx insn;\n"); | |
459 | printf ("{\n"); | |
af929c62 RK |
460 | printf (" register rtx *ro = recog_operand;\n"); |
461 | printf (" register rtx **ro_loc = recog_operand_loc;\n"); | |
cc30cc14 | 462 | printf (" rtx pat = PATTERN (insn);\n"); |
296433e1 | 463 | printf (" int i ATTRIBUTE_UNUSED;\n\n"); |
cc30cc14 | 464 | printf (" switch (INSN_CODE (insn))\n"); |
41299f41 | 465 | printf (" {\n"); |
9482d6de RK |
466 | printf (" case -1:\n"); |
467 | printf (" fatal_insn_not_found (insn);\n\n"); | |
41299f41 TW |
468 | |
469 | /* Read the machine description. */ | |
470 | ||
471 | while (1) | |
472 | { | |
473 | c = read_skip_spaces (infile); | |
474 | if (c == EOF) | |
475 | break; | |
476 | ungetc (c, infile); | |
477 | ||
478 | desc = read_rtx (infile); | |
479 | if (GET_CODE (desc) == DEFINE_INSN) | |
480 | { | |
481 | gen_insn (desc); | |
482 | ++insn_code_number; | |
483 | } | |
9482d6de RK |
484 | |
485 | else if (GET_CODE (desc) == DEFINE_PEEPHOLE) | |
41299f41 | 486 | { |
9482d6de RK |
487 | struct code_ptr *link |
488 | = (struct code_ptr *) xmalloc (sizeof (struct code_ptr)); | |
489 | ||
490 | link->insn_code = insn_code_number; | |
491 | link->next = peepholes; | |
492 | peepholes = link; | |
41299f41 TW |
493 | ++insn_code_number; |
494 | } | |
41299f41 | 495 | |
9482d6de RK |
496 | else if (GET_CODE (desc) == DEFINE_EXPAND |
497 | || GET_CODE (desc) == DEFINE_SPLIT) | |
498 | ++insn_code_number; | |
499 | } | |
41299f41 | 500 | |
9482d6de RK |
501 | /* Write out code to handle peepholes and the insn_codes that it should |
502 | be called for. */ | |
503 | if (peepholes) | |
41299f41 | 504 | { |
9482d6de RK |
505 | for (link = peepholes; link; link = link->next) |
506 | printf (" case %d:\n", link->insn_code); | |
507 | ||
41299f41 TW |
508 | /* The vector in the insn says how many operands it has. |
509 | And all it contains are operands. In fact, the vector was | |
510 | created just for the sake of this function. */ | |
b7673cdb | 511 | printf (" for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)\n"); |
cc38a1c3 | 512 | printf (" ro[i] = XVECEXP (pat, 0, i);\n"); |
9482d6de RK |
513 | printf (" break;\n\n"); |
514 | } | |
515 | ||
516 | /* Write out all the ways to extract insn operands. */ | |
517 | for (p = extractions; p; p = p->next) | |
518 | { | |
519 | for (link = p->insns; link; link = link->next) | |
520 | printf (" case %d:\n", link->insn_code); | |
521 | ||
522 | for (i = 0; i < p->op_count; i++) | |
523 | { | |
524 | if (p->oplocs[i] == 0) | |
525 | { | |
526 | printf (" ro[%d] = const0_rtx;\n", i); | |
8b5ba7f8 | 527 | printf (" ro_loc[%d] = &junk;\n", i); |
9482d6de RK |
528 | } |
529 | else | |
530 | { | |
531 | printf (" ro[%d] = *(ro_loc[%d] = &", i, i); | |
532 | print_path (p->oplocs[i]); | |
533 | printf (");\n"); | |
534 | } | |
535 | } | |
536 | ||
537 | for (i = 0; i < p->dup_count; i++) | |
538 | { | |
539 | printf (" recog_dup_loc[%d] = &", i); | |
540 | print_path (p->duplocs[i]); | |
541 | printf (";\n"); | |
542 | printf (" recog_dup_num[%d] = %d;\n", i, p->dupnums[i]); | |
543 | } | |
544 | ||
545 | printf (" break;\n\n"); | |
41299f41 TW |
546 | } |
547 | ||
9482d6de RK |
548 | /* This should never be reached. Note that we would also reach this abort |
549 | if we tried to extract something whose INSN_CODE was a DEFINE_EXPAND or | |
550 | DEFINE_SPLIT, but that is correct. */ | |
551 | printf (" default:\n abort ();\n"); | |
552 | ||
41299f41 TW |
553 | printf (" }\n}\n"); |
554 | ||
555 | fflush (stdout); | |
556 | exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); | |
557 | /* NOTREACHED */ | |
558 | return 0; | |
559 | } |