1
0
mirror of https://github.com/RPCS3/rpcs3 synced 2024-07-08 19:56:08 +00:00

rsx: Fix invalid iterator comparison (asserts on debug builds)

Also make ranged_map::count const
This commit is contained in:
Megamouse 2024-03-10 21:03:53 +01:00
parent b176085e14
commit d8d0af2bb3
2 changed files with 11 additions and 10 deletions

View File

@ -128,7 +128,7 @@ namespace rsx
public:
bool operator == (const iterator& other) const
{
return m_it == other.m_it;
return m_current == other.m_current && m_it == other.m_it;
}
auto* operator -> ()
@ -183,10 +183,10 @@ namespace rsx
m_data[block_for(range.start)].insert_or_assign(range.start, std::forward<T>(value));
}
usz count(const u32 key)
usz count(const u32 key) const
{
auto& block = m_data[block_for(key)];
if (auto found = block.find(key);
const auto& block = m_data[block_for(key)];
if (const auto found = block.find(key);
found != block.end())
{
return 1;

View File

@ -353,7 +353,7 @@ namespace rsx
// If this surface has already been added via another descendant, just ignore it
bool ignore = false;
for (auto &slice : new_surface->old_contents)
for (const auto& slice : new_surface->old_contents)
{
if (slice.source == surface)
{
@ -374,8 +374,8 @@ namespace rsx
surface == e.second)
{
// This has been 'swallowed' by the new surface and can be safely freed
auto &storage = surface->is_depth_surface() ? m_depth_stencil_storage : m_render_targets_storage;
auto &object = ::at32(storage, e.first);
auto& storage = surface->is_depth_surface() ? m_depth_stencil_storage : m_render_targets_storage;
auto& object = ::at32(storage, e.first);
ensure(object);
@ -411,8 +411,9 @@ namespace rsx
// Workaround. Preserve new surface tag value because pitch convert is unimplemented
u64 new_content_tag = 0;
address_range *storage_bounds;
surface_ranged_map *primary_storage, *secondary_storage;
address_range* storage_bounds;
surface_ranged_map* primary_storage;
surface_ranged_map* secondary_storage;
if constexpr (depth)
{
primary_storage = &m_depth_stencil_storage;
@ -430,7 +431,7 @@ namespace rsx
auto It = primary_storage->find(address);
if (It != primary_storage->end())
{
surface_storage_type &surface = It->second;
surface_storage_type& surface = It->second;
const bool pitch_compatible = Traits::surface_is_pitch_compatible(surface, pitch);
if (!pitch_compatible)