(svn r26207) -Codechange: move the CPUID flag detection into cpu.cpp

This commit is contained in:
rubidium
2014-01-02 18:52:54 +00:00
parent 7247ecf172
commit b100125866
3 changed files with 23 additions and 8 deletions

View File

@@ -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);
}