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/] [config/] [rs6000/] [si2vmx.h] - Diff between revs 282 and 338

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

Rev 282 Rev 338
/* Cell BEA specific SPU intrinsics to PPU/VMX intrinsics
/* Cell BEA specific SPU intrinsics to PPU/VMX intrinsics
   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
 
 
   This file is free software; you can redistribute it and/or modify it under
   This file is free software; you can redistribute it and/or modify it under
   the terms of the GNU General Public License as published by the Free
   the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This file is distributed in the hope that it will be useful, but WITHOUT
   This file is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   for more details.
   for more details.
 
 
   Under Section 7 of GPL version 3, you are granted additional
   Under Section 7 of GPL version 3, you are granted additional
   permissions described in the GCC Runtime Library Exception, version
   permissions described in the GCC Runtime Library Exception, version
   3.1, as published by the Free Software Foundation.
   3.1, as published by the Free Software Foundation.
 
 
   You should have received a copy of the GNU General Public License and
   You should have received a copy of the GNU General Public License and
   a copy of the GCC Runtime Library Exception along with this program;
   a copy of the GCC Runtime Library Exception along with this program;
   see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
   see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
   <http://www.gnu.org/licenses/>.  */
   <http://www.gnu.org/licenses/>.  */
 
 
#ifndef _SI2VMX_H_
#ifndef _SI2VMX_H_
#define _SI2VMX_H_      1
#define _SI2VMX_H_      1
 
 
#ifndef __SPU__
#ifndef __SPU__
 
 
#include <stdlib.h>
#include <stdlib.h>
#include <vec_types.h>
#include <vec_types.h>
 
 
 
 
/* Specify a default halt action for spu_hcmpeq and spu_hcmpgt intrinsics.
/* Specify a default halt action for spu_hcmpeq and spu_hcmpgt intrinsics.
 * Users can override the action by defining it prior to including this
 * Users can override the action by defining it prior to including this
 * header file.
 * header file.
 */
 */
#ifndef SPU_HALT_ACTION
#ifndef SPU_HALT_ACTION
#define SPU_HALT_ACTION         abort()
#define SPU_HALT_ACTION         abort()
#endif
#endif
 
 
/* Specify a default stop action for the spu_stop intrinsic.
/* Specify a default stop action for the spu_stop intrinsic.
 * Users can override the action by defining it prior to including this
 * Users can override the action by defining it prior to including this
 * header file.
 * header file.
 */
 */
#ifndef SPU_STOP_ACTION
#ifndef SPU_STOP_ACTION
#define SPU_STOP_ACTION         abort()
#define SPU_STOP_ACTION         abort()
#endif
#endif
 
 
 
 
/* Specify a default action for unsupported intrinsic.
/* Specify a default action for unsupported intrinsic.
 * Users can override the action by defining it prior to including this
 * Users can override the action by defining it prior to including this
 * header file.
 * header file.
 */
 */
#ifndef SPU_UNSUPPORTED_ACTION
#ifndef SPU_UNSUPPORTED_ACTION
#define SPU_UNSUPPORTED_ACTION  abort()
#define SPU_UNSUPPORTED_ACTION  abort()
#endif
#endif
 
 
 
 
/* Casting intrinsics - from scalar to quadword
/* Casting intrinsics - from scalar to quadword
 */
 */
 
 
