blob: 34b3f32d960415bd93dd3cbe1c8f5d9178ba8399 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// 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//
5
6#ifndef V8_HANDLES_INL_H_
7#define V8_HANDLES_INL_H_
8
Ben Murdochb8a8cc12014-11-26 15:28:44 +00009#include "src/api.h"
10#include "src/handles.h"
11#include "src/heap/heap.h"
12#include "src/isolate.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000013
14namespace v8 {
15namespace internal {
16
Ben Murdoche0cee9b2011-05-25 10:26:03 +010017template<typename T>
Steve Blocka7e24c12009-10-30 11:49:00 +000018Handle<T>::Handle(T* obj) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000019 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj);
Steve Block44f0eee2011-05-26 01:26:41 +010020}
21
22
23template<typename T>
24Handle<T>::Handle(T* obj, Isolate* isolate) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000025 location_ = HandleScope::CreateHandle(isolate, obj);
26}
27
28
29template <typename T>
30inline bool Handle<T>::is_identical_to(const Handle<T> o) const {
31 // Dereferencing deferred handles to check object equality is safe.
32 SLOW_DCHECK(
33 (location_ == NULL || IsDereferenceAllowed(NO_DEFERRED_CHECK)) &&
34 (o.location_ == NULL || o.IsDereferenceAllowed(NO_DEFERRED_CHECK)));
35 if (location_ == o.location_) return true;
36 if (location_ == NULL || o.location_ == NULL) return false;
37 return *location_ == *o.location_;
Steve Blocka7e24c12009-10-30 11:49:00 +000038}
39
40
Ben Murdoche0cee9b2011-05-25 10:26:03 +010041template <typename T>
Steve Blocka7e24c12009-10-30 11:49:00 +000042inline T* Handle<T>::operator*() const {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000043 SLOW_DCHECK(IsDereferenceAllowed(INCLUDE_DEFERRED_CHECK));
44 return *bit_cast<T**>(location_);
Steve Blocka7e24c12009-10-30 11:49:00 +000045}
46
Ben Murdochb8a8cc12014-11-26 15:28:44 +000047template <typename T>
48inline T** Handle<T>::location() const {
49 SLOW_DCHECK(location_ == NULL ||
50 IsDereferenceAllowed(INCLUDE_DEFERRED_CHECK));
51 return location_;
Steve Block44f0eee2011-05-26 01:26:41 +010052}
53
Ben Murdochb8a8cc12014-11-26 15:28:44 +000054#ifdef DEBUG
55template <typename T>
56bool Handle<T>::IsDereferenceAllowed(DereferenceCheckMode mode) const {
57 DCHECK(location_ != NULL);
58 Object* object = *bit_cast<T**>(location_);
59 if (object->IsSmi()) return true;
60 HeapObject* heap_object = HeapObject::cast(object);
61 Heap* heap = heap_object->GetHeap();
62 Object** handle = reinterpret_cast<Object**>(location_);
63 Object** roots_array_start = heap->roots_array_start();
64 if (roots_array_start <= handle &&
65 handle < roots_array_start + Heap::kStrongRootListLength &&
66 heap->RootCanBeTreatedAsConstant(
67 static_cast<Heap::RootListIndex>(handle - roots_array_start))) {
68 return true;
69 }
70 if (!AllowHandleDereference::IsAllowed()) return false;
71 if (mode == INCLUDE_DEFERRED_CHECK &&
72 !AllowDeferredHandleDereference::IsAllowed()) {
73 // Accessing cells, maps and internalized strings is safe.
74 if (heap_object->IsCell()) return true;
75 if (heap_object->IsMap()) return true;
76 if (heap_object->IsInternalizedString()) return true;
77 return !heap->isolate()->IsDeferredHandle(handle);
78 }
79 return true;
80}
81#endif
82
83
Steve Block44f0eee2011-05-26 01:26:41 +010084
85HandleScope::HandleScope(Isolate* isolate) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000086 HandleScopeData* current = isolate->handle_scope_data();
Steve Block44f0eee2011-05-26 01:26:41 +010087 isolate_ = isolate;
88 prev_next_ = current->next;
89 prev_limit_ = current->limit;
90 current->level++;
91}
92
93
94HandleScope::~HandleScope() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000095 CloseScope(isolate_, prev_next_, prev_limit_);
Steve Block44f0eee2011-05-26 01:26:41 +010096}
97
Ben Murdochb8a8cc12014-11-26 15:28:44 +000098
99void HandleScope::CloseScope(Isolate* isolate,
100 Object** prev_next,
101 Object** prev_limit) {
102 HandleScopeData* current = isolate->handle_scope_data();
103
104 std::swap(current->next, prev_next);
Steve Block44f0eee2011-05-26 01:26:41 +0100105 current->level--;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000106 if (current->limit != prev_limit) {
107 current->limit = prev_limit;
108 DeleteExtensions(isolate);
109#ifdef ENABLE_HANDLE_ZAPPING
110 ZapRange(current->next, prev_limit);
111 } else {
112 ZapRange(current->next, prev_next);
Steve Block44f0eee2011-05-26 01:26:41 +0100113#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000114 }
Steve Block44f0eee2011-05-26 01:26:41 +0100115}
116
117
118template <typename T>
119Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000120 HandleScopeData* current = isolate_->handle_scope_data();
121
Steve Block44f0eee2011-05-26 01:26:41 +0100122 T* value = *handle_value;
123 // Throw away all handles in the current scope.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000124 CloseScope(isolate_, prev_next_, prev_limit_);
Steve Block44f0eee2011-05-26 01:26:41 +0100125 // Allocate one handle in the parent scope.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000126 DCHECK(current->level > 0);
127 Handle<T> result(CreateHandle<T>(isolate_, value));
Steve Block44f0eee2011-05-26 01:26:41 +0100128 // Reinitialize the current scope (so that it's ready
129 // to be used or closed again).
130 prev_next_ = current->next;
131 prev_limit_ = current->limit;
132 current->level++;
133 return result;
134}
135
136
137template <typename T>
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000138T** HandleScope::CreateHandle(Isolate* isolate, T* value) {
139 DCHECK(AllowHandleAllocation::IsAllowed());
140 HandleScopeData* current = isolate->handle_scope_data();
Steve Block44f0eee2011-05-26 01:26:41 +0100141
142 internal::Object** cur = current->next;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000143 if (cur == current->limit) cur = Extend(isolate);
Steve Block44f0eee2011-05-26 01:26:41 +0100144 // Update the current next field, set the value in the created
145 // handle, and return the result.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000146 DCHECK(cur < current->limit);
Steve Block44f0eee2011-05-26 01:26:41 +0100147 current->next = cur + 1;
148
149 T** result = reinterpret_cast<T**>(cur);
150 *result = value;
151 return result;
152}
153
154
Steve Blocka7e24c12009-10-30 11:49:00 +0000155#ifdef DEBUG
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000156inline SealHandleScope::SealHandleScope(Isolate* isolate) : isolate_(isolate) {
157 // Make sure the current thread is allowed to create handles to begin with.
158 CHECK(AllowHandleAllocation::IsAllowed());
159 HandleScopeData* current = isolate_->handle_scope_data();
Steve Blocka7e24c12009-10-30 11:49:00 +0000160 // Shrink the current handle scope to make it impossible to do
161 // handle allocations without an explicit handle scope.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000162 limit_ = current->limit;
Steve Blocka7e24c12009-10-30 11:49:00 +0000163 current->limit = current->next;
John Reck59135872010-11-02 12:39:01 -0700164 level_ = current->level;
165 current->level = 0;
Steve Blocka7e24c12009-10-30 11:49:00 +0000166}
167
168
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000169inline SealHandleScope::~SealHandleScope() {
Steve Blocka7e24c12009-10-30 11:49:00 +0000170 // Restore state in current handle scope to re-enable handle
171 // allocations.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000172 HandleScopeData* current = isolate_->handle_scope_data();
173 DCHECK_EQ(0, current->level);
174 current->level = level_;
175 DCHECK_EQ(current->next, current->limit);
176 current->limit = limit_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000177}
Steve Blocka7e24c12009-10-30 11:49:00 +0000178
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000179#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000180
181} } // namespace v8::internal
182
183#endif // V8_HANDLES_INL_H_