mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
51 lines
1 KiB
C++
51 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2013-2020, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#include "CPU.h"
|
|
#if defined(__x86_64__) || defined(__i386__)
|
|
#include <cpuid.h>
|
|
#endif
|
|
#include "Log.h"
|
|
|
|
#ifndef bit_AES
|
|
#define bit_AES (1 << 25)
|
|
#endif
|
|
#ifndef bit_AVX
|
|
#define bit_AVX (1 << 28)
|
|
#endif
|
|
|
|
|
|
namespace i2p
|
|
{
|
|
namespace cpu
|
|
{
|
|
bool aesni = false;
|
|
bool avx = false;
|
|
|
|
void Detect()
|
|
{
|
|
#if defined(__x86_64__) || defined(__i386__)
|
|
__builtin_cpu_init();
|
|
int info[4];
|
|
__cpuid(0, info[0], info[1], info[2], info[3]);
|
|
if (info[0] >= 0x00000001) {
|
|
__cpuid(0x00000001, info[0], info[1], info[2], info[3]);
|
|
if (__builtin_cpu_supports("aes")) {
|
|
aesni = info[2] & bit_AES; // AESNI
|
|
}
|
|
if (__builtin_cpu_supports("avx")) {
|
|
avx = info[2] & bit_AVX; // AVX
|
|
}
|
|
}
|
|
#endif // defined(__x86_64__) || defined(__i386__)
|
|
|
|
LogPrint(eLogInfo, "AESNI ", (aesni ? "enabled" : "disabled"));
|
|
LogPrint(eLogInfo, "AVX ", (avx ? "enabled" : "disabled"));
|
|
}
|
|
}
|
|
}
|