HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
simd::vint16 Class Reference

Integer 16-vector, accelerated by SIMD instructions when available. More...

#include <simd.h>

Public Types

enum  { elements = 16 }
 
enum  { paddedelements =16 }
 
enum  { bits = 128 }
 
typedef int value_t
 Underlying equivalent scalar value type. More...
 
typedef simd_raw_t< int,
elements >::type 
simd_t
 the native SIMD type used More...
 
typedef vbool16 vbool_t
 bool type of the same length More...
 
typedef vfloat16 vfloat_t
 float type of the same length More...
 
typedef vint16 vint_t
 int type of the same length More...
 
typedef vbool16 bool_t
 
typedef vfloat16 float_t
 

Public Member Functions

 vint16 ()
 Default constructor (contents undefined) More...
 
 vint16 (int a)
 Construct from a single value (store it in all slots) More...
 
 vint16 (int v0, int v1, int v2, int v3, int v4, int v5, int v6, int v7, int v8, int v9, int v10, int v11, int v12, int v13, int v14, int v15)
 Construct from 16 values (won't work for vint16) More...
 
 vint16 (const int *vals)
 Construct from a pointer to values. More...
 
 vint16 (const unsigned short *vals)
 Construct from a pointer to unsigned short values. More...
 
 vint16 (const short *vals)
 Construct from a pointer to signed short values. More...
 
 vint16 (const unsigned char *vals)
 Construct from a pointer to unsigned char values (0 - 255) More...
 
 vint16 (const char *vals)
 Construct from a pointer to signed char values (-128 - 127) More...
 
 vint16 (const vint16 &other)
 Copy construct from another vint16. More...
 
 vint16 (const vfloat16 &f)
 Convert a vfloat16 to an vint16. Equivalent to i = (int)f;. More...
 
 vint16 (const vint8 &lo, const vint8 &hi)
 Construct from two vint8's. More...
 
 vint16 (const vint4 &a, const vint4 &b, const vint4 &c, const vint4 &d)
 Construct from four vint4's. More...
 
 vint16 (const simd_t &m)
 Construct from the underlying SIMD type. More...
 
 operator simd_t () const
 Return the raw SIMD type. More...
 
simd_t simd () const
 
simd_tsimd ()
 
const value_tdata () const
 Return a pointer to the underlying scalar type. More...
 
value_tdata ()
 
void clear ()
 Sset all components to 0. More...
 
const vint16operator= (int a)
 Assign one value to all components. More...
 
const vint16operator= (const vint16 &other)
 Assignment from another vint16. More...
 
int operator[] (int i) const
 Component access (get) More...
 
intoperator[] (int i)
 Component access (set) More...
 
void setcomp (int i, int value)
 Component access (set). More...
 
value_t x () const
 
value_t y () const
 
value_t z () const
 
value_t w () const
 
void set_x (value_t val)
 
void set_y (value_t val)
 
void set_z (value_t val)
 
void set_w (value_t val)
 
vint8 lo () const
 Extract the lower precision vint8. More...
 
vint8 hi () const
 Extract the higher precision vint8. More...
 
void load (int a)
 Helper: load a single int into all components. More...
 
void load (int v0, int v1, int v2, int v3, int v4, int v5, int v6, int v7, int v8, int v9, int v10, int v11, int v12, int v13, int v14, int v15)
 Load separate values into each component. More...
 
void load (const int *values)
 Load from an array of 16 values. More...
 
void load (const int *values, int n)
 
void load (const unsigned short *values)
 Load from an array of 16 unsigned short values, convert to vint16. More...
 
void load (const short *values)
 Load from an array of 16 unsigned short values, convert to vint16. More...
 
void load (const unsigned char *values)
 Load from an array of 16 unsigned char values, convert to vint16. More...
 
void load (const char *values)
 Load from an array of 16 unsigned char values, convert to vint16. More...
 
void store (int *values) const
 Store the values into memory. More...
 
void store (int *values, int n) const
 Store the first n values into memory. More...
 
void store (unsigned short *values) const
 
void store (unsigned char *values) const
 
void load_mask (const vbool_t &mask, const value_t *values)
 
void load_mask (int mask, const value_t *values)
 
void store_mask (const vbool_t &mask, value_t *values) const
 
void store_mask (int mask, value_t *values) const
 
template<int scale = 4>
void gather (const value_t *baseptr, const vint_t &vindex)
 Load values from addresses (char*)basepatr + vindex[i]*scale. More...
 
template<int scale = 4>
void gather_mask (const vbool_t &mask, const value_t *baseptr, const vint_t &vindex)
 Gather elements defined by the mask, leave others unchanged. More...
 
template<int scale = 4>
void gather_mask (int mask, const value_t *baseptr, const vint_t &vindex)
 
template<int scale = 4>
void scatter (value_t *baseptr, const vint_t &vindex) const
 Store values at addresses (char*)basepatr + vindex[i]*scale. More...
 
template<int scale = 4>
void scatter_mask (const vbool_t &mask, value_t *baseptr, const vint_t &vindex) const
 Scatter elements defined by the mask. More...
 
template<int scale = 4>
void scatter_mask (int mask, value_t *baseptr, const vint_t &vindex) const
 
template<int scale>
OIIO_FORCEINLINE void gather (const value_t *baseptr, const vint_t &vindex)
 
template<int scale>
OIIO_FORCEINLINE void gather_mask (const vbool_t &mask, const value_t *baseptr, const vint_t &vindex)
 
template<int scale>
OIIO_FORCEINLINE void scatter (value_t *baseptr, const vint_t &vindex) const
 
template<int scale>
OIIO_FORCEINLINE void scatter_mask (const vbool_t &mask, value_t *baseptr, const vint_t &vindex) const
 

Static Public Member Functions

static const char * type_name ()
 
static const vint16 Zero ()
 Return an vint16 with all components set to 0. More...
 
static const vint16 One ()
 Return an vint16 with all components set to 1. More...
 
static const vint16 NegOne ()
 Return an vint16 with all components set to -1 (aka 0xffffffff) More...
 
static const vint16 Iota (int start=0, int step=1)
 
static const vint16 Giota ()
 Return an vint16 with "geometric" iota: (1, 2, 4, 8, ...). More...
 

Friends

vint16 operator+ (const vint16 &a, const vint16 &b)
 
vint16 operator- (const vint16 &a)
 
vint16 operator- (const vint16 &a, const vint16 &b)
 
vint16 operator* (const vint16 &a, const vint16 &b)
 
vint16 operator/ (const vint16 &a, const vint16 &b)
 
vint16 operator% (const vint16 &a, const vint16 &b)
 
const vint16operator+= (vint16 &a, const vint16 &b)
 
const vint16operator-= (vint16 &a, const vint16 &b)
 
const vint16operator*= (vint16 &a, const vint16 &b)
 
const vint16operator/= (vint16 &a, const vint16 &b)
 
const vint16operator%= (vint16 &a, const vint16 &b)
 
vint16 operator& (const vint16 &a, const vint16 &b)
 
vint16 operator| (const vint16 &a, const vint16 &b)
 
vint16 operator^ (const vint16 &a, const vint16 &b)
 
const vint16operator&= (vint16 &a, const vint16 &b)
 
const vint16operator|= (vint16 &a, const vint16 &b)
 
const vint16operator^= (vint16 &a, const vint16 &b)
 
vint16 operator~ (const vint16 &a)
 
vint16 operator<< (const vint16 &a, unsigned int bits)
 
vint16 operator>> (const vint16 &a, unsigned int bits)
 
const vint16operator<<= (vint16 &a, unsigned int bits)
 
const vint16operator>>= (vint16 &a, unsigned int bits)
 
vbool16 operator== (const vint16 &a, const vint16 &b)
 
vbool16 operator!= (const vint16 &a, const vint16 &b)
 
vbool16 operator< (const vint16 &a, const vint16 &b)
 
vbool16 operator> (const vint16 &a, const vint16 &b)
 
vbool16 operator>= (const vint16 &a, const vint16 &b)
 
vbool16 operator<= (const vint16 &a, const vint16 &b)
 
std::ostream & operator<< (std::ostream &cout, const vint16 &a)
 Stream output. More...
 

Detailed Description

Integer 16-vector, accelerated by SIMD instructions when available.

Definition at line 1478 of file simd.h.

Member Typedef Documentation

Definition at line 1490 of file simd.h.

Definition at line 1492 of file simd.h.

the native SIMD type used

Definition at line 1485 of file simd.h.

Underlying equivalent scalar value type.

Definition at line 1481 of file simd.h.

bool type of the same length

Definition at line 1486 of file simd.h.

float type of the same length

Definition at line 1487 of file simd.h.

int type of the same length

Definition at line 1488 of file simd.h.

Member Enumeration Documentation

anonymous enum
Enumerator
elements 

Definition at line 1482 of file simd.h.

anonymous enum
Enumerator
paddedelements 

Definition at line 1483 of file simd.h.

anonymous enum
Enumerator
bits 

Definition at line 1484 of file simd.h.

Constructor & Destructor Documentation

simd::vint16::vint16 ( )
inline

Default constructor (contents undefined)

Definition at line 1495 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( int  a)

Construct from a single value (store it in all slots)

Definition at line 5853 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( int  v0,
int  v1,
int  v2,
int  v3,
int  v4,
int  v5,
int  v6,
int  v7,
int  v8,
int  v9,
int  v10,
int  v11,
int  v12,
int  v13,
int  v14,
int  v15 
)

Construct from 16 values (won't work for vint16)

Definition at line 5855 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const int vals)

Construct from a pointer to values.

Definition at line 5863 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const unsigned short *  vals)
explicit

