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

Unified Diff: third_party/tcmalloc/chromium/src/free_list.cc

Issue 7671034: doubly-linked free-lists for thread caches and page heaps (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: code style fixes Created 9 years, 4 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
Index: third_party/tcmalloc/chromium/src/free_list.cc
diff --git a/third_party/tcmalloc/chromium/src/free_list.cc b/third_party/tcmalloc/chromium/src/free_list.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7af3bbf3cac1ec1b116c5bfe1707e8d43f778719
--- /dev/null
+++ b/third_party/tcmalloc/chromium/src/free_list.cc
@@ -0,0 +1,177 @@
+// Copyright (c) 2011, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// ---
+// Author: Rebecca Shapiro <bxx@google.com>
+// This file contains functions that implement doubly linked
+// linked lists.
+
+#ifdef TCMALLOC_USE_DOUBLYLINKED_FREELIST
+
+#include <assert.h>
+#include <stddef.h>
+
+#define MEMORY_CHECK(v1, v2) if (v1 != v2) DieFromMemoryCorruption();
+#define ASSERT(x) assert(x)
+namespace {
+// Intentionally cause a segmentation fault
+inline void DieFromMemoryCorruption() {
+ char *p = NULL;
+ *p += 1; // Segv
+}
+
+// Returns value of the Previous pointer w/out running a sanity check
+inline void *FL_Previous_No_Check(void *t) {
+ return *(reinterpret_cast<void**> (static_cast<void **>(t) + 1));
jar (doing other things) 2011/08/20 02:40:30 I suspect (not sure) this code would be a lot clea
bxx 2011/08/24 00:19:24 I am currently following the style in which the si
jar (doing other things) 2011/08/25 02:07:50 This file is entirely written by you, so things li
+}
+
+// Returns value of the Next pointer w/out running a sanity check
+inline void *FL_Next_No_Check(void *t) {
+ return *(reinterpret_cast<void**>(t));
+}
+
+} // namespace
+
+namespace tcmalloc {
+void *FL_Previous(void *t) {
+ void *previous = FL_Previous_No_Check(t);
+ if (previous)
+ ASSERT(FL_Next_No_Check(previous) == t);
jar (doing other things) 2011/08/20 02:40:30 I would expect these to be places where we validat
bxx 2011/08/24 00:19:24 Done.
+ return previous;
+}
+
+void *FL_Next(void *t) {
+ void *next = FL_Next_No_Check(t);
+ if (next)
+ ASSERT(FL_Previous_No_Check(next) == t);
jar (doing other things) 2011/08/20 02:40:30 Again, this this should IMO definitely be MEMORY_C
bxx 2011/08/24 00:19:24 Done.
+ return next;
+}
+
+inline void FL_SetPrevious(void *t, void *n) {
+ *(reinterpret_cast<void**> (static_cast<void **>(t) + 1)) = n;
jar (doing other things) 2011/08/20 02:40:30 I don't think the second cast (on the left) is nee
bxx 2011/08/24 00:19:24 Done.
+}
+
+inline void FL_SetNext(void *t, void *n) {
+ *(reinterpret_cast<void**>(t)) = n;
+}
+
+// Makes the memory pointed at t a singleton
+// doubly linked list.
+inline void FL_Init(void *t) {
+ FL_SetPrevious(t, NULL);
+ FL_SetNext(t, NULL);
+}
+
+// Pushes element to a linked list
+// located at *list. When this call returns, list
+// will point to the new head of the linked list.
jar (doing other things) 2011/08/20 02:40:30 nit: use 80 characters of width so you don't need
bxx 2011/08/24 00:19:24 Done.
+void FL_Push(void **list, void *element) {
+ void *old = *list;
+ if (old == NULL) { // build singleton list
jar (doing other things) 2011/08/20 02:40:30 nit: Comments should start with caps, be a complet
bxx 2011/08/24 00:19:24 I have been fixing this in my code, but I see that
+ FL_Init(element);
+ } else {
+ if (FL_Next(old))
jar (doing other things) 2011/08/20 02:40:30 This is going deeper into the list than any pointe
bxx 2011/08/24 00:19:24 Done.
+ MEMORY_CHECK(FL_Previous(FL_Next(old)), old);
jar (doing other things) 2011/08/20 02:40:30 At best, you should use the *_No_Check versions in
bxx 2011/08/24 00:19:24 The potential issue I see with these NULL checks a
+ FL_SetNext(element, old);
+ FL_SetPrevious(old, element);
+ FL_SetPrevious(element, NULL);
+ }
+ *list = element;
+}
+
+// Pops the top element off the linked list that begins at
+// *list, and upates *list to point to the next element
+// in the list. Return the address of the element that
+// was removed from the linked list. *list must not be NULL.
+void *FL_Pop(void **list) {
+ void *result = *list;
jar (doing other things) 2011/08/20 02:40:30 Here again I'd suggest the test: MEMORY_CHECK(FL_
bxx 2011/08/24 00:19:24 using ASSERT On 2011/08/20 02:40:30, jar wrote:
+ if (result && FL_Next(result)) // pointer sanity check
jar (doing other things) 2011/08/20 02:40:30 result is always non-null (unless we make a mistak
bxx 2011/08/24 00:19:24 Done.
+ MEMORY_CHECK(FL_Previous(FL_Next(result)), result);
jar (doing other things) 2011/08/20 02:40:30 Again, the above does this same test for 3 times (
bxx 2011/08/24 00:19:24 Done.
+
+ *list = FL_Next(*list); // Fix remainder of list
+ if (*list != NULL)
+ FL_SetPrevious(*list, NULL);
+
+ return result;
+}
+
+// Remove N elements from a linked list to which head points. head will be
+// modified to point to the new head. start will point to the first
+// node of the range, end points to last node in range
+// This function assumes that you aren't trying to pop N > FL_Size(*head)
+// nodes, and that *head is not NULL.
+void FL_PopRange(void **head, int N, void **start, void **end) {
+ if (N == 0) {
+ *start = NULL;
+ *end = NULL;
+ return;
+ }
+
+ *start = *head; // remember the first node in the range
+ void *tmp = *head;
+ for (int i = 1; i < N; ++i) // find end of range
+ tmp = FL_Next(tmp);
jar (doing other things) 2011/08/20 02:40:30 This code is definitely a place to do validation,
bxx 2011/08/24 00:19:24 Done.
+
+ *end = tmp; // end now set to point to last node in range
+ *head = FL_Next(*end);
+ FL_SetNext(*end, NULL); // Unlink range from list.
+
+ if (*head && FL_Next(*head)) { // fixup popped list
+ MEMORY_CHECK(FL_Previous(FL_Next(*head)), *head);
jar (doing other things) 2011/08/20 02:40:30 This is again going one step too far in the checki
bxx 2011/08/24 00:19:24 Done.
+ FL_SetPrevious(*head, NULL);
jar (doing other things) 2011/08/20 02:40:30 This is seemingly a bug. We don't need to conditi
bxx 2011/08/24 00:19:24 Done.
+ }
+}
+
+// Pushes the nodes of the doubly linked list that begins at the
+// node located at start and ends at the node end
+// into the linked list at location *head
+// *head is updated to point be the new head of the list.
+// *head must not be NULL.
+void FL_PushRange(void **head, void *start, void *end) {
+ if (!start) return;
jar (doing other things) 2011/08/20 02:40:30 I'd suggest either asserting that end is NULL, or
bxx 2011/08/24 00:19:24 We cannot make the assumption that if start is NUL
+
+ // Sanity check ends of list to push before pushing
+ if (FL_Next(start))
+ MEMORY_CHECK(FL_Previous(FL_Next(start)), start);
jar (doing other things) 2011/08/20 02:40:30 I have mixed feelings about whether that test is c
bxx 2011/08/24 00:19:24 Used ASSERT. On 2011/08/20 02:40:30, jar wrote:
+ if (FL_Previous(end))
+ MEMORY_CHECK(FL_Next(FL_Previous(end)), end);
jar (doing other things) 2011/08/20 02:40:30 I'd also vote for a check here: ASSERT(FL_Next_No_
bxx 2011/08/24 00:19:24 Done.
+
+ if (*head != NULL) {
+ if (FL_Next(*head))
+ MEMORY_CHECK(FL_Previous(FL_Next(*head)), *head);
+
+ FL_SetNext(end, *head);
+ FL_SetPrevious(*head, end);
jar (doing other things) 2011/08/20 02:40:30 Again I'd like to first see a: MEMORY_CHECK(FL_Pre
bxx 2011/08/24 00:19:24 Used ASSERT On 2011/08/20 02:40:30, jar wrote:
+ }
+ *head = start;
+}
+
+} // namespace tcmalloc
+
+#endif // TCMALLOC_USE_DOUBLYLINKED_FREELIST

Powered by Google App Engine
This is Rietveld 408576698