OSDN Git Service

* Make-lang.in, boehm.c, buffer.c,
[pf3gnuchains/gcc-fork.git] / gcc / java / jvgenmain.c
1 /* Program to generate "main" a Java(TM) class containing a main method.
2    Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC 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 GCC 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 GCC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. 
20
21 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc.  */
24
25 /* Written by Per Bothner <bothner@cygnus.com> */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "obstack.h"
32 #include "jcf.h"
33 #include "tree.h"
34 #include "java-tree.h"
35
36 static char * do_mangle_classname PARAMS ((const char *string));
37
38 struct obstack  name_obstack;
39 struct obstack *mangle_obstack = &name_obstack;
40
41 void
42 gcc_obstack_init (obstack)
43      struct obstack *obstack;
44 {
45   /* Let particular systems override the size of a chunk.  */
46 #ifndef OBSTACK_CHUNK_SIZE
47 #define OBSTACK_CHUNK_SIZE 0
48 #endif
49   /* Let them override the alloc and free routines too.  */
50 #ifndef OBSTACK_CHUNK_ALLOC
51 #define OBSTACK_CHUNK_ALLOC xmalloc
52 #endif
53 #ifndef OBSTACK_CHUNK_FREE
54 #define OBSTACK_CHUNK_FREE free
55 #endif
56   _obstack_begin (obstack, OBSTACK_CHUNK_SIZE, 0,
57                   (void *(*) PARAMS ((long))) OBSTACK_CHUNK_ALLOC,
58                   (void (*) PARAMS ((void *))) OBSTACK_CHUNK_FREE);
59 }
60
61 static void usage (const char *) ATTRIBUTE_NORETURN;
62
63 static void
64 usage (const char *name)
65 {
66   fprintf (stderr, "Usage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]\n", name);
67   exit (1);
68 }
69
70 int
71 main (int argc, char **argv)
72 {
73   char *classname, *p;
74   FILE *stream;
75   const char *mangled_classname;
76   int i, last_arg;
77
78   if (argc < 2)
79     usage (argv[0]);
80
81   for (i = 1; i < argc; ++i)
82     {
83       if (! strncmp (argv[i], "-D", 2))
84         {
85           /* Handled later.  */
86         }
87       else
88         break;
89     }
90
91   if (i < argc - 2 || i == argc)
92     usage (argv[0]);
93   last_arg = i;
94
95   classname = argv[i];
96
97   /* gcj always appends `main' to classname.  We need to strip this here.  */
98   p = strrchr (classname, 'm');
99   if (p == NULL || p == classname || strcmp (p, "main") != 0)
100     usage (argv[0]);
101   else
102     *p = '\0';
103
104   gcc_obstack_init (mangle_obstack);
105   mangled_classname = do_mangle_classname (classname);
106
107   if (i < argc - 1 && strcmp (argv[i + 1], "-") != 0)
108     {
109       const char *outfile = argv[i + 1];
110       stream = fopen (outfile, "w");
111       if (stream == NULL)
112         {
113           fprintf (stderr, "%s: Cannot open output file: %s\n",
114                    argv[0], outfile);
115           exit (1);
116         }
117     }
118   else
119     stream = stdout;
120
121   /* At this point every element of ARGV from 1 to LAST_ARG is a `-D'
122      option.  Process them appropriately.  */
123   fprintf (stream, "extern const char **_Jv_Compiler_Properties;\n");
124   fprintf (stream, "static const char *props[] =\n{\n");
125   for (i = 1; i < last_arg; ++i)
126     {
127       const char *p;
128       fprintf (stream, "  \"");
129       for (p = &argv[i][2]; *p; ++p)
130         {
131           if (! ISPRINT (*p))
132             fprintf (stream, "\\%o", *p);
133           else if (*p == '\\' || *p == '"')
134             fprintf (stream, "\\%c", *p);
135           else
136             putc (*p, stream);
137         }
138       fprintf (stream, "\",\n");
139     }
140   fprintf (stream, "  0\n};\n\n");
141
142   fprintf (stream, "extern int %s;\n", mangled_classname);
143   fprintf (stream, "int main (int argc, const char **argv)\n");
144   fprintf (stream, "{\n");
145   fprintf (stream, "   _Jv_Compiler_Properties = props;\n");
146   fprintf (stream, "   JvRunMain (&%s, argc, argv);\n", mangled_classname);
147   fprintf (stream, "}\n");
148   if (stream != stdout && fclose (stream) != 0)
149     {
150       fprintf (stderr, "%s: Failed to close output file %s\n",
151                argv[0], argv[2]);
152       exit (1);
153     }
154   return 0;
155 }
156
157
158 static char *
159 do_mangle_classname (string)
160      const char *string;
161 {
162   const char *ptr;
163   int count = 0;
164
165   obstack_grow (&name_obstack, "_ZN", 3);
166
167   for (ptr = string; *ptr; ptr++ )
168     {
169       if (ptr[0] == '.')
170         {
171           append_gpp_mangled_name (&ptr [-count], count);
172           count = 0;
173         }
174       else
175         count++;
176     }
177   append_gpp_mangled_name (&ptr [-count], count);
178   obstack_grow (mangle_obstack, "6class$E", 8);
179   obstack_1grow (mangle_obstack, '\0');
180   return obstack_finish (mangle_obstack);
181 }