]> gcc.gnu.org Git - gcc.git/commitdiff
ada: Adapt proof of runtime units
authorYannick Moy <moy@adacore.com>
Fri, 12 Jan 2024 11:30:38 +0000 (11:30 +0000)
committerMarc Poulhiès <poulhies@adacore.com>
Tue, 7 May 2024 07:55:54 +0000 (09:55 +0200)
Restore proof of runtime units after changes in SPARK.

gcc/ada/

* libgnat/a-strsea.adb (Index): Add assertions.
* libgnat/a-strsup.ads ("="): Remove useless precondition.
* libgnat/s-aridou.adb (Prove_Rounding_Case): Add assertions.
(Lemma_Shift_Right): Add call to lemma.
* libgnat/s-arit32.adb (Prove_Rounding_Case): Add assertion.
(Prove_ Signs): Add assertions.
(Scaled_Divide32): Add assertions.

gcc/ada/libgnat/a-strsea.adb
gcc/ada/libgnat/a-strsup.ads
gcc/ada/libgnat/s-aridou.adb
gcc/ada/libgnat/s-arit32.adb

index 1dad3be4f4ac64bae3c67ea57c4525e0dab8f550..54f12199fcc9749d63bb1e9ab0d52b6027dd0d11 100644 (file)
@@ -623,6 +623,7 @@ package body Ada.Strings.Search with SPARK_Mode is
            (if (for some J in From .. Source'Last - PL1 =>
                  Match (Source, Pattern, Mapping, J))
             then Result in From .. Source'Last - PL1
+              and then Match (Source, Pattern, Mapping, Result)
             else Result = 0);
 
       else
@@ -636,6 +637,7 @@ package body Ada.Strings.Search with SPARK_Mode is
            (if (for some J in Source'First .. From - PL1 =>
                   Match (Source, Pattern, Mapping, J))
             then Result in Source'First .. From - PL1
+              and then Match (Source, Pattern, Mapping, Result)
             else Result = 0);
       end if;
 
index cb1dcc9a0761ca0b8afd5b4055b74eddfef3a4d7..6c360f1982be0bd8d5f3ae6255e632c580a7c032 100644 (file)
@@ -689,7 +689,6 @@ is
      (Left  : Super_String;
       Right : Super_String) return Boolean
    with
-     Pre    => Left.Max_Length = Right.Max_Length,
      Post   => "="'Result = (Super_To_String (Left) = Super_To_String (Right)),
      Global => null;
 
index ac25e6a9183a3dc91022f9e85197ff3b2334b3a0..6f27487db37111c71aed678151fc2c29dbd836fa 100644 (file)
@@ -971,7 +971,7 @@ is
       procedure Prove_Rounding_Case is
       begin
          if Same_Sign (Big (X), Big (Y) * Big (Z)) then
-            null;
+            pragma Assert (abs Big_Q = Big (Qu));
          end if;
       end Prove_Rounding_Case;
 
@@ -1603,6 +1603,7 @@ is
          pragma Loop_Invariant (XX = Shift_Right (X, J));
          pragma Loop_Invariant (XX = X / Double_Uns'(2) ** J);
       end loop;
+      Lemma_Div_Commutation (X, Double_Uns'(2) ** Shift);
    end Lemma_Shift_Right;
 
    ------------------------------
@@ -2441,7 +2442,11 @@ is
       procedure Prove_Rounding_Case is
       begin
          if Same_Sign (Big (X) * Big (Y), Big (Z)) then
-            null;
+            pragma Assert
+              (abs Big_Q =
+                 (if Ru > (Zu - Double_Uns'(1)) / Double_Uns'(2)
+                  then abs Quot + 1
+                  else abs Quot));
          end if;
       end Prove_Rounding_Case;
 
index 59a6db08199dde044f007d13587ca314d23a1472..221ef1e635eb5f221a03d649ef1a72190c8afec0 100644 (file)
@@ -415,7 +415,11 @@ is
       procedure Prove_Rounding_Case is
       begin
          if Same_Sign (Big (X) * Big (Y), Big (Z)) then
-            null;
+            pragma Assert
+              (abs Big_Q =
+                 (if Ru > (Zu - Uns32'(1)) / Uns32'(2)
+                  then abs Quot + 1
+                  else abs Quot));
          end if;
       end Prove_Rounding_Case;
 
@@ -432,7 +436,14 @@ is
       -- Prove_Signs --
       -----------------
 
-      procedure Prove_Signs is null;
+      procedure Prove_Signs is
+      begin
+         if (X >= 0) = (Y >= 0) then
+            pragma Assert (Big (R) = Big_R and then Big (Q) = Big_Q);
+         else
+            pragma Assert (Big (R) = Big_R and then Big (Q) = Big_Q);
+         end if;
+      end Prove_Signs;
 
    --  Start of processing for Scaled_Divide32
 
@@ -483,6 +494,8 @@ is
       Lemma_Div_Commutation (D, Uns64 (Zu));
       Lemma_Rem_Commutation (D, Uns64 (Zu));
 
+      pragma Assert (Uns64 (Qu) = D / Uns64 (Zu));
+      pragma Assert (Uns64 (Ru) = D rem Uns64 (Zu));
       pragma Assert (Big (Ru) = abs Big_R);
       pragma Assert (Big (Qu) = abs Quot);
       pragma Assert (Big (Zu) = Big (Uns32'(abs Z)));
This page took 0.079866 seconds and 5 git commands to generate.