aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/ChangeLog12
-rw-r--r--gcc/ada/gcc-interface/decl.c76
-rw-r--r--gcc/ada/gcc-interface/gigi.h3
-rw-r--r--gcc/ada/gcc-interface/trans.c18
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gnat.dg/limited_with2.adb12
-rw-r--r--gcc/testsuite/gnat.dg/limited_with2.ads11
-rw-r--r--gcc/testsuite/gnat.dg/limited_with2_pkg1.ads9
-rw-r--r--gcc/testsuite/gnat.dg/limited_with2_pkg2.ads9
9 files changed, 106 insertions, 50 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index a1131ce..a4d45a5 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,5 +1,17 @@
2011-03-26 Eric Botcazou <ebotcazou@adacore.com>
+ * gcc-interface/gigi.h (finalize_from_with_types): Adjust comment.
+ * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Access_Type>: Defer
+ unconditionally to the end of the unit when the designated type is
+ limited_with'ed.
+ <all>: Rename local variable. Attempt to un-defer types only and do it
+ for limited_with'ed types as well.
+ (finalize_from_with_types): Adjust comment. Rename variable and tidy.
+ * gcc-interface/trans.c (Compilation_Unit_to_gnu): Use GNAT_UNIT
+ consistently and remove redundant call to finalize_from_with_types.
+
+2011-03-26 Eric Botcazou <ebotcazou@adacore.com>
+
* inline.adb (Back_End_Cannot_Inline): Lift restriction on calls to
subprograms without a previous spec declared in the same unit.
* gcc-interface/trans.c (Compilation_Unit_to_gnu): Process inlined
diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c
index a3bb2e7..d3d2b96 100644
--- a/gcc/ada/gcc-interface/decl.c
+++ b/gcc/ada/gcc-interface/decl.c
@@ -3723,15 +3723,10 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
save our current definition, evaluate the actual type, and replace
the tentative type we made with the actual one. If we are to defer
actually looking up the actual type, make an entry in the deferred
- list. If this is from a limited with, we have to defer to the end
- of the current spec in two cases: first if the designated type is
- in the current unit and second if the access type itself is. */
+ list. If this is from a limited with, we may have to defer to the
+ end of the current unit. */
if ((!in_main_unit || is_from_limited_with) && made_dummy)
{
- bool is_from_limited_with_in_main_unit
- = (is_from_limited_with
- && (in_main_unit
- || In_Extended_Main_Code_Unit (gnat_entity)));
tree gnu_old_desig_type
= TYPE_IS_FAT_POINTER_P (gnu_type)
? TYPE_UNCONSTRAINED_ARRAY (gnu_type) : TREE_TYPE (gnu_type);
@@ -3762,15 +3757,14 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
Besides, variants of this non-dummy type might have been created
along the way. update_pointer_to is expected to properly take
care of those situations. */
- if (defer_incomplete_level == 0
- && !is_from_limited_with_in_main_unit)
+ if (defer_incomplete_level == 0 && !is_from_limited_with)
update_pointer_to (TYPE_MAIN_VARIANT (gnu_old_desig_type),
gnat_to_gnu_type (gnat_desig_equiv));
else
{
struct incomplete *p = XNEW (struct incomplete);
struct incomplete **head
- = (is_from_limited_with_in_main_unit
+ = (is_from_limited_with
? &defer_limited_with : &defer_incomplete_list);
p->old_type = gnu_old_desig_type;
p->full_type = gnat_desig_equiv;
@@ -4968,12 +4962,12 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
{
if (defer_incomplete_list)
{
- struct incomplete *incp, *next;
+ struct incomplete *p, *next;
/* We are back to level 0 for the deferring of incomplete types.
But processing these incomplete types below may itself require
deferring, so preserve what we have and restart from scratch. */
- incp = defer_incomplete_list;
+ p = defer_incomplete_list;
defer_incomplete_list = NULL;
/* For finalization, however, all types must be complete so we
@@ -4981,14 +4975,14 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
referencing each other. Process them all recursively first. */
defer_finalize_level++;
- for (; incp; incp = next)
+ for (; p; p = next)
{
- next = incp->next;
+ next = p->next;
- if (incp->old_type)
- update_pointer_to (TYPE_MAIN_VARIANT (incp->old_type),
- gnat_to_gnu_type (incp->full_type));
- free (incp);
+ if (p->old_type)
+ update_pointer_to (TYPE_MAIN_VARIANT (p->old_type),
+ gnat_to_gnu_type (p->full_type));
+ free (p);
}
defer_finalize_level--;
@@ -5008,18 +5002,26 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
}
}
- /* If we are not defining this type, see if it's in the incomplete list.
- If so, handle that list entry now. */
- else if (!definition)
+ /* If we are not defining this type, see if it's on one of the lists of
+ incomplete types. If so, handle the list entry now. */
+ if (is_type && !definition)
{
- struct incomplete *incp;
+ struct incomplete *p;
- for (incp = defer_incomplete_list; incp; incp = incp->next)
- if (incp->old_type && incp->full_type == gnat_entity)
+ for (p = defer_incomplete_list; p; p = p->next)
+ if (p->old_type && p->full_type == gnat_entity)
{
- update_pointer_to (TYPE_MAIN_VARIANT (incp->old_type),
+ update_pointer_to (TYPE_MAIN_VARIANT (p->old_type),
TREE_TYPE (gnu_decl));
- incp->old_type = NULL_TREE;
+ p->old_type = NULL_TREE;
+ }
+
+ for (p = defer_limited_with; p; p = p->next)
+ if (p->old_type && Non_Limited_View (p->full_type) == gnat_entity)
+ {
+ update_pointer_to (TYPE_MAIN_VARIANT (p->old_type),
+ TREE_TYPE (gnu_decl));
+ p->old_type = NULL_TREE;
}
}
@@ -5144,24 +5146,24 @@ finish_fat_pointer_type (tree record_type, tree field_list)
TYPE_CONTAINS_PLACEHOLDER_INTERNAL (record_type) = 2;
}
-/* Finalize any From_With_Type incomplete types. We do this after processing
- our compilation unit and after processing its spec, if this is a body. */
+/* Finalize the processing of From_With_Type incomplete types. */
void
finalize_from_with_types (void)
{
- struct incomplete *incp = defer_limited_with;
- struct incomplete *next;
+ struct incomplete *p, *next;
+
+ p = defer_limited_with;
+ defer_limited_with = NULL;
- defer_limited_with = 0;
- for (; incp; incp = next)
+ for (; p; p = next)
{
- next = incp->next;
+ next = p->next;
- if (incp->old_type != 0)
- update_pointer_to (TYPE_MAIN_VARIANT (incp->old_type),
- gnat_to_gnu_type (incp->full_type));
- free (incp);
+ if (p->old_type)
+ update_pointer_to (TYPE_MAIN_VARIANT (p->old_type),
+ gnat_to_gnu_type (p->full_type));
+ free (p);
}
}
diff --git a/gcc/ada/gcc-interface/gigi.h b/gcc/ada/gcc-interface/gigi.h
index 2605533..a50010c 100644
--- a/gcc/ada/gcc-interface/gigi.h
+++ b/gcc/ada/gcc-interface/gigi.h
@@ -96,8 +96,7 @@ do { \
mark_visited (EXP); \
} while (0)
-/* Finalize any From_With_Type incomplete types. We do this after processing
- our compilation unit and after processing its spec, if this is a body. */
+/* Finalize the processing of From_With_Type incomplete types. */
extern void finalize_from_with_types (void);
/* Return the equivalent type to be used for GNAT_ENTITY, if it's a
diff --git a/gcc/ada/gcc-interface/trans.c b/gcc/ada/gcc-interface/trans.c
index f6d83af..332f715 100644
--- a/gcc/ada/gcc-interface/trans.c
+++ b/gcc/ada/gcc-interface/trans.c
@@ -3785,27 +3785,23 @@ Compilation_Unit_to_gnu (Node_Id gnat_node)
gnat_pushlevel ();
/* For a body, first process the spec if there is one. */
- if (Nkind (Unit (gnat_node)) == N_Package_Body
- || (Nkind (Unit (gnat_node)) == N_Subprogram_Body
- && !Acts_As_Spec (gnat_node)))
- {
- add_stmt (gnat_to_gnu (Library_Unit (gnat_node)));
- finalize_from_with_types ();
- }
+ if (Nkind (gnat_unit) == N_Package_Body
+ || (Nkind (gnat_unit) == N_Subprogram_Body && !Acts_As_Spec (gnat_node)))
+ add_stmt (gnat_to_gnu (Library_Unit (gnat_node)));
if (type_annotate_only && gnat_node == Cunit (Main_Unit))
{
elaborate_all_entities (gnat_node);
- if (Nkind (Unit (gnat_node)) == N_Subprogram_Declaration
- || Nkind (Unit (gnat_node)) == N_Generic_Package_Declaration
- || Nkind (Unit (gnat_node)) == N_Generic_Subprogram_Declaration)
+ if (Nkind (gnat_unit) == N_Subprogram_Declaration
+ || Nkind (gnat_unit) == N_Generic_Package_Declaration
+ || Nkind (gnat_unit) == N_Generic_Subprogram_Declaration)
return;
}
process_decls (Declarations (Aux_Decls_Node (gnat_node)), Empty, Empty,
true, true);
- add_stmt (gnat_to_gnu (Unit (gnat_node)));
+ add_stmt (gnat_to_gnu (gnat_unit));
/* If we can inline, generate code for all the inlined subprograms. */
if (optimize)
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6b2fede5..4f1fa8a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,11 @@
2011-03-26 Eric Botcazou <ebotcazou@adacore.com>
+ * gnat.dg/limited_with2.ad[sb]: New test.
+ * gnat.dg/limited_with2_pkg1.ads: New helper.
+ * gnat.dg/imited_with2_pkg2.ads: Likewise.
+
+2011-03-26 Eric Botcazou <ebotcazou@adacore.com>
+
* gnat.dg/opt15.adb: New test.
* gnat.dg/opt15_pkg.ad[sb]: New helper.
diff --git a/gcc/testsuite/gnat.dg/limited_with2.adb b/gcc/testsuite/gnat.dg/limited_with2.adb
new file mode 100644
index 0000000..b9c5417
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/limited_with2.adb
@@ -0,0 +1,12 @@
+-- { dg-do compile }
+
+with Limited_With2_Pkg2;
+
+package body Limited_With2 is
+
+ function Func (Val : Rec1) return Limited_With2_Pkg1.Rec2 is
+ begin
+ return Val.F;
+ end;
+
+end Limited_With2;
diff --git a/gcc/testsuite/gnat.dg/limited_with2.ads b/gcc/testsuite/gnat.dg/limited_with2.ads
new file mode 100644
index 0000000..4f076d4
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/limited_with2.ads
@@ -0,0 +1,11 @@
+with Limited_With2_Pkg1;
+
+package Limited_With2 is
+
+ type Rec1 is record
+ F : Limited_With2_Pkg1.Rec2;
+ end record;
+
+ function Func (Val : Rec1) return Limited_With2_Pkg1.Rec2;
+
+end Limited_With2;
diff --git a/gcc/testsuite/gnat.dg/limited_with2_pkg1.ads b/gcc/testsuite/gnat.dg/limited_with2_pkg1.ads
new file mode 100644
index 0000000..d821fa3
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/limited_with2_pkg1.ads
@@ -0,0 +1,9 @@
+limited with Limited_With2_Pkg2;
+
+package Limited_With2_Pkg1 is
+
+ type Rec2 is record
+ F : access Limited_With2_Pkg2.Rec3;
+ end record;
+
+end Limited_With2_Pkg1;
diff --git a/gcc/testsuite/gnat.dg/limited_with2_pkg2.ads b/gcc/testsuite/gnat.dg/limited_with2_pkg2.ads
new file mode 100644
index 0000000..c2d1012
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/limited_with2_pkg2.ads
@@ -0,0 +1,9 @@
+with Limited_With2;
+
+package Limited_With2_Pkg2 is
+
+ type Rec3 is record
+ F : Limited_With2.Rec1;
+ end record;
+
+end Limited_With2_Pkg2;