Construct from a pointer to unsigned short values.

Definition at line 5864 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const short *  vals)
explicit

Construct from a pointer to signed short values.

Definition at line 5865 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const unsigned char *  vals)
explicit

Construct from a pointer to unsigned char values (0 - 255)

Definition at line 5866 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const char *  vals)
explicit

Construct from a pointer to signed char values (-128 - 127)

Definition at line 5867 of file simd.h.

simd::vint16::vint16 ( const vint16 other)
inline

Copy construct from another vint16.

Definition at line 1520 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const vfloat16 f)
explicit

Convert a vfloat16 to an vint16. Equivalent to i = (int)f;.

Definition at line 9755 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const vint8 lo,
const vint8 hi 
)

Construct from two vint8's.

Definition at line 6004 of file simd.h.

OIIO_FORCEINLINE simd::vint16::vint16 ( const vint4 a,
const vint4 b,
const vint4 c,
const vint4 d 
)

Construct from four vint4's.

Definition at line 6015 of file simd.h.

simd::vint16::vint16 ( const simd_t m)
inline

Construct from the underlying SIMD type.

Definition at line 1532 of file simd.h.

Member Function Documentation

OIIO_FORCEINLINE void simd::vint16::clear ( )

Sset all components to 0.

Definition at line 5951 of file simd.h.

