mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 12:15:45 +00:00

Co-authored-by: Esther1024 <danishreyjavik@outlook.com> Co-authored-by: lizzie <lizzie@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/24 Co-authored-by: Ghost <> Co-committed-by: Ghost <>
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*
|
|
* Original version of table by Lioncash.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
#include <mcl/bit/bit_count.hpp>
|
|
#include <mcl/stdint.hpp>
|
|
|
|
#include "dynarmic/frontend/decoder/decoder_detail.h"
|
|
#include "dynarmic/frontend/decoder/matcher.h"
|
|
|
|
namespace Dynarmic::A32 {
|
|
|
|
template<typename Visitor>
|
|
using ArmMatcher = Decoder::Matcher<Visitor, u32>;
|
|
|
|
template<typename Visitor>
|
|
using ArmDecodeTable = std::array<std::vector<ArmMatcher<Visitor>>, 0x1000>;
|
|
|
|
namespace detail {
|
|
inline size_t ToFastLookupIndexArm(u32 instruction) {
|
|
return ((instruction >> 4) & 0x00F) | ((instruction >> 16) & 0xFF0);
|
|
}
|
|
} // namespace detail
|
|
|
|
template<typename V>
|
|
constexpr ArmDecodeTable<V> GetArmDecodeTable() {
|
|
std::vector<ArmMatcher<V>> list = {
|
|
#define INST(fn, name, bitstring) DYNARMIC_DECODER_GET_MATCHER(ArmMatcher, fn, name, Decoder::detail::StringToArray<32>(bitstring)),
|
|
#include "./arm.inc"
|
|
#undef INST
|
|
};
|
|
|
|
// If a matcher has more bits in its mask it is more specific, so it should come first.
|
|
std::stable_sort(list.begin(), list.end(), [](const auto& matcher1, const auto& matcher2) {
|
|
return mcl::bit::count_ones(matcher1.GetMask()) > mcl::bit::count_ones(matcher2.GetMask());
|
|
});
|
|
|
|
ArmDecodeTable<V> table{};
|
|
for (size_t i = 0; i < table.size(); ++i) {
|
|
for (auto matcher : list) {
|
|
const auto expect = detail::ToFastLookupIndexArm(matcher.GetExpected());
|
|
const auto mask = detail::ToFastLookupIndexArm(matcher.GetMask());
|
|
if ((i & mask) == expect) {
|
|
table[i].push_back(matcher);
|
|
}
|
|
}
|
|
}
|
|
return table;
|
|
}
|
|
|
|
template<typename V>
|
|
std::optional<std::reference_wrapper<const ArmMatcher<V>>> DecodeArm(u32 instruction) {
|
|
alignas(64) static const auto table = GetArmDecodeTable<V>();
|
|
const auto matches_instruction = [instruction](const auto& matcher) {
|
|
return matcher.Matches(instruction);
|
|
};
|
|
|
|
const auto& subtable = table[detail::ToFastLookupIndexArm(instruction)];
|
|
auto iter = std::find_if(subtable.begin(), subtable.end(), matches_instruction);
|
|
return iter != subtable.end() ? std::optional<std::reference_wrapper<const ArmMatcher<V>>>(*iter) : std::nullopt;
|
|
}
|
|
|
|
} // namespace Dynarmic::A32
|