mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
make -show-inst be formatted a bit nicer. Before:
movl $3735928559, a ## inst: <MCInst 1273 <MCOperand Reg:0> <MCOperand Imm:1> <MCOperand Reg:0> <MCOperand Expr:(a)> <MCOperand Reg:0> <MCOperand Expr:(3735928559)>> after: movl $3735928559, a ## <MCInst #1273 ## <MCOperand Reg:0> ## <MCOperand Imm:1> ## <MCOperand Reg:0> ## <MCOperand Expr:(a)> ## <MCOperand Reg:0> ## <MCOperand Expr:(3735928559)>> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95637 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0b23dc0cc8
commit
30d9a644d5
@ -532,14 +532,6 @@ void MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
|
||||
void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
|
||||
assert(CurSection && "Cannot emit contents before setting section!");
|
||||
|
||||
// Show the MCInst if enabled.
|
||||
if (ShowInst) {
|
||||
raw_ostream &OS = GetCommentOS();
|
||||
OS << "inst: ";
|
||||
Inst.print(OS, &MAI);
|
||||
OS << "\n";
|
||||
}
|
||||
|
||||
// Show the encoding in a comment if we have a code emitter.
|
||||
if (Emitter) {
|
||||
SmallString<256> Code;
|
||||
@ -557,6 +549,18 @@ void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
|
||||
OS << "]\n";
|
||||
}
|
||||
|
||||
// Show the MCInst if enabled.
|
||||
if (ShowInst) {
|
||||
raw_ostream &OS = GetCommentOS();
|
||||
OS << "<MCInst #" << Inst.getOpcode();
|
||||
|
||||
for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
|
||||
OS << "\n ";
|
||||
Inst.getOperand(i).print(OS, &MAI);
|
||||
}
|
||||
OS << ">\n";
|
||||
}
|
||||
|
||||
// If we have an AsmPrinter, use that to print, otherwise dump the MCInst.
|
||||
if (InstPrinter)
|
||||
InstPrinter->printInst(&Inst);
|
||||
|
Loading…
x
Reference in New Issue
Block a user