File freelistheap.h¶
File List > buildingblock > freelistheap.h
Go to the documentation of this file
/* -*- C++ -*- */
/*
Heap Layers: An Extensible Memory Allocation Infrastructure
Copyright (C) 2000-2020 by Emery Berger
http://www.emeryberger.com
emery@cs.umass.edu
Heap Layers is distributed under the terms of the Apache 2.0 license.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
*/
#ifndef HL_FREELISTHEAP_H
#define HL_FREELISTHEAP_H
#include <assert.h>
#include "utility/freesllist.h"
#ifndef NULL
#define NULL 0
#endif
namespace HL {
template <class SuperHeap>
class FreelistHeap : public SuperHeap {
public:
inline void * malloc (size_t sz) {
// Check the free list first.
void * ptr = _freelist.get();
// If it's empty, get more memory;
// otherwise, advance the free list pointer.
if (ptr == 0) {
ptr = SuperHeap::malloc (sz);
}
return ptr;
}
inline void free (void * ptr) {
if (ptr == 0) {
return;
}
_freelist.insert (ptr);
}
inline void clear (void) {
void * ptr;
while ((ptr = _freelist.get())) {
SuperHeap::free (ptr);
}
}
private:
FreeSLList _freelist;
};
}
#endif