mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 02:22:39 +01:00
b3fd79b45a
Maintains consistency between location and code
131 lines
3.3 KiB
C++
131 lines
3.3 KiB
C++
// Copyright 2009 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
// Additional copyrights go to Duddie (c) 2005 (duddie@walla.com)
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
#include "Core/DSP/DSPCommon.h"
|
|
#include "Core/DSP/Jit/x64/DSPEmitter.h"
|
|
|
|
namespace DSP
|
|
{
|
|
// The non-ADDR ones that end with _D are the opposite one - if the bit specify
|
|
// ACC0, then ACC_D will be ACC1.
|
|
|
|
// The values of these are very important.
|
|
// For the reg ones, the value >> 8 is the base register.
|
|
// & 0x80 means it's a "D".
|
|
|
|
enum partype_t
|
|
{
|
|
P_NONE = 0x0000,
|
|
P_VAL = 0x0001,
|
|
P_IMM = 0x0002,
|
|
P_MEM = 0x0003,
|
|
P_STR = 0x0004,
|
|
P_ADDR_I = 0x0005,
|
|
P_ADDR_D = 0x0006,
|
|
P_REG = 0x8000,
|
|
P_REG04 = P_REG | 0x0400, // IX
|
|
P_REG08 = P_REG | 0x0800,
|
|
P_REG18 = P_REG | 0x1800,
|
|
P_REGM18 = P_REG | 0x1810, // used in multiply instructions
|
|
P_REG19 = P_REG | 0x1900,
|
|
P_REGM19 = P_REG | 0x1910, // used in multiply instructions
|
|
P_REG1A = P_REG | 0x1a80,
|
|
// P_ACC = P_REG | 0x1c10, // used for global accum (gcdsptool's value)
|
|
P_ACCL = P_REG | 0x1c00, // used for low part of accum
|
|
P_REG1C = P_REG | 0x1c10, // gcdsptool calls this P_ACCLM
|
|
P_ACCM = P_REG | 0x1e00, // used for mid part of accum
|
|
// The following are not in gcdsptool
|
|
P_ACCM_D = P_REG | 0x1e80,
|
|
P_ACC = P_REG | 0x2000, // used for full accum.
|
|
P_ACC_D = P_REG | 0x2080,
|
|
P_AX = P_REG | 0x2200,
|
|
P_REGS_MASK = 0x03f80, // gcdsptool's value = 0x01f80
|
|
P_REF = P_REG | 0x4000,
|
|
P_PRG = P_REF | P_REG,
|
|
|
|
// The following seem like junk:
|
|
// P_REG10 = P_REG | 0x1000,
|
|
// P_AX_D = P_REG | 0x2280,
|
|
};
|
|
|
|
struct param2_t
|
|
{
|
|
partype_t type;
|
|
u8 size;
|
|
u8 loc;
|
|
s8 lshift;
|
|
u16 mask;
|
|
};
|
|
|
|
struct DSPOPCTemplate
|
|
{
|
|
using InterpreterFunction = void (*)(UDSPInstruction);
|
|
using JITFunction = void (JIT::x64::DSPEmitter::*)(UDSPInstruction);
|
|
|
|
const char* name;
|
|
u16 opcode;
|
|
u16 opcode_mask;
|
|
|
|
InterpreterFunction intFunc;
|
|
JITFunction jitFunc;
|
|
|
|
u8 size;
|
|
u8 param_count;
|
|
param2_t params[8];
|
|
bool extended;
|
|
bool branch;
|
|
bool uncond_branch;
|
|
bool reads_pc;
|
|
bool updates_sr;
|
|
};
|
|
|
|
typedef DSPOPCTemplate opc_t;
|
|
|
|
// Opcodes
|
|
extern const DSPOPCTemplate cw;
|
|
|
|
constexpr size_t WRITEBACK_LOG_SIZE = 5;
|
|
extern std::array<u16, WRITEBACK_LOG_SIZE> writeBackLog;
|
|
extern std::array<int, WRITEBACK_LOG_SIZE> writeBackLogIdx;
|
|
|
|
// Predefined labels
|
|
struct pdlabel_t
|
|
{
|
|
u16 addr;
|
|
const char* name;
|
|
const char* description;
|
|
};
|
|
|
|
extern const std::array<pdlabel_t, 36> regnames;
|
|
extern const std::array<pdlabel_t, 96> pdlabels;
|
|
|
|
const char* pdname(u16 val);
|
|
const char* pdregname(int val);
|
|
const char* pdregnamelong(int val);
|
|
|
|
void InitInstructionTable();
|
|
void applyWriteBackLog();
|
|
void zeroWriteBackLog();
|
|
void zeroWriteBackLogPreserveAcc(u8 acc);
|
|
|
|
// Used by the assembler and disassembler for info retrieval.
|
|
const DSPOPCTemplate* FindOpInfoByOpcode(UDSPInstruction opcode);
|
|
const DSPOPCTemplate* FindOpInfoByName(const std::string& name);
|
|
|
|
const DSPOPCTemplate* FindExtOpInfoByOpcode(UDSPInstruction opcode);
|
|
const DSPOPCTemplate* FindExtOpInfoByName(const std::string& name);
|
|
|
|
// Used by the interpreter and JIT for instruction emulation
|
|
const DSPOPCTemplate* GetOpTemplate(UDSPInstruction inst);
|
|
const DSPOPCTemplate* GetExtOpTemplate(UDSPInstruction inst);
|
|
} // namespace DSP
|