home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / gencodes.c < prev    next >
C/C++ Source or Header  |  1991-06-03  |  3KB  |  156 lines

  1. /* Generate from machine description:
  2.  
  3.    - some macros CODE_FOR_... giving the insn_code_number value
  4.    for each of the defined standard insn names.
  5.    Copyright (C) 1987 Free Software Foundation, Inc.
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2, or (at your option)
  12. any later version.
  13.  
  14. GNU CC is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with GNU CC; see the file COPYING.  If not, write to
  21. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23.  
  24. #include <stdio.h>
  25. #include "config.h"
  26. #include "rtl.h"
  27. #include "obstack.h"
  28.  
  29. struct obstack obstack;
  30. struct obstack *rtl_obstack = &obstack;
  31.  
  32. #define obstack_chunk_alloc xmalloc
  33. #define obstack_chunk_free free
  34. extern int xmalloc ();
  35. extern void free ();
  36.  
  37. void fatal ();
  38. void fancy_abort ();
  39.  
  40. int insn_code_number;
  41.  
  42. void
  43. gen_insn (insn)
  44.      rtx insn;
  45. {
  46.   /* Don't mention instructions whose names are the null string.
  47.      They are in the machine description just to be recognized.  */
  48.   if (strlen (XSTR (insn, 0)) != 0)
  49.     printf ("  CODE_FOR_%s = %d,\n", XSTR (insn, 0),
  50.         insn_code_number);
  51. }
  52.  
  53. int
  54. xmalloc (size)
  55. {
  56.   register int val = malloc (size);
  57.  
  58.   if (val == 0)
  59.     fatal ("virtual memory exhausted");
  60.   return val;
  61. }
  62.  
  63. int
  64. xrealloc (ptr, size)
  65.      char *ptr;
  66.      int size;
  67. {
  68.   int result = realloc (ptr, size);
  69.   if (!result)
  70.     fatal ("virtual memory exhausted");
  71.   return result;
  72. }
  73.  
  74. void
  75. fatal (s, a1, a2)
  76.      char *s;
  77. {
  78.   fprintf (stderr, "gencodes: ");
  79.   fprintf (stderr, s, a1, a2);
  80.   fprintf (stderr, "\n");
  81.   exit (FATAL_EXIT_CODE);
  82. }
  83.  
  84. /* More 'friendly' abort that prints the line and file.
  85.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  86.  
  87. void
  88. fancy_abort ()
  89. {
  90.   fatal ("Internal gcc abort.");
  91. }
  92.  
  93. int
  94. main (argc, argv)
  95.      int argc;
  96.      char **argv;
  97. {
  98.   rtx desc;
  99.   FILE *infile;
  100.   extern rtx read_rtx ();
  101.   register int c;
  102.  
  103.   obstack_init (rtl_obstack);
  104.  
  105.   if (argc <= 1)
  106.     fatal ("No input file name.");
  107.  
  108.   infile = fopen (argv[1], "r");
  109.   if (infile == 0)
  110.     {
  111.       perror (argv[1]);
  112.       exit (FATAL_EXIT_CODE);
  113.     }
  114.  
  115.   init_rtl ();
  116.  
  117.   printf ("/* Generated automatically by the program `gencodes'\n\
  118. from the machine description file `md'.  */\n\n");
  119.  
  120.   printf ("#ifndef MAX_INSN_CODE\n\n");
  121.  
  122.   /* Read the machine description.  */
  123.  
  124.   insn_code_number = 0;
  125.   printf ("enum insn_code {\n");
  126.  
  127.   while (1)
  128.     {
  129.       c = read_skip_spaces (infile);
  130.       if (c == EOF)
  131.     break;
  132.       ungetc (c, infile);
  133.  
  134.       desc = read_rtx (infile);
  135.       if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
  136.     {
  137.       gen_insn (desc);
  138.       insn_code_number++;
  139.     }
  140.       if (GET_CODE (desc) == DEFINE_PEEPHOLE
  141.       || GET_CODE (desc) == DEFINE_SPLIT)
  142.     {
  143.       insn_code_number++;
  144.     }
  145.     }
  146.  
  147.   printf ("  CODE_FOR_nothing };\n");
  148.  
  149.   printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n");
  150.  
  151.   printf ("#endif /* MAX_INSN_CODE */\n");
  152.  
  153.   fflush (stdout);
  154.   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
  155. }
  156.