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

Unified Diff: runtime/vm/counters.cc

Issue 1343253002: - Remove unused Counters class from isolate. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/counters.h ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/counters.cc
diff --git a/runtime/vm/counters.cc b/runtime/vm/counters.cc
deleted file mode 100644
index 7e43d9a6c150c9bbdca1fe2f5a5814c5fb6c468a..0000000000000000000000000000000000000000
--- a/runtime/vm/counters.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-#include "vm/counters.h"
-
-#include <string.h>
-#include <map> // TODO(koda): Remove STL dependencies.
-
-#include "platform/globals.h"
-#include "vm/os.h"
-
-namespace dart {
-
-struct CStrLess {
- bool operator()(const char* a, const char* b) const {
- return strcmp(a, b) < 0;
- }
-};
-
-
-Counters::~Counters() {
- if (collision_) {
- OS::PrintErr("Counters table collision; increase Counters::kSize.");
- return;
- }
- typedef std::map<const char*, int64_t, CStrLess> TotalsMap;
- TotalsMap totals;
- for (int i = 0; i < kSize; ++i) {
- const Counter& counter = counters_[i];
- if (counter.name != NULL) {
- totals[counter.name] += counter.value;
- }
- }
- for (TotalsMap::iterator it = totals.begin(); it != totals.end(); ++it) {
- OS::PrintErr("%s: %" Pd64 "\n", it->first, it->second);
- }
-}
-
-} // namespace dart
« no previous file with comments | « runtime/vm/counters.h ('k') | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698