1 /* Program to generate "main" a Java(TM) class containing a main method.
2 Copyright (C) 1998-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
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 3, or (at your option)
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.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>.
20 Java and all Java-based marks are trademarks or registered trademarks
21 of Sun Microsystems, Inc. in the United States and other countries.
22 The Free Software Foundation is independent of Sun Microsystems, Inc. */
24 /* Written by Per Bothner <bothner@cygnus.com> */
28 #include "coretypes.h"
30 #include "diagnostic.h"
31 #include "java-tree.h"
34 static char * do_mangle_classname (const char *string
);
36 struct obstack name_obstack
;
37 struct obstack
*mangle_obstack
= &name_obstack
;
39 static void usage (const char *) ATTRIBUTE_NORETURN
;
42 usage (const char *name
)
44 fprintf (stderr
, _("Usage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]\n"),
50 main (int argc
, char **argv
)
54 const char *mangled_classname
;
57 char *prog_name
= argv
[0];
59 p
= argv
[0] + strlen (argv
[0]);
60 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
64 xmalloc_set_program_name (progname
);
66 /* Unlock the stdio streams. */
67 unlock_std_streams ();
71 diagnostic_initialize (global_dc
, 0);
73 if (argc
> 1 && ! strcmp (argv
[1], "-findirect-dispatch"))
83 for (i
= 1; i
< argc
; ++i
)
85 if (! strncmp (argv
[i
], "-D", 2))
87 /* Handled later. Check "-D XXX=YYY". */
88 if (argv
[i
][2] == '\0')
95 if (i
< argc
- 2 || i
== argc
)
101 /* gcj always appends `main' to classname. We need to strip this here. */
102 p
= strrchr (classname
, 'm');
103 if (p
== NULL
|| p
== classname
|| strcmp (p
, "main") != 0)
108 gcc_obstack_init (mangle_obstack
);
109 mangled_classname
= do_mangle_classname (classname
);
111 if (i
< argc
- 1 && strcmp (argv
[i
+ 1], "-") != 0)
113 const char *outfile
= argv
[i
+ 1];
114 stream
= fopen (outfile
, "w");
117 fprintf (stderr
, _("%s: Cannot open output file: %s\n"),
125 /* At this point every element of ARGV from 1 to LAST_ARG is a `-D'
126 option. Process them appropriately. */
127 fprintf (stream
, "extern const char **_Jv_Compiler_Properties;\n");
129 fprintf (stream
, "extern void JvRunMainName ();\n");
131 fprintf (stream
, "extern void JvRunMain ();\n");
132 fprintf (stream
, "static const char *props[] =\n{\n");
133 for (i
= 1; i
< last_arg
; ++i
)
137 if (strcmp (argv
[i
], "-D") == 0)
140 fprintf (stream
, " \"");
141 for (p
= argv
[i
]; *p
; ++p
)
144 fprintf (stream
, "\\%o", *p
);
145 else if (*p
== '\\' || *p
== '"')
146 fprintf (stream
, "\\%c", *p
);
150 fprintf (stream
, "\",\n");
152 fprintf (stream
, " 0\n};\n\n");
154 fprintf (stream
, "int main (int argc, const char **argv)\n");
155 fprintf (stream
, "{\n");
156 fprintf (stream
, " _Jv_Compiler_Properties = props;\n");
158 fprintf (stream
, " JvRunMainName (\"%s\", argc, argv);\n", classname
);
161 fprintf (stream
, " extern char %s;\n", mangled_classname
);
162 fprintf (stream
, " JvRunMain (&%s, argc, argv);\n", mangled_classname
);
164 fprintf (stream
, "}\n");
165 if (stream
!= stdout
&& fclose (stream
) != 0)
167 fprintf (stderr
, _("%s: Failed to close output file %s\n"),
176 do_mangle_classname (const char *string
)
181 obstack_grow (&name_obstack
, "_ZN", 3);
183 for (ptr
= string
; *ptr
; ptr
++ )
187 append_gpp_mangled_name (ptr
- count
, count
);
193 append_gpp_mangled_name (&ptr
[-count
], count
);
194 obstack_grow (mangle_obstack
, "6class$E", strlen ("6class$E"));
195 obstack_1grow (mangle_obstack
, '\0');
196 return XOBFINISH (mangle_obstack
, char *);