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

  1. /* Generate from machine description:
  2.  
  3.    - some flags HAVE_... saying which simple standard instructions are
  4.    available for this machine.
  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. void
  41. gen_insn (insn)
  42.      rtx insn;
  43. {
  44.   char *p;
  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.     return;
  50.  
  51.   printf ("#define HAVE_%s ", XSTR (insn, 0));
  52.   if (strlen (XSTR (insn, 2)) == 0)
  53.     printf ("1\n");
  54.   else
  55.     {
  56.       /* Write the macro definition, putting \'s at the end of each line,
  57.      if more than one.  */
  58.       printf ("(");
  59.       for (p = XSTR (insn, 2); *p; p++)
  60.     {
  61.       if (*p == '\n')
  62.         printf (" \\\n");
  63.       else
  64.         printf ("%c", *p);
  65.     }
  66.       printf (")\n");
  67.     }
  68.       
  69.   printf ("extern rtx gen_%s ();\n", XSTR (insn, 0));
  70. }
  71.  
  72. int
  73. xmalloc (size)
  74. {
  75.   register int val = malloc (size);
  76.  
  77.   if (val == 0)
  78.     fatal ("virtual memory exhausted");
  79.  
  80.   return val;
  81. }
  82.  
  83. int
  84. xrealloc (ptr, size)
  85.      char *ptr;
  86.      int size;
  87. {
  88.   int result = realloc (ptr, size);
  89.   if (!result)
  90.     fatal ("virtual memory exhausted");
  91.   return result;
  92. }
  93.  
  94. void
  95. fatal (s, a1, a2)
  96.      char *s;
  97. {
  98.   fprintf (stderr, "genflags: ");
  99.   fprintf (stderr, s, a1, a2);
  100.   fprintf (stderr, "\n");
  101.   exit (FATAL_EXIT_CODE);
  102. }
  103.  
  104. /* More 'friendly' abort that prints the line and file.
  105.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  106.  
  107. void
  108. fancy_abort ()
  109. {
  110.   fatal ("Internal gcc abort.");
  111. }
  112.  
  113. int
  114. main (argc, argv)
  115.      int argc;
  116.      char **argv;
  117. {
  118.   rtx desc;
  119.   FILE *infile;
  120.   extern rtx read_rtx ();
  121.   register int c;
  122.  
  123.   obstack_init (rtl_obstack);
  124.  
  125.   if (argc <= 1)
  126.     fatal ("No input file name.");
  127.  
  128.   infile = fopen (argv[1], "r");
  129.   if (infile == 0)
  130.     {
  131.       perror (argv[1]);
  132.       exit (FATAL_EXIT_CODE);
  133.     }
  134.  
  135.   init_rtl ();
  136.  
  137.   printf ("/* Generated automatically by the program `genflags'\n\
  138. from the machine description file `md'.  */\n\n");
  139.  
  140.   /* Read the machine description.  */
  141.  
  142.   while (1)
  143.     {
  144.       c = read_skip_spaces (infile);
  145.       if (c == EOF)
  146.     break;
  147.       ungetc (c, infile);
  148.  
  149.       desc = read_rtx (infile);
  150.       if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
  151.     gen_insn (desc);
  152.     }
  153.  
  154.   fflush (stdout);
  155.   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
  156. }
  157.