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

Unified Diff: mojo/services/html_viewer/discardable_memory_allocator.h

Issue 1016493002: Add a DiscardableMemoryShmemeAllocator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jamesr comments + rebase to ToT Created 5 years, 9 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 | « mojo/services/html_viewer/BUILD.gn ('k') | mojo/services/html_viewer/discardable_memory_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/discardable_memory_allocator.h
diff --git a/mojo/services/html_viewer/discardable_memory_allocator.h b/mojo/services/html_viewer/discardable_memory_allocator.h
new file mode 100644
index 0000000000000000000000000000000000000000..73d6bcf4cc04d3bd9f9c523494c0bd7d0721ebf9
--- /dev/null
+++ b/mojo/services/html_viewer/discardable_memory_allocator.h
@@ -0,0 +1,61 @@
+// Copyright 2015 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.
+
+#ifndef MOJO_SERVICES_HTML_VIEWER_DISCARDABLE_MEMORY_ALLOCATOR_H_
+#define MOJO_SERVICES_HTML_VIEWER_DISCARDABLE_MEMORY_ALLOCATOR_H_
+
+#include <list>
+
+#include "base/memory/discardable_memory_allocator.h"
+
+namespace html_viewer {
+
+// A discarable memory allocator which will unallocate chunks on new
+// allocations.
+class DiscardableMemoryAllocator : public base::DiscardableMemoryAllocator {
+ public:
+ class OwnedMemoryChunk;
+
+ explicit DiscardableMemoryAllocator(size_t desired_max_memory);
+ ~DiscardableMemoryAllocator() override;
+
+ // Overridden from DiscardableMemoryAllocator:
+ scoped_ptr<base::DiscardableMemory> AllocateLockedDiscardableMemory(
+ size_t size) override;
+
+ private:
+ friend class OwnedMemoryChunk;
+
+ // Called by OwnedMemoryChunks when they are unlocked. This puts them at the
+ // end of the live_unlocked_chunks_ list and passes an iterator to their
+ // position in the unlocked chunk list.
+ std::list<OwnedMemoryChunk*>::iterator NotifyUnlocked(
+ OwnedMemoryChunk* chunk);
+
+ // Called by OwnedMemoryChunks when they are locked. This removes the passed
+ // in unlocked chunk list.
+ void NotifyLocked(std::list<OwnedMemoryChunk*>::iterator it);
+
+ // The amount of memory we can allocate before we try to free unlocked
+ // chunks. We can go over this amount if all callers keep their discardable
+ // chunks locked.
+ const size_t desired_max_memory_;
+
+ // A count of the sum of memory. Used to trigger discarding the oldest
+ // memory.
+ size_t total_live_memory_;
+
+ // The number of locked chunks.
+ int locked_chunks_;
+
+ // A linked list of unlocked allocated chunks so that the tail is most
+ // recently accessed chunks.
+ std::list<OwnedMemoryChunk*> live_unlocked_chunks_;
+
+ DISALLOW_COPY_AND_ASSIGN(DiscardableMemoryAllocator);
+};
+
+} // namespace html_viewer
+
+#endif // MOJO_SERVICES_HTML_VIEWER_DISCARDABLE_MEMORY_ALLOCATOR_H_
« no previous file with comments | « mojo/services/html_viewer/BUILD.gn ('k') | mojo/services/html_viewer/discardable_memory_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698