GekkoDisassembler: Remove unread variable m_displacement
This commit is contained in:
parent
98c9049184
commit
c8e276c6f5
|
@ -154,7 +154,6 @@ u32* GekkoDisassembler::m_iaddr = nullptr;
|
||||||
std::string GekkoDisassembler::m_opcode;
|
std::string GekkoDisassembler::m_opcode;
|
||||||
std::string GekkoDisassembler::m_operands;
|
std::string GekkoDisassembler::m_operands;
|
||||||
unsigned char GekkoDisassembler::m_flags = PPCF_ILLEGAL;
|
unsigned char GekkoDisassembler::m_flags = PPCF_ILLEGAL;
|
||||||
u32 GekkoDisassembler::m_displacement = 0;
|
|
||||||
|
|
||||||
static u32 HelperRotateMask(int r, int mb, int me)
|
static u32 HelperRotateMask(int r, int mb, int me)
|
||||||
{
|
{
|
||||||
|
@ -392,7 +391,6 @@ std::string GekkoDisassembler::imm(u32 in, int uimm, int type, bool hex)
|
||||||
{
|
{
|
||||||
m_flags |= PPCF_UNSIGNED;
|
m_flags |= PPCF_UNSIGNED;
|
||||||
}
|
}
|
||||||
m_displacement = i;
|
|
||||||
|
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
|
@ -582,8 +580,6 @@ void GekkoDisassembler::bc(u32 in)
|
||||||
m_operands = fmt::format("{} ->0x{:08X}", m_operands, d);
|
m_operands = fmt::format("{} ->0x{:08X}", m_operands, d);
|
||||||
else
|
else
|
||||||
m_operands = fmt::format("{} ->0x{:08X}", m_operands, *m_iaddr + d);
|
m_operands = fmt::format("{} ->0x{:08X}", m_operands, *m_iaddr + d);
|
||||||
|
|
||||||
m_displacement = d;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GekkoDisassembler::bli(u32 in)
|
void GekkoDisassembler::bli(u32 in)
|
||||||
|
@ -599,8 +595,6 @@ void GekkoDisassembler::bli(u32 in)
|
||||||
m_operands = fmt::format("->0x{:08X}", d);
|
m_operands = fmt::format("->0x{:08X}", d);
|
||||||
else
|
else
|
||||||
m_operands = fmt::format("->0x{:08X}", *m_iaddr + d);
|
m_operands = fmt::format("->0x{:08X}", *m_iaddr + d);
|
||||||
|
|
||||||
m_displacement = d;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GekkoDisassembler::mcrf(u32 in, std::string_view suffix)
|
void GekkoDisassembler::mcrf(u32 in, std::string_view suffix)
|
||||||
|
@ -926,7 +920,6 @@ void GekkoDisassembler::ldst(u32 in, std::string_view name, char reg, unsigned c
|
||||||
int d = (u32)(in & 0xffff);
|
int d = (u32)(in & 0xffff);
|
||||||
|
|
||||||
m_flags |= dmode;
|
m_flags |= dmode;
|
||||||
m_displacement = (u32)d;
|
|
||||||
m_opcode = name;
|
m_opcode = name;
|
||||||
|
|
||||||
if (reg == 'r')
|
if (reg == 'r')
|
||||||
|
|
|
@ -105,6 +105,5 @@ private:
|
||||||
static std::string m_opcode; // Buffer for opcode, min. 10 chars.
|
static std::string m_opcode; // Buffer for opcode, min. 10 chars.
|
||||||
static std::string m_operands; // Operand buffer, min. 24 chars.
|
static std::string m_operands; // Operand buffer, min. 24 chars.
|
||||||
static unsigned char m_flags; // Additional flags
|
static unsigned char m_flags; // Additional flags
|
||||||
static u32 m_displacement; // Branch- or load/store displacement
|
|
||||||
};
|
};
|
||||||
} // namespace Common
|
} // namespace Common
|
||||||
|
|
Loading…
Reference in New Issue