static __inline qword si_from_uchar(unsigned char c) {
static __inline qword si_from_uchar(unsigned char c) {
  union {
  union {
    qword q;
    qword q;
    unsigned char c[16];
    unsigned char c[16];
  } x;
  } x;
  x.c[3] = c;
  x.c[3] = c;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_char(signed char c) {
static __inline qword si_from_char(signed char c) {
  union {
  union {
    qword q;
    qword q;
    signed char c[16];
    signed char c[16];
  } x;
  } x;
  x.c[3] = c;
  x.c[3] = c;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_ushort(unsigned short s) {
static __inline qword si_from_ushort(unsigned short s) {
  union {
  union {
    qword q;
    qword q;
    unsigned short s[8];
    unsigned short s[8];
  } x;
  } x;
  x.s[1] = s;
  x.s[1] = s;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_short(short s) {
static __inline qword si_from_short(short s) {
  union {
  union {
    qword q;
    qword q;
    short s[8];
    short s[8];
  } x;
  } x;
  x.s[1] = s;
  x.s[1] = s;
  return (x.q);
  return (x.q);
}
}
 
 
 
 
static __inline qword si_from_uint(unsigned int i) {
static __inline qword si_from_uint(unsigned int i) {
  union {
  union {
    qword q;
    qword q;
    unsigned int i[4];
    unsigned int i[4];
  } x;
  } x;
  x.i[0] = i;
  x.i[0] = i;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_int(int i) {
static __inline qword si_from_int(int i) {
  union {
  union {
    qword q;
    qword q;
    int i[4];
    int i[4];
  } x;
  } x;
  x.i[0] = i;
  x.i[0] = i;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_ullong(unsigned long long l) {
static __inline qword si_from_ullong(unsigned long long l) {
  union {
  union {
    qword q;
    qword q;
    unsigned long long l[2];
    unsigned long long l[2];
  } x;
  } x;
  x.l[0] = l;
  x.l[0] = l;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_llong(long long l) {
static __inline qword si_from_llong(long long l) {
  union {
  union {
    qword q;
    qword q;
    long long l[2];
    long long l[2];
  } x;
  } x;
  x.l[0] = l;
  x.l[0] = l;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_float(float f) {
static __inline qword si_from_float(float f) {
  union {
  union {
    qword q;
    qword q;
    float f[4];
    float f[4];
  } x;
  } x;
  x.f[0] = f;
  x.f[0] = f;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_double(double d) {
static __inline qword si_from_double(double d) {
  union {
  union {
    qword q;
    qword q;
    double d[2];
    double d[2];
  } x;
  } x;
  x.d[0] = d;
  x.d[0] = d;
  return (x.q);
  return (x.q);
}
}
 
 
static __inline qword si_from_ptr(void *ptr) {
static __inline qword si_from_ptr(void *ptr) {
  union {
  union {
    qword q;
    qword q;
    void *p;
    void *p;
  } x;
  } x;
  x.p = ptr;
  x.p = ptr;
  return (x.q);
  return (x.q);
}
}
 
 
 
 
/* Casting intrinsics - from quadword to scalar
/* Casting intrinsics - from quadword to scalar
 */
 */
static __inline unsigned char si_to_uchar(qword q) {
static __inline unsigned char si_to_uchar(qword q) {
  union {
  union {
    qword q;
    qword q;
    unsigned char c[16];
    unsigned char c[16];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.c[3]);
  return (x.c[3]);
}
}
 
 
static __inline signed char si_to_char(qword q) {
static __inline signed char si_to_char(qword q) {
  union {
  union {
    qword q;
    qword q;
    signed char c[16];
    signed char c[16];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.c[3]);
  return (x.c[3]);
}
}
 
 
static __inline unsigned short si_to_ushort(qword q) {
static __inline unsigned short si_to_ushort(qword q) {
  union {
  union {
    qword q;
    qword q;
    unsigned short s[8];
    unsigned short s[8];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.s[1]);
  return (x.s[1]);
}
}
 
 
static __inline short si_to_short(qword q) {
static __inline short si_to_short(qword q) {
  union {
  union {
    qword q;
    qword q;
    short s[8];
    short s[8];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.s[1]);
  return (x.s[1]);
}
}
 
 
static __inline unsigned int si_to_uint(qword q) {
static __inline unsigned int si_to_uint(qword q) {
  union {
  union {
    qword q;
    qword q;
    unsigned int i[4];
    unsigned int i[4];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.i[0]);
  return (x.i[0]);
}
}
 
 
static __inline int si_to_int(qword q) {
static __inline int si_to_int(qword q) {
  union {
  union {
    qword q;
    qword q;
    int i[4];
    int i[4];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.i[0]);
  return (x.i[0]);
}
}
 
 
static __inline unsigned long long si_to_ullong(qword q) {
static __inline unsigned long long si_to_ullong(qword q) {
  union {
  union {
    qword q;
    qword q;
    unsigned long long l[2];
    unsigned long long l[2];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.l[0]);
  return (x.l[0]);
}
}
 
 
static __inline long long si_to_llong(qword q) {
static __inline long long si_to_llong(qword q) {
  union {
  union {
    qword q;
    qword q;
    long long l[2];
    long long l[2];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.l[0]);
  return (x.l[0]);
}
}
 
 
static __inline float si_to_float(qword q) {
static __inline float si_to_float(qword q) {
  union {
  union {
    qword q;
    qword q;
    float f[4];
    float f[4];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.f[0]);
  return (x.f[0]);
}
}
 
 
static __inline double si_to_double(qword q) {
static __inline double si_to_double(qword q) {
  union {
  union {
    qword q;
    qword q;
    double d[2];
    double d[2];
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.d[0]);
  return (x.d[0]);
}
}
 
 
static __inline void * si_to_ptr(qword q) {
static __inline void * si_to_ptr(qword q) {
  union {
  union {
    qword q;
    qword q;
    void *p;
    void *p;
  } x;
  } x;
  x.q = q;
  x.q = q;
  return (x.p);
  return (x.p);
}
}
 
 
 
 
/* Absolute difference
/* Absolute difference
 */
 */
static __inline qword si_absdb(qword a, qword b)
static __inline qword si_absdb(qword a, qword b)
{
{
  vec_uchar16 ac, bc, dc;
  vec_uchar16 ac, bc, dc;
 
 
  ac = (vec_uchar16)(a);
  ac = (vec_uchar16)(a);
  bc = (vec_uchar16)(b);
  bc = (vec_uchar16)(b);
  dc = vec_sel(vec_sub(bc, ac), vec_sub(ac, bc), vec_cmpgt(ac, bc));
  dc = vec_sel(vec_sub(bc, ac), vec_sub(ac, bc), vec_cmpgt(ac, bc));
 
 
  return ((qword)(dc));
  return ((qword)(dc));
}
}
 
 
/* Add intrinsics
/* Add intrinsics
 */
 */
#define si_a(_a, _b)            ((qword)(vec_add((vec_uint4)(_a), (vec_uint4)(_b))))
#define si_a(_a, _b)            ((qword)(vec_add((vec_uint4)(_a), (vec_uint4)(_b))))
 
 
#define si_ah(_a, _b)           ((qword)(vec_add((vec_ushort8)(_a), (vec_ushort8)(_b))))
#define si_ah(_a, _b)           ((qword)(vec_add((vec_ushort8)(_a), (vec_ushort8)(_b))))
 
 
static __inline qword si_ai(qword a, int b)
static __inline qword si_ai(qword a, int b)
{
{
  return ((qword)(vec_add((vec_int4)(a),
  return ((qword)(vec_add((vec_int4)(a),
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
}
}
 
 
 
 
static __inline qword si_ahi(qword a, short b)
static __inline qword si_ahi(qword a, short b)
{
{
  return ((qword)(vec_add((vec_short8)(a),
  return ((qword)(vec_add((vec_short8)(a),
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
}
}
 
 
 
 
#define si_fa(_a, _b)   ((qword)(vec_add((vec_float4)(_a), (vec_float4)(_b))))
#define si_fa(_a, _b)   ((qword)(vec_add((vec_float4)(_a), (vec_float4)(_b))))
 
 
 
 
static __inline qword si_dfa(qword a, qword b)
static __inline qword si_dfa(qword a, qword b)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } ad, bd, dd;
  } ad, bd, dd;
 
 
  ad.v = (vec_double2)(a);
  ad.v = (vec_double2)(a);
  bd.v = (vec_double2)(b);
  bd.v = (vec_double2)(b);
  dd.d[0] = ad.d[0] + bd.d[0];
  dd.d[0] = ad.d[0] + bd.d[0];
  dd.d[1] = ad.d[1] + bd.d[1];
  dd.d[1] = ad.d[1] + bd.d[1];
 
 
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Add word extended
/* Add word extended
 */
 */
#define si_addx(_a, _b, _c)     ((qword)(vec_add(vec_add((vec_uint4)(_a), (vec_uint4)(_b)),     \
#define si_addx(_a, _b, _c)     ((qword)(vec_add(vec_add((vec_uint4)(_a), (vec_uint4)(_b)),     \
                                                 vec_and((vec_uint4)(_c), vec_splat_u32(1)))))
                                                 vec_and((vec_uint4)(_c), vec_splat_u32(1)))))
 
 
 
 
/* Bit-wise AND
/* Bit-wise AND
 */
 */
#define si_and(_a, _b)          ((qword)(vec_and((vec_uint4)(_a), (vec_uint4)(_b))))
#define si_and(_a, _b)          ((qword)(vec_and((vec_uint4)(_a), (vec_uint4)(_b))))
 
 
 
 
static __inline qword si_andbi(qword a, signed char b)
static __inline qword si_andbi(qword a, signed char b)
{
{
  return ((qword)(vec_and((vec_char16)(a),
  return ((qword)(vec_and((vec_char16)(a),
                          vec_splat((vec_char16)(si_from_char(b)), 3))));
                          vec_splat((vec_char16)(si_from_char(b)), 3))));
}
}
 
 
static __inline qword si_andhi(qword a, signed short b)
static __inline qword si_andhi(qword a, signed short b)
{
{
  return ((qword)(vec_and((vec_short8)(a),
  return ((qword)(vec_and((vec_short8)(a),
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
}
}
 
 
 
 
static __inline qword si_andi(qword a, signed int b)
static __inline qword si_andi(qword a, signed int b)
{
{
  return ((qword)(vec_and((vec_int4)(a),
  return ((qword)(vec_and((vec_int4)(a),
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
}
}
 
 
 
 
/* Bit-wise AND with complement
/* Bit-wise AND with complement
 */
 */
#define si_andc(_a, _b)         ((qword)(vec_andc((vec_uchar16)(_a), (vec_uchar16)(_b))))
#define si_andc(_a, _b)         ((qword)(vec_andc((vec_uchar16)(_a), (vec_uchar16)(_b))))
 
 
 
 
/* Average byte vectors
/* Average byte vectors
 */
 */
#define si_avgb(_a, _b)         ((qword)(vec_avg((vec_uchar16)(_a), (vec_uchar16)(_b))))
#define si_avgb(_a, _b)         ((qword)(vec_avg((vec_uchar16)(_a), (vec_uchar16)(_b))))
 
 
 
 
/* Branch indirect and set link on external data
/* Branch indirect and set link on external data
 */
 */
#define si_bisled(_func)        /* not mappable */
#define si_bisled(_func)        /* not mappable */
#define si_bisledd(_func)       /* not mappable */
#define si_bisledd(_func)       /* not mappable */
#define si_bislede(_func)       /* not mappable */
#define si_bislede(_func)       /* not mappable */
 
 
 
 
/* Borrow generate
/* Borrow generate
 */
 */
#define si_bg(_a, _b)           ((qword)(vec_subc((vec_uint4)(_b), (vec_uint4)(_a))))
#define si_bg(_a, _b)           ((qword)(vec_subc((vec_uint4)(_b), (vec_uint4)(_a))))
 
 
#define si_bgx(_a, _b, _c)      ((qword)(vec_and(vec_or(vec_cmpgt((vec_uint4)(_b), (vec_uint4)(_a)),            \
#define si_bgx(_a, _b, _c)      ((qword)(vec_and(vec_or(vec_cmpgt((vec_uint4)(_b), (vec_uint4)(_a)),            \
                                                        vec_and(vec_cmpeq((vec_uint4)(_b), (vec_uint4)(_a)),    \
                                                        vec_and(vec_cmpeq((vec_uint4)(_b), (vec_uint4)(_a)),    \
                                                                (vec_uint4)(_c))), vec_splat_u32(1))))
                                                                (vec_uint4)(_c))), vec_splat_u32(1))))
 
 
/* Compare absolute equal
/* Compare absolute equal
 */
 */
static __inline qword si_fcmeq(qword a, qword b)
static __inline qword si_fcmeq(qword a, qword b)
{
{
  vec_float4 msb = (vec_float4)((vec_uint4){0x80000000, 0x80000000, 0x80000000, 0x80000000});
  vec_float4 msb = (vec_float4)((vec_uint4){0x80000000, 0x80000000, 0x80000000, 0x80000000});
 
 
  return ((qword)(vec_cmpeq(vec_andc((vec_float4)(a), msb),
  return ((qword)(vec_cmpeq(vec_andc((vec_float4)(a), msb),
                                  vec_andc((vec_float4)(b), msb))));
                                  vec_andc((vec_float4)(b), msb))));
}
}
 
 
static __inline qword si_dfcmeq(qword a, qword b)
static __inline qword si_dfcmeq(qword a, qword b)
{
{
  vec_uint4 sign_mask= (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 sign_mask= (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x00000000, 0x7FF00000, 0x00000000 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x00000000, 0x7FF00000, 0x00000000 };
  vec_uchar16 hihi_promote = (vec_uchar16) { 0,1,2,3,  16,17,18,19,  8,9,10,11, 24,25,26,27};
  vec_uchar16 hihi_promote = (vec_uchar16) { 0,1,2,3,  16,17,18,19,  8,9,10,11, 24,25,26,27};
 
 
  vec_uint4 biteq;
  vec_uint4 biteq;
  vec_uint4 aabs;
  vec_uint4 aabs;
  vec_uint4 babs;
  vec_uint4 babs;
  vec_uint4 a_gt;
  vec_uint4 a_gt;
  vec_uint4 ahi_inf;
  vec_uint4 ahi_inf;
  vec_uint4 anan;
  vec_uint4 anan;
  vec_uint4 result;
  vec_uint4 result;
 
 
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
 
 
  /* Shift 4 bytes  */
  /* Shift 4 bytes  */
  x.i[3] = 4 << 3;
  x.i[3] = 4 << 3;
 
 
  /*  Mask out sign bits */
  /*  Mask out sign bits */
  aabs = vec_and((vec_uint4)a,sign_mask);
  aabs = vec_and((vec_uint4)a,sign_mask);
  babs = vec_and((vec_uint4)b,sign_mask);
  babs = vec_and((vec_uint4)b,sign_mask);
 
 
  /*  A)  Check for bit equality, store in high word */
  /*  A)  Check for bit equality, store in high word */
  biteq = (vec_uint4) vec_cmpeq((vec_uint4)aabs,(vec_uint4)babs);
  biteq = (vec_uint4) vec_cmpeq((vec_uint4)aabs,(vec_uint4)babs);
  biteq = vec_and(biteq,(vec_uint4)vec_slo((vec_uchar16)biteq,x.v));
  biteq = vec_and(biteq,(vec_uint4)vec_slo((vec_uchar16)biteq,x.v));
 
 
  /*
  /*
      B)  Check if a is NaN, store in high word
      B)  Check if a is NaN, store in high word
 
 
      B1) If the high word is greater than max_exp (indicates a NaN)
      B1) If the high word is greater than max_exp (indicates a NaN)
      B2) If the low word is greater than 0
      B2) If the low word is greater than 0
  */
  */
  a_gt = (vec_uint4)vec_cmpgt(aabs,nan_mask);
  a_gt = (vec_uint4)vec_cmpgt(aabs,nan_mask);
 
 
  /*  B3) Check if the high word is equal to the inf exponent */
  /*  B3) Check if the high word is equal to the inf exponent */
  ahi_inf = (vec_uint4)vec_cmpeq(aabs,nan_mask);
  ahi_inf = (vec_uint4)vec_cmpeq(aabs,nan_mask);
 
 
  /*  anan = B1[hi] or (B2[lo] and B3[hi]) */
  /*  anan = B1[hi] or (B2[lo] and B3[hi]) */
  anan = (vec_uint4)vec_or(a_gt,vec_and((vec_uint4)vec_slo((vec_uchar16)a_gt,x.v),ahi_inf));
  anan = (vec_uint4)vec_or(a_gt,vec_and((vec_uint4)vec_slo((vec_uchar16)a_gt,x.v),ahi_inf));
 
 
  /*  result = A and not B  */
  /*  result = A and not B  */
  result = vec_andc(biteq, anan);
  result = vec_andc(biteq, anan);
 
 
  /*  Promote high words to 64 bits and return  */
  /*  Promote high words to 64 bits and return  */
  return ((qword)(vec_perm((vec_uchar16)result, (vec_uchar16)result, hihi_promote)));
  return ((qword)(vec_perm((vec_uchar16)result, (vec_uchar16)result, hihi_promote)));
}
}
 
 
 
 
/* Compare absolute greater than
/* Compare absolute greater than
 */
 */
static __inline qword si_fcmgt(qword a, qword b)
static __inline qword si_fcmgt(qword a, qword b)
{
{
  vec_float4 msb = (vec_float4)((vec_uint4){0x80000000, 0x80000000, 0x80000000, 0x80000000});
  vec_float4 msb = (vec_float4)((vec_uint4){0x80000000, 0x80000000, 0x80000000, 0x80000000});
 
 
  return ((qword)(vec_cmpgt(vec_andc((vec_float4)(a), msb),
  return ((qword)(vec_cmpgt(vec_andc((vec_float4)(a), msb),
                                  vec_andc((vec_float4)(b), msb))));
                                  vec_andc((vec_float4)(b), msb))));
}
}
 
 
static __inline qword si_dfcmgt(qword a, qword b)
static __inline qword si_dfcmgt(qword a, qword b)
{
{
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
 
 
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
 
 
  /* Shift 4 bytes  */
  /* Shift 4 bytes  */
  x.i[3] = 4 << 3;
  x.i[3] = 4 << 3;
 
 
  // absolute value of a,b 
  // absolute value of a,b 
  vec_uint4 aabs = vec_and((vec_uint4)a, sign_mask);
  vec_uint4 aabs = vec_and((vec_uint4)a, sign_mask);
  vec_uint4 babs = vec_and((vec_uint4)b, sign_mask);
  vec_uint4 babs = vec_and((vec_uint4)b, sign_mask);
 
 
  // check if a is nan
  // check if a is nan
  vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
  vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
  vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
  vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
  a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
  a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
  a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
  a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
 
 
  // check if b is nan
  // check if b is nan
  vec_uint4 b_inf = (vec_uint4)vec_cmpeq(babs, nan_mask);
  vec_uint4 b_inf = (vec_uint4)vec_cmpeq(babs, nan_mask);
  vec_uint4 b_nan = (vec_uint4)vec_cmpgt(babs, nan_mask);
  vec_uint4 b_nan = (vec_uint4)vec_cmpgt(babs, nan_mask);
  b_nan = vec_or(b_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)b_nan,x.v),b_inf));
  b_nan = vec_or(b_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)b_nan,x.v),b_inf));
  b_nan = (vec_uint4)vec_perm((vec_uchar16)b_nan, (vec_uchar16)b_nan, splat_hi);
  b_nan = (vec_uint4)vec_perm((vec_uchar16)b_nan, (vec_uchar16)b_nan, splat_hi);
 
 
  // A) Check if the exponents are different 
  // A) Check if the exponents are different 
  vec_uint4 gt_hi = (vec_uint4)vec_cmpgt(aabs,babs);
  vec_uint4 gt_hi = (vec_uint4)vec_cmpgt(aabs,babs);
 
 
  // B) Check if high word equal, and low word greater
  // B) Check if high word equal, and low word greater
  vec_uint4 gt_lo = (vec_uint4)vec_cmpgt((vec_uint4)aabs, (vec_uint4)babs);
  vec_uint4 gt_lo = (vec_uint4)vec_cmpgt((vec_uint4)aabs, (vec_uint4)babs);
  vec_uint4 eq = (vec_uint4)vec_cmpeq(aabs, babs);
  vec_uint4 eq = (vec_uint4)vec_cmpeq(aabs, babs);
  vec_uint4 eqgt = vec_and(eq,vec_slo(gt_lo,x.v));
  vec_uint4 eqgt = vec_and(eq,vec_slo(gt_lo,x.v));
 
 
  //  If either A or B is true, return true (unless NaNs detected) 
  //  If either A or B is true, return true (unless NaNs detected) 
  vec_uint4 r = vec_or(gt_hi, eqgt);
  vec_uint4 r = vec_or(gt_hi, eqgt);
 
 
  // splat the high words of the comparison step
  // splat the high words of the comparison step
  r = (vec_uint4)vec_perm((vec_uchar16)r,(vec_uchar16)r,splat_hi);
  r = (vec_uint4)vec_perm((vec_uchar16)r,(vec_uchar16)r,splat_hi);
 
 
  // correct for NaNs in input
  // correct for NaNs in input
  return ((qword)vec_andc(r,vec_or(a_nan,b_nan)));
  return ((qword)vec_andc(r,vec_or(a_nan,b_nan)));
}
}
 
 
 
 
/* Compare equal
/* Compare equal
 */
 */
static __inline qword si_ceqb(qword a, qword b)
static __inline qword si_ceqb(qword a, qword b)
{
{
  return ((qword)(vec_cmpeq((vec_uchar16)(a), (vec_uchar16)(b))));
  return ((qword)(vec_cmpeq((vec_uchar16)(a), (vec_uchar16)(b))));
}
}
 
 
static __inline qword si_ceqh(qword a, qword b)
static __inline qword si_ceqh(qword a, qword b)
{
{
  return ((qword)(vec_cmpeq((vec_ushort8)(a), (vec_ushort8)(b))));
  return ((qword)(vec_cmpeq((vec_ushort8)(a), (vec_ushort8)(b))));
}
}
 
 
static __inline qword si_ceq(qword a, qword b)
static __inline qword si_ceq(qword a, qword b)
{
{
  return ((qword)(vec_cmpeq((vec_uint4)(a), (vec_uint4)(b))));
  return ((qword)(vec_cmpeq((vec_uint4)(a), (vec_uint4)(b))));
}
}
 
 
static __inline qword si_fceq(qword a, qword b)
static __inline qword si_fceq(qword a, qword b)
{
{
  return ((qword)(vec_cmpeq((vec_float4)(a), (vec_float4)(b))));
  return ((qword)(vec_cmpeq((vec_float4)(a), (vec_float4)(b))));
}
}
 
 
static __inline qword si_ceqbi(qword a, signed char b)
static __inline qword si_ceqbi(qword a, signed char b)
{
{
  return ((qword)(vec_cmpeq((vec_char16)(a),
  return ((qword)(vec_cmpeq((vec_char16)(a),
                            vec_splat((vec_char16)(si_from_char(b)), 3))));
                            vec_splat((vec_char16)(si_from_char(b)), 3))));
}
}
 
 
static __inline qword si_ceqhi(qword a, signed short b)
static __inline qword si_ceqhi(qword a, signed short b)
{
{
  return ((qword)(vec_cmpeq((vec_short8)(a),
  return ((qword)(vec_cmpeq((vec_short8)(a),
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
                          vec_splat((vec_short8)(si_from_short(b)), 1))));
}
}
 
 
static __inline qword si_ceqi(qword a, signed int b)
static __inline qword si_ceqi(qword a, signed int b)
{
{
  return ((qword)(vec_cmpeq((vec_int4)(a),
  return ((qword)(vec_cmpeq((vec_int4)(a),
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
                          vec_splat((vec_int4)(si_from_int(b)), 0))));
}
}
 
 
static __inline qword si_dfceq(qword a, qword b)
static __inline qword si_dfceq(qword a, qword b)
{
{
  vec_uint4 sign_mask= (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 sign_mask= (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x00000000, 0x7FF00000, 0x00000000 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x00000000, 0x7FF00000, 0x00000000 };
  vec_uchar16 hihi_promote = (vec_uchar16) { 0,1,2,3,  16,17,18,19,  8,9,10,11, 24,25,26,27};
  vec_uchar16 hihi_promote = (vec_uchar16) { 0,1,2,3,  16,17,18,19,  8,9,10,11, 24,25,26,27};
 
 
  vec_uint4 biteq;
  vec_uint4 biteq;
  vec_uint4 aabs;
  vec_uint4 aabs;
  vec_uint4 babs;
  vec_uint4 babs;
  vec_uint4 a_gt;
  vec_uint4 a_gt;
  vec_uint4 ahi_inf;
  vec_uint4 ahi_inf;
  vec_uint4 anan;
  vec_uint4 anan;
  vec_uint4 iszero;
  vec_uint4 iszero;
  vec_uint4 result;
  vec_uint4 result;
 
 
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
 
 
  /* Shift 4 bytes  */
  /* Shift 4 bytes  */
  x.i[3] = 4 << 3;
  x.i[3] = 4 << 3;
 
 
  /*  A)  Check for bit equality, store in high word */
  /*  A)  Check for bit equality, store in high word */
  biteq = (vec_uint4) vec_cmpeq((vec_uint4)a,(vec_uint4)b);
  biteq = (vec_uint4) vec_cmpeq((vec_uint4)a,(vec_uint4)b);
  biteq = vec_and(biteq,(vec_uint4)vec_slo((vec_uchar16)biteq,x.v));
  biteq = vec_and(biteq,(vec_uint4)vec_slo((vec_uchar16)biteq,x.v));
 
 
  /*  Mask out sign bits */
  /*  Mask out sign bits */
  aabs = vec_and((vec_uint4)a,sign_mask);
  aabs = vec_and((vec_uint4)a,sign_mask);
  babs = vec_and((vec_uint4)b,sign_mask);
  babs = vec_and((vec_uint4)b,sign_mask);
 
 
  /*
  /*
      B)  Check if a is NaN, store in high word
      B)  Check if a is NaN, store in high word
 
 
      B1) If the high word is greater than max_exp (indicates a NaN)
      B1) If the high word is greater than max_exp (indicates a NaN)
      B2) If the low word is greater than 0
      B2) If the low word is greater than 0
  */
  */
  a_gt = (vec_uint4)vec_cmpgt(aabs,nan_mask);
  a_gt = (vec_uint4)vec_cmpgt(aabs,nan_mask);
 
 
  /*  B3) Check if the high word is equal to the inf exponent */
  /*  B3) Check if the high word is equal to the inf exponent */
  ahi_inf = (vec_uint4)vec_cmpeq(aabs,nan_mask);
  ahi_inf = (vec_uint4)vec_cmpeq(aabs,nan_mask);
 
 
  /*  anan = B1[hi] or (B2[lo] and B3[hi]) */
  /*  anan = B1[hi] or (B2[lo] and B3[hi]) */
  anan = (vec_uint4)vec_or(a_gt,vec_and((vec_uint4)vec_slo((vec_uchar16)a_gt,x.v),ahi_inf));
  anan = (vec_uint4)vec_or(a_gt,vec_and((vec_uint4)vec_slo((vec_uchar16)a_gt,x.v),ahi_inf));
 
 
  /*  C)  Check for 0 = -0 special case */
  /*  C)  Check for 0 = -0 special case */
  iszero =(vec_uint4)vec_cmpeq((vec_uint4)vec_or(aabs,babs),(vec_uint4)vec_splat_u32(0));
  iszero =(vec_uint4)vec_cmpeq((vec_uint4)vec_or(aabs,babs),(vec_uint4)vec_splat_u32(0));
  iszero = vec_and(iszero,(vec_uint4)vec_slo((vec_uchar16)iszero,x.v));
  iszero = vec_and(iszero,(vec_uint4)vec_slo((vec_uchar16)iszero,x.v));
 
 
  /*  result = (A or C) and not B  */
  /*  result = (A or C) and not B  */
  result = vec_or(biteq,iszero);
  result = vec_or(biteq,iszero);
  result = vec_andc(result, anan);
  result = vec_andc(result, anan);
 
 
  /*  Promote high words to 64 bits and return  */
  /*  Promote high words to 64 bits and return  */
  return ((qword)(vec_perm((vec_uchar16)result, (vec_uchar16)result, hihi_promote)));
  return ((qword)(vec_perm((vec_uchar16)result, (vec_uchar16)result, hihi_promote)));
}
}
 
 
 
 
/* Compare greater than
/* Compare greater than
 */
 */
static __inline qword si_cgtb(qword a, qword b)
static __inline qword si_cgtb(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_char16)(a), (vec_char16)(b))));
  return ((qword)(vec_cmpgt((vec_char16)(a), (vec_char16)(b))));
}
}
 
 
static __inline qword si_cgth(qword a, qword b)
static __inline qword si_cgth(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_short8)(a), (vec_short8)(b))));
  return ((qword)(vec_cmpgt((vec_short8)(a), (vec_short8)(b))));
}
}
 
 
static __inline qword si_cgt(qword a, qword b)
static __inline qword si_cgt(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_int4)(a), (vec_int4)(b))));
  return ((qword)(vec_cmpgt((vec_int4)(a), (vec_int4)(b))));
}
}
 
 
static __inline qword si_clgtb(qword a, qword b)
static __inline qword si_clgtb(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_uchar16)(a), (vec_uchar16)(b))));
  return ((qword)(vec_cmpgt((vec_uchar16)(a), (vec_uchar16)(b))));
}
}
 
 
static __inline qword si_clgth(qword a, qword b)
static __inline qword si_clgth(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_ushort8)(a), (vec_ushort8)(b))));
  return ((qword)(vec_cmpgt((vec_ushort8)(a), (vec_ushort8)(b))));
}
}
 
 
static __inline qword si_clgt(qword a, qword b)
static __inline qword si_clgt(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_uint4)(a), (vec_uint4)(b))));
  return ((qword)(vec_cmpgt((vec_uint4)(a), (vec_uint4)(b))));
}
}
 
 
static __inline qword si_fcgt(qword a, qword b)
static __inline qword si_fcgt(qword a, qword b)
{
{
  return ((qword)(vec_cmpgt((vec_float4)(a), (vec_float4)(b))));
  return ((qword)(vec_cmpgt((vec_float4)(a), (vec_float4)(b))));
}
}
 
 
static __inline qword si_dfcgt(qword a, qword b)
static __inline qword si_dfcgt(qword a, qword b)
{
{
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uchar16 borrow_shuffle = (vec_uchar16) { 4,5,6,7, 192,192,192,192, 12,13,14,15, 192,192,192,192 };
  vec_uchar16 borrow_shuffle = (vec_uchar16) { 4,5,6,7, 192,192,192,192, 12,13,14,15, 192,192,192,192 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
  vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
 
 
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
 
 
  /* Shift 4 bytes  */
  /* Shift 4 bytes  */
  x.i[3] = 4 << 3;
  x.i[3] = 4 << 3;
 
 
  // absolute value of a,b 
  // absolute value of a,b 
  vec_uint4 aabs = vec_and((vec_uint4)a, sign_mask);
  vec_uint4 aabs = vec_and((vec_uint4)a, sign_mask);
  vec_uint4 babs = vec_and((vec_uint4)b, sign_mask);
  vec_uint4 babs = vec_and((vec_uint4)b, sign_mask);
 
 
  // check if a is nan
  // check if a is nan
  vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
  vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
  vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
  vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
  a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
  a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
  a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
  a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
 
 
  // check if b is nan
  // check if b is nan
  vec_uint4 b_inf = (vec_uint4)vec_cmpeq(babs, nan_mask);
  vec_uint4 b_inf = (vec_uint4)vec_cmpeq(babs, nan_mask);
  vec_uint4 b_nan = (vec_uint4)vec_cmpgt(babs, nan_mask);
  vec_uint4 b_nan = (vec_uint4)vec_cmpgt(babs, nan_mask);
  b_nan = vec_or(b_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)b_nan,x.v),b_inf));
  b_nan = vec_or(b_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)b_nan,x.v),b_inf));
  b_nan = (vec_uint4)vec_perm((vec_uchar16)b_nan, (vec_uchar16)b_nan, splat_hi);
  b_nan = (vec_uint4)vec_perm((vec_uchar16)b_nan, (vec_uchar16)b_nan, splat_hi);
 
 
  // sign of a
  // sign of a
  vec_uint4 asel = (vec_uint4)vec_sra((vec_int4)(a), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  vec_uint4 asel = (vec_uint4)vec_sra((vec_int4)(a), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  asel = (vec_uint4)vec_perm((vec_uchar16)asel,(vec_uchar16)asel,splat_hi);
  asel = (vec_uint4)vec_perm((vec_uchar16)asel,(vec_uchar16)asel,splat_hi);
 
 
  // sign of b
  // sign of b
  vec_uint4 bsel = (vec_uint4)vec_sra((vec_int4)(b), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  vec_uint4 bsel = (vec_uint4)vec_sra((vec_int4)(b), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  bsel = (vec_uint4)vec_perm((vec_uchar16)bsel,(vec_uchar16)bsel,splat_hi);
  bsel = (vec_uint4)vec_perm((vec_uchar16)bsel,(vec_uchar16)bsel,splat_hi);
 
 
  // negative a
  // negative a
  vec_uint4 abor = vec_subc((vec_uint4)vec_splat_u32(0), aabs);
  vec_uint4 abor = vec_subc((vec_uint4)vec_splat_u32(0), aabs);
  vec_uchar16 pat = vec_sel(((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15}), vec_sr(borrow_shuffle, vec_splat_u8(3)), vec_sra(borrow_shuffle, vec_splat_u8(7)));
  vec_uchar16 pat = vec_sel(((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15}), vec_sr(borrow_shuffle, vec_splat_u8(3)), vec_sra(borrow_shuffle, vec_splat_u8(7)));
  abor = (vec_uint4)(vec_perm(vec_perm((vec_uchar16)abor, (vec_uchar16)abor, borrow_shuffle),((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),pat));
  abor = (vec_uint4)(vec_perm(vec_perm((vec_uchar16)abor, (vec_uchar16)abor, borrow_shuffle),((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),pat));
  vec_uint4 aneg = vec_add(vec_add(vec_splat_u32(0), vec_nor(aabs, aabs)), vec_and(abor, vec_splat_u32(1)));
  vec_uint4 aneg = vec_add(vec_add(vec_splat_u32(0), vec_nor(aabs, aabs)), vec_and(abor, vec_splat_u32(1)));
 
 
  // pick the one we want
  // pick the one we want
  vec_int4 aval = (vec_int4)vec_sel((vec_uchar16)aabs, (vec_uchar16)aneg, (vec_uchar16)asel);
  vec_int4 aval = (vec_int4)vec_sel((vec_uchar16)aabs, (vec_uchar16)aneg, (vec_uchar16)asel);
 
 
  // negative b
  // negative b
  vec_uint4 bbor = vec_subc((vec_uint4)vec_splat_u32(0), babs);
  vec_uint4 bbor = vec_subc((vec_uint4)vec_splat_u32(0), babs);
  bbor = (vec_uint4)(vec_perm(vec_perm((vec_uchar16)bbor, (vec_uchar16)bbor, borrow_shuffle),((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),pat));
  bbor = (vec_uint4)(vec_perm(vec_perm((vec_uchar16)bbor, (vec_uchar16)bbor, borrow_shuffle),((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),pat));
  vec_uint4 bneg = vec_add(vec_nor(babs, babs), vec_and(bbor, vec_splat_u32(1)));
  vec_uint4 bneg = vec_add(vec_nor(babs, babs), vec_and(bbor, vec_splat_u32(1)));
 
 
  // pick the one we want
  // pick the one we want
  vec_int4 bval=(vec_int4)vec_sel((vec_uchar16)babs, (vec_uchar16)bneg, (vec_uchar16)bsel);
  vec_int4 bval=(vec_int4)vec_sel((vec_uchar16)babs, (vec_uchar16)bneg, (vec_uchar16)bsel);
 
 
  // A) Check if the exponents are different 
  // A) Check if the exponents are different 
  vec_uint4 gt_hi = (vec_uint4)vec_cmpgt(aval,bval);
  vec_uint4 gt_hi = (vec_uint4)vec_cmpgt(aval,bval);
 
 
  // B) Check if high word equal, and low word greater
  // B) Check if high word equal, and low word greater
  vec_uint4 gt_lo = (vec_uint4)vec_cmpgt((vec_uint4)aval, (vec_uint4)bval);
  vec_uint4 gt_lo = (vec_uint4)vec_cmpgt((vec_uint4)aval, (vec_uint4)bval);
  vec_uint4 eq = (vec_uint4)vec_cmpeq(aval, bval);
  vec_uint4 eq = (vec_uint4)vec_cmpeq(aval, bval);
  vec_uint4 eqgt = vec_and(eq,vec_slo(gt_lo,x.v));
  vec_uint4 eqgt = vec_and(eq,vec_slo(gt_lo,x.v));
 
 
  //  If either A or B is true, return true (unless NaNs detected) 
  //  If either A or B is true, return true (unless NaNs detected) 
  vec_uint4 r = vec_or(gt_hi, eqgt);
  vec_uint4 r = vec_or(gt_hi, eqgt);
 
 
  // splat the high words of the comparison step
  // splat the high words of the comparison step
  r = (vec_uint4)vec_perm((vec_uchar16)r,(vec_uchar16)r,splat_hi);
  r = (vec_uint4)vec_perm((vec_uchar16)r,(vec_uchar16)r,splat_hi);
 
 
  // correct for NaNs in input
  // correct for NaNs in input
  return ((qword)vec_andc(r,vec_or(a_nan,b_nan)));
  return ((qword)vec_andc(r,vec_or(a_nan,b_nan)));
}
}
 
 
static __inline qword si_cgtbi(qword a, signed char b)
static __inline qword si_cgtbi(qword a, signed char b)
{
{
  return ((qword)(vec_cmpgt((vec_char16)(a),
  return ((qword)(vec_cmpgt((vec_char16)(a),
                            vec_splat((vec_char16)(si_from_char(b)), 3))));
                            vec_splat((vec_char16)(si_from_char(b)), 3))));
}
}
 
 
static __inline qword si_cgthi(qword a, signed short b)
static __inline qword si_cgthi(qword a, signed short b)
{
{
  return ((qword)(vec_cmpgt((vec_short8)(a),
  return ((qword)(vec_cmpgt((vec_short8)(a),
                            vec_splat((vec_short8)(si_from_short(b)), 1))));
                            vec_splat((vec_short8)(si_from_short(b)), 1))));
}
}
 
 
static __inline qword si_cgti(qword a, signed int b)
static __inline qword si_cgti(qword a, signed int b)
{
{
  return ((qword)(vec_cmpgt((vec_int4)(a),
  return ((qword)(vec_cmpgt((vec_int4)(a),
                            vec_splat((vec_int4)(si_from_int(b)), 0))));
                            vec_splat((vec_int4)(si_from_int(b)), 0))));
}
}
 
 
static __inline qword si_clgtbi(qword a, unsigned char b)
static __inline qword si_clgtbi(qword a, unsigned char b)
{
{
  return ((qword)(vec_cmpgt((vec_uchar16)(a),
  return ((qword)(vec_cmpgt((vec_uchar16)(a),
                            vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
                            vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
}
}
 
 
static __inline qword si_clgthi(qword a, unsigned short b)
static __inline qword si_clgthi(qword a, unsigned short b)
{
{
  return ((qword)(vec_cmpgt((vec_ushort8)(a),
  return ((qword)(vec_cmpgt((vec_ushort8)(a),
                            vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
                            vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
}
}
 
 
static __inline qword si_clgti(qword a, unsigned int b)
static __inline qword si_clgti(qword a, unsigned int b)
{
{
  return ((qword)(vec_cmpgt((vec_uint4)(a),
  return ((qword)(vec_cmpgt((vec_uint4)(a),
                            vec_splat((vec_uint4)(si_from_uint(b)), 0))));
                            vec_splat((vec_uint4)(si_from_uint(b)), 0))));
}
}
 
 
static __inline qword si_dftsv(qword a, char b)
static __inline qword si_dftsv(qword a, char b)
{
{
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uchar16 splat_hi = (vec_uchar16) { 0,1,2,3, 0,1,2,3, 8,9,10,11, 8,9,10,11 };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 sign_mask = (vec_uint4) { 0x7FFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF, 0xFFFFFFFF };
  vec_uint4 result = (vec_uint4){0};
  vec_uint4 result = (vec_uint4){0};
  vec_uint4 sign = (vec_uint4)vec_sra((vec_int4)(a), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  vec_uint4 sign = (vec_uint4)vec_sra((vec_int4)(a), (vec_uint4)vec_splat(((vec_uint4)si_from_int(31)), 0));
  sign = (vec_uint4)vec_perm((vec_uchar16)sign,(vec_uchar16)sign,splat_hi);
  sign = (vec_uint4)vec_perm((vec_uchar16)sign,(vec_uchar16)sign,splat_hi);
  vec_uint4 aabs = vec_and((vec_uint4)a,sign_mask);
  vec_uint4 aabs = vec_and((vec_uint4)a,sign_mask);
 
 
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
 
 
  /* Shift 4 bytes  */
  /* Shift 4 bytes  */
  x.i[3] = 4 << 3;
  x.i[3] = 4 << 3;
 
 
  /* Nan or +inf or -inf  */
  /* Nan or +inf or -inf  */
  if (b & 0x70)
  if (b & 0x70)
  {
  {
    vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
    vec_uint4 nan_mask = (vec_uint4) { 0x7FF00000, 0x0, 0x7FF00000, 0x0 };
    vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
    vec_uint4 a_inf = (vec_uint4)vec_cmpeq(aabs, nan_mask);
     /* NaN  */
     /* NaN  */
     if (b & 0x40)
     if (b & 0x40)
     {
     {
       vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
       vec_uint4 a_nan = (vec_uint4)vec_cmpgt(aabs, nan_mask);
       a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
       a_nan = vec_or(a_nan, vec_and((vec_uint4)vec_slo((vec_uchar16)a_nan,x.v),a_inf));
       a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
       a_nan = (vec_uint4)vec_perm((vec_uchar16)a_nan, (vec_uchar16)a_nan, splat_hi);
       result = vec_or(result, a_nan);
       result = vec_or(result, a_nan);
     }
     }
     /* inf  */
     /* inf  */
     if (b & 0x30)
     if (b & 0x30)
     {
     {
       a_inf = vec_and((vec_uint4)vec_slo((vec_uchar16)a_inf,x.v), a_inf);
       a_inf = vec_and((vec_uint4)vec_slo((vec_uchar16)a_inf,x.v), a_inf);
       a_inf = (vec_uint4)vec_perm((vec_uchar16)a_inf, (vec_uchar16)a_inf, splat_hi);
       a_inf = (vec_uint4)vec_perm((vec_uchar16)a_inf, (vec_uchar16)a_inf, splat_hi);
        /* +inf  */
        /* +inf  */
        if (b & 0x20)
        if (b & 0x20)
          result = vec_or(vec_andc(a_inf, sign), result);
          result = vec_or(vec_andc(a_inf, sign), result);
        /* -inf  */
        /* -inf  */
        if (b & 0x10)
        if (b & 0x10)
          result = vec_or(vec_and(a_inf, sign), result);
          result = vec_or(vec_and(a_inf, sign), result);
     }
     }
  }
  }
  /* 0 or denorm  */
  /* 0 or denorm  */
  if (b & 0xF)
  if (b & 0xF)
  {
  {
    vec_uint4 iszero =(vec_uint4)vec_cmpeq(aabs,(vec_uint4)vec_splat_u32(0));
    vec_uint4 iszero =(vec_uint4)vec_cmpeq(aabs,(vec_uint4)vec_splat_u32(0));
    iszero = vec_and(iszero,(vec_uint4)vec_slo((vec_uchar16)iszero,x.v));
    iszero = vec_and(iszero,(vec_uint4)vec_slo((vec_uchar16)iszero,x.v));
    /* denorm  */
    /* denorm  */
    if (b & 0x3)
    if (b & 0x3)
    {
    {
      vec_uint4 denorm_mask = (vec_uint4){0xFFFFF, 0xFFFFF, 0xFFFFF, 0xFFFFF};
      vec_uint4 denorm_mask = (vec_uint4){0xFFFFF, 0xFFFFF, 0xFFFFF, 0xFFFFF};
      vec_uint4 isdenorm = vec_nor((vec_uint4)vec_cmpgt(aabs, denorm_mask), iszero);
      vec_uint4 isdenorm = vec_nor((vec_uint4)vec_cmpgt(aabs, denorm_mask), iszero);
      isdenorm = (vec_uint4)vec_perm((vec_uchar16)isdenorm, (vec_uchar16)isdenorm, splat_hi);
      isdenorm = (vec_uint4)vec_perm((vec_uchar16)isdenorm, (vec_uchar16)isdenorm, splat_hi);
      /* +denorm  */
      /* +denorm  */
     if (b & 0x2)
     if (b & 0x2)
        result = vec_or(vec_andc(isdenorm, sign), result);
        result = vec_or(vec_andc(isdenorm, sign), result);
      /* -denorm  */
      /* -denorm  */
     if (b & 0x1)
     if (b & 0x1)
        result = vec_or(vec_and(isdenorm, sign), result);
        result = vec_or(vec_and(isdenorm, sign), result);
    }
    }
    /* 0  */
    /* 0  */
    if (b & 0xC)
    if (b & 0xC)
    {
    {
      iszero = (vec_uint4)vec_perm((vec_uchar16)iszero, (vec_uchar16)iszero, splat_hi);
      iszero = (vec_uint4)vec_perm((vec_uchar16)iszero, (vec_uchar16)iszero, splat_hi);
      /* +0  */
      /* +0  */
     if (b & 0x8)
     if (b & 0x8)
        result = vec_or(vec_andc(iszero, sign), result);
        result = vec_or(vec_andc(iszero, sign), result);
      /* -0  */
      /* -0  */
     if (b & 0x4)
     if (b & 0x4)
        result = vec_or(vec_and(iszero, sign), result);
        result = vec_or(vec_and(iszero, sign), result);
    }
    }
  }
  }
  return ((qword)result);
  return ((qword)result);
}
}
 
 
 
 
/* Carry generate
/* Carry generate
 */
 */
#define si_cg(_a, _b)           ((qword)(vec_addc((vec_uint4)(_a), (vec_uint4)(_b))))
#define si_cg(_a, _b)           ((qword)(vec_addc((vec_uint4)(_a), (vec_uint4)(_b))))
 
 
#define si_cgx(_a, _b, _c)      ((qword)(vec_or(vec_addc((vec_uint4)(_a), (vec_uint4)(_b)),             \
#define si_cgx(_a, _b, _c)      ((qword)(vec_or(vec_addc((vec_uint4)(_a), (vec_uint4)(_b)),             \
                                                vec_addc(vec_add((vec_uint4)(_a), (vec_uint4)(_b)),     \
                                                vec_addc(vec_add((vec_uint4)(_a), (vec_uint4)(_b)),     \
                                                         vec_and((vec_uint4)(_c), vec_splat_u32(1))))))
                                                         vec_and((vec_uint4)(_c), vec_splat_u32(1))))))
 
 
 
 
/* Count ones for bytes
/* Count ones for bytes
 */
 */
static __inline qword si_cntb(qword a)
static __inline qword si_cntb(qword a)
{
{
  vec_uchar16 nib_cnt = (vec_uchar16){0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4};
  vec_uchar16 nib_cnt = (vec_uchar16){0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4};
  vec_uchar16 four = { 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4 };
  vec_uchar16 four = { 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4 };
  vec_uchar16 av;
  vec_uchar16 av;
 
 
  av = (vec_uchar16)(a);
  av = (vec_uchar16)(a);
 
 
  return ((qword)(vec_add(vec_perm(nib_cnt, nib_cnt, av),
  return ((qword)(vec_add(vec_perm(nib_cnt, nib_cnt, av),
                          vec_perm(nib_cnt, nib_cnt, vec_sr (av, four)))));
                          vec_perm(nib_cnt, nib_cnt, vec_sr (av, four)))));
}
}
 
 
/* Count ones for bytes
/* Count ones for bytes
 */
 */
static __inline qword si_clz(qword a)
static __inline qword si_clz(qword a)
{
{
  vec_uchar16 av;
  vec_uchar16 av;
  vec_uchar16 cnt_hi, cnt_lo, cnt, tmp1, tmp2, tmp3;
  vec_uchar16 cnt_hi, cnt_lo, cnt, tmp1, tmp2, tmp3;
  vec_uchar16 four    = vec_splat_u8(4);
  vec_uchar16 four    = vec_splat_u8(4);
  vec_uchar16 nib_cnt = (vec_uchar16){4, 3, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0};
  vec_uchar16 nib_cnt = (vec_uchar16){4, 3, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0};
  vec_uchar16 eight   = vec_splat_u8(8);
  vec_uchar16 eight   = vec_splat_u8(8);
  vec_uchar16 sixteen = (vec_uchar16){16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16};
  vec_uchar16 sixteen = (vec_uchar16){16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16};
  vec_uchar16 twentyfour = (vec_uchar16){24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24};
  vec_uchar16 twentyfour = (vec_uchar16){24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24};
 
 
  av = (vec_uchar16)(a);
  av = (vec_uchar16)(a);
 
 
  cnt_hi = vec_perm(nib_cnt, nib_cnt, vec_sr(av, four));
  cnt_hi = vec_perm(nib_cnt, nib_cnt, vec_sr(av, four));
  cnt_lo = vec_perm(nib_cnt, nib_cnt, av);
  cnt_lo = vec_perm(nib_cnt, nib_cnt, av);
 
 
  cnt = vec_add(cnt_hi, vec_and(cnt_lo, vec_cmpeq(cnt_hi, four)));
  cnt = vec_add(cnt_hi, vec_and(cnt_lo, vec_cmpeq(cnt_hi, four)));
 
 
  tmp1 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(eight));
  tmp1 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(eight));
  tmp2 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(sixteen));
  tmp2 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(sixteen));
  tmp3 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(twentyfour));
  tmp3 = (vec_uchar16)vec_sl((vec_uint4)(cnt), (vec_uint4)(twentyfour));
 
 
  cnt = vec_add(cnt, vec_and(tmp1, vec_cmpeq(cnt, eight)));
  cnt = vec_add(cnt, vec_and(tmp1, vec_cmpeq(cnt, eight)));
  cnt = vec_add(cnt, vec_and(tmp2, vec_cmpeq(cnt, sixteen)));
  cnt = vec_add(cnt, vec_and(tmp2, vec_cmpeq(cnt, sixteen)));
  cnt = vec_add(cnt, vec_and(tmp3, vec_cmpeq(cnt, twentyfour)));
  cnt = vec_add(cnt, vec_and(tmp3, vec_cmpeq(cnt, twentyfour)));
 
 
  return (qword)((vec_sr((vec_uint4)(cnt), (vec_uint4)(twentyfour))));
  return (qword)((vec_sr((vec_uint4)(cnt), (vec_uint4)(twentyfour))));
}
}
 
 
/* Convert to float
/* Convert to float
 */
 */
#define si_cuflt(_a, _b)        ((qword)(vec_ctf((vec_uint4)(_a), _b)))
#define si_cuflt(_a, _b)        ((qword)(vec_ctf((vec_uint4)(_a), _b)))
#define si_csflt(_a, _b)        ((qword)(vec_ctf((vec_int4)(_a), _b)))
#define si_csflt(_a, _b)        ((qword)(vec_ctf((vec_int4)(_a), _b)))
 
 
/* Convert to signed int
/* Convert to signed int
 */
 */
#define si_cflts(_a, _b)        ((qword)(vec_cts((vec_float4)(_a), _b)))
#define si_cflts(_a, _b)        ((qword)(vec_cts((vec_float4)(_a), _b)))
 
 
/* Convert to unsigned int
/* Convert to unsigned int
 */
 */
#define si_cfltu(_a, _b)        ((qword)(vec_ctu((vec_float4)(_a), _b)))
#define si_cfltu(_a, _b)        ((qword)(vec_ctu((vec_float4)(_a), _b)))
 
 
/* Synchronize
/* Synchronize
 */
 */
#define si_dsync()              /* do nothing */
#define si_dsync()              /* do nothing */
#define si_sync()               /* do nothing */
#define si_sync()               /* do nothing */
#define si_syncc()              /* do nothing */
#define si_syncc()              /* do nothing */
 
 
 
 
/* Equivalence
/* Equivalence
 */
 */
static __inline qword si_eqv(qword a, qword b)
static __inline qword si_eqv(qword a, qword b)
{
{
  vec_uchar16 d;
  vec_uchar16 d;
 
 
  d = vec_xor((vec_uchar16)(a), (vec_uchar16)(b));
  d = vec_xor((vec_uchar16)(a), (vec_uchar16)(b));
  return ((qword)(vec_nor(d, d)));
  return ((qword)(vec_nor(d, d)));
}
}
 
 
/* Extend
/* Extend
 */
 */
static __inline qword si_xsbh(qword a)
static __inline qword si_xsbh(qword a)
{
{
  vec_char16 av;
  vec_char16 av;
 
 
  av = (vec_char16)(a);
  av = (vec_char16)(a);
  return ((qword)(vec_unpackh(vec_perm(av, av, ((vec_uchar16){1, 3, 5, 7, 9,11,13,15,
  return ((qword)(vec_unpackh(vec_perm(av, av, ((vec_uchar16){1, 3, 5, 7, 9,11,13,15,
                                                              0, 0, 0, 0, 0, 0, 0, 0})))));
                                                              0, 0, 0, 0, 0, 0, 0, 0})))));
}
}
 
 
static __inline qword si_xshw(qword a)
static __inline qword si_xshw(qword a)
{
{
  vec_short8 av;
  vec_short8 av;
 
 
  av = (vec_short8)(a);
  av = (vec_short8)(a);
  return ((qword)(vec_unpackh(vec_perm(av, av, ((vec_uchar16){2, 3, 6, 7,
  return ((qword)(vec_unpackh(vec_perm(av, av, ((vec_uchar16){2, 3, 6, 7,
                                                              10,11,14,15,
                                                              10,11,14,15,
                                                              0, 0, 0, 0,
                                                              0, 0, 0, 0,
                                                              0, 0, 0, 0})))));
                                                              0, 0, 0, 0})))));
}
}
 
 
static __inline qword si_xswd(qword a)
static __inline qword si_xswd(qword a)
{
{
  vec_int4 av;
  vec_int4 av;
 
 
  av = (vec_int4)(a);
  av = (vec_int4)(a);
  return ((qword)(vec_perm(av, vec_sra(av, ((vec_uint4){31,31,31,31})),
  return ((qword)(vec_perm(av, vec_sra(av, ((vec_uint4){31,31,31,31})),
                           ((vec_uchar16){20, 21, 22, 23,
                           ((vec_uchar16){20, 21, 22, 23,
                                           4,  5,  6,  7,
                                           4,  5,  6,  7,
                                          28, 29, 30, 31,
                                          28, 29, 30, 31,
                                          12, 13, 14, 15}))));
                                          12, 13, 14, 15}))));
}
}
 
 
static __inline qword si_fesd(qword a)
static __inline qword si_fesd(qword a)
{
{
  union {
  union {
    double d[2];
    double d[2];
    vec_double2 vd;
    vec_double2 vd;
  } out;
  } out;
  union {
  union {
    float f[4];
    float f[4];
    vec_float4 vf;
    vec_float4 vf;
  } in;
  } in;
 
 
  in.vf = (vec_float4)(a);
  in.vf = (vec_float4)(a);
  out.d[0] = (double)(in.f[0]);
  out.d[0] = (double)(in.f[0]);
  out.d[1] = (double)(in.f[2]);
  out.d[1] = (double)(in.f[2]);
  return ((qword)(out.vd));
  return ((qword)(out.vd));
}
}
 
 
/* Gather
/* Gather
 */
 */
static __inline qword si_gbb(qword a)
static __inline qword si_gbb(qword a)
{
{
  vec_uchar16 bits;
  vec_uchar16 bits;
  vec_uint4   bytes;
  vec_uint4   bytes;
 
 
  bits  = vec_sl(vec_and((vec_uchar16)(a), vec_splat_u8(1)), ((vec_uchar16){7, 6, 5, 4, 3, 2, 1, 0,
  bits  = vec_sl(vec_and((vec_uchar16)(a), vec_splat_u8(1)), ((vec_uchar16){7, 6, 5, 4, 3, 2, 1, 0,
                                                                            7, 6, 5, 4, 3, 2, 1, 0}));
                                                                            7, 6, 5, 4, 3, 2, 1, 0}));
  bytes = (vec_uint4)vec_sum2s((vec_int4)(vec_sum4s(bits, ((vec_uint4){0}))), ((vec_int4){0}));
  bytes = (vec_uint4)vec_sum2s((vec_int4)(vec_sum4s(bits, ((vec_uint4){0}))), ((vec_int4){0}));
 
 
  return ((qword)(vec_perm(bytes, bytes, ((vec_uchar16){0, 0, 7,15, 0, 0, 0, 0,
  return ((qword)(vec_perm(bytes, bytes, ((vec_uchar16){0, 0, 7,15, 0, 0, 0, 0,
                                                        0, 0, 0, 0, 0, 0, 0, 0}))));
                                                        0, 0, 0, 0, 0, 0, 0, 0}))));
}
}
 
 
 
 
static __inline qword si_gbh(qword a)
static __inline qword si_gbh(qword a)
{
{
  vec_ushort8 bits;
  vec_ushort8 bits;
  vec_uint4   bytes;
  vec_uint4   bytes;
 
 
  bits  = vec_sl(vec_and((vec_ushort8)(a), vec_splat_u16(1)), ((vec_ushort8){7, 6, 5, 4, 3, 2, 1, 0}));
  bits  = vec_sl(vec_and((vec_ushort8)(a), vec_splat_u16(1)), ((vec_ushort8){7, 6, 5, 4, 3, 2, 1, 0}));
 
 
  bytes = (vec_uint4)vec_sums((vec_int4)(vec_sum4s((vec_short8)(bits), (vec_int4){0})), (vec_int4){0});
  bytes = (vec_uint4)vec_sums((vec_int4)(vec_sum4s((vec_short8)(bits), (vec_int4){0})), (vec_int4){0});
 
 
  return ((qword)(vec_sld(bytes, bytes, 12)));
  return ((qword)(vec_sld(bytes, bytes, 12)));
}
}
 
 
static __inline qword si_gb(qword a)
static __inline qword si_gb(qword a)
{
{
  vec_uint4 bits;
  vec_uint4 bits;
  vec_uint4 bytes;
  vec_uint4 bytes;
 
 
  bits  = vec_sl(vec_and((vec_uint4)(a), vec_splat_u32(1)), ((vec_uint4){3, 2, 1, 0}));
  bits  = vec_sl(vec_and((vec_uint4)(a), vec_splat_u32(1)), ((vec_uint4){3, 2, 1, 0}));
  bytes = (vec_uint4)vec_sums((vec_int4)(bits), ((vec_int4){0}));
  bytes = (vec_uint4)vec_sums((vec_int4)(bits), ((vec_int4){0}));
  return ((qword)(vec_sld(bytes, bytes, 12)));
  return ((qword)(vec_sld(bytes, bytes, 12)));
}
}
 
 
 
 
/* Compare and halt
/* Compare and halt
 */
 */
static __inline void si_heq(qword a, qword b)
static __inline void si_heq(qword a, qword b)
{
{
  union {
  union {
    vector unsigned int v;
    vector unsigned int v;
    unsigned int i[4];
    unsigned int i[4];
  } aa, bb;
  } aa, bb;
 
 
  aa.v = (vector unsigned int)(a);
  aa.v = (vector unsigned int)(a);
  bb.v = (vector unsigned int)(b);
  bb.v = (vector unsigned int)(b);
 
 
  if (aa.i[0] == bb.i[0]) { SPU_HALT_ACTION; };
  if (aa.i[0] == bb.i[0]) { SPU_HALT_ACTION; };
}
}
 
 
static __inline void si_heqi(qword a, unsigned int b)
static __inline void si_heqi(qword a, unsigned int b)
{
{
  union {
  union {
    vector unsigned int v;
    vector unsigned int v;
    unsigned int i[4];
    unsigned int i[4];
  } aa;
  } aa;
 
 
  aa.v = (vector unsigned int)(a);
  aa.v = (vector unsigned int)(a);
 
 
  if (aa.i[0] == b) { SPU_HALT_ACTION; };
  if (aa.i[0] == b) { SPU_HALT_ACTION; };
}
}
 
 
static __inline void si_hgt(qword a, qword b)
static __inline void si_hgt(qword a, qword b)
{
{
  union {
  union {
    vector signed int v;
    vector signed int v;
    signed int i[4];
    signed int i[4];
  } aa, bb;
  } aa, bb;
 
 
  aa.v = (vector signed int)(a);
  aa.v = (vector signed int)(a);
  bb.v = (vector signed int)(b);
  bb.v = (vector signed int)(b);
 
 
  if (aa.i[0] > bb.i[0]) { SPU_HALT_ACTION; };
  if (aa.i[0] > bb.i[0]) { SPU_HALT_ACTION; };
}
}
 
 
static __inline void si_hgti(qword a, signed int b)
static __inline void si_hgti(qword a, signed int b)
{
{
  union {
  union {
    vector signed int v;
    vector signed int v;
    signed int i[4];
    signed int i[4];
  } aa;
  } aa;
 
 
  aa.v = (vector signed int)(a);
  aa.v = (vector signed int)(a);
 
 
  if (aa.i[0] > b) { SPU_HALT_ACTION; };
  if (aa.i[0] > b) { SPU_HALT_ACTION; };
}
}
 
 
static __inline void si_hlgt(qword a, qword b)
static __inline void si_hlgt(qword a, qword b)
{
{
  union {
  union {
    vector unsigned int v;
    vector unsigned int v;
    unsigned int i[4];
    unsigned int i[4];
  } aa, bb;
  } aa, bb;
 
 
  aa.v = (vector unsigned int)(a);
  aa.v = (vector unsigned int)(a);
  bb.v = (vector unsigned int)(b);
  bb.v = (vector unsigned int)(b);
 
 
  if (aa.i[0] > bb.i[0]) { SPU_HALT_ACTION; };
  if (aa.i[0] > bb.i[0]) { SPU_HALT_ACTION; };
}
}
 
 
static __inline void si_hlgti(qword a, unsigned int b)
static __inline void si_hlgti(qword a, unsigned int b)
{
{
  union {
  union {
    vector unsigned int v;
    vector unsigned int v;
    unsigned int i[4];
    unsigned int i[4];
  } aa;
  } aa;
 
 
  aa.v = (vector unsigned int)(a);
  aa.v = (vector unsigned int)(a);
 
 
  if (aa.i[0] > b) { SPU_HALT_ACTION; };
  if (aa.i[0] > b) { SPU_HALT_ACTION; };
}
}
 
 
 
 
/* Multiply and Add
/* Multiply and Add
 */
 */
static __inline qword si_mpya(qword a, qword b, qword c)
static __inline qword si_mpya(qword a, qword b, qword c)
{
{
  return ((qword)(vec_msum(vec_and((vec_short8)(a),
  return ((qword)(vec_msum(vec_and((vec_short8)(a),
                                   ((vec_short8){0, -1, 0, -1, 0, -1, 0, -1})),
                                   ((vec_short8){0, -1, 0, -1, 0, -1, 0, -1})),
                           (vec_short8)(b), (vec_int4)(c))));
                           (vec_short8)(b), (vec_int4)(c))));
}
}
 
 
static __inline qword si_fma(qword a, qword b, qword c)
static __inline qword si_fma(qword a, qword b, qword c)
{
{
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b), (vec_float4)(c))));
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b), (vec_float4)(c))));
}
}
 
 
static __inline qword si_dfma(qword a, qword b, qword c)
static __inline qword si_dfma(qword a, qword b, qword c)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, cc, dd;
  } aa, bb, cc, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  cc.v = (vec_double2)(c);
  cc.v = (vec_double2)(c);
  dd.d[0] = aa.d[0] * bb.d[0] + cc.d[0];
  dd.d[0] = aa.d[0] * bb.d[0] + cc.d[0];
  dd.d[1] = aa.d[1] * bb.d[1] + cc.d[1];
  dd.d[1] = aa.d[1] * bb.d[1] + cc.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Form Mask
/* Form Mask
 */
 */
#define si_fsmbi(_a)    si_fsmb(si_from_int(_a))
#define si_fsmbi(_a)    si_fsmb(si_from_int(_a))
 
 
static __inline qword si_fsmb(qword a)
static __inline qword si_fsmb(qword a)
{
{
  vec_char16 mask;
  vec_char16 mask;
  vec_ushort8 in;
  vec_ushort8 in;
 
 
  in = (vec_ushort8)(a);
  in = (vec_ushort8)(a);
  mask = (vec_char16)(vec_perm(in, in, ((vec_uchar16){2, 2, 2, 2, 2, 2, 2, 2,
  mask = (vec_char16)(vec_perm(in, in, ((vec_uchar16){2, 2, 2, 2, 2, 2, 2, 2,
                                                      3, 3, 3, 3, 3, 3, 3, 3})));
                                                      3, 3, 3, 3, 3, 3, 3, 3})));
  return ((qword)(vec_sra(vec_sl(mask, ((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7,
  return ((qword)(vec_sra(vec_sl(mask, ((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7,
                                                      0, 1, 2, 3, 4, 5, 6, 7})),
                                                      0, 1, 2, 3, 4, 5, 6, 7})),
                          vec_splat_u8(7))));
                          vec_splat_u8(7))));
}
}
 
 
 
 
static __inline qword si_fsmh(qword a)
static __inline qword si_fsmh(qword a)
{
{
  vec_uchar16 in;
  vec_uchar16 in;
  vec_short8 mask;
  vec_short8 mask;
 
 
  in = (vec_uchar16)(a);
  in = (vec_uchar16)(a);
  mask = (vec_short8)(vec_splat(in, 3));
  mask = (vec_short8)(vec_splat(in, 3));
  return ((qword)(vec_sra(vec_sl(mask, ((vec_ushort8){0, 1, 2, 3, 4, 5, 6, 7})),
  return ((qword)(vec_sra(vec_sl(mask, ((vec_ushort8){0, 1, 2, 3, 4, 5, 6, 7})),
                          vec_splat_u16(15))));
                          vec_splat_u16(15))));
}
}
 
 
static __inline qword si_fsm(qword a)
static __inline qword si_fsm(qword a)
{
{
  vec_uchar16 in;
  vec_uchar16 in;
  vec_int4 mask;
  vec_int4 mask;
 
 
  in = (vec_uchar16)(a);
  in = (vec_uchar16)(a);
  mask = (vec_int4)(vec_splat(in, 3));
  mask = (vec_int4)(vec_splat(in, 3));
  return ((qword)(vec_sra(vec_sl(mask, ((vec_uint4){28, 29, 30, 31})),
  return ((qword)(vec_sra(vec_sl(mask, ((vec_uint4){28, 29, 30, 31})),
                          ((vec_uint4){31,31,31,31}))));
                          ((vec_uint4){31,31,31,31}))));
}
}
 
 
/* Move from/to registers
/* Move from/to registers
 */
 */
#define si_fscrrd()             ((qword)((vec_uint4){0}))
#define si_fscrrd()             ((qword)((vec_uint4){0}))
#define si_fscrwr(_a)
#define si_fscrwr(_a)
 
 
#define si_mfspr(_reg)          ((qword)((vec_uint4){0}))
#define si_mfspr(_reg)          ((qword)((vec_uint4){0}))
#define si_mtspr(_reg, _a)
#define si_mtspr(_reg, _a)
 
 
/* Multiply High High Add
/* Multiply High High Add
 */
 */
static __inline qword si_mpyhha(qword a, qword b, qword c)
static __inline qword si_mpyhha(qword a, qword b, qword c)
{
{
  return ((qword)(vec_add(vec_mule((vec_short8)(a), (vec_short8)(b)), (vec_int4)(c))));
  return ((qword)(vec_add(vec_mule((vec_short8)(a), (vec_short8)(b)), (vec_int4)(c))));
}
}
 
 
static __inline qword si_mpyhhau(qword a, qword b, qword c)
static __inline qword si_mpyhhau(qword a, qword b, qword c)
{
{
  return ((qword)(vec_add(vec_mule((vec_ushort8)(a), (vec_ushort8)(b)), (vec_uint4)(c))));
  return ((qword)(vec_add(vec_mule((vec_ushort8)(a), (vec_ushort8)(b)), (vec_uint4)(c))));
}
}
 
 
/* Multiply Subtract
/* Multiply Subtract
 */
 */
static __inline qword si_fms(qword a, qword b, qword c)
static __inline qword si_fms(qword a, qword b, qword c)
{
{
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b),
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b),
                           vec_sub(((vec_float4){0.0f}), (vec_float4)(c)))));
                           vec_sub(((vec_float4){0.0f}), (vec_float4)(c)))));
}
}
 
 
static __inline qword si_dfms(qword a, qword b, qword c)
static __inline qword si_dfms(qword a, qword b, qword c)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, cc, dd;
  } aa, bb, cc, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  cc.v = (vec_double2)(c);
  cc.v = (vec_double2)(c);
  dd.d[0] = aa.d[0] * bb.d[0] - cc.d[0];
  dd.d[0] = aa.d[0] * bb.d[0] - cc.d[0];
  dd.d[1] = aa.d[1] * bb.d[1] - cc.d[1];
  dd.d[1] = aa.d[1] * bb.d[1] - cc.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Multiply
