rsp_regr_vu_add.c 2.27 KB
#include <sys/types.h>
#ifdef __sgi__
#include <sys/sbd.h>
#endif
#include <sys/stat.h>
#include <sys/mman.h>
#ifdef __sgi__
#include <sys/sema.h>
#endif
#include <netinet/in.h>

#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <getopt.h>

#include <rcp.h>
#include <rsp.h>

/* From $ROOT/usr/include/ide, which is installed from PR/diags/include */
#include "diag.h"
#include "dbg_comm.h"

#define RSP_TEST_BASE	001

static int NumFailures = 0;

/* From rsp_regr_common.c: */
extern int generic_rsp_regression (const char *file_name);
extern void imem_init(FILE *file_p);
extern int rsp_regrInit();
extern int rsp_regrDo(TEST_REF *test_ref);
extern int rsp_regr(TEST_REF TestRefs[]);

int vadd_h();
int vadd_q();
int vadd_v();
int vadd_w();
int vaddc_h();
int vaddc_q();
int vaddc_v();
int vaddc_w();

/*
 * An array of tests, each of which corresponds to a separate menu
 * item callable from the master ide menu.
 */
static TEST_REF TestRefs[] = {
  {"vadd_h", 			RSP_TEST_BASE+0, vadd_h},
  {"vadd_q", 			RSP_TEST_BASE+1, vadd_q},
  {"vadd_v", 			RSP_TEST_BASE+2, vadd_v},
  {"vadd_w", 			RSP_TEST_BASE+3, vadd_w},
  {"vaddc_h", 			RSP_TEST_BASE+4, vaddc_h},
  {"vaddc_q", 			RSP_TEST_BASE+5, vaddc_q},
  {"vaddc_v", 			RSP_TEST_BASE+6, vaddc_v},
  {"vaddc_w", 			RSP_TEST_BASE+7, vaddc_w},
    {"",0,0}
};

static int failed_tests[512];

/*
 * diagnostic entry point:
 *
 * Each separately invokable ide diagnostic command corresponds to an
 * independent ".c" module; the entry point herein must match
 * the test name as specified in the rspcmd.awk script.  These command
 * names correspond to the names you see from the ide menu.  For this
 * module, there will be an ide command "rsp_regr".
 */

int rsp_regr_vu_add(void) {rsp_regr(TestRefs);}

/*
 * Tests
 */

int vadd_h() {return generic_rsp_regression("tests/vadd_h");}
int vadd_q() {return generic_rsp_regression("tests/vadd_q");}
int vadd_v() {return generic_rsp_regression("tests/vadd_v");}
int vadd_w() {return generic_rsp_regression("tests/vadd_w");}
int vaddc_h() {return generic_rsp_regression("tests/vaddc_h");}
int vaddc_q() {return generic_rsp_regression("tests/vaddc_q");}
int vaddc_v() {return generic_rsp_regression("tests/vaddc_v");}
int vaddc_w() {return generic_rsp_regression("tests/vaddc_w");}