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

Unified Diff: chrome/profiling/backtrace_storage.cc

Issue 2943733002: Add out-of-process memory logging stream parsing. (Closed)
Patch Set: Add TODO Created 3 years, 6 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 | « chrome/profiling/backtrace_storage.h ('k') | chrome/profiling/memlog_connection_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/profiling/backtrace_storage.cc
diff --git a/chrome/profiling/backtrace_storage.cc b/chrome/profiling/backtrace_storage.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5d47fe940a0b3892e5b39e22c9bf64c9cdc5fc8a
--- /dev/null
+++ b/chrome/profiling/backtrace_storage.cc
@@ -0,0 +1,44 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/profiling/backtrace_storage.h"
+
+#include "chrome/profiling/backtrace.h"
+
+namespace profiling {
+
+BacktraceStorage::BacktraceStorage() {}
+
+BacktraceStorage::~BacktraceStorage() {}
+
+BacktraceStorage::Key BacktraceStorage::Insert(std::vector<Address>&& bt) {
+ base::AutoLock lock(lock_);
+
+ BacktraceStorage::Key key =
+ backtraces_.insert(Backtrace(std::move(bt))).first;
+ key->AddRef();
+ return key;
+}
+
+void BacktraceStorage::Free(const Key& key) {
+ base::AutoLock lock(lock_);
+ if (!key->Release())
+ backtraces_.erase(key);
+}
+
+void BacktraceStorage::Free(const std::vector<Key>& keys) {
+ base::AutoLock lock(lock_);
+ for (size_t i = 0; i < keys.size(); i++) {
+ if (!keys[i]->Release())
+ backtraces_.erase(keys[i]);
+ }
+}
+
+const Backtrace& BacktraceStorage::GetBacktraceForKey(const Key& key) const {
+ // Since the caller should own a reference to the key and the container has
+ // stable iterators, we can access without a lock.
+ return *key;
+}
+
+} // namespace profiling
« no previous file with comments | « chrome/profiling/backtrace_storage.h ('k') | chrome/profiling/memlog_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698