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

Unified Diff: runtime/vm/cpu_ia32.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_ia32.h ('k') | runtime/vm/cpu_mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_ia32.cc
===================================================================
--- runtime/vm/cpu_ia32.cc (revision 32559)
+++ runtime/vm/cpu_ia32.cc (working copy)
@@ -3,21 +3,18 @@
// BSD-style license that can be found in the LICENSE file.
#include "vm/globals.h"
+
#if defined(TARGET_ARCH_IA32)
#include "vm/cpu.h"
-#include "vm/assembler.h"
#include "vm/constants_ia32.h"
-#include "vm/cpuinfo.h"
#include "vm/heap.h"
#include "vm/isolate.h"
#include "vm/object.h"
namespace dart {
-DEFINE_FLAG(bool, use_sse41, true, "Use SSE 4.1 if available");
-
void CPU::FlushICache(uword start, uword size) {
// Nothing to be done here.
}
@@ -27,34 +24,6 @@
return "ia32";
}
-
-bool HostCPUFeatures::sse2_supported_ = false;
-bool HostCPUFeatures::sse4_1_supported_ = false;
-char* HostCPUFeatures::hardware_ = NULL;
-#ifdef DEBUG
-bool HostCPUFeatures::initialized_ = false;
-#endif
-
-
-#define __ assembler.
-
-void HostCPUFeatures::InitOnce() {
- CpuInfo::InitOnce();
-
- hardware_ = CpuInfo::GetCpuModel();
- sse2_supported_ = CpuInfo::FieldContainsById(
- CpuInfo::kCpuInfoFeatures, "sse2");
- sse4_1_supported_ =
- CpuInfo::FieldContainsById(CpuInfo::kCpuInfoFeatures, "sse4_1") ||
- CpuInfo::FieldContainsById(CpuInfo::kCpuInfoFeatures, "sse4.1");
-
-#ifdef DEBUG
- initialized_ = true;
-#endif
-}
-
-#undef __
-
} // namespace dart
#endif // defined TARGET_ARCH_IA32
« no previous file with comments | « runtime/vm/cpu_ia32.h ('k') | runtime/vm/cpu_mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698