Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 | 5 |
| 6 #ifndef V8_HANDLES_INL_H_ | 6 #ifndef V8_HANDLES_INL_H_ |
| 7 #define V8_HANDLES_INL_H_ | 7 #define V8_HANDLES_INL_H_ |
| 8 | 8 |
| 9 #include "src/api.h" | 9 #include "src/api.h" |
| 10 #include "src/handles.h" | 10 #include "src/handles.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 return *bit_cast<T**>(location_); | 44 return *bit_cast<T**>(location_); |
| 45 } | 45 } |
| 46 | 46 |
| 47 template <typename T> | 47 template <typename T> |
| 48 inline T** Handle<T>::location() const { | 48 inline T** Handle<T>::location() const { |
| 49 SLOW_DCHECK(location_ == NULL || | 49 SLOW_DCHECK(location_ == NULL || |
| 50 IsDereferenceAllowed(INCLUDE_DEFERRED_CHECK)); | 50 IsDereferenceAllowed(INCLUDE_DEFERRED_CHECK)); |
| 51 return location_; | 51 return location_; |
| 52 } | 52 } |
| 53 | 53 |
| 54 #ifdef DEBUG | 54 #ifdef ENABLE_SLOW_DCHECKS |
| 55 template <typename T> | 55 template <typename T> |
| 56 bool Handle<T>::IsDereferenceAllowed(DereferenceCheckMode mode) const { | 56 bool Handle<T>::IsDereferenceAllowed(DereferenceCheckMode mode) const { |
| 57 DCHECK(location_ != NULL); | 57 DCHECK(location_ != NULL); |
| 58 Object* object = *bit_cast<T**>(location_); | 58 Object* object = *bit_cast<T**>(location_); |
| 59 if (object->IsSmi()) return true; | 59 if (object->IsSmi()) return true; |
| 60 HeapObject* heap_object = HeapObject::cast(object); | 60 HeapObject* heap_object = HeapObject::cast(object); |
| 61 Heap* heap = heap_object->GetHeap(); | 61 Heap* heap = heap_object->GetHeap(); |
| 62 Object** handle = reinterpret_cast<Object**>(location_); | 62 Object** handle = reinterpret_cast<Object**>(location_); |
| 63 Object** roots_array_start = heap->roots_array_start(); | 63 Object** roots_array_start = heap->roots_array_start(); |
| 64 if (roots_array_start <= handle && | 64 if (roots_array_start <= handle && |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 145 // handle, and return the result. | 145 // handle, and return the result. |
| 146 DCHECK(cur < current->limit); | 146 DCHECK(cur < current->limit); |
| 147 current->next = cur + 1; | 147 current->next = cur + 1; |
| 148 | 148 |
| 149 T** result = reinterpret_cast<T**>(cur); | 149 T** result = reinterpret_cast<T**>(cur); |
| 150 *result = value; | 150 *result = value; |
| 151 return result; | 151 return result; |
| 152 } | 152 } |
| 153 | 153 |
| 154 | 154 |
| 155 #ifdef DEBUG | 155 #ifdef DEBUG |
|
Jakob Kummerow
2014/12/03 10:53:53
Forgot this one? Declaration in handles.h would ne
| |
| 156 inline SealHandleScope::SealHandleScope(Isolate* isolate) : isolate_(isolate) { | 156 inline SealHandleScope::SealHandleScope(Isolate* isolate) : isolate_(isolate) { |
| 157 // Make sure the current thread is allowed to create handles to begin with. | 157 // Make sure the current thread is allowed to create handles to begin with. |
| 158 CHECK(AllowHandleAllocation::IsAllowed()); | 158 CHECK(AllowHandleAllocation::IsAllowed()); |
| 159 HandleScopeData* current = isolate_->handle_scope_data(); | 159 HandleScopeData* current = isolate_->handle_scope_data(); |
| 160 // Shrink the current handle scope to make it impossible to do | 160 // Shrink the current handle scope to make it impossible to do |
| 161 // handle allocations without an explicit handle scope. | 161 // handle allocations without an explicit handle scope. |
| 162 limit_ = current->limit; | 162 limit_ = current->limit; |
| 163 current->limit = current->next; | 163 current->limit = current->next; |
| 164 level_ = current->level; | 164 level_ = current->level; |
| 165 current->level = 0; | 165 current->level = 0; |
| 166 } | 166 } |
| 167 | 167 |
| 168 | 168 |
| 169 inline SealHandleScope::~SealHandleScope() { | 169 inline SealHandleScope::~SealHandleScope() { |
| 170 // Restore state in current handle scope to re-enable handle | 170 // Restore state in current handle scope to re-enable handle |
| 171 // allocations. | 171 // allocations. |
| 172 HandleScopeData* current = isolate_->handle_scope_data(); | 172 HandleScopeData* current = isolate_->handle_scope_data(); |
| 173 DCHECK_EQ(0, current->level); | 173 DCHECK_EQ(0, current->level); |
| 174 current->level = level_; | 174 current->level = level_; |
| 175 DCHECK_EQ(current->next, current->limit); | 175 DCHECK_EQ(current->next, current->limit); |
| 176 current->limit = limit_; | 176 current->limit = limit_; |
| 177 } | 177 } |
| 178 | 178 |
| 179 #endif | 179 #endif |
| 180 | 180 |
| 181 } } // namespace v8::internal | 181 } } // namespace v8::internal |
| 182 | 182 |
| 183 #endif // V8_HANDLES_INL_H_ | 183 #endif // V8_HANDLES_INL_H_ |
| OLD | NEW |