OSDN Git Service

* decl.c (finish_method): Give methods once-only linkage.
[pf3gnuchains/gcc-fork.git] / gcc / java / java-except.h
index 30516f2..a45e650 100644 (file)
@@ -1,21 +1,22 @@
 /* Definitions for exception handling for use by the GNU compiler
    for the Java(TM) language compiler.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004, 2005
+   Free Software Foundation, Inc.
 
-This file is part of GNU CC.
+This file is part of GCC.
 
-GNU CC is free software; you can redistribute it and/or modify
+GCC is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
-GNU CC is distributed in the hope that it will be useful,
+GCC is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING.  If not, write to
+along with GCC; see the file COPYING.  If not, write to
 the Free Software Foundation, 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  
 
@@ -34,7 +35,7 @@ struct eh_range
        and the TREE_VALUE is the LABEL_DECL of the handler. */
     tree handlers;
 
-    /* Surrunding handler, if any. */
+    /* Surrounding handler, if any. */
     struct eh_range *outer;
 
     /* The first child range.  It is is nested inside this range
@@ -48,10 +49,13 @@ struct eh_range
     /* The next child of outer, in address order. */
     struct eh_range *next_sibling;
 
-#if 0
-    /* Next handler, sorted by ascending start_pc then descending end_pc. */
-    tree next;
-#endif
+    /* True if this range has already been expanded. */
+    int expanded;
+
+    /* The TRY_CATCH_EXPR for this EH range.  */
+    tree stmt;
+
+    tree handler;
   };
 
 /* A dummy range that represents the entire method. */
@@ -59,15 +63,9 @@ extern struct eh_range whole_range;
 
 #define NULL_EH_RANGE (&whole_range)
 
-extern struct eh_range * find_handler PROTO ((int));
-
-extern void method_init_exceptions PROTO ((void));
-
-extern void emit_handlers PROTO ((void));
-
-extern void maybe_start_try PROTO ((int));
-
-extern void maybe_end_try PROTO ((int));
-
-extern int add_handler PROTO ((int, int, tree, tree));
-
+extern struct eh_range * find_handler (int);
+extern void method_init_exceptions (void);
+extern void maybe_start_try (int, int);
+extern void add_handler (int, int, tree, tree);
+extern void handle_nested_ranges (void);
+extern void expand_end_java_handler (struct eh_range *);