#include <stdlib.h>
#include <string.h>
+#include "common.h"
#include "cpu.h"
+#include "internal.h"
#include "lfg.h"
#include "log.h"
#include "mem.h"
static int test_vector_fmul(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *v2)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
cdsp->vector_fmul(cdst, v1, v2, LEN);
static int test_vector_fmac_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *src0, float scale)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
memcpy(cdst, v1, LEN * sizeof(*v1));
static int test_vector_fmul_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, float scale)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
cdsp->vector_fmul_scalar(cdst, v1, scale, LEN);
static int test_vector_dmul_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const double *v1, double scale)
{
- DECLARE_ALIGNED(32, double, cdst)[LEN];
- DECLARE_ALIGNED(32, double, odst)[LEN];
+ LOCAL_ALIGNED(32, double, cdst, [LEN]);
+ LOCAL_ALIGNED(32, double, odst, [LEN]);
int ret;
cdsp->vector_dmul_scalar(cdst, v1, scale, LEN);
static int test_vector_fmul_window(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *v2, const float *v3)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
cdsp->vector_fmul_window(cdst, v1, v2, v3, LEN / 2);
static int test_vector_fmul_add(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *v2, const float *v3)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
cdsp->vector_fmul_add(cdst, v1, v2, v3, LEN);
static int test_vector_fmul_reverse(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *v2)
{
- DECLARE_ALIGNED(32, float, cdst)[LEN];
- DECLARE_ALIGNED(32, float, odst)[LEN];
+ LOCAL_ALIGNED(32, float, cdst, [LEN]);
+ LOCAL_ALIGNED(32, float, odst, [LEN]);
int ret;
cdsp->vector_fmul_reverse(cdst, v1, v2, LEN);
static int test_butterflies_float(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
const float *v1, const float *v2)
{
- DECLARE_ALIGNED(32, float, cv1)[LEN];
- DECLARE_ALIGNED(32, float, cv2)[LEN];
- DECLARE_ALIGNED(32, float, ov1)[LEN];
- DECLARE_ALIGNED(32, float, ov2)[LEN];
+ LOCAL_ALIGNED(32, float, cv1, [LEN]);
+ LOCAL_ALIGNED(32, float, cv2, [LEN]);
+ LOCAL_ALIGNED(32, float, ov1, [LEN]);
+ LOCAL_ALIGNED(32, float, ov2, [LEN]);
int ret;
memcpy(cv1, v1, LEN * sizeof(*v1));
AVFloatDSPContext fdsp, cdsp;
AVLFG lfg;
- DECLARE_ALIGNED(32, float, src0)[LEN];
- DECLARE_ALIGNED(32, float, src1)[LEN];
- DECLARE_ALIGNED(32, float, src2)[LEN];
- DECLARE_ALIGNED(32, double, dbl_src0)[LEN];
- DECLARE_ALIGNED(32, double, dbl_src1)[LEN];
+ LOCAL_ALIGNED(32, float, src0, [LEN]);
+ LOCAL_ALIGNED(32, float, src1, [LEN]);
+ LOCAL_ALIGNED(32, float, src2, [LEN]);
+ LOCAL_ALIGNED(32, double, dbl_src0, [LEN]);
+ LOCAL_ALIGNED(32, double, dbl_src1, [LEN]);
if (argc > 2 && !strcmp(argv[1], "-s"))
seed = strtoul(argv[2], NULL, 10);