/* Multiply
 */
 */
static __inline qword si_fm(qword a, qword b)
static __inline qword si_fm(qword a, qword b)
{
{
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b), ((vec_float4){0.0f}))));
  return ((qword)(vec_madd((vec_float4)(a), (vec_float4)(b), ((vec_float4){0.0f}))));
}
}
 
 
static __inline qword si_dfm(qword a, qword b)
static __inline qword si_dfm(qword a, qword b)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, dd;
  } aa, bb, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  dd.d[0] = aa.d[0] * bb.d[0];
  dd.d[0] = aa.d[0] * bb.d[0];
  dd.d[1] = aa.d[1] * bb.d[1];
  dd.d[1] = aa.d[1] * bb.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Multiply High
/* Multiply High
 */
 */
static __inline qword si_mpyh(qword a, qword b)
static __inline qword si_mpyh(qword a, qword b)
{
{
  vec_uint4 sixteen = (vec_uint4){16, 16, 16, 16};
  vec_uint4 sixteen = (vec_uint4){16, 16, 16, 16};
 
 
  return ((qword)(vec_sl(vec_mule((vec_short8)(a), (vec_short8)(vec_sl((vec_uint4)(b), sixteen))), sixteen)));
  return ((qword)(vec_sl(vec_mule((vec_short8)(a), (vec_short8)(vec_sl((vec_uint4)(b), sixteen))), sixteen)));
}
}
 
 
 
 
/* Multiply High High
/* Multiply High High
 */
 */
