/usr/include/seqan/basic/basic_sse2.h is in seqan-dev 1.3-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2010, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
#ifndef SEQAN_HEADER_BASIC_SSE2_H
#define SEQAN_HEADER_BASIC_SSE2_H
//SEQAN_NO_GENERATED_FORWARDS: no forwards are generated for this file
#ifdef SEQAN_USE_SSE2_WORDS
#ifdef __SSE2__
#include <emmintrin.h>
namespace SEQAN_NAMESPACE_MAIN
{
// #define __int128 Sse2Int128
#ifndef SEQAN_SSE2_INT128
#define SEQAN_SSE2_INT128
#endif
// ATTENTION:
// The Sse2Int128 struct must be 16-byte aligned. Some allocators
// don't ensure the correct alignment, e.g. the STL allocators.
// Either avoid STL classes holding Sse2Int128 structs (maps in find_pex.h)
// or avoid the SEQAN_USE_SSE2_WORDS define above.
// may become obsolete when 128-bit integers will be introduced
struct Sse2Int128
{
public:
union {
__m128i v;
__uint64 v64[2];
unsigned v32[4];
} data;
//____________________________________________________________________________
public:
Sse2Int128();
Sse2Int128(Sse2Int128 const &);
Sse2Int128(__m128i const &);
Sse2Int128(__int64, __int64);
Sse2Int128(int, int, int, int);
Sse2Int128(short, short, short, short, short, short, short, short);
template <typename TValue>
Sse2Int128(TValue const &);
//____________________________________________________________________________
template <typename TValue>
Sse2Int128 & operator = (TValue const &);
//____________________________________________________________________________
operator __m128i () const;
operator __int64 () const;
/* operator bool () const;
operator __uint64 ();
operator int ();
operator unsigned int ();
operator short ();
operator unsigned short ();
operator char ();
operator signed char ();
operator unsigned char ();
*/ };
template <> struct IsSimple_<__m128i> { typedef True Type; };
template <> struct IsSimple_<Sse2Int128> { typedef True Type; };
//____________________________________________________________________________
// clear
inline void
clear(Sse2Int128 &me)
{
me.data.v = _mm_setzero_si128();
}
//____________________________________________________________________________
// assign
inline void
assign(Sse2Int128 &me, Sse2Int128 const &other)
{
me.data = other.data;
}
// 1x 128bit
inline void
assign(Sse2Int128 &me, __m128i const &other)
{
me.data.v = other;
}
inline Sse2Int128::operator __m128i () const
{
return data.v;
}
// 64bit => 128bit
inline void
assign(Sse2Int128 &me, __int64 other)
{
me.data.v = _mm_set_epi32(0, 0, other >> 32, other);
}
inline void
assign(Sse2Int128 &me, __uint64 other)
{
me.data.v = _mm_set_epi32(0, 0, other >> 32, other);
}
// 64bit <= 128bit
inline Sse2Int128::operator __int64 () const
{
return data.v64[0];
}
/*inline Sse2Int128::operator __uint64 ()
{
return data.v64[0];
}
*/
// 32bit => 128bit
inline void
assign(Sse2Int128 &me, int other)
{
me.data.v = _mm_set_epi32(0, 0, 0, other);
}
inline void
assign(Sse2Int128 &me, unsigned int other)
{
me.data.v = _mm_set_epi32(0, 0, 0, other);
}
// 32bit <= 128bit
/*inline Sse2Int128::operator int ()
{
return data.v32[0];
}
inline Sse2Int128::operator unsigned int ()
{
return data.v32[0];
}
*/
// 16bit => 128bit
inline void
assign(Sse2Int128 &me, short other)
{
me.data.v = _mm_set_epi16(0, 0, 0, 0, 0, 0, 0, other);
}
inline void
assign(Sse2Int128 &me, unsigned short other)
{
me.data.v = _mm_set_epi16(0, 0, 0, 0, 0, 0, 0, other);
}
// 16bit <= 128bit
/*inline Sse2Int128::operator short ()
{
return _mm_extract_epi16(data.v, 0);
}
inline Sse2Int128::operator unsigned short ()
{
return _mm_extract_epi16(data.v, 0);
}
*/
// 8bit => 128bit
inline void
assign(Sse2Int128 &me, char other)
{
me.data.v = _mm_set_epi8(
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, other);
}
inline void
assign(Sse2Int128 &me, signed char other)
{
me.data.v = _mm_set_epi8(
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, other);
}
inline void
assign(Sse2Int128 &me, unsigned char other)
{
me.data.v = _mm_set_epi8(
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, other);
}
// 8bit <= 128bit
/*inline Sse2Int128::operator char ()
{
return _mm_extract_epi16(data.v, 0);
}
inline Sse2Int128::operator signed char ()
{
return _mm_extract_epi16(data.v, 0);
}
inline Sse2Int128::operator unsigned char ()
{
return _mm_extract_epi16(data.v, 0);
}
inline Sse2Int128::operator bool () const
{
return (__int64)(Sse2Int128)_mm_or_si128(data.v, _mm_unpackhi_epi64(data.v, data.v));
}
*/
//____________________________________________________________________________
// constructors
inline Sse2Int128::Sse2Int128()
{
clear(*this);
}
inline Sse2Int128::Sse2Int128(Sse2Int128 const &other)
{
assign(*this, other);
}
inline Sse2Int128::Sse2Int128(__m128i const &other)
{
assign(*this, other);
}
// 2x 64bit
inline Sse2Int128::Sse2Int128(__int64 q1, __int64 q0)
{
data.v = _mm_set_epi32(q1 >> 32, q1, q0 >> 32, q0);
}
// 4x 32bit
inline Sse2Int128::Sse2Int128(int q3, int q2, int q1, int q0)
{
data.v = _mm_set_epi32(q3, q2, q1, q0);
}
// 8x 16bit
inline Sse2Int128::Sse2Int128(
short q7, short q6, short q5, short q4,
short q3, short q2, short q1, short q0)
{
data.v = _mm_set_epi16(q7, q6, q5, q4, q3, q2, q1, q0);
}
template <typename TValue>
inline Sse2Int128::Sse2Int128(TValue const &other)
{
assign(*this, other);
}
//____________________________________________________________________________
// operator =
template <typename TValue>
inline Sse2Int128 &
Sse2Int128::operator = (TValue const &other)
{
assign(*this, other);
return *this;
}
//____________________________________________________________________________
// logical operators
inline Sse2Int128
operator & (Sse2Int128 const &a, Sse2Int128 const &b)
{
return _mm_and_si128((__m128i)a, (__m128i)b);
}
inline Sse2Int128
operator &= (Sse2Int128 &a, Sse2Int128 const &b)
{
a.data.v = _mm_and_si128((__m128i)a, (__m128i)b);
return a;
}
inline Sse2Int128
operator | (Sse2Int128 const &a, Sse2Int128 const &b)
{
return _mm_or_si128((__m128i)a, (__m128i)b);
}
inline Sse2Int128
operator |= (Sse2Int128 &a, Sse2Int128 const &b)
{
a.data.v = _mm_or_si128((__m128i)a, (__m128i)b);
return a;
}
inline Sse2Int128
operator ^ (Sse2Int128 const &a, Sse2Int128 const &b)
{
return _mm_xor_si128((__m128i)a, (__m128i)b);
}
inline Sse2Int128
operator ^= (Sse2Int128 &a, Sse2Int128 const &b)
{
a.data.v = _mm_xor_si128((__m128i)a, (__m128i)b);
return a;
}
inline Sse2Int128
operator ~ (Sse2Int128 const &a)
{
__m128i _a = (__m128i)a;
return _mm_xor_si128(_a, _mm_cmpeq_epi32(_a, _a));
}
//____________________________________________________________________________
// shift operators
inline Sse2Int128
operator << (Sse2Int128 const &a, int n)
{
return _mm_or_si128(
// n <= 64
_mm_or_si128(
_mm_sll_epi64((__m128i)a, (Sse2Int128)n),
_mm_srl_epi64(
_mm_unpacklo_epi64(_mm_setzero_si128(), (__m128i)a),
(Sse2Int128)(64-n)
)
),
// n >= 64
_mm_sll_epi64(
_mm_unpacklo_epi64(_mm_setzero_si128(), (__m128i)a),
(Sse2Int128)(n-64)
)
);
}
inline Sse2Int128
operator <<= (Sse2Int128 &a, int n)
{
a.data.v = _mm_or_si128(
// n <= 64
_mm_or_si128(
_mm_sll_epi64((__m128i)a, (Sse2Int128)n),
_mm_srl_epi64(
_mm_unpacklo_epi64(_mm_setzero_si128(), (__m128i)a),
(Sse2Int128)(64-n)
)
),
// n >= 64
_mm_sll_epi64(
_mm_unpacklo_epi64(_mm_setzero_si128(), (__m128i)a),
(Sse2Int128)(n-64)
)
);
return a;
}
inline Sse2Int128
operator << (Sse2Int128 const &a, unsigned int n)
{
return a << (int)n;
}
inline Sse2Int128
operator <<= (Sse2Int128 &a, unsigned int n)
{
return a <<= (int)n;
}
inline Sse2Int128
operator >> (Sse2Int128 const &a, int n)
{
return _mm_or_si128(
// n <= 64
_mm_or_si128(
_mm_srl_epi64((__m128i)a, (Sse2Int128)n),
_mm_sll_epi64(
_mm_unpackhi_epi64(a.data.v, _mm_setzero_si128()),
(Sse2Int128)(64-n)
)
),
// n >= 64
_mm_srl_epi64(
_mm_unpackhi_epi64((__m128i)a, _mm_setzero_si128()),
(Sse2Int128)(n-64)
)
);
}
inline Sse2Int128
operator >>= (Sse2Int128 &a, int n)
{
a.data.v = _mm_or_si128(
// n <= 64
_mm_or_si128(
_mm_srl_epi64((__m128i)a, (Sse2Int128)n),
_mm_sll_epi64(
_mm_unpackhi_epi64((__m128i)a, _mm_setzero_si128()),
(Sse2Int128)(64-n)
)
),
// n >= 64
_mm_srl_epi64(
_mm_unpackhi_epi64((__m128i)a, _mm_setzero_si128()),
(Sse2Int128)(n-64)
)
);
return a;
}
inline Sse2Int128
operator >> (Sse2Int128 const &a, unsigned int n)
{
return a >> (int)n;
}
inline Sse2Int128
operator >>= (Sse2Int128 &a, unsigned int n)
{
return a >>= (int)n;
}
//____________________________________________________________________________
// artihmetic operators
//template <typename T>
inline Sse2Int128
operator + (Sse2Int128 const &a, Sse2Int128 const &b)
{
static const __m128i carry = Sse2Int128(0, 1, 0, 0);
union {
__uint64 v64[2];
__m128i v;
} _sum;
_sum.v = _mm_add_epi64((__m128i)a, (__m128i)b);
if (_sum.v64[0] >= a.data.v64[0])
return _sum.v;
else
return _mm_add_epi64(_sum.v, carry);
}
//template <typename T>
inline Sse2Int128
operator - (Sse2Int128 const &a, Sse2Int128 const &b)
{
static const __m128i carry = Sse2Int128(0, 1, 0, 0);
union {
__uint64 v64[2];
__m128i v;
} _diff;
_diff.v = _mm_sub_epi64((__m128i)a, (__m128i)b);
if (_diff.v64[0] <= a.data.v64[0])
return _diff.v;
else
return _mm_sub_epi64(_diff.v, carry);
}
// TODO: operator *, /
//____________________________________________________________________________
// compares
inline bool
operator == (Sse2Int128 const &a, Sse2Int128 const &b)
{
__m128i _e = _mm_cmpeq_epi32((__m128i)a, (__m128i)b);
return ((__int64)(Sse2Int128)_mm_and_si128(_e, _mm_unpackhi_epi64(_e, _e))) == ~(__int64)0;
}
inline bool
operator != (Sse2Int128 const &a, Sse2Int128 const &b)
{
__m128i _e = _mm_cmpeq_epi32((__m128i)a, (__m128i)b);
return ((__int64)(Sse2Int128)_mm_and_si128(_e, _mm_unpackhi_epi64(_e, _e))) != ~(__int64)0;
}
// TODO: operator <, <=, >, >=
} //namespace SEQAN_NAMESPACE_MAIN
#endif //#ifdef __SSE2__
#endif //#ifdef SEQAN_USE_SSE2_WORDS
#endif //#ifndef SEQAN_HEADER_...
|