]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ada: Minor performance improvement for dynamically-allocated controlled objects
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 22 Feb 2024 07:47:42 +0000 (08:47 +0100)
committerMarc Poulhiès <poulhies@adacore.com>
Thu, 16 May 2024 08:49:30 +0000 (10:49 +0200)
The values returned by Header_Alignment and Header_Size are known at compile
time and powers of two on almost all platforms, so inlining them by means of
an expression function improves the object code generated for alignment and
size calculations involving them.

gcc/ada/

* libgnat/s-finpri.ads: Add use type clause for Storage_Offset.
(Header_Alignment): Turn into an expression function.
(Header_Size): Likewise.
* libgnat/s-finpri.adb: Remove use type clause for Storage_Offset.
(Header_Alignment): Delete.
(Header_Size): Likewise.

gcc/ada/libgnat/s-finpri.adb
gcc/ada/libgnat/s-finpri.ads

index 5bd8eeaea221017a6a83ca52b4beed629b1bdb71..bd70e582de3d87d631f3329c5b5b8ba253a38f49 100644 (file)
@@ -37,8 +37,6 @@ with System.Soft_Links;        use System.Soft_Links;
 
 package body System.Finalization_Primitives is
 
-   use type System.Storage_Elements.Storage_Offset;
-
    function To_Collection_Node_Ptr is
      new Ada.Unchecked_Conversion (Address, Collection_Node_Ptr);
 
@@ -389,24 +387,6 @@ package body System.Finalization_Primitives is
       end if;
    end Finalize_Object;
 
-   ----------------------
-   -- Header_Alignment --
-   ----------------------
-
-   function Header_Alignment return System.Storage_Elements.Storage_Count is
-   begin
-      return Collection_Node'Alignment;
-   end Header_Alignment;
-
-   -----------------
-   -- Header_Size --
-   -----------------
-
-   function Header_Size return System.Storage_Elements.Storage_Count is
-   begin
-      return Collection_Node'Object_Size / Storage_Unit;
-   end Header_Size;
-
    ----------------
    -- Initialize --
    ----------------
index 468aa5849588b52919085503449cb063ad44f1f7..b0b662ca39c51b422e66c4fe3a179b83ac7bd14e 100644 (file)
@@ -39,6 +39,8 @@ with System.Storage_Elements;
 
 package System.Finalization_Primitives with Preelaborate is
 
+   use type System.Storage_Elements.Storage_Offset;
+
    type Finalize_Address_Ptr is access procedure (Obj : System.Address);
    --  Values of this type denote finalization procedures associated with
    --  objects that have controlled parts. For convenience, such objects
@@ -168,10 +170,12 @@ package System.Finalization_Primitives with Preelaborate is
    --  Calls to the procedure with an object that has already been detached
    --  have no effects.
 
-   function Header_Alignment return System.Storage_Elements.Storage_Count;
+   function Header_Alignment return System.Storage_Elements.Storage_Count is
+     (Collection_Node'Alignment);
    --  Return the alignment of type Collection_Node as Storage_Count
 
-   function Header_Size return System.Storage_Elements.Storage_Count;
+   function Header_Size return System.Storage_Elements.Storage_Count is
+     (Collection_Node'Object_Size / Storage_Unit);
    --  Return the object size of type Collection_Node as Storage_Count
 
 private