BmnRoot
Loading...
Searching...
No Matches
P4_F64vec2.h File Reference
#include <iostream>
#include <cmath>
#include <emmintrin.h>
#include "vec_arithmetic.h"
#include "std_alloc.h"
Include dependency graph for P4_F64vec2.h:

Go to the source code of this file.

Classes

class  F64vec2
 

Macros

#define _f64vec2_abs_mask   (static_cast<F64vec2>(__f64vec2_abs_mask_cheat.m))
 
#define _f64vec2_sgn_mask   (static_cast<F64vec2>(__f64vec2_sgn_mask_cheat.m))
 
#define _f64vec2_zero   (static_cast<F64vec2>(__f64vec2_zero_cheat.m))
 
#define _f64vec2_one   (static_cast<F64vec2>(__f64vec2_one_cheat.m))
 
#define _f64vec2_true   (static_cast<F64vec2>(__f64vec2_true_cheat.m))
 
#define _f64vec2_false   (static_cast<F64vec2>(__f64vec2_false_cheat.m))
 
#define if3(a, b, c)   ((a)&(b)) | ((!(a))&(c))
 
#define NotEmpty(a)   bool((a)[0])|bool((a)[1])|bool((a)[2])|bool((a)[3])
 
#define Empty(a)   !(bool((a)[0])|bool((a)[1])|bool((a)[2])|bool((a)[3]))
 
#define _f1(A, F)   F64vec2( F(A[0]), F(A[1]) )
 
#define _fvecalignment   __attribute__ ((aligned(16)))
 

Typedefs

typedef F64vec2 fvec
 
typedef double fscal
 

Functions

class F64vec2 __attribute__ ((aligned(16)))
 
double & operator[] (int i)
 
 F64vec2 ()
 
 F64vec2 (const __m128d &a)
 
 F64vec2 (const double &a)
 
 F64vec2 (const double &f0, const double &f1)
 
 operator __m128d () const
 
F64vec2 operator+ (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator- (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator* (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator/ (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 min (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 max (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 sqrt (const F64vec2 &a)
 
F64vec2 rsqrt (const F64vec2 &a)
 
F64vec2 rcp (const F64vec2 &a)
 
F64vec2 fabs (const F64vec2 &a)
 
F64vec2 sgn (const F64vec2 &a)
 
F64vec2 asgnb (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator& (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator| (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator^ (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator! (const F64vec2 &a)
 
F64vec2 operator< (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator<= (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator> (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator>= (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 operator== (const F64vec2 &a, const F64vec2 &b)
 
F64vec2 bool2int (const F64vec2 &a)
 
 vec_arithmetic (F64vec2, double)
 
F64vec2 exp (const F64vec2 &a)
 
F64vec2 log (const F64vec2 &a)
 
F64vec2 sin (const F64vec2 &a)
 
F64vec2 cos (const F64vec2 &a)
 
F64vec2 acos (const F64vec2 &a)
 
F64vec2 atan2 (const F64vec2 &y, const F64vec2 &x)
 
std::ostream & operator<< (std::ostream &strm, const F64vec2 &a)
 
std::istream & operator>> (std::istream &strm, F64vec2 &a)
 

Variables

union { 
 
   double   d 
 
   long long   i 
 
__d_one = {(double)1.} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_abs_mask_cheat = {{0x7fffffffffffffffll, 0x7fffffffffffffffll}} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_sgn_mask_cheat = {{0x8000000000000000ull, 0x8000000000000000ull}} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_zero_cheat = {{ 0, 0}} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_one_cheat = {{__d_one.i , __d_one.i }} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_true_cheat = {{0xFFFFFFFFFFFFFFFF, 0xFFFFFFFFFFFFFFFF}} 
 
union { 
 
   long long   i [2] 
 
   __m128d   m 
 
__f64vec2_false_cheat = {{0x0000000000000000, 0x0000000000000000}} 
 
__m128d v
 
const int fvecLen = 2
 

Macro Definition Documentation

◆ _f1

#define _f1 (   A,
 
)    F64vec2( F(A[0]), F(A[1]) )

Definition at line 148 of file P4_F64vec2.h.

◆ _f64vec2_abs_mask

#define _f64vec2_abs_mask   (static_cast<F64vec2>(__f64vec2_abs_mask_cheat.m))

Definition at line 37 of file P4_F64vec2.h.

◆ _f64vec2_false

#define _f64vec2_false   (static_cast<F64vec2>(__f64vec2_false_cheat.m))

Definition at line 42 of file P4_F64vec2.h.

◆ _f64vec2_one

#define _f64vec2_one   (static_cast<F64vec2>(__f64vec2_one_cheat.m))

Definition at line 40 of file P4_F64vec2.h.

◆ _f64vec2_sgn_mask

#define _f64vec2_sgn_mask   (static_cast<F64vec2>(__f64vec2_sgn_mask_cheat.m))

Definition at line 38 of file P4_F64vec2.h.

◆ _f64vec2_true

#define _f64vec2_true   (static_cast<F64vec2>(__f64vec2_true_cheat.m))

Definition at line 41 of file P4_F64vec2.h.

◆ _f64vec2_zero

#define _f64vec2_zero   (static_cast<F64vec2>(__f64vec2_zero_cheat.m))

Definition at line 39 of file P4_F64vec2.h.

◆ _fvecalignment

#define _fvecalignment   __attribute__ ((aligned(16)))

Definition at line 220 of file P4_F64vec2.h.

◆ Empty

#define Empty (   a)    !(bool((a)[0])|bool((a)[1])|bool((a)[2])|bool((a)[3]))

Definition at line 135 of file P4_F64vec2.h.

◆ if3

#define if3 (   a,
  b,
 
)    ((a)&(b)) | ((!(a))&(c))

Definition at line 132 of file P4_F64vec2.h.

◆ NotEmpty

#define NotEmpty (   a)    bool((a)[0])|bool((a)[1])|bool((a)[2])|bool((a)[3])

Definition at line 134 of file P4_F64vec2.h.

Typedef Documentation

◆ fscal

typedef double fscal

Definition at line 216 of file P4_F64vec2.h.

◆ fvec

typedef F64vec2 fvec

Definition at line 215 of file P4_F64vec2.h.

Function Documentation

◆ __attribute__()

class F64vec2 __attribute__ ( (aligned(16))  )

◆ acos()

friend F64vec2 __attribute__::acos ( const F64vec2 a)

Definition at line 108 of file P4_F64vec2.h.

◆ asgnb()

friend F64vec2 __attribute__::asgnb ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 46 of file P4_F64vec2.h.

◆ atan2()

friend F64vec2 __attribute__::atan2 ( const F64vec2 y,
const F64vec2 x 
)

Definition at line 112 of file P4_F64vec2.h.

◆ bool2int()

friend F64vec2 __attribute__::bool2int ( const F64vec2 a)

Definition at line 92 of file P4_F64vec2.h.

◆ cos()

friend F64vec2 __attribute__::cos ( const F64vec2 a)

Definition at line 107 of file P4_F64vec2.h.

◆ exp()

friend F64vec2 __attribute__::exp ( const F64vec2 a)

Definition at line 104 of file P4_F64vec2.h.

◆ F64vec2() [1/4]

__attribute__::F64vec2 ( )

Definition at line 7 of file P4_F64vec2.h.

◆ F64vec2() [2/4]

__attribute__::F64vec2 ( const __m128d &  a)

Definition at line 8 of file P4_F64vec2.h.

◆ F64vec2() [3/4]

__attribute__::F64vec2 ( const double &  a)

Definition at line 9 of file P4_F64vec2.h.

◆ F64vec2() [4/4]

__attribute__::F64vec2 ( const double &  f0,
const double &  f1 
)

Definition at line 11 of file P4_F64vec2.h.

◆ fabs()

friend F64vec2 __attribute__::fabs ( const F64vec2 a)

Definition at line 42 of file P4_F64vec2.h.

◆ log()

friend F64vec2 __attribute__::log ( const F64vec2 a)

Definition at line 105 of file P4_F64vec2.h.

◆ max()

friend F64vec2 __attribute__::max ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 24 of file P4_F64vec2.h.

◆ min()

friend F64vec2 __attribute__::min ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 23 of file P4_F64vec2.h.

◆ operator __m128d()

__attribute__::operator __m128d ( ) const

Definition at line 14 of file P4_F64vec2.h.

◆ operator!()

friend F64vec2 __attribute__::operator! ( const F64vec2 a)

Definition at line 61 of file P4_F64vec2.h.

◆ operator&()

friend F64vec2 __attribute__::operator& ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 52 of file P4_F64vec2.h.

◆ operator*()

friend F64vec2 __attribute__::operator* ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 19 of file P4_F64vec2.h.

◆ operator+()

friend F64vec2 __attribute__::operator+ ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 17 of file P4_F64vec2.h.

◆ operator-()

friend F64vec2 __attribute__::operator- ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 18 of file P4_F64vec2.h.

◆ operator/()

friend F64vec2 __attribute__::operator/ ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 20 of file P4_F64vec2.h.

◆ operator<()

friend F64vec2 __attribute__::operator< ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 70 of file P4_F64vec2.h.

◆ operator<<()

friend std::ostream & __attribute__::operator<< ( std::ostream &  strm,
const F64vec2 a 
)

Definition at line 154 of file P4_F64vec2.h.

◆ operator<=()

friend F64vec2 __attribute__::operator<= ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 73 of file P4_F64vec2.h.

◆ operator==()

friend F64vec2 __attribute__::operator== ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 82 of file P4_F64vec2.h.

◆ operator>()

friend F64vec2 __attribute__::operator> ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 76 of file P4_F64vec2.h.

◆ operator>=()

friend F64vec2 __attribute__::operator>= ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 79 of file P4_F64vec2.h.

◆ operator>>()

friend std::istream & __attribute__::operator>> ( std::istream &  strm,
F64vec2 a 
)

Definition at line 159 of file P4_F64vec2.h.

◆ operator[]()

double & __attribute__::operator[] ( int  i)

Definition at line 4 of file P4_F64vec2.h.

◆ operator^()

friend F64vec2 __attribute__::operator^ ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 58 of file P4_F64vec2.h.

◆ operator|()

friend F64vec2 __attribute__::operator| ( const F64vec2 a,
const F64vec2 b 
)

Definition at line 55 of file P4_F64vec2.h.

◆ rcp()

friend F64vec2 __attribute__::rcp ( const F64vec2 a)

Definition at line 38 of file P4_F64vec2.h.

◆ rsqrt()

friend F64vec2 __attribute__::rsqrt ( const F64vec2 a)

Definition at line 30 of file P4_F64vec2.h.

◆ sgn()

friend F64vec2 __attribute__::sgn ( const F64vec2 a)

Definition at line 45 of file P4_F64vec2.h.

◆ sin()

friend F64vec2 __attribute__::sin ( const F64vec2 a)

Definition at line 106 of file P4_F64vec2.h.

◆ sqrt()

friend F64vec2 __attribute__::sqrt ( const F64vec2 a)

Definition at line 27 of file P4_F64vec2.h.

◆ vec_arithmetic()

__attribute__::vec_arithmetic ( F64vec2  ,
double   
)

Variable Documentation

◆ [union]

const union { ... } __d_one

◆ [union]

const union { ... } __f64vec2_abs_mask_cheat

◆ [union]

const union { ... } __f64vec2_false_cheat

◆ [union]

const union { ... } __f64vec2_one_cheat

◆ [union]

const union { ... } __f64vec2_sgn_mask_cheat

◆ [union]

const union { ... } __f64vec2_true_cheat

◆ [union]

const union { ... } __f64vec2_zero_cheat

◆ d

double d

Definition at line 21 of file P4_F64vec2.h.

◆ fvecLen

const int fvecLen = 2

Definition at line 217 of file P4_F64vec2.h.

◆ i

long long i[2]

Definition at line 22 of file P4_F64vec2.h.

Referenced by F64vec2::operator[](), and F64vec2::operator[]().

◆ m

__m128d m

Definition at line 28 of file P4_F64vec2.h.

◆ v

__m128d v

Definition at line 2 of file P4_F64vec2.h.