public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [COMMITTED] ada: Cleanup finding of locally handled exception handlers
@ 2023-06-13  7:37 Marc Poulhiès
  0 siblings, 0 replies; only message in thread
From: Marc Poulhiès @ 2023-06-13  7:37 UTC (permalink / raw)
  To: gcc-patches; +Cc: Piotr Trojanek

From: Piotr Trojanek <trojanek@adacore.com>

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.

Tested on x86_64-pc-linux-gnu, committed on master.

---
 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;
 
-- 
2.40.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-06-13  7:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-13  7:37 [COMMITTED] ada: Cleanup finding of locally handled exception handlers Marc Poulhiès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).