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

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

Issue 1514603008: Revert of [cctest] Add tests for aborting compaction of pages (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « src/heap/heap.h ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/heap/heap.h" 5 #include "src/heap/heap.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api.h" 8 #include "src/api.h"
9 #include "src/ast/scopeinfo.h" 9 #include "src/ast/scopeinfo.h"
10 #include "src/base/bits.h" 10 #include "src/base/bits.h"
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 current_gc_flags_(Heap::kNoGCFlags), 157 current_gc_flags_(Heap::kNoGCFlags),
158 current_gc_callback_flags_(GCCallbackFlags::kNoGCCallbackFlags), 158 current_gc_callback_flags_(GCCallbackFlags::kNoGCCallbackFlags),
159 external_string_table_(this), 159 external_string_table_(this),
160 chunks_queued_for_free_(NULL), 160 chunks_queued_for_free_(NULL),
161 concurrent_unmapping_tasks_active_(0), 161 concurrent_unmapping_tasks_active_(0),
162 pending_unmapping_tasks_semaphore_(0), 162 pending_unmapping_tasks_semaphore_(0),
163 gc_callbacks_depth_(0), 163 gc_callbacks_depth_(0),
164 deserialization_complete_(false), 164 deserialization_complete_(false),
165 concurrent_sweeping_enabled_(false), 165 concurrent_sweeping_enabled_(false),
166 strong_roots_list_(NULL), 166 strong_roots_list_(NULL),
167 array_buffer_tracker_(NULL), 167 array_buffer_tracker_(NULL) {
168 force_oom_(false) {
169 // Allow build-time customization of the max semispace size. Building 168 // Allow build-time customization of the max semispace size. Building
170 // V8 with snapshots and a non-default max semispace size is much 169 // V8 with snapshots and a non-default max semispace size is much
171 // easier if you can define it as part of the build environment. 170 // easier if you can define it as part of the build environment.
172 #if defined(V8_MAX_SEMISPACE_SIZE) 171 #if defined(V8_MAX_SEMISPACE_SIZE)
173 max_semi_space_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE; 172 max_semi_space_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE;
174 #endif 173 #endif
175 174
176 // Ensure old_generation_size_ is a multiple of kPageSize. 175 // Ensure old_generation_size_ is a multiple of kPageSize.
177 DCHECK((max_old_generation_size_ & (Page::kPageSize - 1)) == 0); 176 DCHECK((max_old_generation_size_ & (Page::kPageSize - 1)) == 0);
178 177
(...skipping 5946 matching lines...) Expand 10 before | Expand all | Expand 10 after
6125 } 6124 }
6126 6125
6127 6126
6128 // static 6127 // static
6129 int Heap::GetStaticVisitorIdForMap(Map* map) { 6128 int Heap::GetStaticVisitorIdForMap(Map* map) {
6130 return StaticVisitorBase::GetVisitorId(map); 6129 return StaticVisitorBase::GetVisitorId(map);
6131 } 6130 }
6132 6131
6133 } // namespace internal 6132 } // namespace internal
6134 } // namespace v8 6133 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/heap.h ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698