OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 "platform/assert.h" | 7 #include "platform/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 ZoneAllocated::~ZoneAllocated() { | |
14 UNREACHABLE(); | |
15 } | |
16 | |
17 | |
18 static void* Allocate(uword size, BaseIsolate* isolate) { | 13 static void* Allocate(uword size, BaseIsolate* isolate) { |
19 ASSERT(isolate != NULL); | 14 ASSERT(isolate != NULL); |
20 ASSERT(isolate->current_zone() != NULL); | 15 ASSERT(isolate->current_zone() != NULL); |
21 if (size > static_cast<uword>(kIntptrMax)) { | 16 if (size > static_cast<uword>(kIntptrMax)) { |
22 FATAL1("ZoneAllocated object has unexpectedly large size %" Pu "", size); | 17 FATAL1("ZoneAllocated object has unexpectedly large size %" Pu "", size); |
23 } | 18 } |
24 return reinterpret_cast<void*>(isolate->current_zone()->AllocUnsafe(size)); | 19 return reinterpret_cast<void*>(isolate->current_zone()->AllocUnsafe(size)); |
25 } | 20 } |
26 | 21 |
27 | 22 |
28 void* ZoneAllocated::operator new(uword size) { | 23 void* ZoneAllocated::operator new(uword size) { |
29 return Allocate(size, Isolate::Current()); | 24 return Allocate(size, Isolate::Current()); |
30 } | 25 } |
31 | 26 |
32 | 27 |
33 void* ZoneAllocated::operator new(uword size, BaseIsolate* isolate) { | 28 void* ZoneAllocated::operator new(uword size, BaseIsolate* isolate) { |
34 return Allocate(size, isolate); | 29 return Allocate(size, isolate); |
35 } | 30 } |
36 | 31 |
37 } // namespace dart | 32 } // namespace dart |
OLD | NEW |