1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
// Copyright Naoki Shibata 2010 - 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>
#include "funcproto.h"
int main(int argc, char **argv) {
if (argc < 4) {
fprintf(stderr, "\nUsage : %s <isa> <Mangled ISA> <Vector width>\n\n", argv[0]);
fprintf(stderr, "This program generates an include file defining masked functions.\n");
exit(-1);
}
//
const char *isaname = argv[1];
const char *mangledisa = argv[2];
const int vw = atoi(argv[3]);
int fptype = 0;
// Remove the "-" sign in the SP <Vector width> value
const char *cvw = (vw < 0) ? argv[3] + 1 : argv[3];
if (vw < 0) {
fptype = 1;
}
// VLA SVE does not set the vector length in the mangled names.
if (strcmp(isaname, "sve") == 0)
cvw = "x";
//
#define LEN 256
static char *vfpname[] = { "vdouble", "vfloat" };
static char *vintname[] = { "vint", "vint2" };
static int sizeoffp[] = { 8, 4 };
static char *ulpSuffixStr[] = { "", "_u1", "_u05", "_u35", "_u15" };
static char vparameterStr[7][LEN] = { "v", "vv", "vl8l8", "vv", "v", "vvv", "vl8" };
static char *typeSpecS[] = { "", "f" };
static char *typeSpec[] = { "d", "f" };
static char funcname[4][LEN];
snprintf(vparameterStr[2], LEN, "vl%dl%d", sizeoffp[fptype], sizeoffp[fptype]);
snprintf(vparameterStr[6], LEN, "vl%d", sizeoffp[fptype]);
//
for(int i=0;funcList[i].name != NULL;i++) {
if ((funcList[i].flags & 1) != 0) continue;
if (funcList[i].ulp < 20) {
snprintf(funcname[0], LEN, "_ZGV%sN%s%s_%s%s",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype]);
snprintf(funcname[1], LEN, "_ZGV%sM%s%s_%s%s",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype]);
} else {
snprintf(funcname[0], LEN, "_ZGV%sN%s%s_%s%s_u%d",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype], funcList[i].ulp);
snprintf(funcname[1], LEN, "_ZGV%sM%s%s_%s%s_u%d",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype], funcList[i].ulp);
}
snprintf(funcname[2], LEN, "_ZGV%sN%s%s___%s%s_finite",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype]);
snprintf(funcname[3], LEN, "_ZGV%sM%s%s___%s%s_finite",
mangledisa, cvw, vparameterStr[funcList[i].funcType], funcList[i].name, typeSpecS[fptype]);
switch(funcList[i].funcType) {
case 0: {
printf("EXPORT CONST %s %s(%s a0, vopmask m) { return %s(a0); }\n",
vfpname[fptype], funcname[1], vfpname[fptype], funcname[0]);
if (funcList[i].ulp < 20)
printf("EXPORT CONST %s %s(%s) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3], vfpname[fptype], funcname[0]);
else
printf("EXPORT CONST %s %s_u%d(%s) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3],funcList[i].ulp, vfpname[fptype], funcname[0]);
break;
}
case 1: {
printf("EXPORT CONST %s %s(%s a0, %s a1, vopmask m) { return %s(a0, a1); }\n",
vfpname[fptype], funcname[1], vfpname[fptype], vfpname[fptype], funcname[0]);
if (funcList[i].ulp < 20)
printf("EXPORT CONST %s %s(%s, %s, vopmask) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3], vfpname[fptype], vfpname[fptype], funcname[0]);
else
printf("EXPORT CONST %s %s_u%d(%s, %s, vopmask) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3],funcList[i].ulp, vfpname[fptype], vfpname[fptype], funcname[0]);
break;
}
case 2:
if (sizeoffp[fptype] == sizeof(double)) {
printf("#ifndef ENABLE_SVE\n");
printf("EXPORT void %s(vdouble a0, double *a1, double *a2, vopmask m) {\n", funcname[1]);
printf(" double s[VECTLENDP], c[VECTLENDP];\n");
printf(" int32_t mbuf[VECTLENSP];\n");
printf(" %s(a0, s, c);\n", funcname[0]);
printf(" vstoreu_v_p_vi2(mbuf, vcast_vi2_vm(vand_vm_vo64_vm(m, vcast_vm_i_i(-1, -1))));\n");
printf(" for(int i=0;i<VECTLENDP;i++) {\n");
printf(" if (mbuf[i*2]) { *a1++ = s[i]; *a2++ = c[i]; }\n");
printf(" }\n");
printf("}\n");
printf("#else /* ENABLE_SVE */\n");
const char * function = "EXPORT void %s(vdouble a0, double *a1, double *a2, vopmask m) { "
" return %s(a0, a1, a2); "
"}\n";
printf(function, funcname[1], funcname[0]);
printf("#endif/* ENABLE_SVE */\n");
} else if (sizeoffp[fptype] == sizeof(float)) {
printf("#ifndef ENABLE_SVE\n");
printf("EXPORT void %s(vfloat a0, float *a1, float *a2, vopmask m) {\n", funcname[1]);
printf(" float s[VECTLENSP], c[VECTLENSP];\n");
printf(" int32_t mbuf[VECTLENSP];\n");
printf(" %s(a0, s, c);\n", funcname[0]);
printf(" vstoreu_v_p_vi2(mbuf, vcast_vi2_vm(vand_vm_vo32_vm(m, vcast_vm_i_i(-1, -1))));\n");
printf(" for(int i=0;i<VECTLENSP;i++) {\n");
printf(" if (mbuf[i]) { *a1++ = s[i]; *a2++ = c[i]; }\n");
printf(" }\n");
printf("}\n");
printf("#else /* ENABLE_SVE */\n");
const char * function = "EXPORT void %s(vfloat a0, float *a1, float *a2, vopmask m) { "
" return %s(a0, a1, a2); "
"}\n";
printf(function, funcname[1], funcname[0]);
printf("#endif/* ENABLE_SVE */\n");
} else {
assert(0 && "Invalid size of FP data");
}
break;
case 3:
printf("EXPORT CONST %s %s(%s a0, %s a1, vopmask m) { return %s(a0, a1); }\n",
vfpname[fptype], funcname[1], vfpname[fptype], vintname[fptype], funcname[0]);
break;
case 4:
printf("EXPORT CONST %s %s(%s a0, vopmask m) { return %s(a0); }\n",
vintname[fptype], funcname[1], vfpname[fptype], funcname[0]);
break;
case 5:
printf("EXPORT CONST %s %s(%s a0, %s a1, %s a2, vopmask m) { return %s(a0, a1, a2); }\n",
vfpname[fptype], funcname[1], vfpname[fptype], vfpname[fptype], vfpname[fptype],
funcname[0]);
break;
case 6: {
char *ptr_type = NULL;
if (sizeoffp[fptype] == sizeof(double))
ptr_type = "double *";
if (sizeoffp[fptype] == sizeof(float))
ptr_type = "float *";
printf("EXPORT CONST %s %s(%s a0, %s a1, vopmask m) { return %s(a0, a1); }\n",
vfpname[fptype], funcname[1], vfpname[fptype], ptr_type, funcname[0]);
if (funcList[i].ulp < 20)
printf("EXPORT CONST %s %s(%s, %s, vopmask) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3], vfpname[fptype], ptr_type, funcname[0]);
else
printf("EXPORT CONST %s %s_u%d(%s, %s, vopmask) __attribute__((weak, alias(\"%s\")));\n",
vfpname[fptype], funcname[3],funcList[i].ulp, vfpname[fptype], ptr_type, funcname[0]);
}
break;
}
}
exit(0);
}
|