Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Unified Diff: runtime/vm/cpu_mips.cc

Issue 142663004: Reverts refactoring of CPU feature detection for (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/cpu_mips.h ('k') | runtime/vm/cpu_x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_mips.cc
===================================================================
--- runtime/vm/cpu_mips.cc (revision 32559)
+++ runtime/vm/cpu_mips.cc (working copy)
@@ -6,16 +6,14 @@
#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) {
@@ -39,35 +37,6 @@
"mips";
}
-
-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::FieldContainsById(CpuInfo::kCpuInfoModel, "FPU"));
-#if defined(DEBUG)
- initialized_ = true;
-#endif
-}
-
-#else
-
-void HostCPUFeatures::InitOnce() {
- CpuInfo::InitOnce();
- hardware_ = CpuInfo::GetCpuModel();
-#if defined(DEBUG)
- initialized_ = true;
-#endif
-}
-#endif // defined(HOST_ARCH_MIPS)
-
} // namespace dart
#endif // defined TARGET_ARCH_MIPS
« no previous file with comments | « runtime/vm/cpu_mips.h ('k') | runtime/vm/cpu_x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698