Files
sdk/runtime/vm/zone_test.cc
T
turnidge@google.com e61a02c10d Implement spawnFunction from the new isolate api.
Still need to implement spawnUri, which will be the more difficult one.
Review URL: https://chromiumcodereview.appspot.com//9691005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@5441 260f80e4-7a28-3924-810f-c04153c831b5
2012-03-13 22:05:08 +00:00

130 lines
3.8 KiB
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 "platform/assert.h"
#include "vm/dart.h"
#include "vm/isolate.h"
#include "vm/unit_test.h"
#include "vm/zone.h"
namespace dart {
DECLARE_DEBUG_FLAG(bool, trace_zone_sizes);
UNIT_TEST_CASE(AllocateZone) {
#if defined(DEBUG)
FLAG_trace_zone_sizes = true;
#endif
Isolate* isolate = Isolate::Init(NULL);
EXPECT(Isolate::Current() == isolate);
EXPECT(isolate->current_zone() == NULL);
{
Zone zone(isolate);
EXPECT(isolate->current_zone() != NULL);
intptr_t allocated_size = 0;
// The loop is to make sure we overflow one segment and go on
// to the next segment.
for (int i = 0; i < 1000; i++) {
uword first = zone.Allocate(2 * kWordSize);
uword second = zone.Allocate(3 * kWordSize);
EXPECT(first != second);
allocated_size = ((2 + 3) * kWordSize);
}
EXPECT_LE(allocated_size, zone.SizeInBytes());
// Test for allocation of large segments.
const uword kLargeSize = 1 * MB;
const uword kSegmentSize = 64 * KB;
ASSERT(kLargeSize > kSegmentSize);
for (int i = 0; i < 10; i++) {
EXPECT(zone.Allocate(kLargeSize) != 0);
allocated_size += kLargeSize;
}
EXPECT_LE(allocated_size, zone.SizeInBytes());
// Test corner cases of kSegmentSize.
uint8_t* buffer = NULL;
buffer = reinterpret_cast<uint8_t*>(
zone.Allocate(kSegmentSize - kWordSize));
EXPECT(buffer != NULL);
buffer[(kSegmentSize - kWordSize) - 1] = 0;
allocated_size += (kSegmentSize - kWordSize);
EXPECT_LE(allocated_size, zone.SizeInBytes());
buffer = reinterpret_cast<uint8_t*>(
zone.Allocate(kSegmentSize - (2 * kWordSize)));
EXPECT(buffer != NULL);
buffer[(kSegmentSize - (2 * kWordSize)) - 1] = 0;
allocated_size += (kSegmentSize - (2 * kWordSize));
EXPECT_LE(allocated_size, zone.SizeInBytes());
buffer = reinterpret_cast<uint8_t*>(
zone.Allocate(kSegmentSize + kWordSize));
EXPECT(buffer != NULL);
buffer[(kSegmentSize + kWordSize) - 1] = 0;
allocated_size += (kSegmentSize + kWordSize);
EXPECT_LE(allocated_size, zone.SizeInBytes());
}
EXPECT(isolate->current_zone() == NULL);
isolate->Shutdown();
delete isolate;
}
UNIT_TEST_CASE(ZoneAllocated) {
#if defined(DEBUG)
FLAG_trace_zone_sizes = true;
#endif
Isolate* isolate = Isolate::Init(NULL);
EXPECT(Isolate::Current() == isolate);
EXPECT(isolate->current_zone() == NULL);
static int marker;
class SimpleZoneObject : public ZoneAllocated {
public:
SimpleZoneObject() : slot(marker++) { }
virtual int GetSlot() { return slot; }
int slot;
};
// Reset the marker.
marker = 0;
// Create a few zone allocated objects.
{
Zone zone(isolate);
EXPECT_EQ(0, zone.SizeInBytes());
SimpleZoneObject* first = new SimpleZoneObject();
EXPECT(first != NULL);
SimpleZoneObject* second = new SimpleZoneObject();
EXPECT(second != NULL);
EXPECT(first != second);
intptr_t expected_size = (2 * sizeof(SimpleZoneObject));
EXPECT_LE(expected_size, zone.SizeInBytes());
// Make sure the constructors were invoked.
EXPECT_EQ(0, first->slot);
EXPECT_EQ(1, second->slot);
// Make sure we can write to the members of the zone objects.
first->slot = 42;
second->slot = 87;
EXPECT_EQ(42, first->slot);
EXPECT_EQ(87, second->slot);
}
EXPECT(isolate->current_zone() == NULL);
isolate->Shutdown();
delete isolate;
}
TEST_CASE(PrintToString) {
Zone zone(Isolate::Current());
const char* result = zone.PrintToString("Hello %s!", "World");
EXPECT_STREQ("Hello World!", result);
}
} // namespace dart