93c289b54f
Replace std::unordered_map and std::unordered_set with the above. Better performance profile.
29 lines
811 B
C++
29 lines
811 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <set>
|
|
|
|
#include <boost/icl/interval_map.hpp>
|
|
#include <boost/icl/interval_set.hpp>
|
|
#include <tsl/robin_set.h>
|
|
|
|
#include "frontend/ir/location_descriptor.h"
|
|
|
|
namespace Dynarmic::Backend::X64 {
|
|
|
|
template <typename ProgramCounterType>
|
|
class BlockRangeInformation {
|
|
public:
|
|
void AddRange(boost::icl::discrete_interval<ProgramCounterType> range, IR::LocationDescriptor location);
|
|
void ClearCache();
|
|
tsl::robin_set<IR::LocationDescriptor> InvalidateRanges(const boost::icl::interval_set<ProgramCounterType>& ranges);
|
|
|
|
private:
|
|
boost::icl::interval_map<ProgramCounterType, std::set<IR::LocationDescriptor>> block_ranges;
|
|
};
|
|
|
|
} // namespace Dynarmic::Backend::X64
|