Files
sdk/runtime/vm/heap/pages_test.cc
T
Ryan Macnak 8da46d35f5 [vm] Move heap-related code to its own subdirectory (cf. compiler).
Remove some dead includes.

Change-Id: I31f3e739e5ee46dcbba5d6a2f091491b46402943
Reviewed-on: https://dart-review.googlesource.com/60146
Reviewed-by: Zach Anderson <zra@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
2018-06-20 00:39:49 +00:00

35 lines
1.0 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 "vm/heap/pages.h"
#include "platform/assert.h"
#include "vm/unit_test.h"
namespace dart {
TEST_CASE(Pages) {
PageSpace* space = new PageSpace(NULL, 4 * MBInWords);
EXPECT(!space->Contains(reinterpret_cast<uword>(&space)));
uword block = space->TryAllocate(8 * kWordSize);
EXPECT(block != 0);
uword total = 0;
while (total < 2 * MB) {
const intptr_t kBlockSize = 16 * kWordSize;
uword new_block = space->TryAllocate(kBlockSize);
EXPECT(block != 0);
EXPECT(block != new_block);
EXPECT(space->IsValidAddress(new_block));
block = new_block;
total += kBlockSize;
}
// Allocate a large block.
uword large_block = space->TryAllocate(1 * MB);
EXPECT(large_block != 0);
EXPECT(block != large_block);
EXPECT(space->IsValidAddress(large_block));
delete space;
}
} // namespace dart