Files
sdk/runtime/vm/allocation.cc
T
turnidge@google.com 5f30febb45 Inline the StackResource constructor/destructor.
This yields a 29% improvement on the Benchmark_UseDartApi microbenchmark.

To do this, I had to split a few fields from Isolate into a
BaseIsolate class.  Sort of yucky.
Review URL: https://chromiumcodereview.appspot.com//10008030

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6288 260f80e4-7a28-3924-810f-c04153c831b5
2012-04-06 18:00:51 +00:00

25 lines
650 B
C++

// Copyright (c) 2012, 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 "platform/assert.h"
#include "vm/isolate.h"
#include "vm/zone.h"
namespace dart {
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