Commit 653d5d95 by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

java-tree.h (TYPE_IMPORT_LIST): New macro.

2001-09-13  Alexandre Petit-Bianco  <apbianco@redhat.com>

	* java-tree.h (TYPE_IMPORT_LIST): New macro.
	(TYPE_IMPORT_DEMAND_LIST): Likewise.
	(struct lang_type): New fields import_list and import_demand_list.
	* parse.y (java_complete_class): Initialize TYPE_IMPORT_LIST and
	TYPE_IMPORT_DEMAND_LIST with ctxp counterparts.
	(do_resolve_class): New local saved_enclosing_type, initialized,
	passed as parameter to find_in_imports and find_in_imports_on_demand.
	(find_in_imports): Added paramater enclosing_type, use its
	TYPE_IMPORT_LIST when applicable.
	(find_in_imports_on_demand): Added parameter enclosing_type, use
	its TYPE_IMPORT_DEMAND_LIST when applicable. Reorganized locals
	declaration and initialization.
	(fold_constant_for_init): Switch/restore current_class to the
	appropriate context.

( http://gcc.gnu.org/ml/gcc-patches/2001-09/msg00563.html )

From-SVN: r45619
parent 846f0467
2001-09-13 Alexandre Petit-Bianco <apbianco@redhat.com>
* java-tree.h (TYPE_IMPORT_LIST): New macro.
(TYPE_IMPORT_DEMAND_LIST): Likewise.
(struct lang_type): New fields import_list and import_demand_list.
* parse.y (java_complete_class): Initialize TYPE_IMPORT_LIST and
TYPE_IMPORT_DEMAND_LIST with ctxp counterparts.
(do_resolve_class): New local saved_enclosing_type, initialized,
passed as parameter to find_in_imports and find_in_imports_on_demand.
(find_in_imports): Added paramater enclosing_type, use its
TYPE_IMPORT_LIST when applicable.
(find_in_imports_on_demand): Added parameter enclosing_type, use
its TYPE_IMPORT_DEMAND_LIST when applicable. Reorganized locals
declaration and initialization.
(fold_constant_for_init): Switch/restore current_class to the
appropriate context.
2001-09-13 Mark Mitchell <mark@codesourcery.com> 2001-09-13 Mark Mitchell <mark@codesourcery.com>
* verify.c (verify_jvm_instructions): Fix typo. * verify.c (verify_jvm_instructions): Fix typo.
......
...@@ -950,6 +950,8 @@ struct lang_decl_var ...@@ -950,6 +950,8 @@ struct lang_decl_var
for non primitive types when compiling to bytecode. */ for non primitive types when compiling to bytecode. */
#define TYPE_DOT_CLASS(T) (TYPE_LANG_SPECIFIC(T)->dot_class) #define TYPE_DOT_CLASS(T) (TYPE_LANG_SPECIFIC(T)->dot_class)
#define TYPE_PACKAGE_LIST(T) (TYPE_LANG_SPECIFIC(T)->package_list) #define TYPE_PACKAGE_LIST(T) (TYPE_LANG_SPECIFIC(T)->package_list)
#define TYPE_IMPORT_LIST(T) (TYPE_LANG_SPECIFIC(T)->import_list)
#define TYPE_IMPORT_DEMAND_LIST(T) (TYPE_LANG_SPECIFIC(T)->import_demand_list)
#define TYPE_PRIVATE_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->pic) #define TYPE_PRIVATE_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->pic)
#define TYPE_PROTECTED_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->poic) #define TYPE_PROTECTED_INNER_CLASS(T) (TYPE_LANG_SPECIFIC(T)->poic)
#define TYPE_HAS_FINAL_VARIABLE(T) (TYPE_LANG_SPECIFIC(T)->hfv) #define TYPE_HAS_FINAL_VARIABLE(T) (TYPE_LANG_SPECIFIC(T)->hfv)
...@@ -968,6 +970,8 @@ struct lang_type ...@@ -968,6 +970,8 @@ struct lang_type
compiling to bytecode to implement compiling to bytecode to implement
<non_primitive_type>.class */ <non_primitive_type>.class */
tree package_list; /* List of package names, progressive */ tree package_list; /* List of package names, progressive */
tree import_list; /* Imported types, in the CU of this class */
tree import_demand_list; /* Imported types, in the CU of this class */
unsigned pic:1; /* Private Inner Class. */ unsigned pic:1; /* Private Inner Class. */
unsigned poic:1; /* Protected Inner Class. */ unsigned poic:1; /* Protected Inner Class. */
unsigned hfv:1; /* Has final variables */ unsigned hfv:1; /* Has final variables */
......
...@@ -99,8 +99,8 @@ static tree parse_jdk1_1_error PARAMS ((const char *)); ...@@ -99,8 +99,8 @@ static tree parse_jdk1_1_error PARAMS ((const char *));
static void complete_class_report_errors PARAMS ((jdep *)); static void complete_class_report_errors PARAMS ((jdep *));
static int process_imports PARAMS ((void)); static int process_imports PARAMS ((void));
static void read_import_dir PARAMS ((tree)); static void read_import_dir PARAMS ((tree));
static int find_in_imports_on_demand PARAMS ((tree)); static int find_in_imports_on_demand PARAMS ((tree, tree));
static void find_in_imports PARAMS ((tree)); static void find_in_imports PARAMS ((tree, tree));
static void check_static_final_variable_assignment_flag PARAMS ((tree)); static void check_static_final_variable_assignment_flag PARAMS ((tree));
static void reset_static_final_variable_assignment_flag PARAMS ((tree)); static void reset_static_final_variable_assignment_flag PARAMS ((tree));
static void check_final_variable_local_assignment_flag PARAMS ((tree, tree)); static void check_final_variable_local_assignment_flag PARAMS ((tree, tree));
...@@ -5564,6 +5564,13 @@ java_complete_class () ...@@ -5564,6 +5564,13 @@ java_complete_class ()
cclass = TREE_CHAIN (cclass), cclassd = CLASSD_CHAIN (cclassd)) cclass = TREE_CHAIN (cclass), cclassd = CLASSD_CHAIN (cclassd))
{ {
jdep *dep; jdep *dep;
/* We keep the compilation unit imports in the class so that
they can be used later to resolve type dependencies that
aren't necessary to solve now. */
TYPE_IMPORT_LIST (TREE_TYPE (cclass)) = ctxp->import_list;
TYPE_IMPORT_DEMAND_LIST (TREE_TYPE (cclass)) = ctxp->import_demand_list;
for (dep = CLASSD_FIRST (cclassd); dep; dep = JDEP_CHAIN (dep)) for (dep = CLASSD_FIRST (cclassd); dep; dep = JDEP_CHAIN (dep))
{ {
tree decl; tree decl;
...@@ -5750,6 +5757,7 @@ do_resolve_class (enclosing, class_type, decl, cl) ...@@ -5750,6 +5757,7 @@ do_resolve_class (enclosing, class_type, decl, cl)
tree enclosing, class_type, decl, cl; tree enclosing, class_type, decl, cl;
{ {
tree new_class_decl = NULL_TREE, super = NULL_TREE; tree new_class_decl = NULL_TREE, super = NULL_TREE;
tree saved_enclosing_type = enclosing ? TREE_TYPE (enclosing) : NULL_TREE;
struct hash_table _ht, *circularity_hash = &_ht; struct hash_table _ht, *circularity_hash = &_ht;
/* This hash table is used to register the classes we're going /* This hash table is used to register the classes we're going
...@@ -5786,7 +5794,7 @@ do_resolve_class (enclosing, class_type, decl, cl) ...@@ -5786,7 +5794,7 @@ do_resolve_class (enclosing, class_type, decl, cl)
/* 1- Check for the type in single imports. This will change /* 1- Check for the type in single imports. This will change
TYPE_NAME() if something relevant is found */ TYPE_NAME() if something relevant is found */
find_in_imports (class_type); find_in_imports (saved_enclosing_type, class_type);
/* 2- And check for the type in the current compilation unit */ /* 2- And check for the type in the current compilation unit */
if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type)))) if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
...@@ -5808,7 +5816,7 @@ do_resolve_class (enclosing, class_type, decl, cl) ...@@ -5808,7 +5816,7 @@ do_resolve_class (enclosing, class_type, decl, cl)
/* 4- Check the import on demands. Don't allow bar.baz to be /* 4- Check the import on demands. Don't allow bar.baz to be
imported from foo.* */ imported from foo.* */
if (!QUALIFIED_P (TYPE_NAME (class_type))) if (!QUALIFIED_P (TYPE_NAME (class_type)))
if (find_in_imports_on_demand (class_type)) if (find_in_imports_on_demand (saved_enclosing_type, class_type))
return NULL_TREE; return NULL_TREE;
/* If found in find_in_imports_on_demant, the type has already been /* If found in find_in_imports_on_demant, the type has already been
...@@ -6710,16 +6718,21 @@ process_imports () ...@@ -6710,16 +6718,21 @@ process_imports ()
statement. */ statement. */
static void static void
find_in_imports (class_type) find_in_imports (enclosing_type, class_type)
tree enclosing_type;
tree class_type; tree class_type;
{ {
tree import; tree import = (enclosing_type ? TYPE_IMPORT_LIST (enclosing_type) :
ctxp->import_list);
for (import = ctxp->import_list; import; import = TREE_CHAIN (import)) while (import)
{
if (TREE_VALUE (import) == TYPE_NAME (class_type)) if (TREE_VALUE (import) == TYPE_NAME (class_type))
{ {
TYPE_NAME (class_type) = EXPR_WFL_NODE (TREE_PURPOSE (import)); TYPE_NAME (class_type) = EXPR_WFL_NODE (TREE_PURPOSE (import));
QUALIFIED_P (TYPE_NAME (class_type)) = 1; QUALIFIED_P (TYPE_NAME (class_type)) = 1;
return;
}
import = TREE_CHAIN (import);
} }
} }
...@@ -6869,14 +6882,17 @@ read_import_dir (wfl) ...@@ -6869,14 +6882,17 @@ read_import_dir (wfl)
entire list, to detected potential double definitions. */ entire list, to detected potential double definitions. */
static int static int
find_in_imports_on_demand (class_type) find_in_imports_on_demand (enclosing_type, class_type)
tree enclosing_type;
tree class_type; tree class_type;
{ {
tree node, import, node_to_use = NULL_TREE; tree import = (enclosing_type ? TYPE_IMPORT_DEMAND_LIST (enclosing_type) :
ctxp->import_demand_list);
tree node_to_use = NULL_TREE, cl = NULL_TREE;
tree node;
int seen_once = -1; int seen_once = -1;
tree cl = NULL_TREE;
for (import = ctxp->import_demand_list; import; import = TREE_CHAIN (import)) while (import)
{ {
const char *id_name; const char *id_name;
obstack_grow (&temporary_obstack, obstack_grow (&temporary_obstack,
...@@ -6907,6 +6923,7 @@ find_in_imports_on_demand (class_type) ...@@ -6907,6 +6923,7 @@ find_in_imports_on_demand (class_type)
IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import)))); IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import))));
} }
} }
import = TREE_CHAIN (import);
} }
if (seen_once == 1) if (seen_once == 1)
...@@ -16129,8 +16146,14 @@ fold_constant_for_init (node, context) ...@@ -16129,8 +16146,14 @@ fold_constant_for_init (node, context)
} }
else else
{ {
/* Install the proper context for the field resolution.
The prior context is restored once the name is
properly qualified. */
tree saved_current_class = current_class;
/* Wait until the USE_COMPONENT_REF re-write. FIXME. */ /* Wait until the USE_COMPONENT_REF re-write. FIXME. */
current_class = DECL_CONTEXT (context);
qualify_ambiguous_name (node); qualify_ambiguous_name (node);
current_class = saved_current_class;
if (resolve_field_access (node, &decl, NULL) if (resolve_field_access (node, &decl, NULL)
&& decl != NULL_TREE) && decl != NULL_TREE)
return fold_constant_for_init (decl, decl); return fold_constant_for_init (decl, decl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment