CPU/CodeCache: Call Block constructor/destructor

Fixes crash in MSVC Debug build.
This commit is contained in:
Stenzek 2023-11-29 19:16:32 +10:00
parent 03592e8de8
commit 8ce2be57c5
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

@ -442,6 +442,7 @@ CPU::CodeCache::Block* CPU::CodeCache::CreateBlock(u32 pc, const BlockInstructio
Assert(it != s_blocks.end());
s_blocks.erase(it);
block->~Block();
std::free(block);
block = nullptr;
}
@ -452,6 +453,7 @@ CPU::CodeCache::Block* CPU::CodeCache::CreateBlock(u32 pc, const BlockInstructio
block =
static_cast<Block*>(std::malloc(sizeof(Block) + (sizeof(Instruction) * size) + (sizeof(InstructionInfo) * size)));
Assert(block);
new (block) Block();
s_blocks.push_back(block);
}
@ -710,7 +712,10 @@ void CPU::CodeCache::ClearBlocks()
#endif
for (Block* block : s_blocks)
{
block->~Block();
std::free(block);
}
s_blocks.clear();
std::memset(s_lut_block_pointers.get(), 0, sizeof(Block*) * GetLUTSlotCount(false));