ddnet/src/engine/shared/memheap.cpp

108 lines
2.1 KiB
C++
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#include "memheap.h"
#include <base/system.h>
2021-05-27 17:35:20 +00:00
#include <cstdint>
2010-05-29 07:25:38 +00:00
// allocates a new chunk to be used
void CHeap::NewChunk()
{
CChunk *pChunk;
char *pMem;
2010-05-29 07:25:38 +00:00
// allocate memory
pMem = (char *)malloc(sizeof(CChunk) + CHUNK_SIZE);
2010-05-29 07:25:38 +00:00
if(!pMem)
return;
2018-02-04 15:00:47 +00:00
// the chunk structure is located in the beginning of the chunk
2010-05-29 07:25:38 +00:00
// init it and return the chunk
pChunk = (CChunk *)pMem;
pChunk->m_pMemory = (char *)(pChunk + 1);
2010-05-29 07:25:38 +00:00
pChunk->m_pCurrent = pChunk->m_pMemory;
pChunk->m_pEnd = pChunk->m_pMemory + CHUNK_SIZE;
pChunk->m_pNext = (CChunk *)0x0;
pChunk->m_pNext = m_pCurrent;
m_pCurrent = pChunk;
2010-05-29 07:25:38 +00:00
}
//****************
2021-05-27 17:35:20 +00:00
void *CHeap::AllocateFromChunk(unsigned int Size, unsigned Alignment)
2010-05-29 07:25:38 +00:00
{
char *pMem;
2021-05-27 17:35:20 +00:00
size_t Offset = reinterpret_cast<uintptr_t>(m_pCurrent->m_pCurrent) % Alignment;
if(Offset)
Offset = Alignment - Offset;
2010-05-29 07:25:38 +00:00
// check if we need can fit the allocation
2021-05-27 17:35:20 +00:00
if(m_pCurrent->m_pCurrent + Offset + Size > m_pCurrent->m_pEnd)
return (void *)0x0;
2010-05-29 07:25:38 +00:00
// get memory and move the pointer forward
2021-05-27 17:35:20 +00:00
pMem = m_pCurrent->m_pCurrent + Offset;
m_pCurrent->m_pCurrent += Offset + Size;
2010-05-29 07:25:38 +00:00
return pMem;
}
// creates a heap
CHeap::CHeap()
{
m_pCurrent = 0x0;
Reset();
}
CHeap::~CHeap()
{
Clear();
}
void CHeap::Reset()
{
Clear();
NewChunk();
}
// destroys the heap
void CHeap::Clear()
{
CChunk *pChunk = m_pCurrent;
CChunk *pNext;
2010-05-29 07:25:38 +00:00
while(pChunk)
{
pNext = pChunk->m_pNext;
free(pChunk);
2010-05-29 07:25:38 +00:00
pChunk = pNext;
}
2010-05-29 07:25:38 +00:00
m_pCurrent = 0x0;
}
//
2021-05-27 17:35:20 +00:00
void *CHeap::Allocate(unsigned Size, unsigned Alignment)
2010-05-29 07:25:38 +00:00
{
char *pMem;
// try to allocate from current chunk
2021-05-27 17:35:20 +00:00
pMem = (char *)AllocateFromChunk(Size, Alignment);
2010-05-29 07:25:38 +00:00
if(!pMem)
{
// allocate new chunk and add it to the heap
NewChunk();
2010-05-29 07:25:38 +00:00
// try to allocate again
2021-05-27 17:35:20 +00:00
pMem = (char *)AllocateFromChunk(Size, Alignment);
2010-05-29 07:25:38 +00:00
}
2010-05-29 07:25:38 +00:00
return pMem;
}
2022-03-06 15:45:12 +00:00
const char *CHeap::StoreString(const char *pSrc)
{
const int Size = str_length(pSrc) + 1;
char *pMem = static_cast<char *>(Allocate(Size));
str_copy(pMem, pSrc, Size);
return pMem;
}