| 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 static void* Allocate(uword size, Zone* zone) { | 13 static void* Allocate(uword size, Zone* zone) { |
| 14 ASSERT(zone != NULL); | 14 ASSERT(zone != NULL); |
| 15 if (size > static_cast<uword>(kIntptrMax)) { | 15 if (size > static_cast<uword>(kIntptrMax)) { |
| 16 FATAL1("ZoneAllocated object has unexpectedly large size %" Pu "", size); | 16 FATAL1("ZoneAllocated object has unexpectedly large size %" Pu "", size); |
| 17 } | 17 } |
| 18 return reinterpret_cast<void*>(zone->AllocUnsafe(size)); | 18 return reinterpret_cast<void*>(zone->AllocUnsafe(size)); |
| 19 } | 19 } |
| 20 | 20 |
| 21 | 21 |
| 22 void* ZoneAllocated::operator new(uword size) { | 22 void* ZoneAllocated::operator new(uword size) { |
| 23 return Allocate(size, Isolate::Current()->current_zone()); | 23 return Allocate(size, Thread::Current()->zone()); |
| 24 } | 24 } |
| 25 | 25 |
| 26 | 26 |
| 27 void* ZoneAllocated::operator new(uword size, Zone* zone) { | 27 void* ZoneAllocated::operator new(uword size, Zone* zone) { |
| 28 ASSERT(zone == Isolate::Current()->current_zone()); | 28 ASSERT(zone == Thread::Current()->zone()); |
| 29 return Allocate(size, zone); | 29 return Allocate(size, zone); |
| 30 } | 30 } |
| 31 | 31 |
| 32 | 32 |
| 33 void StackResource::UnwindAbove(Isolate* isolate, StackResource* new_top) { | 33 void StackResource::UnwindAbove(Isolate* isolate, StackResource* new_top) { |
| 34 StackResource* current_resource = isolate->top_resource(); | 34 StackResource* current_resource = isolate->top_resource(); |
| 35 while (current_resource != new_top) { | 35 while (current_resource != new_top) { |
| 36 current_resource->~StackResource(); | 36 current_resource->~StackResource(); |
| 37 current_resource = isolate->top_resource(); | 37 current_resource = isolate->top_resource(); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 | 40 |
| 41 } // namespace dart | 41 } // namespace dart |
| OLD | NEW |