diff --git a/src/backend/A64/block_range_information.cpp b/src/backend/A64/block_range_information.cpp new file mode 100644 index 00000000..1f85c861 --- /dev/null +++ b/src/backend/A64/block_range_information.cpp @@ -0,0 +1,45 @@ +/* This file is part of the dynarmic project. + * Copyright (c) 2018 MerryMage + * This software may be used and distributed according to the terms of the GNU + * General Public License version 2 or any later version. + */ + +#include + +#include +#include + +#include "backend/A64/block_range_information.h" +#include "common/common_types.h" + +namespace Dynarmic::BackendA64 { + +template +void BlockRangeInformation::AddRange(boost::icl::discrete_interval range, IR::LocationDescriptor location) { + block_ranges.add(std::make_pair(range, std::set{location})); +} + +template +void BlockRangeInformation::ClearCache() { + block_ranges.clear(); +} + +template +std::unordered_set BlockRangeInformation::InvalidateRanges(const boost::icl::interval_set& ranges) { + std::unordered_set erase_locations; + for (auto invalidate_interval : ranges) { + auto pair = block_ranges.equal_range(invalidate_interval); + for (auto it = pair.first; it != pair.second; ++it) { + for (const auto &descriptor : it->second) { + erase_locations.insert(descriptor); + } + } + } + // TODO: EFFICIENCY: Remove ranges that are to be erased. + return erase_locations; +} + +template class BlockRangeInformation; +template class BlockRangeInformation; + +} // namespace Dynarmic::BackendA64 diff --git a/src/backend/A64/block_range_information.h b/src/backend/A64/block_range_information.h new file mode 100644 index 00000000..f9d94315 --- /dev/null +++ b/src/backend/A64/block_range_information.h @@ -0,0 +1,29 @@ +/* This file is part of the dynarmic project. + * Copyright (c) 2018 MerryMage + * This software may be used and distributed according to the terms of the GNU + * General Public License version 2 or any later version. + */ + +#pragma once + +#include + +#include +#include + +#include "frontend/ir/location_descriptor.h" + +namespace Dynarmic::BackendA64 { + +template +class BlockRangeInformation { +public: + void AddRange(boost::icl::discrete_interval range, IR::LocationDescriptor location); + void ClearCache(); + std::unordered_set InvalidateRanges(const boost::icl::interval_set& ranges); + +private: + boost::icl::interval_map> block_ranges; +}; + +} // namespace Dynarmic::BackendA64