summaryrefslogtreecommitdiff
path: root/src/cpu.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-01-02 18:52:54 +0000
committerrubidium <rubidium@openttd.org>2014-01-02 18:52:54 +0000
commitb1001258668ee3fd2cdb579ddbc9aa3bd5ac0c2c (patch)
tree7d2d197e68e21b05e940fe308e73d9f0d2715ab0 /src/cpu.cpp
parent7247ecf172e85ed47b13ccb9aa1ffcc2050b0114 (diff)
downloadopenttd-b1001258668ee3fd2cdb579ddbc9aa3bd5ac0c2c.tar.xz
(svn r26207) -Codechange: move the CPUID flag detection into cpu.cpp
Diffstat (limited to 'src/cpu.cpp')
-rw-r--r--src/cpu.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/cpu.cpp b/src/cpu.cpp
index efa070bcb..45b7faab4 100644
--- a/src/cpu.cpp
+++ b/src/cpu.cpp
@@ -7,9 +7,10 @@
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
-/** @file cpu.cpp OS/CPU/compiler dependant real time tick sampling. */
+/** @file cpu.cpp OS/CPU/compiler dependant CPU specific calls. */
#include "stdafx.h"
+#include "core/bitmath_func.hpp"
#undef RDTSC_AVAILABLE
@@ -107,3 +108,14 @@ void ottd_cpuid(int info[4], int type)
info[0] = info[1] = info[2] = info[3] = 0;
}
#endif
+
+bool HasCPUIDFlag(uint type, uint index, uint bit)
+{
+ int cpu_info[4] = {-1};
+ ottd_cpuid(cpu_info, 0);
+ uint max_info_type = cpu_info[0];
+ if (max_info_type < type) return false;
+
+ ottd_cpuid(cpu_info, type);
+ return HasBit(cpu_info[index], bit);
+}