diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-19 04:31:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-19 04:31:36 +0000 |
commit | 9248b3208a53ccf31a235efa6b6ce853cb97028c (patch) | |
tree | 58c753b0391ce4e9ccf7e571f25dca8f2ea22e1f /lib | |
parent | ea420b20d4e75af21cfcc1b380a7536c239fb99d (diff) | |
download | external_llvm-9248b3208a53ccf31a235efa6b6ce853cb97028c.zip external_llvm-9248b3208a53ccf31a235efa6b6ce853cb97028c.tar.gz external_llvm-9248b3208a53ccf31a235efa6b6ce853cb97028c.tar.bz2 |
MC/X86: Strip spurious operands from CALL64r as we do for CALL64pcrel32, to
avoid same prefix byte problem as in r104062.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/AsmPrinter/X86MCInstLower.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp b/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp index f5e9601..dc92f07 100644 --- a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp +++ b/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp @@ -329,18 +329,20 @@ void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { LowerSubReg32_Op0(OutMI, X86::MOV32r0); // MOV64r0 -> MOV32r0 LowerUnaryToTwoAddr(OutMI, X86::XOR32rr); // MOV32r0 -> XOR32rr break; - - // CALL64pcrel32 - This instruction has register inputs modeled as normal - // uses instead of implicit uses. As such, truncate off all but the first - // operand (the callee). FIXME: Change isel. + + // CALL64r, CALL64pcrel32 - These instructions have register inputs modeled as + // normal uses instead of implicit uses. As such, truncate off all but the + // first operand (the callee). FIXME: Change isel. + case X86::CALL64r: case X86::CALL64pcrel32: { + unsigned Opcode = OutMI.getOpcode(); MCOperand Saved = OutMI.getOperand(0); OutMI = MCInst(); - OutMI.setOpcode(X86::CALL64pcrel32); + OutMI.setOpcode(Opcode); OutMI.addOperand(Saved); break; } - + // The assembler backend wants to see branches in their small form and relax // them to their large form. The JIT can only handle the large form because // it does not do relaxation. For now, translate the large form to the |