2016-07-01 15:01:06 +02:00
|
|
|
/* 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
|
|
|
|
|
2016-12-11 16:38:00 +01:00
|
|
|
#include <memory>
|
2016-08-31 22:09:26 +02:00
|
|
|
#include <type_traits>
|
2016-12-11 16:38:00 +01:00
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
#include <xbyak.h>
|
2016-08-13 01:10:23 +02:00
|
|
|
|
2017-03-18 18:20:21 +01:00
|
|
|
#include "backend_x64/constant_pool.h"
|
2016-07-01 15:01:06 +02:00
|
|
|
#include "backend_x64/jitstate.h"
|
|
|
|
#include "common/common_types.h"
|
2016-09-01 01:06:40 +02:00
|
|
|
#include "dynarmic/callbacks.h"
|
2016-07-01 15:01:06 +02:00
|
|
|
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace BackendX64 {
|
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
class BlockOfCode final : public Xbyak::CodeGenerator {
|
2016-07-01 15:01:06 +02:00
|
|
|
public:
|
2016-09-01 01:06:40 +02:00
|
|
|
explicit BlockOfCode(UserCallbacks cb);
|
2016-08-07 19:08:48 +02:00
|
|
|
|
2016-08-12 19:17:31 +02:00
|
|
|
/// Clears this block of code and resets code pointer to beginning.
|
2016-09-01 10:47:09 +02:00
|
|
|
void ClearCache();
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-12 19:17:31 +02:00
|
|
|
/// Runs emulated code for approximately `cycles_to_run` cycles.
|
2016-07-01 15:01:06 +02:00
|
|
|
size_t RunCode(JitState* jit_state, CodePtr basic_block, size_t cycles_to_run) const;
|
2016-08-12 19:17:31 +02:00
|
|
|
/// Code emitter: Returns to host
|
2016-08-07 23:47:17 +02:00
|
|
|
void ReturnFromRunCode(bool MXCSR_switch = true);
|
2016-08-12 19:17:31 +02:00
|
|
|
/// Code emitter: Makes guest MXCSR the current MXCSR
|
2016-08-07 23:47:17 +02:00
|
|
|
void SwitchMxcsrOnEntry();
|
2016-08-12 19:17:31 +02:00
|
|
|
/// Code emitter: Makes saved host MXCSR the current MXCSR
|
2016-08-07 23:47:17 +02:00
|
|
|
void SwitchMxcsrOnExit();
|
2016-08-31 22:09:26 +02:00
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
/// Code emitter: Calls the function
|
2016-08-31 22:09:26 +02:00
|
|
|
template <typename FunctionPointer>
|
|
|
|
void CallFunction(FunctionPointer fn) {
|
|
|
|
static_assert(std::is_pointer<FunctionPointer>() && std::is_function<std::remove_pointer_t<FunctionPointer>>(),
|
|
|
|
"Supplied type must be a pointer to a function");
|
|
|
|
|
|
|
|
const u64 address = reinterpret_cast<u64>(fn);
|
|
|
|
const u64 distance = address - (getCurr<u64>() + 5);
|
|
|
|
|
|
|
|
if (distance >= 0x0000000080000000ULL && distance < 0xFFFFFFFF80000000ULL) {
|
|
|
|
// Far call
|
|
|
|
mov(rax, address);
|
|
|
|
call(rax);
|
|
|
|
} else {
|
|
|
|
call(fn);
|
|
|
|
}
|
|
|
|
}
|
2016-08-07 19:08:48 +02:00
|
|
|
|
2017-03-18 18:20:21 +01:00
|
|
|
Xbyak::Address MConst(u64 constant);
|
2016-07-01 15:01:06 +02:00
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
const void* GetReturnFromRunCodeAddress() const {
|
2016-08-13 01:10:23 +02:00
|
|
|
return return_from_run_code;
|
|
|
|
}
|
|
|
|
|
2016-09-01 01:06:40 +02:00
|
|
|
const void* GetMemoryReadCallback(size_t bit_size) const {
|
|
|
|
switch (bit_size) {
|
|
|
|
case 8:
|
|
|
|
return read_memory_8;
|
|
|
|
case 16:
|
|
|
|
return read_memory_16;
|
|
|
|
case 32:
|
|
|
|
return read_memory_32;
|
|
|
|
case 64:
|
|
|
|
return read_memory_64;
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const void* GetMemoryWriteCallback(size_t bit_size) const {
|
|
|
|
switch (bit_size) {
|
|
|
|
case 8:
|
|
|
|
return write_memory_8;
|
|
|
|
case 16:
|
|
|
|
return write_memory_16;
|
|
|
|
case 32:
|
|
|
|
return write_memory_32;
|
|
|
|
case 64:
|
|
|
|
return write_memory_64;
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
void int3() { db(0xCC); }
|
2016-08-27 11:57:48 +02:00
|
|
|
void nop(size_t size = 1);
|
2016-08-24 21:07:08 +02:00
|
|
|
|
2016-12-16 21:48:08 +01:00
|
|
|
/// Allocate memory of `size` bytes from the same block of memory the code is in.
|
|
|
|
/// This is useful for objects that need to be placed close to or within code.
|
|
|
|
/// The lifetime of this memory is the same as the code around it.
|
|
|
|
void* AllocateFromCodeSpace(size_t size);
|
|
|
|
|
2016-09-04 12:30:57 +02:00
|
|
|
void SetCodePtr(CodePtr code_ptr);
|
2016-08-24 21:07:08 +02:00
|
|
|
void EnsurePatchLocationSize(CodePtr begin, size_t size);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
Xbyak::Reg64 ABI_RETURN = rax;
|
|
|
|
Xbyak::Reg64 ABI_PARAM1 = rcx;
|
|
|
|
Xbyak::Reg64 ABI_PARAM2 = rdx;
|
|
|
|
Xbyak::Reg64 ABI_PARAM3 = r8;
|
|
|
|
Xbyak::Reg64 ABI_PARAM4 = r9;
|
|
|
|
#else
|
|
|
|
Xbyak::Reg64 ABI_RETURN = rax;
|
|
|
|
Xbyak::Reg64 ABI_PARAM1 = rdi;
|
|
|
|
Xbyak::Reg64 ABI_PARAM2 = rsi;
|
|
|
|
Xbyak::Reg64 ABI_PARAM3 = rdx;
|
|
|
|
Xbyak::Reg64 ABI_PARAM4 = rcx;
|
|
|
|
#endif
|
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
private:
|
2016-09-01 01:06:40 +02:00
|
|
|
UserCallbacks cb;
|
2016-12-11 16:36:58 +01:00
|
|
|
CodePtr user_code_begin;
|
2016-09-01 01:06:40 +02:00
|
|
|
|
2017-03-18 18:20:21 +01:00
|
|
|
ConstantPool constant_pool;
|
2016-08-06 18:12:40 +02:00
|
|
|
|
2016-07-01 15:01:06 +02:00
|
|
|
using RunCodeFuncType = void(*)(JitState*, CodePtr);
|
2016-08-22 16:35:07 +02:00
|
|
|
RunCodeFuncType run_code = nullptr;
|
2016-07-01 15:01:06 +02:00
|
|
|
void GenRunCode();
|
2016-08-13 01:10:23 +02:00
|
|
|
|
2016-08-24 21:07:08 +02:00
|
|
|
const void* return_from_run_code = nullptr;
|
|
|
|
const void* return_from_run_code_without_mxcsr_switch = nullptr;
|
2016-08-13 01:10:23 +02:00
|
|
|
void GenReturnFromRunCode();
|
2016-09-01 01:06:40 +02:00
|
|
|
|
|
|
|
const void* read_memory_8 = nullptr;
|
|
|
|
const void* read_memory_16 = nullptr;
|
|
|
|
const void* read_memory_32 = nullptr;
|
|
|
|
const void* read_memory_64 = nullptr;
|
|
|
|
const void* write_memory_8 = nullptr;
|
|
|
|
const void* write_memory_16 = nullptr;
|
|
|
|
const void* write_memory_32 = nullptr;
|
|
|
|
const void* write_memory_64 = nullptr;
|
|
|
|
void GenMemoryAccessors();
|
2016-12-11 16:38:00 +01:00
|
|
|
|
|
|
|
class UnwindHandler final {
|
|
|
|
public:
|
|
|
|
UnwindHandler();
|
|
|
|
~UnwindHandler();
|
|
|
|
|
|
|
|
void Register(BlockOfCode* code);
|
|
|
|
private:
|
|
|
|
struct Impl;
|
|
|
|
std::unique_ptr<Impl> impl;
|
|
|
|
};
|
|
|
|
UnwindHandler unwind_handler;
|
2016-07-01 15:01:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace BackendX64
|
|
|
|
} // namespace Dynarmic
|