mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
citra-qt: Show function names in disassembler based on bunnei's suggestion.
This commit is contained in:
parent
456b9feb25
commit
c131fb2c27
1 changed files with 21 additions and 5 deletions
|
@ -39,16 +39,32 @@ QVariant DisassemblerModel::data(const QModelIndex& index, int role) const {
|
||||||
static char result[255];
|
static char result[255];
|
||||||
|
|
||||||
u32 address = base_address + index.row() * 4;
|
u32 address = base_address + index.row() * 4;
|
||||||
ARM_Disasm::disasm(address, Memory::Read32(address), result);
|
u32 instr = Memory::Read32(address);
|
||||||
|
ARM_Disasm::disasm(address, instr, result);
|
||||||
|
|
||||||
if (index.column() == 0) {
|
if (index.column() == 0) {
|
||||||
return QString("0x%1").arg((uint)(address), 8, 16, QLatin1Char('0'));
|
return QString("0x%1").arg((uint)(address), 8, 16, QLatin1Char('0'));
|
||||||
} else if (index.column() == 1) {
|
} else if (index.column() == 1) {
|
||||||
return QString::fromLatin1(result);
|
return QString::fromLatin1(result);
|
||||||
} else if (index.column() == 2 && Symbols::HasSymbol(address)) {
|
} else if (index.column() == 2) {
|
||||||
|
if(Symbols::HasSymbol(address)) {
|
||||||
TSymbol symbol = Symbols::GetSymbol(address);
|
TSymbol symbol = Symbols::GetSymbol(address);
|
||||||
return QString("%1 - Size:%2").arg(QString::fromStdString(symbol.name))
|
return QString("%1 - Size:%2").arg(QString::fromStdString(symbol.name))
|
||||||
.arg(symbol.size / 4); // divide by 4 to get instruction count
|
.arg(symbol.size / 4); // divide by 4 to get instruction count
|
||||||
|
} else if (ARM_Disasm::decode(instr) == OP_BL) {
|
||||||
|
u32 offset = instr & 0xFFFFFF;
|
||||||
|
|
||||||
|
// Sign-extend the 24-bit offset
|
||||||
|
if ((offset >> 23) & 1)
|
||||||
|
offset |= 0xFF000000;
|
||||||
|
|
||||||
|
// Pre-compute the left-shift and the prefetch offset
|
||||||
|
offset <<= 2;
|
||||||
|
offset += 8;
|
||||||
|
|
||||||
|
TSymbol symbol = Symbols::GetSymbol(address + offset);
|
||||||
|
return QString(" --> %1").arg(QString::fromStdString(symbol.name));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue