You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

264 lines
5.1 KiB

10 years ago
/*
This file is part of FFTS -- The Fastest Fourier Transform in the South
Copyright (c) 2013, Michael J. Cree <mcree@orcon.net.nz>
Copyright (c) 2012, 2013, Anthony M. Blake <amb@anthonix.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the organization nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL ANTHONY M. BLAKE BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
10 years ago
*/
10 years ago
#ifndef FFTS_MACROS_ALPHA_H
#define FFTS_MACROS_ALPHA_H
10 years ago
#if defined (_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
10 years ago
#endif
#include "ffts_attributes.h"
10 years ago
#ifdef HAVE_STRING_H
#include <string.h>
#endif
10 years ago
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
10 years ago
typedef union {
struct {
float r1;
float i1;
float r2;
float i2;
} r;
uint32_t u[4];
} V4SF;
#define FFTS_MALLOC(d,a) (malloc(d))
#define FFTS_FREE(d) (free(d))
static FFTS_ALWAYS_INLINE V4SF
V4SF_LIT4(float f3, float f2, float f1, float f0)
10 years ago
{
V4SF z;
z.r.r1 = f0;
z.r.i1 = f1;
z.r.r2 = f2;
z.r.i2 = f3;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_ADD(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1 + y.r.r1;
z.r.i1 = x.r.i1 + y.r.i1;
z.r.r2 = x.r.r2 + y.r.r2;
z.r.i2 = x.r.i2 + y.r.i2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_SUB(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1 - y.r.r1;
z.r.i1 = x.r.i1 - y.r.i1;
z.r.r2 = x.r.r2 - y.r.r2;
z.r.i2 = x.r.i2 - y.r.i2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_MUL(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1 * y.r.r1;
z.r.i1 = x.r.i1 * y.r.i1;
z.r.r2 = x.r.r2 * y.r.r2;
z.r.i2 = x.r.i2 * y.r.i2;
return z;
10 years ago
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_XOR(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.u[0] = x.u[0] ^ y.u[0];
z.u[1] = x.u[1] ^ y.u[1];
z.u[2] = x.u[2] ^ y.u[2];
z.u[3] = x.u[3] ^ y.u[3];
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_SWAP_PAIRS(V4SF x)
10 years ago
{
V4SF z;
z.r.r1 = x.r.i1;
z.r.i1 = x.r.r1;
z.r.r2 = x.r.i2;
z.r.i2 = x.r.r2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_BLEND(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1;
z.r.i1 = x.r.i1;
z.r.r2 = y.r.r2;
z.r.i2 = y.r.i2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_UNPACK_HI(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r2;
z.r.i1 = x.r.i2;
z.r.r2 = y.r.r2;
z.r.i2 = y.r.i2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_UNPACK_LO(V4SF x, V4SF y)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1;
z.r.i1 = x.r.i1;
z.r.r2 = y.r.r1;
z.r.i2 = y.r.i1;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_DUPLICATE_RE(V4SF x)
10 years ago
{
V4SF z;
z.r.r1 = x.r.r1;
z.r.i1 = x.r.r1;
z.r.r2 = x.r.r2;
z.r.i2 = x.r.r2;
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_DUPLICATE_IM(V4SF x)
10 years ago
{
V4SF z;
z.r.r1 = x.r.i1;
z.r.i1 = x.r.i1;
z.r.r2 = x.r.i2;
z.r.i2 = x.r.i2;
return z;
10 years ago
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_IMUL(V4SF d, V4SF re, V4SF im)
{
re = V4SF_MUL(re, d);
im = V4SF_MUL(im, V4SF_SWAP_PAIRS(d));
return V4SF_SUB(re, im);
}
10 years ago
static FFTS_ALWAYS_INLINE V4SF
V4SF_IMULJ(V4SF d, V4SF re, V4SF im)
10 years ago
{
re = V4SF_MUL(re, d);
im = V4SF_MUL(im, V4SF_SWAP_PAIRS(d));
return V4SF_ADD(re, im);
10 years ago
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_MULI(int inv, V4SF x)
10 years ago
{
V4SF z;
10 years ago
if (inv) {
z.r.r1 = -x.r.r1;
z.r.i1 = x.r.i1;
z.r.r2 = -x.r.r2;
z.r.i2 = x.r.i2;
} else {
z.r.r1 = x.r.r1;
z.r.i1 = -x.r.i1;
z.r.r2 = x.r.r2;
z.r.i2 = -x.r.i2;
10 years ago
}
10 years ago
return z;
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_IMULI(int inv, V4SF x)
10 years ago
{
return V4SF_SWAP_PAIRS(V4SF_MULI(inv, x));
10 years ago
}
static FFTS_ALWAYS_INLINE V4SF
V4SF_LD(const void *s)
10 years ago
{
V4SF z;
memcpy(&z, s, sizeof(z));
return z;
10 years ago
}
static FFTS_ALWAYS_INLINE void
V4SF_ST(void *d, V4SF s)
10 years ago
{
V4SF *r = (V4SF*) d;
10 years ago
*r = s;
}
#endif /* FFTS_MACROS_ALPHA_H */