Fold the useful features of alist and alist_node into ilist, and
[oota-llvm.git] / include / llvm / Support / Allocator.h
index ffe0d39e521dac022882615669bcaf6e1870a146..bc3653503caf8715ccc7fce2f0f136e789151f84 100644 (file)
@@ -41,6 +41,9 @@ public:
 /// 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 {
+  BumpPtrAllocator(const BumpPtrAllocator &); // do not implement
+  void operator=(const BumpPtrAllocator &);   // do not implement
+
   void *TheMemory;
 public:
   BumpPtrAllocator();
@@ -55,7 +58,12 @@ public:
     return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
   }
   
-  void Deallocate(void */*Ptr*/) {}
+  template <typename T>
+  T *Allocate(size_t Num) { 
+    return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
+  }
+  
+  void Deallocate(void * /*Ptr*/) {}
 
   void PrintStats() const;
 };