Some new x86_64 entries.
[cacao.git] / cacaoh.c
1 /* cacaoh.c - main for header generation (cacaoh)
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28
29    Changes: Mark Probst
30             Philipp Tomsich
31             Christian Thalinger
32
33    $Id: cacaoh.c 1371 2004-08-01 21:55:39Z stefan $
34
35 */
36
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include "types.h"
42 #include "global.h"
43 #include "headers.h"
44 #include "loader.h"
45 #include "tables.h"
46 #include "mm/boehm.h"
47 #include "threads/thread.h"
48 #include "toolbox/logging.h"
49 #include "toolbox/memory.h"
50
51
52 /************************** Function: main *******************************
53
54    Main program.
55    
56 **************************************************************************/
57
58 int main(int argc, char **argv)
59 {
60         s4 i,a;
61         char *cp;
62         classinfo *c;
63                 
64
65         /********** internal (only used by main) *****************************/
66    
67         char classpath[500] = "";
68         u4 heapmaxsize = 2 * 1024 * 1024;
69         u4 heapstartsize = 100 * 1024;
70
71
72         /************ Collect some info from the environment *****************/
73
74         if (argc < 2) {
75                 printf("Usage: cacaoh class [class..]\n");
76                 exit(1);
77         }
78
79         cp = getenv("CLASSPATH");
80         if (cp) {
81                 strcpy(classpath + strlen(classpath), ":");
82                 strcpy(classpath + strlen(classpath), cp);
83         }
84
85
86         /**************************** Program start **************************/
87
88         log_init(NULL);
89         log_text("Java - header-generator started"); 
90         
91         /* initialize the garbage collector */
92         gc_init(heapmaxsize, heapstartsize);
93
94         tables_init();
95
96         suck_init(classpath);
97    
98
99 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
100         initThreadsEarly();
101 #endif
102         initLocks();
103         loader_init();
104
105
106         /*********************** Load JAVA classes  **************************/
107         
108         nativemethod_chain = chain_new();
109         nativeclass_chain = chain_new();
110         
111         for (a = 1; a < argc; a++) {
112                 cp = argv[a];
113
114                 /* convert classname */
115                 for (i = strlen(cp) - 1; i >= 0; i--) {
116                         switch (cp[i]) {
117                         case '.': cp[i]='/';
118                                 break;
119                         case '_': cp[i]='$';    
120                         }
121                 }
122         
123                 c = class_new(utf_new_char(cp));
124
125                 /* exceptions are catched with new_exception call */
126                 class_load(c);
127                 class_link(c);
128
129                 headerfile_generate(c);
130         }
131
132         /************************ Release all resources **********************/
133
134         loader_close();
135         tables_close(literalstring_free);
136
137         /* Print "finished" message */
138
139         log_text("Java - header-generator stopped");
140         log_cputime();
141         mem_usagelog(1);
142         
143         return 0;
144 }
145
146
147 /*
148  * These are local overrides for various environment variables in Emacs.
149  * Please do not remove this and leave it at the end of the file, where
150  * Emacs will automagically detect them.
151  * ---------------------------------------------------------------------
152  * Local variables:
153  * mode: c
154  * indent-tabs-mode: t
155  * c-basic-offset: 4
156  * tab-width: 4
157  * End:
158  */