static __inline qword si_mpyhh(qword a, qword b)
static __inline qword si_mpyhh(qword a, qword b)
{
{
  return ((qword)(vec_mule((vec_short8)(a), (vec_short8)(b))));
  return ((qword)(vec_mule((vec_short8)(a), (vec_short8)(b))));
}
}
 
 
static __inline qword si_mpyhhu(qword a, qword b)
static __inline qword si_mpyhhu(qword a, qword b)
{
{
  return ((qword)(vec_mule((vec_ushort8)(a), (vec_ushort8)(b))));
  return ((qword)(vec_mule((vec_ushort8)(a), (vec_ushort8)(b))));
}
}
 
 
/* Multiply Odd
/* Multiply Odd
 */
 */
static __inline qword si_mpy(qword a, qword b)
static __inline qword si_mpy(qword a, qword b)
{
{
  return ((qword)(vec_mulo((vec_short8)(a), (vec_short8)(b))));
  return ((qword)(vec_mulo((vec_short8)(a), (vec_short8)(b))));
}
}
 
 
static __inline qword si_mpyu(qword a, qword b)
static __inline qword si_mpyu(qword a, qword b)
{
{
  return ((qword)(vec_mulo((vec_ushort8)(a), (vec_ushort8)(b))));
  return ((qword)(vec_mulo((vec_ushort8)(a), (vec_ushort8)(b))));
}
}
 
 
static __inline qword si_mpyi(qword a, short b)
static __inline qword si_mpyi(qword a, short b)
{
{
  return ((qword)(vec_mulo((vec_short8)(a),
  return ((qword)(vec_mulo((vec_short8)(a),
                           vec_splat((vec_short8)(si_from_short(b)), 1))));
                           vec_splat((vec_short8)(si_from_short(b)), 1))));
}
}
 
 
static __inline qword si_mpyui(qword a, unsigned short b)
static __inline qword si_mpyui(qword a, unsigned short b)
{
{
  return ((qword)(vec_mulo((vec_ushort8)(a),
  return ((qword)(vec_mulo((vec_ushort8)(a),
                           vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
                           vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
}
}
 
 
/* Multiply and Shift Right
/* Multiply and Shift Right
 */
 */
static __inline qword si_mpys(qword a, qword b)
static __inline qword si_mpys(qword a, qword b)
{
{
  return ((qword)(vec_sra(vec_mulo((vec_short8)(a), (vec_short8)(b)), ((vec_uint4){16,16,16,16}))));
  return ((qword)(vec_sra(vec_mulo((vec_short8)(a), (vec_short8)(b)), ((vec_uint4){16,16,16,16}))));
}
}
 
 
/* Nand
/* Nand
 */
 */
static __inline qword si_nand(qword a, qword b)
static __inline qword si_nand(qword a, qword b)
{
{
  vec_uchar16 d;
  vec_uchar16 d;
 
 
  d = vec_and((vec_uchar16)(a), (vec_uchar16)(b));
  d = vec_and((vec_uchar16)(a), (vec_uchar16)(b));
  return ((qword)(vec_nor(d, d)));
  return ((qword)(vec_nor(d, d)));
}
}
 
 
/* Negative Multiply Add
/* Negative Multiply Add
 */
 */
static __inline qword si_dfnma(qword a, qword b, qword c)
static __inline qword si_dfnma(qword a, qword b, qword c)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, cc, dd;
  } aa, bb, cc, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  cc.v = (vec_double2)(c);
  cc.v = (vec_double2)(c);
  dd.d[0] = -cc.d[0] - aa.d[0] * bb.d[0];
  dd.d[0] = -cc.d[0] - aa.d[0] * bb.d[0];
  dd.d[1] = -cc.d[1] - aa.d[1] * bb.d[1];
  dd.d[1] = -cc.d[1] - aa.d[1] * bb.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Negative Multiply and Subtract
/* Negative Multiply and Subtract
 */
 */
static __inline qword si_fnms(qword a, qword b, qword c)
static __inline qword si_fnms(qword a, qword b, qword c)
{
{
  return ((qword)(vec_nmsub((vec_float4)(a), (vec_float4)(b), (vec_float4)(c))));
  return ((qword)(vec_nmsub((vec_float4)(a), (vec_float4)(b), (vec_float4)(c))));
}
}
 
 
static __inline qword si_dfnms(qword a, qword b, qword c)
static __inline qword si_dfnms(qword a, qword b, qword c)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, cc, dd;
  } aa, bb, cc, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  cc.v = (vec_double2)(c);
  cc.v = (vec_double2)(c);
  dd.d[0] = cc.d[0] - aa.d[0] * bb.d[0];
  dd.d[0] = cc.d[0] - aa.d[0] * bb.d[0];
  dd.d[1] = cc.d[1] - aa.d[1] * bb.d[1];
  dd.d[1] = cc.d[1] - aa.d[1] * bb.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
/* Nor
/* Nor
 */
 */
static __inline qword si_nor(qword a, qword b)
static __inline qword si_nor(qword a, qword b)
{
{
  return ((qword)(vec_nor((vec_uchar16)(a), (vec_uchar16)(b))));
  return ((qword)(vec_nor((vec_uchar16)(a), (vec_uchar16)(b))));
}
}
 
 
/* Or
/* Or
 */
 */
static __inline qword si_or(qword a, qword b)
static __inline qword si_or(qword a, qword b)
{
{
  return ((qword)(vec_or((vec_uchar16)(a), (vec_uchar16)(b))));
  return ((qword)(vec_or((vec_uchar16)(a), (vec_uchar16)(b))));
}
}
 
 
static __inline qword si_orbi(qword a, unsigned char b)
static __inline qword si_orbi(qword a, unsigned char b)
{
{
  return ((qword)(vec_or((vec_uchar16)(a),
  return ((qword)(vec_or((vec_uchar16)(a),
                         vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
                         vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
}
}
 
 
static __inline qword si_orhi(qword a, unsigned short b)
static __inline qword si_orhi(qword a, unsigned short b)
{
{
  return ((qword)(vec_or((vec_ushort8)(a),
  return ((qword)(vec_or((vec_ushort8)(a),
                          vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
                          vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
}
}
 
 
static __inline qword si_ori(qword a, unsigned int b)
static __inline qword si_ori(qword a, unsigned int b)
{
{
  return ((qword)(vec_or((vec_uint4)(a),
  return ((qword)(vec_or((vec_uint4)(a),
                          vec_splat((vec_uint4)(si_from_uint(b)), 0))));
                          vec_splat((vec_uint4)(si_from_uint(b)), 0))));
}
}
 
 
/* Or Complement
/* Or Complement
 */
 */
static __inline qword si_orc(qword a, qword b)
static __inline qword si_orc(qword a, qword b)
{
{
  return ((qword)(vec_or((vec_uchar16)(a), vec_nor((vec_uchar16)(b), (vec_uchar16)(b)))));
  return ((qword)(vec_or((vec_uchar16)(a), vec_nor((vec_uchar16)(b), (vec_uchar16)(b)))));
}
}
 
 
 
 
/* Or Across
/* Or Across
 */
 */
static __inline qword si_orx(qword a)
static __inline qword si_orx(qword a)
{
{
  vec_uchar16 tmp;
  vec_uchar16 tmp;
  tmp = (vec_uchar16)(a);
  tmp = (vec_uchar16)(a);
  tmp = vec_or(tmp, vec_sld(tmp, tmp, 8));
  tmp = vec_or(tmp, vec_sld(tmp, tmp, 8));
  tmp = vec_or(tmp, vec_sld(tmp, tmp, 4));
  tmp = vec_or(tmp, vec_sld(tmp, tmp, 4));
  return ((qword)(vec_and(tmp, ((vec_uchar16){0xFF,0xFF,0xFF,0xFF, 0x00,0x00,0x00,0x00,
  return ((qword)(vec_and(tmp, ((vec_uchar16){0xFF,0xFF,0xFF,0xFF, 0x00,0x00,0x00,0x00,
                                              0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00}))));
                                              0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00}))));
}
}
 
 
 
 
/* Estimates
/* Estimates
 */
 */
static __inline qword si_frest(qword a)
static __inline qword si_frest(qword a)
{
{
  return ((qword)(vec_re((vec_float4)(a))));
  return ((qword)(vec_re((vec_float4)(a))));
}
}
 
 
static __inline qword si_frsqest(qword a)
static __inline qword si_frsqest(qword a)
{
{
  return ((qword)(vec_rsqrte((vec_float4)(a))));
  return ((qword)(vec_rsqrte((vec_float4)(a))));
}
}
 
 
#define si_fi(_a, _d)           (_d)
#define si_fi(_a, _d)           (_d)
 
 
/* Channel Read and Write
/* Channel Read and Write
 */
 */
#define si_rdch(_channel)               ((qword)(vec_splat_u8(0)))      /* not mappable */
#define si_rdch(_channel)               ((qword)(vec_splat_u8(0)))      /* not mappable */
#define si_rchcnt(_channel)             ((qword)(vec_splat_u8(0)))      /* not mappable */
#define si_rchcnt(_channel)             ((qword)(vec_splat_u8(0)))      /* not mappable */
#define si_wrch(_channel, _a)           /* not mappable */
#define si_wrch(_channel, _a)           /* not mappable */
 
 
/* Rotate Left
/* Rotate Left
 */
 */
static __inline qword si_roth(qword a, qword b)
static __inline qword si_roth(qword a, qword b)
{
{
  return ((qword)(vec_rl((vec_ushort8)(a), (vec_ushort8)(b))));
  return ((qword)(vec_rl((vec_ushort8)(a), (vec_ushort8)(b))));
}
}
 
 
static __inline qword si_rot(qword a, qword b)
static __inline qword si_rot(qword a, qword b)
{
{
  return ((qword)(vec_rl((vec_uint4)(a), (vec_uint4)(b))));
  return ((qword)(vec_rl((vec_uint4)(a), (vec_uint4)(b))));
}
}
 
 
static __inline qword si_rothi(qword a, int b)
static __inline qword si_rothi(qword a, int b)
{
{
  return ((qword)(vec_rl((vec_ushort8)(a),
  return ((qword)(vec_rl((vec_ushort8)(a),
                         vec_splat((vec_ushort8)(si_from_int(b)), 1))));
                         vec_splat((vec_ushort8)(si_from_int(b)), 1))));
}
}
 
 
static __inline qword si_roti(qword a, int b)
static __inline qword si_roti(qword a, int b)
{
{
  return ((qword)(vec_rl((vec_uint4)(a),
  return ((qword)(vec_rl((vec_uint4)(a),
                         vec_splat((vec_uint4)(si_from_int(b)), 0))));
                         vec_splat((vec_uint4)(si_from_int(b)), 0))));
}
}
 
 
/* Rotate Left with Mask
/* Rotate Left with Mask
 */
 */
static __inline qword si_rothm(qword a, qword b)
static __inline qword si_rothm(qword a, qword b)
{
{
  vec_ushort8 neg_b;
  vec_ushort8 neg_b;
  vec_ushort8 mask;
  vec_ushort8 mask;
 
 
  neg_b = (vec_ushort8)vec_sub(vec_splat_s16(0), (vec_short8)(b));
  neg_b = (vec_ushort8)vec_sub(vec_splat_s16(0), (vec_short8)(b));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_andc(vec_sr((vec_ushort8)(a), neg_b), mask)));
  return ((qword)(vec_andc(vec_sr((vec_ushort8)(a), neg_b), mask)));
}
}
 
 
static __inline qword si_rotm(qword a, qword b)
static __inline qword si_rotm(qword a, qword b)
{
{
  vec_uint4 neg_b;
  vec_uint4 neg_b;
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  neg_b = (vec_uint4)vec_sub(vec_splat_s32(0), (vec_int4)(b));
  neg_b = (vec_uint4)vec_sub(vec_splat_s32(0), (vec_int4)(b));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_andc(vec_sr((vec_uint4)(a), neg_b), mask)));
  return ((qword)(vec_andc(vec_sr((vec_uint4)(a), neg_b), mask)));
}
}
 
 
static __inline qword si_rothmi(qword a, int b)
static __inline qword si_rothmi(qword a, int b)
{
{
  vec_ushort8 neg_b;
  vec_ushort8 neg_b;
  vec_ushort8 mask;
  vec_ushort8 mask;
 
 
  neg_b = vec_splat((vec_ushort8)(si_from_int(-b)), 1);
  neg_b = vec_splat((vec_ushort8)(si_from_int(-b)), 1);
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_andc(vec_sr((vec_ushort8)(a), neg_b), mask)));
  return ((qword)(vec_andc(vec_sr((vec_ushort8)(a), neg_b), mask)));
}
}
 
 
static __inline qword si_rotmi(qword a, int b)
static __inline qword si_rotmi(qword a, int b)
{
{
  vec_uint4 neg_b;
  vec_uint4 neg_b;
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  neg_b = vec_splat((vec_uint4)(si_from_int(-b)), 0);
  neg_b = vec_splat((vec_uint4)(si_from_int(-b)), 0);
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_andc(vec_sr((vec_uint4)(a), neg_b), mask)));
  return ((qword)(vec_andc(vec_sr((vec_uint4)(a), neg_b), mask)));
}
}
 
 
 
 
/* Rotate Left Algebraic with Mask
/* Rotate Left Algebraic with Mask
 */
 */
static __inline qword si_rotmah(qword a, qword b)
static __inline qword si_rotmah(qword a, qword b)
{
{
  vec_ushort8 neg_b;
  vec_ushort8 neg_b;
  vec_ushort8 mask;
  vec_ushort8 mask;
 
 
  neg_b = (vec_ushort8)vec_sub(vec_splat_s16(0), (vec_short8)(b));
  neg_b = (vec_ushort8)vec_sub(vec_splat_s16(0), (vec_short8)(b));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_sra((vec_short8)(a), (vec_ushort8)vec_or(neg_b, mask))));
  return ((qword)(vec_sra((vec_short8)(a), (vec_ushort8)vec_or(neg_b, mask))));
}
}
 
 
static __inline qword si_rotma(qword a, qword b)
static __inline qword si_rotma(qword a, qword b)
{
{
  vec_uint4 neg_b;
  vec_uint4 neg_b;
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  neg_b = (vec_uint4)vec_sub(vec_splat_s32(0), (vec_int4)(b));
  neg_b = (vec_uint4)vec_sub(vec_splat_s32(0), (vec_int4)(b));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_sra((vec_int4)(a), (vec_uint4)vec_or(neg_b, mask))));
  return ((qword)(vec_sra((vec_int4)(a), (vec_uint4)vec_or(neg_b, mask))));
}
}
 
 
 
 
static __inline qword si_rotmahi(qword a, int b)
static __inline qword si_rotmahi(qword a, int b)
{
{
  vec_ushort8 neg_b;
  vec_ushort8 neg_b;
  vec_ushort8 mask;
  vec_ushort8 mask;
 
 
  neg_b = vec_splat((vec_ushort8)(si_from_int(-b)), 1);
  neg_b = vec_splat((vec_ushort8)(si_from_int(-b)), 1);
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  mask = vec_sra(vec_sl(neg_b, vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_sra((vec_short8)(a), (vec_ushort8)vec_or(neg_b, mask))));
  return ((qword)(vec_sra((vec_short8)(a), (vec_ushort8)vec_or(neg_b, mask))));
}
}
 
 
static __inline qword si_rotmai(qword a, int b)
static __inline qword si_rotmai(qword a, int b)
{
{
  vec_uint4 neg_b;
  vec_uint4 neg_b;
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  neg_b = vec_splat((vec_uint4)(si_from_int(-b)), 0);
  neg_b = vec_splat((vec_uint4)(si_from_int(-b)), 0);
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = vec_sra(vec_sl(neg_b, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_sra((vec_int4)(a), (vec_uint4)vec_or(neg_b, mask))));
  return ((qword)(vec_sra((vec_int4)(a), (vec_uint4)vec_or(neg_b, mask))));
}
}
 
 
 
 
/* Rotate Left Quadword by Bytes with Mask
/* Rotate Left Quadword by Bytes with Mask
 */
 */
static __inline qword si_rotqmbyi(qword a, int count)
static __inline qword si_rotqmbyi(qword a, int count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  count = 0 - count;
  count = 0 - count;
  x.i[3] = count << 3;
  x.i[3] = count << 3;
  mask = (count & 0x10) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (count & 0x10) ? vec_splat_u8(0) : vec_splat_u8(-1);
 
 
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
}
}
 
 
 
 
static __inline qword si_rotqmby(qword a, qword count)
static __inline qword si_rotqmby(qword a, qword count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
  int cnt;
  int cnt;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  x.v = (vec_uchar16)(count);
  x.v = (vec_uchar16)(count);
  x.i[0] = cnt = (0 - x.i[0]) << 3;
  x.i[0] = cnt = (0 - x.i[0]) << 3;
 
 
  x.v = vec_splat(x.v, 3);
  x.v = vec_splat(x.v, 3);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
 
 
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
}
}
 
 
 
 
/* Rotate Left Quadword by Bytes
/* Rotate Left Quadword by Bytes
 */
 */
static __inline qword si_rotqbyi(qword a, int count)
static __inline qword si_rotqbyi(qword a, int count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } left, right;
  } left, right;
 
 
  count <<= 3;
  count <<= 3;
  left.i[3] = count;
  left.i[3] = count;
  right.i[3] = 0 - count;
  right.i[3] = 0 - count;
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left.v), vec_sro((vec_uchar16)(a), right.v))));
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left.v), vec_sro((vec_uchar16)(a), right.v))));
}
}
 
 
static __inline qword si_rotqby(qword a, qword count)
static __inline qword si_rotqby(qword a, qword count)
{
{
  vec_uchar16 left, right;
  vec_uchar16 left, right;
 
 
  left = vec_sl(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(3));
  left = vec_sl(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(3));
  right = vec_sub(vec_splat_u8(0), left);
  right = vec_sub(vec_splat_u8(0), left);
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left), vec_sro((vec_uchar16)(a), right))));
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left), vec_sro((vec_uchar16)(a), right))));
}
}
 
 
/* Rotate Left Quadword by Bytes Bit Count
/* Rotate Left Quadword by Bytes Bit Count
 */
 */
