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 {
|
|
|
|
|
|
|
|
class MallocAllocator {
|
|
|
|
public:
|
|
|
|
MallocAllocator() {}
|
|
|
|
~MallocAllocator() {}
|
|
|
|
|
2007-09-05 21:41:34 +00:00
|
|
|
void Reset() {}
|
2006-10-29 22:08:03 +00:00
|
|
|
void *Allocate(unsigned Size, unsigned Alignment) { return malloc(Size); }
|
2007-10-17 21:10:21 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2007-10-18 00:30:14 +00:00
|
|
|
void *Allocate() { return reinterpret_cast<T*>(malloc(sizeof(T))); }
|
2007-10-17 21:10:21 +00:00
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
void Deallocate(void *Ptr) { free(Ptr); }
|
|
|
|
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 {
|
|
|
|
void *TheMemory;
|
|
|
|
public:
|
|
|
|
BumpPtrAllocator();
|
|
|
|
~BumpPtrAllocator();
|
|
|
|
|
2007-09-05 21:41:34 +00:00
|
|
|
void Reset();
|
2006-10-29 22:08:03 +00:00
|
|
|
void *Allocate(unsigned Size, unsigned Alignment);
|
2007-10-17 21:10:21 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2007-10-18 00:30:14 +00:00
|
|
|
void *Allocate() {
|
2007-10-17 21:10:21 +00:00
|
|
|
return reinterpret_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-29 22:08:03 +00:00
|
|
|
void Deallocate(void *Ptr) {}
|
|
|
|
void PrintStats() const;
|
|
|
|
};
|
|
|
|
|
2007-12-14 15:11:58 +00:00
|
|
|
} // end namespace llvm
|
2006-10-29 22:08:03 +00:00
|
|
|
|
|
|
|
#endif
|