| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | // Copyright (C) 2003-2008 Dolphin Project.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 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/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _CPUDETECT_H
 | 
					
						
							|  |  |  | #define _CPUDETECT_H
 | 
					
						
							| 
									
										
										
										
											2008-08-16 10:41:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | enum CPUVendor | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | 	VENDOR_INTEL = 0, | 
					
						
							|  |  |  | 	VENDOR_AMD = 1, | 
					
						
							|  |  |  | 	VENDOR_OTHER = 2, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct CPUInfo | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	CPUVendor vendor; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | 	char cpu_string[0x21]; | 
					
						
							|  |  |  | 	char brand_string[0x41]; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 	bool OS64bit; | 
					
						
							|  |  |  | 	bool CPU64bit; | 
					
						
							|  |  |  | 	bool Mode64bit; | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool hyper_threaded; | 
					
						
							|  |  |  | 	int num_cores; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-12 20:05:45 +00:00
										 |  |  | 	bool bSSE; | 
					
						
							|  |  |  | 	bool bSSE2; | 
					
						
							|  |  |  | 	bool bSSE3; | 
					
						
							|  |  |  | 	bool bSSSE3; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 	bool bPOPCNT; | 
					
						
							|  |  |  | 	bool bSSE4_1; | 
					
						
							|  |  |  | 	bool bSSE4_2; | 
					
						
							|  |  |  | 	bool bLZCNT; | 
					
						
							|  |  |  | 	bool bSSE4A; | 
					
						
							|  |  |  | 	bool bLAHFSAHF64; | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | 	bool bLongMode; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void Detect(); | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | 	std::string Summarize(); | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 20:43:14 +00:00
										 |  |  | extern CPUInfo cpu_info; | 
					
						
							| 
									
										
										
										
											2008-07-12 17:40:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | inline void DetectCPU() {cpu_info.Detect();} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 |