static __inline qword si_rotqbybi(qword a, qword count)
static __inline qword si_rotqbybi(qword a, qword count)
{
{
  vec_uchar16 left, right;
  vec_uchar16 left, right;
 
 
  left = vec_splat((vec_uchar16)(count), 3);
  left = vec_splat((vec_uchar16)(count), 3);
  right = vec_sub(vec_splat_u8(7), left);
  right = vec_sub(vec_splat_u8(7), left);
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left), vec_sro((vec_uchar16)(a), right))));
  return ((qword)(vec_or(vec_slo((vec_uchar16)(a), left), vec_sro((vec_uchar16)(a), right))));
}
}
 
 
 
 
/* Rotate Left Quadword by Bytes Bit Count
/* Rotate Left Quadword by Bytes Bit Count
 */
 */
static __inline qword si_rotqbii(qword a, int count)
static __inline qword si_rotqbii(qword a, int count)
{
{
  vec_uchar16 x, y;
  vec_uchar16 x, y;
  vec_uchar16 result;
  vec_uchar16 result;
 
 
  x = vec_splat((vec_uchar16)(si_from_int(count & 7)), 3);
  x = vec_splat((vec_uchar16)(si_from_int(count & 7)), 3);
  y = (vec_uchar16)(vec_sr((vec_uint4)vec_sro((vec_uchar16)(a), ((vec_uchar16)((vec_uint4){0,0,0,120}))),
  y = (vec_uchar16)(vec_sr((vec_uint4)vec_sro((vec_uchar16)(a), ((vec_uchar16)((vec_uint4){0,0,0,120}))),
                           (vec_uint4)vec_sub(vec_splat_u8(8), x)));
                           (vec_uint4)vec_sub(vec_splat_u8(8), x)));
  result = vec_or(vec_sll((qword)(a), x), y);
  result = vec_or(vec_sll((qword)(a), x), y);
  return ((qword)(result));
  return ((qword)(result));
}
}
 
 
static __inline qword si_rotqbi(qword a, qword count)
static __inline qword si_rotqbi(qword a, qword count)
{
{
  vec_uchar16 x, y;
  vec_uchar16 x, y;
  vec_uchar16 result;
  vec_uchar16 result;
 
 
  x = vec_and(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(7));
  x = vec_and(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(7));
  y = (vec_uchar16)(vec_sr((vec_uint4)vec_sro((vec_uchar16)(a), ((vec_uchar16)((vec_uint4){0,0,0,120}))),
  y = (vec_uchar16)(vec_sr((vec_uint4)vec_sro((vec_uchar16)(a), ((vec_uchar16)((vec_uint4){0,0,0,120}))),
                           (vec_uint4)vec_sub(vec_splat_u8(8), x)));
                           (vec_uint4)vec_sub(vec_splat_u8(8), x)));
 
 
  result = vec_or(vec_sll((qword)(a), x), y);
  result = vec_or(vec_sll((qword)(a), x), y);
  return ((qword)(result));
  return ((qword)(result));
}
}
 
 
 
 
/* Rotate Left Quadword and Mask by Bits
/* Rotate Left Quadword and Mask by Bits
 */
 */
