mirror of https://github.com/pvnis/srsRAN_4G.git
add universal executable to select binary based on current ISA
- using cpuid to check x86 features - using hwcap on ARM to check for NEONmaster
parent
d7ab2b8d66
commit
34f552fae9
@ -0,0 +1,104 @@
|
||||
/**
|
||||
*
|
||||
* \section COPYRIGHT
|
||||
*
|
||||
* Copyright 2013-2015 Software Radio Systems Limited
|
||||
*
|
||||
* \section LICENSE
|
||||
*
|
||||
* This file is part of the srsUE library.
|
||||
*
|
||||
* srsUE is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* srsUE is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* A copy of the GNU Affero General Public License can be found in
|
||||
* the LICENSE file in the top-level directory of this distribution
|
||||
* and at http://www.gnu.org/licenses/.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifdef IS_ARM
|
||||
#include <stdio.h>
|
||||
#include <sys/auxv.h>
|
||||
#include <asm/hwcap.h>
|
||||
#else
|
||||
#include <cpuid.h>
|
||||
#define X86_CPUID_BASIC_LEAF 1
|
||||
#define X86_CPUID_ADVANCED_LEAF 7
|
||||
#endif
|
||||
|
||||
#define MAX_CMD_LEN (64)
|
||||
|
||||
#ifndef IS_ARM
|
||||
const char* x86_get_isa()
|
||||
{
|
||||
int ret = 0;
|
||||
int has_sse42 = 0, has_avx = 0, has_avx2 = 0;
|
||||
unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0;
|
||||
|
||||
// query basic features
|
||||
ret = __get_cpuid(X86_CPUID_BASIC_LEAF, &eax, &ebx, &ecx, &edx);
|
||||
if (ret) {
|
||||
has_sse42 = ecx & bit_SSE4_2;
|
||||
has_avx = ecx & bit_AVX;
|
||||
}
|
||||
|
||||
// query advanced features
|
||||
ret = __get_cpuid_count(X86_CPUID_ADVANCED_LEAF, 0, &eax, &ebx, &ecx, &edx);
|
||||
if (ret) {
|
||||
has_avx2 = ebx & bit_AVX2;
|
||||
}
|
||||
|
||||
if (has_avx2) {
|
||||
return "avx2";
|
||||
} else
|
||||
if (has_avx) {
|
||||
return "avx";
|
||||
} else
|
||||
if (has_sse42) {
|
||||
return "sse4.2";
|
||||
} else {
|
||||
return "generic";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef IS_ARM
|
||||
const char* arm_get_isa()
|
||||
{
|
||||
if (getauxval(AT_HWCAP) & HWCAP_NEON) {
|
||||
return "neon";
|
||||
} else {
|
||||
return "generic";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
char cmd[MAX_CMD_LEN];
|
||||
#ifdef IS_ARM
|
||||
snprintf(cmd, MAX_CMD_LEN, "%s-%s", argv[0], arm_get_isa());
|
||||
#else
|
||||
snprintf(cmd, MAX_CMD_LEN, "%s-%s", argv[0], x86_get_isa());
|
||||
#endif
|
||||
|
||||
// execute command with same argument
|
||||
if (execvp(cmd, &argv[0]) == -1) {
|
||||
fprintf(stderr, "%s: %s\n", cmd, strerror(errno));
|
||||
exit(errno);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue