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 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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
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. */
44 char *oplocs
[MAX_RECOG_OPERANDS
];
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. */
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. */
74 /* Records the location of any operands using the string format described
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. */
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 *));
106 struct extraction
*p
;
107 struct code_ptr
*link
;
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), "");
121 for (i
= XVECLEN (insn
, 1) - 1; i
>= 0; i
--)
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
)
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
])))
150 for (i
= 0; i
< dup_count
; i
++)
151 if (p
->dupnums
[i
] != dupnums
[i
]
152 || strcmp (p
->duplocs
[i
], duplocs
[i
]))
158 /* This extraction is the same as ours. Just link us in. */
159 link
->next
= p
->insns
;
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
;
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
];
190 int depth
= strlen (path
);
208 oplocs
[XINT (x
, 0)] = xstrdup (path
);
209 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
214 duplocs
[dup_count
] = xstrdup (path
);
215 dupnums
[dup_count
] = XINT (x
, 0);
220 duplocs
[dup_count
] = xstrdup (path
);
221 dupnums
[dup_count
] = XINT (x
, 0);
224 newpath
= (char *) xmalloc (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
);
237 oplocs
[XINT (x
, 0)] = xstrdup (path
);
238 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
240 newpath
= (char *) xmalloc (depth
+ 2);
241 strcpy (newpath
, path
);
242 newpath
[depth
+ 1] = 0;
244 for (i
= XVECLEN (x
, 2) - 1; i
>= 0; i
--)
246 newpath
[depth
] = '0' + i
;
247 walk_rtx (XVECEXP (x
, 2, i
), newpath
);
253 oplocs
[XINT (x
, 0)] = xstrdup (path
);
254 op_count
= MAX (op_count
, XINT (x
, 0) + 1);
256 newpath
= (char *) xmalloc (depth
+ 2);
257 strcpy (newpath
, path
);
258 newpath
[depth
+ 1] = 0;
260 for (i
= XVECLEN (x
, 2) - 1; i
>= 0; i
--)
262 newpath
[depth
] = 'a' + i
;
263 walk_rtx (XVECEXP (x
, 2, i
), newpath
);
269 walk_rtx (XEXP (x
, 0), path
);
276 newpath
= (char *) xmalloc (depth
+ 2);
277 strcpy (newpath
, path
);
278 newpath
[depth
+ 1] = 0;
280 fmt
= GET_RTX_FORMAT (code
);
281 len
= GET_RTX_LENGTH (code
);
282 for (i
= 0; i
< len
; i
++)
284 if (fmt
[i
] == 'e' || fmt
[i
] == 'u')
286 newpath
[depth
] = '0' + i
;
287 walk_rtx (XEXP (x
, i
), newpath
);
289 else if (fmt
[i
] == 'E')
292 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
294 newpath
[depth
] = 'a' + j
;
295 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 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');
347 extern int main
PARAMS ((int, char **));
356 struct extraction
*p
;
357 struct code_ptr
*link
;
360 progname
= "genextract";
363 fatal ("no input file name");
365 if (init_md_reader_args (argc
, argv
) != SUCCESS_EXIT_CODE
)
366 return (FATAL_EXIT_CODE
);
368 /* Assign sequential codes to all entries in the machine description
369 in parallel with the tables in insn-output.c. */
371 insn_code_number
= 0;
373 printf ("/* Generated automatically by the program `genextract'\n\
374 from the machine description file `md'. */\n\n");
376 printf ("#include \"config.h\"\n");
377 printf ("#include \"system.h\"\n");
378 printf ("#include \"rtl.h\"\n");
379 printf ("#include \"insn-config.h\"\n");
380 printf ("#include \"recog.h\"\n");
381 printf ("#include \"toplev.h\"\n\n");
383 /* This variable exists only so it can be the "location"
384 of any missing operand whose numbers are skipped by a given pattern. */
385 printf ("static rtx junk ATTRIBUTE_UNUSED;\n");
387 printf ("void\ninsn_extract (insn)\n");
388 printf (" rtx insn;\n");
390 printf (" rtx *ro = recog_data.operand;\n");
391 printf (" rtx **ro_loc = recog_data.operand_loc;\n");
392 printf (" rtx pat = PATTERN (insn);\n");
393 printf (" int i ATTRIBUTE_UNUSED;\n\n");
394 printf (" memset (ro, 0, sizeof (*ro) * MAX_RECOG_OPERANDS);\n");
395 printf (" memset (ro_loc, 0, sizeof (*ro_loc) * MAX_RECOG_OPERANDS);\n");
396 printf (" switch (INSN_CODE (insn))\n");
398 printf (" case -1:\n");
399 printf (" fatal_insn_not_found (insn);\n\n");
401 /* Read the machine description. */
407 desc
= read_md_rtx (&line_no
, &insn_code_number
);
411 if (GET_CODE (desc
) == DEFINE_INSN
)
413 record_insn_name (insn_code_number
, XSTR (desc
, 0));
417 else if (GET_CODE (desc
) == DEFINE_PEEPHOLE
)
419 struct code_ptr
*link
420 = (struct code_ptr
*) xmalloc (sizeof (struct code_ptr
));
422 link
->insn_code
= insn_code_number
;
423 link
->next
= peepholes
;
428 /* Write out code to handle peepholes and the insn_codes that it should
432 for (link
= peepholes
; link
; link
= link
->next
)
433 printf (" case %d:\n", link
->insn_code
);
435 /* The vector in the insn says how many operands it has.
436 And all it contains are operands. In fact, the vector was
437 created just for the sake of this function. We need to set the
438 location of the operands for sake of simplifications after
439 extraction, like eliminating subregs. */
440 printf (" for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)\n");
441 printf (" ro[i] = *(ro_loc[i] = &XVECEXP (pat, 0, i));\n");
442 printf (" break;\n\n");
445 /* Write out all the ways to extract insn operands. */
446 for (p
= extractions
; p
; p
= p
->next
)
448 for (link
= p
->insns
; link
; link
= link
->next
)
451 name
= get_insn_name (i
);
453 printf (" case %d: /* %s */\n", i
, name
);
455 printf (" case %d:\n", i
);
458 for (i
= 0; i
< p
->op_count
; i
++)
460 if (p
->oplocs
[i
] == 0)
462 printf (" ro[%d] = const0_rtx;\n", i
);
463 printf (" ro_loc[%d] = &junk;\n", i
);
467 printf (" ro[%d] = *(ro_loc[%d] = &", i
, i
);
468 print_path (p
->oplocs
[i
]);
473 for (i
= 0; i
< p
->dup_count
; i
++)
475 printf (" recog_data.dup_loc[%d] = &", i
);
476 print_path (p
->duplocs
[i
]);
478 printf (" recog_data.dup_num[%d] = %d;\n", i
, p
->dupnums
[i
]);
481 printf (" break;\n\n");
484 /* This should never be reached. Note that we would also reach this abort
485 if we tried to extract something whose INSN_CODE was a DEFINE_EXPAND or
486 DEFINE_SPLIT, but that is correct. */
487 printf (" default:\n abort ();\n");
492 return (ferror (stdout
) != 0 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
495 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
498 int code ATTRIBUTE_UNUSED
;
500 if (code
< insn_name_ptr_size
)
501 return insn_name_ptr
[code
];
507 record_insn_name (code
, name
)
511 static const char *last_real_name
= "insn";
512 static int last_real_code
= 0;
515 if (insn_name_ptr_size
<= code
)
518 new_size
= (insn_name_ptr_size
? insn_name_ptr_size
* 2 : 512);
520 (char **) xrealloc (insn_name_ptr
, sizeof(char *) * new_size
);
521 memset (insn_name_ptr
+ insn_name_ptr_size
, 0,
522 sizeof(char *) * (new_size
- insn_name_ptr_size
));
523 insn_name_ptr_size
= new_size
;
526 if (!name
|| name
[0] == '\0')
528 new = xmalloc (strlen (last_real_name
) + 10);
529 sprintf (new, "%s+%d", last_real_name
, code
- last_real_code
);
533 last_real_name
= new = xstrdup (name
);
534 last_real_code
= code
;
537 insn_name_ptr
[code
] = new;