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

Unified Diff: runtime/vm/cpu_dbc.h

Issue 1928473003: DBC: Enable CpuInfo test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | runtime/vm/cpu_dbc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_dbc.h
diff --git a/runtime/vm/cpu_dbc.h b/runtime/vm/cpu_dbc.h
index b437beb36c3ae2922dd6511e5c1fcb9572ea2109..486acdb7684cd4c35f44a0fefbfc28caa570d8a8 100644
--- a/runtime/vm/cpu_dbc.h
+++ b/runtime/vm/cpu_dbc.h
@@ -12,13 +12,33 @@ namespace dart {
class HostCPUFeatures: public AllStatic {
public:
- static const char* hardware() { return "simdbc"; }
+ static void InitOnce();
+ static void Cleanup();
+
+ static const char* hardware() {
+ DEBUG_ASSERT(initialized_);
+ return hardware_;
+ }
+
+ private:
+ static const char* hardware_;
+#if defined(DEBUG)
+ static bool initialized_;
+#endif
};
class TargetCPUFeatures : public AllStatic {
public:
- static void InitOnce() {}
- static void Cleanup() {}
+ static void InitOnce() {
+ HostCPUFeatures::InitOnce();
+ }
+ static void Cleanup() {
+ HostCPUFeatures::Cleanup();
+ }
+
+ static const char* hardware() {
+ return CPU::Id();
+ }
static bool double_truncate_round_supported() {
return true;
« no previous file with comments | « no previous file | runtime/vm/cpu_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698