dynarmic/src/backend/x64/a64_jitstate.h

89 lines
2.1 KiB
C
Raw Normal View History

2018-01-06 21:15:25 +00:00
/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
2020-04-23 15:25:11 +01:00
* SPDX-License-Identifier: 0BSD
2018-01-06 21:15:25 +00:00
*/
#pragma once
#include <array>
#include <xbyak.h>
#include "backend/x64/nzcv_util.h"
2018-01-06 21:15:25 +00:00
#include "common/common_types.h"
#include "frontend/A64/location_descriptor.h"
2018-01-06 21:15:25 +00:00
namespace Dynarmic::Backend::X64 {
2018-01-06 21:15:25 +00:00
class BlockOfCode;
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4324) // Structure was padded due to alignment specifier
#endif
struct A64JitState {
using ProgramCounterType = u64;
A64JitState() { ResetRSB(); }
std::array<u64, 31> reg{};
u64 sp = 0;
u64 pc = 0;
2018-01-06 21:15:25 +00:00
u32 cpsr_nzcv = 0;
2018-01-07 14:46:35 +00:00
u32 GetPstate() const {
return NZCV::FromX64(cpsr_nzcv);
2018-01-07 14:46:35 +00:00
}
void SetPstate(u32 new_pstate) {
cpsr_nzcv = NZCV::ToX64(new_pstate);
2018-01-07 14:46:35 +00:00
}
2018-01-06 21:15:25 +00:00
alignas(16) std::array<u64, 64> vec{}; // Extension registers.
// For internal use (See: BlockOfCode::RunCode)
u32 guest_MXCSR = 0x00001f80;
u32 asimd_MXCSR = 0x00009fc0;
2018-01-06 21:15:25 +00:00
s64 cycles_to_run = 0;
s64 cycles_remaining = 0;
bool halt_requested = false;
2018-01-07 16:33:02 +00:00
bool check_bit = false;
2018-01-06 21:15:25 +00:00
// Exclusive state
static constexpr u64 RESERVATION_GRANULE_MASK = 0xFFFF'FFFF'FFFF'FFF0ull;
u8 exclusive_state = 0;
2018-01-06 21:15:25 +00:00
static constexpr size_t RSBSize = 8; // MUST be a power of 2.
static constexpr size_t RSBPtrMask = RSBSize - 1;
u32 rsb_ptr = 0;
std::array<u64, RSBSize> rsb_location_descriptors;
std::array<u64, RSBSize> rsb_codeptrs;
void ResetRSB() {
rsb_location_descriptors.fill(0xFFFFFFFFFFFFFFFFull);
rsb_codeptrs.fill(0);
}
u32 fpsr_exc = 0;
2018-07-15 23:19:35 +01:00
u32 fpsr_qc = 0;
2018-01-06 21:15:25 +00:00
u32 fpcr = 0;
u32 GetFpcr() const;
u32 GetFpsr() const;
void SetFpcr(u32 value);
void SetFpsr(u32 value);
2018-01-06 21:15:25 +00:00
u64 GetUniqueHash() const noexcept {
const u64 fpcr_u64 = static_cast<u64>(fpcr & A64::LocationDescriptor::fpcr_mask) << A64::LocationDescriptor::fpcr_shift;
const u64 pc_u64 = pc & A64::LocationDescriptor::pc_mask;
return pc_u64 | fpcr_u64;
}
2018-01-06 21:15:25 +00:00
};
#ifdef _MSC_VER
#pragma warning(pop)
#endif
using CodePtr = const void*;
} // namespace Dynarmic::Backend::X64