blob: cc3296a8d0150f0547f328c6ec2bcc52d603cc32 [file] [log] [blame]
Reid Kleckner8f51a622009-07-23 18:34:13 +00001//===- llvm/unittest/Support/AllocatorTest.cpp - BumpPtrAllocator tests ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Support/Allocator.h"
11
12#include "gtest/gtest.h"
13
14using namespace llvm;
15
16namespace {
17
18TEST(AllocatorTest, Basics) {
19 BumpPtrAllocator Alloc;
20 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
21 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
22 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
23 *a = 1;
24 b[0] = 2;
25 b[9] = 2;
26 *c = 3;
27 EXPECT_EQ(1, *a);
28 EXPECT_EQ(2, b[0]);
29 EXPECT_EQ(2, b[9]);
30 EXPECT_EQ(3, *c);
31 EXPECT_EQ(1U, Alloc.GetNumSlabs());
32}
33
34// Allocate enough bytes to create three slabs.
35TEST(AllocatorTest, ThreeSlabs) {
36 BumpPtrAllocator Alloc(4096, 4096);
37 Alloc.Allocate(3000, 0);
38 EXPECT_EQ(1U, Alloc.GetNumSlabs());
39 Alloc.Allocate(3000, 0);
40 EXPECT_EQ(2U, Alloc.GetNumSlabs());
41 Alloc.Allocate(3000, 0);
42 EXPECT_EQ(3U, Alloc.GetNumSlabs());
43}
44
45// Allocate enough bytes to create two slabs, reset the allocator, and do it
46// again.
47TEST(AllocatorTest, TestReset) {
48 BumpPtrAllocator Alloc(4096, 4096);
49 Alloc.Allocate(3000, 0);
50 EXPECT_EQ(1U, Alloc.GetNumSlabs());
51 Alloc.Allocate(3000, 0);
52 EXPECT_EQ(2U, Alloc.GetNumSlabs());
53 Alloc.Reset();
54 EXPECT_EQ(1U, Alloc.GetNumSlabs());
55 Alloc.Allocate(3000, 0);
56 EXPECT_EQ(1U, Alloc.GetNumSlabs());
57 Alloc.Allocate(3000, 0);
58 EXPECT_EQ(2U, Alloc.GetNumSlabs());
59}
60
61// Test some allocations at varying alignments.
62TEST(AllocatorTest, TestAlignment) {
63 BumpPtrAllocator Alloc;
64 uintptr_t a;
65 a = (uintptr_t)Alloc.Allocate(1, 2);
66 EXPECT_EQ(0U, a & 1);
67 a = (uintptr_t)Alloc.Allocate(1, 4);
68 EXPECT_EQ(0U, a & 3);
69 a = (uintptr_t)Alloc.Allocate(1, 8);
70 EXPECT_EQ(0U, a & 7);
71 a = (uintptr_t)Alloc.Allocate(1, 16);
72 EXPECT_EQ(0U, a & 15);
73 a = (uintptr_t)Alloc.Allocate(1, 32);
74 EXPECT_EQ(0U, a & 31);
75 a = (uintptr_t)Alloc.Allocate(1, 64);
76 EXPECT_EQ(0U, a & 63);
77 a = (uintptr_t)Alloc.Allocate(1, 128);
78 EXPECT_EQ(0U, a & 127);
79}
80
81// Test allocating just over the slab size. This tests a bug where before the
82// allocator incorrectly calculated the buffer end pointer.
83TEST(AllocatorTest, TestOverflow) {
84 BumpPtrAllocator Alloc(4096, 4096);
85
86 // Fill the slab right up until the end pointer.
87 Alloc.Allocate(4096 - sizeof(MemSlab), 0);
88 EXPECT_EQ(1U, Alloc.GetNumSlabs());
89
90 // If we dont't allocate a new slab, then we will have overflowed.
91 Alloc.Allocate(1, 0);
92 EXPECT_EQ(2U, Alloc.GetNumSlabs());
93}
94
95} // anonymous namespace