blob: b162ba8645adad633f77e4e897c04b47ff83030d [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
Ben Murdochb8a8cc12014-11-26 15:28:44 +00005#include "src/handles.h"
Steve Blocka7e24c12009-10-30 11:49:00 +00006
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00007#include "src/address-map.h"
8#include "src/base/logging.h"
9#include "src/identity-map.h"
10#include "src/objects-inl.h"
11
Steve Blocka7e24c12009-10-30 11:49:00 +000012namespace v8 {
13namespace internal {
14
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000015#ifdef DEBUG
16bool HandleBase::IsDereferenceAllowed(DereferenceCheckMode mode) const {
17 DCHECK_NOT_NULL(location_);
18 Object* object = *location_;
19 if (object->IsSmi()) return true;
20 HeapObject* heap_object = HeapObject::cast(object);
21 Heap* heap = heap_object->GetHeap();
22 Object** roots_array_start = heap->roots_array_start();
23 if (roots_array_start <= location_ &&
24 location_ < roots_array_start + Heap::kStrongRootListLength &&
25 heap->RootCanBeTreatedAsConstant(
26 static_cast<Heap::RootListIndex>(location_ - roots_array_start))) {
27 return true;
28 }
29 if (!AllowHandleDereference::IsAllowed()) return false;
30 if (mode == INCLUDE_DEFERRED_CHECK &&
31 !AllowDeferredHandleDereference::IsAllowed()) {
32 // Accessing cells, maps and internalized strings is safe.
33 if (heap_object->IsCell()) return true;
34 if (heap_object->IsMap()) return true;
35 if (heap_object->IsInternalizedString()) return true;
36 return !heap->isolate()->IsDeferredHandle(location_);
37 }
38 return true;
39}
40#endif
41
Steve Blocka7e24c12009-10-30 11:49:00 +000042
Ben Murdochb8a8cc12014-11-26 15:28:44 +000043int HandleScope::NumberOfHandles(Isolate* isolate) {
Steve Block44f0eee2011-05-26 01:26:41 +010044 HandleScopeImplementer* impl = isolate->handle_scope_implementer();
45 int n = impl->blocks()->length();
Steve Blocka7e24c12009-10-30 11:49:00 +000046 if (n == 0) return 0;
Steve Blockd0582a62009-12-15 09:54:21 +000047 return ((n - 1) * kHandleBlockSize) + static_cast<int>(
Steve Block44f0eee2011-05-26 01:26:41 +010048 (isolate->handle_scope_data()->next - impl->blocks()->last()));
Steve Blocka7e24c12009-10-30 11:49:00 +000049}
50
51
Ben Murdochb8a8cc12014-11-26 15:28:44 +000052Object** HandleScope::Extend(Isolate* isolate) {
53 HandleScopeData* current = isolate->handle_scope_data();
Steve Blocka7e24c12009-10-30 11:49:00 +000054
Steve Block44f0eee2011-05-26 01:26:41 +010055 Object** result = current->next;
56
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057 DCHECK(result == current->limit);
Steve Blocka7e24c12009-10-30 11:49:00 +000058 // Make sure there's at least one scope on the stack and that the
59 // top of the scope stack isn't a barrier.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000060 if (!Utils::ApiCheck(current->level != current->sealed_level,
Ben Murdochb8a8cc12014-11-26 15:28:44 +000061 "v8::HandleScope::CreateHandle()",
62 "Cannot create a handle without a HandleScope")) {
Steve Blocka7e24c12009-10-30 11:49:00 +000063 return NULL;
64 }
Steve Block44f0eee2011-05-26 01:26:41 +010065 HandleScopeImplementer* impl = isolate->handle_scope_implementer();
Steve Blocka7e24c12009-10-30 11:49:00 +000066 // If there's more room in the last block, we use that. This is used
67 // for fast creation of scopes after scope barriers.
68 if (!impl->blocks()->is_empty()) {
69 Object** limit = &impl->blocks()->last()[kHandleBlockSize];
Steve Block44f0eee2011-05-26 01:26:41 +010070 if (current->limit != limit) {
71 current->limit = limit;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000072 DCHECK(limit - current->next < kHandleBlockSize);
Steve Blocka7e24c12009-10-30 11:49:00 +000073 }
74 }
75
76 // If we still haven't found a slot for the handle, we extend the
77 // current handle scope by allocating a new handle block.
Steve Block44f0eee2011-05-26 01:26:41 +010078 if (result == current->limit) {
Steve Blocka7e24c12009-10-30 11:49:00 +000079 // If there's a spare block, use it for growing the current scope.
80 result = impl->GetSpareOrNewBlock();
81 // Add the extension to the global list of blocks, but count the
82 // extension as part of the current scope.
83 impl->blocks()->Add(result);
Steve Block44f0eee2011-05-26 01:26:41 +010084 current->limit = &result[kHandleBlockSize];
Steve Blocka7e24c12009-10-30 11:49:00 +000085 }
86
87 return result;
88}
89
90
Steve Block44f0eee2011-05-26 01:26:41 +010091void HandleScope::DeleteExtensions(Isolate* isolate) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000092 HandleScopeData* current = isolate->handle_scope_data();
Steve Block44f0eee2011-05-26 01:26:41 +010093 isolate->handle_scope_implementer()->DeleteExtensions(current->limit);
Steve Blocka7e24c12009-10-30 11:49:00 +000094}
95
96
Ben Murdochb8a8cc12014-11-26 15:28:44 +000097#ifdef ENABLE_HANDLE_ZAPPING
Steve Blocka7e24c12009-10-30 11:49:00 +000098void HandleScope::ZapRange(Object** start, Object** end) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000099 DCHECK(end - start <= kHandleBlockSize);
John Reck59135872010-11-02 12:39:01 -0700100 for (Object** p = start; p != end; p++) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000101 *reinterpret_cast<Address*>(p) = kHandleZapValue;
Steve Blocka7e24c12009-10-30 11:49:00 +0000102 }
103}
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000104#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000105
106
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000107Address HandleScope::current_level_address(Isolate* isolate) {
108 return reinterpret_cast<Address>(&isolate->handle_scope_data()->level);
Steve Blockd0582a62009-12-15 09:54:21 +0000109}
110
111
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000112Address HandleScope::current_next_address(Isolate* isolate) {
113 return reinterpret_cast<Address>(&isolate->handle_scope_data()->next);
Steve Blockd0582a62009-12-15 09:54:21 +0000114}
115
116
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000117Address HandleScope::current_limit_address(Isolate* isolate) {
118 return reinterpret_cast<Address>(&isolate->handle_scope_data()->limit);
Steve Blockd0582a62009-12-15 09:54:21 +0000119}
120
121
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000122CanonicalHandleScope::CanonicalHandleScope(Isolate* isolate)
123 : isolate_(isolate) {
124 HandleScopeData* handle_scope_data = isolate_->handle_scope_data();
125 prev_canonical_scope_ = handle_scope_data->canonical_scope;
126 handle_scope_data->canonical_scope = this;
127 root_index_map_ = new RootIndexMap(isolate);
128 identity_map_ = new IdentityMap<Object**>(isolate->heap(), &zone_);
129 canonical_level_ = handle_scope_data->level;
130}
131
132
133CanonicalHandleScope::~CanonicalHandleScope() {
134 delete root_index_map_;
135 delete identity_map_;
136 isolate_->handle_scope_data()->canonical_scope = prev_canonical_scope_;
137}
138
139
140Object** CanonicalHandleScope::Lookup(Object* object) {
141 DCHECK_LE(canonical_level_, isolate_->handle_scope_data()->level);
142 if (isolate_->handle_scope_data()->level != canonical_level_) {
143 // We are in an inner handle scope. Do not canonicalize since we will leave
144 // this handle scope while still being in the canonical scope.
145 return HandleScope::CreateHandle(isolate_, object);
146 }
147 if (object->IsHeapObject()) {
148 int index = root_index_map_->Lookup(HeapObject::cast(object));
149 if (index != RootIndexMap::kInvalidRootIndex) {
150 return isolate_->heap()
151 ->root_handle(static_cast<Heap::RootListIndex>(index))
152 .location();
153 }
154 }
155 Object*** entry = identity_map_->Get(object);
156 if (*entry == nullptr) {
157 // Allocate new handle location.
158 *entry = HandleScope::CreateHandle(isolate_, object);
159 }
160 return reinterpret_cast<Object**>(*entry);
161}
162
163
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000164DeferredHandleScope::DeferredHandleScope(Isolate* isolate)
165 : impl_(isolate->handle_scope_implementer()) {
166 impl_->BeginDeferredScope();
167 HandleScopeData* data = impl_->isolate()->handle_scope_data();
168 Object** new_next = impl_->GetSpareOrNewBlock();
169 Object** new_limit = &new_next[kHandleBlockSize];
170 DCHECK(data->limit == &impl_->blocks()->last()[kHandleBlockSize]);
171 impl_->blocks()->Add(new_next);
172
173#ifdef DEBUG
174 prev_level_ = data->level;
175#endif
176 data->level++;
177 prev_limit_ = data->limit;
178 prev_next_ = data->next;
179 data->next = new_next;
180 data->limit = new_limit;
Steve Blocka7e24c12009-10-30 11:49:00 +0000181}
182
183
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000184DeferredHandleScope::~DeferredHandleScope() {
185 impl_->isolate()->handle_scope_data()->level--;
186 DCHECK(handles_detached_);
187 DCHECK(impl_->isolate()->handle_scope_data()->level == prev_level_);
Steve Blocka7e24c12009-10-30 11:49:00 +0000188}
189
190
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000191DeferredHandles* DeferredHandleScope::Detach() {
192 DeferredHandles* deferred = impl_->Detach(prev_limit_);
193 HandleScopeData* data = impl_->isolate()->handle_scope_data();
194 data->next = prev_next_;
195 data->limit = prev_limit_;
196#ifdef DEBUG
197 handles_detached_ = true;
198#endif
199 return deferred;
Ben Murdoch5d4cdbf2012-04-11 10:23:59 +0100200}
201
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000202} // namespace internal
203} // namespace v8