OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/allocation.h" | 5 #include "vm/allocation.h" |
6 | 6 |
7 #include "vm/assert.h" | 7 #include "vm/assert.h" |
8 #include "vm/isolate.h" | 8 #include "vm/isolate.h" |
9 #include "vm/zone.h" | 9 #include "vm/zone.h" |
10 | 10 |
11 namespace dart { | 11 namespace dart { |
12 | 12 |
13 StackResource::StackResource() { | 13 StackResource::StackResource(Isolate* isolate) : isolate_(isolate) { |
14 isolate_ = Isolate::Current(); | 14 previous_ = isolate->top_resource(); |
15 previous_ = isolate_->top_resource(); | 15 isolate->set_top_resource(this); |
16 isolate_->set_top_resource(this); | |
17 } | 16 } |
18 | 17 |
19 | 18 |
20 StackResource::~StackResource() { | 19 StackResource::~StackResource() { |
21 StackResource* top = isolate_->top_resource(); | 20 StackResource* top = isolate()->top_resource(); |
22 ASSERT(top == this); | 21 ASSERT(top == this); |
23 isolate_->set_top_resource(previous_); | 22 isolate()->set_top_resource(previous_); |
24 } | 23 } |
25 | 24 |
26 ZoneAllocated::~ZoneAllocated() { | 25 ZoneAllocated::~ZoneAllocated() { |
27 UNREACHABLE(); | 26 UNREACHABLE(); |
28 } | 27 } |
29 | 28 |
30 void* ZoneAllocated::operator new(uword size) { | 29 void* ZoneAllocated::operator new(uword size) { |
31 Isolate* isolate = Isolate::Current(); | 30 Isolate* isolate = Isolate::Current(); |
32 ASSERT(isolate != NULL); | 31 ASSERT(isolate != NULL); |
33 ASSERT(isolate->current_zone() != NULL); | 32 ASSERT(isolate->current_zone() != NULL); |
34 return reinterpret_cast<void*>(isolate->current_zone()->Allocate(size)); | 33 return reinterpret_cast<void*>(isolate->current_zone()->Allocate(size)); |
35 } | 34 } |
36 | 35 |
37 } // namespace dart | 36 } // namespace dart |
OLD | NEW |