static __inline qword si_rotqmbii(qword a, int count)
static __inline qword si_rotqmbii(qword a, int count)
{
{
  return ((qword)(vec_srl((vec_uchar16)(a), vec_splat((vec_uchar16)(si_from_int(0 - count)), 3))));
  return ((qword)(vec_srl((vec_uchar16)(a), vec_splat((vec_uchar16)(si_from_int(0 - count)), 3))));
}
}
 
 
static __inline qword si_rotqmbi(qword a, qword count)
static __inline qword si_rotqmbi(qword a, qword count)
{
{
  return ((qword)(vec_srl((vec_uchar16)(a), vec_sub(vec_splat_u8(0), vec_splat((vec_uchar16)(count), 3)))));
  return ((qword)(vec_srl((vec_uchar16)(a), vec_sub(vec_splat_u8(0), vec_splat((vec_uchar16)(count), 3)))));
}
}
 
 
 
 
/* Rotate Left Quadword and Mask by Bytes with Bit Count
/* Rotate Left Quadword and Mask by Bytes with Bit Count
 */
 */
static __inline qword si_rotqmbybi(qword a, qword count)
static __inline qword si_rotqmbybi(qword a, qword count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
  int cnt;
  int cnt;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  x.v = (vec_uchar16)(count);
  x.v = (vec_uchar16)(count);
  x.i[0] = cnt = 0 - (x.i[0] & ~7);
  x.i[0] = cnt = 0 - (x.i[0] & ~7);
  x.v = vec_splat(x.v, 3);
  x.v = vec_splat(x.v, 3);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
 
 
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_sro((vec_uchar16)(a), x.v), mask)));
}
}
 
 
 
 
 
 
 
 
/* Round Double to Float
/* Round Double to Float
 */
 */
