OSDN Git Service

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