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

Unified Diff: mojo/public/bindings/lib/scratch_buffer.cc

Issue 220243007: Mojo: Move mojo/public/bindings/lib to mojo/public/cpp/bindings/lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/public/bindings/lib/scratch_buffer.h ('k') | mojo/public/bindings/lib/shared_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/bindings/lib/scratch_buffer.cc
diff --git a/mojo/public/bindings/lib/scratch_buffer.cc b/mojo/public/bindings/lib/scratch_buffer.cc
deleted file mode 100644
index abfb5fe6b236f7b32ba76a18d3a5102977b49c92..0000000000000000000000000000000000000000
--- a/mojo/public/bindings/lib/scratch_buffer.cc
+++ /dev/null
@@ -1,98 +0,0 @@
-// Copyright 2014 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.
-
-#include "mojo/public/bindings/lib/scratch_buffer.h"
-
-#include <assert.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <algorithm>
-
-#include "mojo/public/bindings/lib/bindings_serialization.h"
-
-// Scrub memory in debug builds to help catch use-after-free bugs.
-#ifdef NDEBUG
-#define DEBUG_SCRUB(address, size) (void) (address), (void) (size)
-#else
-#define DEBUG_SCRUB(address, size) memset(address, 0xCD, size)
-#endif
-
-namespace mojo {
-namespace internal {
-
-ScratchBuffer::ScratchBuffer()
- : overflow_(NULL) {
- fixed_.next = NULL;
- fixed_.cursor = fixed_data_;
- fixed_.end = fixed_data_ + kMinSegmentSize;
-}
-
-ScratchBuffer::~ScratchBuffer() {
- // Invoke destructors in reverse order to mirror allocation order.
- std::deque<PendingDestructor>::reverse_iterator it;
- for (it = pending_dtors_.rbegin(); it != pending_dtors_.rend(); ++it)
- it->func(it->address);
-
- while (overflow_) {
- Segment* doomed = overflow_;
- overflow_ = overflow_->next;
- DEBUG_SCRUB(doomed, doomed->end - reinterpret_cast<char*>(doomed));
- free(doomed);
- }
- DEBUG_SCRUB(fixed_data_, sizeof(fixed_data_));
-}
-
-void* ScratchBuffer::Allocate(size_t delta, Destructor func) {
- delta = internal::Align(delta);
-
- void* result = AllocateInSegment(&fixed_, delta);
- if (!result) {
- if (overflow_)
- result = AllocateInSegment(overflow_, delta);
-
- if (!result) {
- AddOverflowSegment(delta);
- result = AllocateInSegment(overflow_, delta);
- }
- }
-
- if (func) {
- PendingDestructor dtor;
- dtor.func = func;
- dtor.address = result;
- pending_dtors_.push_back(dtor);
- }
- return result;
-}
-
-void* ScratchBuffer::AllocateInSegment(Segment* segment, size_t delta) {
- void* result;
- if (static_cast<size_t>(segment->end - segment->cursor) >= delta) {
- result = segment->cursor;
- memset(result, 0, delta);
- segment->cursor += delta;
- } else {
- result = NULL;
- }
- return result;
-}
-
-void ScratchBuffer::AddOverflowSegment(size_t delta) {
- if (delta < kMinSegmentSize)
- delta = kMinSegmentSize;
-
- // Ensure segment buffer is aligned.
- size_t segment_size = internal::Align(sizeof(Segment)) + delta;
-
- Segment* segment = static_cast<Segment*>(malloc(segment_size));
- segment->next = overflow_;
- segment->cursor = reinterpret_cast<char*>(segment + 1);
- segment->end = segment->cursor + delta;
-
- overflow_ = segment;
-}
-
-} // namespace internal
-} // namespace mojo
« no previous file with comments | « mojo/public/bindings/lib/scratch_buffer.h ('k') | mojo/public/bindings/lib/shared_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698