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

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

Issue 1511933002: [cctest] Add tests for aborting compaction of pages (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Workaround FLAG_concurrent_sweeping not being respected after heap initialization 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) {
168 // Allow build-time customization of the max semispace size. Building 169 // Allow build-time customization of the max semispace size. Building
169 // V8 with snapshots and a non-default max semispace size is much 170 // V8 with snapshots and a non-default max semispace size is much
170 // easier if you can define it as part of the build environment. 171 // easier if you can define it as part of the build environment.
171 #if defined(V8_MAX_SEMISPACE_SIZE) 172 #if defined(V8_MAX_SEMISPACE_SIZE)
172 max_semi_space_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE; 173 max_semi_space_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE;
173 #endif 174 #endif
174 175
175 // Ensure old_generation_size_ is a multiple of kPageSize. 176 // Ensure old_generation_size_ is a multiple of kPageSize.
176 DCHECK((max_old_generation_size_ & (Page::kPageSize - 1)) == 0); 177 DCHECK((max_old_generation_size_ & (Page::kPageSize - 1)) == 0);
177 178
(...skipping 5946 matching lines...) Expand 10 before | Expand all | Expand 10 after
6124 } 6125 }
6125 6126
6126 6127
6127 // static 6128 // static
6128 int Heap::GetStaticVisitorIdForMap(Map* map) { 6129 int Heap::GetStaticVisitorIdForMap(Map* map) {
6129 return StaticVisitorBase::GetVisitorId(map); 6130 return StaticVisitorBase::GetVisitorId(map);
6130 } 6131 }
6131 6132
6132 } // namespace internal 6133 } // namespace internal
6133 } // namespace v8 6134 } // 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