1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
//===--- StackAllocator.cpp - Unit tests for the StackAllocator -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "../../stdlib/public/runtime/StackAllocator.h"
#include "swift/ABI/Metadata.h"
#include "gtest/gtest.h"
using namespace swift;
static constexpr size_t slabCapacity = 256;
static constexpr size_t firstSlabBufferCapacity = 140;
static constexpr size_t fitsIntoFirstSlab = 16;
static constexpr size_t fitsIntoSlab = slabCapacity - 16;
static constexpr size_t twoFitIntoSlab = slabCapacity / 2 - 32;
static constexpr size_t exceedsSlab = slabCapacity + 16;
static Metadata SlabMetadata;
TEST(StackAllocatorTest, withPreallocatedSlab) {
char firstSlab[firstSlabBufferCapacity];
StackAllocator<slabCapacity, &SlabMetadata> allocator(
firstSlab, firstSlabBufferCapacity);
char *mem1 = (char *)allocator.alloc(fitsIntoFirstSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 0);
char *mem1a = (char *)allocator.alloc(fitsIntoFirstSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 0);
char *mem2 = (char *)allocator.alloc(exceedsSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 1);
char *mem3 = (char *)allocator.alloc(fitsIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 2);
char *mem4 = (char *)allocator.alloc(fitsIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
allocator.dealloc(mem4);
allocator.dealloc(mem3);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
char *mem5 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
char *mem6 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
char *mem7 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
allocator.dealloc(mem7);
allocator.dealloc(mem6);
allocator.dealloc(mem5);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
char *mem8 = (char *)allocator.alloc(exceedsSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 2);
allocator.dealloc(mem8);
allocator.dealloc(mem2);
allocator.dealloc(mem1a);
allocator.dealloc(mem1);
}
TEST(StackAllocatorTest, withoutPreallocatedSlab) {
constexpr size_t slabCapacity = 256;
StackAllocator<slabCapacity, &SlabMetadata> allocator;
size_t fitsIntoSlab = slabCapacity - 16;
size_t twoFitIntoSlab = slabCapacity / 2 - 32;
size_t exceedsSlab = slabCapacity + 16;
char *mem1 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 1);
char *mem1a = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 1);
char *mem2 = (char *)allocator.alloc(exceedsSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 2);
char *mem3 = (char *)allocator.alloc(fitsIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
char *mem4 = (char *)allocator.alloc(fitsIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
allocator.dealloc(mem4);
allocator.dealloc(mem3);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
char *mem5 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
char *mem6 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
char *mem7 = (char *)allocator.alloc(twoFitIntoSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
allocator.dealloc(mem7);
allocator.dealloc(mem6);
allocator.dealloc(mem5);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 4);
char *mem8 = (char *)allocator.alloc(exceedsSlab);
EXPECT_EQ(allocator.getNumAllocatedSlabs(), 3);
allocator.dealloc(mem8);
allocator.dealloc(mem2);
allocator.dealloc(mem1a);
allocator.dealloc(mem1);
}
|