99 lines
2.3 KiB
C
99 lines
2.3 KiB
C
|
/* 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 <cstddef>
|
||
|
#include <cstdint>
|
||
|
#include <memory>
|
||
|
|
||
|
#include <dynarmic/A64/config.h>
|
||
|
|
||
|
namespace Dynarmic {
|
||
|
namespace A64 {
|
||
|
|
||
|
struct Context;
|
||
|
|
||
|
class Jit final {
|
||
|
public:
|
||
|
explicit Jit(UserConfig conf);
|
||
|
~Jit();
|
||
|
|
||
|
/**
|
||
|
* Runs the emulated CPU.
|
||
|
* Cannot be recursively called.
|
||
|
*/
|
||
|
void Run();
|
||
|
|
||
|
/**
|
||
|
* Clears the code cache of all compiled code.
|
||
|
* Can be called at any time. Halts execution if called within a callback.
|
||
|
*/
|
||
|
void ClearCache();
|
||
|
|
||
|
/**
|
||
|
* Invalidate the code cache at a range of addresses.
|
||
|
* @param start_address The starting address of the range to invalidate.
|
||
|
* @param length The length (in bytes) of the range to invalidate.
|
||
|
*/
|
||
|
void InvalidateCacheRange(std::uint64_t start_address, std::size_t length);
|
||
|
|
||
|
/**
|
||
|
* Reset CPU state to state at startup. Does not clear code cache.
|
||
|
* Cannot be called from a callback.
|
||
|
*/
|
||
|
void Reset();
|
||
|
|
||
|
/**
|
||
|
* Stops execution in Jit::Run.
|
||
|
* Can only be called from a callback.
|
||
|
*/
|
||
|
void HaltExecution();
|
||
|
|
||
|
/// Read Stack Pointer
|
||
|
std::uint64_t GetSP() const;
|
||
|
/// Modify Stack Pointer
|
||
|
void SetSP(std::uint64_t value);
|
||
|
|
||
|
/// Read Program Counter
|
||
|
std::uint64_t GetPC() const;
|
||
|
/// Modify Program Counter
|
||
|
void SetPC(std::uint64_t value);
|
||
|
|
||
|
/// Read general-purpose register.
|
||
|
std::uint64_t GetRegister(std::size_t index) const;
|
||
|
/// Modify general-purpose register.
|
||
|
void SetRegister(size_t index, std::uint64_t value);
|
||
|
|
||
|
struct Vector {
|
||
|
std::uint64_t low;
|
||
|
std::uint64_t high;
|
||
|
};
|
||
|
|
||
|
/// Read floating point and SIMD register.
|
||
|
Vector GetVector(std::size_t index) const;
|
||
|
/// Modify floating point and SIMD register.
|
||
|
void SetVector(std::size_t index, Vector value);
|
||
|
|
||
|
/// View FPCR.
|
||
|
std::uint32_t GetFpcr() const;
|
||
|
/// Modify FPCR.
|
||
|
void SetFpcr(std::uint32_t value);
|
||
|
|
||
|
/**
|
||
|
* Returns true if Jit::Run was called but hasn't returned yet.
|
||
|
* i.e.: We're in a callback.
|
||
|
*/
|
||
|
bool IsExecuting() const;
|
||
|
|
||
|
private:
|
||
|
struct Impl;
|
||
|
std::unique_ptr<Impl> impl;
|
||
|
};
|
||
|
|
||
|
} // namespace A64
|
||
|
} // namespace Dynarmic
|