static __inline qword si_frds(qword a)
static __inline qword si_frds(qword a)
{
{
  union {
  union {
    vec_float4 v;
    vec_float4 v;
    float f[4];
    float f[4];
  } d;
  } d;
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } in;
  } in;
 
 
  in.v = (vec_double2)(a);
  in.v = (vec_double2)(a);
  d.v = (vec_float4){0.0f};
  d.v = (vec_float4){0.0f};
  d.f[0] = (float)in.d[0];
  d.f[0] = (float)in.d[0];
  d.f[2] = (float)in.d[1];
  d.f[2] = (float)in.d[1];
 
 
  return ((qword)(d.v));
  return ((qword)(d.v));
}
}
 
 
/* Select Bits
/* Select Bits
 */
 */
static __inline qword si_selb(qword a, qword b, qword c)
static __inline qword si_selb(qword a, qword b, qword c)
{
{
  return ((qword)(vec_sel((vec_uchar16)(a), (vec_uchar16)(b), (vec_uchar16)(c))));
  return ((qword)(vec_sel((vec_uchar16)(a), (vec_uchar16)(b), (vec_uchar16)(c))));
}
}
 
 
 
 
/* Shuffle Bytes
/* Shuffle Bytes
 */
 */
static __inline qword si_shufb(qword a, qword b, qword pattern)
static __inline qword si_shufb(qword a, qword b, qword pattern)
{
{
  vec_uchar16 pat;
  vec_uchar16 pat;
 
 
  pat = vec_sel(((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15}),
  pat = vec_sel(((vec_uchar16){0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15}),
                vec_sr((vec_uchar16)(pattern), vec_splat_u8(3)),
                vec_sr((vec_uchar16)(pattern), vec_splat_u8(3)),
                vec_sra((vec_uchar16)(pattern), vec_splat_u8(7)));
                vec_sra((vec_uchar16)(pattern), vec_splat_u8(7)));
  return ((qword)(vec_perm(vec_perm(a, b, pattern),
  return ((qword)(vec_perm(vec_perm(a, b, pattern),
                           ((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0,
                           ((vec_uchar16){0, 0, 0, 0, 0, 0, 0, 0,
                                          0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),
                                          0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}),
                           pat)));
                           pat)));
}
}
 
 
 
 
/* Shift Left
/* Shift Left
 */
 */
static __inline qword si_shlh(qword a, qword b)
static __inline qword si_shlh(qword a, qword b)
{
{
  vec_ushort8 mask;
  vec_ushort8 mask;
 
 
  mask = (vec_ushort8)vec_sra(vec_sl((vec_ushort8)(b), vec_splat_u16(11)), vec_splat_u16(15));
  mask = (vec_ushort8)vec_sra(vec_sl((vec_ushort8)(b), vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_andc(vec_sl((vec_ushort8)(a), (vec_ushort8)(b)), mask)));
  return ((qword)(vec_andc(vec_sl((vec_ushort8)(a), (vec_ushort8)(b)), mask)));
}
}
 
 
static __inline qword si_shl(qword a, qword b)
static __inline qword si_shl(qword a, qword b)
{
{
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  mask = (vec_uint4)vec_sra(vec_sl((vec_uint4)(b), ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = (vec_uint4)vec_sra(vec_sl((vec_uint4)(b), ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_andc(vec_sl((vec_uint4)(a), (vec_uint4)(b)), mask)));
  return ((qword)(vec_andc(vec_sl((vec_uint4)(a), (vec_uint4)(b)), mask)));
}
}
 
 
 
 
static __inline qword si_shlhi(qword a, unsigned int b)
static __inline qword si_shlhi(qword a, unsigned int b)
{
{
  vec_ushort8 mask;
  vec_ushort8 mask;
  vec_ushort8 bv;
  vec_ushort8 bv;
 
 
  bv = vec_splat((vec_ushort8)(si_from_int(b)), 1);
  bv = vec_splat((vec_ushort8)(si_from_int(b)), 1);
  mask = (vec_ushort8)vec_sra(vec_sl(bv, vec_splat_u16(11)), vec_splat_u16(15));
  mask = (vec_ushort8)vec_sra(vec_sl(bv, vec_splat_u16(11)), vec_splat_u16(15));
  return ((qword)(vec_andc(vec_sl((vec_ushort8)(a), bv), mask)));
  return ((qword)(vec_andc(vec_sl((vec_ushort8)(a), bv), mask)));
}
}
 
 
static __inline qword si_shli(qword a, unsigned int b)
static __inline qword si_shli(qword a, unsigned int b)
{
{
  vec_uint4 bv;
  vec_uint4 bv;
  vec_uint4 mask;
  vec_uint4 mask;
 
 
  bv = vec_splat((vec_uint4)(si_from_uint(b)), 0);
  bv = vec_splat((vec_uint4)(si_from_uint(b)), 0);
  mask = (vec_uint4)vec_sra(vec_sl(bv, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  mask = (vec_uint4)vec_sra(vec_sl(bv, ((vec_uint4){26,26,26,26})), ((vec_uint4){31,31,31,31}));
  return ((qword)(vec_andc(vec_sl((vec_uint4)(a), bv), mask)));
  return ((qword)(vec_andc(vec_sl((vec_uint4)(a), bv), mask)));
}
}
 
 
 
 
/* Shift Left Quadword
/* Shift Left Quadword
 */
 */
static __inline qword si_shlqbii(qword a, unsigned int count)
static __inline qword si_shlqbii(qword a, unsigned int count)
{
{
  vec_uchar16 x;
  vec_uchar16 x;
 
 
  x = vec_splat((vec_uchar16)(si_from_uint(count)), 3);
  x = vec_splat((vec_uchar16)(si_from_uint(count)), 3);
  return ((qword)(vec_sll((vec_uchar16)(a), x)));
  return ((qword)(vec_sll((vec_uchar16)(a), x)));
}
}
 
 
static __inline qword si_shlqbi(qword a, qword count)
static __inline qword si_shlqbi(qword a, qword count)
{
{
  vec_uchar16 x;
  vec_uchar16 x;
 
 
  x = vec_splat((vec_uchar16)(count), 3);
  x = vec_splat((vec_uchar16)(count), 3);
  return ((qword)(vec_sll((vec_uchar16)(a), x)));
  return ((qword)(vec_sll((vec_uchar16)(a), x)));
}
}
 
 
 
 
/* Shift Left Quadword by Bytes
/* Shift Left Quadword by Bytes
 */
 */
static __inline qword si_shlqbyi(qword a, unsigned int count)
static __inline qword si_shlqbyi(qword a, unsigned int count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  x.i[3] = count << 3;
  x.i[3] = count << 3;
  mask = (count & 0x10) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (count & 0x10) ? vec_splat_u8(0) : vec_splat_u8(-1);
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
}
}
 
 
static __inline qword si_shlqby(qword a, qword count)
static __inline qword si_shlqby(qword a, qword count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    unsigned int i[4];
    unsigned int i[4];
  } x;
  } x;
  unsigned int cnt;
  unsigned int cnt;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  x.v = vec_sl(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(3));
  x.v = vec_sl(vec_splat((vec_uchar16)(count), 3), vec_splat_u8(3));
  cnt = x.i[0];
  cnt = x.i[0];
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
}
}
 
 
/* Shift Left Quadword by Bytes with Bit Count
/* Shift Left Quadword by Bytes with Bit Count
 */
 */
static __inline qword si_shlqbybi(qword a, qword count)
static __inline qword si_shlqbybi(qword a, qword count)
{
{
  union {
  union {
    vec_uchar16 v;
    vec_uchar16 v;
    int i[4];
    int i[4];
  } x;
  } x;
  unsigned int cnt;
  unsigned int cnt;
  vec_uchar16 mask;
  vec_uchar16 mask;
 
 
  x.v = vec_splat((vec_uchar16)(count), 3);
  x.v = vec_splat((vec_uchar16)(count), 3);
  cnt = x.i[0];
  cnt = x.i[0];
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  mask = (cnt & 0x80) ? vec_splat_u8(0) : vec_splat_u8(-1);
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
  return ((qword)(vec_and(vec_slo((vec_uchar16)(a), x.v), mask)));
}
}
 
 
 
 
/* Stop and Signal
/* Stop and Signal
 */
 */
#define si_stop(_type)          SPU_STOP_ACTION
#define si_stop(_type)          SPU_STOP_ACTION
#define si_stopd(a, b, c)       SPU_STOP_ACTION
#define si_stopd(a, b, c)       SPU_STOP_ACTION
 
 
 
 
/* Subtract
/* Subtract
 */
 */
static __inline qword si_sfh(qword a, qword b)
static __inline qword si_sfh(qword a, qword b)
{
{
  return ((qword)(vec_sub((vec_ushort8)(b), (vec_ushort8)(a))));
  return ((qword)(vec_sub((vec_ushort8)(b), (vec_ushort8)(a))));
}
}
 
 
static __inline qword si_sf(qword a, qword b)
static __inline qword si_sf(qword a, qword b)
{
{
  return ((qword)(vec_sub((vec_uint4)(b), (vec_uint4)(a))));
  return ((qword)(vec_sub((vec_uint4)(b), (vec_uint4)(a))));
}
}
 
 
static __inline qword si_fs(qword a, qword b)
static __inline qword si_fs(qword a, qword b)
{
{
  return ((qword)(vec_sub((vec_float4)(a), (vec_float4)(b))));
  return ((qword)(vec_sub((vec_float4)(a), (vec_float4)(b))));
}
}
 
 
static __inline qword si_dfs(qword a, qword b)
static __inline qword si_dfs(qword a, qword b)
{
{
  union {
  union {
    vec_double2 v;
    vec_double2 v;
    double d[2];
    double d[2];
  } aa, bb, dd;
  } aa, bb, dd;
 
 
  aa.v = (vec_double2)(a);
  aa.v = (vec_double2)(a);
  bb.v = (vec_double2)(b);
  bb.v = (vec_double2)(b);
  dd.d[0] = aa.d[0] - bb.d[0];
  dd.d[0] = aa.d[0] - bb.d[0];
  dd.d[1] = aa.d[1] - bb.d[1];
  dd.d[1] = aa.d[1] - bb.d[1];
  return ((qword)(dd.v));
  return ((qword)(dd.v));
}
}
 
 
static __inline qword si_sfhi(qword a, short b)
static __inline qword si_sfhi(qword a, short b)
{
{
  return ((qword)(vec_sub(vec_splat((vec_short8)(si_from_short(b)), 1),
  return ((qword)(vec_sub(vec_splat((vec_short8)(si_from_short(b)), 1),
                          (vec_short8)(a))));
                          (vec_short8)(a))));
}
}
 
 
static __inline qword si_sfi(qword a, int b)
static __inline qword si_sfi(qword a, int b)
{
{
  return ((qword)(vec_sub(vec_splat((vec_int4)(si_from_int(b)), 0),
  return ((qword)(vec_sub(vec_splat((vec_int4)(si_from_int(b)), 0),
                          (vec_int4)(a))));
                          (vec_int4)(a))));
}
}
 
 
/* Subtract word extended
/* Subtract word extended
 */
 */
#define si_sfx(_a, _b, _c)      ((qword)(vec_add(vec_add((vec_uint4)(_b),                               \
#define si_sfx(_a, _b, _c)      ((qword)(vec_add(vec_add((vec_uint4)(_b),                               \
                                                         vec_nor((vec_uint4)(_a), (vec_uint4)(_a))),    \
                                                         vec_nor((vec_uint4)(_a), (vec_uint4)(_a))),    \
                                                 vec_and((vec_uint4)(_c), vec_splat_u32(1)))))
                                                 vec_and((vec_uint4)(_c), vec_splat_u32(1)))))
 
 
 
 
