diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-01 22:10:16 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-01 22:10:16 +0000 |
commit | f7e02a0cabe78bb20d3b27a1337c266399f93c41 (patch) | |
tree | df3aa97a2326ad3781b930f1d16122bbb5a83288 /llvm/lib/Support/Allocator.cpp | |
parent | c1e4dd0e8e6ec8b638bc87ee6dd55f114a4d0e2f (diff) | |
download | bcm5719-llvm-f7e02a0cabe78bb20d3b27a1337c266399f93c41.tar.gz bcm5719-llvm-f7e02a0cabe78bb20d3b27a1337c266399f93c41.zip |
BumpPtrAllocator: Make sure threshold cannot be initialized with a value smaller than the slab size.
This replaces r151834 with a simpler fix.
llvm-svn: 151842
Diffstat (limited to 'llvm/lib/Support/Allocator.cpp')
-rw-r--r-- | llvm/lib/Support/Allocator.cpp | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/llvm/lib/Support/Allocator.cpp b/llvm/lib/Support/Allocator.cpp index 8bb07405ec6..b8978302e74 100644 --- a/llvm/lib/Support/Allocator.cpp +++ b/llvm/lib/Support/Allocator.cpp @@ -22,8 +22,8 @@ namespace llvm { BumpPtrAllocator::BumpPtrAllocator(size_t size, size_t threshold, SlabAllocator &allocator) - : SlabSize(size), SizeThreshold(threshold), Allocator(allocator), - CurSlab(0), BytesAllocated(0) { } + : SlabSize(size), SizeThreshold(std::min(size, threshold)), + Allocator(allocator), CurSlab(0), BytesAllocated(0) { } BumpPtrAllocator::~BumpPtrAllocator() { DeallocateSlabs(CurSlab); @@ -87,21 +87,15 @@ void BumpPtrAllocator::Reset() { /// Allocate - Allocate space at the specified alignment. /// void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { - // 0-byte alignment means 1-byte alignment. - if (Alignment == 0) Alignment = 1; - - size_t PaddedSize = Size + sizeof(MemSlab) + Alignment - 1; - - // If requested size exceeds slab size, increase slab size. - while (PaddedSize > SlabSize) - SlabSize *= 2; - if (!CurSlab) // Start a new slab if we haven't allocated one already. StartNewSlab(); // Keep track of how many bytes we've allocated. BytesAllocated += Size; + // 0-byte alignment means 1-byte alignment. + if (Alignment == 0) Alignment = 1; + // Allocate the aligned space, going forwards from CurPtr. char *Ptr = AlignPtr(CurPtr, Alignment); @@ -112,6 +106,7 @@ void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { } // If Size is really big, allocate a separate slab for it. + size_t PaddedSize = Size + sizeof(MemSlab) + Alignment - 1; if (PaddedSize > SizeThreshold) { MemSlab *NewSlab = Allocator.Allocate(PaddedSize); |