libsimdpp  0.9.3
simdpp::int64x4 Class Reference

Class representing 2x 64-bit signed integer vector. More...

Inheritance diagram for simdpp::int64x4:

Public Types

typedef int64_t element_type
 
typedef int64x2 half_vector_type
 
- Public Types inherited from simdpp::basic_int64x4
typedef uint64_t element_type
 
typedef uint64_t uint_element_type
 
typedef basic_int64x4 int_vector_type
 
typedef uint64x4 uint_vector_type
 
typedef basic_int64x2 half_vector_type
 
typedef mask_int64x4 mask_type
 
- Public Types inherited from simdpp::int256
typedef uint64_t element_type
 
typedef uint64_t uint_element_type
 
typedef int256 int_vector_type
 

Public Member Functions

 int64x4 ()
 
 int64x4 (const int64x4 &d)
 
int64x4operator= (const int64x4 &d)
 
 int64x4 (int64x2 d0, int64x2 d1)
 
const int64x2operator[] (unsigned i) const
 
int64x2operator[] (unsigned i)
 
 int64x4 (const int256 &d)
 
 int64x4 (basic_int64x4 d)
 
int64x4operator= (int256 d)
 
int64x4operator= (basic_int64x4 d)
 
 int64x4 (const float64x4 &d)
 
int64x4operator= (const float64x4 &d)
 
- Public Member Functions inherited from simdpp::basic_int64x4
 basic_int64x4 ()
 
 basic_int64x4 (const basic_int64x4 &d)
 
basic_int64x4operator= (const basic_int64x4 &d)
 
 basic_int64x4 (basic_int64x2 d0, basic_int64x2 d1)
 
const basic_int64x2operator[] (unsigned i) const
 
basic_int64x2operator[] (unsigned i)
 
 basic_int64x4 (const int256 &d)
 
basic_int64x4operator= (int256 d)
 
 basic_int64x4 (const float64x4 &d)
 Construct from compatible float32x8 integer vector type. More...
 
basic_int64x4operator= (const float64x4 &d)
 Construct from compatible float32x8 integer vector type. More...
 
- Public Member Functions inherited from simdpp::int256
 int256 ()
 
 int256 (const int256 &d)
 
int256operator= (const int256 &d)
 
 int256 (int128 d0, int128 d1)
 
const int128operator[] (unsigned i) const
 
int128operator[] (unsigned i)
 

Static Public Member Functions

static int64x4 zero ()
 Creates a signed int64x4 vector with the contents set to zero. More...
 
static int64x4 load_broadcast (const int64_t *v0)
 Creates a signed int64x4 vector from a value loaded from memory. More...
 
static int64x4 set_broadcast (int64_t v0)
 Creates a signed int64x4 vector from a value stored in a core register. More...
 
static int64x4 make_const (int64_t v0)
 Creates a signed int64x4 vector from a value known at compile-time. More...
 
static int64x4 make_const (int64_t v0, int64_t v1)
 Creates a signed int64x4 vector from two values known at compile-time. More...
 
static int64x4 make_const (int64_t v0, int64_t v1, int64_t v2, int64_t v3)
 Creates an signed int64x4 vector from four values known at compile-time. More...
 

Additional Inherited Members

- Static Public Attributes inherited from simdpp::basic_int64x4
static const unsigned length = 4
 
static const unsigned num_bits = 64
 
static const uint_element_type all_bits = 0xffffffffffffffff
 
- Protected Member Functions inherited from simdpp::int256
const uint64x2u64 (unsigned i) const
 
uint64x2u64 (unsigned i)
 
const uint32x4u32 (unsigned i) const
 
uint32x4u32 (unsigned i)
 
const uint16x8u16 (unsigned i) const
 
uint16x8u16 (unsigned i)
 
const uint8x16u8 (unsigned i) const
 
uint8x16u8 (unsigned i)
 
const int64x2i64 (unsigned i) const
 
int64x2i64 (unsigned i)
 
const int32x4i32 (unsigned i) const
 
int32x4i32 (unsigned i)
 
const int16x8i16 (unsigned i) const
 
int16x8i16 (unsigned i)
 
const int8x16i8 (unsigned i) const
 
int8x16i8 (unsigned i)
 

Detailed Description

Class representing 2x 64-bit signed integer vector.

Member Typedef Documentation

Constructor & Destructor Documentation

simdpp::int64x4::int64x4 ( )
inline
simdpp::int64x4::int64x4 ( const int64x4 d)
inline
simdpp::int64x4::int64x4 ( const int256 d)
inline

Construct from the underlying vector type Construct from the base type

simdpp::int64x4::int64x4 ( basic_int64x4  d)
inline

Construct from the underlying vector type Construct from the base type

simdpp::int64x4::int64x4 ( const float64x4 d)
inlineexplicit

Construct from compatible float64x4 integer vector type

simdpp::int64x4::int64x4 ( int64x2  d0,
int64x2  d1 
)
inline

Member Function Documentation

static int64x4 simdpp::int64x4::load_broadcast ( const int64_t *  v0)
static

Creates a signed int64x4 vector from a value loaded from memory.

| 0 1 |
r = [ v0 v0 ]
  • In SSE2-SSE4.1 this intrinsic results in at least 2 instructions.
  • In NEON this intrinsic results in at least 1 instructions.
static int64x4 simdpp::int64x4::make_const ( int64_t  v0)
static

Creates a signed int64x4 vector from a value known at compile-time.

| 0 1 |
r = [ v0 v0 ]
static int64x4 simdpp::int64x4::make_const ( int64_t  v0,
int64_t  v1 
)
static

Creates a signed int64x4 vector from two values known at compile-time.

| 0 1 |
r = [ v0 v1 ]
static int64x4 simdpp::int64x4::make_const ( int64_t  v0,
int64_t  v1,
int64_t  v2,
int64_t  v3 
)
static

Creates an signed int64x4 vector from four values known at compile-time.

| 0 1 2 3 |
r = [ v0 v1 v2 v3 ]
int64x4& simdpp::int64x4::operator= ( const int64x4 d)
inline
int64x4& simdpp::int64x4::operator= ( int256  d)
inline

Construct from the underlying vector type Construct from the base type

int64x4& simdpp::int64x4::operator= ( basic_int64x4  d)
inline

Construct from the underlying vector type Construct from the base type

int64x4& simdpp::int64x4::operator= ( const float64x4 d)
inline

Construct from compatible float64x4 integer vector type

const int64x2& simdpp::int64x4::operator[] ( unsigned  i) const
inline
int64x2& simdpp::int64x4::operator[] ( unsigned  i)
inline
static int64x4 simdpp::int64x4::set_broadcast ( int64_t  v0)
static

Creates a signed int64x4 vector from a value stored in a core register.

| 0 1 |
r = [ v0 v0 ]
  • In SSE2-SSE4.1 and NEON this intrinsic results in at least 2 instructions.
static int64x4 simdpp::int64x4::zero ( )
static

Creates a signed int64x4 vector with the contents set to zero.

r0 = 0
r1 = 0

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