1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00
Files
hl2sdk/public/tier1/memblockallocator.h

239 lines
5.8 KiB
C++

//===== Copyright 1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//===========================================================================//
#ifndef MEMBLOCKALLOCATOR_H
#define MEMBLOCKALLOCATOR_H
#ifdef _WIN32
#pragma once
#endif
#include "tier1/rawallocator.h"
#include "tier1/utlvector.h"
// AMNOTE: Handle that contains page/subpage indexes to allocated memory within internal storage
// Stored in the following format:
// offset within page of size MEMBLOCK_PAGEOFFSET_BIT
// page index of size MEMBLOCK_PAGEINDEX_BIT
typedef unsigned int MemBlockHandle_t;
#define MEMBLOCKHANDLE_INVALID ((MemBlockHandle_t)~0)
#define MEMBLOCK_DEFAULT_PAGESIZE (0x800)
#define MEMBLOCK_PAGESIZE_SECTION1 (0x10000)
#define MEMBLOCK_PAGESIZE_SECTION2 (0x80000)
#define MEMBLOCK_PAGEINDEX_BIT (11)
#define MEMBLOCK_PAGEINDEX_MASK ((1 << MEMBLOCK_PAGEINDEX_BIT) - 1)
#define MEMBLOCK_PAGEOFFSET_BIT (21)
#define MEMBLOCK_PAGEOFFSET_MASK ((1 << MEMBLOCK_PAGEOFFSET_BIT) - 1)
class CUtlMemoryBlockAllocator
{
public:
CUtlMemoryBlockAllocator( int nInitPages = 0, unsigned int nPageSize = MEMBLOCK_DEFAULT_PAGESIZE ) :
m_nPageIndexBits( MEMBLOCK_PAGEINDEX_BIT ),
m_nPageIndexMask( MEMBLOCK_PAGEINDEX_MASK ),
m_nPageOffsetBits( MEMBLOCK_PAGEOFFSET_BIT ),
m_nPageOffsetMask( MEMBLOCK_PAGEOFFSET_MASK ),
m_MemPages( 0, nInitPages ),
m_nPageSize( nPageSize )
{}
~CUtlMemoryBlockAllocator( void )
{
Purge();
}
uint32 MaxPages() const { return (1 << m_nPageIndexBits); }
uint32 MaxPageSize() const { return (1 << m_nPageOffsetBits); }
// Clears all memory buffers preserving only nSize bytes, which would be treated like a fresh memory
void RemoveAll( size_t nSize = 0 );
void Purge( void );
MemBlockHandle_t Alloc( unsigned int nSize );
size_t MemUsage( void ) const;
void SetPageSize( unsigned int nPageSize );
void* GetBlock( MemBlockHandle_t handle ) const;
private:
MemBlockHandle_t CreateHandle( int page_idx ) const
{
Assert( page_idx >= 0 && page_idx < m_MemPages.Count() );
return (m_MemPages[page_idx].m_nUsedSize & m_nPageOffsetMask) | ((page_idx & m_nPageIndexMask) << m_nPageOffsetBits);
}
int GetPageIdxFromHandle( MemBlockHandle_t handle ) const { return (handle >> m_nPageOffsetBits) & m_nPageIndexMask; }
int GetPageOffsetFromHandle( MemBlockHandle_t handle ) const { return handle & m_nPageOffsetMask; }
int CalcPageSize( int page_idx, int requested_size ) const;
int FindPageWithSpace( unsigned int nSize ) const;
struct MemPage_t
{
unsigned int MemoryLeft() const { return m_nTotalSize - m_nUsedSize; }
unsigned int m_nTotalSize;
unsigned int m_nUsedSize;
byte *m_pMemory;
};
typedef CUtlVectorRawAllocator<MemPage_t> MemPagesVec_t;
unsigned int m_nPageIndexBits;
unsigned int m_nPageIndexMask;
unsigned int m_nPageOffsetBits;
unsigned int m_nPageOffsetMask;
MemPagesVec_t m_MemPages;
unsigned int m_nPageSize;
};
inline void CUtlMemoryBlockAllocator::RemoveAll( size_t nSize )
{
size_t accumulated_total = 0;
int removed_at = -1;
FOR_EACH_VEC( m_MemPages, i )
{
accumulated_total += m_MemPages[i].m_nTotalSize;
if(removed_at != -1 || nSize && accumulated_total > nSize)
{
CRawAllocator::Free( m_MemPages[i].m_pMemory );
if(removed_at == -1)
removed_at = i;
}
else
{
m_MemPages[i].m_nUsedSize = 0;
}
}
if(removed_at != -1)
{
m_MemPages.RemoveMultipleFromTail( m_MemPages.Count() - removed_at );
}
}
inline void CUtlMemoryBlockAllocator::Purge( void )
{
FOR_EACH_VEC( m_MemPages, i )
{
CRawAllocator::Free( m_MemPages[i].m_pMemory );
}
m_MemPages.Purge();
}
inline MemBlockHandle_t CUtlMemoryBlockAllocator::Alloc( unsigned int nSize )
{
int page_idx = FindPageWithSpace( nSize );
// Allocate new page since we can't fit in existing ones
if(page_idx == -1)
{
if(m_MemPages.Count() >= MaxPages())
return MEMBLOCKHANDLE_INVALID;
page_idx = m_MemPages.AddToTail();
int page_size = CalcPageSize( page_idx, nSize );
size_t adjusted_size = 0;
auto &page = m_MemPages[page_idx];
page.m_pMemory = (byte *)CRawAllocator::Alloc( page_size, &adjusted_size );
page.m_nTotalSize = adjusted_size;
page.m_nUsedSize = 0;
}
MemBlockHandle_t handle = CreateHandle( page_idx );
m_MemPages[page_idx].m_nUsedSize += nSize;
return handle;
}
inline size_t CUtlMemoryBlockAllocator::MemUsage( void ) const
{
size_t mem_usage = 0;
FOR_EACH_VEC( m_MemPages, i )
{
mem_usage += m_MemPages[i].m_nTotalSize;
}
return mem_usage;
}
inline void CUtlMemoryBlockAllocator::SetPageSize( unsigned int nPageSize )
{
if(nPageSize > MEMBLOCK_DEFAULT_PAGESIZE)
m_nPageSize = MIN( nPageSize, MaxPageSize() );
else
m_nPageSize = MEMBLOCK_DEFAULT_PAGESIZE;
}
inline int CUtlMemoryBlockAllocator::CalcPageSize( int page_idx, int requested_size ) const
{
int page_size = MEMBLOCK_DEFAULT_PAGESIZE;
if(page_idx >= 8)
{
if(page_idx >= 16)
page_size = MEMBLOCK_PAGESIZE_SECTION2;
else
page_size = MEMBLOCK_PAGESIZE_SECTION1;
}
page_size = MAX( page_size, m_nPageSize );
return MAX( page_size, requested_size );
}
inline int CUtlMemoryBlockAllocator::FindPageWithSpace( unsigned int nSize ) const
{
if(m_MemPages.Count() > 0)
{
if(nSize <= m_MemPages.Tail().MemoryLeft())
{
return m_MemPages.Count() - 1;
}
else
{
FOR_EACH_VEC( m_MemPages, i )
{
if(nSize <= m_MemPages[i].MemoryLeft())
return i;
}
}
}
return -1;
}
inline void* CUtlMemoryBlockAllocator::GetBlock( MemBlockHandle_t handle ) const
{
int nPageIndex = GetPageIdxFromHandle( handle );
int nPageOffset = GetPageOffsetFromHandle( handle );
if ( nPageIndex >= 0 && nPageIndex < m_MemPages.Count() )
return (void*)&m_MemPages[ nPageIndex ].m_pMemory[ nPageOffset ];
return NULL;
}
#endif // MEMBLOCKALLOCATOR_H