Skip to content

Commit

Permalink
CPU/CodeCache: Add InvalidateAll() method
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Dec 25, 2021
1 parent fe2062f commit c440593
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 24 deletions.
65 changes: 41 additions & 24 deletions src/core/cpu_code_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -836,44 +836,61 @@ void InvalidCodeFunction()

#endif

void InvalidateBlocksWithPageIndex(u32 page_index)
static void InvalidateBlock(CodeBlock* block)
{
DebugAssert(page_index < Bus::RAM_8MB_CODE_PAGE_COUNT);
auto& blocks = m_ram_block_map[page_index];
for (CodeBlock* block : blocks)
{
// Invalidate forces the block to be checked again.
Log_DebugPrintf("Invalidating block at 0x%08X", block->GetPC());
block->invalidated = true;
// Invalidate forces the block to be checked again.
Log_DebugPrintf("Invalidating block at 0x%08X", block->GetPC());
block->invalidated = true;

if (block->can_link)
if (block->can_link)
{
const u32 frame_number = System::GetFrameNumber();
const u32 frame_diff = frame_number - block->invalidate_frame_number;
if (frame_diff <= INVALIDATE_THRESHOLD_TO_DISABLE_LINKING)
{
const u32 frame_number = System::GetFrameNumber();
const u32 frame_diff = frame_number - block->invalidate_frame_number;
if (frame_diff <= INVALIDATE_THRESHOLD_TO_DISABLE_LINKING)
{
Log_DevPrintf("Block 0x%08X has been invalidated in %u frames, disabling linking", block->GetPC(), frame_diff);
block->can_link = false;
}
else
{
// It's been a while since this block was modified, so it's all good.
block->invalidate_frame_number = frame_number;
}
Log_DevPrintf("Block 0x%08X has been invalidated in %u frames, disabling linking", block->GetPC(), frame_diff);
block->can_link = false;
}
else
{
// It's been a while since this block was modified, so it's all good.
block->invalidate_frame_number = frame_number;
}
}

UnlinkBlock(block);
UnlinkBlock(block);

#ifdef WITH_RECOMPILER
SetFastMap(block->GetPC(), FastCompileBlockFunction);
SetFastMap(block->GetPC(), FastCompileBlockFunction);
#endif
}
}

void InvalidateBlocksWithPageIndex(u32 page_index)
{
DebugAssert(page_index < Bus::RAM_8MB_CODE_PAGE_COUNT);
auto& blocks = m_ram_block_map[page_index];
for (CodeBlock* block : blocks)
InvalidateBlock(block);

// Block will be re-added next execution.
blocks.clear();
Bus::ClearRAMCodePage(page_index);
}

void InvalidateAll()
{
for (auto& it : s_blocks)
{
CodeBlock* block = it.second;
if (block && !block->invalidated)
InvalidateBlock(block);
}

Bus::ClearRAMCodePageFlags();
for (auto& it : m_ram_block_map)
it.clear();
}

void RemoveReferencesToBlock(CodeBlock* block)
{
BlockMap::iterator iter = s_blocks.find(block->key.GetPC());
Expand Down
3 changes: 3 additions & 0 deletions src/core/cpu_code_cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@ void Reinitialize();
/// Invalidates all blocks which are in the range of the specified code page.
void InvalidateBlocksWithPageIndex(u32 page_index);

/// Invalidates all blocks in the cache.
void InvalidateAll();

template<PGXPMode pgxp_mode>
void InterpretCachedBlock(const CodeBlock& block);

Expand Down

0 comments on commit c440593

Please sign in to comment.