Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
opts-GCC.h
Go to the documentation of this file.
1
2/*============================================================================
3
4This C header file is part of the SoftFloat IEEE Floating-Point Arithmetic
5Package, Release 3e, by John R. Hauser.
6
7Copyright 2017 The Regents of the University of California. All rights
8reserved.
9
10Redistribution and use in source and binary forms, with or without
11modification, are permitted provided that the following conditions are met:
12
13 1. Redistributions of source code must retain the above copyright notice,
14 this list of conditions, and the following disclaimer.
15
16 2. Redistributions in binary form must reproduce the above copyright notice,
17 this list of conditions, and the following disclaimer in the documentation
18 and/or other materials provided with the distribution.
19
20 3. Neither the name of the University nor the names of its contributors may
21 be used to endorse or promote products derived from this software without
22 specific prior written permission.
23
24THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
25EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
27DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
28DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
35=============================================================================*/
36
37#ifndef opts_GCC_h
38#define opts_GCC_h 1
39
40#if 0
41#ifdef INLINE
42
43#include <stdint.h>
44#include "primitiveTypes.h"
45
46#ifdef SOFTFLOAT_BUILTIN_CLZ
47
49 { return a ? __builtin_clz( a ) - 16 : 16; }
50#define softfloat_countLeadingZeros16 softfloat_countLeadingZeros16
51
53 { return a ? __builtin_clz( a ) : 32; }
54#define softfloat_countLeadingZeros32 softfloat_countLeadingZeros32
55
57 { return a ? __builtin_clzll( a ) : 64; }
58#define softfloat_countLeadingZeros64 softfloat_countLeadingZeros64
59
60#endif
61
62#ifdef SOFTFLOAT_INTRINSIC_INT128
63
65{
66 union { unsigned __int128 ui; struct uint128 s; } uZ;
67 uZ.ui = (unsigned __int128) a * ((uint_fast64_t) b<<32);
68 return uZ.s;
69}
70#define softfloat_mul64ByShifted32To128 softfloat_mul64ByShifted32To128
71
73{
74 union { unsigned __int128 ui; struct uint128 s; } uZ;
75 uZ.ui = (unsigned __int128) a * b;
76 return uZ.s;
77}
78#define softfloat_mul64To128 softfloat_mul64To128
79
81struct uint128 softfloat_mul128By32( uint64_t a64, uint64_t a0, uint32_t b )
82{
83 union { unsigned __int128 ui; struct uint128 s; } uZ;
84 uZ.ui = ((unsigned __int128) a64<<64 | a0) * b;
85 return uZ.s;
86}
87#define softfloat_mul128By32 softfloat_mul128By32
88
90void
92 uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0, uint64_t *zPtr )
93{
94 unsigned __int128 z0, mid1, mid, z128;
95 z0 = (unsigned __int128) a0 * b0;
96 mid1 = (unsigned __int128) a64 * b0;
97 mid = mid1 + (unsigned __int128) a0 * b64;
98 z128 = (unsigned __int128) a64 * b64;
99 z128 += (unsigned __int128) (mid < mid1)<<64 | mid>>64;
100 mid <<= 64;
101 z0 += mid;
102 z128 += (z0 < mid);
103 zPtr[indexWord( 4, 0 )] = z0;
104 zPtr[indexWord( 4, 1 )] = z0>>64;
105 zPtr[indexWord( 4, 2 )] = z128;
106 zPtr[indexWord( 4, 3 )] = z128>>64;
107}
108#define softfloat_mul128To256M softfloat_mul128To256M
109
110#endif
111
112#endif
113
114#endif
115#endif
116
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
#define INLINE
Definition platform.h:46
#define indexWord(total, n)
#define softfloat_countLeadingZeros16
#define softfloat_countLeadingZeros32
#define softfloat_countLeadingZeros64
struct uint128 softfloat_mul128By32(uint64_t a64, uint64_t a0, uint32_t b)
#define softfloat_mul128To256M
struct uint128 softfloat_mul64ByShifted32To128(uint64_t a, uint32_t b)
struct uint128 softfloat_mul64To128(uint64_t a, uint64_t b)
unsigned short uint16_t
Definition stdint.h:125
unsigned int uint32_t
Definition stdint.h:126
uint64_t uint_fast64_t
Definition stdint.h:157
uint8_t uint_fast8_t
Definition stdint.h:154
unsigned __int64 uint64_t
Definition stdint.h:136
char * s