From: David Woodhouse Date: Wed, 8 Jan 2014 12:58:36 +0000 (+0000) Subject: [x86] Add JMP_2 and other 16-bit PC-relative branch instructions X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=51a64502bf337a2bd650f2612362363701f25441;p=oota-llvm.git [x86] Add JMP_2 and other 16-bit PC-relative branch instructions Mark them as requiring 16-bit mode for now, since we don't yet have relaxation support for FK_Data_2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198762 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrControl.td b/lib/Target/X86/X86InstrControl.td index 1e420f8be9a..b87c4cee136 100644 --- a/lib/Target/X86/X86InstrControl.td +++ b/lib/Target/X86/X86InstrControl.td @@ -52,6 +52,9 @@ let isTerminator = 1, isReturn = 1, isBarrier = 1, let isBarrier = 1, isBranch = 1, isTerminator = 1, SchedRW = [WriteJump] in { def JMP_4 : Ii32PCRel<0xE9, RawFrm, (outs), (ins brtarget:$dst), "jmp\t$dst", [(br bb:$dst)], IIC_JMP_REL>, OpSize16; + def JMP_2 : Ii16PCRel<0xE9, RawFrm, (outs), (ins brtarget:$dst), + "jmp\t$dst", [(br bb:$dst)], IIC_JMP_REL>, OpSize, + Requires<[In16BitMode]>; let hasSideEffects = 0 in def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst), "jmp\t$dst", [], IIC_JMP_REL>; @@ -63,6 +66,9 @@ let isBranch = 1, isTerminator = 1, Uses = [EFLAGS], SchedRW = [WriteJump] in { let hasSideEffects = 0 in def _1 : Ii8PCRel ; + def _2 : Ii16PCRel, OpSize, + TB, Requires<[In16BitMode]>; def _4 : Ii32PCRel, TB, OpSize16;