[Ada] Crash in interface derivation with null primitive
authorJavier Miranda <miranda@adacore.com>
Mon, 8 Jul 2019 08:13:20 +0000 (08:13 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Mon, 8 Jul 2019 08:13:20 +0000 (08:13 +0000)
The frontend crashes processing the derivation of a tagged type whose
ultimate ancestor is an interface type I1 that has a null primitive,
implements another interface I2 derived from I2, and does not override
the null primitive.

2019-07-08  Javier Miranda  <miranda@adacore.com>

gcc/ada/

* exp_disp.adb (Register_Primitive): When registering a
primitive in the secondary dispatch table, handle primitive
inherited through several levels of type derivation (required to
properly handle inherited 'null' primitive).

gcc/testsuite/

* gnat.dg/interface9.adb, gnat.dg/interface9_root-child.ads,
gnat.dg/interface9_root.ads: New testcase.

From-SVN: r273204

gcc/ada/ChangeLog
gcc/ada/exp_disp.adb
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/interface9.adb [new file with mode: 0644]
gcc/testsuite/gnat.dg/interface9_root-child.ads [new file with mode: 0644]
gcc/testsuite/gnat.dg/interface9_root.ads [new file with mode: 0644]

index 72cb89296d1929a06d32544e176080dd2310f780..969e9335e0fd6b1ed1e997232401fceb5d1ae092 100644 (file)
@@ -1,3 +1,10 @@
+2019-07-08  Javier Miranda  <miranda@adacore.com>
+
+       * exp_disp.adb (Register_Primitive): When registering a
+       primitive in the secondary dispatch table, handle primitive
+       inherited through several levels of type derivation (required to
+       properly handle inherited 'null' primitive).
+
 2019-07-08  Bob Duff  <duff@adacore.com>
 
        * doc/gnat_ugn/gnat_utility_programs.rst: Document handling of
index 1b2123479768b6c875a54e262e4f6776ad11ec96..a6595948189d19cf276ad5acfeb7a5b939ddb213 100644 (file)
@@ -7637,7 +7637,7 @@ package body Exp_Disp is
                      Unchecked_Convert_To (RTE (RE_Prim_Ptr),
                        Make_Attribute_Reference (Loc,
                          Prefix         =>
-                           New_Occurrence_Of (Alias (Prim), Loc),
+                           New_Occurrence_Of (Ultimate_Alias (Prim), Loc),
                          Attribute_Name => Name_Unrestricted_Access))));
 
             end if;
index 94ad86f98957521b546b0f078cf96d6230c499fa..14d127fc607d3490d93e8f9c12c050cd7515c3d0 100644 (file)
@@ -1,3 +1,8 @@
+2019-07-08  Javier Miranda  <miranda@adacore.com>
+
+       * gnat.dg/interface9.adb, gnat.dg/interface9_root-child.ads,
+       gnat.dg/interface9_root.ads: New testcase.
+
 2019-07-08  Ed Schonberg  <schonberg@adacore.com>
 
        * gnat.dg/predicate9.adb: New testcase.
diff --git a/gcc/testsuite/gnat.dg/interface9.adb b/gcc/testsuite/gnat.dg/interface9.adb
new file mode 100644 (file)
index 0000000..ec46e20
--- /dev/null
@@ -0,0 +1,10 @@
+--  { dg-do compile }
+
+with Interface9_Root.Child;
+procedure Interface9 is
+   package R   is new Interface9_Root (Real => Float);
+   package RC  is new R.Child;
+
+begin
+   null;
+end Interface9;
diff --git a/gcc/testsuite/gnat.dg/interface9_root-child.ads b/gcc/testsuite/gnat.dg/interface9_root-child.ads
new file mode 100644 (file)
index 0000000..0440ddb
--- /dev/null
@@ -0,0 +1,7 @@
+generic
+package Interface9_Root.Child is
+    type Base_Type is abstract new Base_Interface with null record;
+
+    type Derived_Type is abstract new Base_Type and Derived_Interface
+      with null record; --  Test
+end Interface9_Root.Child;
diff --git a/gcc/testsuite/gnat.dg/interface9_root.ads b/gcc/testsuite/gnat.dg/interface9_root.ads
new file mode 100644 (file)
index 0000000..2e64e5b
--- /dev/null
@@ -0,0 +1,10 @@
+generic
+   type Real is digits <>;
+package Interface9_Root is
+   type Base_Interface is limited interface;
+
+   procedure Primitive1 (B : in out Base_Interface) is abstract;
+   procedure Primitive2 (B : in out Base_Interface) is null;
+
+   type Derived_Interface is limited interface and Base_Interface;
+end Interface9_Root;