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

Side by Side Diff: src/zone/zone.cc

Issue 2348303002: Replaced different means of zone pooling/reusing by one zone segment pool (Closed)
Patch Set: Merge branch 'zonesegpool' into onezonepool Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/zone/zone.h" 5 #include "src/zone/zone.h"
6 6
7 #include <cstring> 7 #include <cstring>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 // Un-poison the segment content so we can re-use or zap it later. 99 // Un-poison the segment content so we can re-use or zap it later.
100 ASAN_UNPOISON_MEMORY_REGION(current->start(), current->capacity()); 100 ASAN_UNPOISON_MEMORY_REGION(current->start(), current->capacity());
101 101
102 segment_bytes_allocated_ -= size; 102 segment_bytes_allocated_ -= size;
103 allocator_->ReturnSegment(current); 103 allocator_->ReturnSegment(current);
104 current = next; 104 current = next;
105 } 105 }
106 106
107 position_ = limit_ = 0; 107 position_ = limit_ = 0;
108
109 allocation_size_ = 0; 108 allocation_size_ = 0;
110 // Update the head segment to be the kept segment (if any).
111 segment_head_ = nullptr; 109 segment_head_ = nullptr;
112 } 110 }
113 111
114 // Creates a new segment, sets it size, and pushes it to the front 112 // Creates a new segment, sets it size, and pushes it to the front
115 // of the segment chain. Returns the new segment. 113 // of the segment chain. Returns the new segment.
116 Segment* Zone::NewSegment(size_t size) { 114 Segment* Zone::NewSegment(size_t size) {
117 Segment* result = allocator_->GetSegment(size); 115 Segment* result = allocator_->GetSegment(size);
118 segment_bytes_allocated_ += size; 116 segment_bytes_allocated_ += size;
119 if (result != nullptr) { 117 if (result != nullptr) {
120 result->Initialize(segment_head_, size, this); 118 result->Initialize(segment_head_, size, this);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // size bytes + header and alignment padding) 172 // size bytes + header and alignment padding)
175 DCHECK(reinterpret_cast<uintptr_t>(position_) >= 173 DCHECK(reinterpret_cast<uintptr_t>(position_) >=
176 reinterpret_cast<uintptr_t>(result)); 174 reinterpret_cast<uintptr_t>(result));
177 limit_ = segment->end(); 175 limit_ = segment->end();
178 DCHECK(position_ <= limit_); 176 DCHECK(position_ <= limit_);
179 return result; 177 return result;
180 } 178 }
181 179
182 } // namespace internal 180 } // namespace internal
183 } // namespace v8 181 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698