1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* OpenCL built-in library: mad_sat()
Copyright (c) 2011 Erik Schnetter <eschnetter@perimeterinstitute.ca>
Perimeter Institute for Theoretical Physics
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "templates.h"
// Decompose a and b into their upper and lower halves.
// C is 2^(N/2), where N is the number of bits in our datatype.
// al, bl, ah, bh are signed (if the datatype is signed).
// signed: 0 <= xl < C; -C/2 <= xh < C/2
// unsigned: 0 <= xl, xh < C
// This yields:
// a = ah C + al
// b = bh C + bl
// The multiplication can then be written as:
// a b = (ah C + al) (bh C + bl)
// = ah bh C C + (ah bl + al bh) C + al bl
// Note that none of the multiplications can overflow.
#define SLO(x) \
((gtype)(x) & (gtype)(((sgtype)1 << (sgtype)(bits/2)) - (sgtype)1))
#define SHI(x) ((gtype)(x) >> (sgtype)(bits/2))
#define SHI1(x) ((gtype)(x) >> (sgtype)(bits/2-1))
#define SULO(x) \
((ugtype)(x) & (ugtype)(((sugtype)1 << (sugtype)(bits/2)) - (sugtype)1))
#define SUHI(x) ((ugtype)(x) >> (sugtype)(bits/2))
#define SCOMBINE(hi,lo) \
((gtype)((gtype)((hi) << (sgtype)(bits/2)) + (gtype)(lo)))
#define ULO(x) \
((gtype)(x) & (gtype)(((sgtype)1 << (sgtype)(bits/2)) - (sgtype)1))
#define UHI(x) ((gtype)(x) >> (sgtype)(bits/2))
#define UHI1(x) ((gtype)(x) >> (sgtype)(bits/2-1))
#define UCOMBINE(hi,lo) \
((gtype)((gtype)((hi) << (sgtype)(bits/2)) + (gtype)(lo)))
#define U2S(x) ({ union { gtype s; ugtype u; } conv; conv.u=(x); conv.s; })
#define S2U(x) ({ union { gtype s; ugtype u; } conv; conv.s=(x); conv.u; })
DEFINE_EXPR_G_GGG(mad_sat,
(sgtype)-1 < (sgtype)0 ?
/* signed */
({
int bits = CHAR_BIT * sizeof(sgtype);
gtype min = (sgtype)1 << (sgtype)(bits-1);
gtype max = min - (sgtype)1;
gtype ah = SHI(a);
gtype al = SLO(a);
gtype bh = SHI(b);
gtype bl = SLO(b);
gtype ch = SHI(c);
gtype cl = SLO(c);
gtype ahbh = ah * bh;
gtype ahbl = ah * bl;
gtype albh = al * bh;
ugtype albl = S2U(al) * S2U(bl);
/* ugtype abcll = SULO(albl + S2U(cl)); */
/* gtype abclh = SLO(ahbl + ch + albh + SUHI(albl + S2U(cl))); */
ugtype alblcl = albl + S2U(cl);
gtype abcl = SCOMBINE(ahbl + albh + ch, U2S(alblcl));
gtype abch =
ahbh + SHI1(hadd((gtype)(ahbl + ch),
(gtype)(albh + U2S(SUHI(alblcl)))));
((abch == (gtype)0 && abcl >= (gtype)0) ||
(abch == (gtype)-1 && abcl < (gtype)0)) ?
/* no overflow */
abcl :
/* overflow */
abch>=(gtype)0 ? max : min;
}) :
/* unsigned */
({
int bits = CHAR_BIT * sizeof(sgtype);
gtype max = (sgtype)-1;
gtype ah = UHI(a);
gtype al = ULO(a);
gtype bh = UHI(b);
gtype bl = ULO(b);
gtype ch = UHI(c);
gtype cl = ULO(c);
gtype ahbh = ah * bh;
gtype ahbl = ah * bl;
gtype albh = al * bh;
gtype albl = al * bl;
/* gtype abcll = ULO(albl + cl); */
/* gtype abclh = ULO(ahbl + albh + ch + UHI(albl + cl)); */
gtype abcl = UCOMBINE(ahbl + albh + ch, albl + cl);
gtype abch =
ahbh + UHI1(hadd((gtype)(ahbl + ch),
(gtype)(albh + UHI(albl + cl))));
abch == (gtype)0 ?
/* no overflow */
abcl :
/* overflow */
max;
}))
|