The A64 sequence table is populated by registration statics spread across multiple translation units. Keeping the backing map as a global object makes registration depend on cross-TU initialization order and can hit the table before it has been constructed. Move the sequence table behind a function-local static so sequence registration is safe regardless of which unit initializes first.
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2026 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_CPU_BACKEND_A64_A64_SEQUENCES_H_
|
|
#define XENIA_CPU_BACKEND_A64_A64_SEQUENCES_H_
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "xenia/cpu/hir/instr.h"
|
|
|
|
namespace xe {
|
|
namespace cpu {
|
|
namespace backend {
|
|
namespace a64 {
|
|
|
|
class A64Emitter;
|
|
|
|
typedef bool (*SequenceSelectFn)(A64Emitter&, const hir::Instr*, uint32_t ikey);
|
|
std::unordered_map<uint32_t, SequenceSelectFn>& SequenceTable();
|
|
|
|
template <typename T>
|
|
bool Register() {
|
|
SequenceTable().insert({T::head_key(), T::Select});
|
|
return true;
|
|
}
|
|
|
|
template <typename T, typename Tn, typename... Ts>
|
|
static bool Register() {
|
|
bool b = true;
|
|
b = b && Register<T>();
|
|
b = b && Register<Tn, Ts...>();
|
|
return b;
|
|
}
|
|
|
|
#define EMITTER_OPCODE_TABLE(name, ...) \
|
|
const auto A64_INSTR_##name = Register<__VA_ARGS__>();
|
|
|
|
bool SelectSequence(A64Emitter* e, const hir::Instr* i,
|
|
const hir::Instr** new_tail);
|
|
|
|
} // namespace a64
|
|
} // namespace backend
|
|
} // namespace cpu
|
|
} // namespace xe
|
|
|
|
#endif // XENIA_CPU_BACKEND_A64_A64_SEQUENCES_H_
|