2006-10-29 22:08:03 +00:00
|
|
|
//===--- Allocator.h - Simple memory allocation abstraction -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-10-29 22:08:03 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the MallocAllocator and BumpPtrAllocator interfaces.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_ALLOCATOR_H
|
|
|
|
#define LLVM_SUPPORT_ALLOCATOR_H
|
|
|
|
|
2007-10-17 21:10:21 +00:00
|
|
|
#include "llvm/Support/AlignOf.h"
|
2006-10-29 22:08:03 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
class MallocAllocator {
|
|
|
|
public:
|
|
|
|
MallocAllocator() {}
|
|
|
|
~MallocAllocator() {}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2007-09-05 21:41:34 +00:00
|
|
|
void Reset() {}
|
2008-06-24 17:49:26 +00:00
|
|
|
|
2008-06-26 18:11:45 +00:00
|
|
|
void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2007-10-17 21:10:21 +00:00
|
|
|
template <typename T>
|
2008-06-24 17:49:26 +00:00
|
|
|
T *Allocate() { return static_cast<T*>(malloc(sizeof(T))); }
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-01-14 00:38:21 +00:00
|
|
|
template <typename T>
|
2009-02-20 22:51:36 +00:00
|
|
|
T *Allocate(size_t Num) {
|
2009-01-14 00:38:21 +00:00
|
|
|
return static_cast<T*>(malloc(sizeof(T)*Num));
|
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-02-06 19:34:14 +00:00
|
|
|
void Deallocate(const void *Ptr) { free(const_cast<void*>(Ptr)); }
|
2008-06-24 17:49:26 +00:00
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
void PrintStats() const {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// BumpPtrAllocator - This allocator is useful for containers that need very
|
|
|
|
/// simple memory allocation strategies. In particular, this just keeps
|
|
|
|
/// allocating memory, and never deletes it until the entire block is dead. This
|
|
|
|
/// makes allocation speedy, but must only be used when the trade-off is ok.
|
|
|
|
class BumpPtrAllocator {
|
2008-07-07 18:38:14 +00:00
|
|
|
BumpPtrAllocator(const BumpPtrAllocator &); // do not implement
|
|
|
|
void operator=(const BumpPtrAllocator &); // do not implement
|
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
void *TheMemory;
|
|
|
|
public:
|
|
|
|
BumpPtrAllocator();
|
|
|
|
~BumpPtrAllocator();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2007-09-05 21:41:34 +00:00
|
|
|
void Reset();
|
2008-06-24 17:49:26 +00:00
|
|
|
|
2008-05-05 18:30:58 +00:00
|
|
|
void *Allocate(size_t Size, size_t Alignment);
|
2007-10-17 21:10:21 +00:00
|
|
|
|
2009-02-03 07:39:50 +00:00
|
|
|
/// Allocate space, but do not construct, one object.
|
|
|
|
///
|
2007-10-17 21:10:21 +00:00
|
|
|
template <typename T>
|
2009-02-20 22:51:36 +00:00
|
|
|
T *Allocate() {
|
2008-06-24 17:49:26 +00:00
|
|
|
return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
|
2007-10-17 21:10:21 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-02-03 07:39:50 +00:00
|
|
|
/// Allocate space for an array of objects. This does not construct the
|
|
|
|
/// objects though.
|
2008-07-17 19:10:17 +00:00
|
|
|
template <typename T>
|
2009-02-20 22:51:36 +00:00
|
|
|
T *Allocate(size_t Num) {
|
2008-07-17 19:10:17 +00:00
|
|
|
return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
|
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-02-03 07:39:50 +00:00
|
|
|
/// Allocate space for a specific count of elements and with a specified
|
|
|
|
/// alignment.
|
|
|
|
template <typename T>
|
2009-03-10 23:48:49 +00:00
|
|
|
T *Allocate(size_t Num, size_t Alignment) {
|
2009-02-03 07:39:50 +00:00
|
|
|
// Round EltSize up to the specified alignment.
|
2009-03-10 23:48:49 +00:00
|
|
|
size_t EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
|
2009-02-03 07:39:50 +00:00
|
|
|
return static_cast<T*>(Allocate(Num * EltSize, Alignment));
|
|
|
|
}
|
2009-02-06 19:34:14 +00:00
|
|
|
|
|
|
|
void Deallocate(const void * /*Ptr*/) {}
|
2008-06-24 17:49:26 +00:00
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
void PrintStats() const;
|
|
|
|
};
|
|
|
|
|
2007-12-14 15:11:58 +00:00
|
|
|
} // end namespace llvm
|
2006-10-29 22:08:03 +00:00
|
|
|
|
|
|
|
#endif
|