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

Unified Diff: third_party/WebKit/Source/wtf/PartitionAlloc.h

Issue 1622553004: PartitionAlloc: Increase the number of pages per bucket (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/WebKit/Source/wtf/PartitionAlloc.h
diff --git a/third_party/WebKit/Source/wtf/PartitionAlloc.h b/third_party/WebKit/Source/wtf/PartitionAlloc.h
index be186ee833c90808ea794ea3d1db8547d0498c81..7462c1410198e88776ac1e668c9573a0a3d2db8e 100644
--- a/third_party/WebKit/Source/wtf/PartitionAlloc.h
+++ b/third_party/WebKit/Source/wtf/PartitionAlloc.h
@@ -259,8 +259,8 @@ struct PartitionBucket {
PartitionPage* emptyPagesHead;
PartitionPage* decommittedPagesHead;
uint32_t slotSize;
- uint16_t numSystemPagesPerSlotSpan;
- uint16_t numFullPages;
+ unsigned numSystemPagesPerSlotSpan : 8;
bashi 2016/01/26 23:52:37 uint32_t ?
haraken 2016/01/27 01:19:32 The style checker asks us to use unsigned for a bi
+ unsigned numFullPages : 24;
bashi 2016/01/26 23:52:37 ditto.
};
// An "extent" is a span of consecutive superpages. We link to the partition's
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/PartitionAlloc.cpp » ('j') | third_party/WebKit/Source/wtf/PartitionAlloc.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698