mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
[Objdump] Allow instruction pretty printing to be specialized by the target triple.
Differential Revision: http://reviews.llvm.org/D8427 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238457 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bfecc6bdee
commit
cada158dc3
@ -201,6 +201,30 @@ bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) {
|
|||||||
return a_addr < b_addr;
|
return a_addr < b_addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
class PrettyPrinter {
|
||||||
|
public:
|
||||||
|
virtual void printInst(MCInstPrinter &IP, const MCInst *MI, bool ShowRawInsn,
|
||||||
|
ArrayRef<uint8_t> Bytes, uint64_t Address,
|
||||||
|
raw_ostream &OS, StringRef Annot,
|
||||||
|
MCSubtargetInfo const &STI) {
|
||||||
|
outs() << format("%8" PRIx64 ":", Address);
|
||||||
|
if (!NoShowRawInsn) {
|
||||||
|
outs() << "\t";
|
||||||
|
dumpBytes(Bytes, outs());
|
||||||
|
}
|
||||||
|
IP.printInst(MI, outs(), "", STI);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
PrettyPrinter PrettyPrinterInst;
|
||||||
|
PrettyPrinter &selectPrettyPrinter(Triple const &Triple, MCInstPrinter &IP) {
|
||||||
|
switch(Triple.getArch()) {
|
||||||
|
default:
|
||||||
|
return PrettyPrinterInst;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
||||||
const Target *TheTarget = getTarget(Obj);
|
const Target *TheTarget = getTarget(Obj);
|
||||||
// getTarget() will have already issued a diagnostic if necessary, so
|
// getTarget() will have already issued a diagnostic if necessary, so
|
||||||
@ -267,6 +291,7 @@ static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
|||||||
<< '\n';
|
<< '\n';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
PrettyPrinter &PIP = selectPrettyPrinter(Triple(TripleName), *IP);
|
||||||
|
|
||||||
StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " :
|
StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " :
|
||||||
"\t\t\t%08" PRIx64 ": ";
|
"\t\t\t%08" PRIx64 ": ";
|
||||||
@ -383,12 +408,9 @@ static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
|||||||
if (DisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
|
if (DisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
|
||||||
SectionAddr + Index, DebugOut,
|
SectionAddr + Index, DebugOut,
|
||||||
CommentStream)) {
|
CommentStream)) {
|
||||||
outs() << format("%8" PRIx64 ":", SectionAddr + Index);
|
PIP.printInst(*IP, &Inst, !NoShowRawInsn,
|
||||||
if (!NoShowRawInsn) {
|
Bytes.slice(Index, Size),
|
||||||
outs() << "\t";
|
SectionAddr + Index, outs(), "", *STI);
|
||||||
dumpBytes(ArrayRef<uint8_t>(Bytes.data() + Index, Size), outs());
|
|
||||||
}
|
|
||||||
IP->printInst(&Inst, outs(), "", *STI);
|
|
||||||
outs() << CommentStream.str();
|
outs() << CommentStream.str();
|
||||||
Comments.clear();
|
Comments.clear();
|
||||||
outs() << "\n";
|
outs() << "\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user