aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/sem_ch6.adb
diff options
context:
space:
mode:
authorPiotr Trojanek <trojanek@adacore.com>2023-12-07 00:27:16 +0100
committerMarc Poulhiès <poulhies@adacore.com>2024-01-09 14:13:31 +0100
commit9afbf898ce89f6bcb314ddf03da20abdf0ac79cd (patch)
treeaa65a5814bee240c7a0018a152eedacc4c96f7fc /gcc/ada/sem_ch6.adb
parent00a97303c2ab27263b18a008a389c3567650123b (diff)
downloadgcc-9afbf898ce89f6bcb314ddf03da20abdf0ac79cd.zip
gcc-9afbf898ce89f6bcb314ddf03da20abdf0ac79cd.tar.gz
gcc-9afbf898ce89f6bcb314ddf03da20abdf0ac79cd.tar.bz2
ada: More aggressive inlining of subprogram calls in GNATprove mode
Previously if a subprogram call could not be inlined in GNATprove mode, then all subsequent calls to the same subprogram were not inlined either (because a failed attempt to inline clears flag Is_Inlined_Always and we tested this flag when attempting to inline subsequent calls). Now a failure in inlining of a particular call does not prevent inlining of subsequent calls to the same subprogram, except when inlining failed because the subprogram was detected to be recursive (which clears the Is_Inlined flag that we now examine). This change allows more checks to be proved and reduces interactions between inlining and SPARK legality checks. gcc/ada/ * sem_ch6.adb (Analyze_Subprogram_Specification): Set Is_Inlined flag by default in GNATprove mode. * sem_res.adb (Resolve_Call): Only look at flag which is cleared when inlined subprogram is detected to be recursive.
Diffstat (limited to 'gcc/ada/sem_ch6.adb')
-rw-r--r--gcc/ada/sem_ch6.adb5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/sem_ch6.adb b/gcc/ada/sem_ch6.adb
index da6f6c4..bdfe446 100644
--- a/gcc/ada/sem_ch6.adb
+++ b/gcc/ada/sem_ch6.adb
@@ -5325,10 +5325,13 @@ package body Sem_Ch6 is
-- Flag Is_Inlined_Always is True by default, and reversed to False for
-- those subprograms which could be inlined in GNATprove mode (because
- -- Body_To_Inline is non-Empty) but should not be inlined.
+ -- Body_To_Inline is non-Empty) but should not be inlined. Flag
+ -- Is_Inlined is True by default and reversed to False when inlining
+ -- fails because the subprogram is detected to be recursive.
if GNATprove_Mode then
Set_Is_Inlined_Always (Designator);
+ Set_Is_Inlined (Designator);
end if;
-- Introduce new scope for analysis of the formals and the return type