| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <cstring>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/CPUDetect.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-23 20:40:05 +01:00
										 |  |  | #include "Common/Intrinsics.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-23 20:40:05 +01:00
										 |  |  | #ifndef _WIN32
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | #ifdef __FreeBSD__
 | 
					
						
							| 
									
										
										
										
											2011-08-27 20:42:11 +02:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <machine/cpufunc.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void __cpuidex(int info[4], int function_id, int subfunction_id) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | #ifdef __FreeBSD__
 | 
					
						
							|  |  |  | 	// Despite the name, this is just do_cpuid() with ECX as second input.
 | 
					
						
							|  |  |  | 	cpuid_count((u_int)function_id, (u_int)subfunction_id, (u_int*)info); | 
					
						
							| 
									
										
										
										
											2011-02-07 19:08:19 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 	info[0] = function_id;    // eax
 | 
					
						
							|  |  |  | 	info[2] = subfunction_id; // ecx
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	__asm__( | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 		"cpuid" | 
					
						
							|  |  |  | 		: "=a" (info[0]), | 
					
						
							|  |  |  | 		  "=b" (info[1]), | 
					
						
							|  |  |  | 		  "=c" (info[2]), | 
					
						
							|  |  |  | 		  "=d" (info[3]) | 
					
						
							|  |  |  | 		: "a" (function_id), | 
					
						
							|  |  |  | 		  "c" (subfunction_id) | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2011-02-07 19:08:19 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | static inline void __cpuid(int info[4], int function_id) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 	return __cpuidex(info, function_id, 0); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | #define _XCR_XFEATURE_ENABLED_MASK 0
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | static u64 _xgetbv(u32 index) | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 	u32 eax, edx; | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | 	__asm__ __volatile__("xgetbv" : "=a"(eax), "=d"(edx) : "c"(index)); | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 	return ((u64)edx << 32) | eax; | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | #endif // ifndef _WIN32
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | CPUInfo cpu_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | CPUInfo::CPUInfo() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-02-24 10:10:48 +00:00
										 |  |  | 	Detect(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-13 21:28:27 -05:00
										 |  |  | // Detects the various CPU features
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | void CPUInfo::Detect() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-03 13:42:06 -05:00
										 |  |  | #ifdef _M_X86_64
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	Mode64bit = true; | 
					
						
							|  |  |  | 	OS64bit = true; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	num_cores = 1; | 
					
						
							| 
									
										
										
										
											2009-03-10 05:43:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	// Set obvious defaults, for extra safety
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (Mode64bit) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		bSSE = true; | 
					
						
							|  |  |  | 		bSSE2 = true; | 
					
						
							|  |  |  | 		bLongMode = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// Assume CPU supports the CPUID instruction. Those that don't can barely
 | 
					
						
							|  |  |  | 	// boot modern OS:es anyway.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	int cpu_id[4]; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-13 21:28:27 -05:00
										 |  |  | 	// Detect CPU's CPUID capabilities, and grab CPU string
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	__cpuid(cpu_id, 0x00000000); | 
					
						
							|  |  |  | 	u32 max_std_fn = cpu_id[0];  // EAX
 | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 	*((int *)brand_string) = cpu_id[1]; | 
					
						
							|  |  |  | 	*((int *)(brand_string + 4)) = cpu_id[3]; | 
					
						
							|  |  |  | 	*((int *)(brand_string + 8)) = cpu_id[2]; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	__cpuid(cpu_id, 0x80000000); | 
					
						
							|  |  |  | 	u32 max_ex_fn = cpu_id[0]; | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 	if (!strcmp(brand_string, "GenuineIntel")) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		vendor = VENDOR_INTEL; | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 	else if (!strcmp(brand_string, "AuthenticAMD")) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		vendor = VENDOR_AMD; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		vendor = VENDOR_OTHER; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	// Set reasonable default brand string even if brand string not available.
 | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 	strcpy(cpu_string, brand_string); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	// Detect family and other misc stuff.
 | 
					
						
							| 
									
										
										
										
											2011-02-02 04:08:52 +00:00
										 |  |  | 	bool ht = false; | 
					
						
							|  |  |  | 	HTT = ht; | 
					
						
							| 
									
										
										
										
											2010-12-18 18:23:22 +00:00
										 |  |  | 	logical_cpu_count = 1; | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (max_std_fn >= 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		__cpuid(cpu_id, 0x00000001); | 
					
						
							| 
									
										
										
										
											2014-10-11 14:22:44 -07:00
										 |  |  | 		int family = ((cpu_id[0] >> 8) & 0xf) + ((cpu_id[0] >> 20) & 0xff); | 
					
						
							|  |  |  | 		int model = ((cpu_id[0] >> 4) & 0xf) + ((cpu_id[0] >> 12) & 0xf0); | 
					
						
							|  |  |  | 		// Detect people unfortunate enough to be running Dolphin on an Atom
 | 
					
						
							|  |  |  | 		if (family == 6 && (model == 0x1C || model == 0x26 ||model == 0x27 || model == 0x35 || model == 0x36 || | 
					
						
							|  |  |  | 		                    model == 0x37 || model == 0x4A || model == 0x4D || model == 0x5A || model == 0x5D)) | 
					
						
							|  |  |  | 			bAtom = true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		logical_cpu_count = (cpu_id[1] >> 16) & 0xFF; | 
					
						
							| 
									
										
										
										
											2011-02-02 04:08:52 +00:00
										 |  |  | 		ht = (cpu_id[3] >> 28) & 1; | 
					
						
							| 
									
										
										
										
											2011-02-07 18:25:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		if ((cpu_id[3] >> 25) & 1) bSSE = true; | 
					
						
							|  |  |  | 		if ((cpu_id[3] >> 26) & 1) bSSE2 = true; | 
					
						
							| 
									
										
										
										
											2011-01-26 21:27:26 +00:00
										 |  |  | 		if ((cpu_id[2])       & 1) bSSE3 = true; | 
					
						
							|  |  |  | 		if ((cpu_id[2] >> 9)  & 1) bSSSE3 = true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		if ((cpu_id[2] >> 19) & 1) bSSE4_1 = true; | 
					
						
							|  |  |  | 		if ((cpu_id[2] >> 20) & 1) bSSE4_2 = true; | 
					
						
							| 
									
										
										
										
											2014-03-16 01:41:37 +01:00
										 |  |  | 		if ((cpu_id[2] >> 22) & 1) bMOVBE = true; | 
					
						
							| 
									
										
										
										
											2011-01-26 21:27:26 +00:00
										 |  |  | 		if ((cpu_id[2] >> 25) & 1) bAES = true; | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-24 13:52:22 +02:00
										 |  |  | 		if ((cpu_id[3] >> 24) & 1) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// We can use FXSAVE.
 | 
					
						
							|  |  |  | 			bFXSR = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | 		// AVX support requires 3 separate checks:
 | 
					
						
							|  |  |  | 		//  - Is the AVX bit set in CPUID?
 | 
					
						
							|  |  |  | 		//  - Is the XSAVE bit set in CPUID?
 | 
					
						
							|  |  |  | 		//  - XGETBV result has the XCR bit set.
 | 
					
						
							|  |  |  | 		if (((cpu_id[2] >> 28) & 1) && ((cpu_id[2] >> 27) & 1)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-08-22 01:08:14 +02:00
										 |  |  | 			if ((_xgetbv(_XCR_XFEATURE_ENABLED_MASK) & 0x6) == 0x6) | 
					
						
							| 
									
										
										
										
											2013-11-13 04:46:34 +01:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | 				bAVX = true; | 
					
						
							| 
									
										
										
										
											2013-11-13 04:46:34 +01:00
										 |  |  | 				if ((cpu_id[2] >> 12) & 1) | 
					
						
							|  |  |  | 					bFMA = true; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-08-20 01:25:10 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (max_std_fn >= 7) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 			__cpuidex(cpu_id, 0x00000007, 0x00000000); | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 			// careful; we can't enable AVX2 unless the XSAVE/XGETBV checks above passed
 | 
					
						
							|  |  |  | 			if ((cpu_id[1] >> 5) & 1) | 
					
						
							|  |  |  | 				bAVX2 = bAVX; | 
					
						
							|  |  |  | 			if ((cpu_id[1] >> 3) & 1) | 
					
						
							|  |  |  | 				bBMI1 = true; | 
					
						
							|  |  |  | 			if ((cpu_id[1] >> 8) & 1) | 
					
						
							|  |  |  | 				bBMI2 = true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-06-14 21:22:34 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bFlushToZero = bSSE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (max_ex_fn >= 0x80000004) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 		// Extract CPU model string
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		__cpuid(cpu_id, 0x80000002); | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 		memcpy(cpu_string, cpu_id, sizeof(cpu_id)); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		__cpuid(cpu_id, 0x80000003); | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 		memcpy(cpu_string + 16, cpu_id, sizeof(cpu_id)); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		__cpuid(cpu_id, 0x80000004); | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 		memcpy(cpu_string + 32, cpu_id, sizeof(cpu_id)); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (max_ex_fn >= 0x80000001) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		// Check for more features.
 | 
					
						
							|  |  |  | 		__cpuid(cpu_id, 0x80000001); | 
					
						
							|  |  |  | 		if (cpu_id[2] & 1) bLAHFSAHF64 = true; | 
					
						
							| 
									
										
										
										
											2014-09-14 05:31:22 -07:00
										 |  |  | 		if ((cpu_id[2] >> 5) & 1) bLZCNT = true; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:20:29 +02:00
										 |  |  | 		if ((cpu_id[2] >> 16) & 1) bFMA4 = true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		if ((cpu_id[3] >> 29) & 1) bLongMode = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-04 23:44:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-05 16:36:47 +00:00
										 |  |  | 	num_cores = (logical_cpu_count == 0) ? 1 : logical_cpu_count; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (max_ex_fn >= 0x80000008) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 		// Get number of cores. This is a bit complicated. Following AMD manual here.
 | 
					
						
							|  |  |  | 		__cpuid(cpu_id, 0x80000008); | 
					
						
							|  |  |  | 		int apic_id_core_id_size = (cpu_id[2] >> 12) & 0xF; | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 		if (apic_id_core_id_size == 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (ht) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2011-02-02 04:08:52 +00:00
										 |  |  | 				// New mechanism for modern Intel CPUs.
 | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 				if (vendor == VENDOR_INTEL) | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2015-05-14 23:14:34 +02:00
										 |  |  | 					__cpuidex(cpu_id, 0x00000004, 0x00000000); | 
					
						
							| 
									
										
										
										
											2011-02-02 04:08:52 +00:00
										 |  |  | 					int cores_x_package = ((cpu_id[0] >> 26) & 0x3F) + 1; | 
					
						
							| 
									
										
										
										
											2011-02-07 18:25:55 +00:00
										 |  |  | 					HTT = (cores_x_package < logical_cpu_count); | 
					
						
							| 
									
										
										
										
											2011-02-02 04:08:52 +00:00
										 |  |  | 					cores_x_package = ((logical_cpu_count % cores_x_package) == 0) ? cores_x_package : 1; | 
					
						
							|  |  |  | 					num_cores = (cores_x_package > 1) ? cores_x_package : num_cores; | 
					
						
							|  |  |  | 					logical_cpu_count /= cores_x_package; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-02-02 02:05:57 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			// Use AMD's new method.
 | 
					
						
							|  |  |  | 			num_cores = (cpu_id[2] & 0xFF) + 1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-13 21:28:27 -05:00
										 |  |  | // Turn the CPU info into a string we can show
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | std::string CPUInfo::Summarize() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-16 23:44:50 -06:00
										 |  |  | 	std::string sum(cpu_string); | 
					
						
							| 
									
										
										
										
											2014-10-20 14:01:50 -04:00
										 |  |  | 	sum += " ("; | 
					
						
							|  |  |  | 	sum += brand_string; | 
					
						
							|  |  |  | 	sum += ")"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-18 18:23:22 +00:00
										 |  |  | 	if (bSSE) sum += ", SSE"; | 
					
						
							| 
									
										
										
										
											2013-11-03 23:56:30 +01:00
										 |  |  | 	if (bSSE2) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		sum += ", SSE2"; | 
					
						
							|  |  |  | 		if (!bFlushToZero) | 
					
						
							|  |  |  | 			sum += " (but not DAZ!)"; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	if (bSSE3) sum += ", SSE3"; | 
					
						
							|  |  |  | 	if (bSSSE3) sum += ", SSSE3"; | 
					
						
							|  |  |  | 	if (bSSE4_1) sum += ", SSE4.1"; | 
					
						
							|  |  |  | 	if (bSSE4_2) sum += ", SSE4.2"; | 
					
						
							| 
									
										
										
										
											2011-02-07 18:25:55 +00:00
										 |  |  | 	if (HTT) sum += ", HTT"; | 
					
						
							| 
									
										
										
										
											2011-01-26 21:27:26 +00:00
										 |  |  | 	if (bAVX) sum += ", AVX"; | 
					
						
							| 
									
										
										
										
											2014-08-24 09:14:54 -07:00
										 |  |  | 	if (bAVX2) sum += ", AVX2"; | 
					
						
							|  |  |  | 	if (bBMI1) sum += ", BMI1"; | 
					
						
							|  |  |  | 	if (bBMI2) sum += ", BMI2"; | 
					
						
							| 
									
										
										
										
											2013-11-13 04:46:34 +01:00
										 |  |  | 	if (bFMA) sum += ", FMA"; | 
					
						
							| 
									
										
										
										
											2011-01-26 21:27:26 +00:00
										 |  |  | 	if (bAES) sum += ", AES"; | 
					
						
							| 
									
										
										
										
											2014-03-16 01:41:37 +01:00
										 |  |  | 	if (bMOVBE) sum += ", MOVBE"; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	if (bLongMode) sum += ", 64-bit support"; | 
					
						
							|  |  |  | 	return sum; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-12-16 22:41:52 -05:00
										 |  |  | 
 |