OSDN Git Service

* Makefile.in (ggc-common.o): Update.
[pf3gnuchains/gcc-fork.git] / gcc / java / lang.c
1 /* Java(TM) language-specific utility routines.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
3    Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC 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 GNU CC 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 GNU CC; 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 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
27
28 #include "config.h"
29 #include "system.h"
30 #include "tree.h"
31 #include "input.h"
32 #include "rtl.h"
33 #include "expr.h"
34 #include "java-tree.h"
35 #include "jcf.h"
36 #include "toplev.h"
37 #include "langhooks.h"
38 #include "langhooks-def.h"
39 #include "flags.h"
40 #include "xref.h"
41 #include "ggc.h"
42 #include "diagnostic.h"
43
44 struct string_option
45 {
46   const char *const string;
47   int *const variable;
48   const int on_value;
49 };
50
51 static const char *java_init PARAMS ((const char *));
52 static void java_finish PARAMS ((void));
53 static void java_init_options PARAMS ((void));
54 static int java_decode_option PARAMS ((int, char **));
55 static void put_decl_string PARAMS ((const char *, int));
56 static void put_decl_node PARAMS ((tree));
57 static void java_dummy_print PARAMS ((diagnostic_context *, const char *));
58 static void lang_print_error PARAMS ((diagnostic_context *, const char *));
59 static int process_option_with_no PARAMS ((const char *,
60                                            const struct string_option *,
61                                            int));
62
63 #ifndef TARGET_OBJECT_SUFFIX
64 # define TARGET_OBJECT_SUFFIX ".o"
65 #endif
66
67 /* Table indexed by tree code giving a string containing a character
68    classifying the tree code.  Possibilities are
69    t, d, s, c, r, <, 1 and 2.  See java/java-tree.def for details.  */
70
71 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
72
73 const char tree_code_type[] = {
74 #include "tree.def"
75   'x',
76 #include "java-tree.def"
77 };
78 #undef DEFTREECODE
79
80 /* Table indexed by tree code giving number of expression
81    operands beyond the fixed part of the node structure.
82    Not used for types or decls.  */
83
84 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
85
86 const unsigned char tree_code_length[] = {
87 #include "tree.def"
88   0,
89 #include "java-tree.def"
90 };
91 #undef DEFTREECODE
92
93 /* Names of tree components.
94    Used for printing out the tree and error messages.  */
95 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
96
97 const char *const tree_code_name[] = {
98 #include "tree.def"
99   "@@dummy",
100 #include "java-tree.def"
101 };
102 #undef DEFTREECODE
103
104 int compiling_from_source;
105
106 char * resource_name;
107
108 int flag_emit_class_files = 0;
109
110 /* Nonzero if input file is a file with a list of filenames to compile. */
111
112 int flag_filelist_file = 0;
113
114 /* When non zero, we emit xref strings. Values of the flag for xref
115    backends are defined in xref_flag_table, xref.c.  */
116
117 int flag_emit_xref = 0;
118
119 /* When non zero, -Wall was turned on.  */
120 int flag_wall = 0;
121
122 /* When non zero, check for redundant modifier uses.  */
123 int flag_redundant = 0;
124
125 /* When non zero, call a library routine to do integer divisions. */
126 int flag_use_divide_subroutine = 1;
127
128 /* When non zero, generate code for the Boehm GC.  */
129 int flag_use_boehm_gc = 0;
130
131 /* When non zero, assume the runtime uses a hash table to map an
132    object to its synchronization structure.  */
133 int flag_hash_synchronization;
134
135 /* When non zero, assume all native functions are implemented with
136    JNI, not CNI.  */
137 int flag_jni = 0;
138
139 /* When non zero, warn when source file is newer than matching class
140    file.  */
141 int flag_newer = 1;
142
143 /* When non zero, generate checks for references to NULL.  */
144 int flag_check_references = 0;
145
146 /* The encoding of the source file.  */
147 const char *current_encoding = NULL;
148
149 /* When non zero, report the now deprecated empty statements.  */
150 int flag_extraneous_semicolon;
151
152 /* When non zero, always check for a non gcj generated classes archive.  */
153 int flag_force_classes_archive_check;
154
155 /* When zero, don't optimize static class initialization. This flag shouldn't
156    be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead.  */
157 int flag_optimize_sci = 1;
158
159 /* When non zero, use offset tables for virtual method calls
160    in order to improve binary compatibility. */
161 int flag_indirect_dispatch = 0;
162
163 /* When zero, don't generate runtime array store checks. */
164 int flag_store_check = 1;
165
166 /* When non zero, print extra version information.  */
167 static int version_flag = 0;
168
169 /* Table of language-dependent -f options.
170    STRING is the option name.  VARIABLE is the address of the variable.
171    ON_VALUE is the value to store in VARIABLE
172     if `-fSTRING' is seen as an option.
173    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
174
175 static const struct string_option
176 lang_f_options[] =
177 {
178   {"emit-class-file", &flag_emit_class_files, 1},
179   {"emit-class-files", &flag_emit_class_files, 1},
180   {"filelist-file", &flag_filelist_file, 1},
181   {"use-divide-subroutine", &flag_use_divide_subroutine, 1},
182   {"use-boehm-gc", &flag_use_boehm_gc, 1},
183   {"hash-synchronization", &flag_hash_synchronization, 1},
184   {"jni", &flag_jni, 1},
185   {"check-references", &flag_check_references, 1},
186   {"force-classes-archive-check", &flag_force_classes_archive_check, 1},
187   {"optimize-static-class-initialization", &flag_optimize_sci, 1 },
188   {"indirect-dispatch", &flag_indirect_dispatch, 1},
189   {"store-check", &flag_store_check, 1}
190 };
191
192 static const struct string_option
193 lang_W_options[] =
194 {
195   { "redundant-modifiers", &flag_redundant, 1 },
196   { "extraneous-semicolon", &flag_extraneous_semicolon, 1 },
197   { "out-of-date", &flag_newer, 1 }
198 };
199
200 JCF *current_jcf;
201
202 /* Variable controlling how dependency tracking is enabled in
203    java_init.  */
204 static int dependency_tracking = 0;
205
206 /* Flag values for DEPENDENCY_TRACKING.  */
207 #define DEPEND_SET_FILE 1
208 #define DEPEND_ENABLE   2
209 #define DEPEND_TARGET_SET 4
210 #define DEPEND_FILE_ALREADY_SET 8
211
212 #undef LANG_HOOKS_NAME
213 #define LANG_HOOKS_NAME "GNU Java"
214 #undef LANG_HOOKS_INIT
215 #define LANG_HOOKS_INIT java_init
216 #undef LANG_HOOKS_FINISH
217 #define LANG_HOOKS_FINISH java_finish
218 #undef LANG_HOOKS_INIT_OPTIONS
219 #define LANG_HOOKS_INIT_OPTIONS java_init_options
220 #undef LANG_HOOKS_DECODE_OPTION
221 #define LANG_HOOKS_DECODE_OPTION java_decode_option
222 #undef LANG_HOOKS_SET_YYDEBUG
223 #define LANG_HOOKS_SET_YYDEBUG java_set_yydebug
224 #undef LANG_HOOKS_PARSE_FILE
225 #define LANG_HOOKS_PARSE_FILE java_parse_file
226 #undef LANG_HOOKS_MARK_TREE
227 #define LANG_HOOKS_MARK_TREE java_mark_tree
228 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
229 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
230 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
231 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
232
233 /* Each front end provides its own.  */
234 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
235
236 /* Process an option that can accept a `no-' form.
237    Return 1 if option found, 0 otherwise.  */
238 static int
239 process_option_with_no (p, table, table_size)
240      const char *p;
241      const struct string_option *table;
242      int table_size;
243 {
244   int j;
245
246   for (j = 0; j < table_size; j++)
247     {
248       if (!strcmp (p, table[j].string))
249         {
250           *table[j].variable = table[j].on_value;
251           return 1;
252         }
253       if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
254           && ! strcmp (p+3, table[j].string))
255         {
256           *table[j].variable = ! table[j].on_value;
257           return 1;
258         }
259     }
260
261   return 0;
262 }
263
264 /*
265  * process java-specific compiler command-line options
266  * return 0, but do not complain if the option is not recognised.
267  */
268 static int
269 java_decode_option (argc, argv)
270      int argc __attribute__ ((__unused__));
271      char **argv;
272 {
273   char *p = argv[0];
274
275   jcf_path_init ();
276
277   if (strcmp (p, "-version") == 0)
278     {
279       version_flag = 1;
280       /* We return 0 so that the caller can process this.  */
281       return 0;
282     }
283
284 #define CLARG "-fcompile-resource="
285   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
286     {
287       resource_name = p + sizeof (CLARG) - 1;
288       return 1;
289     }
290 #undef CLARG
291 #define CLARG "-fassume-compiled="
292   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
293     {
294       add_assume_compiled (p + sizeof (CLARG) - 1, 0);
295       return 1;
296     }
297 #undef CLARG
298 #define CLARG "-fno-assume-compiled="
299   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
300     {
301       add_assume_compiled (p + sizeof (CLARG) - 1, 1);
302       return 1;
303     }
304 #undef CLARG
305 #define CLARG "-fassume-compiled"
306   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
307     {
308       add_assume_compiled ("", 0);
309       return 1;
310     }
311 #undef CLARG
312 #define CLARG "-fno-assume-compiled"
313   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
314     {
315       add_assume_compiled ("", 1);
316       return 1;
317     }
318 #undef CLARG
319 #define CLARG "-fCLASSPATH="
320   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
321     {
322       jcf_path_classpath_arg (p + sizeof (CLARG) - 1);
323       return 1;
324     }
325 #undef CLARG
326 #define CLARG "-fclasspath="
327   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
328     {
329       jcf_path_classpath_arg (p + sizeof (CLARG) - 1);
330       return 1;
331     }
332 #undef CLARG
333 #define CLARG "-fbootclasspath="
334   if (strncmp (p, CLARG, sizeof (CLARG) - 1) == 0)
335     {
336       jcf_path_bootclasspath_arg (p + sizeof (CLARG) - 1);
337       return 1;
338     }
339 #undef CLARG
340   else if (strncmp (p, "-I", 2) == 0)
341     {
342       jcf_path_include_arg (p + 2);
343       return 1;
344     }
345
346 #define ARG "-foutput-class-dir="
347   if (strncmp (p, ARG, sizeof (ARG) - 1) == 0)
348     {
349       jcf_write_base_directory = p + sizeof (ARG) - 1;
350       return 1;
351     }
352 #undef ARG
353 #define ARG "-fencoding="
354   if (strncmp (p, ARG, sizeof (ARG) - 1) == 0)
355     {
356       current_encoding = p + sizeof (ARG) - 1;
357       return 1;
358     }
359 #undef ARG
360
361   if (p[0] == '-' && p[1] == 'f')
362     {
363       /* Some kind of -f option.
364          P's value is the option sans `-f'.
365          Search for it in the table of options.  */
366       p += 2;
367       if (process_option_with_no (p, lang_f_options,
368                                   ARRAY_SIZE (lang_f_options)))
369         return 1;
370       return dump_switch_p (p);
371     }
372
373   if (strcmp (p, "-Wall") == 0)
374     {
375       flag_wall = 1;
376       flag_redundant = 1;
377       flag_extraneous_semicolon = 1;
378       /* When -Wall given, enable -Wunused.  We do this because the C
379          compiler does it, and people expect it.  */
380       set_Wunused (1);
381       return 1;
382     }
383
384   if (p[0] == '-' && p[1] == 'W')
385     {
386       /* Skip `-W' and see if we accept the option or its `no-' form.  */
387       p += 2;
388       return process_option_with_no (p, lang_W_options,
389                                      ARRAY_SIZE (lang_W_options));
390     }
391
392   if (strcmp (p, "-MD") == 0)
393     {
394       jcf_dependency_init (1);
395       dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
396       return 1;
397     }
398   else if (strcmp (p, "-MMD") == 0)
399     {
400       jcf_dependency_init (0);
401       dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
402       return 1;
403     }
404   else if (strcmp (p, "-M") == 0)
405     {
406       jcf_dependency_init (1);
407       dependency_tracking |= DEPEND_ENABLE;
408       return 1;
409     }
410   else if (strcmp (p, "-MM") == 0)
411     {
412       jcf_dependency_init (0);
413       dependency_tracking |= DEPEND_ENABLE;
414       return 1;
415     }
416   else if (strcmp (p, "-MP") == 0)
417     {
418       jcf_dependency_print_dummies ();
419       return 1;
420     }
421   else if (strcmp (p, "-MT") == 0)
422     {
423       jcf_dependency_set_target (argv[1]);
424       dependency_tracking |= DEPEND_TARGET_SET;
425       return 2;
426     }
427   else if (strcmp (p, "-MF") == 0)
428     {
429       jcf_dependency_set_dep_file (argv[1]);
430       dependency_tracking |= DEPEND_FILE_ALREADY_SET;
431       return 2;
432     }
433
434   return 0;
435 }
436
437 /* Global open file.  */
438 FILE *finput;
439
440 static const char *
441 java_init (filename)
442      const char *filename;
443 {
444 #if 0
445   extern int flag_minimal_debug;
446   flag_minimal_debug = 0;
447 #endif
448
449   /* Open input file.  */
450
451   if (filename == 0 || !strcmp (filename, "-"))
452     {
453       finput = stdin;
454       filename = "stdin";
455
456       if (dependency_tracking)
457         error ("can't do dependency tracking with input from stdin");
458     }
459   else
460     {
461       if (dependency_tracking)
462         {
463           char *dot;
464
465           /* If the target is set and the output filename is set, then
466              there's no processing to do here.  Otherwise we must
467              compute one or the other.  */
468           if (! ((dependency_tracking & DEPEND_TARGET_SET)
469                  && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
470             {
471               dot = strrchr (filename, '.');
472               if (dot == NULL)
473                 error ("couldn't determine target name for dependency tracking");
474               else
475                 {
476                   char *buf = (char *) xmalloc (dot - filename +
477                                                 3 + sizeof (TARGET_OBJECT_SUFFIX));
478                   strncpy (buf, filename, dot - filename);
479
480                   /* If emitting class files, we might have multiple
481                      targets.  The class generation code takes care of
482                      registering them.  Otherwise we compute the
483                      target name here.  */
484                   if ((dependency_tracking & DEPEND_TARGET_SET))
485                     ; /* Nothing.  */
486                   else if (flag_emit_class_files)
487                     jcf_dependency_set_target (NULL);
488                   else
489                     {
490                       strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
491                       jcf_dependency_set_target (buf);
492                     }
493
494                   if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
495                     ; /* Nothing.  */
496                   else if ((dependency_tracking & DEPEND_SET_FILE))
497                     {
498                       strcpy (buf + (dot - filename), ".d");
499                       jcf_dependency_set_dep_file (buf);
500                     }
501                   else
502                     jcf_dependency_set_dep_file ("-");
503
504                   free (buf);
505                 }
506             }
507         }
508     }
509
510   jcf_path_init ();
511   jcf_path_seal (version_flag);
512
513   print_error_function = lang_print_error;
514   lang_expand_expr = java_lang_expand_expr;
515
516   java_init_decl_processing ();
517
518   using_eh_for_cleanups ();
519
520   return filename;
521 }
522
523 static void
524 java_finish ()
525 {
526   jcf_dependency_write ();
527 }
528
529 /* Buffer used by lang_printable_name. */
530 static char *decl_buf = NULL;
531
532 /* Allocated size of decl_buf. */
533 static int decl_buflen = 0;
534
535 /* Length of used part of decl_buf;  position for next character. */
536 static int decl_bufpos = 0;
537
538 /* Append the string STR to decl_buf.
539    It length is given by LEN;  -1 means the string is nul-terminated. */
540
541 static void
542 put_decl_string (str, len)
543      const char *str;
544      int len;
545 {
546   if (len < 0)
547     len = strlen (str);
548   if (decl_bufpos + len >= decl_buflen)
549     {
550       if (decl_buf == NULL)
551         {
552           decl_buflen = len + 100;
553           decl_buf = (char *) xmalloc (decl_buflen);
554         }
555       else
556         {
557           decl_buflen *= 2;
558           decl_buf = (char *) xrealloc (decl_buf, decl_buflen);
559         }
560     }
561   strcpy (decl_buf + decl_bufpos, str);
562   decl_bufpos += len;
563 }
564
565 /* Append to decl_buf a printable name for NODE. */
566
567 static void
568 put_decl_node (node)
569      tree node;
570 {
571   int was_pointer = 0;
572   if (TREE_CODE (node) == POINTER_TYPE)
573     {
574       node = TREE_TYPE (node);
575       was_pointer = 1;
576     }
577   if (TREE_CODE_CLASS (TREE_CODE (node)) == 'd'
578       && DECL_NAME (node) != NULL_TREE)
579     {
580       if (TREE_CODE (node) == FUNCTION_DECL)
581         {
582           /* We want to print the type the DECL belongs to. We don't do
583              that when we handle constructors. */
584           if (! DECL_CONSTRUCTOR_P (node)
585               && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node))
586             {
587               put_decl_node (TYPE_NAME (DECL_CONTEXT (node)));
588               put_decl_string (".", 1);
589             }
590           if (! DECL_CONSTRUCTOR_P (node))
591             put_decl_node (DECL_NAME (node));
592           if (TREE_TYPE (node) != NULL_TREE)
593             {
594               int i = 0;
595               tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
596               if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
597                 args = TREE_CHAIN (args);
598               put_decl_string ("(", 1);
599               for ( ; args != end_params_node;  args = TREE_CHAIN (args), i++)
600                 {
601                   if (i > 0)
602                     put_decl_string (",", 1);
603                   put_decl_node (TREE_VALUE (args));
604                 }
605               put_decl_string (")", 1);
606             }
607         }
608       else
609         put_decl_node (DECL_NAME (node));
610     }
611   else if (TREE_CODE_CLASS (TREE_CODE (node)) == 't'
612       && TYPE_NAME (node) != NULL_TREE)
613     {
614       if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node))
615         {
616           put_decl_node (TYPE_ARRAY_ELEMENT (node));
617           put_decl_string("[]", 2);
618         }
619       else if (node == promoted_byte_type_node)
620         put_decl_string ("byte", 4);
621       else if (node == promoted_short_type_node)
622         put_decl_string ("short", 5);
623       else if (node == promoted_char_type_node)
624         put_decl_string ("char", 4);
625       else if (node == promoted_boolean_type_node)
626         put_decl_string ("boolean", 7);
627       else if (node == void_type_node && was_pointer)
628         put_decl_string ("null", 4);
629       else
630         put_decl_node (TYPE_NAME (node));
631     }
632   else if (TREE_CODE (node) == IDENTIFIER_NODE)
633     put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
634   else
635     put_decl_string ("<unknown>", -1);
636 }
637
638 /* Return a user-friendly name for DECL.
639    The resulting string is only valid until the next call.
640    The value of the hook decl_printable_name is this function,
641    which is also called directly by lang_print_error. */
642
643 const char *
644 lang_printable_name (decl, v)
645      tree decl;
646      int v  __attribute__ ((__unused__));
647 {
648   decl_bufpos = 0;
649   put_decl_node (decl);
650   put_decl_string ("", 1);
651   return decl_buf;
652 }
653
654 /* Does the same thing that lang_printable_name, but add a leading
655    space to the DECL name string -- With Leading Space.  */
656
657 const char *
658 lang_printable_name_wls (decl, v)
659      tree decl;
660      int v  __attribute__ ((__unused__));
661 {
662   decl_bufpos = 1;
663   put_decl_node (decl);
664   put_decl_string ("", 1);
665   decl_buf [0] = ' ';
666   return decl_buf;
667 }
668
669 /* Print on stderr the current class and method context.  This function
670    is the value of the hook print_error_function, called from toplev.c. */
671
672 static void
673 lang_print_error (context, file)
674      diagnostic_context *context __attribute__((__unused__));
675      const char *file;
676 {
677   static tree last_error_function_context = NULL_TREE;
678   static tree last_error_function = NULL;
679   static int initialized_p;
680
681   /* Register LAST_ERROR_FUNCTION_CONTEXT and LAST_ERROR_FUNCTION with
682      the garbage collector.  */
683   if (!initialized_p)
684     {
685       ggc_add_tree_root (&last_error_function_context, 1);
686       ggc_add_tree_root (&last_error_function, 1);
687       initialized_p = 1;
688     }
689
690   if (current_function_decl != NULL
691       && DECL_CONTEXT (current_function_decl) != last_error_function_context)
692     {
693       if (file)
694         fprintf (stderr, "%s: ", file);
695
696       last_error_function_context = DECL_CONTEXT (current_function_decl);
697       fprintf (stderr, "In class `%s':\n",
698                lang_printable_name (last_error_function_context, 0));
699     }
700   if (last_error_function != current_function_decl)
701     {
702       if (file)
703         fprintf (stderr, "%s: ", file);
704
705       if (current_function_decl == NULL)
706         fprintf (stderr, "At top level:\n");
707       else
708         {
709           const char *name = lang_printable_name (current_function_decl, 2);
710           fprintf (stderr, "In %s `%s':\n",
711                    (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor" 
712                     : "method"),
713                    name);
714         }
715
716       last_error_function = current_function_decl;
717     }
718
719 }
720
721 /* This doesn't do anything on purpose. It's used to satisfy the
722    print_error_function hook we don't print error messages with bogus
723    function prototypes.  */
724
725 static void
726 java_dummy_print (c, s)
727      diagnostic_context *c __attribute__ ((__unused__));
728      const char *s __attribute__ ((__unused__));
729 {
730 }
731
732 /* Called to install the PRINT_ERROR_FUNCTION hook differently
733    according to LEVEL. LEVEL is 1 during early parsing, when function
734    prototypes aren't fully resolved. print_error_function is set so it
735    doesn't print incomplete function prototypes. When LEVEL is 2,
736    function prototypes are fully resolved and can be printed when
737    reporting errors.  */
738
739 void lang_init_source (level)
740      int level;
741 {
742   if (level == 1)
743     print_error_function = java_dummy_print;
744   else 
745     print_error_function = lang_print_error;
746 }
747
748 static void
749 java_init_options ()
750 {
751   flag_bounds_check = 1;
752   flag_exceptions = 1;
753   flag_non_call_exceptions = 1;
754 }