How can I detect which CPU is being used at runtime ? The c++ code needs to differentiate between AMD / Intel architectures ? Using gcc 4.2.
thanks in advance, vivekian
|
1
|
|||
|
|
|
If you're on Linux (or on Windows running under Cygwin), you can figure that out by reading the special file
If you know you're running on an x86 architecture, a less portable method would be to use the CPUID instruction:
|
||||||||||
|
|
|
On Windows, you can use the GetNativeSystemInfo function On Linux, try sysinfo |
|||
|
|
|
|
The For Intel, this string is "GenuineIntel". For AMD, it's "AuthenticAMD". Other companies that have created x86 chips have their own strings.The Wikipedia page for You really only need to check if ECX matches the last four characters. You can't use the first four, because some Transmeta CPUs also start with "Genuine"
If you convert each byte in those to a character, they'll appear to be backwards. This is just a result of the little endian design of x86. If you copied the register to memory and looked at it as a string, it would work just fine. Example Code:
EDIT: One other thing - this can easily be changed into an |
|||
|
|
|
You have to define it in your Makefile arch= |
||||
|
|
|
You probably should not check at all. Instead, check whether the CPU supports the features you need, e.g. SSE3. The differences between two Intel chips might be greater than between AMD and Intel chips. |
||
|
|