63 lines
2.3 KiB
C++
63 lines
2.3 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 <unordered_map>
|
|
#include <vector>
|
|
|
|
#include <boost/icl/interval_map.hpp>
|
|
#include <boost/icl/interval_set.hpp>
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <xbyak_util.h>
|
|
|
|
#include "backend_x64/reg_alloc.h"
|
|
#include "backend_x64/emit_x64.h"
|
|
#include "common/address_range.h"
|
|
#include "dynarmic/callbacks.h"
|
|
#include "frontend/A32/location_descriptor.h"
|
|
#include "frontend/ir/terminal.h"
|
|
|
|
namespace Dynarmic {
|
|
namespace BackendX64 {
|
|
|
|
class A32EmitX64 final : public EmitX64<u32> {
|
|
public:
|
|
A32EmitX64(BlockOfCode* code, UserCallbacks cb, Jit* jit_interface);
|
|
~A32EmitX64();
|
|
|
|
/**
|
|
* Emit host machine code for a basic block with intermediate representation `ir`.
|
|
* @note ir is modified.
|
|
*/
|
|
BlockDescriptor Emit(IR::Block& ir);
|
|
|
|
protected:
|
|
// Microinstruction emitters
|
|
#define OPCODE(...)
|
|
#define A32OPC(name, type, ...) void EmitA32##name(RegAlloc& reg_alloc, IR::Block& block, IR::Inst* inst);
|
|
#include "frontend/ir/opcodes.inc"
|
|
#undef OPCODE
|
|
#undef A32OPC
|
|
|
|
// Terminal instruction emitters
|
|
void EmitTerminalImpl(IR::Term::Interpret terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::ReturnToDispatch terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::LinkBlock terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::LinkBlockFast terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::PopRSBHint terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::If terminal, IR::LocationDescriptor initial_location) override;
|
|
void EmitTerminalImpl(IR::Term::CheckHalt terminal, IR::LocationDescriptor initial_location) override;
|
|
|
|
// Patching
|
|
void EmitPatchJg(const IR::LocationDescriptor& target_desc, CodePtr target_code_ptr = nullptr) override;
|
|
void EmitPatchJmp(const IR::LocationDescriptor& target_desc, CodePtr target_code_ptr = nullptr) override;
|
|
void EmitPatchMovRcx(CodePtr target_code_ptr = nullptr) override;
|
|
};
|
|
|
|
} // namespace BackendX64
|
|
} // namespace Dynarmic
|