1 |
720 |
jeremybenn |
-- IMPDEFG.A
|
2 |
|
|
--
|
3 |
|
|
-- Grant of Unlimited Rights
|
4 |
|
|
--
|
5 |
|
|
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
|
6 |
|
|
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
|
7 |
|
|
-- unlimited rights in the software and documentation contained herein.
|
8 |
|
|
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
|
9 |
|
|
-- this public release, the Government intends to confer upon all
|
10 |
|
|
-- recipients unlimited rights equal to those held by the Government.
|
11 |
|
|
-- These rights include rights to use, duplicate, release or disclose the
|
12 |
|
|
-- released technical data and computer software in whole or in part, in
|
13 |
|
|
-- any manner and for any purpose whatsoever, and to have or permit others
|
14 |
|
|
-- to do so.
|
15 |
|
|
--
|
16 |
|
|
-- DISCLAIMER
|
17 |
|
|
--
|
18 |
|
|
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
|
19 |
|
|
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
|
20 |
|
|
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
|
21 |
|
|
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
|
22 |
|
|
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
|
23 |
|
|
-- PARTICULAR PURPOSE OF SAID MATERIAL.
|
24 |
|
|
--*
|
25 |
|
|
--
|
26 |
|
|
-- DESCRIPTION:
|
27 |
|
|
-- This package provides tailorable entities for a particular
|
28 |
|
|
-- implementation. Each entity may be modified to suit the needs
|
29 |
|
|
-- of the implementation. Default values are provided to act as
|
30 |
|
|
-- a guide.
|
31 |
|
|
--
|
32 |
|
|
-- The entities in this package are those which are used exclusively
|
33 |
|
|
-- in tests for Annex G (Numerics).
|
34 |
|
|
--
|
35 |
|
|
-- APPLICABILITY CRITERIA:
|
36 |
|
|
-- This package is only required for implementations validating the
|
37 |
|
|
-- Numerics Annex.
|
38 |
|
|
--
|
39 |
|
|
-- CHANGE HISTORY:
|
40 |
|
|
-- 29 Jan 96 SAIC Initial version for ACVC 2.1.
|
41 |
|
|
--
|
42 |
|
|
--!
|
43 |
|
|
|
44 |
|
|
package ImpDef.Annex_G is
|
45 |
|
|
|
46 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
47 |
|
|
|
48 |
|
|
-- This function must return a "negative zero" value for implementations
|
49 |
|
|
-- for which Float'Signed_Zeros is True.
|
50 |
|
|
|
51 |
|
|
function Negative_Zero return Float;
|
52 |
|
|
|
53 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
54 |
|
|
|
55 |
|
|
end ImpDef.Annex_G;
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
--==================================================================--
|
59 |
|
|
|
60 |
|
|
|
61 |
|
|
package body ImpDef.Annex_G is
|
62 |
|
|
|
63 |
|
|
|
64 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
65 |
|
|
|
66 |
|
|
-- This function must return a negative zero value for implementations
|
67 |
|
|
-- for which Float'Signed_Zeros is True.
|
68 |
|
|
-- We generate the smallest normalized negative number, and divide by a
|
69 |
|
|
-- few powers of two to obtain a number whose absolute value equals zero
|
70 |
|
|
-- but whose sign is negative.
|
71 |
|
|
|
72 |
|
|
function Negative_Zero return Float is
|
73 |
|
|
negz : float := -1.0 *
|
74 |
|
|
float (float'Machine_Radix)
|
75 |
|
|
** ( Float'Machine_Emin - Float'Machine_Mantissa);
|
76 |
|
|
begin
|
77 |
|
|
return negz / 8.0;
|
78 |
|
|
end Negative_Zero;
|
79 |
|
|
|
80 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
81 |
|
|
|
82 |
|
|
end ImpDef.Annex_G;
|
83 |
|
|
|