2007-09-06 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 6 Sep 2007 22:08:08 +0000 (22:08 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 6 Sep 2007 22:08:08 +0000 (22:08 +0000)
* i386-gen.c (table): Moved ...
(main): Here.  Call process_copyright to output copyright.
(process_copyright): New.
(process_i386_opcodes): Take FILE *table.
(process_i386_registers): Likewise.

opcodes/ChangeLog
opcodes/i386-gen.c

index c1cc6ce17b9cc1633cc95dca5e654fde837843d4..3d65be5587f3e09ba9e9b2fab19c818467b3dca5 100644 (file)
@@ -1,3 +1,11 @@
+2007-09-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * i386-gen.c (table): Moved ...
+       (main): Here.  Call process_copyright to output copyright.
+       (process_copyright): New.
+       (process_i386_opcodes): Take FILE *table.
+       (process_i386_registers): Likewise.
+
 2007-09-06  H.J. Lu  <hongjiu.lu@intel.com>
 
        * i386-gen.c (table): New.
index 2be26f1de8e9ccada9d8175bb5c4ed6d3dfa9caf..c610a75702407e1dde0cb8f664e82db0bb41775a 100644 (file)
@@ -33,9 +33,6 @@
 static const char *program_name = NULL;
 static int debug = 0;
 
-/* File of i386 opcode and register tables.  */
-static FILE *table;
-
 static void
 fail (const char *message, ...)
 {
@@ -48,6 +45,30 @@ fail (const char *message, ...)
   xexit (1);
 }
 
+static void
+process_copyright (FILE *fp)
+{
+  fprintf (fp, "/* This file is automatically generated by i386-gen.  Do not edit!  */\n\
+/* Copyright 2007  Free Software Foundation, Inc.\n\
+\n\
+   This file is part of the GNU opcodes library.\n\
+\n\
+   This library is free software; you can redistribute it and/or modify\n\
+   it under the terms of the GNU General Public License as published by\n\
+   the Free Software Foundation; either version 3, or (at your option)\n\
+   any later version.\n\
+\n\
+   It is distributed in the hope that it will be useful, but WITHOUT\n\
+   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
+   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public\n\
+   License for more details.\n\
+\n\
+   You should have received a copy of the GNU General Public License\n\
+   along with this program; if not, write to the Free Software\n\
+   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,\n\
+   MA 02110-1301, USA.  */\n");
+}
+
 /* Remove leading white spaces.  */
 
 static char *
@@ -99,7 +120,7 @@ next_field (char *str, char **next)
 }
 
 static void
-process_i386_opcodes (void)
+process_i386_opcodes (FILE *table)
 {
   FILE *fp = fopen ("i386-opc.tbl", "r");
   char buf[2048];
@@ -255,7 +276,7 @@ process_i386_opcodes (void)
 }
 
 static void
-process_i386_registers (void)
+process_i386_registers (FILE *table)
 {
   FILE *fp = fopen ("i386-reg.tbl", "r");
   char buf[2048];
@@ -362,6 +383,7 @@ main (int argc, char **argv)
   extern int chdir (char *);
   char *srcdir = NULL;
   int c;
+  FILE *table;
   
   program_name = *argv;
   xmalloc_set_program_name (program_name);
@@ -399,28 +421,10 @@ main (int argc, char **argv)
   if (table == NULL)
     fail (_("can't create i386-tbl.h, errno = %s\n"), strerror (errno));
 
-  fprintf (table, "/* This file is automatically generated by i386-gen.  Do not edit!  */\n\
-/* Copyright 2007  Free Software Foundation, Inc.\n\
-\n\
-   This file is part of the GNU opcodes library.\n\
-\n\
-   This library is free software; you can redistribute it and/or modify\n\
-   it under the terms of the GNU General Public License as published by\n\
-   the Free Software Foundation; either version 3, or (at your option)\n\
-   any later version.\n\
-\n\
-   It is distributed in the hope that it will be useful, but WITHOUT\n\
-   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
-   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public\n\
-   License for more details.\n\
-\n\
-   You should have received a copy of the GNU General Public License\n\
-   along with this program; if not, write to the Free Software\n\
-   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,\n\
-   MA 02110-1301, USA.  */\n");
+  process_copyright (table);
 
-  process_i386_opcodes ();
-  process_i386_registers ();
+  process_i386_opcodes (table);
+  process_i386_registers (table);
 
   fclose (table);
 
This page took 0.041536 seconds and 4 git commands to generate.