[Ada] Do not use maximal values from System in runtime units
authorEric Botcazou <ebotcazou@adacore.com>
Tue, 23 Jun 2020 09:53:53 +0000 (11:53 +0200)
committerPierre-Marie de Rodat <derodat@adacore.com>
Thu, 15 Oct 2020 09:39:09 +0000 (05:39 -0400)
gcc/ada/

* libgnat/a-cfinve.adb (Int): Use subtype of Long_Long_Integer.
* libgnat/a-cofove.adb (Int): Likewise.
* libgnat/a-cgcaso.adb (T): Likewise.
* libgnat/a-cogeso.adb (T): Likewise.
* libgnat/g-debpoo.ads (Byte_Count): Use Long_Long_Integer'Size.

gcc/ada/libgnat/a-cfinve.adb
gcc/ada/libgnat/a-cgcaso.adb
gcc/ada/libgnat/a-cofove.adb
gcc/ada/libgnat/a-cogeso.adb
gcc/ada/libgnat/g-debpoo.ads

index 28e31d1c9407a5204798f825bafb92fb6b58b827..e424df072ca87b1b254431c49ec2ebac68bc921e 100644 (file)
@@ -40,7 +40,7 @@ is
    --  When growing a container, multiply current capacity by this. Doubling
    --  leads to amortized linear-time copying.
 
-   type Int is range System.Min_Int .. System.Max_Int;
+   subtype Int is Long_Long_Integer;
 
    procedure Free is
      new Ada.Unchecked_Deallocation (Elements_Array, Elements_Array_Ptr);
index 877ababe117d94947e983eb6ebe8b4372c6830e2..ff03b80af4779e5dc5a864ad3658276cd491df45 100644 (file)
 
 --  This algorithm was adapted from GNAT.Heap_Sort_G (see g-hesorg.ad[sb])
 
-with System;
-
 procedure Ada.Containers.Generic_Constrained_Array_Sort
   (Container : in out Array_Type)
 is
-   type T is range System.Min_Int .. System.Max_Int;
+   subtype T is Long_Long_Integer;
 
    function To_Index (J : T) return Index_Type;
    pragma Inline (To_Index);
index 41c69a8cc9aa54e8e2877423cbb7154ab3eb3a01..c8a60df2a3ddd90646ec87e1bd7d3fd64278d18c 100644 (file)
@@ -33,7 +33,7 @@ package body Ada.Containers.Formal_Vectors with
   SPARK_Mode => Off
 is
 
-   type Int is range System.Min_Int .. System.Max_Int;
+   subtype Int is Long_Long_Integer;
 
    function To_Array_Index (Index : Index_Type'Base) return Count_Type'Base;
 
index 7a717720532e3667f926f4b0260cff5dc5f3516a..2b6b05e5724e13327405508eefc354132ffb32e3 100644 (file)
 
 --  This algorithm was adapted from GNAT.Heap_Sort (see g-heasor.ad[sb])
 
-with System;
-
 procedure Ada.Containers.Generic_Sort (First, Last : Index_Type'Base) is
-   type T is range System.Min_Int .. System.Max_Int;
+   subtype T is Long_Long_Integer;
 
    function To_Index (J : T) return Index_Type;
    pragma Inline (To_Index);
index ed000fa1f35f2bde4c0ba6ed47a6df05f67f36ab..88cffe84183b1fb0c3700acc67a7b58ffd87773a 100644 (file)
@@ -299,7 +299,7 @@ package GNAT.Debug_Pools is
    --  If Valid is True, Size_In_Storage_Elements is set to the size of this
    --  chunk of memory.
 
-   type Byte_Count is mod System.Max_Binary_Modulus;
+   type Byte_Count is mod 2 ** Long_Long_Integer'Size;
    --  Type used for maintaining byte counts, needs to be large enough to
    --  to accommodate counts allowing for repeated use of the same memory.