1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/*
* Copyright (C) 2014 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.
*/
#include "config.h"
#include "platform/PurgeableVector.h"
#include "public/platform/Platform.h"
#include "public/platform/WebDiscardableMemory.h"
#include "wtf/Assertions.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassOwnPtr.h"
#include <cstring>
namespace blink {
// WebDiscardableMemory allocations are expensive and page-grained. We only use
// them when there's a reasonable amount of memory to be saved by the OS
// discarding the memory.
static const size_t minimumDiscardableAllocationSize = 4 * 4096;
PurgeableVector::PurgeableVector(PurgeableOption purgeable)
: m_discardableCapacity(0)
, m_discardableSize(0)
, m_isPurgeable(purgeable == Purgeable)
, m_locksCount(1) // The buffer is locked at creation.
{
}
PurgeableVector::~PurgeableVector()
{
}
void PurgeableVector::reserveCapacity(size_t capacity)
{
ASSERT(isLocked());
if (m_isPurgeable) {
if (reservePurgeableCapacity(capacity, UseExactCapacity))
return;
// Fallback to non-purgeable buffer allocation in case discardable memory allocation failed.
}
if (!m_vector.capacity()) {
// Using reserveInitialCapacity() on the underlying vector ensures that the vector uses the
// exact specified capacity to avoid consuming too much memory for small resources.
m_vector.reserveInitialCapacity(capacity);
} else {
m_vector.reserveCapacity(capacity);
}
moveDataFromDiscardableToVector();
}
void PurgeableVector::moveDataFromDiscardableToVector()
{
if (m_discardable) {
m_vector.append(static_cast<const char*>(m_discardable->data()), m_discardableSize);
clearDiscardable();
}
}
void PurgeableVector::clearDiscardable()
{
m_discardable.clear();
m_discardableCapacity = 0;
m_discardableSize = 0;
}
void PurgeableVector::append(const char* data, size_t length)
{
ASSERT(isLocked());
if (!m_isPurgeable) {
m_vector.append(data, length);
return;
}
const size_t currentSize = m_discardable ? m_discardableSize : m_vector.size();
const size_t newBufferSize = currentSize + length;
if (!reservePurgeableCapacity(newBufferSize, UseExponentialGrowth)) {
moveDataFromDiscardableToVector();
m_vector.append(data, length);
return;
}
ASSERT(m_discardableSize + length <= m_discardableCapacity);
memcpy(static_cast<char*>(m_discardable->data()) + m_discardableSize, data, length);
m_discardableSize += length;
}
void PurgeableVector::grow(size_t newSize)
{
ASSERT(newSize >= size());
if (m_isPurgeable) {
if (reservePurgeableCapacity(newSize, UseExponentialGrowth)) {
m_discardableSize = newSize;
return;
}
moveDataFromDiscardableToVector();
}
m_vector.resize(newSize);
}
void PurgeableVector::clear()
{
clearDiscardable();
m_vector.clear();
}
char* PurgeableVector::data()
{
ASSERT(isLocked());
return m_discardable ? static_cast<char*>(m_discardable->data()) : m_vector.data();
}
size_t PurgeableVector::size() const
{
return m_discardable ? m_discardableSize : m_vector.size();
}
void PurgeableVector::adopt(Vector<char>& other)
{
if (size() > 0)
clear();
if (!m_isPurgeable) {
m_vector.swap(other);
return;
}
if (other.isEmpty())
return;
append(other.data(), other.size());
other.clear();
}
bool PurgeableVector::lock()
{
++m_locksCount;
if (m_locksCount > 1)
return true;
ASSERT(m_locksCount == 1);
if (!m_discardable)
return true;
return m_discardable->lock();
}
void PurgeableVector::unlock()
{
ASSERT(isLocked());
--m_locksCount;
if (m_locksCount > 0)
return;
if (!m_vector.isEmpty()) {
ASSERT(!m_discardable);
m_isPurgeable = true;
if (!reservePurgeableCapacity(m_vector.size(), UseExactCapacity))
return;
}
if (m_discardable)
m_discardable->unlock();
}
bool PurgeableVector::isLocked() const
{
ASSERT(m_locksCount >= 0);
return m_locksCount > 0;
}
bool PurgeableVector::reservePurgeableCapacity(size_t capacity, PurgeableAllocationStrategy allocationStrategy)
{
ASSERT(m_isPurgeable);
if (m_discardable && m_discardableCapacity >= capacity) {
ASSERT(!m_vector.capacity());
return true;
}
if (capacity < minimumDiscardableAllocationSize)
return false;
if (allocationStrategy == UseExponentialGrowth)
capacity = adjustPurgeableCapacity(capacity);
OwnPtr<WebDiscardableMemory> discardable = adoptPtr(
Platform::current()->allocateAndLockDiscardableMemory(capacity));
if (!discardable) {
// Discardable memory is not supported.
m_isPurgeable = false;
return false;
}
m_discardableCapacity = capacity;
// Copy the data that was either in the previous purgeable buffer or in the vector to the new
// purgeable buffer.
if (m_discardable) {
memcpy(discardable->data(), m_discardable->data(), m_discardableSize);
} else {
memcpy(discardable->data(), m_vector.data(), m_vector.size());
m_discardableSize = m_vector.size();
m_vector.clear();
}
m_discardable.swap(discardable);
ASSERT(!m_vector.capacity());
return true;
}
size_t PurgeableVector::adjustPurgeableCapacity(size_t capacity) const
{
ASSERT(capacity >= minimumDiscardableAllocationSize);
const float growthFactor = 1.5;
size_t newCapacity = std::max(capacity, static_cast<size_t>(m_discardableCapacity * growthFactor));
// Discardable memory has page-granularity so align to the next page here to minimize
// fragmentation.
// Since the page size is only used below to minimize fragmentation it's still safe to use it
// even if it gets out of sync (e.g. due to the use of huge pages).
const size_t kPageSize = 4096;
newCapacity = (newCapacity + kPageSize - 1) & ~(kPageSize - 1);
return std::max(capacity, newCapacity); // Overflow check.
}
} // namespace blink
|