OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [cxg/] [cxg1002.a] - Diff between revs 294 and 338

Only display areas with differences | Details | Blame | View Log

Rev 294 Rev 338
-- CXG1002.A
-- CXG1002.A
--
--
--                             Grant of Unlimited Rights
--                             Grant of Unlimited Rights
--
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     unlimited rights in the software and documentation contained herein.
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     this public release, the Government intends to confer upon all
--     this public release, the Government intends to confer upon all
--     recipients unlimited rights  equal to those held by the Government.
--     recipients unlimited rights  equal to those held by the Government.
--     These rights include rights to use, duplicate, release or disclose the
--     These rights include rights to use, duplicate, release or disclose the
--     released technical data and computer software in whole or in part, in
--     released technical data and computer software in whole or in part, in
--     any manner and for any purpose whatsoever, and to have or permit others
--     any manner and for any purpose whatsoever, and to have or permit others
--     to do so.
--     to do so.
--
--
--                                    DISCLAIMER
--                                    DISCLAIMER
--
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--*
--
--
-- OBJECTIVE:
-- OBJECTIVE:
--      Check that the subprograms defined in the package
--      Check that the subprograms defined in the package
--      Ada.Numerics.Generic_Complex_Types provide the prescribed results.
--      Ada.Numerics.Generic_Complex_Types provide the prescribed results.
--      Specifically, check the various versions of functions "+" and "-".
--      Specifically, check the various versions of functions "+" and "-".
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      This test checks that the subprograms "+" and "-" defined in the
--      This test checks that the subprograms "+" and "-" defined in the
--      Generic_Complex_Types package provide the results prescribed for the
--      Generic_Complex_Types package provide the results prescribed for the
--      evaluation of these complex arithmetic operations.  The functions
--      evaluation of these complex arithmetic operations.  The functions
--      Re and Im are used to extract the appropriate component of the
--      Re and Im are used to extract the appropriate component of the
--      complex result, in order that the prescribed result component can be
--      complex result, in order that the prescribed result component can be
--      verified.
--      verified.
--      The generic package is instantiated with a real type (new Float),
--      The generic package is instantiated with a real type (new Float),
--      and the results produced by the specified subprograms are verified.
--      and the results produced by the specified subprograms are verified.
--
--
-- SPECIAL REQUIREMENTS:
-- SPECIAL REQUIREMENTS:
--      This test can be run in either "relaxed" or "strict" mode.
--      This test can be run in either "relaxed" or "strict" mode.
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--
--
--!
--!
with Ada.Numerics.Generic_Complex_Types;
with Ada.Numerics.Generic_Complex_Types;
with Report;
with Report;
procedure CXG1002 is
procedure CXG1002 is
begin
begin
   Report.Test ("CXG1002", "Check that the subprograms defined in " &
   Report.Test ("CXG1002", "Check that the subprograms defined in " &
                           "the package Ada.Numerics.Generic_Complex_Types " &
                           "the package Ada.Numerics.Generic_Complex_Types " &
                           "provide the prescribed results");
                           "provide the prescribed results");
   Test_Block:
   Test_Block:
   declare
   declare
      type Real_Type is new Float;
      type Real_Type is new Float;
      package Complex_Pack is new
      package Complex_Pack is new
        Ada.Numerics.Generic_Complex_Types(Real_Type);
        Ada.Numerics.Generic_Complex_Types(Real_Type);
      use Complex_Pack;
      use Complex_Pack;
      -- Declare a zero valued complex number using the record
      -- Declare a zero valued complex number using the record
      -- aggregate approach.
      -- aggregate approach.
      Complex_Zero : constant Complex_Pack.Complex := (0.0, 0.0);
      Complex_Zero : constant Complex_Pack.Complex := (0.0, 0.0);
      TC_Complex,
      TC_Complex,
      TC_Complex_Right,
      TC_Complex_Right,
      TC_Complex_Left   : Complex_Pack.Complex := Complex_Zero;
      TC_Complex_Left   : Complex_Pack.Complex := Complex_Zero;
      TC_Real           : Real_Type := 0.0;
      TC_Real           : Real_Type := 0.0;
      TC_Imaginary      : Complex_Pack.Imaginary;
      TC_Imaginary      : Complex_Pack.Imaginary;
   begin
   begin
      -- Check that the imaginary component of the result of a binary addition
      -- Check that the imaginary component of the result of a binary addition
      -- operator that yields a result of complex type is exact when either
      -- operator that yields a result of complex type is exact when either
      -- of its operands is of pure-real type.
      -- of its operands is of pure-real type.
      TC_Complex := Compose_From_Cartesian(2.0, 3.0);
      TC_Complex := Compose_From_Cartesian(2.0, 3.0);
      TC_Real    := 3.0;
      TC_Real    := 3.0;
      if Im("+"(Left => TC_Complex, Right => TC_Real))  /=  3.0 or
      if Im("+"(Left => TC_Complex, Right => TC_Real))  /=  3.0 or
         Im("+"(TC_Complex, 6.0))                       /=  3.0 or
         Im("+"(TC_Complex, 6.0))                       /=  3.0 or
         Im(TC_Complex + TC_Real)                       /=  3.0 or
         Im(TC_Complex + TC_Real)                       /=  3.0 or
         Im(TC_Complex + 5.0)                           /=  3.0 or
         Im(TC_Complex + 5.0)                           /=  3.0 or
         Im((7.0, 2.0) + 1.0)                           /=  2.0 or
         Im((7.0, 2.0) + 1.0)                           /=  2.0 or
         Im((7.0, 5.0) + (-2.0))                        /=  5.0 or
         Im((7.0, 5.0) + (-2.0))                        /=  5.0 or
         Im((-7.0, -2.0) + 1.0)                         /= -2.0 or
         Im((-7.0, -2.0) + 1.0)                         /= -2.0 or
         Im((-7.0, -3.0) + (-3.0))                      /= -3.0
         Im((-7.0, -3.0) + (-3.0))                      /= -3.0
      then
      then
         Report.Failed("Incorrect results from Function ""+"" with " &
         Report.Failed("Incorrect results from Function ""+"" with " &
                       "one Complex and one Real argument - 1");
                       "one Complex and one Real argument - 1");
      end if;
      end if;
      if Im("+"(Left => TC_Real, Right => TC_Complex))  /=   3.0  or
      if Im("+"(Left => TC_Real, Right => TC_Complex))  /=   3.0  or
         Im("+"(4.0, TC_Complex))                       /=   3.0  or
         Im("+"(4.0, TC_Complex))                       /=   3.0  or
         Im(TC_Real + TC_Complex)                       /=   3.0  or
         Im(TC_Real + TC_Complex)                       /=   3.0  or
         Im(9.0 + TC_Complex)                           /=   3.0  or
         Im(9.0 + TC_Complex)                           /=   3.0  or
         Im(1.0 + (7.0, -9.0))                          /=  -9.0  or
         Im(1.0 + (7.0, -9.0))                          /=  -9.0  or
         Im((-2.0) + (7.0, 2.0))                        /=   2.0  or
         Im((-2.0) + (7.0, 2.0))                        /=   2.0  or
         Im(1.0 + (-7.0, -5.0))                         /=  -5.0  or
         Im(1.0 + (-7.0, -5.0))                         /=  -5.0  or
         Im((-3.0) + (-7.0, 16.0))                      /=  16.0
         Im((-3.0) + (-7.0, 16.0))                      /=  16.0
      then
      then
         Report.Failed("Incorrect results from Function ""+"" with " &
         Report.Failed("Incorrect results from Function ""+"" with " &
                       "one Complex and one Real argument - 2");
                       "one Complex and one Real argument - 2");
      end if;
      end if;
      -- Check that the imaginary component of the result of a binary
      -- Check that the imaginary component of the result of a binary
      -- subtraction operator that yields a result of complex type is exact
      -- subtraction operator that yields a result of complex type is exact
      -- when its right operand is of pure-real type.
      -- when its right operand is of pure-real type.
      TC_Complex := (8.0, -4.0);
      TC_Complex := (8.0, -4.0);
      TC_Real    := 2.0;
      TC_Real    := 2.0;
      if Im("-"(Left => TC_Complex, Right => TC_Real))  /=  -4.0  or
      if Im("-"(Left => TC_Complex, Right => TC_Real))  /=  -4.0  or
         Im("-"(TC_Complex, 5.0))                       /=  -4.0  or
         Im("-"(TC_Complex, 5.0))                       /=  -4.0  or
         Im(TC_Complex - TC_Real)                       /=  -4.0  or
         Im(TC_Complex - TC_Real)                       /=  -4.0  or
         Im(TC_Complex - 4.0)                           /=  -4.0  or
         Im(TC_Complex - 4.0)                           /=  -4.0  or
         Im((6.0, 5.0) - 1.0)                           /=   5.0  or
         Im((6.0, 5.0) - 1.0)                           /=   5.0  or
         Im((6.0, 13.0) - 7.0)                          /=  13.0  or
         Im((6.0, 13.0) - 7.0)                          /=  13.0  or
         Im((-5.0, 3.0) - (2.0))                        /=   3.0  or
         Im((-5.0, 3.0) - (2.0))                        /=   3.0  or
         Im((-5.0, -6.0) - (-3.0))                      /=  -6.0
         Im((-5.0, -6.0) - (-3.0))                      /=  -6.0
      then
      then
         Report.Failed("Incorrect results from Function ""-"" with " &
         Report.Failed("Incorrect results from Function ""-"" with " &
                       "one Complex and one Real argument");
                       "one Complex and one Real argument");
      end if;
      end if;
      -- Check that the real component of the result of a binary addition
      -- Check that the real component of the result of a binary addition
      -- operator that yields a result of complex type is exact when either
      -- operator that yields a result of complex type is exact when either
      -- of its operands is of pure-imaginary type.
      -- of its operands is of pure-imaginary type.
      TC_Complex := (5.0, 0.0);
      TC_Complex := (5.0, 0.0);
      if Re("+"(Left => TC_Complex, Right => i))  /=   5.0 or
      if Re("+"(Left => TC_Complex, Right => i))  /=   5.0 or
         Re("+"(Complex_Pack.j, TC_Complex))      /=   5.0 or
         Re("+"(Complex_Pack.j, TC_Complex))      /=   5.0 or
         Re((-8.0,  5.0) + ( 2.0*i))              /=  -8.0 or
         Re((-8.0,  5.0) + ( 2.0*i))              /=  -8.0 or
         Re((2.0,  5.0) + (-2.0*i))               /=   2.0 or
         Re((2.0,  5.0) + (-2.0*i))               /=   2.0 or
         Re((-20.0, -5.0) + ( 3.0*i))             /= -20.0 or
         Re((-20.0, -5.0) + ( 3.0*i))             /= -20.0 or
         Re((6.0, -5.0) + (-3.0*i))               /=   6.0
         Re((6.0, -5.0) + (-3.0*i))               /=   6.0
      then
      then
         Report.Failed("Incorrect results from Function ""+"" with " &
         Report.Failed("Incorrect results from Function ""+"" with " &
                       "one Complex and one Imaginary argument");
                       "one Complex and one Imaginary argument");
      end if;
      end if;
      -- Check that the real component of the result of a binary
      -- Check that the real component of the result of a binary
      -- subtraction operator that yields a result of complex type is exact
      -- subtraction operator that yields a result of complex type is exact
      -- when its right operand is of pure-imaginary type.
      -- when its right operand is of pure-imaginary type.
      TC_Complex := TC_Complex + i;    -- Should produce (5.0, 1.0)
      TC_Complex := TC_Complex + i;    -- Should produce (5.0, 1.0)
      if Re("-"(TC_Complex, i))                   /=  5.0 or
      if Re("-"(TC_Complex, i))                   /=  5.0 or
         Re((-4.0,  4.0) - ( 2.0*i))              /= -4.0 or
         Re((-4.0,  4.0) - ( 2.0*i))              /= -4.0 or
         Re((9.0,  4.0) - ( 5.0*i))               /=  9.0 or
         Re((9.0,  4.0) - ( 5.0*i))               /=  9.0 or
         Re((16.0, -5.0) - ( 3.0*i))              /= 16.0 or
         Re((16.0, -5.0) - ( 3.0*i))              /= 16.0 or
         Re((-3.0, -5.0) - (-4.0*i))              /= -3.0
         Re((-3.0, -5.0) - (-4.0*i))              /= -3.0
      then
      then
         Report.Failed("Incorrect results from Function ""-"" with " &
         Report.Failed("Incorrect results from Function ""-"" with " &
                       "one Complex and one Imaginary argument");
                       "one Complex and one Imaginary argument");
      end if;
      end if;
      -- Check that the result of a binary addition operation is exact when
      -- Check that the result of a binary addition operation is exact when
      -- one of its operands is of real type and the other is of
      -- one of its operands is of real type and the other is of
      -- pure-imaginary type; the operator is analogous to the
      -- pure-imaginary type; the operator is analogous to the
      -- Compose_From_Cartesian function; it performs no arithmetic.
      -- Compose_From_Cartesian function; it performs no arithmetic.
      TC_Complex := Complex_Pack."+"(5.0, Complex_Pack.i);
      TC_Complex := Complex_Pack."+"(5.0, Complex_Pack.i);
      if TC_Complex                   /= (5.0, 1.0) or
      if TC_Complex                   /= (5.0, 1.0) or
         (4.0 + i)                    /= (4.0, 1.0) or
         (4.0 + i)                    /= (4.0, 1.0) or
         "+"(Left => j, Right => 3.0) /= (3.0, 1.0)
         "+"(Left => j, Right => 3.0) /= (3.0, 1.0)
      then
      then
         Report.Failed("Incorrect results from Function ""+"" with " &
         Report.Failed("Incorrect results from Function ""+"" with " &
                       "one Real and one Imaginary argument");
                       "one Real and one Imaginary argument");
      end if;
      end if;
   exception
   exception
      when others => Report.Failed ("Exception raised in Test_Block");
      when others => Report.Failed ("Exception raised in Test_Block");
   end Test_Block;
   end Test_Block;
   Report.Result;
   Report.Result;
end CXG1002;
end CXG1002;
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.