aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/freeze.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@adacore.com>2022-03-30 19:00:27 +0000
committerPierre-Marie de Rodat <derodat@adacore.com>2022-05-18 08:40:59 +0000
commit54cf6609e0c52123db5c600db197647491c33395 (patch)
tree4074356bd2ff7e42c99380bf786ed3eff47650b6 /gcc/ada/freeze.adb
parent5488c78c836ca71330bc69247bf75aa14d9d2603 (diff)
downloadgcc-54cf6609e0c52123db5c600db197647491c33395.zip
gcc-54cf6609e0c52123db5c600db197647491c33395.tar.gz
gcc-54cf6609e0c52123db5c600db197647491c33395.tar.bz2
[Ada] Freezing too strict in instances
Should_Freeze_Type is relaxed to only take the relevant case into account (entities denoted by generic actual parameters as per 13.14(5/3), as well as profile of any subprograms named as per 13.14(10.2/4)), instead of being overly conservative wrt instances and as a result, wrongly rejecting some legal code. In practice this means we only need to worry about profile of subprograms named as part of instances. gcc/ada/ * freeze.adb (Should_Freeze_Type): Fix handling of freezing in instances.
Diffstat (limited to 'gcc/ada/freeze.adb')
-rw-r--r--gcc/ada/freeze.adb17
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/ada/freeze.adb b/gcc/ada/freeze.adb
index b75f9ef..4ff7036 100644
--- a/gcc/ada/freeze.adb
+++ b/gcc/ada/freeze.adb
@@ -184,9 +184,11 @@ package body Freeze is
-- the designated type. Otherwise freezing the access type does not freeze
-- the designated type.
- function Should_Freeze_Type (Typ : Entity_Id; E : Entity_Id) return Boolean;
- -- If Typ is in the current scope or in an instantiation, then return True.
- -- ???Expression functions (represented by E) shouldn't freeze types in
+ function Should_Freeze_Type
+ (Typ : Entity_Id; E : Entity_Id; N : Node_Id) return Boolean;
+ -- If Typ is in the current scope, then return True.
+ -- N is a node whose source location corresponds to the freeze point.
+ -- ??? Expression functions (represented by E) shouldn't freeze types in
-- general, but our current expansion and freezing model requires an early
-- freezing when the dispatch table is needed or when building an aggregate
-- with a subtype of Typ, so return True also in this case.
@@ -198,7 +200,7 @@ package body Freeze is
------------------------
function Should_Freeze_Type
- (Typ : Entity_Id; E : Entity_Id) return Boolean
+ (Typ : Entity_Id; E : Entity_Id; N : Node_Id) return Boolean
is
function Is_Dispatching_Call_Or_Aggregate
(N : Node_Id) return Traverse_Result;
@@ -244,7 +246,8 @@ package body Freeze is
begin
return Within_Scope (Typ, Current_Scope)
- or else In_Instance
+ or else (Nkind (N) = N_Subprogram_Renaming_Declaration
+ and then Present (Corresponding_Formal_Spec (N)))
or else (Present (Decl)
and then Nkind (Decl) = N_Expression_Function
and then Need_Dispatch_Table (Expression (Decl)) = Abandon);
@@ -4606,7 +4609,7 @@ package body Freeze is
end if;
if not From_Limited_With (F_Type)
- and then Should_Freeze_Type (F_Type, E)
+ and then Should_Freeze_Type (F_Type, E, N)
then
Freeze_And_Append (F_Type, N, Result);
end if;
@@ -4786,7 +4789,7 @@ package body Freeze is
Set_Etype (E, R_Type);
end if;
- if Should_Freeze_Type (R_Type, E) then
+ if Should_Freeze_Type (R_Type, E, N) then
Freeze_And_Append (R_Type, N, Result);
end if;