<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[197068] releases/WebKitGTK/webkit-2.12/Source/bmalloc</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/197068">197068</a></dd>
<dt>Author</dt> <dd>carlosgc@webkit.org</dd>
<dt>Date</dt> <dd>2016-02-25 01:15:29 -0800 (Thu, 25 Feb 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge <a href="http://trac.webkit.org/projects/webkit/changeset/196847">r196847</a> - bmalloc: Chunk, Page, and Line don't need to be class templates
https://bugs.webkit.org/show_bug.cgi?id=154480

Reviewed by Gavin Barraclough.

We needed class templates to distinguish between small and medium,
but medium is gone now.

* bmalloc.xcodeproj/project.pbxproj:
* bmalloc/Chunk.h: Removed.
* bmalloc/Heap.cpp:
(bmalloc::Heap::initializeLineMetadata):
(bmalloc::Heap::allocateSmallBumpRanges):
* bmalloc/Heap.h:
* bmalloc/Line.h: Removed.
* bmalloc/Page.h: Removed.
* bmalloc/Sizes.h:
* bmalloc/SmallChunk.h: Replaced with Source/bmalloc/bmalloc/Chunk.h.
(bmalloc::SmallChunk::begin):
(bmalloc::SmallChunk::end):
(bmalloc::SmallChunk::lines):
(bmalloc::SmallChunk::pages):
(bmalloc::SmallChunk::get):
(bmalloc::SmallLine::get):
(bmalloc::SmallLine::begin):
(bmalloc::SmallLine::end):
(bmalloc::SmallPage::get):
(bmalloc::SmallPage::begin):
(bmalloc::SmallPage::end):
(bmalloc::Chunk::begin): Deleted.
(bmalloc::Chunk::end): Deleted.
(bmalloc::Chunk::lines): Deleted.
(bmalloc::Chunk::pages): Deleted.
* bmalloc/SmallLine.h: Replaced with Source/bmalloc/bmalloc/Line.h.
(bmalloc::SmallLine::ref):
(bmalloc::SmallLine::deref):
(bmalloc::Line&lt;Traits&gt;::begin): Deleted.
(bmalloc::Line&lt;Traits&gt;::end): Deleted.
(bmalloc::Line&lt;Traits&gt;::ref): Deleted.
(bmalloc::Line&lt;Traits&gt;::deref): Deleted.
* bmalloc/SmallPage.h: Replaced with Source/bmalloc/bmalloc/Page.h.
(bmalloc::SmallPage::hasFreeLines):
(bmalloc::SmallPage::setHasFreeLines):
(bmalloc::SmallPage::ref):
(bmalloc::SmallPage::deref):
(bmalloc::Page::hasFreeLines): Deleted.
(bmalloc::Page::setHasFreeLines): Deleted.
(bmalloc::Page&lt;Traits&gt;::ref): Deleted.
(bmalloc::Page&lt;Traits&gt;::deref): Deleted.
* bmalloc/SmallTraits.h: Removed.

Unreviewed. Fix debug build error since <a href="http://trac.webkit.org/projects/webkit/changeset/196847">r196847</a>

Fix gcc build warning appeared as below
by removing BASSERT(refCount &lt;= maxRefCount).
error: comparison is always true due to limited range of data type
[-Werror=type-limits]

* bmalloc/SmallLine.h:
(bmalloc::SmallLine::ref): Deleted.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocChangeLog">releases/WebKitGTK/webkit-2.12/Source/bmalloc/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocHeapcpp">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.cpp</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocHeaph">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocSizesh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Sizes.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocSmallChunkh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallChunk.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocSmallLineh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallLine.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocSmallPageh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallPage.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212Sourcebmallocbmallocxcodeprojprojectpbxproj">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocChunkh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Chunk.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocLineh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Line.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocPageh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Page.h</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourcebmallocbmallocSmallTraitsh">releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallTraits.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="releasesWebKitGTKwebkit212SourcebmallocChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/ChangeLog (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/ChangeLog        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/ChangeLog        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,3 +1,68 @@
</span><ins>+2016-02-19  Joonghun Park  &lt;jh718.park@samsung.com&gt;
+
+        Unreviewed. Fix debug build error since r196847
+
+        Fix gcc build warning appeared as below
+        by removing BASSERT(refCount &lt;= maxRefCount).
+        error: comparison is always true due to limited range of data type
+        [-Werror=type-limits]
+
+        * bmalloc/SmallLine.h:
+        (bmalloc::SmallLine::ref): Deleted.
+
+2016-02-19  Geoffrey Garen  &lt;ggaren@apple.com&gt;
+
+        bmalloc: Chunk, Page, and Line don't need to be class templates
+        https://bugs.webkit.org/show_bug.cgi?id=154480
+
+        Reviewed by Gavin Barraclough.
+
+        We needed class templates to distinguish between small and medium,
+        but medium is gone now.
+
+        * bmalloc.xcodeproj/project.pbxproj:
+        * bmalloc/Chunk.h: Removed.
+        * bmalloc/Heap.cpp:
+        (bmalloc::Heap::initializeLineMetadata):
+        (bmalloc::Heap::allocateSmallBumpRanges):
+        * bmalloc/Heap.h:
+        * bmalloc/Line.h: Removed.
+        * bmalloc/Page.h: Removed.
+        * bmalloc/Sizes.h:
+        * bmalloc/SmallChunk.h: Replaced with Source/bmalloc/bmalloc/Chunk.h.
+        (bmalloc::SmallChunk::begin):
+        (bmalloc::SmallChunk::end):
+        (bmalloc::SmallChunk::lines):
+        (bmalloc::SmallChunk::pages):
+        (bmalloc::SmallChunk::get):
+        (bmalloc::SmallLine::get):
+        (bmalloc::SmallLine::begin):
+        (bmalloc::SmallLine::end):
+        (bmalloc::SmallPage::get):
+        (bmalloc::SmallPage::begin):
+        (bmalloc::SmallPage::end):
+        (bmalloc::Chunk::begin): Deleted.
+        (bmalloc::Chunk::end): Deleted.
+        (bmalloc::Chunk::lines): Deleted.
+        (bmalloc::Chunk::pages): Deleted.
+        * bmalloc/SmallLine.h: Replaced with Source/bmalloc/bmalloc/Line.h.
+        (bmalloc::SmallLine::ref):
+        (bmalloc::SmallLine::deref):
+        (bmalloc::Line&lt;Traits&gt;::begin): Deleted.
+        (bmalloc::Line&lt;Traits&gt;::end): Deleted.
+        (bmalloc::Line&lt;Traits&gt;::ref): Deleted.
+        (bmalloc::Line&lt;Traits&gt;::deref): Deleted.
+        * bmalloc/SmallPage.h: Replaced with Source/bmalloc/bmalloc/Page.h.
+        (bmalloc::SmallPage::hasFreeLines):
+        (bmalloc::SmallPage::setHasFreeLines):
+        (bmalloc::SmallPage::ref):
+        (bmalloc::SmallPage::deref):
+        (bmalloc::Page::hasFreeLines): Deleted.
+        (bmalloc::Page::setHasFreeLines): Deleted.
+        (bmalloc::Page&lt;Traits&gt;::ref): Deleted.
+        (bmalloc::Page&lt;Traits&gt;::deref): Deleted.
+        * bmalloc/SmallTraits.h: Removed.
+
</ins><span class="cx"> 2016-02-18  Geoffrey Garen  &lt;ggaren@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         bmalloc: Remove the concept of medium objects
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocChunkh"></a>
<div class="delfile"><h4>Deleted: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Chunk.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Chunk.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Chunk.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,86 +0,0 @@
</span><del>-/*
- * Copyright (C) 2014 Apple 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:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. 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.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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. 
- */
-
-#ifndef Chunk_h
-#define Chunk_h
-
-#include &quot;ObjectType.h&quot;
-#include &quot;Sizes.h&quot;
-#include &quot;VMAllocate.h&quot;
-
-namespace bmalloc {
-
-template&lt;class Traits&gt;
-class Chunk {
-public:
-    typedef typename Traits::PageType Page;
-    typedef typename Traits::LineType Line;
-
-    static const size_t lineSize = Traits::lineSize;
-    static const size_t chunkSize = Traits::chunkSize;
-    static const size_t chunkOffset = Traits::chunkOffset;
-    static const uintptr_t chunkMask = Traits::chunkMask;
-
-    static Chunk* get(void*);
-
-    Page* begin() { return Page::get(Line::get(m_memory)); }
-    Page* end() { return &amp;m_pages[pageCount]; }
-    
-    Line* lines() { return m_lines; }
-    Page* pages() { return m_pages; }
-
-private:
-    static_assert(!(vmPageSize % lineSize), &quot;vmPageSize must be an even multiple of line size&quot;);
-    static_assert(!(chunkSize % lineSize), &quot;chunk size must be an even multiple of line size&quot;);
-
-    static const size_t lineCount = chunkSize / lineSize;
-    static const size_t pageCount = chunkSize / vmPageSize;
-
-    Line m_lines[lineCount];
-    Page m_pages[pageCount];
-
-    // Align to vmPageSize to avoid sharing physical pages with metadata.
-    // Otherwise, we'll confuse the scavenger into trying to scavenge metadata.
-    // FIXME: Below #ifdef workaround fix should be removed after all linux based ports bump
-    // own gcc version. See https://bugs.webkit.org/show_bug.cgi?id=140162#c87
-#if BPLATFORM(IOS)
-    char m_memory[] __attribute__((aligned(16384)));
-    static_assert(vmPageSize == 16384, &quot;vmPageSize and alignment must be same&quot;);
-#else
-    char m_memory[] __attribute__((aligned(4096)));
-    static_assert(vmPageSize == 4096, &quot;vmPageSize and alignment must be same&quot;);
-#endif
-};
-
-template&lt;class Traits&gt;
-inline auto Chunk&lt;Traits&gt;::get(void* object) -&gt; Chunk*
-{
-    BASSERT(isSmall(object));
-    return static_cast&lt;Chunk*&gt;(mask(object, chunkMask));
-}
-
-}; // namespace bmalloc
-
-#endif // Chunk
</del></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocHeapcpp"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.cpp (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.cpp        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.cpp        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -27,10 +27,10 @@
</span><span class="cx"> #include &quot;BumpAllocator.h&quot;
</span><span class="cx"> #include &quot;LargeChunk.h&quot;
</span><span class="cx"> #include &quot;LargeObject.h&quot;
</span><del>-#include &quot;Line.h&quot;
-#include &quot;Page.h&quot;
</del><span class="cx"> #include &quot;PerProcess.h&quot;
</span><span class="cx"> #include &quot;SmallChunk.h&quot;
</span><ins>+#include &quot;SmallLine.h&quot;
+#include &quot;SmallPage.h&quot;
</ins><span class="cx"> #include &lt;thread&gt;
</span><span class="cx"> 
</span><span class="cx"> namespace bmalloc {
</span><span class="lines">@@ -54,12 +54,12 @@
</span><span class="cx">         size_t object = 0;
</span><span class="cx">         size_t line = 0;
</span><span class="cx">         while (object &lt; vmPageSize) {
</span><del>-            line = object / SmallPage::lineSize;
-            size_t leftover = object % SmallPage::lineSize;
</del><ins>+            line = object / smallLineSize;
+            size_t leftover = object % smallLineSize;
</ins><span class="cx"> 
</span><span class="cx">             size_t objectCount;
</span><span class="cx">             size_t remainder;
</span><del>-            divideRoundingUp(SmallPage::lineSize - leftover, size, objectCount, remainder);
</del><ins>+            divideRoundingUp(smallLineSize - leftover, size, objectCount, remainder);
</ins><span class="cx"> 
</span><span class="cx">             metadata[line] = { static_cast&lt;unsigned short&gt;(leftover), static_cast&lt;unsigned short&gt;(objectCount) };
</span><span class="cx"> 
</span><span class="lines">@@ -114,7 +114,7 @@
</span><span class="cx">     BASSERT(page-&gt;hasFreeLines(lock));
</span><span class="cx"> 
</span><span class="cx">     // Find a free line.
</span><del>-    for (size_t lineNumber = 0; lineNumber &lt; SmallPage::lineCount; ++lineNumber) {
</del><ins>+    for (size_t lineNumber = 0; lineNumber &lt; smallLineCount; ++lineNumber) {
</ins><span class="cx">         if (lines[lineNumber].refCount(lock))
</span><span class="cx">             continue;
</span><span class="cx"> 
</span><span class="lines">@@ -134,7 +134,7 @@
</span><span class="cx">         page-&gt;ref(lock);
</span><span class="cx"> 
</span><span class="cx">         // Merge with subsequent free lines.
</span><del>-        while (++lineNumber &lt; SmallPage::lineCount) {
</del><ins>+        while (++lineNumber &lt; smallLineCount) {
</ins><span class="cx">             if (lines[lineNumber].refCount(lock))
</span><span class="cx">                 break;
</span><span class="cx"> 
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocHeaph"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Heap.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -86,7 +86,7 @@
</span><span class="cx">     void scavengeSmallPages(std::unique_lock&lt;StaticMutex&gt;&amp;, std::chrono::milliseconds);
</span><span class="cx">     void scavengeLargeObjects(std::unique_lock&lt;StaticMutex&gt;&amp;, std::chrono::milliseconds);
</span><span class="cx"> 
</span><del>-    std::array&lt;std::array&lt;LineMetadata, SmallPage::lineCount&gt;, smallMax / alignment&gt; m_smallLineMetadata;
</del><ins>+    std::array&lt;std::array&lt;LineMetadata, smallLineCount&gt;, smallMax / alignment&gt; m_smallLineMetadata;
</ins><span class="cx"> 
</span><span class="cx">     std::array&lt;Vector&lt;SmallPage*&gt;, smallMax / alignment&gt; m_smallPagesWithFreeLines;
</span><span class="cx"> 
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocLineh"></a>
<div class="delfile"><h4>Deleted: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Line.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Line.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Line.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,102 +0,0 @@
</span><del>-/*
- * Copyright (C) 2014 Apple 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:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. 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.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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. 
- */
-
-#ifndef Line_h
-#define Line_h
-
-#include &quot;BAssert.h&quot;
-#include &quot;Mutex.h&quot;
-#include &quot;ObjectType.h&quot;
-#include &lt;mutex&gt;
-
-namespace bmalloc {
-
-template&lt;class Traits&gt;
-class Line {
-public:
-    typedef typename Traits::ChunkType Chunk;
-
-    static const size_t minimumObjectSize = Traits::minimumObjectSize;
-    static const size_t lineSize = Traits::lineSize;
-    
-    static const unsigned char maxRefCount = std::numeric_limits&lt;unsigned char&gt;::max();
-    static_assert(lineSize / minimumObjectSize &lt; maxRefCount, &quot;maximum object count must fit in Line&quot;);
-
-    static Line* get(void*);
-
-    void ref(std::lock_guard&lt;StaticMutex&gt;&amp;, unsigned char);
-    bool deref(std::lock_guard&lt;StaticMutex&gt;&amp;);
-    unsigned refCount(std::lock_guard&lt;StaticMutex&gt;&amp;) { return m_refCount; }
-    
-    char* begin();
-    char* end();
-
-private:
-    unsigned char m_refCount;
-};
-
-template&lt;class Traits&gt;
-inline auto Line&lt;Traits&gt;::get(void* object) -&gt; Line*
-{
-    BASSERT(isSmall(object));
-    Chunk* chunk = Chunk::get(object);
-    size_t lineNumber = (reinterpret_cast&lt;char*&gt;(object) - reinterpret_cast&lt;char*&gt;(chunk)) / lineSize;
-    return &amp;chunk-&gt;lines()[lineNumber];
-}
-
-template&lt;class Traits&gt;
-inline char* Line&lt;Traits&gt;::begin()
-{
-    Chunk* chunk = Chunk::get(this);
-    size_t lineNumber = this - chunk-&gt;lines();
-    size_t offset = lineNumber * lineSize;
-    return &amp;reinterpret_cast&lt;char*&gt;(chunk)[offset];
-}
-
-template&lt;class Traits&gt;
-inline char* Line&lt;Traits&gt;::end()
-{
-    return begin() + lineSize;
-}
-
-template&lt;class Traits&gt;
-inline void Line&lt;Traits&gt;::ref(std::lock_guard&lt;StaticMutex&gt;&amp;, unsigned char refCount)
-{
-    BASSERT(!m_refCount);
-    BASSERT(refCount &lt;= maxRefCount);
-    m_refCount = refCount;
-}
-
-template&lt;class Traits&gt;
-inline bool Line&lt;Traits&gt;::deref(std::lock_guard&lt;StaticMutex&gt;&amp;)
-{
-    BASSERT(m_refCount);
-    --m_refCount;
-    return !m_refCount;
-}
-
-} // namespace bmalloc
-
-#endif // Line_h
</del></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocPageh"></a>
<div class="delfile"><h4>Deleted: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Page.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Page.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Page.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,110 +0,0 @@
</span><del>-/*
- * Copyright (C) 2014 Apple 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:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. 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.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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. 
- */
-
-#ifndef Page_h
-#define Page_h
-
-#include &quot;BAssert.h&quot;
-#include &quot;Mutex.h&quot;
-#include &quot;VMAllocate.h&quot;
-#include &lt;mutex&gt;
-
-namespace bmalloc {
-
-template&lt;typename Traits&gt;
-class Page {
-public:
-    typedef typename Traits::ChunkType Chunk;
-    typedef typename Traits::LineType Line;
-
-    static const size_t lineSize = Traits::lineSize;
-    static const size_t lineCount = vmPageSize / lineSize;
-
-    static const unsigned char maxRefCount = std::numeric_limits&lt;unsigned char&gt;::max();
-    static_assert(lineCount &lt; maxRefCount, &quot;maximum line count must fit in Page&quot;);
-    
-    static Page* get(Line*);
-
-    void ref(std::lock_guard&lt;StaticMutex&gt;&amp;);
-    bool deref(std::lock_guard&lt;StaticMutex&gt;&amp;);
-    unsigned refCount(std::lock_guard&lt;StaticMutex&gt;&amp;) { return m_refCount; }
-    
-    size_t sizeClass() { return m_sizeClass; }
-    void setSizeClass(size_t sizeClass) { m_sizeClass = sizeClass; }
-    
-    bool hasFreeLines(std::lock_guard&lt;StaticMutex&gt;&amp;) const { return m_hasFreeLines; }
-    void setHasFreeLines(std::lock_guard&lt;StaticMutex&gt;&amp;, bool hasFreeLines) { m_hasFreeLines = hasFreeLines; }
-    
-    Line* begin();
-    Line* end();
-
-private:
-    unsigned char m_hasFreeLines: 1;
-    unsigned char m_refCount: 7;
-    unsigned char m_sizeClass;
-};
-
-template&lt;typename Traits&gt;
-inline void Page&lt;Traits&gt;::ref(std::lock_guard&lt;StaticMutex&gt;&amp;)
-{
-    BASSERT(m_refCount &lt; maxRefCount);
-    ++m_refCount;
-}
-
-template&lt;typename Traits&gt;
-inline bool Page&lt;Traits&gt;::deref(std::lock_guard&lt;StaticMutex&gt;&amp;)
-{
-    BASSERT(m_refCount);
-    --m_refCount;
-    return !m_refCount;
-}
-
-template&lt;typename Traits&gt;
-inline auto Page&lt;Traits&gt;::get(Line* line) -&gt; Page*
-{
-    Chunk* chunk = Chunk::get(line);
-    size_t lineNumber = line - chunk-&gt;lines();
-    size_t pageNumber = lineNumber * lineSize / vmPageSize;
-    return &amp;chunk-&gt;pages()[pageNumber];
-}
-
-template&lt;typename Traits&gt;
-inline auto Page&lt;Traits&gt;::begin() -&gt; Line*
-{
-    Chunk* chunk = Chunk::get(this);
-    size_t pageNumber = this - chunk-&gt;pages();
-    size_t lineNumber = pageNumber * lineCount;
-    return &amp;chunk-&gt;lines()[lineNumber];
-}
-
-template&lt;typename Traits&gt;
-inline auto Page&lt;Traits&gt;::end() -&gt; Line*
-{
-    return begin() + lineCount;
-}
-
-} // namespace bmalloc
-
-#endif // Page_h
</del></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocSizesh"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Sizes.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Sizes.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/Sizes.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -58,6 +58,7 @@
</span><span class="cx"> 
</span><span class="cx">     static const size_t smallMax = 1024;
</span><span class="cx">     static const size_t smallLineSize = 256;
</span><ins>+    static const size_t smallLineCount = vmPageSize / smallLineSize;
</ins><span class="cx">     static const size_t smallLineMask = ~(smallLineSize - 1ul);
</span><span class="cx"> 
</span><span class="cx">     static const size_t smallChunkSize = superChunkSize / 2;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocSmallChunkh"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallChunk.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallChunk.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallChunk.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2014 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2014-2016 Apple Inc. All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -26,15 +26,94 @@
</span><span class="cx"> #ifndef SmallChunk_h
</span><span class="cx"> #define SmallChunk_h
</span><span class="cx"> 
</span><del>-#include &quot;Chunk.h&quot;
</del><ins>+#include &quot;Sizes.h&quot;
</ins><span class="cx"> #include &quot;SmallLine.h&quot;
</span><span class="cx"> #include &quot;SmallPage.h&quot;
</span><del>-#include &quot;SmallTraits.h&quot;
</del><ins>+#include &quot;VMAllocate.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace bmalloc {
</span><span class="cx"> 
</span><del>-typedef Chunk&lt;SmallTraits&gt; SmallChunk;
</del><ins>+class SmallChunk {
+public:
+    static SmallChunk* get(void*);
</ins><span class="cx"> 
</span><ins>+    SmallPage* begin() { return SmallPage::get(SmallLine::get(m_memory)); }
+    SmallPage* end() { return &amp;m_pages[pageCount]; }
+    
+    SmallLine* lines() { return m_lines; }
+    SmallPage* pages() { return m_pages; }
+
+private:
+    static_assert(!(vmPageSize % smallLineSize), &quot;vmPageSize must be an even multiple of line size&quot;);
+    static_assert(!(smallChunkSize % smallLineSize), &quot;chunk size must be an even multiple of line size&quot;);
+
+    static const size_t lineCount = smallChunkSize / smallLineSize;
+    static const size_t pageCount = smallChunkSize / vmPageSize;
+
+    SmallLine m_lines[lineCount];
+    SmallPage m_pages[pageCount];
+
+    // Align to vmPageSize to avoid sharing physical pages with metadata.
+    // Otherwise, we'll confuse the scavenger into trying to scavenge metadata.
+    // FIXME: Below #ifdef workaround fix should be removed after all linux based ports bump
+    // own gcc version. See https://bugs.webkit.org/show_bug.cgi?id=140162#c87
+#if BPLATFORM(IOS)
+    char m_memory[] __attribute__((aligned(16384)));
+    static_assert(vmPageSize == 16384, &quot;vmPageSize and alignment must be same&quot;);
+#else
+    char m_memory[] __attribute__((aligned(4096)));
+    static_assert(vmPageSize == 4096, &quot;vmPageSize and alignment must be same&quot;);
+#endif
+};
+
+inline SmallChunk* SmallChunk::get(void* object)
+{
+    BASSERT(isSmall(object));
+    return static_cast&lt;SmallChunk*&gt;(mask(object, smallChunkMask));
+}
+
+inline SmallLine* SmallLine::get(void* object)
+{
+    BASSERT(isSmall(object));
+    SmallChunk* chunk = SmallChunk::get(object);
+    size_t lineNumber = (reinterpret_cast&lt;char*&gt;(object) - reinterpret_cast&lt;char*&gt;(chunk)) / smallLineSize;
+    return &amp;chunk-&gt;lines()[lineNumber];
+}
+
+inline char* SmallLine::begin()
+{
+    SmallChunk* chunk = SmallChunk::get(this);
+    size_t lineNumber = this - chunk-&gt;lines();
+    size_t offset = lineNumber * smallLineSize;
+    return &amp;reinterpret_cast&lt;char*&gt;(chunk)[offset];
+}
+
+inline char* SmallLine::end()
+{
+    return begin() + smallLineSize;
+}
+
+inline SmallPage* SmallPage::get(SmallLine* line)
+{
+    SmallChunk* chunk = SmallChunk::get(line);
+    size_t lineNumber = line - chunk-&gt;lines();
+    size_t pageNumber = lineNumber * smallLineSize / vmPageSize;
+    return &amp;chunk-&gt;pages()[pageNumber];
+}
+
+inline SmallLine* SmallPage::begin()
+{
+    SmallChunk* chunk = SmallChunk::get(this);
+    size_t pageNumber = this - chunk-&gt;pages();
+    size_t lineNumber = pageNumber * smallLineCount;
+    return &amp;chunk-&gt;lines()[lineNumber];
+}
+
+inline SmallLine* SmallPage::end()
+{
+    return begin() + smallLineCount;
+}
+
</ins><span class="cx"> }; // namespace bmalloc
</span><span class="cx"> 
</span><del>-#endif // SmallChunk
</del><ins>+#endif // Chunk
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocSmallLineh"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallLine.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallLine.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallLine.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2014 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2014-2016 Apple Inc. All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -26,13 +26,44 @@
</span><span class="cx"> #ifndef SmallLine_h
</span><span class="cx"> #define SmallLine_h
</span><span class="cx"> 
</span><del>-#include &quot;Line.h&quot;
-#include &quot;SmallTraits.h&quot;
</del><ins>+#include &quot;BAssert.h&quot;
+#include &quot;Mutex.h&quot;
+#include &quot;ObjectType.h&quot;
+#include &lt;mutex&gt;
</ins><span class="cx"> 
</span><span class="cx"> namespace bmalloc {
</span><span class="cx"> 
</span><del>-typedef Line&lt;SmallTraits&gt; SmallLine;
</del><ins>+class SmallLine {
+public:
+    static const unsigned char maxRefCount = std::numeric_limits&lt;unsigned char&gt;::max();
+    static_assert(smallLineSize / alignment &lt; maxRefCount, &quot;maximum object count must fit in Line&quot;);
</ins><span class="cx"> 
</span><ins>+    static SmallLine* get(void*);
+
+    void ref(std::lock_guard&lt;StaticMutex&gt;&amp;, unsigned char);
+    bool deref(std::lock_guard&lt;StaticMutex&gt;&amp;);
+    unsigned refCount(std::lock_guard&lt;StaticMutex&gt;&amp;) { return m_refCount; }
+    
+    char* begin();
+    char* end();
+
+private:
+    unsigned char m_refCount;
+};
+
+inline void SmallLine::ref(std::lock_guard&lt;StaticMutex&gt;&amp;, unsigned char refCount)
+{
+    BASSERT(!m_refCount);
+    m_refCount = refCount;
+}
+
+inline bool SmallLine::deref(std::lock_guard&lt;StaticMutex&gt;&amp;)
+{
+    BASSERT(m_refCount);
+    --m_refCount;
+    return !m_refCount;
+}
+
</ins><span class="cx"> } // namespace bmalloc
</span><span class="cx"> 
</span><span class="cx"> #endif // SmallLine_h
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocSmallPageh"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallPage.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallPage.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallPage.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2014 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2014-2016 Apple Inc. All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -26,13 +26,52 @@
</span><span class="cx"> #ifndef SmallPage_h
</span><span class="cx"> #define SmallPage_h
</span><span class="cx"> 
</span><del>-#include &quot;SmallTraits.h&quot;
-#include &quot;Page.h&quot;
</del><ins>+#include &quot;BAssert.h&quot;
+#include &quot;Mutex.h&quot;
+#include &quot;VMAllocate.h&quot;
+#include &lt;mutex&gt;
</ins><span class="cx"> 
</span><span class="cx"> namespace bmalloc {
</span><span class="cx"> 
</span><del>-typedef Page&lt;SmallTraits&gt; SmallPage;
</del><ins>+class SmallPage {
+public:
+    static const unsigned char maxRefCount = std::numeric_limits&lt;unsigned char&gt;::max();
+    static_assert(smallLineCount &lt; maxRefCount, &quot;maximum line count must fit in SmallPage&quot;);
+    
+    static SmallPage* get(SmallLine*);
</ins><span class="cx"> 
</span><ins>+    void ref(std::lock_guard&lt;StaticMutex&gt;&amp;);
+    bool deref(std::lock_guard&lt;StaticMutex&gt;&amp;);
+    unsigned refCount(std::lock_guard&lt;StaticMutex&gt;&amp;) { return m_refCount; }
+    
+    size_t sizeClass() { return m_sizeClass; }
+    void setSizeClass(size_t sizeClass) { m_sizeClass = sizeClass; }
+    
+    bool hasFreeLines(std::lock_guard&lt;StaticMutex&gt;&amp;) const { return m_hasFreeLines; }
+    void setHasFreeLines(std::lock_guard&lt;StaticMutex&gt;&amp;, bool hasFreeLines) { m_hasFreeLines = hasFreeLines; }
+    
+    SmallLine* begin();
+    SmallLine* end();
+
+private:
+    unsigned char m_hasFreeLines: 1;
+    unsigned char m_refCount: 7;
+    unsigned char m_sizeClass;
+};
+
+inline void SmallPage::ref(std::lock_guard&lt;StaticMutex&gt;&amp;)
+{
+    BASSERT(m_refCount &lt; maxRefCount);
+    ++m_refCount;
+}
+
+inline bool SmallPage::deref(std::lock_guard&lt;StaticMutex&gt;&amp;)
+{
+    BASSERT(m_refCount);
+    --m_refCount;
+    return !m_refCount;
+}
+
</ins><span class="cx"> } // namespace bmalloc
</span><span class="cx"> 
</span><span class="cx"> #endif // SmallPage_h
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourcebmallocbmallocSmallTraitsh"></a>
<div class="delfile"><h4>Deleted: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallTraits.h (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallTraits.h        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc/SmallTraits.h        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -1,51 +0,0 @@
</span><del>-/*
- * Copyright (C) 2014 Apple 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:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. 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.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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. 
- */
-
-#ifndef SmallTraits_h
-#define SmallTraits_h
-
-#include &quot;Sizes.h&quot;
-
-namespace bmalloc {
-
-template&lt;class Traits&gt; class Chunk;
-template&lt;class Traits&gt; class Line;
-template&lt;class Traits&gt; class Page;
-
-struct SmallTraits {
-    typedef Chunk&lt;SmallTraits&gt; ChunkType;
-    typedef Line&lt;SmallTraits&gt; LineType;
-    typedef Page&lt;SmallTraits&gt; PageType;
-
-    static const size_t lineSize = smallLineSize;
-    static const size_t minimumObjectSize = alignment;
-    static const size_t chunkSize = smallChunkSize;
-    static const size_t chunkOffset = smallChunkOffset;
-    static const uintptr_t chunkMask = smallChunkMask;
-};
-
-} // namespace bmalloc
-
-#endif // SmallTraits_h
</del></span></pre></div>
<a id="releasesWebKitGTKwebkit212Sourcebmallocbmallocxcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc.xcodeproj/project.pbxproj (197067 => 197068)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc.xcodeproj/project.pbxproj        2016-02-25 09:15:08 UTC (rev 197067)
+++ releases/WebKitGTK/webkit-2.12/Source/bmalloc/bmalloc.xcodeproj/project.pbxproj        2016-02-25 09:15:29 UTC (rev 197068)
</span><span class="lines">@@ -37,13 +37,9 @@
</span><span class="cx">                 14DD789918F48D4A00950702 /* Cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 144469E517A46BFE00F9EA1D /* Cache.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD789A18F48D4A00950702 /* Deallocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 145F685A179DC90200D65598 /* Deallocator.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD789C18F48D4A00950702 /* BumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1413E462189DE1CD00546D68 /* BumpAllocator.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><del>-                14DD78B418F48D6B00950702 /* Chunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 147AAA9418CE5CA6002201E4 /* Chunk.h */; settings = {ATTRIBUTES = (Private, ); }; };
-                14DD78B518F48D6B00950702 /* Line.h in Headers */ = {isa = PBXBuildFile; fileRef = 14DA32071885F9E6007269E0 /* Line.h */; settings = {ATTRIBUTES = (Private, ); }; };
-                14DD78BA18F48D6B00950702 /* Page.h in Headers */ = {isa = PBXBuildFile; fileRef = 146BEE2318C980D60002D5A2 /* Page.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><span class="cx">                 14DD78BB18F48D6B00950702 /* SmallChunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 147AAA8C18CD36A7002201E4 /* SmallChunk.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD78BC18F48D6B00950702 /* SmallLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1452478618BC757C00F80098 /* SmallLine.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD78BD18F48D6B00950702 /* SmallPage.h in Headers */ = {isa = PBXBuildFile; fileRef = 143E29ED18CAE90500FE8A0F /* SmallPage.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><del>-                14DD78BE18F48D6B00950702 /* SmallTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 147AAA9718CE5FB6002201E4 /* SmallTraits.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><span class="cx">                 14DD78C518F48D7500950702 /* Algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 1421A87718EE462A00B4DD68 /* Algorithm.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD78C618F48D7500950702 /* AsyncTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 1417F65218BA88A00076FA3F /* AsyncTask.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 14DD78C718F48D7500950702 /* BAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1413E468189EEDE400546D68 /* BAssert.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="lines">@@ -113,13 +109,10 @@
</span><span class="cx">                 145F6878179E3A4400D65598 /* Range.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = Range.h; path = bmalloc/Range.h; sourceTree = &quot;&lt;group&gt;&quot;; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
</span><span class="cx">                 146BEE1E18C841C50002D5A2 /* SegregatedFreeList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SegregatedFreeList.h; path = bmalloc/SegregatedFreeList.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 146BEE2118C845AE0002D5A2 /* SegregatedFreeList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SegregatedFreeList.cpp; path = bmalloc/SegregatedFreeList.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                146BEE2318C980D60002D5A2 /* Page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Page.h; path = bmalloc/Page.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 1479E21217A1A255006D4E9D /* Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = Vector.h; path = bmalloc/Vector.h; sourceTree = &quot;&lt;group&gt;&quot;; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
</span><span class="cx">                 1479E21417A1A63E006D4E9D /* VMAllocate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = VMAllocate.h; path = bmalloc/VMAllocate.h; sourceTree = &quot;&lt;group&gt;&quot;; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
</span><span class="cx">                 147AAA8818CD17CE002201E4 /* LargeChunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LargeChunk.h; path = bmalloc/LargeChunk.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 147AAA8C18CD36A7002201E4 /* SmallChunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmallChunk.h; path = bmalloc/SmallChunk.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                147AAA9418CE5CA6002201E4 /* Chunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Chunk.h; path = bmalloc/Chunk.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-                147AAA9718CE5FB6002201E4 /* SmallTraits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SmallTraits.h; path = bmalloc/SmallTraits.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 1485655E18A43AF900ED6942 /* BoundaryTag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoundaryTag.h; path = bmalloc/BoundaryTag.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1485656018A43DBA00ED6942 /* ObjectType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ObjectType.h; path = bmalloc/ObjectType.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 14895D8F1A3A319C0006235D /* Environment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Environment.cpp; path = bmalloc/Environment.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -133,7 +126,6 @@
</span><span class="cx">                 14CC394418EA8743004AFE34 /* libmbmalloc.dylib */ = {isa = PBXFileReference; explicitFileType = &quot;compiled.mach-o.dylib&quot;; includeInIndex = 0; path = libmbmalloc.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="cx">                 14D2CD9A1AA12CFB00770440 /* VMState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VMState.h; path = bmalloc/VMState.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 14D9DB4517F2447100EAAB79 /* FixedVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = FixedVector.h; path = bmalloc/FixedVector.h; sourceTree = &quot;&lt;group&gt;&quot;; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
</span><del>-                14DA32071885F9E6007269E0 /* Line.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; name = Line.h; path = bmalloc/Line.h; sourceTree = &quot;&lt;group&gt;&quot;; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
</del><span class="cx">                 14DA320C18875B09007269E0 /* Heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Heap.h; path = bmalloc/Heap.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 14DA320E18875D9F007269E0 /* Heap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Heap.cpp; path = bmalloc/Heap.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 14F271BE18EA3963008C152F /* libbmalloc.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libbmalloc.a; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="lines">@@ -193,13 +185,9 @@
</span><span class="cx">                 147AAA9A18CE5FD3002201E4 /* heap: small | medium */ = {
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><del>-                                147AAA9418CE5CA6002201E4 /* Chunk.h */,
-                                14DA32071885F9E6007269E0 /* Line.h */,
-                                146BEE2318C980D60002D5A2 /* Page.h */,
</del><span class="cx">                                 147AAA8C18CD36A7002201E4 /* SmallChunk.h */,
</span><span class="cx">                                 1452478618BC757C00F80098 /* SmallLine.h */,
</span><span class="cx">                                 143E29ED18CAE90500FE8A0F /* SmallPage.h */,
</span><del>-                                147AAA9718CE5FB6002201E4 /* SmallTraits.h */,
</del><span class="cx">                         );
</span><span class="cx">                         name = &quot;heap: small | medium&quot;;
</span><span class="cx">                         sourceTree = &quot;&lt;group&gt;&quot;;
</span><span class="lines">@@ -303,7 +291,6 @@
</span><span class="cx">                         isa = PBXHeadersBuildPhase;
</span><span class="cx">                         buildActionMask = 2147483647;
</span><span class="cx">                         files = (
</span><del>-                                14DD78B518F48D6B00950702 /* Line.h in Headers */,
</del><span class="cx">                                 14DD78CF18F48D7500950702 /* Vector.h in Headers */,
</span><span class="cx">                                 14C919C918FCC59F0028DB43 /* BPlatform.h in Headers */,
</span><span class="cx">                                 14DD788C18F48CAE00950702 /* LargeChunk.h in Headers */,
</span><span class="lines">@@ -311,7 +298,6 @@
</span><span class="cx">                                 1440AFCB1A95261100837FAA /* Zone.h in Headers */,
</span><span class="cx">                                 140FA00519CE4B6800FFD3C8 /* LineMetadata.h in Headers */,
</span><span class="cx">                                 14DD78CC18F48D7500950702 /* PerThread.h in Headers */,
</span><del>-                                14DD78B418F48D6B00950702 /* Chunk.h in Headers */,
</del><span class="cx">                                 14DD78CA18F48D7500950702 /* Mutex.h in Headers */,
</span><span class="cx">                                 143CB81D19022BC900B16A45 /* StaticMutex.h in Headers */,
</span><span class="cx">                                 1448C30118F3754C00502839 /* bmalloc.h in Headers */,
</span><span class="lines">@@ -322,7 +308,6 @@
</span><span class="cx">                                 14DD78CD18F48D7500950702 /* Range.h in Headers */,
</span><span class="cx">                                 14DD789C18F48D4A00950702 /* BumpAllocator.h in Headers */,
</span><span class="cx">                                 14DD789918F48D4A00950702 /* Cache.h in Headers */,
</span><del>-                                14DD78BE18F48D6B00950702 /* SmallTraits.h in Headers */,
</del><span class="cx">                                 14DD789018F48CEB00950702 /* Sizes.h in Headers */,
</span><span class="cx">                                 14DD78C718F48D7500950702 /* BAssert.h in Headers */,
</span><span class="cx">                                 14DD78D018F48D7500950702 /* VMAllocate.h in Headers */,
</span><span class="lines">@@ -330,7 +315,6 @@
</span><span class="cx">                                 143EF9B01A9FABF6004F5C77 /* FreeList.h in Headers */,
</span><span class="cx">                                 14DD78CE18F48D7500950702 /* Syscall.h in Headers */,
</span><span class="cx">                                 14DD78C618F48D7500950702 /* AsyncTask.h in Headers */,
</span><del>-                                14DD78BA18F48D6B00950702 /* Page.h in Headers */,
</del><span class="cx">                                 14DD78BB18F48D6B00950702 /* SmallChunk.h in Headers */,
</span><span class="cx">                                 14DD78C918F48D7500950702 /* Inline.h in Headers */,
</span><span class="cx">                                 14895D921A3A319C0006235D /* Environment.h in Headers */,
</span></span></pre>
</div>
</div>

</body>
</html>