aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2004-06-26 20:40:31 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2004-06-26 21:40:31 +0100
commited7f23690a8c1cf8295cf151719d7b07f7b68bce (patch)
treeec8c7b5d06daedd0915d6edd58a293686a084f4b /gcc/java
parentc872077c88496940e82e8f52988d98a94c9c5d29 (diff)
downloadgcc-ed7f23690a8c1cf8295cf151719d7b07f7b68bce.zip
gcc-ed7f23690a8c1cf8295cf151719d7b07f7b68bce.tar.gz
gcc-ed7f23690a8c1cf8295cf151719d7b07f7b68bce.tar.bz2
PR java/1207, java/16178
PR java/1207, java/16178 * jcf-parse.c (load_class): Return immediately if passed a type decl where CLASS_FROM_SOURCE_P is set. Remove FIXME. * parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P before calling load_class. (qualify_and_find): Likewise. (find_in_imports_on_demand): Likewise. (find_applicable_accessible_methods_list): Likewise. Co-Authored-By: Ranjit Mathew <rmathew@hotmail.com> From-SVN: r83719
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog17
-rw-r--r--gcc/java/jcf-parse.c11
-rw-r--r--gcc/java/parse.y11
3 files changed, 27 insertions, 12 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 63a23eb..9ed01a6 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,20 @@
+2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
+ Ranjit Mathew <rmathew@hotmail.com>
+
+ PR java/1207, java/16178
+ * jcf-parse.c (load_class): Return immediately if passed a type decl
+ where CLASS_FROM_SOURCE_P is set. Remove FIXME.
+ * parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P
+ before calling load_class.
+ (qualify_and_find): Likewise.
+ (find_in_imports_on_demand): Likewise.
+ (find_applicable_accessible_methods_list): Likewise.
+
+2004-06-24 Bryce McKinlay <mckinlay@redhat.com>
+
+ * parse.y (java_layout_seen_class_methods): Don't call load_class
+ on class defined by source parser.
+
2004-06-23 Bryce McKinlay <mckinlay@redhat.com>
* parse.y (set_nested_class_simple_name_value): Removed.
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c
index c948a1a..42c3df3 100644
--- a/gcc/java/jcf-parse.c
+++ b/gcc/java/jcf-parse.c
@@ -562,10 +562,6 @@ read_class (tree name)
/* Load CLASS_OR_NAME. CLASS_OR_NAME can be a mere identifier if
called from the parser, otherwise it's a RECORD_TYPE node. If
VERBOSE is 1, print error message on failure to load a class. */
-
-/* Replace calls to load_class by having callers call read_class directly
- - and then perhaps rename read_class to load_class. FIXME */
-
void
load_class (tree class_or_name, int verbose)
{
@@ -581,7 +577,12 @@ load_class (tree class_or_name, int verbose)
name = TYPE_NAME (TREE_PURPOSE (class_or_name));
/* Or it's a type in the making */
else
- name = DECL_NAME (TYPE_NAME (class_or_name));
+ {
+ /* If the class is from source code, then it must already be loaded. */
+ if (CLASS_FROM_SOURCE_P (class_or_name))
+ return;
+ name = DECL_NAME (TYPE_NAME (class_or_name));
+ }
saved = name;
while (1)
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index 8cd4f00..5b8a303 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -5796,8 +5796,7 @@ do_resolve_class (tree enclosing, tree class_type, tree decl, tree cl)
/* 2- And check for the type in the current compilation unit */
if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
{
- if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)) &&
- !CLASS_FROM_SOURCE_P (TREE_TYPE (new_class_decl)))
+ if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
load_class (TYPE_NAME (class_type), 0);
return IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
}
@@ -5891,8 +5890,7 @@ qualify_and_find (tree class_type, tree package, tree name)
load_class (new_qualified, 0);
if ((new_class_decl = IDENTIFIER_CLASS_VALUE (new_qualified)))
{
- if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)) &&
- !CLASS_FROM_SOURCE_P (TREE_TYPE (new_class_decl)))
+ if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
load_class (new_qualified, 0);
TYPE_NAME (class_type) = new_qualified;
return IDENTIFIER_CLASS_VALUE (new_qualified);
@@ -7044,8 +7042,7 @@ find_in_imports_on_demand (tree enclosing_type, tree class_type)
access_check = -1;
/* If there is no DECL set for the class or if the class isn't
loaded and not seen in source yet, then load */
- if (!decl || (!CLASS_LOADED_P (TREE_TYPE (decl))
- && !CLASS_FROM_SOURCE_P (TREE_TYPE (decl))))
+ if (!decl || ! CLASS_LOADED_P (TREE_TYPE (decl)))
{
load_class (node, 0);
decl = IDENTIFIER_CLASS_VALUE (node);
@@ -11014,7 +11011,7 @@ find_applicable_accessible_methods_list (int lc, tree class, tree name,
search_not_done++;
*htab_find_slot (searched_classes, class, INSERT) = class;
- if (!CLASS_LOADED_P (class) && !CLASS_FROM_SOURCE_P (class))
+ if (!CLASS_LOADED_P (class))
{
load_class (class, 1);
safe_layout_class (class);