aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-03-01 20:36:32 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-03-01 20:36:32 +0000
commit680458275fd6c05ce3683d86483eff1254d0df80 (patch)
tree41916d8fc358650bb6939fd2951995d3e9e46a95 /lib/Support
parentfa2ab3e4abcecebb8d9a6d8822d8b4beef02bd74 (diff)
downloadexternal_llvm-680458275fd6c05ce3683d86483eff1254d0df80.zip
external_llvm-680458275fd6c05ce3683d86483eff1254d0df80.tar.gz
external_llvm-680458275fd6c05ce3683d86483eff1254d0df80.tar.bz2
If BumpPtrAllocator is requested to allocate a size that exceeds the slab size,
increase the slab size. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/Allocator.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Support/Allocator.cpp b/lib/Support/Allocator.cpp
index 215b0f2..8bb0740 100644
--- a/lib/Support/Allocator.cpp
+++ b/lib/Support/Allocator.cpp
@@ -87,15 +87,21 @@ 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);
@@ -106,7 +112,6 @@ 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);