Index: runtime/vm/cpu_mips.cc |
=================================================================== |
--- runtime/vm/cpu_mips.cc (revision 32974) |
+++ runtime/vm/cpu_mips.cc (working copy) |
@@ -6,14 +6,16 @@ |
#if defined(TARGET_ARCH_MIPS) |
+#include "vm/cpu.h" |
+#include "vm/cpuinfo.h" |
+#include "vm/simulator.h" |
+ |
#if defined(HOST_ARCH_MIPS) |
#include <asm/cachectl.h> /* NOLINT */ |
#include <sys/syscall.h> /* NOLINT */ |
#include <unistd.h> /* NOLINT */ |
#endif |
-#include "vm/cpu.h" |
- |
namespace dart { |
void CPU::FlushICache(uword start, uword size) { |
@@ -37,6 +39,59 @@ |
"mips"; |
} |
+ |
+const char* HostCPUFeatures::hardware_ = NULL; |
+#if defined(DEBUG) |
+bool HostCPUFeatures::initialized_ = false; |
+#endif |
+ |
+ |
+#if defined(HOST_ARCH_MIPS) |
+void HostCPUFeatures::InitOnce() { |
+ CpuInfo::InitOnce(); |
+ hardware_ = CpuInfo::GetCpuModel(); |
+ // Has a floating point unit. |
+ ASSERT(CpuInfo::FieldContains(kCpuInfoModel, "FPU")); |
+#if defined(DEBUG) |
+ initialized_ = true; |
+#endif |
+} |
+ |
+ |
+void HostCPUFeatures::Cleanup() { |
+ DEBUG_ASSERT(initialized_); |
+#if defined(DEBUG) |
+ initialized_ = false; |
+#endif |
+ ASSERT(hardware_ != NULL); |
+ delete[] hardware_; |
+ hardware_ = NULL; |
+ CpuInfo::Cleanup(); |
+} |
+ |
+#else |
+ |
+void HostCPUFeatures::InitOnce() { |
+ CpuInfo::InitOnce(); |
+ hardware_ = CpuInfo::GetCpuModel(); |
+#if defined(DEBUG) |
+ initialized_ = true; |
+#endif |
+} |
+ |
+ |
+void HostCPUFeatures::Cleanup() { |
+ DEBUG_ASSERT(initialized_); |
+#if defined(DEBUG) |
+ initialized_ = false; |
+#endif |
+ ASSERT(hardware_ != NULL); |
+ delete[] hardware_; |
+ hardware_ = NULL; |
+ CpuInfo::Cleanup(); |
+} |
+#endif // defined(HOST_ARCH_MIPS) |
+ |
} // namespace dart |
#endif // defined TARGET_ARCH_MIPS |