1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00
rpcs3/Utilities/sysinfo.h

72 lines
1.1 KiB
C
Raw Normal View History

#pragma once
2020-12-12 13:01:29 +01:00
#include "util/types.hpp"
#include <string>
namespace utils
{
inline std::array<u32, 4> get_cpuid(u32 func, u32 subfunc)
{
int regs[4];
2017-12-16 01:19:21 +01:00
#ifdef _MSC_VER
__cpuidex(regs, func, subfunc);
2017-12-16 01:19:21 +01:00
#else
__asm__ volatile("cpuid" : "=a" (regs[0]), "=b" (regs[1]), "=c" (regs[2]), "=d" (regs[3]) : "a" (func), "c" (subfunc));
2017-12-16 01:19:21 +01:00
#endif
return {0u+regs[0], 0u+regs[1], 0u+regs[2], 0u+regs[3]};
}
inline u64 get_xgetbv(u32 xcr)
{
#ifdef _MSC_VER
return _xgetbv(xcr);
#else
u32 eax, edx;
__asm__ volatile( "xgetbv" : "=a"(eax), "=d"(edx) : "c"(xcr));
return eax | (u64(edx) << 32);
#endif
}
2017-11-09 18:33:18 +01:00
bool has_ssse3();
bool has_sse41();
2017-11-09 18:33:18 +01:00
bool has_avx();
2017-12-16 01:19:21 +01:00
bool has_avx2();
2017-11-09 18:33:18 +01:00
bool has_rtm();
2017-07-18 19:03:47 +02:00
bool has_tsx_force_abort();
2018-06-13 13:54:16 +02:00
bool has_mpx();
bool has_avx512();
2017-12-16 01:19:21 +01:00
bool has_avx512_icl();
2018-01-16 12:32:57 +01:00
bool has_xop();
2019-11-14 17:09:34 +01:00
bool has_clwb();
bool has_invariant_tsc();
bool has_fma3();
bool has_fma4();
2020-02-20 03:55:25 +01:00
std::string get_cpu_brand();
std::string get_system_info();
std::string get_firmware_version();
std::string get_OS_version();
ullong get_tsc_freq();
2020-02-20 03:55:25 +01:00
u64 get_total_memory();
u32 get_thread_count();
}