const value_t* simd::vint16::data ( ) const
inline

Return a pointer to the underlying scalar type.

Definition at line 1540 of file simd.h.

value_t* simd::vint16::data ( )
inline

Definition at line 1541 of file simd.h.

template<int scale = 4>
void simd::vint16::gather ( const value_t baseptr,
const vint_t vindex 
)

Load values from addresses (char*)basepatr + vindex[i]*scale.

template<int scale>
OIIO_FORCEINLINE void simd::vint16::gather ( const value_t baseptr,
const vint_t vindex 
)

Definition at line 5894 of file simd.h.

template<int scale = 4>
void simd::vint16::gather_mask ( const vbool_t mask,
const value_t baseptr,
const vint_t vindex 
)

Gather elements defined by the mask, leave others unchanged.

template<int scale = 4>
void simd::vint16::gather_mask ( int  mask,
const value_t baseptr,
const vint_t vindex 
)
inline

Definition at line 1647 of file simd.h.

template<int scale>
OIIO_FORCEINLINE void simd::vint16::gather_mask ( const vbool_t mask,
const value_t baseptr,
const vint_t vindex 
)

Definition at line 5905 of file simd.h.

OIIO_FORCEINLINE const vint16 simd::vint16::Giota ( )
static

Return an vint16 with "geometric" iota: (1, 2, 4, 8, ...).

Definition at line 5981 of file simd.h.

OIIO_FORCEINLINE vint8 simd::vint16::hi ( ) const

Extract the higher precision vint8.

Definition at line 5995 of file simd.h.

OIIO_FORCEINLINE const vint16 simd::vint16::Iota ( int  start = 0,
int  step = 1 
)
static

Return an vint16 with incremented components (e.g., 0,1,2,3). Optional arguments can give a non-zero starting point and step size.

Definition at line 5973 of file simd.h.

OIIO_FORCEINLINE vint8 simd::vint16::lo ( ) const

Extract the lower precision vint8.

Definition at line 5987 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( int  a)

Helper: load a single int into all components.

Definition at line 5751 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( int  v0,
int  v1,
int  v2,
int  v3,
int  v4,
int  v5,
int  v6,
int  v7,
int  v8,
int  v9,
int  v10,
int  v11,
int  v12,
int  v13,
int  v14,
int  v15 
)

Load separate values into each component.

Definition at line 5761 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const int values)

Load from an array of 16 values.

Definition at line 5789 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const int values,
int  n 
)

Definition at line 5799 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const unsigned short *  values)

Load from an array of 16 unsigned short values, convert to vint16.

Definition at line 5824 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const short *  values)

Load from an array of 16 unsigned short values, convert to vint16.

Definition at line 5815 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const unsigned char *  values)

Load from an array of 16 unsigned char values, convert to vint16.

Definition at line 5843 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load ( const char *  values)

Load from an array of 16 unsigned char values, convert to vint16.

Definition at line 5834 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::load_mask ( const vbool_t mask,
const value_t values 
)

Masked load – read from values[] where mask is 1, load zero where mask is 0.

Definition at line 5872 of file simd.h.

void simd::vint16::load_mask ( int  mask,
const value_t values 
)
inline

Definition at line 1633 of file simd.h.

OIIO_FORCEINLINE const vint16 simd::vint16::NegOne ( )
static

Return an vint16 with all components set to -1 (aka 0xffffffff)

Definition at line 5970 of file simd.h.

OIIO_FORCEINLINE const vint16 simd::vint16::One ( )
static

Return an vint16 with all components set to 1.

Definition at line 5968 of file simd.h.

simd::vint16::operator simd_t ( ) const
inline

Return the raw SIMD type.

Definition at line 1535 of file simd.h.

OIIO_FORCEINLINE const vint16 & simd::vint16::operator= ( int  a)

Assign one value to all components.

Definition at line 5869 of file simd.h.

OIIO_FORCEINLINE const vint16 & simd::vint16::operator= ( const vint16 other)

Assignment from another vint16.

Definition at line 5730 of file simd.h.

OIIO_FORCEINLINE int simd::vint16::operator[] ( int  i) const

Component access (get)

Definition at line 5735 of file simd.h.

OIIO_FORCEINLINE int & simd::vint16::operator[] ( int  i)

Component access (set)

Definition at line 5740 of file simd.h.

template<int scale = 4>
void simd::vint16::scatter ( value_t baseptr,
const vint_t vindex 
) const

Store values at addresses (char*)basepatr + vindex[i]*scale.

template<int scale>
OIIO_FORCEINLINE void simd::vint16::scatter ( value_t baseptr,
const vint_t vindex 
) const

Definition at line 5916 of file simd.h.

template<int scale = 4>
void simd::vint16::scatter_mask ( const vbool_t mask,
value_t baseptr,
const vint_t vindex 
) const

Scatter elements defined by the mask.

template<int scale = 4>
void simd::vint16::scatter_mask ( int  mask,
value_t baseptr,
const vint_t vindex 
) const
inline

Definition at line 1658 of file simd.h.

template<int scale>
OIIO_FORCEINLINE void simd::vint16::scatter_mask ( const vbool_t mask,
value_t baseptr,
const vint_t vindex 
) const

Definition at line 5927 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::set_w ( value_t  val)

Definition at line 6349 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::set_x ( value_t  val)

Definition at line 6346 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::set_y ( value_t  val)

Definition at line 6347 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::set_z ( value_t  val)

Definition at line 6348 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::setcomp ( int  i,
int  value 
)

Component access (set).

Definition at line 5745 of file simd.h.

