Files
sdk/runtime/vm/allocation.cc
T

37 lines
943 B
C++

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "vm/allocation.h"
#include "vm/assert.h"
#include "vm/isolate.h"
#include "vm/zone.h"
namespace dart {
StackResource::StackResource(Isolate* isolate) : isolate_(isolate) {
previous_ = isolate->top_resource();
isolate->set_top_resource(this);
}
StackResource::~StackResource() {
StackResource* top = isolate()->top_resource();
ASSERT(top == this);
isolate()->set_top_resource(previous_);
}
ZoneAllocated::~ZoneAllocated() {
UNREACHABLE();
}
void* ZoneAllocated::operator new(uword size) {
Isolate* isolate = Isolate::Current();
ASSERT(isolate != NULL);
ASSERT(isolate->current_zone() != NULL);
return reinterpret_cast<void*>(isolate->current_zone()->Allocate(size));
}
} // namespace dart