2009-07-03 00:49:40 +00:00
|
|
|
/* Cpudetection lib
|
2021-07-24 17:12:22 +00:00
|
|
|
* Copyright (C) 2002-2021 PCSX2 Dev Team
|
2009-10-05 11:05:11 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-07-03 00:49:40 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 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 General Public License for more details.
|
2009-07-03 20:12:33 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-07-03 00:49:40 +00:00
|
|
|
*/
|
2009-10-05 11:05:11 +00:00
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/MemcpyFast.h"
|
|
|
|
#include "common/General.h"
|
|
|
|
#include "common/emitter/cpudetect_internal.h"
|
|
|
|
#include "common/emitter/internal.h"
|
|
|
|
#include "common/emitter/x86_intrin.h"
|
2009-10-07 19:20:11 +00:00
|
|
|
|
2021-05-12 08:09:15 +00:00
|
|
|
// CPU information support
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
|
|
|
#define cpuid __cpuid
|
|
|
|
#define cpuidex __cpuidex
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <cpuid.h>
|
|
|
|
|
|
|
|
static __inline__ __attribute__((always_inline)) void cpuidex(int CPUInfo[], const int InfoType, const int count)
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
__cpuid_count(InfoType, count, CPUInfo[0], CPUInfo[1], CPUInfo[2], CPUInfo[3]);
|
2021-05-12 08:09:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ __attribute__((always_inline)) void cpuid(int CPUInfo[], const int InfoType)
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
__cpuid(InfoType, CPUInfo[0], CPUInfo[1], CPUInfo[2], CPUInfo[3]);
|
2021-05-12 08:09:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-07-03 00:49:40 +00:00
|
|
|
using namespace x86Emitter;
|
|
|
|
|
2010-06-01 03:33:51 +00:00
|
|
|
__aligned16 x86capabilities x86caps;
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
x86capabilities::x86capabilities()
|
2021-09-06 18:28:26 +00:00
|
|
|
: isIdentified(false)
|
|
|
|
, VendorID(x86Vendor_Unknown)
|
|
|
|
, FamilyID(0)
|
|
|
|
, Model(0)
|
|
|
|
, TypeID(0)
|
|
|
|
, StepID(0)
|
|
|
|
, Flags(0)
|
|
|
|
, Flags2(0)
|
|
|
|
, EFlags(0)
|
|
|
|
, EFlags2(0)
|
|
|
|
, SEFlag(0)
|
|
|
|
, AllCapabilities(0)
|
|
|
|
, PhysicalCores(0)
|
|
|
|
, LogicalCores(0)
|
2016-03-28 12:33:21 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
memzero(VendorName);
|
|
|
|
memzero(FamilyName);
|
2016-03-28 12:33:21 +00:00
|
|
|
}
|
|
|
|
|
2010-06-01 03:33:51 +00:00
|
|
|
// Warning! We've had problems with the MXCSR detection code causing stack corruption in
|
|
|
|
// MSVC PGO builds. The problem was fixed when I moved the MXCSR code to this function, and
|
|
|
|
// moved the recSSE[] array to a global static (it was local to cpudetectInit). Commented
|
|
|
|
// here in case the nutty crash ever re-surfaces. >_<
|
2015-11-28 21:09:33 +00:00
|
|
|
// Note: recSSE was deleted
|
2010-06-01 03:33:51 +00:00
|
|
|
void x86capabilities::SIMD_EstablishMXCSRmask()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
if (!hasStreamingSIMDExtensions)
|
|
|
|
return;
|
2010-06-01 03:33:51 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
MXCSR_Mask.bitmask = 0xFFBF; // MMX/SSE default
|
2010-06-01 03:33:51 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
if (hasStreamingSIMD2Extensions)
|
|
|
|
{
|
|
|
|
// This is generally safe assumption, but FXSAVE is the "correct" way to
|
|
|
|
// detect MXCSR masking features of the cpu, so we use it's result below
|
|
|
|
// and override this.
|
2010-06-01 03:33:51 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
MXCSR_Mask.bitmask = 0xFFFF; // SSE2 features added
|
|
|
|
}
|
2010-06-01 03:33:51 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
__aligned16 u8 targetFXSAVE[512];
|
2016-07-27 21:27:21 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// Work for recent enough GCC/CLANG/MSVC 2012
|
|
|
|
_fxsave(&targetFXSAVE);
|
2010-06-01 03:33:51 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
u32 result;
|
|
|
|
memcpy(&result, &targetFXSAVE[28], 4); // bytes 28->32 are the MXCSR_Mask.
|
|
|
|
if (result != 0)
|
|
|
|
MXCSR_Mask.bitmask = result;
|
2010-06-01 03:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Counts the number of cpu cycles executed over the requested number of PerformanceCounter
|
|
|
|
// ticks. Returns that exact count.
|
|
|
|
// For best results you should pick a period of time long enough to get a reading that won't
|
|
|
|
// be prone to rounding error; but short enough that it'll be highly unlikely to be interrupted
|
|
|
|
// by the operating system task switches.
|
2016-11-12 15:28:37 +00:00
|
|
|
s64 x86capabilities::_CPUSpeedHz(u64 time) const
|
2009-07-03 00:49:40 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
u64 timeStart, timeStop;
|
|
|
|
s64 startCycle, endCycle;
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
if (!hasTimeStampCounter)
|
|
|
|
return 0;
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
SingleCoreAffinity affinity_lock;
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// Align the cpu execution to a cpuTick boundary.
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
timeStart = GetCPUTicks();
|
|
|
|
startCycle = __rdtsc();
|
|
|
|
} while (GetCPUTicks() == timeStart);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
timeStop = GetCPUTicks();
|
|
|
|
endCycle = __rdtsc();
|
|
|
|
} while ((timeStop - timeStart) < time);
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
s64 cycleCount = endCycle - startCycle;
|
|
|
|
s64 timeCount = timeStop - timeStart;
|
|
|
|
s64 overrun = timeCount - time;
|
|
|
|
if (!overrun)
|
|
|
|
return cycleCount;
|
2009-12-20 01:28:23 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// interference could cause us to overshoot the target time, compensate:
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
double cyclesPerTick = (double)cycleCount / (double)timeCount;
|
|
|
|
double newCycleCount = (double)cycleCount - (cyclesPerTick * overrun);
|
2009-12-20 01:28:23 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
return (s64)newCycleCount;
|
2009-07-03 00:49:40 +00:00
|
|
|
}
|
|
|
|
|
2010-06-01 03:33:51 +00:00
|
|
|
wxString x86capabilities::GetTypeName() const
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
switch (TypeID)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return L"Standard OEM";
|
|
|
|
case 1:
|
|
|
|
return L"Overdrive";
|
|
|
|
case 2:
|
|
|
|
return L"Dual";
|
|
|
|
case 3:
|
|
|
|
return L"Reserved";
|
|
|
|
default:
|
|
|
|
return L"Unknown";
|
|
|
|
}
|
2010-06-01 03:33:51 +00:00
|
|
|
}
|
2009-12-08 02:38:13 +00:00
|
|
|
|
2010-06-01 03:33:51 +00:00
|
|
|
void x86capabilities::CountCores()
|
2009-12-08 02:38:13 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
Identify();
|
2009-12-08 02:38:13 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
s32 regs[4];
|
|
|
|
u32 cmds;
|
2009-12-08 02:38:13 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
cpuid(regs, 0x80000000);
|
|
|
|
cmds = regs[0];
|
2009-12-24 22:22:34 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// detect multicore for AMD cpu
|
2009-12-08 02:38:13 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
if ((cmds >= 0x80000008) && (VendorID == x86Vendor_AMD))
|
|
|
|
{
|
|
|
|
// AMD note: they don't support hyperthreading, but they like to flag this true
|
|
|
|
// anyway. Let's force-unflag it until we come up with a better solution.
|
|
|
|
// (note: seems to affect some Phenom II's only? -- Athlon X2's and PhenomI's do
|
|
|
|
// not seem to do this) --air
|
|
|
|
hasMultiThreading = 0;
|
|
|
|
}
|
2009-12-08 02:38:13 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// This will assign values into LogicalCores and PhysicalCores
|
|
|
|
CountLogicalCores();
|
2009-12-08 02:38:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
static const char* tbl_x86vendors[] =
|
|
|
|
{
|
|
|
|
"GenuineIntel",
|
|
|
|
"AuthenticAMD",
|
|
|
|
"Unknown ",
|
2010-06-01 03:33:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Performs all _cpuid-related activity. This fills *most* of the x86caps structure, except for
|
|
|
|
// the cpuSpeed and the mxcsr masks. Those must be completed manually.
|
|
|
|
void x86capabilities::Identify()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
if (isIdentified)
|
|
|
|
return;
|
|
|
|
isIdentified = true;
|
|
|
|
|
|
|
|
s32 regs[4];
|
|
|
|
u32 cmds;
|
|
|
|
|
|
|
|
memzero(VendorName);
|
|
|
|
cpuid(regs, 0);
|
|
|
|
|
|
|
|
cmds = regs[0];
|
|
|
|
memcpy(&VendorName[0], ®s[1], 4);
|
|
|
|
memcpy(&VendorName[4], ®s[3], 4);
|
|
|
|
memcpy(&VendorName[8], ®s[2], 4);
|
|
|
|
|
|
|
|
// Determine Vendor Specifics!
|
|
|
|
// It's really not recommended that we base much (if anything) on CPU vendor names,
|
|
|
|
// however it's currently necessary in order to gain a (pseudo)reliable count of cores
|
|
|
|
// and threads used by the CPU (AMD and Intel can't agree on how to make this info available).
|
|
|
|
|
|
|
|
int vid;
|
|
|
|
for (vid = 0; vid < x86Vendor_Unknown; ++vid)
|
|
|
|
{
|
|
|
|
if (memcmp(VendorName, tbl_x86vendors[vid], 12) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
VendorID = static_cast<x86VendorType>(vid);
|
|
|
|
|
|
|
|
if (cmds >= 0x00000001)
|
|
|
|
{
|
|
|
|
cpuid(regs, 0x00000001);
|
|
|
|
|
|
|
|
StepID = regs[0] & 0xf;
|
|
|
|
Model = (regs[0] >> 4) & 0xf;
|
|
|
|
FamilyID = (regs[0] >> 8) & 0xf;
|
|
|
|
TypeID = (regs[0] >> 12) & 0x3;
|
2019-06-19 05:08:43 +00:00
|
|
|
#ifdef __M_X86_64
|
2021-09-06 18:28:26 +00:00
|
|
|
//u32 x86_64_8BITBRANDID = regs[1] & 0xff;
|
2015-11-06 22:18:03 +00:00
|
|
|
#endif
|
2021-09-06 18:28:26 +00:00
|
|
|
Flags = regs[3];
|
|
|
|
Flags2 = regs[2];
|
|
|
|
}
|
2009-12-07 22:43:16 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
if (cmds >= 0x00000007)
|
|
|
|
{
|
|
|
|
// Note: ECX must be 0 for AVX2 detection.
|
|
|
|
cpuidex(regs, 0x00000007, 0);
|
2015-11-28 22:39:06 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
SEFlag = regs[1];
|
|
|
|
}
|
2015-11-28 22:39:06 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
cpuid(regs, 0x80000000);
|
|
|
|
cmds = regs[0];
|
|
|
|
if (cmds >= 0x80000001)
|
|
|
|
{
|
|
|
|
cpuid(regs, 0x80000001);
|
2009-12-07 22:43:16 +00:00
|
|
|
|
2019-06-19 05:08:43 +00:00
|
|
|
#ifdef __M_X86_64
|
2021-09-06 18:28:26 +00:00
|
|
|
//u32 x86_64_12BITBRANDID = regs[1] & 0xfff;
|
2015-11-06 22:18:03 +00:00
|
|
|
#endif
|
2021-09-06 18:28:26 +00:00
|
|
|
EFlags2 = regs[2];
|
|
|
|
EFlags = regs[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
memzero(FamilyName);
|
|
|
|
cpuid((int*)FamilyName, 0x80000002);
|
|
|
|
cpuid((int*)(FamilyName + 16), 0x80000003);
|
|
|
|
cpuid((int*)(FamilyName + 32), 0x80000004);
|
|
|
|
|
|
|
|
hasFloatingPointUnit = (Flags >> 0) & 1;
|
|
|
|
hasVirtual8086ModeEnhancements = (Flags >> 1) & 1;
|
|
|
|
hasDebuggingExtensions = (Flags >> 2) & 1;
|
|
|
|
hasPageSizeExtensions = (Flags >> 3) & 1;
|
|
|
|
hasTimeStampCounter = (Flags >> 4) & 1;
|
|
|
|
hasModelSpecificRegisters = (Flags >> 5) & 1;
|
|
|
|
hasPhysicalAddressExtension = (Flags >> 6) & 1;
|
|
|
|
hasMachineCheckArchitecture = (Flags >> 7) & 1;
|
|
|
|
hasCOMPXCHG8BInstruction = (Flags >> 8) & 1;
|
|
|
|
hasAdvancedProgrammableInterruptController = (Flags >> 9) & 1;
|
|
|
|
hasSEPFastSystemCall = (Flags >> 11) & 1;
|
|
|
|
hasMemoryTypeRangeRegisters = (Flags >> 12) & 1;
|
|
|
|
hasPTEGlobalFlag = (Flags >> 13) & 1;
|
|
|
|
hasMachineCheckArchitecture = (Flags >> 14) & 1;
|
|
|
|
hasConditionalMoveAndCompareInstructions = (Flags >> 15) & 1;
|
|
|
|
hasFGPageAttributeTable = (Flags >> 16) & 1;
|
|
|
|
has36bitPageSizeExtension = (Flags >> 17) & 1;
|
|
|
|
hasProcessorSerialNumber = (Flags >> 18) & 1;
|
|
|
|
hasCFLUSHInstruction = (Flags >> 19) & 1;
|
|
|
|
hasDebugStore = (Flags >> 21) & 1;
|
|
|
|
hasACPIThermalMonitorAndClockControl = (Flags >> 22) & 1;
|
|
|
|
hasFastStreamingSIMDExtensionsSaveRestore = (Flags >> 24) & 1;
|
|
|
|
hasStreamingSIMDExtensions = (Flags >> 25) & 1; //sse
|
|
|
|
hasStreamingSIMD2Extensions = (Flags >> 26) & 1; //sse2
|
|
|
|
hasSelfSnoop = (Flags >> 27) & 1;
|
|
|
|
hasMultiThreading = (Flags >> 28) & 1;
|
|
|
|
hasThermalMonitor = (Flags >> 29) & 1;
|
|
|
|
hasIntel64BitArchitecture = (Flags >> 30) & 1;
|
|
|
|
|
|
|
|
// -------------------------------------------------
|
|
|
|
// --> SSE3 / SSSE3 / SSE4.1 / SSE 4.2 detection <--
|
|
|
|
// -------------------------------------------------
|
|
|
|
|
|
|
|
hasStreamingSIMD3Extensions = (Flags2 >> 0) & 1; //sse3
|
|
|
|
hasSupplementalStreamingSIMD3Extensions = (Flags2 >> 9) & 1; //ssse3
|
|
|
|
hasStreamingSIMD4Extensions = (Flags2 >> 19) & 1; //sse4.1
|
|
|
|
hasStreamingSIMD4Extensions2 = (Flags2 >> 20) & 1; //sse4.2
|
|
|
|
|
|
|
|
if ((Flags2 >> 27) & 1) // OSXSAVE
|
|
|
|
{
|
|
|
|
// Note: In theory, we should use xgetbv to check OS support
|
|
|
|
// but all OSes we officially run under support it
|
|
|
|
// and its intrinsic requires extra compiler flags
|
|
|
|
hasAVX = (Flags2 >> 28) & 1; //avx
|
|
|
|
hasFMA = (Flags2 >> 12) & 1; //fma
|
|
|
|
hasAVX2 = (SEFlag >> 5) & 1; //avx2
|
|
|
|
}
|
|
|
|
|
|
|
|
hasBMI1 = (SEFlag >> 3) & 1;
|
|
|
|
hasBMI2 = (SEFlag >> 8) & 1;
|
|
|
|
|
|
|
|
// Ones only for AMDs:
|
|
|
|
hasAMD64BitArchitecture = (EFlags >> 29) & 1; //64bit cpu
|
|
|
|
hasStreamingSIMD4ExtensionsA = (EFlags2 >> 6) & 1; //INSERTQ / EXTRQ / MOVNT
|
|
|
|
|
|
|
|
isIdentified = true;
|
2010-06-01 03:33:51 +00:00
|
|
|
}
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2010-06-01 03:33:51 +00:00
|
|
|
u32 x86capabilities::CalculateMHz() const
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
InitCPUTicks();
|
|
|
|
u64 span = GetTickFrequency();
|
2009-07-03 00:49:40 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
if ((span % 1000) < 400) // helps minimize rounding errors
|
|
|
|
return (u32)(_CPUSpeedHz(span / 1000) / 1000);
|
|
|
|
else
|
|
|
|
return (u32)(_CPUSpeedHz(span / 500) / 2000);
|
2010-06-01 03:33:51 +00:00
|
|
|
}
|