simd_t simd::vint16::simd ( ) const
inline

Definition at line 1536 of file simd.h.

simd_t& simd::vint16::simd ( )
inline

Definition at line 1537 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::store ( int values) const

Store the values into memory.

Definition at line 5938 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::store ( int values,
int  n 
) const

Store the first n values into memory.

Definition at line 6243 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::store ( unsigned short *  values) const

Store the least significant 16 bits of each element into adjacent unsigned shorts.

Definition at line 6261 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::store ( unsigned char *  values) const

Store the least significant 8 bits of each element into adjacent unsigned chars.

Definition at line 6273 of file simd.h.

OIIO_FORCEINLINE void simd::vint16::store_mask ( const vbool_t mask,
value_t values 
) const

Masked store – write to values[] where mask is enabled, don't touch values[] where it's not.

Definition at line 5882 of file simd.h.

void simd::vint16::store_mask ( int  mask,
value_t values 
) const
inline

Definition at line 1638 of file simd.h.

static const char* simd::vint16::type_name ( )
inlinestatic

Definition at line 1480 of file simd.h.

OIIO_FORCEINLINE int simd::vint16::w ( ) const

Definition at line 6345 of file simd.h.

OIIO_FORCEINLINE int simd::vint16::x ( ) const

Definition at line 6335 of file simd.h.

OIIO_FORCEINLINE int simd::vint16::y ( ) const

Definition at line 6343 of file simd.h.

OIIO_FORCEINLINE int simd::vint16::z ( ) const

Definition at line 6344 of file simd.h.

OIIO_FORCEINLINE const vint16 simd::vint16::Zero ( )
static

Return an vint16 with all components set to 0.

Definition at line 5960 of file simd.h.

Friends And Related Function Documentation

vbool16 operator!= ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6189 of file simd.h.

vint16 operator% ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6086 of file simd.h.

const vint16& operator%= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6091 of file simd.h.

vint16 operator& ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6101 of file simd.h.

const vint16& operator&= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6109 of file simd.h.

vint16 operator* ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6065 of file simd.h.

const vint16& operator*= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6074 of file simd.h.

vint16 operator+ ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6028 of file simd.h.

const vint16& operator+= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6037 of file simd.h.

vint16 operator- ( const vint16 a)
friend

Definition at line 6042 of file simd.h.

vint16 operator- ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6051 of file simd.h.

const vint16& operator-= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6060 of file simd.h.

vint16 operator/ ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6078 of file simd.h.

const vint16& operator/= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6083 of file simd.h.

vbool16 operator< ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6207 of file simd.h.

vint16 operator<< ( const vint16 a,
unsigned int  bits 
)
friend

Definition at line 6141 of file simd.h.

std::ostream& operator<< ( std::ostream &  cout,
const vint16 a 
)
friend

Stream output.

Definition at line 6234 of file simd.h.

const vint16& operator<<= ( vint16 a,
unsigned int  bits 
)
friend

Definition at line 6152 of file simd.h.

vbool16 operator<= ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6225 of file simd.h.

vbool16 operator== ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6180 of file simd.h.

vbool16 operator> ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6198 of file simd.h.

vbool16 operator>= ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6216 of file simd.h.

vint16 operator>> ( const vint16 a,
unsigned int  bits 
)
friend

Definition at line 6156 of file simd.h.

const vint16& operator>>= ( vint16 a,
unsigned int  bits 
)
friend

Definition at line 6165 of file simd.h.

vint16 operator^ ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6121 of file simd.h.

const vint16& operator^= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6129 of file simd.h.

vint16 operator| ( const vint16 a,
const vint16 b 
)
friend

Definition at line 6111 of file simd.h.

const vint16& operator|= ( vint16 a,
const vint16 b 
)
friend

Definition at line 6119 of file simd.h.

vint16 operator~ ( const vint16 a)
friend

Definition at line 6132 of file simd.h.

Member Data Documentation

vint8 simd::vint16::m_8[2]

Definition at line 1702 of file simd.h.

simd_t simd::vint16::m_simd

Definition at line 1700 of file simd.h.

value_t simd::vint16::m_val[elements]

Definition at line 1701 of file simd.h.


The documentation for this class was generated from the following file: