[llvm-commits] [llvm] r140971 - in /llvm/trunk: lib/Target/X86/Disassembler/X86DisassemblerDecoder.c test/MC/Disassembler/X86/simple-tests.txt

Craig Topper craig.topper at gmail.com
Tue Oct 4 20:32:06 PDT 2011


Committed in r141162.

On Tue, Oct 4, 2011 at 10:48 AM, Joe Abbey <joe.abbey at gmail.com> wrote:

> See the attached patch :)
>
> Joe
>
> On Tue, Oct 4, 2011 at 1:27 PM, Craig Topper <craig.topper at gmail.com>
> wrote:
> > I'll fix it tonight unless someone beats me to it.
> >
> > On Tue, Oct 4, 2011 at 12:25 AM, James Molloy <james.molloy at arm.com>
> wrote:
> >>
> >> Hi Craig,
> >>
> >> This commit breaks our opensource build.
> >>
> >> X86DisassemblerDecoder.c:906:5: error: C++ style comments are not
> allowed
> >> in
> >> ISO C90
> >>
> >> Could you please change the comments to C-style?
> >>
> >> Cheers,
> >>
> >> James
> >>
> >> -----Original Message-----
> >> From: llvm-commits-bounces at cs.uiuc.edu
> >> [mailto:llvm-commits-bounces at cs.uiuc.edu] On Behalf Of Craig Topper
> >> Sent: 02 October 2011 17:56
> >> To: llvm-commits at cs.uiuc.edu
> >> Subject: [llvm-commits] [llvm] r140971 - in /llvm/trunk:
> >> lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
> >> test/MC/Disassembler/X86/simple-tests.txt
> >>
> >> Author: ctopper
> >> Date: Sun Oct  2 11:56:09 2011
> >> New Revision: 140971
> >>
> >> URL: http://llvm.org/viewvc/llvm-project?rev=140971&view=rev
> >> Log:
> >> Special case disassembler handling of REX.B prefix on NOP instruction to
> >> decode as XCHG R8D, EAX instead. Fixes PR10344.
> >>
> >> Modified:
> >>    llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
> >>    llvm/trunk/test/MC/Disassembler/X86/simple-tests.txt
> >>
> >> Modified:
> llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
> >> URL:
> >>
> >>
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/Disassembler/X
> >> 86DisassemblerDecoder.c?rev=140971&r1=140970&r2=140971&view=diff
> >>
> >>
> ============================================================================
> >> ==
> >> --- llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
> >> (original)
> >> +++ llvm/trunk/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c Sun
> >> Oct
> >> 2 11:56:09 2011
> >> @@ -58,8 +58,8 @@
> >>  * @return            - TRUE if the ModR/M byte is required, FALSE
> >> otherwise.
> >>  */
> >>  static int modRMRequired(OpcodeType type,
> >> -                                InstructionContext insnContext,
> >> -                                uint8_t opcode) {
> >> +                         InstructionContext insnContext,
> >> +                         uint8_t opcode) {
> >>   const struct ContextDecision* decision = 0;
> >>
> >>   switch (type) {
> >> @@ -885,6 +885,43 @@
> >>     }
> >>     return 0;
> >>   }
> >> +
> >> +  if (insn->opcodeType == ONEBYTE && insn->opcode == 0x90 &&
> >> +      insn->rexPrefix & 0x01) {
> >> +    /*
> >> +     * NOOP shouldn't decode as NOOP if REX.b is set. Instead
> >> +     * it should decode as XCHG %r8, %eax.
> >> +     */
> >> +
> >> +    const struct InstructionSpecifier *spec;
> >> +    uint16_t instructionIDWithNewOpcode;
> >> +    const struct InstructionSpecifier *specWithNewOpcode;
> >> +
> >> +    spec = specifierForUID(instructionID);
> >> +
> >> +    // Borrow opcode from one of the other XCHGar opcodes
> >> +    insn->opcode = 0x91;
> >> +
> >> +    if (getIDWithAttrMask(&instructionIDWithNewOpcode,
> >> +                          insn,
> >> +                          attrMask)) {
> >> +      insn->opcode = 0x90;
> >> +
> >> +      insn->instructionID = instructionID;
> >> +      insn->spec = spec;
> >> +      return 0;
> >> +    }
> >> +
> >> +    specWithNewOpcode = specifierForUID(instructionIDWithNewOpcode);
> >> +
> >> +    // Change back
> >> +    insn->opcode = 0x90;
> >> +
> >> +    insn->instructionID = instructionIDWithNewOpcode;
> >> +    insn->spec = specWithNewOpcode;
> >> +
> >> +    return 0;
> >> +  }
> >>
> >>   insn->instructionID = instructionID;
> >>   insn->spec = specifierForUID(insn->instructionID);
> >>
> >> Modified: llvm/trunk/test/MC/Disassembler/X86/simple-tests.txt
> >> URL:
> >>
> >>
> http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Disassembler/X86/simp
> >> le-tests.txt?rev=140971&r1=140970&r2=140971&view=diff
> >>
> >>
> ============================================================================
> >> ==
> >> --- llvm/trunk/test/MC/Disassembler/X86/simple-tests.txt (original)
> >> +++ llvm/trunk/test/MC/Disassembler/X86/simple-tests.txt Sun Oct  2
> >> 11:56:09
> >> 2011
> >> @@ -308,3 +308,6 @@
> >>
> >>  # CHECK: invvpid (%rax), %rax
> >>  0x66 0x0f 0x38 0x81 0x00
> >> +
> >> +# CHECK: xchgl %r8d, %eax
> >> +0x41 0x90
> >>
> >>
> >> _______________________________________________
> >> llvm-commits mailing list
> >> llvm-commits at cs.uiuc.edu
> >> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
> >>
> >>
> >>
> >>
> >
> >
> >
> > --
> > ~Craig
> >
> > _______________________________________________
> > llvm-commits mailing list
> > llvm-commits at cs.uiuc.edu
> > http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
> >
> >
>



-- 
~Craig
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20111004/acebddf5/attachment.html>


More information about the llvm-commits mailing list