summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-12 13:37:33 +0200
committerJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-12 13:37:33 +0200
commit7a085a444f81364b8026c06c76a09d83c7295ab0 (patch)
tree6795a426f1c571128d68352e05a1163bba09ba5e
parent18d144f510af8e6dc5f5383723666bdc34a449f1 (diff)
downloadffts-7a085a444f81364b8026c06c76a09d83c7295ab0.zip
ffts-7a085a444f81364b8026c06c76a09d83c7295ab0.tar.gz
Replace data_t with float
-rw-r--r--src/macros-neon.h84
1 files changed, 53 insertions, 31 deletions
diff --git a/src/macros-neon.h b/src/macros-neon.h
index c015f47..5663252 100644
--- a/src/macros-neon.h
+++ b/src/macros-neon.h
@@ -8,14 +8,14 @@
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.
+ * 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
@@ -35,57 +35,79 @@
#include "neon.h"
#include <arm_neon.h>
-typedef float32x4_t V;
-
+typedef float32x4_t V;
typedef float32x4x2_t VS;
-#define ADD vaddq_f32
-#define SUB vsubq_f32
-#define MUL vmulq_f32
+#define ADD vaddq_f32
+#define SUB vsubq_f32
+#define MUL vmulq_f32
#define VADD vaddq_f32
#define VSUB vsubq_f32
#define VMUL vmulq_f32
-#define VXOR(x,y) (vreinterpretq_f32_u32(veorq_u32(vreinterpretq_u32_f32(x), vreinterpretq_u32_f32(y))))
-#define VST vst1q_f32
-#define VLD vld1q_f32
+
+#define VXOR(x,y) \
+ (vreinterpretq_f32_u32(veorq_u32(vreinterpretq_u32_f32(x), vreinterpretq_u32_f32(y))))
+
+#define VST vst1q_f32
+#define VLD vld1q_f32
#define VST2 vst2q_f32
#define VLD2 vld2q_f32
#define VSWAPPAIRS(x) (vrev64q_f32(x))
-#define VUNPACKHI(a,b) (vcombine_f32(vget_high_f32(a), vget_high_f32(b)))
-#define VUNPACKLO(a,b) (vcombine_f32(vget_low_f32(a), vget_low_f32(b)))
+#define VUNPACKHI(a,b) \
+ (vcombine_f32(vget_high_f32(a), vget_high_f32(b)))
-#define VBLEND(x,y) (vcombine_f32(vget_low_f32(x), vget_high_f32(y)))
+#define VUNPACKLO(a,b) \
+ (vcombine_f32(vget_low_f32(a), vget_low_f32(b)))
-static FFTS_INLINE V VLIT4(data_t f3, data_t f2, data_t f1, data_t f0) {
- data_t __attribute__ ((aligned(16))) d[4] = {f0, f1, f2, f3};
+#define VBLEND(x,y) \
+ (vcombine_f32(vget_low_f32(x), vget_high_f32(y)))
+
+static FFTS_INLINE V
+VLIT4(float f3, float f2, float f1, float f0)
+{
+ float FFTS_ALIGN(16) d[4] = {f0, f1, f2, f3};
return VLD(d);
}
-#define VDUPRE(r) vcombine_f32(vdup_lane_f32(vget_low_f32(r),0), vdup_lane_f32(vget_high_f32(r),0))
-#define VDUPIM(r) vcombine_f32(vdup_lane_f32(vget_low_f32(r),1), vdup_lane_f32(vget_high_f32(r),1))
+#define VDUPRE(r) \
+ vcombine_f32(vdup_lane_f32(vget_low_f32(r),0), vdup_lane_f32(vget_high_f32(r),0))
+
+#define VDUPIM(r) \
+ vcombine_f32(vdup_lane_f32(vget_low_f32(r),1), vdup_lane_f32(vget_high_f32(r),1))
#define FFTS_MALLOC(d,a) (valloc(d))
#define FFTS_FREE(d) (free(d))
-static FFTS_INLINE void STORESPR(data_t * addr, VS p) {
- vst1q_f32(addr, p.val[0]);
- vst1q_f32(addr + 4, p.val[1]);
+static FFTS_INLINE void
+STORESPR(float *addr, VS p)
+{
+ vst1q_f32(addr, p.val[0]);
+ vst1q_f32(addr + 4, p.val[1]);
}
-static FFTS_INLINE V IMULI(int inv, V a) {
- if (inv) return VSWAPPAIRS(VXOR(a, VLIT4(0.0f, -0.0f, 0.0f, -0.0f)));
- else return VSWAPPAIRS(VXOR(a, VLIT4(-0.0f, 0.0f, -0.0f, 0.0f)));
+static FFTS_INLINE V
+IMULI(int inv, V a)
+{
+ if (inv) {
+ return VSWAPPAIRS(VXOR(a, VLIT4(0.0f, -0.0f, 0.0f, -0.0f)));
+ } else {
+ return VSWAPPAIRS(VXOR(a, VLIT4(-0.0f, 0.0f, -0.0f, 0.0f)));
+ }
}
-static FFTS_INLINE V IMUL(V d, V re, V im) {
+static FFTS_INLINE V
+IMUL(V d, V re, V im)
+{
re = VMUL(re, d);
im = VMUL(im, VSWAPPAIRS(d));
return VSUB(re, im);
}
-static FFTS_INLINE V IMULJ(V d, V re, V im) {
+static FFTS_INLINE V
+IMULJ(V d, V re, V im)
+{
re = VMUL(re, d);
im = VMUL(im, VSWAPPAIRS(d));
return VADD(re, im);
OpenPOWER on IntegriCloud