| 
									
										
										
										
											2009-07-28 21:32:10 +00:00
										 |  |  | // Copyright (C) 2003 Dolphin Project.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, version 2.0.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This program 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 2.0 for more details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // A copy of the GPL 2.0 should have been included with the program.
 | 
					
						
							|  |  |  | // If not, see http://www.gnu.org/licenses/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Official SVN repository and contact information can be found at
 | 
					
						
							|  |  |  | // http://code.google.com/p/dolphin-emu/
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | // Detect the cpu, so we'll know which optimizations to use
 | 
					
						
							| 
									
										
										
										
											2009-03-28 08:57:34 +00:00
										 |  |  | #ifndef _CPUDETECT_H_
 | 
					
						
							|  |  |  | #define _CPUDETECT_H_
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum CPUVendor | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	VENDOR_INTEL = 0, | 
					
						
							|  |  |  | 	VENDOR_AMD = 1, | 
					
						
							|  |  |  | 	VENDOR_OTHER = 2, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct CPUInfo | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	CPUVendor vendor; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 	char cpu_string[0x21]; | 
					
						
							|  |  |  | 	char brand_string[0x41]; | 
					
						
							|  |  |  | 	bool OS64bit; | 
					
						
							|  |  |  | 	bool CPU64bit; | 
					
						
							|  |  |  | 	bool Mode64bit; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 	bool HTT; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 	int num_cores; | 
					
						
							| 
									
										
										
										
											2010-12-18 18:23:22 +00:00
										 |  |  | 	int logical_cpu_count; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool bSSE; | 
					
						
							|  |  |  | 	bool bSSE2; | 
					
						
							|  |  |  | 	bool bSSE3; | 
					
						
							|  |  |  | 	bool bSSSE3; | 
					
						
							|  |  |  | 	bool bPOPCNT; | 
					
						
							|  |  |  | 	bool bSSE4_1; | 
					
						
							|  |  |  | 	bool bSSE4_2; | 
					
						
							|  |  |  | 	bool bLZCNT; | 
					
						
							|  |  |  | 	bool bSSE4A; | 
					
						
							| 
									
										
										
										
											2011-01-26 21:27:26 +00:00
										 |  |  | 	bool bAVX; | 
					
						
							|  |  |  | 	bool bAES; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 	bool bLAHFSAHF64; | 
					
						
							|  |  |  | 	bool bLongMode; | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 10:10:48 +00:00
										 |  |  | 	// Call Detect()
 | 
					
						
							|  |  |  | 	explicit CPUInfo(); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-02-28 01:26:56 +00:00
										 |  |  | 	// Turn the cpu info into a string we can show
 | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 	std::string Summarize(); | 
					
						
							| 
									
										
										
										
											2010-02-24 10:10:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	// Detects the various cpu features
 | 
					
						
							|  |  |  | 	void Detect(); | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern CPUInfo cpu_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-28 08:57:34 +00:00
										 |  |  | #endif // _CPUDETECT_H_
 |