mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-15 00:42:20 +00:00
- use a memory arena to allocate msecnodes.
These are rather small and extremely frequently allocated, so they are prime candidates for memory arena, because it not only avoids fragmentation and internal overhead due to mass allocation of small memory blocks but it also makes it a lot faster to free the memory when finishing a level.
This commit is contained in:
parent
09419524f7
commit
6c1fcdc34b
2 changed files with 8 additions and 12 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "r_state.h"
|
||||
#include "p_maputl.h"
|
||||
#include "p_blockmap.h"
|
||||
#include "memarena.h"
|
||||
|
||||
//=============================================================================
|
||||
// phares 3/21/98
|
||||
|
@ -32,6 +33,7 @@
|
|||
//=============================================================================
|
||||
|
||||
msecnode_t *headsecnode = NULL;
|
||||
FMemArena secnodearena;
|
||||
|
||||
//=============================================================================
|
||||
//
|
||||
|
@ -53,7 +55,8 @@ msecnode_t *P_GetSecnode()
|
|||
}
|
||||
else
|
||||
{
|
||||
node = (msecnode_t *)M_Malloc(sizeof(*node));
|
||||
node =
|
||||
node = (msecnode_t *)secnodearena.Alloc(sizeof(*node));
|
||||
}
|
||||
return node;
|
||||
}
|
||||
|
|
|
@ -3557,6 +3557,7 @@ void P_FreeLevelData ()
|
|||
P_ClearUDMFKeys();
|
||||
}
|
||||
|
||||
extern FMemArena secnodearena;
|
||||
extern msecnode_t *headsecnode;
|
||||
|
||||
void P_FreeExtraLevelData()
|
||||
|
@ -3574,18 +3575,10 @@ void P_FreeExtraLevelData()
|
|||
}
|
||||
FBlockNode::FreeBlocks = NULL;
|
||||
}
|
||||
{
|
||||
msecnode_t *node = headsecnode;
|
||||
secnodearena.FreeAllBlocks();
|
||||
headsecnode = nullptr;
|
||||
}
|
||||
|
||||
while (node != NULL)
|
||||
{
|
||||
msecnode_t *next = node->m_snext;
|
||||
M_Free (node);
|
||||
node = next;
|
||||
}
|
||||
headsecnode = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// P_SetupLevel
|
||||
|
|
Loading…
Reference in a new issue