xref: /NextBSD/contrib/llvm/lib/Target/X86/X86InstrControl.td (revision 84d351007654069f9643c8e4b4802a7f5f08ee42)
1//===-- X86InstrControl.td - Control Flow Instructions -----*- tablegen -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the X86 jump, return, call, and related instructions.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
15//  Control Flow Instructions.
16//
17
18// Return instructions.
19//
20// The X86retflag return instructions are variadic because we may add ST0 and
21// ST1 arguments when returning values on the x87 stack.
22let isTerminator = 1, isReturn = 1, isBarrier = 1,
23    hasCtrlDep = 1, FPForm = SpecialFP, SchedRW = [WriteJumpLd] in {
24  def RETL   : I   <0xC3, RawFrm, (outs), (ins variable_ops),
25                    "ret{l}", [(X86retflag 0)], IIC_RET>, OpSize32,
26                    Requires<[Not64BitMode]>;
27  def RETQ   : I   <0xC3, RawFrm, (outs), (ins variable_ops),
28                    "ret{q}", [(X86retflag 0)], IIC_RET>, OpSize32,
29                    Requires<[In64BitMode]>;
30  def RETW   : I   <0xC3, RawFrm, (outs), (ins),
31                    "ret{w}",
32                    [], IIC_RET>, OpSize16;
33  def RETIL  : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
34                    "ret{l}\t$amt",
35                    [(X86retflag timm:$amt)], IIC_RET_IMM>, OpSize32,
36               Requires<[Not64BitMode]>;
37  def RETIQ  : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
38                    "ret{q}\t$amt",
39                    [(X86retflag timm:$amt)], IIC_RET_IMM>, OpSize32,
40               Requires<[In64BitMode]>;
41  def RETIW  : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt),
42                    "ret{w}\t$amt",
43                    [], IIC_RET_IMM>, OpSize16;
44  def LRETL  : I   <0xCB, RawFrm, (outs), (ins),
45                    "{l}ret{l|f}", [], IIC_RET>, OpSize32;
46  def LRETQ  : RI  <0xCB, RawFrm, (outs), (ins),
47                    "{l}ret{|f}q", [], IIC_RET>, Requires<[In64BitMode]>;
48  def LRETW  : I   <0xCB, RawFrm, (outs), (ins),
49                    "{l}ret{w|f}", [], IIC_RET>, OpSize16;
50  def LRETIL : Ii16<0xCA, RawFrm, (outs), (ins i16imm:$amt),
51                    "{l}ret{l|f}\t$amt", [], IIC_RET>, OpSize32;
52  def LRETIQ : RIi16<0xCA, RawFrm, (outs), (ins i16imm:$amt),
53                    "{l}ret{|f}q\t$amt", [], IIC_RET>, Requires<[In64BitMode]>;
54  def LRETIW : Ii16<0xCA, RawFrm, (outs), (ins i16imm:$amt),
55                    "{l}ret{w|f}\t$amt", [], IIC_RET>, OpSize16;
56}
57
58// Unconditional branches.
59let isBarrier = 1, isBranch = 1, isTerminator = 1, SchedRW = [WriteJump] in {
60  def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst),
61                       "jmp\t$dst", [(br bb:$dst)], IIC_JMP_REL>;
62  let hasSideEffects = 0, isCodeGenOnly = 1, ForceDisassemble = 1 in {
63    def JMP_2 : Ii16PCRel<0xE9, RawFrm, (outs), (ins brtarget16:$dst),
64                          "jmp\t$dst", [], IIC_JMP_REL>, OpSize16;
65    def JMP_4 : Ii32PCRel<0xE9, RawFrm, (outs), (ins brtarget32:$dst),
66                          "jmp\t$dst", [], IIC_JMP_REL>, OpSize32;
67  }
68}
69
70// Conditional Branches.
71let isBranch = 1, isTerminator = 1, Uses = [EFLAGS], SchedRW = [WriteJump] in {
72  multiclass ICBr<bits<8> opc1, bits<8> opc4, string asm, PatFrag Cond> {
73    def _1 : Ii8PCRel <opc1, RawFrm, (outs), (ins brtarget8:$dst), asm,
74                       [(X86brcond bb:$dst, Cond, EFLAGS)], IIC_Jcc>;
75    let hasSideEffects = 0, isCodeGenOnly = 1, ForceDisassemble = 1 in {
76      def _2 : Ii16PCRel<opc4, RawFrm, (outs), (ins brtarget16:$dst), asm,
77                         [], IIC_Jcc>, OpSize16, TB;
78      def _4 : Ii32PCRel<opc4, RawFrm, (outs), (ins brtarget32:$dst), asm,
79                         [], IIC_Jcc>, TB, OpSize32;
80    }
81  }
82}
83
84defm JO  : ICBr<0x70, 0x80, "jo\t$dst" , X86_COND_O>;
85defm JNO : ICBr<0x71, 0x81, "jno\t$dst", X86_COND_NO>;
86defm JB  : ICBr<0x72, 0x82, "jb\t$dst" , X86_COND_B>;
87defm JAE : ICBr<0x73, 0x83, "jae\t$dst", X86_COND_AE>;
88defm JE  : ICBr<0x74, 0x84, "je\t$dst" , X86_COND_E>;
89defm JNE : ICBr<0x75, 0x85, "jne\t$dst", X86_COND_NE>;
90defm JBE : ICBr<0x76, 0x86, "jbe\t$dst", X86_COND_BE>;
91defm JA  : ICBr<0x77, 0x87, "ja\t$dst" , X86_COND_A>;
92defm JS  : ICBr<0x78, 0x88, "js\t$dst" , X86_COND_S>;
93defm JNS : ICBr<0x79, 0x89, "jns\t$dst", X86_COND_NS>;
94defm JP  : ICBr<0x7A, 0x8A, "jp\t$dst" , X86_COND_P>;
95defm JNP : ICBr<0x7B, 0x8B, "jnp\t$dst", X86_COND_NP>;
96defm JL  : ICBr<0x7C, 0x8C, "jl\t$dst" , X86_COND_L>;
97defm JGE : ICBr<0x7D, 0x8D, "jge\t$dst", X86_COND_GE>;
98defm JLE : ICBr<0x7E, 0x8E, "jle\t$dst", X86_COND_LE>;
99defm JG  : ICBr<0x7F, 0x8F, "jg\t$dst" , X86_COND_G>;
100
101// jcx/jecx/jrcx instructions.
102let isBranch = 1, isTerminator = 1, hasSideEffects = 0, SchedRW = [WriteJump] in {
103  // These are the 32-bit versions of this instruction for the asmparser.  In
104  // 32-bit mode, the address size prefix is jcxz and the unprefixed version is
105  // jecxz.
106  let Uses = [CX] in
107    def JCXZ : Ii8PCRel<0xE3, RawFrm, (outs), (ins brtarget8:$dst),
108                        "jcxz\t$dst", [], IIC_JCXZ>, AdSize16,
109                        Requires<[Not64BitMode]>;
110  let Uses = [ECX] in
111    def JECXZ : Ii8PCRel<0xE3, RawFrm, (outs), (ins brtarget8:$dst),
112                        "jecxz\t$dst", [], IIC_JCXZ>, AdSize32;
113
114  let Uses = [RCX] in
115    def JRCXZ : Ii8PCRel<0xE3, RawFrm, (outs), (ins brtarget8:$dst),
116                         "jrcxz\t$dst", [], IIC_JCXZ>, AdSize64,
117                         Requires<[In64BitMode]>;
118}
119
120// Indirect branches
121let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
122  def JMP16r     : I<0xFF, MRM4r, (outs), (ins GR16:$dst), "jmp{w}\t{*}$dst",
123                     [(brind GR16:$dst)], IIC_JMP_REG>, Requires<[Not64BitMode]>,
124                   OpSize16, Sched<[WriteJump]>;
125  def JMP16m     : I<0xFF, MRM4m, (outs), (ins i16mem:$dst), "jmp{w}\t{*}$dst",
126                     [(brind (loadi16 addr:$dst))], IIC_JMP_MEM>,
127                   Requires<[Not64BitMode]>, OpSize16, Sched<[WriteJumpLd]>;
128
129  def JMP32r     : I<0xFF, MRM4r, (outs), (ins GR32:$dst), "jmp{l}\t{*}$dst",
130                     [(brind GR32:$dst)], IIC_JMP_REG>, Requires<[Not64BitMode]>,
131                   OpSize32, Sched<[WriteJump]>;
132  def JMP32m     : I<0xFF, MRM4m, (outs), (ins i32mem:$dst), "jmp{l}\t{*}$dst",
133                     [(brind (loadi32 addr:$dst))], IIC_JMP_MEM>,
134                   Requires<[Not64BitMode]>, OpSize32, Sched<[WriteJumpLd]>;
135
136  def JMP64r     : I<0xFF, MRM4r, (outs), (ins GR64:$dst), "jmp{q}\t{*}$dst",
137                     [(brind GR64:$dst)], IIC_JMP_REG>, Requires<[In64BitMode]>,
138                   Sched<[WriteJump]>;
139  def JMP64m     : I<0xFF, MRM4m, (outs), (ins i64mem:$dst), "jmp{q}\t{*}$dst",
140                     [(brind (loadi64 addr:$dst))], IIC_JMP_MEM>,
141                   Requires<[In64BitMode]>, Sched<[WriteJumpLd]>;
142
143  let Predicates = [Not64BitMode] in {
144    def FARJMP16i  : Iseg16<0xEA, RawFrmImm16, (outs),
145                            (ins i16imm:$off, i16imm:$seg),
146                            "ljmp{w}\t$seg, $off", [],
147                            IIC_JMP_FAR_PTR>, OpSize16, Sched<[WriteJump]>;
148    def FARJMP32i  : Iseg32<0xEA, RawFrmImm16, (outs),
149                            (ins i32imm:$off, i16imm:$seg),
150                            "ljmp{l}\t$seg, $off", [],
151                            IIC_JMP_FAR_PTR>, OpSize32, Sched<[WriteJump]>;
152  }
153  def FARJMP64   : RI<0xFF, MRM5m, (outs), (ins opaque80mem:$dst),
154                      "ljmp{q}\t{*}$dst", [], IIC_JMP_FAR_MEM>,
155                   Sched<[WriteJump]>;
156
157  def FARJMP16m  : I<0xFF, MRM5m, (outs), (ins opaque32mem:$dst),
158                     "ljmp{w}\t{*}$dst", [], IIC_JMP_FAR_MEM>, OpSize16,
159                   Sched<[WriteJumpLd]>;
160  def FARJMP32m  : I<0xFF, MRM5m, (outs), (ins opaque48mem:$dst),
161                     "ljmp{l}\t{*}$dst", [], IIC_JMP_FAR_MEM>, OpSize32,
162                   Sched<[WriteJumpLd]>;
163}
164
165
166// Loop instructions
167let SchedRW = [WriteJump] in {
168def LOOP   : Ii8PCRel<0xE2, RawFrm, (outs), (ins brtarget8:$dst), "loop\t$dst", [], IIC_LOOP>;
169def LOOPE  : Ii8PCRel<0xE1, RawFrm, (outs), (ins brtarget8:$dst), "loope\t$dst", [], IIC_LOOPE>;
170def LOOPNE : Ii8PCRel<0xE0, RawFrm, (outs), (ins brtarget8:$dst), "loopne\t$dst", [], IIC_LOOPNE>;
171}
172
173//===----------------------------------------------------------------------===//
174//  Call Instructions...
175//
176let isCall = 1 in
177  // All calls clobber the non-callee saved registers. ESP is marked as
178  // a use to prevent stack-pointer assignments that appear immediately
179  // before calls from potentially appearing dead. Uses for argument
180  // registers are added manually.
181  let Uses = [ESP] in {
182    def CALLpcrel32 : Ii32PCRel<0xE8, RawFrm,
183                           (outs), (ins i32imm_pcrel:$dst),
184                           "call{l}\t$dst", [], IIC_CALL_RI>, OpSize32,
185                      Requires<[Not64BitMode]>, Sched<[WriteJump]>;
186    let hasSideEffects = 0 in
187      def CALLpcrel16 : Ii16PCRel<0xE8, RawFrm,
188                             (outs), (ins i16imm_pcrel:$dst),
189                             "call{w}\t$dst", [], IIC_CALL_RI>, OpSize16,
190                        Sched<[WriteJump]>;
191    def CALL16r     : I<0xFF, MRM2r, (outs), (ins GR16:$dst),
192                        "call{w}\t{*}$dst", [(X86call GR16:$dst)], IIC_CALL_RI>,
193                      OpSize16, Requires<[Not64BitMode]>, Sched<[WriteJump]>;
194    def CALL16m     : I<0xFF, MRM2m, (outs), (ins i16mem:$dst),
195                        "call{w}\t{*}$dst", [(X86call (loadi16 addr:$dst))],
196                        IIC_CALL_MEM>, OpSize16,
197                      Requires<[Not64BitMode,FavorMemIndirectCall]>,
198                      Sched<[WriteJumpLd]>;
199    def CALL32r     : I<0xFF, MRM2r, (outs), (ins GR32:$dst),
200                        "call{l}\t{*}$dst", [(X86call GR32:$dst)], IIC_CALL_RI>,
201                      OpSize32, Requires<[Not64BitMode]>, Sched<[WriteJump]>;
202    def CALL32m     : I<0xFF, MRM2m, (outs), (ins i32mem:$dst),
203                        "call{l}\t{*}$dst", [(X86call (loadi32 addr:$dst))],
204                        IIC_CALL_MEM>, OpSize32,
205                      Requires<[Not64BitMode,FavorMemIndirectCall]>,
206                      Sched<[WriteJumpLd]>;
207
208    let Predicates = [Not64BitMode] in {
209      def FARCALL16i  : Iseg16<0x9A, RawFrmImm16, (outs),
210                               (ins i16imm:$off, i16imm:$seg),
211                               "lcall{w}\t$seg, $off", [],
212                               IIC_CALL_FAR_PTR>, OpSize16, Sched<[WriteJump]>;
213      def FARCALL32i  : Iseg32<0x9A, RawFrmImm16, (outs),
214                               (ins i32imm:$off, i16imm:$seg),
215                               "lcall{l}\t$seg, $off", [],
216                               IIC_CALL_FAR_PTR>, OpSize32, Sched<[WriteJump]>;
217    }
218
219    def FARCALL16m  : I<0xFF, MRM3m, (outs), (ins opaque32mem:$dst),
220                        "lcall{w}\t{*}$dst", [], IIC_CALL_FAR_MEM>, OpSize16,
221                      Sched<[WriteJumpLd]>;
222    def FARCALL32m  : I<0xFF, MRM3m, (outs), (ins opaque48mem:$dst),
223                        "lcall{l}\t{*}$dst", [], IIC_CALL_FAR_MEM>, OpSize32,
224                      Sched<[WriteJumpLd]>;
225  }
226
227
228// Tail call stuff.
229
230let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1,
231    isCodeGenOnly = 1, SchedRW = [WriteJumpLd] in
232  let Uses = [ESP] in {
233  def TCRETURNdi : PseudoI<(outs),
234                     (ins i32imm_pcrel:$dst, i32imm:$offset), []>;
235  def TCRETURNri : PseudoI<(outs),
236                     (ins ptr_rc_tailcall:$dst, i32imm:$offset), []>;
237  let mayLoad = 1 in
238  def TCRETURNmi : PseudoI<(outs),
239                     (ins i32mem_TC:$dst, i32imm:$offset), []>;
240
241  // FIXME: The should be pseudo instructions that are lowered when going to
242  // mcinst.
243  def TAILJMPd : Ii32PCRel<0xE9, RawFrm, (outs),
244                           (ins i32imm_pcrel:$dst),
245                           "jmp\t$dst",
246                           [], IIC_JMP_REL>;
247  def TAILJMPr : I<0xFF, MRM4r, (outs), (ins ptr_rc_tailcall:$dst),
248                   "", [], IIC_JMP_REG>;  // FIXME: Remove encoding when JIT is dead.
249  let mayLoad = 1 in
250  def TAILJMPm : I<0xFF, MRM4m, (outs), (ins i32mem_TC:$dst),
251                   "jmp{l}\t{*}$dst", [], IIC_JMP_MEM>;
252}
253
254
255//===----------------------------------------------------------------------===//
256//  Call Instructions...
257//
258
259// RSP is marked as a use to prevent stack-pointer assignments that appear
260// immediately before calls from potentially appearing dead. Uses for argument
261// registers are added manually.
262let isCall = 1, Uses = [RSP], SchedRW = [WriteJump] in {
263  // NOTE: this pattern doesn't match "X86call imm", because we do not know
264  // that the offset between an arbitrary immediate and the call will fit in
265  // the 32-bit pcrel field that we have.
266  def CALL64pcrel32 : Ii32PCRel<0xE8, RawFrm,
267                        (outs), (ins i64i32imm_pcrel:$dst),
268                        "call{q}\t$dst", [], IIC_CALL_RI>, OpSize32,
269                      Requires<[In64BitMode]>;
270  def CALL64r       : I<0xFF, MRM2r, (outs), (ins GR64:$dst),
271                        "call{q}\t{*}$dst", [(X86call GR64:$dst)],
272                        IIC_CALL_RI>,
273                      Requires<[In64BitMode]>;
274  def CALL64m       : I<0xFF, MRM2m, (outs), (ins i64mem:$dst),
275                        "call{q}\t{*}$dst", [(X86call (loadi64 addr:$dst))],
276                        IIC_CALL_MEM>,
277                      Requires<[In64BitMode,FavorMemIndirectCall]>;
278
279  def FARCALL64   : RI<0xFF, MRM3m, (outs), (ins opaque80mem:$dst),
280                       "lcall{q}\t{*}$dst", [], IIC_CALL_FAR_MEM>;
281}
282
283let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1,
284    isCodeGenOnly = 1, Uses = [RSP], usesCustomInserter = 1,
285    SchedRW = [WriteJump] in {
286  def TCRETURNdi64 : PseudoI<(outs),
287                      (ins i64i32imm_pcrel:$dst, i32imm:$offset),
288                      []>;
289  def TCRETURNri64 : PseudoI<(outs),
290                      (ins ptr_rc_tailcall:$dst, i32imm:$offset), []>;
291  let mayLoad = 1 in
292  def TCRETURNmi64 : PseudoI<(outs),
293                       (ins i64mem_TC:$dst, i32imm:$offset), []>;
294
295  def TAILJMPd64 : Ii32PCRel<0xE9, RawFrm, (outs), (ins i64i32imm_pcrel:$dst),
296                   "jmp\t$dst", [], IIC_JMP_REL>;
297  def TAILJMPr64 : I<0xFF, MRM4r, (outs), (ins ptr_rc_tailcall:$dst),
298                     "jmp{q}\t{*}$dst", [], IIC_JMP_MEM>;
299
300  let mayLoad = 1 in
301  def TAILJMPm64 : I<0xFF, MRM4m, (outs), (ins i64mem_TC:$dst),
302                     "jmp{q}\t{*}$dst", [], IIC_JMP_MEM>;
303
304  // Win64 wants jumps leaving the function to have a REX_W prefix.
305  let hasREX_WPrefix = 1 in {
306    def TAILJMPd64_REX : Ii32PCRel<0xE9, RawFrm, (outs),
307                                   (ins i64i32imm_pcrel:$dst),
308                                   "rex64 jmp\t$dst", [], IIC_JMP_REL>;
309    def TAILJMPr64_REX : I<0xFF, MRM4r, (outs), (ins ptr_rc_tailcall:$dst),
310                           "rex64 jmp{q}\t{*}$dst", [], IIC_JMP_MEM>;
311
312    let mayLoad = 1 in
313    def TAILJMPm64_REX : I<0xFF, MRM4m, (outs), (ins i64mem_TC:$dst),
314                           "rex64 jmp{q}\t{*}$dst", [], IIC_JMP_MEM>;
315  }
316}
317