Test "Scalable Vector Extension (SVE) support." on arm64

Change-Id: I3abaca932985a06b06887b962e769f2eac96c738
This commit is contained in:
Shiratori, Takehiro
2019-02-20 20:57:26 +09:00
committed by Masamichi Takagi
parent 6810506c3d
commit 7da5fede8b
57 changed files with 6921 additions and 0 deletions

22
test/sve/src/016.c Normal file
View File

@@ -0,0 +1,22 @@
/* 016.c COPYRIGHT FUJITSU LIMITED 2017-2019 */
/* prctl(PR_SVE_GET_VL) check. */
#include <stdio.h>
#include <stdlib.h>
#include "common.h"
TEST_FUNC(TEST_NUMBER, vl, unused1, unused2, unused3)
{
int ret = -1;
print_test_overview(tp_num);
ret = get_and_compare_vl(vl);
if (ret == 0) {
printf("Expected VL (0x%x) == return VL (0x%x).\n", vl, vl);
printf("RESULT: OK.\n");
} else {
printf("SVE_GET_VL compare failed.\n");
printf("RESULT: NG.\n");
}
return ret;
}