[gcc r14-1751] ada: Cleanup finding of locally handled exception handlers

Marc Poulhi?s dkm@gcc.gnu.org
Tue Jun 13 07:32:53 GMT 2023


https://gcc.gnu.org/g:0e511e29883e6959ce0e6c775bb62b8f8b48c7fb

commit r14-1751-g0e511e29883e6959ce0e6c775bb62b8f8b48c7fb
Author: Piotr Trojanek <trojanek@adacore.com>
Date:   Wed Apr 19 11:02:34 2023 +0200

    ada: Cleanup finding of locally handled exception handlers
    
    Code cleanup related to handling exceptions in GNATprove; semantics is
    unaffected.
    
    gcc/ada/
    
            * exp_ch11.adb (Find_Local_Handler): Replace guard against other
            constructs appearing in the list of exception handlers with iteration
            using First_Non_Pragma/Next_Non_Pragma.

Diff:
---
 gcc/ada/exp_ch11.adb | 68 +++++++++++++++++++++++++---------------------------
 1 file changed, 33 insertions(+), 35 deletions(-)

diff --git a/gcc/ada/exp_ch11.adb b/gcc/ada/exp_ch11.adb
index da02eb9bfb2..db85c7efa6e 100644
--- a/gcc/ada/exp_ch11.adb
+++ b/gcc/ada/exp_ch11.adb
@@ -1819,62 +1819,60 @@ package body Exp_Ch11 is
                                          | SSE.Actions_To_Be_Wrapped (After)
                                          | SSE.Actions_To_Be_Wrapped (Cleanup)
          then
-            --  Loop through exception handlers
+            --  Loop through exception handlers and guard against pragmas
+            --  appearing among them.
 
-            H := First (Exception_Handlers (P));
+            H := First_Non_Pragma (Exception_Handlers (P));
             while Present (H) loop
 
                --  Guard against other constructs appearing in the list of
                --  exception handlers.
 
-               if Nkind (H) = N_Exception_Handler then
+               --  Loop through choices in one handler
 
-                  --  Loop through choices in one handler
+               C := First (Exception_Choices (H));
+               while Present (C) loop
 
-                  C := First (Exception_Choices (H));
-                  while Present (C) loop
+                  --  Deal with others case
 
-                     --  Deal with others case
+                  if Nkind (C) = N_Others_Choice then
 
-                     if Nkind (C) = N_Others_Choice then
+                     --  Matching others handler, but we need to ensure there
+                     --  is no choice parameter. If there is, then we don't
+                     --  have a local handler after all (since we do not allow
+                     --  choice parameters for local handlers).
 
-                        --  Matching others handler, but we need to ensure
-                        --  there is no choice parameter. If there is, then we
-                        --  don't have a local handler after all (since we do
-                        --  not allow choice parameters for local handlers).
-
-                        if No (Choice_Parameter (H)) then
-                           return H;
-                        else
-                           return Empty;
-                        end if;
+                     if No (Choice_Parameter (H)) then
+                        return H;
+                     else
+                        return Empty;
+                     end if;
 
-                     --  If not others must be entity name
+                  --  If not others must be entity name
 
-                     else
-                        pragma Assert (Is_Entity_Name (C));
-                        pragma Assert (Present (Entity (C)));
+                  else
+                     pragma Assert (Is_Entity_Name (C));
+                     pragma Assert (Present (Entity (C)));
 
-                        --  Get exception being handled, dealing with renaming
+                     --  Get exception being handled, dealing with renaming
 
-                        EHandle := Get_Renamed_Entity (Entity (C));
+                     EHandle := Get_Renamed_Entity (Entity (C));
 
-                        --  If match, then check choice parameter
+                     --  If match, then check choice parameter
 
-                        if ERaise = EHandle then
-                           if No (Choice_Parameter (H)) then
-                              return H;
-                           else
-                              return Empty;
-                           end if;
+                     if ERaise = EHandle then
+                        if No (Choice_Parameter (H)) then
+                           return H;
+                        else
+                           return Empty;
                         end if;
                      end if;
+                  end if;
 
-                     Next (C);
-                  end loop;
-               end if;
+                  Next (C);
+               end loop;
 
-               Next (H);
+               Next_Non_Pragma (H);
             end loop;
          end if;


More information about the Gcc-cvs mailing list