#include "config.h"
#include <stdint.h>
#include <stdlib.h>
#include "parasail.h"
#include "parasail/memory.h"
#include "parasail/internal_altivec.h"
#ifdef PARASAIL_TABLE
static inline void arr_store_si128(
int *array,
vec128i vH,
int32_t t,
int32_t seglen,
int32_t d,
int32_t dlen)
{
array[1LL*(0*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 0);
array[1LL*(1*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 1);
array[1LL*(2*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 2);
array[1LL*(3*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 3);
array[1LL*(4*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 4);
array[1LL*(5*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 5);
array[1LL*(6*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 6);
array[1LL*(7*seglen+t)*dlen + d] = (int16_t)_mm_extract_epi16(vH, 7);
}
#endif
#ifdef PARASAIL_ROWCOL
static inline void arr_store_col(
int *col,
vec128i vH,
int32_t t,
int32_t seglen)
{
col[0*seglen+t] = (int16_t)_mm_extract_epi16(vH, 0);
col[1*seglen+t] = (int16_t)_mm_extract_epi16(vH, 1);
col[2*seglen+t] = (int16_t)_mm_extract_epi16(vH, 2);
col[3*seglen+t] = (int16_t)_mm_extract_epi16(vH, 3);
col[4*seglen+t] = (int16_t)_mm_extract_epi16(vH, 4);
col[5*seglen+t] = (int16_t)_mm_extract_epi16(vH, 5);
col[6*seglen+t] = (int16_t)_mm_extract_epi16(vH, 6);
col[7*seglen+t] = (int16_t)_mm_extract_epi16(vH, 7);
}
#endif
#ifdef PARASAIL_TABLE
#define FNAME parasail_nw_table_scan_altivec_128_16
#define PNAME parasail_nw_table_scan_profile_altivec_128_16
#else
#ifdef PARASAIL_ROWCOL
#define FNAME parasail_nw_rowcol_scan_altivec_128_16
#define PNAME parasail_nw_rowcol_scan_profile_altivec_128_16
#else
#define FNAME parasail_nw_scan_altivec_128_16
#define PNAME parasail_nw_scan_profile_altivec_128_16
#endif
#endif
parasail_result_t* FNAME(
const char * const restrict s1, const int s1Len,
const char * const restrict s2, const int s2Len,
const int open, const int gap, const parasail_matrix_t *matrix)
{
parasail_profile_t *profile = NULL;
parasail_result_t *result = NULL;
PARASAIL_CHECK_NULL(s2);
PARASAIL_CHECK_GT0(s2Len);
PARASAIL_CHECK_GE0(open);
PARASAIL_CHECK_GE0(gap);
PARASAIL_CHECK_NULL(matrix);
if (matrix->type == PARASAIL_MATRIX_TYPE_SQUARE) {
PARASAIL_CHECK_NULL(s1);
PARASAIL_CHECK_GT0(s1Len);
}
profile = parasail_profile_create_altivec_128_16(s1, s1Len, matrix);
if (!profile) return NULL;
result = PNAME(profile, s2, s2Len, open, gap);
parasail_profile_free(profile);
return result;
}
parasail_result_t* PNAME(
const parasail_profile_t * const restrict profile,
const char * const restrict s2, const int s2Len,
const int open, const int gap)
{
int32_t i = 0;
int32_t j = 0;
int32_t k = 0;
int32_t s1Len = 0;
int32_t end_query = 0;
int32_t end_ref = 0;
const parasail_matrix_t *matrix = NULL;
int32_t segWidth = 0;
int32_t segLen = 0;
int32_t offset = 0;
int32_t position = 0;
vec128i* restrict pvP = NULL;
vec128i* restrict pvE = NULL;
int16_t* restrict boundary = NULL;
vec128i* restrict pvHt = NULL;
vec128i* restrict pvH = NULL;
vec128i* restrict pvGapper = NULL;
vec128i vGapO;
vec128i vGapE;
int16_t NEG_LIMIT = 0;
int16_t POS_LIMIT = 0;
vec128i vZero;
int16_t score = 0;
vec128i vNegLimit;
vec128i vPosLimit;
vec128i vSaturationCheckMin;
vec128i vSaturationCheckMax;
vec128i vNegInfFront;
vec128i vSegLenXgap;
parasail_result_t *result = NULL;
PARASAIL_CHECK_NULL(profile);
PARASAIL_CHECK_NULL(profile->profile16.score);
PARASAIL_CHECK_NULL(profile->matrix);
PARASAIL_CHECK_GT0(profile->s1Len);
PARASAIL_CHECK_NULL(s2);
PARASAIL_CHECK_GT0(s2Len);
PARASAIL_CHECK_GE0(open);
PARASAIL_CHECK_GE0(gap);
i = 0;
j = 0;
k = 0;
s1Len = profile->s1Len;
end_query = s1Len-1;
end_ref = s2Len-1;
matrix = profile->matrix;
segWidth = 8;
segLen = (s1Len + segWidth - 1) / segWidth;
offset = (s1Len - 1) % segLen;
position = (segWidth - 1) - (s1Len - 1) / segLen;
pvP = (vec128i*)profile->profile16.score;
vGapO = _mm_set1_epi16(open);
vGapE = _mm_set1_epi16(gap);
NEG_LIMIT = (-open < matrix->min ? INT16_MIN + open : INT16_MIN - matrix->min) + 1;
POS_LIMIT = INT16_MAX - matrix->max - 1;
vZero = _mm_setzero_si128();
score = NEG_LIMIT;
vNegLimit = _mm_set1_epi16(NEG_LIMIT);
vPosLimit = _mm_set1_epi16(POS_LIMIT);
vSaturationCheckMin = vPosLimit;
vSaturationCheckMax = vNegLimit;
vNegInfFront = vZero;
vNegInfFront = _mm_insert_epi16(vNegInfFront, NEG_LIMIT, 0);
vSegLenXgap = _mm_adds_epi16(vNegInfFront,
_mm_slli_si128(_mm_set1_epi16(-segLen*gap), 2));
#ifdef PARASAIL_TABLE
result = parasail_result_new_table1(segLen*segWidth, s2Len);
#else
#ifdef PARASAIL_ROWCOL
result = parasail_result_new_rowcol1(segLen*segWidth, s2Len);
#else
result = parasail_result_new();
#endif
#endif
if (!result) return NULL;
result->flag |= PARASAIL_FLAG_NW | PARASAIL_FLAG_SCAN
| PARASAIL_FLAG_BITS_16 | PARASAIL_FLAG_LANES_8;
#ifdef PARASAIL_TABLE
result->flag |= PARASAIL_FLAG_TABLE;
#endif
#ifdef PARASAIL_ROWCOL
result->flag |= PARASAIL_FLAG_ROWCOL;
#endif
pvE = parasail_memalign_vec128i(16, segLen);
boundary = parasail_memalign_int16_t(16, s2Len+1);
pvHt= parasail_memalign_vec128i(16, segLen);
pvH = parasail_memalign_vec128i(16, segLen);
pvGapper = parasail_memalign_vec128i(16, segLen);
if (!pvE) return NULL;
if (!boundary) return NULL;
if (!pvHt) return NULL;
if (!pvH) return NULL;
if (!pvGapper) return NULL;
{
int32_t index = 0;
for (i=0; i<segLen; ++i) {
int32_t segNum = 0;
vec128i_16_t h;
vec128i_16_t e;
for (segNum=0; segNum<segWidth; ++segNum) {
int64_t tmp = -open-gap*(segNum*segLen+i);
h.v[segNum] = tmp < INT16_MIN ? INT16_MIN : tmp;
tmp = tmp - open;
e.v[segNum] = tmp < INT16_MIN ? INT16_MIN : tmp;
}
_mm_store_si128(&pvH[index], h.m);
_mm_store_si128(&pvE[index], e.m);
++index;
}
}
{
boundary[0] = 0;
for (i=1; i<=s2Len; ++i) {
int64_t tmp = -open-gap*(i-1);
boundary[i] = tmp < INT16_MIN ? INT16_MIN : tmp;
}
}
{
vec128i vGapper = _mm_subs_epi16(vZero,vGapO);
for (i=segLen-1; i>=0; --i) {
_mm_store_si128(pvGapper+i, vGapper);
vGapper = _mm_subs_epi16(vGapper, vGapE);
}
}
for (j=0; j<s2Len; ++j) {
vec128i vE;
vec128i vHt;
vec128i vF;
vec128i vH;
vec128i vHp;
vec128i *pvW;
vec128i vW;
vHp = _mm_load_si128(pvH+(segLen-1));
vHp = _mm_slli_si128(vHp, 2);
vHp = _mm_insert_epi16(vHp, boundary[j], 0);
pvW = pvP + matrix->mapper[(unsigned char)s2[j]]*segLen;
vHt = _mm_subs_epi16(vNegLimit, pvGapper[0]);
vF = vNegLimit;
for (i=0; i<segLen; ++i) {
vH = _mm_load_si128(pvH+i);
vE = _mm_load_si128(pvE+i);
vW = _mm_load_si128(pvW+i);
vE = _mm_max_epi16(
_mm_subs_epi16(vE, vGapE),
_mm_subs_epi16(vH, vGapO));
vHp = _mm_adds_epi16(vHp, vW);
vF = _mm_max_epi16(vF, _mm_adds_epi16(vHt, pvGapper[i]));
vHt = _mm_max_epi16(vE, vHp);
_mm_store_si128(pvE+i, vE);
_mm_store_si128(pvHt+i, vHt);
vHp = vH;
}
vHt = _mm_slli_si128(vHt, 2);
vHt = _mm_insert_epi16(vHt, boundary[j+1], 0);
vF = _mm_max_epi16(vF, _mm_adds_epi16(vHt, pvGapper[0]));
for (i=0; i<segWidth-2; ++i) {
vec128i vFt = _mm_slli_si128(vF, 2);
vFt = _mm_adds_epi16(vFt, vSegLenXgap);
vF = _mm_max_epi16(vF, vFt);
}
vF = _mm_slli_si128(vF, 2);
vF = _mm_adds_epi16(vF, vNegInfFront);
vH = _mm_max_epi16(vHt, vF);
for (i=0; i<segLen; ++i) {
vHt = _mm_load_si128(pvHt+i);
vF = _mm_max_epi16(
_mm_subs_epi16(vF, vGapE),
_mm_subs_epi16(vH, vGapO));
vH = _mm_max_epi16(vHt, vF);
_mm_store_si128(pvH+i, vH);
vSaturationCheckMin = _mm_min_epi16(vSaturationCheckMin, vH);
vSaturationCheckMax = _mm_max_epi16(vSaturationCheckMax, vH);
#ifdef PARASAIL_TABLE
arr_store_si128(result->tables->score_table, vH, i, segLen, j, s2Len);
#endif
}
#ifdef PARASAIL_ROWCOL
{
vH = _mm_load_si128(pvH + offset);
for (k=0; k<position; ++k) {
vH = _mm_slli_si128(vH, 2);
}
result->rowcols->score_row[j] = (int16_t) _mm_extract_epi16 (vH, 7);
}
#endif
}
#ifdef PARASAIL_ROWCOL
for (i=0; i<segLen; ++i) {
vec128i vH = _mm_load_si128(pvH+i);
arr_store_col(result->rowcols->score_col, vH, i, segLen);
}
#endif
{
vec128i vH = _mm_load_si128(pvH + offset);
for (k=0; k<position; ++k) {
vH = _mm_slli_si128(vH, 2);
}
score = (int16_t) _mm_extract_epi16 (vH, 7);
}
if (_mm_movemask_epi8(_mm_or_si128(
_mm_cmplt_epi16(vSaturationCheckMin, vNegLimit),
_mm_cmpgt_epi16(vSaturationCheckMax, vPosLimit)))) {
result->flag |= PARASAIL_FLAG_SATURATED;
score = 0;
end_query = 0;
end_ref = 0;
}
result->score = score;
result->end_query = end_query;
result->end_ref = end_ref;
parasail_free(pvGapper);
parasail_free(pvH);
parasail_free(pvHt);
parasail_free(boundary);
parasail_free(pvE);
return result;
}