aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/exp_ch8.adb
diff options
context:
space:
mode:
authorJavier Miranda <miranda@adacore.com>2018-05-24 13:06:47 +0000
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>2018-05-24 13:06:47 +0000
commit01243764c0ea83d0086d7e49a8752a8f13bfd802 (patch)
tree14fea77a675cf77b7a628bcb69d4fc6986420750 /gcc/ada/exp_ch8.adb
parent7037d2bbd04f5b845b899e533a96334c0e2f653e (diff)
downloadgcc-01243764c0ea83d0086d7e49a8752a8f13bfd802.zip
gcc-01243764c0ea83d0086d7e49a8752a8f13bfd802.tar.gz
gcc-01243764c0ea83d0086d7e49a8752a8f13bfd802.tar.bz2
[Ada] Wrong renaming of variant record equality
For a renaming of the equality operator of a variant record the compiler erroneously generates code that compares all the record component (thus computing wrong results). After this patch the following test provides the correct results. package Types is type Data (Bool : Boolean := False) is record case Bool is when False => null; when True => Val1 : Integer range 0 .. 2 ** 23 - 1; Val2 : Float; end case; end record; function IsEqual (Left, Right : Data) return Boolean renames "="; end Types; with Types; with Ada.Text_IO; procedure Main is A : Types.Data := Types.Data'(Bool => True, Val1 => 16#05A5A5#, Val2 => 999999999.0); B : Types.Data := Types.Data'(Bool => True, Val1 => 16#0A5A5A#, Val2 => 6666666666.0); use type Types.Data; begin A := (Bool => False); -- Test B := (Bool => False); -- Test if Types.IsEqual (A, B) then -- Test Ada.Text_IO.Put_Line ("OK"); else Ada.Text_IO.Put_Line ("ERROR"); end if; end Main; Command: gnatmake main; ./main Output: OK 2018-05-24 Javier Miranda <miranda@adacore.com> gcc/ada/ * exp_ch8.adb (Build_Body_For_Renaming): Adding support to build the body of a variant record equality renaming. (Expand_N_Subprogram_Renaming_Declaration): Adapt the code to the new implementation of Build_Body_For_Renaming. * exp_ch3.ads (Build_Variant_Record_Equality): New library level function that factorizes the functionality needed by Build_Body_For_Renaming and Expand_Freeze_Record_Type to build the body of a variant record equality subprogram. * exp_ch3.adb (Build_Variant_Record_Equality): New subprogram. (Build_Variant_Record_Equality): New local procedure of Expand_Freeze_Record_Type containing all the code specific for freezing the record type that cannot be place in the new library level function. From-SVN: r260667
Diffstat (limited to 'gcc/ada/exp_ch8.adb')
-rw-r--r--gcc/ada/exp_ch8.adb86
1 files changed, 47 insertions, 39 deletions
diff --git a/gcc/ada/exp_ch8.adb b/gcc/ada/exp_ch8.adb
index e48ba5e..e2ffb91 100644
--- a/gcc/ada/exp_ch8.adb
+++ b/gcc/ada/exp_ch8.adb
@@ -25,6 +25,7 @@
with Atree; use Atree;
with Einfo; use Einfo;
+with Exp_Ch3; use Exp_Ch3;
with Exp_Ch4; use Exp_Ch4;
with Exp_Ch6; use Exp_Ch6;
with Exp_Dbug; use Exp_Dbug;
@@ -35,6 +36,7 @@ with Nmake; use Nmake;
with Nlists; use Nlists;
with Opt; use Opt;
with Sem; use Sem;
+with Sem_Aux; use Sem_Aux;
with Sem_Ch8; use Sem_Ch8;
with Sem_Util; use Sem_Util;
with Sinfo; use Sinfo;
@@ -260,15 +262,17 @@ package body Exp_Ch8 is
Loc : constant Source_Ptr := Sloc (N);
Id : constant Entity_Id := Defining_Entity (N);
- function Build_Body_For_Renaming return Node_Id;
+ function Build_Body_For_Renaming (Typ : Entity_Id) return Node_Id;
-- Build and return the body for the renaming declaration of an equality
- -- or inequality operator.
+ -- or inequality operator of type Typ.
-----------------------------
-- Build_Body_For_Renaming --
-----------------------------
- function Build_Body_For_Renaming return Node_Id is
+ function Build_Body_For_Renaming (Typ : Entity_Id) return Node_Id is
+ Left : constant Entity_Id := First_Formal (Id);
+ Right : constant Entity_Id := Next_Formal (Left);
Body_Id : Entity_Id;
Decl : Node_Id;
@@ -283,16 +287,44 @@ package body Exp_Ch8 is
Body_Id := Make_Defining_Identifier (Sloc (N), Chars (Id));
Set_Debug_Info_Needed (Body_Id);
- Decl :=
- Make_Subprogram_Body (Loc,
- Specification =>
- Make_Function_Specification (Loc,
- Defining_Unit_Name => Body_Id,
- Parameter_Specifications => Copy_Parameter_List (Id),
- Result_Definition =>
- New_Occurrence_Of (Standard_Boolean, Loc)),
- Declarations => Empty_List,
- Handled_Statement_Sequence => Empty);
+ if Has_Variant_Part (Typ) then
+ Decl :=
+ Build_Variant_Record_Equality
+ (Typ => Typ,
+ Body_Id => Body_Id,
+ Param_Specs => Copy_Parameter_List (Id));
+
+ -- Build body for renamed equality, to capture its current
+ -- meaning. It may be redefined later, but the renaming is
+ -- elaborated where it occurs. This is technically known as
+ -- Squirreling semantics. Renaming is rewritten as a subprogram
+ -- declaration, and the generated body is inserted into the
+ -- freeze actions for the subprogram.
+
+ else
+ Decl :=
+ Make_Subprogram_Body (Loc,
+ Specification =>
+ Make_Function_Specification (Loc,
+ Defining_Unit_Name => Body_Id,
+ Parameter_Specifications => Copy_Parameter_List (Id),
+ Result_Definition =>
+ New_Occurrence_Of (Standard_Boolean, Loc)),
+ Declarations => Empty_List,
+ Handled_Statement_Sequence => Empty);
+
+ Set_Handled_Statement_Sequence (Decl,
+ Make_Handled_Sequence_Of_Statements (Loc,
+ Statements => New_List (
+ Make_Simple_Return_Statement (Loc,
+ Expression =>
+ Expand_Record_Equality
+ (Id,
+ Typ => Typ,
+ Lhs => Make_Identifier (Loc, Chars (Left)),
+ Rhs => Make_Identifier (Loc, Chars (Right)),
+ Bodies => Declarations (Decl))))));
+ end if;
return Decl;
end Build_Body_For_Renaming;
@@ -328,10 +360,7 @@ package body Exp_Ch8 is
and then Scope (Entity (Nam)) = Standard_Standard
then
declare
- Left : constant Entity_Id := First_Formal (Id);
- Right : constant Entity_Id := Next_Formal (Left);
- Typ : constant Entity_Id := Etype (Left);
- Decl : Node_Id;
+ Typ : constant Entity_Id := Etype (First_Formal (Id));
begin
-- Check whether this is a renaming of a predefined equality on an
@@ -342,28 +371,7 @@ package body Exp_Ch8 is
and then not Is_Tagged_Type (Typ)
and then not Is_Frozen (Typ)
then
- -- Build body for renamed equality, to capture its current
- -- meaning. It may be redefined later, but the renaming is
- -- elaborated where it occurs. This is technically known as
- -- Squirreling semantics. Renaming is rewritten as a subprogram
- -- declaration, and the generated body is inserted into the
- -- freeze actions for the subprogram.
-
- Decl := Build_Body_For_Renaming;
-
- Set_Handled_Statement_Sequence (Decl,
- Make_Handled_Sequence_Of_Statements (Loc,
- Statements => New_List (
- Make_Simple_Return_Statement (Loc,
- Expression =>
- Expand_Record_Equality
- (Id,
- Typ => Typ,
- Lhs => Make_Identifier (Loc, Chars (Left)),
- Rhs => Make_Identifier (Loc, Chars (Right)),
- Bodies => Declarations (Decl))))));
-
- Append_Freeze_Action (Id, Decl);
+ Append_Freeze_Action (Id, Build_Body_For_Renaming (Typ));
end if;
end;
end if;