------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . G E N E R I C _ V E C T O R _ O P E R A T I O N S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2002-2025, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- . -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; use System.Storage_Elements; with Ada.Unchecked_Conversion; package body System.Generic_Vector_Operations is IU : constant Integer := Integer (Storage_Unit); VU : constant Storage_Count := Storage_Count (Vectors.Vector'Size / IU); EU : constant Storage_Count := Storage_Count (Element_Array'Component_Size / IU); ---------------------- -- Binary_Operation -- ---------------------- procedure Binary_Operation (R, X, Y : System.Address; Length : System.Storage_Elements.Storage_Count) is VI : constant Integer_Address := Integer_Address (VU); Unaligned : constant Integer_Address := (if R mod VU /= 0 or X mod VU /= 0 or Y mod VU /= 0 then 0 else -1); -- Zero iff one or more argument addresses is not aligned, else all 1's type Vector_Ptr is access all Vectors.Vector; type Element_Ptr is access all Element; function VP is new Ada.Unchecked_Conversion (Address, Vector_Ptr); function EP is new Ada.Unchecked_Conversion (Address, Element_Ptr); pragma Assert (VI > 0); -- VI = VU -- VU = Vectors.Vector'Size / Storage_Unit -- Vector'Size = System.Word_Size -- System.Word_Size is a multiple of Storage_Unit -- Vector'Size > Storage_Unit -- VI > 0 SA : constant Address := X + Storage_Offset ((Integer_Address (Length) / VI * VI) and Unaligned); -- First address of argument X to start serial processing RA : Address := R; XA : Address := X; YA : Address := Y; -- Address of next element to process in R, X and Y begin while XA < SA loop VP (RA).all := Vector_Op (VP (XA).all, VP (YA).all); XA := XA + VU; YA := YA + VU; RA := RA + VU; end loop; while XA < X + Length loop EP (RA).all := Element_Op (EP (XA).all, EP (YA).all); XA := XA + EU; YA := YA + EU; RA := RA + EU; end loop; end Binary_Operation; ---------------------- -- Unary_Operation -- ---------------------- procedure Unary_Operation (R, X : System.Address; Length : System.Storage_Elements.Storage_Count) is VI : constant Integer_Address := Integer_Address (VU); Unaligned : constant Integer_Address := (if R mod VU /= 0 or X mod VU /= 0 then 0 else -1); -- Zero iff one or more argument addresses is not aligned, else all 1's type Vector_Ptr is access all Vectors.Vector; type Element_Ptr is access all Element; function VP is new Ada.Unchecked_Conversion (Address, Vector_Ptr); function EP is new Ada.Unchecked_Conversion (Address, Element_Ptr); pragma Assert (VI > 0); -- VI = VU -- VU = Vectors.Vector'Size / Storage_Unit -- Vector'Size = System.Word_Size -- System.Word_Size is a multiple of Storage_Unit -- Vector'Size > Storage_Unit -- VI > 0 SA : constant Address := X + Storage_Offset ((Integer_Address (Length) / VI * VI) and Unaligned); -- First address of argument X to start serial processing RA : Address := R; XA : Address := X; -- Address of next element to process in R and X begin while XA < SA loop VP (RA).all := Vector_Op (VP (XA).all); XA := XA + VU; RA := RA + VU; end loop; while XA < X + Length loop EP (RA).all := Element_Op (EP (XA).all); XA := XA + EU; RA := RA + EU; end loop; end Unary_Operation; end System.Generic_Vector_Operations;