/* Sum Bytes into Shorts
/* Sum Bytes into Shorts
 */
 */
static __inline qword si_sumb(qword a, qword b)
static __inline qword si_sumb(qword a, qword b)
{
{
  vec_uint4 zero = (vec_uint4){0};
  vec_uint4 zero = (vec_uint4){0};
  vec_ushort8 sum_a, sum_b;
  vec_ushort8 sum_a, sum_b;
 
 
  sum_a = (vec_ushort8)vec_sum4s((vec_uchar16)(a), zero);
  sum_a = (vec_ushort8)vec_sum4s((vec_uchar16)(a), zero);
  sum_b = (vec_ushort8)vec_sum4s((vec_uchar16)(b), zero);
  sum_b = (vec_ushort8)vec_sum4s((vec_uchar16)(b), zero);
 
 
  return ((qword)(vec_perm(sum_a, sum_b, ((vec_uchar16){18, 19,  2,  3, 22, 23,  6,  7,
  return ((qword)(vec_perm(sum_a, sum_b, ((vec_uchar16){18, 19,  2,  3, 22, 23,  6,  7,
                                                        26, 27, 10, 11, 30, 31, 14, 15}))));
                                                        26, 27, 10, 11, 30, 31, 14, 15}))));
}
}
 
 
/* Exclusive OR
/* Exclusive OR
 */
 */
static __inline qword si_xor(qword a, qword b)
static __inline qword si_xor(qword a, qword b)
{
{
  return ((qword)(vec_xor((vec_uchar16)(a), (vec_uchar16)(b))));
  return ((qword)(vec_xor((vec_uchar16)(a), (vec_uchar16)(b))));
}
}
 
 
static __inline qword si_xorbi(qword a, unsigned char b)
static __inline qword si_xorbi(qword a, unsigned char b)
{
{
  return ((qword)(vec_xor((vec_uchar16)(a),
  return ((qword)(vec_xor((vec_uchar16)(a),
                          vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
                          vec_splat((vec_uchar16)(si_from_uchar(b)), 3))));
}
}
 
 
static __inline qword si_xorhi(qword a, unsigned short b)
static __inline qword si_xorhi(qword a, unsigned short b)
{
{
  return ((qword)(vec_xor((vec_ushort8)(a),
  return ((qword)(vec_xor((vec_ushort8)(a),
                          vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
                          vec_splat((vec_ushort8)(si_from_ushort(b)), 1))));
}
}
 
 
static __inline qword si_xori(qword a, unsigned int b)
static __inline qword si_xori(qword a, unsigned int b)
{
{
  return ((qword)(vec_xor((vec_uint4)(a),
  return ((qword)(vec_xor((vec_uint4)(a),
                          vec_splat((vec_uint4)(si_from_uint(b)), 0))));
                          vec_splat((vec_uint4)(si_from_uint(b)), 0))));
}
}
 
 
 
 
/* Generate Controls for Sub-Quadword Insertion
/* Generate Controls for Sub-Quadword Insertion
 */
 */
static __inline qword si_cbd(qword a, int imm)
static __inline qword si_cbd(qword a, int imm)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned char c[16];
    unsigned char c[16];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.c[(si_to_uint(a) + (unsigned int)(imm)) & 0xF] = 0x03;
  shmask.c[(si_to_uint(a) + (unsigned int)(imm)) & 0xF] = 0x03;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_cdd(qword a, int imm)
static __inline qword si_cdd(qword a, int imm)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned long long ll[2];
    unsigned long long ll[2];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.ll[((si_to_uint(a) + (unsigned int)(imm)) >> 3) & 0x1] = 0x0001020304050607ULL;
  shmask.ll[((si_to_uint(a) + (unsigned int)(imm)) >> 3) & 0x1] = 0x0001020304050607ULL;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_chd(qword a, int imm)
static __inline qword si_chd(qword a, int imm)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned short s[8];
    unsigned short s[8];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.s[((si_to_uint(a) + (unsigned int)(imm)) >> 1) & 0x7] = 0x0203;
  shmask.s[((si_to_uint(a) + (unsigned int)(imm)) >> 1) & 0x7] = 0x0203;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_cwd(qword a, int imm)
static __inline qword si_cwd(qword a, int imm)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned int i[4];
    unsigned int i[4];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.i[((si_to_uint(a) + (unsigned int)(imm)) >> 2) & 0x3] = 0x00010203;
  shmask.i[((si_to_uint(a) + (unsigned int)(imm)) >> 2) & 0x3] = 0x00010203;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_cbx(qword a, qword b)
static __inline qword si_cbx(qword a, qword b)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned char c[16];
    unsigned char c[16];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.c[si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) & 0xF] = 0x03;
  shmask.c[si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) & 0xF] = 0x03;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
 
 
static __inline qword si_cdx(qword a, qword b)
static __inline qword si_cdx(qword a, qword b)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned long long ll[2];
    unsigned long long ll[2];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.ll[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 3) & 0x1] = 0x0001020304050607ULL;
  shmask.ll[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 3) & 0x1] = 0x0001020304050607ULL;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_chx(qword a, qword b)
static __inline qword si_chx(qword a, qword b)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned short s[8];
    unsigned short s[8];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.s[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 1) & 0x7] = 0x0203;
  shmask.s[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 1) & 0x7] = 0x0203;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
static __inline qword si_cwx(qword a, qword b)
static __inline qword si_cwx(qword a, qword b)
{
{
  union {
  union {
    vec_uint4 v;
    vec_uint4 v;
    unsigned int i[4];
    unsigned int i[4];
  } shmask;
  } shmask;
 
 
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.v = ((vec_uint4){0x10111213, 0x14151617, 0x18191A1B, 0x1C1D1E1F});
  shmask.i[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 2) & 0x3] = 0x00010203;
  shmask.i[(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))) >> 2) & 0x3] = 0x00010203;
  return ((qword)(shmask.v));
  return ((qword)(shmask.v));
}
}
 
 
 
 
/* Constant Formation
/* Constant Formation
 */
 */
static __inline qword si_il(signed short imm)
static __inline qword si_il(signed short imm)
{
{
  return ((qword)(vec_splat((vec_int4)(si_from_int((signed int)(imm))), 0)));
  return ((qword)(vec_splat((vec_int4)(si_from_int((signed int)(imm))), 0)));
}
}
 
 
 
 
static __inline qword si_ila(unsigned int imm)
static __inline qword si_ila(unsigned int imm)
{
{
  return ((qword)(vec_splat((vec_uint4)(si_from_uint(imm)), 0)));
  return ((qword)(vec_splat((vec_uint4)(si_from_uint(imm)), 0)));
}
}
 
 
static __inline qword si_ilh(signed short imm)
static __inline qword si_ilh(signed short imm)
{
{
  return ((qword)(vec_splat((vec_short8)(si_from_short(imm)), 1)));
  return ((qword)(vec_splat((vec_short8)(si_from_short(imm)), 1)));
}
}
 
 
static __inline qword si_ilhu(signed short imm)
static __inline qword si_ilhu(signed short imm)
{
{
  return ((qword)(vec_splat((vec_uint4)(si_from_uint((unsigned int)(imm) << 16)), 0)));
  return ((qword)(vec_splat((vec_uint4)(si_from_uint((unsigned int)(imm) << 16)), 0)));
}
}
 
 
static __inline qword si_iohl(qword a, unsigned short imm)
static __inline qword si_iohl(qword a, unsigned short imm)
{
{
  return ((qword)(vec_or((vec_uint4)(a), vec_splat((vec_uint4)(si_from_uint((unsigned int)(imm))), 0))));
  return ((qword)(vec_or((vec_uint4)(a), vec_splat((vec_uint4)(si_from_uint((unsigned int)(imm))), 0))));
}
}
 
 
/* No Operation
/* No Operation
 */
 */
#define si_lnop()               /* do nothing */
#define si_lnop()               /* do nothing */
#define si_nop()                /* do nothing */
#define si_nop()                /* do nothing */
 
 
 
 
/* Memory Load and Store
/* Memory Load and Store
 */
 */
static __inline qword si_lqa(unsigned int imm)
static __inline qword si_lqa(unsigned int imm)
{
{
  return ((qword)(vec_ld(0, (vector unsigned char *)(imm))));
  return ((qword)(vec_ld(0, (vector unsigned char *)(imm))));
}
}
 
 
static __inline qword si_lqd(qword a, unsigned int imm)
static __inline qword si_lqd(qword a, unsigned int imm)
{
{
  return ((qword)(vec_ld(si_to_uint(a) & ~0xF, (vector unsigned char *)(imm))));
  return ((qword)(vec_ld(si_to_uint(a) & ~0xF, (vector unsigned char *)(imm))));
}
}
 
 
static __inline qword si_lqr(unsigned int imm)
static __inline qword si_lqr(unsigned int imm)
{
{
  return ((qword)(vec_ld(0, (vector unsigned char *)(imm))));
  return ((qword)(vec_ld(0, (vector unsigned char *)(imm))));
}
}
 
 
static __inline qword si_lqx(qword a, qword b)
static __inline qword si_lqx(qword a, qword b)
{
{
  return ((qword)(vec_ld(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))), (vector unsigned char *)(0))));
  return ((qword)(vec_ld(si_to_uint((qword)(vec_add((vec_uint4)(a), (vec_uint4)(b)))), (vector unsigned char *)(0))));
}
}
 
 
static __inline void si_stqa(qword a, unsigned int imm)
static __inline void si_stqa(qword a, unsigned int imm)
{
{
  vec_st((vec_uchar16)(a), 0, (vector unsigned char *)(imm));
  vec_st((vec_uchar16)(a), 0, (vector unsigned char *)(imm));
}
}
 
 
static __inline void si_stqd(qword a, qword b, unsigned int imm)
static __inline void si_stqd(qword a, qword b, unsigned int imm)
{
{
  vec_st((vec_uchar16)(a), si_to_uint(b) & ~0xF, (vector unsigned char *)(imm));
  vec_st((vec_uchar16)(a), si_to_uint(b) & ~0xF, (vector unsigned char *)(imm));
}
}
 
 
static __inline void si_stqr(qword a, unsigned int imm)
static __inline void si_stqr(qword a, unsigned int imm)
{
{
  vec_st((vec_uchar16)(a), 0, (vector unsigned char *)(imm));
  vec_st((vec_uchar16)(a), 0, (vector unsigned char *)(imm));
}
}
 
 
static __inline void si_stqx(qword a, qword b, qword c)
static __inline void si_stqx(qword a, qword b, qword c)
{
{
  vec_st((vec_uchar16)(a),
  vec_st((vec_uchar16)(a),
         si_to_uint((qword)(vec_add((vec_uint4)(b), (vec_uint4)(c)))),
         si_to_uint((qword)(vec_add((vec_uint4)(b), (vec_uint4)(c)))),
         (vector unsigned char *)(0));
         (vector unsigned char *)(0));
}
}
 
 
#endif /* !__SPU__ */
#endif /* !__SPU__ */
#endif /* !_SI2VMX_H_ */
#endif /* !_SI2VMX_H_ */
 
 
 
 

powered by: WebSVN 2.1.0

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