blob: 58c684a54f62c40f0f1aa51f761b99c0f64189dc [file] [log] [blame]
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +00001// Copyright 2012 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "sweeper-thread.h"
29
30#include "v8.h"
31
32#include "isolate.h"
33#include "v8threads.h"
34
35namespace v8 {
36namespace internal {
37
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000038static const int kSweeperThreadStackSize = 64 * KB;
39
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000040SweeperThread::SweeperThread(Isolate* isolate)
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000041 : Thread(Thread::Options("v8:SweeperThread", kSweeperThreadStackSize)),
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000042 isolate_(isolate),
43 heap_(isolate->heap()),
44 collector_(heap_->mark_compact_collector()),
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +000045 start_sweeping_semaphore_(0),
46 end_sweeping_semaphore_(0),
47 stop_semaphore_(0),
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000048 free_list_old_data_space_(heap_->paged_space(OLD_DATA_SPACE)),
49 free_list_old_pointer_space_(heap_->paged_space(OLD_POINTER_SPACE)),
50 private_free_list_old_data_space_(heap_->paged_space(OLD_DATA_SPACE)),
51 private_free_list_old_pointer_space_(
52 heap_->paged_space(OLD_POINTER_SPACE)) {
53 NoBarrier_Store(&stop_thread_, static_cast<AtomicWord>(false));
54}
55
56
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000057void SweeperThread::Run() {
58 Isolate::SetIsolateThreadLocals(isolate_, NULL);
rossberg@chromium.org79e79022013-06-03 15:43:46 +000059 DisallowHeapAllocation no_allocation;
60 DisallowHandleAllocation no_handles;
61 DisallowHandleDereference no_deref;
62
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000063 while (true) {
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +000064 start_sweeping_semaphore_.Wait();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000065
66 if (Acquire_Load(&stop_thread_)) {
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +000067 stop_semaphore_.Signal();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000068 return;
69 }
70
71 collector_->SweepInParallel(heap_->old_data_space(),
72 &private_free_list_old_data_space_,
73 &free_list_old_data_space_);
74 collector_->SweepInParallel(heap_->old_pointer_space(),
75 &private_free_list_old_pointer_space_,
76 &free_list_old_pointer_space_);
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +000077 end_sweeping_semaphore_.Signal();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000078 }
79}
80
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +000081
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000082intptr_t SweeperThread::StealMemory(PagedSpace* space) {
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000083 if (space->identity() == OLD_POINTER_SPACE) {
hpayer@chromium.org8432c912013-02-28 15:55:26 +000084 return space->free_list()->Concatenate(&free_list_old_pointer_space_);
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000085 } else if (space->identity() == OLD_DATA_SPACE) {
hpayer@chromium.org8432c912013-02-28 15:55:26 +000086 return space->free_list()->Concatenate(&free_list_old_data_space_);
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000087 }
hpayer@chromium.org8432c912013-02-28 15:55:26 +000088 return 0;
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000089}
90
hpayer@chromium.org8432c912013-02-28 15:55:26 +000091
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000092void SweeperThread::Stop() {
93 Release_Store(&stop_thread_, static_cast<AtomicWord>(true));
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +000094 start_sweeping_semaphore_.Signal();
95 stop_semaphore_.Wait();
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +000096 Join();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +000097}
98
99
100void SweeperThread::StartSweeping() {
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +0000101 start_sweeping_semaphore_.Signal();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +0000102}
103
104
105void SweeperThread::WaitForSweeperThread() {
mstarzinger@chromium.orge9000182013-09-03 11:25:39 +0000106 end_sweeping_semaphore_.Wait();
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +0000107}
108} } // namespace v8::internal