6d53bb6d7e
This isn't really an ARM-specific type, since it's used to indicate a Block location.
88 lines
2.1 KiB
C++
88 lines
2.1 KiB
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2016 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 <string>
|
|
#include <memory>
|
|
|
|
#include <dynarmic/callbacks.h>
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace IR {
|
|
class LocationDescriptor;
|
|
}
|
|
|
|
class Jit final {
|
|
public:
|
|
explicit Jit(Dynarmic::UserCallbacks callbacks);
|
|
~Jit();
|
|
|
|
/**
|
|
* Runs the emulated CPU for about cycle_count cycles.
|
|
* Cannot be recursively called.
|
|
* @param cycle_count Estimated number of cycles to run the CPU for.
|
|
* @returns Actual cycle count.
|
|
*/
|
|
std::size_t Run(std::size_t cycle_count);
|
|
|
|
/**
|
|
* Clears the code cache of all compiled code.
|
|
* Can be called at any time. Halts execution if called within a callback.
|
|
*/
|
|
void ClearCache();
|
|
|
|
/**
|
|
* 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();
|
|
|
|
/// View and modify registers.
|
|
std::array<std::uint32_t, 16>& Regs();
|
|
const std::array<std::uint32_t, 16>& Regs() const;
|
|
std::array<std::uint32_t, 64>& ExtRegs();
|
|
const std::array<std::uint32_t, 64>& ExtRegs() const;
|
|
|
|
/// View and modify CPSR.
|
|
std::uint32_t& Cpsr();
|
|
std::uint32_t Cpsr() const;
|
|
|
|
/// View and modify FPSCR.
|
|
std::uint32_t Fpscr() const;
|
|
void SetFpscr(std::uint32_t value) const;
|
|
|
|
/**
|
|
* Returns true if Jit::Run was called but hasn't returned yet.
|
|
* i.e.: We're in a callback.
|
|
*/
|
|
bool IsExecuting() const {
|
|
return is_executing;
|
|
}
|
|
|
|
/**
|
|
* @param descriptor Basic block descriptor.
|
|
* @return A string containing disassembly of the host machine code produced for the basic block.
|
|
*/
|
|
std::string Disassemble(const IR::LocationDescriptor& descriptor);
|
|
|
|
private:
|
|
bool is_executing = false;
|
|
|
|
struct Impl;
|
|
std::unique_ptr<Impl> impl;
|
|
};
|
|
|
|
} // namespace Dynarmic
|