d514364e1b9293e8e522240e17f7aacc849b0b3f
[oota-llvm.git] / lib / Target / AArch64 / AArch64InstrInfo.td
1 //===----- AArch64InstrInfo.td - AArch64 Instruction Info ----*- 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 AArch64 scalar instructions in TableGen format.
11 //
12 //===----------------------------------------------------------------------===//
13
14 include "AArch64InstrFormats.td"
15
16 //===----------------------------------------------------------------------===//
17 // Target-specific ISD nodes and profiles
18 //===----------------------------------------------------------------------===//
19
20 def SDT_A64ret : SDTypeProfile<0, 0, []>;
21 def A64ret : SDNode<"AArch64ISD::Ret", SDT_A64ret, [SDNPHasChain,
22                                                     SDNPOptInGlue,
23                                                     SDNPVariadic]>;
24
25 // (ins NZCV, Condition, Dest)
26 def SDT_A64br_cc : SDTypeProfile<0, 3, [SDTCisVT<0, i32>]>;
27 def A64br_cc : SDNode<"AArch64ISD::BR_CC", SDT_A64br_cc, [SDNPHasChain]>;
28
29 // (outs Result), (ins NZCV, IfTrue, IfFalse, Condition)
30 def SDT_A64select_cc : SDTypeProfile<1, 4, [SDTCisVT<1, i32>,
31                                             SDTCisSameAs<0, 2>,
32                                             SDTCisSameAs<2, 3>]>;
33 def A64select_cc : SDNode<"AArch64ISD::SELECT_CC", SDT_A64select_cc>;
34
35 // (outs NZCV), (ins LHS, RHS, Condition)
36 def SDT_A64setcc : SDTypeProfile<1, 3, [SDTCisVT<0, i32>,
37                                         SDTCisSameAs<1, 2>]>;
38 def A64setcc : SDNode<"AArch64ISD::SETCC", SDT_A64setcc>;
39
40
41 // (outs GPR64), (ins)
42 def A64threadpointer : SDNode<"AArch64ISD::THREAD_POINTER", SDTPtrLeaf>;
43
44 // A64 compares don't care about the cond really (they set all flags) so a
45 // simple binary operator is useful.
46 def A64cmp : PatFrag<(ops node:$lhs, node:$rhs),
47                      (A64setcc node:$lhs, node:$rhs, cond)>;
48
49
50 // When matching a notional (CMP op1, (sub 0, op2)), we'd like to use a CMN
51 // instruction on the grounds that "op1 - (-op2) == op1 + op2". However, the C
52 // and V flags can be set differently by this operation. It comes down to
53 // whether "SInt(~op2)+1 == SInt(~op2+1)" (and the same for UInt). If they are
54 // then everything is fine. If not then the optimization is wrong. Thus general
55 // comparisons are only valid if op2 != 0.
56
57 // So, finally, the only LLVM-native comparisons that don't mention C and V are
58 // SETEQ and SETNE. They're the only ones we can safely use CMN for in the
59 // absence of information about op2.
60 def equality_cond : PatLeaf<(cond), [{
61   return N->get() == ISD::SETEQ || N->get() == ISD::SETNE;
62 }]>;
63
64 def A64cmn : PatFrag<(ops node:$lhs, node:$rhs),
65                      (A64setcc node:$lhs, (sub 0, node:$rhs), equality_cond)>;
66
67 // There are two layers of indirection here, driven by the following
68 // considerations.
69 //     + TableGen does not know CodeModel or Reloc so that decision should be
70 //       made for a variable/address at ISelLowering.
71 //     + The output of ISelLowering should be selectable (hence the Wrapper,
72 //       rather than a bare target opcode)
73 def SDTAArch64Wrapper : SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>,
74                                              SDTCisSameAs<1, 2>,
75                                              SDTCisVT<3, i32>,
76                                              SDTCisPtrTy<0>]>;
77
78 def A64WrapperSmall : SDNode<"AArch64ISD::WrapperSmall", SDTAArch64Wrapper>;
79
80
81 def SDTAArch64GOTLoad : SDTypeProfile<1, 1, [SDTCisPtrTy<0>, SDTCisPtrTy<1>]>;
82 def A64GOTLoad : SDNode<"AArch64ISD::GOTLoad", SDTAArch64GOTLoad,
83                         [SDNPHasChain]>;
84
85
86 // (A64BFI LHS, RHS, LSB, Width)
87 def SDTA64BFI : SDTypeProfile<1, 4, [SDTCisSameAs<0, 1>,
88                                      SDTCisSameAs<1, 2>,
89                                      SDTCisVT<3, i64>,
90                                      SDTCisVT<4, i64>]>;
91
92 def A64Bfi : SDNode<"AArch64ISD::BFI", SDTA64BFI>;
93
94 // (A64EXTR HiReg, LoReg, LSB)
95 def SDTA64EXTR : SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
96                                       SDTCisVT<3, i64>]>;
97 def A64Extr : SDNode<"AArch64ISD::EXTR", SDTA64EXTR>;
98
99 // (A64[SU]BFX Field, ImmR, ImmS).
100 //
101 // Note that ImmR and ImmS are already encoded for the actual instructions. The
102 // more natural LSB and Width mix together to form ImmR and ImmS, something
103 // which TableGen can't handle.
104 def SDTA64BFX : SDTypeProfile<1, 3, [SDTCisVT<2, i64>, SDTCisVT<3, i64>]>;
105 def A64Sbfx : SDNode<"AArch64ISD::SBFX", SDTA64BFX>;
106
107 def A64Ubfx : SDNode<"AArch64ISD::UBFX", SDTA64BFX>;
108
109 //===----------------------------------------------------------------------===//
110 // Call sequence pseudo-instructions
111 //===----------------------------------------------------------------------===//
112
113
114 def SDT_AArch64Call : SDTypeProfile<0, -1, [SDTCisPtrTy<0>]>;
115 def AArch64Call : SDNode<"AArch64ISD::Call", SDT_AArch64Call,
116                      [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue, SDNPVariadic]>;
117
118 def AArch64tcret : SDNode<"AArch64ISD::TC_RETURN", SDT_AArch64Call,
119                           [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
120
121 // The TLSDESCCALL node is a variant call which goes to an indirectly calculated
122 // destination but needs a relocation against a fixed symbol. As such it has two
123 // certain operands: the callee and the relocated variable.
124 //
125 // The TLS ABI only allows it to be selected to a BLR instructin (with
126 // appropriate relocation).
127 def SDTTLSDescCall : SDTypeProfile<0, -2, [SDTCisPtrTy<0>, SDTCisPtrTy<1>]>;
128
129 def A64tlsdesc_blr : SDNode<"AArch64ISD::TLSDESCCALL", SDTTLSDescCall,
130                             [SDNPInGlue, SDNPOutGlue, SDNPHasChain,
131                              SDNPVariadic]>;
132
133
134 def SDT_AArch64CallSeqStart : SDCallSeqStart<[ SDTCisPtrTy<0> ]>;
135 def AArch64callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_AArch64CallSeqStart,
136                                   [SDNPHasChain, SDNPOutGlue]>;
137
138 def SDT_AArch64CallSeqEnd   : SDCallSeqEnd<[ SDTCisPtrTy<0>, SDTCisPtrTy<1> ]>;
139 def AArch64callseq_end : SDNode<"ISD::CALLSEQ_END",   SDT_AArch64CallSeqEnd,
140                                 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
141
142
143
144 // These pseudo-instructions have special semantics by virtue of being passed to
145 // the InstrInfo constructor. CALLSEQ_START/CALLSEQ_END are produced by
146 // LowerCall to (in our case) tell the back-end about stack adjustments for
147 // arguments passed on the stack. Here we select those markers to
148 // pseudo-instructions which explicitly set the stack, and finally in the
149 // RegisterInfo we convert them to a true stack adjustment.
150 let Defs = [XSP], Uses = [XSP] in {
151   def ADJCALLSTACKDOWN : PseudoInst<(outs), (ins i64imm:$amt),
152                                     [(AArch64callseq_start timm:$amt)]>;
153
154   def ADJCALLSTACKUP : PseudoInst<(outs), (ins i64imm:$amt1, i64imm:$amt2),
155                                  [(AArch64callseq_end timm:$amt1, timm:$amt2)]>;
156 }
157
158 //===----------------------------------------------------------------------===//
159 // Atomic operation pseudo-instructions
160 //===----------------------------------------------------------------------===//
161
162 let usesCustomInserter = 1, Defs = [NZCV] in {
163 multiclass AtomicSizes<string opname> {
164   def _I8 : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$incr),
165     [(set GPR32:$dst, (!cast<SDNode>(opname # "_8") GPR64:$ptr, GPR32:$incr))]>;
166   def _I16 : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$incr),
167    [(set GPR32:$dst, (!cast<SDNode>(opname # "_16") GPR64:$ptr, GPR32:$incr))]>;
168   def _I32 : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$incr),
169    [(set GPR32:$dst, (!cast<SDNode>(opname # "_32") GPR64:$ptr, GPR32:$incr))]>;
170   def _I64 : PseudoInst<(outs GPR64:$dst), (ins GPR64:$ptr, GPR64:$incr),
171    [(set GPR64:$dst, (!cast<SDNode>(opname # "_64") GPR64:$ptr, GPR64:$incr))]>;
172 }
173 }
174
175 defm ATOMIC_LOAD_ADD  : AtomicSizes<"atomic_load_add">;
176 defm ATOMIC_LOAD_SUB  : AtomicSizes<"atomic_load_sub">;
177 defm ATOMIC_LOAD_AND  : AtomicSizes<"atomic_load_and">;
178 defm ATOMIC_LOAD_OR   : AtomicSizes<"atomic_load_or">;
179 defm ATOMIC_LOAD_XOR  : AtomicSizes<"atomic_load_xor">;
180 defm ATOMIC_LOAD_NAND : AtomicSizes<"atomic_load_nand">;
181 defm ATOMIC_LOAD_MIN  : AtomicSizes<"atomic_load_min">;
182 defm ATOMIC_LOAD_MAX  : AtomicSizes<"atomic_load_max">;
183 defm ATOMIC_LOAD_UMIN : AtomicSizes<"atomic_load_umin">;
184 defm ATOMIC_LOAD_UMAX : AtomicSizes<"atomic_load_umax">;
185 defm ATOMIC_SWAP      : AtomicSizes<"atomic_swap">;
186
187 let usesCustomInserter = 1, Defs = [NZCV] in {
188 def ATOMIC_CMP_SWAP_I8
189   : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$old, GPR32:$new),
190                [(set GPR32:$dst,
191                      (atomic_cmp_swap_8 GPR64:$ptr, GPR32:$old, GPR32:$new))]>;
192 def ATOMIC_CMP_SWAP_I16
193   : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$old, GPR32:$new),
194                [(set GPR32:$dst,
195                      (atomic_cmp_swap_16 GPR64:$ptr, GPR32:$old, GPR32:$new))]>;
196 def ATOMIC_CMP_SWAP_I32
197   : PseudoInst<(outs GPR32:$dst), (ins GPR64:$ptr, GPR32:$old, GPR32:$new),
198                [(set GPR32:$dst,
199                      (atomic_cmp_swap_32 GPR64:$ptr, GPR32:$old, GPR32:$new))]>;
200 def ATOMIC_CMP_SWAP_I64
201   : PseudoInst<(outs GPR64:$dst), (ins GPR64:$ptr, GPR64:$old, GPR64:$new),
202                [(set GPR64:$dst,
203                      (atomic_cmp_swap_64 GPR64:$ptr, GPR64:$old, GPR64:$new))]>;
204 }
205
206 //===----------------------------------------------------------------------===//
207 // Add-subtract (extended register) instructions
208 //===----------------------------------------------------------------------===//
209 // Contains: ADD, ADDS, SUB, SUBS + aliases CMN, CMP
210
211 // The RHS of these operations is conceptually a sign/zero-extended
212 // register, optionally shifted left by 1-4. The extension can be a
213 // NOP (e.g. "sxtx" sign-extending a 64-bit register to 64-bits) but
214 // must be specified with one exception:
215
216 // If one of the registers is sp/wsp then LSL is an alias for UXTW in
217 // 32-bit instructions and UXTX in 64-bit versions, the shift amount
218 // is not optional in that case (but can explicitly be 0), and the
219 // entire suffix can be skipped (e.g. "add sp, x3, x2").
220
221 multiclass extend_operands<string PREFIX, string Diag> {
222      def _asmoperand : AsmOperandClass {
223          let Name = PREFIX;
224          let RenderMethod = "addRegExtendOperands";
225          let PredicateMethod = "isRegExtend<A64SE::" # PREFIX # ">";
226          let DiagnosticType = "AddSubRegExtend" # Diag;
227      }
228
229      def _operand : Operand<i64>,
230                     ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 4; }]> {
231          let PrintMethod = "printRegExtendOperand<A64SE::" # PREFIX # ">";
232          let DecoderMethod = "DecodeRegExtendOperand";
233          let ParserMatchClass = !cast<AsmOperandClass>(PREFIX # "_asmoperand");
234      }
235 }
236
237 defm UXTB : extend_operands<"UXTB", "Small">;
238 defm UXTH : extend_operands<"UXTH", "Small">;
239 defm UXTW : extend_operands<"UXTW", "Small">;
240 defm UXTX : extend_operands<"UXTX", "Large">;
241 defm SXTB : extend_operands<"SXTB", "Small">;
242 defm SXTH : extend_operands<"SXTH", "Small">;
243 defm SXTW : extend_operands<"SXTW", "Small">;
244 defm SXTX : extend_operands<"SXTX", "Large">;
245
246 def LSL_extasmoperand : AsmOperandClass {
247     let Name = "RegExtendLSL";
248     let RenderMethod = "addRegExtendOperands";
249     let DiagnosticType = "AddSubRegExtendLarge";
250 }
251
252 def LSL_extoperand : Operand<i64> {
253     let ParserMatchClass = LSL_extasmoperand;
254 }
255
256
257 // The patterns for various sign-extensions are a little ugly and
258 // non-uniform because everything has already been promoted to the
259 // legal i64 and i32 types. We'll wrap the various variants up in a
260 // class for use later.
261 class extend_types {
262     dag uxtb; dag uxth; dag uxtw; dag uxtx;
263     dag sxtb; dag sxth; dag sxtw; dag sxtx;
264 }
265
266 def extends_to_i64 : extend_types {
267     let uxtb = (and (anyext GPR32:$Rm), 255);
268     let uxth = (and (anyext GPR32:$Rm), 65535);
269     let uxtw = (zext GPR32:$Rm);
270     let uxtx = (i64 GPR64:$Rm);
271
272     let sxtb = (sext_inreg (anyext GPR32:$Rm), i8);
273     let sxth = (sext_inreg (anyext GPR32:$Rm), i16);
274     let sxtw = (sext GPR32:$Rm);
275     let sxtx = (i64 GPR64:$Rm);
276 }
277
278
279 def extends_to_i32 : extend_types {
280     let uxtb = (and GPR32:$Rm, 255);
281     let uxth = (and GPR32:$Rm, 65535);
282     let uxtw = (i32 GPR32:$Rm);
283     let uxtx = (i32 GPR32:$Rm);
284
285     let sxtb = (sext_inreg GPR32:$Rm, i8);
286     let sxth = (sext_inreg GPR32:$Rm, i16);
287     let sxtw = (i32 GPR32:$Rm);
288     let sxtx = (i32 GPR32:$Rm);
289 }
290
291 // Now, six of the extensions supported are easy and uniform: if the source size
292 // is 32-bits or less, then Rm is always a 32-bit register. We'll instantiate
293 // those instructions in one block.
294
295 // The uxtx/sxtx could potentially be merged in, but three facts dissuaded me:
296 //     + It would break the naming scheme: either ADDxx_uxtx or ADDww_uxtx would
297 //       be impossible.
298 //     + Patterns are very different as well.
299 //     + Passing different registers would be ugly (more fields in extend_types
300 //       would probably be the best option).
301 multiclass addsub_exts<bit sf, bit op, bit S, string asmop,
302                        SDPatternOperator opfrag,
303                        dag outs, extend_types exts, RegisterClass GPRsp> {
304     def w_uxtb : A64I_addsubext<sf, op, S, 0b00, 0b000,
305                       outs,
306                       (ins GPRsp:$Rn, GPR32:$Rm, UXTB_operand:$Imm3),
307                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
308                       [(opfrag GPRsp:$Rn, (shl exts.uxtb, UXTB_operand:$Imm3))],
309                       NoItinerary>;
310     def w_uxth : A64I_addsubext<sf, op, S, 0b00, 0b001,
311                       outs,
312                       (ins GPRsp:$Rn, GPR32:$Rm, UXTH_operand:$Imm3),
313                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
314                       [(opfrag GPRsp:$Rn, (shl exts.uxth, UXTH_operand:$Imm3))],
315                       NoItinerary>;
316     def w_uxtw : A64I_addsubext<sf, op, S, 0b00, 0b010,
317                       outs,
318                       (ins GPRsp:$Rn, GPR32:$Rm, UXTW_operand:$Imm3),
319                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
320                       [(opfrag GPRsp:$Rn, (shl exts.uxtw, UXTW_operand:$Imm3))],
321                       NoItinerary>;
322
323     def w_sxtb : A64I_addsubext<sf, op, S, 0b00, 0b100,
324                       outs,
325                       (ins GPRsp:$Rn, GPR32:$Rm, SXTB_operand:$Imm3),
326                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
327                       [(opfrag GPRsp:$Rn, (shl exts.sxtb, SXTB_operand:$Imm3))],
328                       NoItinerary>;
329     def w_sxth : A64I_addsubext<sf, op, S, 0b00, 0b101,
330                       outs,
331                       (ins GPRsp:$Rn, GPR32:$Rm, SXTH_operand:$Imm3),
332                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
333                       [(opfrag GPRsp:$Rn, (shl exts.sxth, SXTH_operand:$Imm3))],
334                       NoItinerary>;
335     def w_sxtw : A64I_addsubext<sf, op, S, 0b00, 0b110,
336                       outs,
337                       (ins GPRsp:$Rn, GPR32:$Rm, SXTW_operand:$Imm3),
338                       !strconcat(asmop, "$Rn, $Rm, $Imm3"),
339                       [(opfrag GPRsp:$Rn, (shl exts.sxtw, SXTW_operand:$Imm3))],
340                       NoItinerary>;
341 }
342
343 // These two could be merge in with the above, but their patterns aren't really
344 // necessary and the naming-scheme would necessarily break:
345 multiclass addsub_xxtx<bit op, bit S, string asmop, SDPatternOperator opfrag,
346                        dag outs> {
347     def x_uxtx : A64I_addsubext<0b1, op, S, 0b00, 0b011,
348                    outs,
349                    (ins GPR64xsp:$Rn, GPR64:$Rm, UXTX_operand:$Imm3),
350                    !strconcat(asmop, "$Rn, $Rm, $Imm3"),
351                    [(opfrag GPR64xsp:$Rn, (shl GPR64:$Rm, UXTX_operand:$Imm3))],
352                    NoItinerary>;
353
354     def x_sxtx : A64I_addsubext<0b1, op, S, 0b00, 0b111,
355                    outs,
356                    (ins GPR64xsp:$Rn, GPR64:$Rm, SXTX_operand:$Imm3),
357                    !strconcat(asmop, "$Rn, $Rm, $Imm3"),
358                    [/* No Pattern: same as uxtx */],
359                    NoItinerary>;
360 }
361
362 multiclass addsub_wxtx<bit op, bit S, string asmop, dag outs> {
363     def w_uxtx : A64I_addsubext<0b0, op, S, 0b00, 0b011,
364                               outs,
365                               (ins GPR32wsp:$Rn, GPR32:$Rm, UXTX_operand:$Imm3),
366                               !strconcat(asmop, "$Rn, $Rm, $Imm3"),
367                               [/* No pattern: probably same as uxtw */],
368                               NoItinerary>;
369
370     def w_sxtx : A64I_addsubext<0b0, op, S, 0b00, 0b111,
371                               outs,
372                               (ins GPR32wsp:$Rn, GPR32:$Rm, SXTX_operand:$Imm3),
373                               !strconcat(asmop, "$Rn, $Rm, $Imm3"),
374                               [/* No Pattern: probably same as uxtw */],
375                               NoItinerary>;
376 }
377
378 class SetRD<RegisterClass RC, SDPatternOperator op>
379  : PatFrag<(ops node:$lhs, node:$rhs), (set RC:$Rd, (op node:$lhs, node:$rhs))>;
380 class SetNZCV<SDPatternOperator op>
381   : PatFrag<(ops node:$lhs, node:$rhs), (set NZCV, (op node:$lhs, node:$rhs))>;
382
383 defm ADDxx :addsub_exts<0b1, 0b0, 0b0, "add\t$Rd, ", SetRD<GPR64xsp, add>,
384                         (outs GPR64xsp:$Rd), extends_to_i64, GPR64xsp>,
385             addsub_xxtx<     0b0, 0b0, "add\t$Rd, ", SetRD<GPR64xsp, add>,
386                         (outs GPR64xsp:$Rd)>;
387 defm ADDww :addsub_exts<0b0, 0b0, 0b0, "add\t$Rd, ", SetRD<GPR32wsp, add>,
388                         (outs GPR32wsp:$Rd), extends_to_i32, GPR32wsp>,
389             addsub_wxtx<     0b0, 0b0, "add\t$Rd, ",
390                         (outs GPR32wsp:$Rd)>;
391 defm SUBxx :addsub_exts<0b1, 0b1, 0b0, "sub\t$Rd, ", SetRD<GPR64xsp, sub>,
392                         (outs GPR64xsp:$Rd), extends_to_i64, GPR64xsp>,
393             addsub_xxtx<     0b1, 0b0, "sub\t$Rd, ", SetRD<GPR64xsp, sub>,
394                         (outs GPR64xsp:$Rd)>;
395 defm SUBww :addsub_exts<0b0, 0b1, 0b0, "sub\t$Rd, ", SetRD<GPR32wsp, sub>,
396                         (outs GPR32wsp:$Rd), extends_to_i32, GPR32wsp>,
397             addsub_wxtx<     0b1, 0b0, "sub\t$Rd, ",
398                         (outs GPR32wsp:$Rd)>;
399
400 let Defs = [NZCV] in {
401 defm ADDSxx :addsub_exts<0b1, 0b0, 0b1, "adds\t$Rd, ", SetRD<GPR64, addc>,
402                          (outs GPR64:$Rd), extends_to_i64, GPR64xsp>,
403              addsub_xxtx<     0b0, 0b1, "adds\t$Rd, ", SetRD<GPR64, addc>,
404                          (outs GPR64:$Rd)>;
405 defm ADDSww :addsub_exts<0b0, 0b0, 0b1, "adds\t$Rd, ", SetRD<GPR32, addc>,
406                          (outs GPR32:$Rd), extends_to_i32, GPR32wsp>,
407              addsub_wxtx<     0b0, 0b1, "adds\t$Rd, ",
408                          (outs GPR32:$Rd)>;
409 defm SUBSxx :addsub_exts<0b1, 0b1, 0b1, "subs\t$Rd, ", SetRD<GPR64, subc>,
410                          (outs GPR64:$Rd), extends_to_i64, GPR64xsp>,
411              addsub_xxtx<     0b1, 0b1, "subs\t$Rd, ", SetRD<GPR64, subc>,
412                          (outs GPR64:$Rd)>;
413 defm SUBSww :addsub_exts<0b0, 0b1, 0b1, "subs\t$Rd, ", SetRD<GPR32, subc>,
414                          (outs GPR32:$Rd), extends_to_i32, GPR32wsp>,
415              addsub_wxtx<     0b1, 0b1, "subs\t$Rd, ",
416                          (outs GPR32:$Rd)>;
417
418
419 let Rd = 0b11111, isCompare = 1 in {
420 defm CMNx : addsub_exts<0b1, 0b0, 0b1, "cmn\t", SetNZCV<A64cmn>,
421                         (outs), extends_to_i64, GPR64xsp>,
422             addsub_xxtx<     0b0, 0b1, "cmn\t", SetNZCV<A64cmn>, (outs)>;
423 defm CMNw : addsub_exts<0b0, 0b0, 0b1, "cmn\t", SetNZCV<A64cmn>,
424                         (outs), extends_to_i32, GPR32wsp>,
425             addsub_wxtx<     0b0, 0b1, "cmn\t", (outs)>;
426 defm CMPx : addsub_exts<0b1, 0b1, 0b1, "cmp\t", SetNZCV<A64cmp>,
427                         (outs), extends_to_i64, GPR64xsp>,
428             addsub_xxtx<     0b1, 0b1, "cmp\t", SetNZCV<A64cmp>, (outs)>;
429 defm CMPw : addsub_exts<0b0, 0b1, 0b1, "cmp\t", SetNZCV<A64cmp>,
430                         (outs), extends_to_i32, GPR32wsp>,
431             addsub_wxtx<     0b1, 0b1, "cmp\t", (outs)>;
432 }
433 }
434
435 // Now patterns for the operation without a shift being needed. No patterns are
436 // created for uxtx/sxtx since they're non-uniform and it's expected that
437 // add/sub (shifted register) will handle those cases anyway.
438 multiclass addsubext_noshift_patterns<string prefix, SDPatternOperator nodeop,
439                                       RegisterClass GPRsp, extend_types exts> {
440     def : Pat<(nodeop GPRsp:$Rn, exts.uxtb),
441               (!cast<Instruction>(prefix # "w_uxtb") GPRsp:$Rn, GPR32:$Rm, 0)>;
442     def : Pat<(nodeop GPRsp:$Rn, exts.uxth),
443               (!cast<Instruction>(prefix # "w_uxth") GPRsp:$Rn, GPR32:$Rm, 0)>;
444     def : Pat<(nodeop GPRsp:$Rn, exts.uxtw),
445               (!cast<Instruction>(prefix # "w_uxtw") GPRsp:$Rn, GPR32:$Rm, 0)>;
446
447     def : Pat<(nodeop GPRsp:$Rn, exts.sxtb),
448               (!cast<Instruction>(prefix # "w_sxtb") GPRsp:$Rn, GPR32:$Rm, 0)>;
449     def : Pat<(nodeop GPRsp:$Rn, exts.sxth),
450               (!cast<Instruction>(prefix # "w_sxth") GPRsp:$Rn, GPR32:$Rm, 0)>;
451     def : Pat<(nodeop GPRsp:$Rn, exts.sxtw),
452               (!cast<Instruction>(prefix # "w_sxtw") GPRsp:$Rn, GPR32:$Rm, 0)>;
453 }
454
455 defm : addsubext_noshift_patterns<"ADDxx", add, GPR64xsp, extends_to_i64>;
456 defm : addsubext_noshift_patterns<"ADDww", add, GPR32wsp, extends_to_i32>;
457 defm : addsubext_noshift_patterns<"SUBxx", sub, GPR64xsp, extends_to_i64>;
458 defm : addsubext_noshift_patterns<"SUBww", sub, GPR32wsp, extends_to_i32>;
459
460 defm : addsubext_noshift_patterns<"CMNx", A64cmn, GPR64xsp, extends_to_i64>;
461 defm : addsubext_noshift_patterns<"CMNw", A64cmn, GPR32wsp, extends_to_i32>;
462 defm : addsubext_noshift_patterns<"CMPx", A64cmp, GPR64xsp, extends_to_i64>;
463 defm : addsubext_noshift_patterns<"CMPw", A64cmp, GPR32wsp, extends_to_i32>;
464
465 // An extend of "lsl #imm" is valid if and only if one of Rn and Rd is
466 // sp/wsp. It is synonymous with uxtx/uxtw depending on the size of the
467 // operation. Also permitted in this case is complete omission of the argument,
468 // which implies "lsl #0".
469 multiclass lsl_aliases<string asmop, Instruction inst, RegisterClass GPR_Rd,
470                        RegisterClass GPR_Rn, RegisterClass GPR_Rm> {
471     def : InstAlias<!strconcat(asmop, " $Rd, $Rn, $Rm"),
472                     (inst GPR_Rd:$Rd, GPR_Rn:$Rn, GPR_Rm:$Rm, 0)>;
473
474     def : InstAlias<!strconcat(asmop, " $Rd, $Rn, $Rm, $LSL"),
475                 (inst GPR_Rd:$Rd, GPR_Rn:$Rn, GPR_Rm:$Rm, LSL_extoperand:$LSL)>;
476
477 }
478
479 defm : lsl_aliases<"add",  ADDxxx_uxtx,  Rxsp, GPR64xsp, GPR64>;
480 defm : lsl_aliases<"add",  ADDxxx_uxtx,  GPR64xsp, Rxsp, GPR64>;
481 defm : lsl_aliases<"add",  ADDwww_uxtw,  Rwsp, GPR32wsp, GPR32>;
482 defm : lsl_aliases<"add",  ADDwww_uxtw,  GPR32wsp, Rwsp, GPR32>;
483 defm : lsl_aliases<"sub",  SUBxxx_uxtx,  Rxsp, GPR64xsp, GPR64>;
484 defm : lsl_aliases<"sub",  SUBxxx_uxtx,  GPR64xsp, Rxsp, GPR64>;
485 defm : lsl_aliases<"sub",  SUBwww_uxtw,  Rwsp, GPR32wsp, GPR32>;
486 defm : lsl_aliases<"sub",  SUBwww_uxtw,  GPR32wsp, Rwsp, GPR32>;
487
488 // Rd cannot be sp for flag-setting variants so only half of the aliases are
489 // needed.
490 defm : lsl_aliases<"adds", ADDSxxx_uxtx, GPR64, Rxsp, GPR64>;
491 defm : lsl_aliases<"adds", ADDSwww_uxtw, GPR32, Rwsp, GPR32>;
492 defm : lsl_aliases<"subs", SUBSxxx_uxtx, GPR64, Rxsp, GPR64>;
493 defm : lsl_aliases<"subs", SUBSwww_uxtw, GPR32, Rwsp, GPR32>;
494
495 // CMP unfortunately has to be different because the instruction doesn't have a
496 // dest register.
497 multiclass cmp_lsl_aliases<string asmop, Instruction inst,
498                        RegisterClass GPR_Rn, RegisterClass GPR_Rm> {
499     def : InstAlias<!strconcat(asmop, " $Rn, $Rm"),
500                     (inst GPR_Rn:$Rn, GPR_Rm:$Rm, 0)>;
501
502     def : InstAlias<!strconcat(asmop, " $Rn, $Rm, $LSL"),
503                     (inst GPR_Rn:$Rn, GPR_Rm:$Rm, LSL_extoperand:$LSL)>;
504 }
505
506 defm : cmp_lsl_aliases<"cmp", CMPxx_uxtx, Rxsp, GPR64>;
507 defm : cmp_lsl_aliases<"cmp", CMPww_uxtw, Rwsp, GPR32>;
508 defm : cmp_lsl_aliases<"cmn", CMNxx_uxtx, Rxsp, GPR64>;
509 defm : cmp_lsl_aliases<"cmn", CMNww_uxtw, Rwsp, GPR32>;
510
511 //===----------------------------------------------------------------------===//
512 // Add-subtract (immediate) instructions
513 //===----------------------------------------------------------------------===//
514 // Contains: ADD, ADDS, SUB, SUBS + aliases CMN, CMP, MOV
515
516 // These instructions accept a 12-bit unsigned immediate, optionally shifted
517 // left by 12 bits. Official assembly format specifies a 12 bit immediate with
518 // one of "", "LSL #0", "LSL #12" supplementary operands.
519
520 // There are surprisingly few ways to make this work with TableGen, so this
521 // implementation has separate instructions for the "LSL #0" and "LSL #12"
522 // variants.
523
524 // If the MCInst retained a single combined immediate (which could be 0x123000,
525 // for example) then both components (imm & shift) would have to be delegated to
526 // a single assembly operand. This would entail a separate operand parser
527 // (because the LSL would have to live in the same AArch64Operand as the
528 // immediate to be accessible); assembly parsing is rather complex and
529 // error-prone C++ code.
530 //
531 // By splitting the immediate, we can delegate handling this optional operand to
532 // an InstAlias. Supporting functions to generate the correct MCInst are still
533 // required, but these are essentially trivial and parsing can remain generic.
534 //
535 // Rejected plans with rationale:
536 // ------------------------------
537 //
538 // In an ideal world you'de have two first class immediate operands (in
539 // InOperandList, specifying imm12 and shift). Unfortunately this is not
540 // selectable by any means I could discover.
541 //
542 // An Instruction with two MCOperands hidden behind a single entry in
543 // InOperandList (expanded by ComplexPatterns and MIOperandInfo) was functional,
544 // but required more C++ code to handle encoding/decoding. Parsing (the intended
545 // main beneficiary) ended up equally complex because of the optional nature of
546 // "LSL #0".
547 //
548 // Attempting to circumvent the need for a custom OperandParser above by giving
549 // InstAliases without the "lsl #0" failed. add/sub could be accommodated but
550 // the cmp/cmn aliases didn't use the MIOperandInfo to determine how operands
551 // should be parsed: there was no way to accommodate an "lsl #12".
552
553 let ParserMethod = "ParseImmWithLSLOperand",
554     RenderMethod = "addImmWithLSLOperands" in {
555   // Derived PredicateMethod fields are different for each
556   def addsubimm_lsl0_asmoperand : AsmOperandClass {
557     let Name = "AddSubImmLSL0";
558     // If an error is reported against this operand, instruction could also be a
559     // register variant.
560     let DiagnosticType = "AddSubSecondSource";
561   }
562
563   def addsubimm_lsl12_asmoperand : AsmOperandClass {
564     let Name = "AddSubImmLSL12";
565     let DiagnosticType = "AddSubSecondSource";
566   }
567 }
568
569 def shr_12_XFORM : SDNodeXForm<imm, [{
570   return CurDAG->getTargetConstant(N->getSExtValue() >> 12, MVT::i32);
571 }]>;
572
573 def shr_12_neg_XFORM : SDNodeXForm<imm, [{
574   return CurDAG->getTargetConstant((-N->getSExtValue()) >> 12, MVT::i32);
575 }]>;
576
577 def neg_XFORM : SDNodeXForm<imm, [{
578   return CurDAG->getTargetConstant(-N->getSExtValue(), MVT::i32);
579 }]>;
580
581
582 multiclass addsub_imm_operands<ValueType ty> {
583  let PrintMethod = "printAddSubImmLSL0Operand",
584       EncoderMethod = "getAddSubImmOpValue",
585       ParserMatchClass = addsubimm_lsl0_asmoperand in {
586     def _posimm_lsl0 : Operand<ty>,
587         ImmLeaf<ty, [{ return Imm >= 0 && (Imm & ~0xfff) == 0; }]>;
588     def _negimm_lsl0 : Operand<ty>,
589         ImmLeaf<ty, [{ return Imm < 0 && (-Imm & ~0xfff) == 0; }],
590                 neg_XFORM>;
591   }
592
593   let PrintMethod = "printAddSubImmLSL12Operand",
594       EncoderMethod = "getAddSubImmOpValue",
595       ParserMatchClass = addsubimm_lsl12_asmoperand in {
596     def _posimm_lsl12 : Operand<ty>,
597         ImmLeaf<ty, [{ return Imm >= 0 && (Imm & ~0xfff000) == 0; }],
598                 shr_12_XFORM>;
599
600     def _negimm_lsl12 : Operand<ty>,
601         ImmLeaf<ty, [{ return Imm < 0 && (-Imm & ~0xfff000) == 0; }],
602                 shr_12_neg_XFORM>;
603   }
604 }
605
606 // The add operands don't need any transformation
607 defm addsubimm_operand_i32 : addsub_imm_operands<i32>;
608 defm addsubimm_operand_i64 : addsub_imm_operands<i64>;
609
610 multiclass addsubimm_varieties<string prefix, bit sf, bit op, bits<2> shift,
611                                string asmop, string cmpasmop,
612                                Operand imm_operand, Operand cmp_imm_operand,
613                                RegisterClass GPR, RegisterClass GPRsp,
614                                AArch64Reg ZR> {
615     // All registers for non-S variants allow SP
616   def _s : A64I_addsubimm<sf, op, 0b0, shift,
617                          (outs GPRsp:$Rd),
618                          (ins GPRsp:$Rn, imm_operand:$Imm12),
619                          !strconcat(asmop, "\t$Rd, $Rn, $Imm12"),
620                          [(set GPRsp:$Rd,
621                                (add GPRsp:$Rn, imm_operand:$Imm12))],
622                          NoItinerary>;
623
624
625   // S variants can read SP but would write to ZR
626   def _S : A64I_addsubimm<sf, op, 0b1, shift,
627                          (outs GPR:$Rd),
628                          (ins GPRsp:$Rn, imm_operand:$Imm12),
629                          !strconcat(asmop, "s\t$Rd, $Rn, $Imm12"),
630                          [(set GPR:$Rd, (addc GPRsp:$Rn, imm_operand:$Imm12))],
631                          NoItinerary> {
632     let Defs = [NZCV];
633   }
634
635   // Note that the pattern here for ADDS is subtle. Canonically CMP
636   // a, b becomes SUBS a, b. If b < 0 then this is equivalent to
637   // ADDS a, (-b). This is not true in general.
638   def _cmp : A64I_addsubimm<sf, op, 0b1, shift,
639                             (outs), (ins GPRsp:$Rn, imm_operand:$Imm12),
640                             !strconcat(cmpasmop, " $Rn, $Imm12"),
641                             [(set NZCV,
642                               (A64cmp GPRsp:$Rn, cmp_imm_operand:$Imm12))],
643                             NoItinerary> {
644     let Rd = 0b11111;
645     let Defs = [NZCV];
646     let isCompare = 1;
647   }
648 }
649
650
651 multiclass addsubimm_shifts<string prefix, bit sf, bit op,
652            string asmop, string cmpasmop, string operand, string cmpoperand,
653            RegisterClass GPR, RegisterClass GPRsp, AArch64Reg ZR> {
654   defm _lsl0 : addsubimm_varieties<prefix # "_lsl0", sf, op, 0b00,
655                                    asmop, cmpasmop,
656                                    !cast<Operand>(operand # "_lsl0"),
657                                    !cast<Operand>(cmpoperand # "_lsl0"),
658                                    GPR, GPRsp, ZR>;
659
660   defm _lsl12 : addsubimm_varieties<prefix # "_lsl12", sf, op, 0b01,
661                                     asmop, cmpasmop,
662                                     !cast<Operand>(operand # "_lsl12"),
663                                     !cast<Operand>(cmpoperand # "_lsl12"),
664                                     GPR, GPRsp, ZR>;
665 }
666
667 defm ADDwwi : addsubimm_shifts<"ADDwi", 0b0, 0b0, "add", "cmn",
668                               "addsubimm_operand_i32_posimm",
669                               "addsubimm_operand_i32_negimm",
670                               GPR32, GPR32wsp, WZR>;
671 defm ADDxxi : addsubimm_shifts<"ADDxi", 0b1, 0b0, "add", "cmn",
672                               "addsubimm_operand_i64_posimm",
673                               "addsubimm_operand_i64_negimm",
674                               GPR64, GPR64xsp, XZR>;
675 defm SUBwwi : addsubimm_shifts<"SUBwi", 0b0, 0b1, "sub", "cmp",
676                               "addsubimm_operand_i32_negimm",
677                               "addsubimm_operand_i32_posimm",
678                               GPR32, GPR32wsp, WZR>;
679 defm SUBxxi : addsubimm_shifts<"SUBxi", 0b1, 0b1, "sub", "cmp",
680                               "addsubimm_operand_i64_negimm",
681                               "addsubimm_operand_i64_posimm",
682                               GPR64, GPR64xsp, XZR>;
683
684 multiclass MOVsp<RegisterClass GPRsp, RegisterClass SP, Instruction addop> {
685   def _fromsp : InstAlias<"mov $Rd, $Rn",
686                           (addop GPRsp:$Rd, SP:$Rn, 0),
687                           0b1>;
688
689   def _tosp : InstAlias<"mov $Rd, $Rn",
690                         (addop SP:$Rd, GPRsp:$Rn, 0),
691                         0b1>;
692 }
693
694 // Recall Rxsp is a RegisterClass containing *just* xsp.
695 defm MOVxx : MOVsp<GPR64xsp, Rxsp, ADDxxi_lsl0_s>;
696 defm MOVww : MOVsp<GPR32wsp, Rwsp, ADDwwi_lsl0_s>;
697
698 //===----------------------------------------------------------------------===//
699 // Add-subtract (shifted register) instructions
700 //===----------------------------------------------------------------------===//
701 // Contains: ADD, ADDS, SUB, SUBS + aliases CMN, CMP, NEG, NEGS
702
703 //===-------------------------------
704 // 1. The "shifed register" operands. Shared with logical insts.
705 //===-------------------------------
706
707 multiclass shift_operands<string prefix, string form> {
708   def _asmoperand_i32 : AsmOperandClass {
709     let Name = "Shift" # form # "i32";
710     let RenderMethod = "addShiftOperands";
711     let PredicateMethod = "isShift<A64SE::" # form # ", false>";
712     let DiagnosticType = "AddSubRegShift32";
713   }
714
715   // Note that the operand type is intentionally i64 because the DAGCombiner
716   // puts these into a canonical form.
717   def _i32 : Operand<i64>, ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 31; }]> {
718     let ParserMatchClass
719           = !cast<AsmOperandClass>(prefix # "_asmoperand_i32");
720     let PrintMethod = "printShiftOperand<A64SE::" # form # ">";
721     let DecoderMethod = "Decode32BitShiftOperand";
722   }
723
724   def _asmoperand_i64 : AsmOperandClass {
725       let Name = "Shift" # form # "i64";
726       let RenderMethod = "addShiftOperands";
727       let PredicateMethod = "isShift<A64SE::" # form # ", true>";
728       let DiagnosticType = "AddSubRegShift64";
729   }
730
731   def _i64 : Operand<i64>, ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 63; }]> {
732     let ParserMatchClass
733           = !cast<AsmOperandClass>(prefix # "_asmoperand_i64");
734     let PrintMethod = "printShiftOperand<A64SE::" # form # ">";
735   }
736 }
737
738 defm lsl_operand : shift_operands<"lsl_operand", "LSL">;
739 defm lsr_operand : shift_operands<"lsr_operand", "LSR">;
740 defm asr_operand : shift_operands<"asr_operand", "ASR">;
741
742 // Not used for add/sub, but defined here for completeness. The "logical
743 // (shifted register)" instructions *do* have an ROR variant.
744 defm ror_operand : shift_operands<"ror_operand", "ROR">;
745
746 //===-------------------------------
747 // 2. The basic 3.5-operand ADD/SUB/ADDS/SUBS instructions.
748 //===-------------------------------
749
750 // N.b. the commutable parameter is just !N. It will be first against the wall
751 // when the revolution comes.
752 multiclass addsub_shifts<string prefix, bit sf, bit op, bit s, bit commutable,
753                          string asmop, SDPatternOperator opfrag, string sty,
754                          RegisterClass GPR, list<Register> defs> {
755   let isCommutable = commutable, Defs = defs in {
756   def _lsl : A64I_addsubshift<sf, op, s, 0b00,
757                        (outs GPR:$Rd),
758                        (ins GPR:$Rn, GPR:$Rm,
759                             !cast<Operand>("lsl_operand_" # sty):$Imm6),
760                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
761                        [(set GPR:$Rd, (opfrag GPR:$Rn, (shl GPR:$Rm,
762                             !cast<Operand>("lsl_operand_" # sty):$Imm6))
763                        )],
764                        NoItinerary>;
765
766   def _lsr : A64I_addsubshift<sf, op, s, 0b01,
767                        (outs GPR:$Rd),
768                        (ins GPR:$Rn, GPR:$Rm,
769                             !cast<Operand>("lsr_operand_" # sty):$Imm6),
770                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
771                        [(set GPR:$Rd, (opfrag GPR:$Rn, (srl GPR:$Rm,
772                             !cast<Operand>("lsr_operand_" # sty):$Imm6))
773                        )],
774                        NoItinerary>;
775
776   def _asr : A64I_addsubshift<sf, op, s, 0b10,
777                        (outs GPR:$Rd),
778                        (ins GPR:$Rn, GPR:$Rm,
779                             !cast<Operand>("asr_operand_" # sty):$Imm6),
780                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
781                        [(set GPR:$Rd, (opfrag GPR:$Rn, (sra GPR:$Rm,
782                             !cast<Operand>("asr_operand_" # sty):$Imm6))
783                        )],
784                        NoItinerary>;
785   }
786
787   def _noshift
788       : InstAlias<!strconcat(asmop, " $Rd, $Rn, $Rm"),
789                  (!cast<Instruction>(prefix # "_lsl") GPR:$Rd, GPR:$Rn,
790                                                       GPR:$Rm, 0)>;
791
792   def : Pat<(opfrag GPR:$Rn, GPR:$Rm),
793             (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
794 }
795
796 multiclass addsub_sizes<string prefix, bit op, bit s, bit commutable,
797                          string asmop, SDPatternOperator opfrag,
798                          list<Register> defs> {
799   defm xxx : addsub_shifts<prefix # "xxx", 0b1, op, s,
800                            commutable, asmop, opfrag, "i64", GPR64, defs>;
801   defm www : addsub_shifts<prefix # "www", 0b0, op, s,
802                            commutable, asmop, opfrag, "i32", GPR32, defs>;
803 }
804
805
806 defm ADD : addsub_sizes<"ADD", 0b0, 0b0, 0b1, "add", add, []>;
807 defm SUB : addsub_sizes<"SUB", 0b1, 0b0, 0b0, "sub", sub, []>;
808
809 defm ADDS : addsub_sizes<"ADDS", 0b0, 0b1, 0b1, "adds", addc, [NZCV]>;
810 defm SUBS : addsub_sizes<"SUBS", 0b1, 0b1, 0b0, "subs", subc, [NZCV]>;
811
812 //===-------------------------------
813 // 1. The NEG/NEGS aliases
814 //===-------------------------------
815
816 multiclass neg_alias<Instruction INST, RegisterClass GPR,
817                      Register ZR, Operand shift_operand, SDNode shiftop> {
818    def : InstAlias<"neg $Rd, $Rm, $Imm6",
819                    (INST GPR:$Rd, ZR, GPR:$Rm, shift_operand:$Imm6)>;
820
821    def : Pat<(sub 0, (shiftop GPR:$Rm, shift_operand:$Imm6)),
822              (INST ZR, GPR:$Rm, shift_operand:$Imm6)>;
823 }
824
825 defm : neg_alias<SUBwww_lsl, GPR32, WZR, lsl_operand_i32, shl>;
826 defm : neg_alias<SUBwww_lsr, GPR32, WZR, lsr_operand_i32, srl>;
827 defm : neg_alias<SUBwww_asr, GPR32, WZR, asr_operand_i32, sra>;
828 def : InstAlias<"neg $Rd, $Rm", (SUBwww_lsl GPR32:$Rd, WZR, GPR32:$Rm, 0)>;
829 def : Pat<(sub 0, GPR32:$Rm), (SUBwww_lsl WZR, GPR32:$Rm, 0)>;
830
831 defm : neg_alias<SUBxxx_lsl, GPR64, XZR, lsl_operand_i64, shl>;
832 defm : neg_alias<SUBxxx_lsr, GPR64, XZR, lsr_operand_i64, srl>;
833 defm : neg_alias<SUBxxx_asr, GPR64, XZR, asr_operand_i64, sra>;
834 def : InstAlias<"neg $Rd, $Rm", (SUBxxx_lsl GPR64:$Rd, XZR, GPR64:$Rm, 0)>;
835 def : Pat<(sub 0, GPR64:$Rm), (SUBxxx_lsl XZR, GPR64:$Rm, 0)>;
836
837 // NEGS doesn't get any patterns yet: defining multiple outputs means C++ has to
838 // be involved.
839 class negs_alias<Instruction INST, RegisterClass GPR,
840                  Register ZR, Operand shift_operand, SDNode shiftop>
841   : InstAlias<"negs $Rd, $Rm, $Imm6",
842               (INST GPR:$Rd, ZR, GPR:$Rm, shift_operand:$Imm6)>;
843
844 def : negs_alias<SUBSwww_lsl, GPR32, WZR, lsl_operand_i32, shl>;
845 def : negs_alias<SUBSwww_lsr, GPR32, WZR, lsr_operand_i32, srl>;
846 def : negs_alias<SUBSwww_asr, GPR32, WZR, asr_operand_i32, sra>;
847 def : InstAlias<"negs $Rd, $Rm", (SUBSwww_lsl GPR32:$Rd, WZR, GPR32:$Rm, 0)>;
848
849 def : negs_alias<SUBSxxx_lsl, GPR64, XZR, lsl_operand_i64, shl>;
850 def : negs_alias<SUBSxxx_lsr, GPR64, XZR, lsr_operand_i64, srl>;
851 def : negs_alias<SUBSxxx_asr, GPR64, XZR, asr_operand_i64, sra>;
852 def : InstAlias<"negs $Rd, $Rm", (SUBSxxx_lsl GPR64:$Rd, XZR, GPR64:$Rm, 0)>;
853
854 //===-------------------------------
855 // 1. The CMP/CMN aliases
856 //===-------------------------------
857
858 multiclass cmp_shifts<string prefix, bit sf, bit op, bit commutable,
859                       string asmop, SDPatternOperator opfrag, string sty,
860                       RegisterClass GPR> {
861   let isCommutable = commutable, Rd = 0b11111, Defs = [NZCV] in {
862   def _lsl : A64I_addsubshift<sf, op, 0b1, 0b00,
863                        (outs),
864                        (ins GPR:$Rn, GPR:$Rm,
865                             !cast<Operand>("lsl_operand_" # sty):$Imm6),
866                        !strconcat(asmop, "\t$Rn, $Rm, $Imm6"),
867                        [(set NZCV, (opfrag GPR:$Rn, (shl GPR:$Rm,
868                             !cast<Operand>("lsl_operand_" # sty):$Imm6))
869                        )],
870                        NoItinerary>;
871
872   def _lsr : A64I_addsubshift<sf, op, 0b1, 0b01,
873                        (outs),
874                        (ins GPR:$Rn, GPR:$Rm,
875                             !cast<Operand>("lsr_operand_" # sty):$Imm6),
876                        !strconcat(asmop, "\t$Rn, $Rm, $Imm6"),
877                        [(set NZCV, (opfrag GPR:$Rn, (srl GPR:$Rm,
878                             !cast<Operand>("lsr_operand_" # sty):$Imm6))
879                        )],
880                        NoItinerary>;
881
882   def _asr : A64I_addsubshift<sf, op, 0b1, 0b10,
883                        (outs),
884                        (ins GPR:$Rn, GPR:$Rm,
885                             !cast<Operand>("asr_operand_" # sty):$Imm6),
886                        !strconcat(asmop, "\t$Rn, $Rm, $Imm6"),
887                        [(set NZCV, (opfrag GPR:$Rn, (sra GPR:$Rm,
888                             !cast<Operand>("asr_operand_" # sty):$Imm6))
889                        )],
890                        NoItinerary>;
891   }
892
893   def _noshift
894       : InstAlias<!strconcat(asmop, " $Rn, $Rm"),
895                  (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
896
897   def : Pat<(opfrag GPR:$Rn, GPR:$Rm),
898             (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
899 }
900
901 defm CMPww : cmp_shifts<"CMPww", 0b0, 0b1, 0b0, "cmp", A64cmp, "i32", GPR32>;
902 defm CMPxx : cmp_shifts<"CMPxx", 0b1, 0b1, 0b0, "cmp", A64cmp, "i64", GPR64>;
903
904 defm CMNww : cmp_shifts<"CMNww", 0b0, 0b0, 0b1, "cmn", A64cmn, "i32", GPR32>;
905 defm CMNxx : cmp_shifts<"CMNxx", 0b1, 0b0, 0b1, "cmn", A64cmn, "i64", GPR64>;
906
907 //===----------------------------------------------------------------------===//
908 // Add-subtract (with carry) instructions
909 //===----------------------------------------------------------------------===//
910 // Contains: ADC, ADCS, SBC, SBCS + aliases NGC, NGCS
911
912 multiclass A64I_addsubcarrySizes<bit op, bit s, string asmop> {
913   let Uses = [NZCV] in {
914     def www : A64I_addsubcarry<0b0, op, s, 0b000000,
915                                (outs GPR32:$Rd), (ins GPR32:$Rn, GPR32:$Rm),
916                                !strconcat(asmop, "\t$Rd, $Rn, $Rm"),
917                                [], NoItinerary>;
918
919     def xxx : A64I_addsubcarry<0b1, op, s, 0b000000,
920                                (outs GPR64:$Rd), (ins GPR64:$Rn, GPR64:$Rm),
921                                !strconcat(asmop, "\t$Rd, $Rn, $Rm"),
922                                [], NoItinerary>;
923   }
924 }
925
926 let isCommutable = 1 in {
927   defm ADC : A64I_addsubcarrySizes<0b0, 0b0, "adc">;
928 }
929
930 defm SBC : A64I_addsubcarrySizes<0b1, 0b0, "sbc">;
931
932 let Defs = [NZCV] in {
933   let isCommutable = 1 in {
934     defm ADCS : A64I_addsubcarrySizes<0b0, 0b1, "adcs">;
935   }
936
937   defm SBCS : A64I_addsubcarrySizes<0b1, 0b1, "sbcs">;
938 }
939
940 def : InstAlias<"ngc $Rd, $Rm", (SBCwww GPR32:$Rd, WZR, GPR32:$Rm)>;
941 def : InstAlias<"ngc $Rd, $Rm", (SBCxxx GPR64:$Rd, XZR, GPR64:$Rm)>;
942 def : InstAlias<"ngcs $Rd, $Rm", (SBCSwww GPR32:$Rd, WZR, GPR32:$Rm)>;
943 def : InstAlias<"ngcs $Rd, $Rm", (SBCSxxx GPR64:$Rd, XZR, GPR64:$Rm)>;
944
945 // Note that adde and sube can form a chain longer than two (e.g. for 256-bit
946 // addition). So the flag-setting instructions are appropriate.
947 def : Pat<(adde GPR32:$Rn, GPR32:$Rm), (ADCSwww GPR32:$Rn, GPR32:$Rm)>;
948 def : Pat<(adde GPR64:$Rn, GPR64:$Rm), (ADCSxxx GPR64:$Rn, GPR64:$Rm)>;
949 def : Pat<(sube GPR32:$Rn, GPR32:$Rm), (SBCSwww GPR32:$Rn, GPR32:$Rm)>;
950 def : Pat<(sube GPR64:$Rn, GPR64:$Rm), (SBCSxxx GPR64:$Rn, GPR64:$Rm)>;
951
952 //===----------------------------------------------------------------------===//
953 // Bitfield
954 //===----------------------------------------------------------------------===//
955 // Contains: SBFM, BFM, UBFM, [SU]XT[BHW], ASR, LSR, LSL, SBFI[ZX], BFI, BFXIL,
956 //     UBFIZ, UBFX
957
958 // Because of the rather complicated nearly-overlapping aliases, the decoding of
959 // this range of instructions is handled manually. The architectural
960 // instructions are BFM, SBFM and UBFM but a disassembler should never produce
961 // these.
962 //
963 // In the end, the best option was to use BFM instructions for decoding under
964 // almost all circumstances, but to create aliasing *Instructions* for each of
965 // the canonical forms and specify a completely custom decoder which would
966 // substitute the correct MCInst as needed.
967 //
968 // This also simplifies instruction selection, parsing etc because the MCInsts
969 // have a shape that's closer to their use in code.
970
971 //===-------------------------------
972 // 1. The architectural BFM instructions
973 //===-------------------------------
974
975 def uimm5_asmoperand : AsmOperandClass {
976   let Name = "UImm5";
977   let PredicateMethod = "isUImm<5>";
978   let RenderMethod = "addImmOperands";
979   let DiagnosticType = "UImm5";
980 }
981
982 def uimm6_asmoperand : AsmOperandClass {
983   let Name = "UImm6";
984   let PredicateMethod = "isUImm<6>";
985   let RenderMethod = "addImmOperands";
986   let DiagnosticType = "UImm6";
987 }
988
989 def bitfield32_imm : Operand<i64>,
990                      ImmLeaf<i64, [{ return Imm >= 0 && Imm < 32; }]> {
991   let ParserMatchClass = uimm5_asmoperand;
992
993   let DecoderMethod = "DecodeBitfield32ImmOperand";
994 }
995
996
997 def bitfield64_imm : Operand<i64>,
998                      ImmLeaf<i64, [{ return Imm >= 0 && Imm < 64; }]> {
999   let ParserMatchClass = uimm6_asmoperand;
1000
1001   // Default decoder works in 64-bit case: the 6-bit field can take any value.
1002 }
1003
1004 multiclass A64I_bitfieldSizes<bits<2> opc, string asmop> {
1005   def wwii : A64I_bitfield<0b0, opc, 0b0, (outs GPR32:$Rd),
1006                     (ins GPR32:$Rn, bitfield32_imm:$ImmR, bitfield32_imm:$ImmS),
1007                     !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1008                     [], NoItinerary> {
1009     let DecoderMethod = "DecodeBitfieldInstruction";
1010   }
1011
1012   def xxii : A64I_bitfield<0b1, opc, 0b1, (outs GPR64:$Rd),
1013                     (ins GPR64:$Rn, bitfield64_imm:$ImmR, bitfield64_imm:$ImmS),
1014                     !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1015                     [], NoItinerary> {
1016     let DecoderMethod = "DecodeBitfieldInstruction";
1017   }
1018 }
1019
1020 defm SBFM : A64I_bitfieldSizes<0b00, "sbfm">;
1021 defm UBFM : A64I_bitfieldSizes<0b10, "ubfm">;
1022
1023 // BFM instructions modify the destination register rather than defining it
1024 // completely.
1025 def BFMwwii :
1026   A64I_bitfield<0b0, 0b01, 0b0, (outs GPR32:$Rd),
1027         (ins GPR32:$src, GPR32:$Rn, bitfield32_imm:$ImmR, bitfield32_imm:$ImmS),
1028         "bfm\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1029   let DecoderMethod = "DecodeBitfieldInstruction";
1030   let Constraints = "$src = $Rd";
1031 }
1032
1033 def BFMxxii :
1034   A64I_bitfield<0b1, 0b01, 0b1, (outs GPR64:$Rd),
1035         (ins GPR64:$src, GPR64:$Rn, bitfield64_imm:$ImmR, bitfield64_imm:$ImmS),
1036         "bfm\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1037   let DecoderMethod = "DecodeBitfieldInstruction";
1038   let Constraints = "$src = $Rd";
1039 }
1040
1041
1042 //===-------------------------------
1043 // 2. Extend aliases to 64-bit dest
1044 //===-------------------------------
1045
1046 // Unfortunately the extensions that end up as 64-bits cannot be handled by an
1047 // instruction alias: their syntax is (for example) "SXTB x0, w0", which needs
1048 // to be mapped to "SBFM x0, x0, #0, 7" (changing the class of Rn). InstAlias is
1049 // not capable of such a map as far as I'm aware
1050
1051 // Note that these instructions are strictly more specific than the
1052 // BFM ones (in ImmR) so they can handle their own decoding.
1053 class A64I_bf_ext<bit sf, bits<2> opc, RegisterClass GPRDest, string asmop,
1054                     bits<6> imms, dag pattern>
1055   : A64I_bitfield<sf, opc, sf,
1056                   (outs GPRDest:$Rd), (ins GPR32:$Rn),
1057                   !strconcat(asmop, "\t$Rd, $Rn"),
1058                   [(set GPRDest:$Rd, pattern)], NoItinerary> {
1059   let ImmR = 0b000000;
1060   let ImmS = imms;
1061 }
1062
1063 // Signed extensions
1064 def SXTBxw : A64I_bf_ext<0b1, 0b00, GPR64, "sxtb", 7,
1065                          (sext_inreg (anyext GPR32:$Rn), i8)>;
1066 def SXTBww : A64I_bf_ext<0b0, 0b00, GPR32, "sxtb", 7,
1067                          (sext_inreg GPR32:$Rn, i8)>;
1068 def SXTHxw : A64I_bf_ext<0b1, 0b00, GPR64, "sxth", 15,
1069                          (sext_inreg (anyext GPR32:$Rn), i16)>;
1070 def SXTHww : A64I_bf_ext<0b0, 0b00, GPR32, "sxth", 15,
1071                          (sext_inreg GPR32:$Rn, i16)>;
1072 def SXTWxw : A64I_bf_ext<0b1, 0b00, GPR64, "sxtw", 31, (sext GPR32:$Rn)>;
1073
1074 // Unsigned extensions
1075 def UXTBww : A64I_bf_ext<0b0, 0b10, GPR32, "uxtb", 7,
1076                          (and GPR32:$Rn, 255)>;
1077 def UXTHww : A64I_bf_ext<0b0, 0b10, GPR32, "uxth", 15,
1078                          (and GPR32:$Rn, 65535)>;
1079
1080 // The 64-bit unsigned variants are not strictly architectural but recommended
1081 // for consistency.
1082 let isAsmParserOnly = 1 in {
1083   def UXTBxw : A64I_bf_ext<0b0, 0b10, GPR64, "uxtb", 7,
1084                            (and (anyext GPR32:$Rn), 255)>;
1085   def UXTHxw : A64I_bf_ext<0b0, 0b10, GPR64, "uxth", 15,
1086                            (and (anyext GPR32:$Rn), 65535)>;
1087 }
1088
1089 // Extra patterns for when the source register is actually 64-bits
1090 // too. There's no architectural difference here, it's just LLVM
1091 // shinanigans. There's no need for equivalent zero-extension patterns
1092 // because they'll already be caught by logical (immediate) matching.
1093 def : Pat<(sext_inreg GPR64:$Rn, i8),
1094           (SXTBxw (EXTRACT_SUBREG GPR64:$Rn, sub_32))>;
1095 def : Pat<(sext_inreg GPR64:$Rn, i16),
1096           (SXTHxw (EXTRACT_SUBREG GPR64:$Rn, sub_32))>;
1097 def : Pat<(sext_inreg GPR64:$Rn, i32),
1098           (SXTWxw (EXTRACT_SUBREG GPR64:$Rn, sub_32))>;
1099
1100
1101 //===-------------------------------
1102 // 3. Aliases for ASR and LSR (the simple shifts)
1103 //===-------------------------------
1104
1105 // These also handle their own decoding because ImmS being set makes
1106 // them take precedence over BFM.
1107 multiclass A64I_shift<bits<2> opc, string asmop, SDNode opnode> {
1108   def wwi : A64I_bitfield<0b0, opc, 0b0,
1109                     (outs GPR32:$Rd), (ins GPR32:$Rn, bitfield32_imm:$ImmR),
1110                     !strconcat(asmop, "\t$Rd, $Rn, $ImmR"),
1111                     [(set GPR32:$Rd, (opnode GPR32:$Rn, bitfield32_imm:$ImmR))],
1112                     NoItinerary> {
1113     let ImmS = 31;
1114   }
1115
1116   def xxi : A64I_bitfield<0b1, opc, 0b1,
1117                     (outs GPR64:$Rd), (ins GPR64:$Rn, bitfield64_imm:$ImmR),
1118                     !strconcat(asmop, "\t$Rd, $Rn, $ImmR"),
1119                     [(set GPR64:$Rd, (opnode GPR64:$Rn, bitfield64_imm:$ImmR))],
1120                     NoItinerary> {
1121     let ImmS = 63;
1122   }
1123
1124 }
1125
1126 defm ASR : A64I_shift<0b00, "asr", sra>;
1127 defm LSR : A64I_shift<0b10, "lsr", srl>;
1128
1129 //===-------------------------------
1130 // 4. Aliases for LSL
1131 //===-------------------------------
1132
1133 // Unfortunately LSL and subsequent aliases are much more complicated. We need
1134 // to be able to say certain output instruction fields depend in a complex
1135 // manner on combinations of input assembly fields).
1136 //
1137 // MIOperandInfo *might* have been able to do it, but at the cost of
1138 // significantly more C++ code.
1139
1140 // N.b. contrary to usual practice these operands store the shift rather than
1141 // the machine bits in an MCInst. The complexity overhead of consistency
1142 // outweighed the benefits in this case (custom asmparser, printer and selection
1143 // vs custom encoder).
1144 def bitfield32_lsl_imm : Operand<i64>,
1145                          ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 31; }]> {
1146   let ParserMatchClass = uimm5_asmoperand;
1147   let EncoderMethod = "getBitfield32LSLOpValue";
1148 }
1149
1150 def bitfield64_lsl_imm : Operand<i64>,
1151                          ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 63; }]> {
1152   let ParserMatchClass = uimm6_asmoperand;
1153   let EncoderMethod = "getBitfield64LSLOpValue";
1154 }
1155
1156 class A64I_bitfield_lsl<bit sf, RegisterClass GPR, Operand operand>
1157   : A64I_bitfield<sf, 0b10, sf, (outs GPR:$Rd), (ins GPR:$Rn, operand:$FullImm),
1158                   "lsl\t$Rd, $Rn, $FullImm",
1159                   [(set GPR:$Rd, (shl GPR:$Rn, operand:$FullImm))],
1160                   NoItinerary> {
1161   bits<12> FullImm;
1162   let ImmR = FullImm{5-0};
1163   let ImmS = FullImm{11-6};
1164
1165   // No disassembler allowed because it would overlap with BFM which does the
1166   // actual work.
1167   let isAsmParserOnly = 1;
1168 }
1169
1170 def LSLwwi : A64I_bitfield_lsl<0b0, GPR32, bitfield32_lsl_imm>;
1171 def LSLxxi : A64I_bitfield_lsl<0b1, GPR64, bitfield64_lsl_imm>;
1172
1173 //===-------------------------------
1174 // 5. Aliases for bitfield extract instructions
1175 //===-------------------------------
1176
1177 def bfx32_width_asmoperand : AsmOperandClass {
1178   let Name = "BFX32Width";
1179   let PredicateMethod = "isBitfieldWidth<32>";
1180   let RenderMethod = "addBFXWidthOperands";
1181   let DiagnosticType = "Width32";
1182 }
1183
1184 def bfx32_width : Operand<i64>, ImmLeaf<i64, [{ return true; }]> {
1185   let PrintMethod = "printBFXWidthOperand";
1186   let ParserMatchClass = bfx32_width_asmoperand;
1187 }
1188
1189 def bfx64_width_asmoperand : AsmOperandClass {
1190   let Name = "BFX64Width";
1191   let PredicateMethod = "isBitfieldWidth<64>";
1192   let RenderMethod = "addBFXWidthOperands";
1193   let DiagnosticType = "Width64";
1194 }
1195
1196 def bfx64_width : Operand<i64> {
1197   let PrintMethod = "printBFXWidthOperand";
1198   let ParserMatchClass = bfx64_width_asmoperand;
1199 }
1200
1201
1202 multiclass A64I_bitfield_extract<bits<2> opc, string asmop, SDNode op> {
1203   def wwii : A64I_bitfield<0b0, opc, 0b0, (outs GPR32:$Rd),
1204                        (ins GPR32:$Rn, bitfield32_imm:$ImmR, bfx32_width:$ImmS),
1205                        !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1206                        [(set GPR32:$Rd, (op GPR32:$Rn, imm:$ImmR, imm:$ImmS))],
1207                        NoItinerary> {
1208     // As above, no disassembler allowed.
1209     let isAsmParserOnly = 1;
1210   }
1211
1212   def xxii : A64I_bitfield<0b1, opc, 0b1, (outs GPR64:$Rd),
1213                        (ins GPR64:$Rn, bitfield64_imm:$ImmR, bfx64_width:$ImmS),
1214                        !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1215                        [(set GPR64:$Rd, (op GPR64:$Rn, imm:$ImmR, imm:$ImmS))],
1216                        NoItinerary> {
1217     // As above, no disassembler allowed.
1218     let isAsmParserOnly = 1;
1219   }
1220 }
1221
1222 defm SBFX :  A64I_bitfield_extract<0b00, "sbfx", A64Sbfx>;
1223 defm UBFX :  A64I_bitfield_extract<0b10, "ubfx", A64Ubfx>;
1224
1225 // Again, variants based on BFM modify Rd so need it as an input too.
1226 def BFXILwwii : A64I_bitfield<0b0, 0b01, 0b0, (outs GPR32:$Rd),
1227            (ins GPR32:$src, GPR32:$Rn, bitfield32_imm:$ImmR, bfx32_width:$ImmS),
1228            "bfxil\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1229   // As above, no disassembler allowed.
1230   let isAsmParserOnly = 1;
1231   let Constraints = "$src = $Rd";
1232 }
1233
1234 def BFXILxxii : A64I_bitfield<0b1, 0b01, 0b1, (outs GPR64:$Rd),
1235            (ins GPR64:$src, GPR64:$Rn, bitfield64_imm:$ImmR, bfx64_width:$ImmS),
1236            "bfxil\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1237   // As above, no disassembler allowed.
1238   let isAsmParserOnly = 1;
1239   let Constraints = "$src = $Rd";
1240 }
1241
1242 // SBFX instructions can do a 1-instruction sign-extension of boolean values.
1243 def : Pat<(sext_inreg GPR64:$Rn, i1), (SBFXxxii GPR64:$Rn, 0, 0)>;
1244 def : Pat<(sext_inreg GPR32:$Rn, i1), (SBFXwwii GPR32:$Rn, 0, 0)>;
1245 def : Pat<(i64 (sext_inreg (anyext GPR32:$Rn), i1)),
1246           (SBFXxxii (SUBREG_TO_REG (i64 0), GPR32:$Rn, sub_32), 0, 0)>;
1247
1248 // UBFX makes sense as an implementation of a 64-bit zero-extension too. Could
1249 // use either 64-bit or 32-bit variant, but 32-bit might be more efficient.
1250 def : Pat<(zext GPR32:$Rn), (SUBREG_TO_REG (i64 0), (UBFXwwii GPR32:$Rn, 0, 31),
1251                                            sub_32)>;
1252
1253 //===-------------------------------
1254 // 6. Aliases for bitfield insert instructions
1255 //===-------------------------------
1256
1257 def bfi32_lsb_asmoperand : AsmOperandClass {
1258   let Name = "BFI32LSB";
1259   let PredicateMethod = "isUImm<5>";
1260   let RenderMethod = "addBFILSBOperands<32>";
1261   let DiagnosticType = "UImm5";
1262 }
1263
1264 def bfi32_lsb : Operand<i64>,
1265                 ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 31; }]> {
1266   let PrintMethod = "printBFILSBOperand<32>";
1267   let ParserMatchClass = bfi32_lsb_asmoperand;
1268 }
1269
1270 def bfi64_lsb_asmoperand : AsmOperandClass {
1271   let Name = "BFI64LSB";
1272   let PredicateMethod = "isUImm<6>";
1273   let RenderMethod = "addBFILSBOperands<64>";
1274   let DiagnosticType = "UImm6";
1275 }
1276
1277 def bfi64_lsb : Operand<i64>,
1278                 ImmLeaf<i64, [{ return Imm >= 0 && Imm <= 63; }]> {
1279   let PrintMethod = "printBFILSBOperand<64>";
1280   let ParserMatchClass = bfi64_lsb_asmoperand;
1281 }
1282
1283 // Width verification is performed during conversion so width operand can be
1284 // shared between 32/64-bit cases. Still needed for the print method though
1285 // because ImmR encodes "width - 1".
1286 def bfi32_width_asmoperand : AsmOperandClass {
1287   let Name = "BFI32Width";
1288   let PredicateMethod = "isBitfieldWidth<32>";
1289   let RenderMethod = "addBFIWidthOperands";
1290   let DiagnosticType = "Width32";
1291 }
1292
1293 def bfi32_width : Operand<i64>,
1294                   ImmLeaf<i64, [{ return Imm >= 1 && Imm <= 32; }]> {
1295   let PrintMethod = "printBFIWidthOperand";
1296   let ParserMatchClass = bfi32_width_asmoperand;
1297 }
1298
1299 def bfi64_width_asmoperand : AsmOperandClass {
1300   let Name = "BFI64Width";
1301   let PredicateMethod = "isBitfieldWidth<64>";
1302   let RenderMethod = "addBFIWidthOperands";
1303   let DiagnosticType = "Width64";
1304 }
1305
1306 def bfi64_width : Operand<i64>,
1307                   ImmLeaf<i64, [{ return Imm >= 1 && Imm <= 64; }]> {
1308   let PrintMethod = "printBFIWidthOperand";
1309   let ParserMatchClass = bfi64_width_asmoperand;
1310 }
1311
1312 multiclass A64I_bitfield_insert<bits<2> opc, string asmop> {
1313   def wwii : A64I_bitfield<0b0, opc, 0b0, (outs GPR32:$Rd),
1314                            (ins GPR32:$Rn, bfi32_lsb:$ImmR, bfi32_width:$ImmS),
1315                            !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1316                            [], NoItinerary> {
1317     // As above, no disassembler allowed.
1318     let isAsmParserOnly = 1;
1319   }
1320
1321   def xxii : A64I_bitfield<0b1, opc, 0b1, (outs GPR64:$Rd),
1322                            (ins GPR64:$Rn, bfi64_lsb:$ImmR, bfi64_width:$ImmS),
1323                            !strconcat(asmop, "\t$Rd, $Rn, $ImmR, $ImmS"),
1324                            [], NoItinerary> {
1325     // As above, no disassembler allowed.
1326     let isAsmParserOnly = 1;
1327   }
1328 }
1329
1330 defm SBFIZ :  A64I_bitfield_insert<0b00, "sbfiz">;
1331 defm UBFIZ :  A64I_bitfield_insert<0b10, "ubfiz">;
1332
1333
1334 def BFIwwii : A64I_bitfield<0b0, 0b01, 0b0, (outs GPR32:$Rd),
1335                 (ins GPR32:$src, GPR32:$Rn, bfi32_lsb:$ImmR, bfi32_width:$ImmS),
1336                 "bfi\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1337   // As above, no disassembler allowed.
1338   let isAsmParserOnly = 1;
1339   let Constraints = "$src = $Rd";
1340 }
1341
1342 def BFIxxii : A64I_bitfield<0b1, 0b01, 0b1, (outs GPR64:$Rd),
1343                 (ins GPR64:$src, GPR64:$Rn, bfi64_lsb:$ImmR, bfi64_width:$ImmS),
1344                 "bfi\t$Rd, $Rn, $ImmR, $ImmS", [], NoItinerary> {
1345   // As above, no disassembler allowed.
1346   let isAsmParserOnly = 1;
1347   let Constraints = "$src = $Rd";
1348 }
1349
1350 //===----------------------------------------------------------------------===//
1351 // Compare and branch (immediate)
1352 //===----------------------------------------------------------------------===//
1353 // Contains: CBZ, CBNZ
1354
1355 class label_asmoperand<int width, int scale> : AsmOperandClass {
1356   let Name = "Label" # width # "_" # scale;
1357   let PredicateMethod = "isLabel<" # width # "," # scale # ">";
1358   let RenderMethod = "addLabelOperands<" # width # ", " # scale # ">";
1359   let DiagnosticType = "Label";
1360 }
1361
1362 def label_wid19_scal4_asmoperand : label_asmoperand<19, 4>;
1363
1364 // All conditional immediate branches are the same really: 19 signed bits scaled
1365 // by the instruction-size (4).
1366 def bcc_target : Operand<OtherVT> {
1367   // This label is a 19-bit offset from PC, scaled by the instruction-width: 4.
1368   let ParserMatchClass = label_wid19_scal4_asmoperand;
1369   let PrintMethod = "printLabelOperand<19, 4>";
1370   let EncoderMethod = "getLabelOpValue<AArch64::fixup_a64_condbr>";
1371   let OperandType = "OPERAND_PCREL";
1372 }
1373
1374 multiclass cmpbr_sizes<bit op, string asmop, ImmLeaf SETOP> {
1375   let isBranch = 1, isTerminator = 1 in {
1376   def x : A64I_cmpbr<0b1, op,
1377                      (outs),
1378                      (ins GPR64:$Rt, bcc_target:$Label),
1379                      !strconcat(asmop,"\t$Rt, $Label"),
1380                      [(A64br_cc (A64cmp GPR64:$Rt, 0), SETOP, bb:$Label)],
1381                      NoItinerary>;
1382
1383   def w : A64I_cmpbr<0b0, op,
1384                      (outs),
1385                      (ins GPR32:$Rt, bcc_target:$Label),
1386                      !strconcat(asmop,"\t$Rt, $Label"),
1387                      [(A64br_cc (A64cmp GPR32:$Rt, 0), SETOP, bb:$Label)],
1388                      NoItinerary>;
1389   }
1390 }
1391
1392 defm CBZ  : cmpbr_sizes<0b0, "cbz",  ImmLeaf<i32, [{
1393   return Imm == A64CC::EQ;
1394 }]> >;
1395 defm CBNZ : cmpbr_sizes<0b1, "cbnz", ImmLeaf<i32, [{
1396   return Imm == A64CC::NE;
1397 }]> >;
1398
1399 //===----------------------------------------------------------------------===//
1400 // Conditional branch (immediate) instructions
1401 //===----------------------------------------------------------------------===//
1402 // Contains: B.cc
1403
1404 def cond_code_asmoperand : AsmOperandClass {
1405   let Name = "CondCode";
1406   let DiagnosticType = "CondCode";
1407 }
1408
1409 def cond_code : Operand<i32>, ImmLeaf<i32, [{
1410   return Imm >= 0 && Imm <= 15;
1411 }]> {
1412   let PrintMethod = "printCondCodeOperand";
1413   let ParserMatchClass = cond_code_asmoperand;
1414 }
1415
1416 def Bcc : A64I_condbr<0b0, 0b0, (outs),
1417                 (ins cond_code:$Cond, bcc_target:$Label),
1418                 "b.$Cond $Label", [(A64br_cc NZCV, (i32 imm:$Cond), bb:$Label)],
1419                 NoItinerary> {
1420   let Uses = [NZCV];
1421   let isBranch = 1;
1422   let isTerminator = 1;
1423 }
1424
1425 //===----------------------------------------------------------------------===//
1426 // Conditional compare (immediate) instructions
1427 //===----------------------------------------------------------------------===//
1428 // Contains: CCMN, CCMP
1429
1430 def uimm4_asmoperand : AsmOperandClass {
1431   let Name = "UImm4";
1432   let PredicateMethod = "isUImm<4>";
1433   let RenderMethod = "addImmOperands";
1434   let DiagnosticType = "UImm4";
1435 }
1436
1437 def uimm4 : Operand<i32> {
1438   let ParserMatchClass = uimm4_asmoperand;
1439 }
1440
1441 def uimm5 : Operand<i32> {
1442   let ParserMatchClass = uimm5_asmoperand;
1443 }
1444
1445 // The only difference between this operand and the one for instructions like
1446 // B.cc is that it's parsed manually. The other get parsed implicitly as part of
1447 // the mnemonic handling.
1448 def cond_code_op_asmoperand : AsmOperandClass {
1449   let Name = "CondCodeOp";
1450   let RenderMethod = "addCondCodeOperands";
1451   let PredicateMethod = "isCondCode";
1452   let ParserMethod = "ParseCondCodeOperand";
1453   let DiagnosticType = "CondCode";
1454 }
1455
1456 def cond_code_op : Operand<i32> {
1457   let PrintMethod = "printCondCodeOperand";
1458   let ParserMatchClass = cond_code_op_asmoperand;
1459 }
1460
1461 class A64I_condcmpimmImpl<bit sf, bit op, RegisterClass GPR, string asmop>
1462   : A64I_condcmpimm<sf, op, 0b0, 0b0, 0b1, (outs),
1463                 (ins GPR:$Rn, uimm5:$UImm5, uimm4:$NZCVImm, cond_code_op:$Cond),
1464                 !strconcat(asmop, "\t$Rn, $UImm5, $NZCVImm, $Cond"),
1465                 [], NoItinerary> {
1466   let Defs = [NZCV];
1467 }
1468
1469 def CCMNwi : A64I_condcmpimmImpl<0b0, 0b0, GPR32, "ccmn">;
1470 def CCMNxi : A64I_condcmpimmImpl<0b1, 0b0, GPR64, "ccmn">;
1471 def CCMPwi : A64I_condcmpimmImpl<0b0, 0b1, GPR32, "ccmp">;
1472 def CCMPxi : A64I_condcmpimmImpl<0b1, 0b1, GPR64, "ccmp">;
1473
1474 //===----------------------------------------------------------------------===//
1475 // Conditional compare (register) instructions
1476 //===----------------------------------------------------------------------===//
1477 // Contains: CCMN, CCMP
1478
1479 class A64I_condcmpregImpl<bit sf, bit op, RegisterClass GPR, string asmop>
1480   : A64I_condcmpreg<sf, op, 0b0, 0b0, 0b1,
1481                     (outs),
1482                     (ins GPR:$Rn, GPR:$Rm, uimm4:$NZCVImm, cond_code_op:$Cond),
1483                     !strconcat(asmop, "\t$Rn, $Rm, $NZCVImm, $Cond"),
1484                     [], NoItinerary> {
1485   let Defs = [NZCV];
1486 }
1487
1488 def CCMNww : A64I_condcmpregImpl<0b0, 0b0, GPR32, "ccmn">;
1489 def CCMNxx : A64I_condcmpregImpl<0b1, 0b0, GPR64, "ccmn">;
1490 def CCMPww : A64I_condcmpregImpl<0b0, 0b1, GPR32, "ccmp">;
1491 def CCMPxx : A64I_condcmpregImpl<0b1, 0b1, GPR64, "ccmp">;
1492
1493 //===----------------------------------------------------------------------===//
1494 // Conditional select instructions
1495 //===----------------------------------------------------------------------===//
1496 // Contains: CSEL, CSINC, CSINV, CSNEG + aliases CSET, CSETM, CINC, CINV, CNEG
1497
1498 // Condition code which is encoded as the inversion (semantically rather than
1499 // bitwise) in the instruction.
1500 def inv_cond_code_op_asmoperand : AsmOperandClass {
1501   let Name = "InvCondCodeOp";
1502   let RenderMethod = "addInvCondCodeOperands";
1503   let PredicateMethod = "isCondCode";
1504   let ParserMethod = "ParseCondCodeOperand";
1505   let DiagnosticType = "CondCode";
1506 }
1507
1508 def inv_cond_code_op : Operand<i32> {
1509   let ParserMatchClass = inv_cond_code_op_asmoperand;
1510 }
1511
1512 // Having a separate operand for the selectable use-case is debatable, but gives
1513 // consistency with cond_code.
1514 def inv_cond_XFORM : SDNodeXForm<imm, [{
1515   A64CC::CondCodes CC = static_cast<A64CC::CondCodes>(N->getZExtValue());
1516   return CurDAG->getTargetConstant(A64InvertCondCode(CC), MVT::i32);
1517 }]>;
1518
1519 def inv_cond_code
1520   : ImmLeaf<i32, [{ return Imm >= 0 && Imm <= 15; }], inv_cond_XFORM>;
1521
1522
1523 multiclass A64I_condselSizes<bit op, bits<2> op2, string asmop,
1524                              SDPatternOperator select> {
1525   let Uses = [NZCV] in {
1526     def wwwc : A64I_condsel<0b0, op, 0b0, op2,
1527                             (outs GPR32:$Rd),
1528                             (ins GPR32:$Rn, GPR32:$Rm, cond_code_op:$Cond),
1529                             !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Cond"),
1530                             [(set GPR32:$Rd, (select GPR32:$Rn, GPR32:$Rm))],
1531                             NoItinerary>;
1532
1533
1534     def xxxc : A64I_condsel<0b1, op, 0b0, op2,
1535                             (outs GPR64:$Rd),
1536                             (ins GPR64:$Rn, GPR64:$Rm, cond_code_op:$Cond),
1537                             !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Cond"),
1538                             [(set GPR64:$Rd, (select GPR64:$Rn, GPR64:$Rm))],
1539                             NoItinerary>;
1540   }
1541 }
1542
1543 def simple_select
1544   : PatFrag<(ops node:$lhs, node:$rhs),
1545             (A64select_cc NZCV, node:$lhs, node:$rhs, (i32 imm:$Cond))>;
1546
1547 class complex_select<SDPatternOperator opnode>
1548   : PatFrag<(ops node:$lhs, node:$rhs),
1549         (A64select_cc NZCV, node:$lhs, (opnode node:$rhs), (i32 imm:$Cond))>;
1550
1551
1552 defm CSEL : A64I_condselSizes<0b0, 0b00, "csel", simple_select>;
1553 defm CSINC : A64I_condselSizes<0b0, 0b01, "csinc",
1554                                complex_select<PatFrag<(ops node:$val),
1555                                                       (add node:$val, 1)>>>;
1556 defm CSINV : A64I_condselSizes<0b1, 0b00, "csinv", complex_select<not>>;
1557 defm CSNEG : A64I_condselSizes<0b1, 0b01, "csneg", complex_select<ineg>>;
1558
1559 // Now the instruction aliases, which fit nicely into LLVM's model:
1560
1561 def : InstAlias<"cset $Rd, $Cond",
1562                 (CSINCwwwc GPR32:$Rd, WZR, WZR, inv_cond_code_op:$Cond)>;
1563 def : InstAlias<"cset $Rd, $Cond",
1564                 (CSINCxxxc GPR64:$Rd, XZR, XZR, inv_cond_code_op:$Cond)>;
1565 def : InstAlias<"csetm $Rd, $Cond",
1566                 (CSINVwwwc GPR32:$Rd, WZR, WZR, inv_cond_code_op:$Cond)>;
1567 def : InstAlias<"csetm $Rd, $Cond",
1568                 (CSINVxxxc GPR64:$Rd, XZR, XZR, inv_cond_code_op:$Cond)>;
1569 def : InstAlias<"cinc $Rd, $Rn, $Cond",
1570            (CSINCwwwc GPR32:$Rd, GPR32:$Rn, GPR32:$Rn, inv_cond_code_op:$Cond)>;
1571 def : InstAlias<"cinc $Rd, $Rn, $Cond",
1572            (CSINCxxxc GPR64:$Rd, GPR64:$Rn, GPR64:$Rn, inv_cond_code_op:$Cond)>;
1573 def : InstAlias<"cinv $Rd, $Rn, $Cond",
1574            (CSINVwwwc GPR32:$Rd, GPR32:$Rn, GPR32:$Rn, inv_cond_code_op:$Cond)>;
1575 def : InstAlias<"cinv $Rd, $Rn, $Cond",
1576            (CSINVxxxc GPR64:$Rd, GPR64:$Rn, GPR64:$Rn, inv_cond_code_op:$Cond)>;
1577 def : InstAlias<"cneg $Rd, $Rn, $Cond",
1578            (CSNEGwwwc GPR32:$Rd, GPR32:$Rn, GPR32:$Rn, inv_cond_code_op:$Cond)>;
1579 def : InstAlias<"cneg $Rd, $Rn, $Cond",
1580            (CSNEGxxxc GPR64:$Rd, GPR64:$Rn, GPR64:$Rn, inv_cond_code_op:$Cond)>;
1581
1582 // Finally some helper patterns.
1583
1584 // For CSET (a.k.a. zero-extension of icmp)
1585 def : Pat<(A64select_cc NZCV, 0, 1, cond_code:$Cond),
1586           (CSINCwwwc WZR, WZR, cond_code:$Cond)>;
1587 def : Pat<(A64select_cc NZCV, 1, 0, inv_cond_code:$Cond),
1588           (CSINCwwwc WZR, WZR, inv_cond_code:$Cond)>;
1589
1590 def : Pat<(A64select_cc NZCV, 0, 1, cond_code:$Cond),
1591           (CSINCxxxc XZR, XZR, cond_code:$Cond)>;
1592 def : Pat<(A64select_cc NZCV, 1, 0, inv_cond_code:$Cond),
1593           (CSINCxxxc XZR, XZR, inv_cond_code:$Cond)>;
1594
1595 // For CSETM (a.k.a. sign-extension of icmp)
1596 def : Pat<(A64select_cc NZCV, 0, -1, cond_code:$Cond),
1597           (CSINVwwwc WZR, WZR, cond_code:$Cond)>;
1598 def : Pat<(A64select_cc NZCV, -1, 0, inv_cond_code:$Cond),
1599           (CSINVwwwc WZR, WZR, inv_cond_code:$Cond)>;
1600
1601 def : Pat<(A64select_cc NZCV, 0, -1, cond_code:$Cond),
1602           (CSINVxxxc XZR, XZR, cond_code:$Cond)>;
1603 def : Pat<(A64select_cc NZCV, -1, 0, inv_cond_code:$Cond),
1604           (CSINVxxxc XZR, XZR, inv_cond_code:$Cond)>;
1605
1606 // CINC, CINV and CNEG get dealt with automatically, which leaves the issue of
1607 // commutativity. The instructions are to complex for isCommutable to be used,
1608 // so we have to create the patterns manually:
1609
1610 // No commutable pattern for CSEL since the commuted version is isomorphic.
1611
1612 // CSINC
1613 def :Pat<(A64select_cc NZCV, (add GPR32:$Rm, 1), GPR32:$Rn,
1614          inv_cond_code:$Cond),
1615          (CSINCwwwc GPR32:$Rn, GPR32:$Rm, inv_cond_code:$Cond)>;
1616 def :Pat<(A64select_cc NZCV, (add GPR64:$Rm, 1), GPR64:$Rn,
1617          inv_cond_code:$Cond),
1618          (CSINCxxxc GPR64:$Rn, GPR64:$Rm, inv_cond_code:$Cond)>;
1619
1620 // CSINV
1621 def :Pat<(A64select_cc NZCV, (not GPR32:$Rm), GPR32:$Rn, inv_cond_code:$Cond),
1622          (CSINVwwwc GPR32:$Rn, GPR32:$Rm, inv_cond_code:$Cond)>;
1623 def :Pat<(A64select_cc NZCV, (not GPR64:$Rm), GPR64:$Rn, inv_cond_code:$Cond),
1624          (CSINVxxxc GPR64:$Rn, GPR64:$Rm, inv_cond_code:$Cond)>;
1625
1626 // CSNEG
1627 def :Pat<(A64select_cc NZCV, (ineg GPR32:$Rm), GPR32:$Rn, inv_cond_code:$Cond),
1628          (CSNEGwwwc GPR32:$Rn, GPR32:$Rm, inv_cond_code:$Cond)>;
1629 def :Pat<(A64select_cc NZCV, (ineg GPR64:$Rm), GPR64:$Rn, inv_cond_code:$Cond),
1630          (CSNEGxxxc GPR64:$Rn, GPR64:$Rm, inv_cond_code:$Cond)>;
1631
1632 //===----------------------------------------------------------------------===//
1633 // Data Processing (1 source) instructions
1634 //===----------------------------------------------------------------------===//
1635 // Contains: RBIT, REV16, REV, REV32, CLZ, CLS.
1636
1637 // We define an unary operator which always fails. We will use this to
1638 // define unary operators that cannot be matched.
1639
1640 class A64I_dp_1src_impl<bit sf, bits<6> opcode, string asmop,
1641                    list<dag> patterns, RegisterClass GPRrc,
1642                    InstrItinClass itin>:
1643       A64I_dp_1src<sf,
1644                    0,
1645                    0b00000,
1646                    opcode,
1647                    !strconcat(asmop, "\t$Rd, $Rn"),
1648                    (outs GPRrc:$Rd),
1649                    (ins GPRrc:$Rn),
1650                    patterns,
1651                    itin>;
1652
1653 multiclass A64I_dp_1src <bits<6> opcode, string asmop> {
1654   let neverHasSideEffects = 1 in {
1655     def ww : A64I_dp_1src_impl<0b0, opcode, asmop, [], GPR32, NoItinerary>;
1656     def xx : A64I_dp_1src_impl<0b1, opcode, asmop, [], GPR64, NoItinerary>;
1657   }
1658 }
1659
1660 defm RBIT  : A64I_dp_1src<0b000000, "rbit">;
1661 defm CLS   : A64I_dp_1src<0b000101, "cls">;
1662 defm CLZ   : A64I_dp_1src<0b000100, "clz">;
1663
1664 def : Pat<(ctlz GPR32:$Rn), (CLZww GPR32:$Rn)>;
1665 def : Pat<(ctlz GPR64:$Rn), (CLZxx GPR64:$Rn)>;
1666 def : Pat<(ctlz_zero_undef GPR32:$Rn), (CLZww GPR32:$Rn)>;
1667 def : Pat<(ctlz_zero_undef GPR64:$Rn), (CLZxx GPR64:$Rn)>;
1668
1669 def : Pat<(cttz GPR32:$Rn), (CLZww (RBITww GPR32:$Rn))>;
1670 def : Pat<(cttz GPR64:$Rn), (CLZxx (RBITxx GPR64:$Rn))>;
1671 def : Pat<(cttz_zero_undef GPR32:$Rn), (CLZww (RBITww GPR32:$Rn))>;
1672 def : Pat<(cttz_zero_undef GPR64:$Rn), (CLZxx (RBITxx GPR64:$Rn))>;
1673
1674
1675 def REVww : A64I_dp_1src_impl<0b0, 0b000010, "rev",
1676                               [(set GPR32:$Rd, (bswap GPR32:$Rn))],
1677                               GPR32, NoItinerary>;
1678 def REVxx : A64I_dp_1src_impl<0b1, 0b000011, "rev",
1679                               [(set GPR64:$Rd, (bswap GPR64:$Rn))],
1680                               GPR64, NoItinerary>;
1681 def REV32xx : A64I_dp_1src_impl<0b1, 0b000010, "rev32",
1682                           [(set GPR64:$Rd, (bswap (rotr GPR64:$Rn, (i64 32))))],
1683                           GPR64, NoItinerary>;
1684 def REV16ww : A64I_dp_1src_impl<0b0, 0b000001, "rev16",
1685                           [(set GPR32:$Rd, (bswap (rotr GPR32:$Rn, (i64 16))))],
1686                           GPR32,
1687                           NoItinerary>;
1688 def REV16xx : A64I_dp_1src_impl<0b1, 0b000001, "rev16", [], GPR64, NoItinerary>;
1689
1690 //===----------------------------------------------------------------------===//
1691 // Data Processing (2 sources) instructions
1692 //===----------------------------------------------------------------------===//
1693 // Contains: CRC32C?[BHWX], UDIV, SDIV, LSLV, LSRV, ASRV, RORV + aliases LSL,
1694 //           LSR, ASR, ROR
1695
1696
1697 class dp_2src_impl<bit sf, bits<6> opcode, string asmop, list<dag> patterns,
1698                    RegisterClass GPRsp,
1699                    InstrItinClass itin>:
1700       A64I_dp_2src<sf,
1701                    opcode,
1702                    0,
1703                    !strconcat(asmop, "\t$Rd, $Rn, $Rm"),
1704                    (outs GPRsp:$Rd),
1705                    (ins GPRsp:$Rn, GPRsp:$Rm),
1706                    patterns,
1707                    itin>;
1708
1709 multiclass dp_2src_crc<bit c, string asmop> {
1710   def B_www : dp_2src_impl<0b0, {0, 1, 0, c, 0, 0},
1711                            !strconcat(asmop, "b"), [], GPR32, NoItinerary>;
1712   def H_www : dp_2src_impl<0b0, {0, 1, 0, c, 0, 1},
1713                            !strconcat(asmop, "h"), [], GPR32, NoItinerary>;
1714   def W_www : dp_2src_impl<0b0, {0, 1, 0, c, 1, 0},
1715                            !strconcat(asmop, "w"), [], GPR32, NoItinerary>;
1716   def X_wwx : A64I_dp_2src<0b1, {0, 1, 0, c, 1, 1}, 0b0,
1717                            !strconcat(asmop, "x\t$Rd, $Rn, $Rm"),
1718                            (outs GPR32:$Rd), (ins GPR32:$Rn, GPR64:$Rm), [],
1719                            NoItinerary>;
1720 }
1721
1722 multiclass dp_2src_zext <bits<6> opcode, string asmop, SDPatternOperator op> {
1723    def www : dp_2src_impl<0b0,
1724                          opcode,
1725                          asmop,
1726                          [(set GPR32:$Rd,
1727                                (op GPR32:$Rn, (i64 (zext GPR32:$Rm))))],
1728                          GPR32,
1729                          NoItinerary>;
1730    def xxx : dp_2src_impl<0b1,
1731                          opcode,
1732                          asmop,
1733                          [(set GPR64:$Rd, (op GPR64:$Rn, GPR64:$Rm))],
1734                          GPR64,
1735                          NoItinerary>;
1736 }
1737
1738
1739 multiclass dp_2src <bits<6> opcode, string asmop, SDPatternOperator op> {
1740     def www : dp_2src_impl<0b0,
1741                          opcode,
1742                          asmop,
1743                          [(set GPR32:$Rd, (op GPR32:$Rn, GPR32:$Rm))],
1744                          GPR32,
1745                          NoItinerary>;
1746    def xxx : dp_2src_impl<0b1,
1747                          opcode,
1748                          asmop,
1749                          [(set GPR64:$Rd, (op GPR64:$Rn, GPR64:$Rm))],
1750                          GPR64,
1751                          NoItinerary>;
1752 }
1753
1754 // Here we define the data processing 2 source instructions.
1755 defm CRC32  : dp_2src_crc<0b0, "crc32">;
1756 defm CRC32C : dp_2src_crc<0b1, "crc32c">;
1757
1758 defm UDIV : dp_2src<0b000010, "udiv", udiv>;
1759 defm SDIV : dp_2src<0b000011, "sdiv", sdiv>;
1760
1761 defm LSLV : dp_2src_zext<0b001000, "lsl", shl>;
1762 defm LSRV : dp_2src_zext<0b001001, "lsr", srl>;
1763 defm ASRV : dp_2src_zext<0b001010, "asr", sra>;
1764 defm RORV : dp_2src_zext<0b001011, "ror", rotr>;
1765
1766 // Extra patterns for an incoming 64-bit value for a 32-bit
1767 // operation. Since the LLVM operations are undefined (as in C) if the
1768 // RHS is out of range, it's perfectly permissible to discard the high
1769 // bits of the GPR64.
1770 def : Pat<(shl GPR32:$Rn, GPR64:$Rm),
1771           (LSLVwww GPR32:$Rn, (EXTRACT_SUBREG GPR64:$Rm, sub_32))>;
1772 def : Pat<(srl GPR32:$Rn, GPR64:$Rm),
1773           (LSRVwww GPR32:$Rn, (EXTRACT_SUBREG GPR64:$Rm, sub_32))>;
1774 def : Pat<(sra GPR32:$Rn, GPR64:$Rm),
1775           (ASRVwww GPR32:$Rn, (EXTRACT_SUBREG GPR64:$Rm, sub_32))>;
1776 def : Pat<(rotr GPR32:$Rn, GPR64:$Rm),
1777           (RORVwww GPR32:$Rn, (EXTRACT_SUBREG GPR64:$Rm, sub_32))>;
1778
1779 // Here we define the aliases for the data processing 2 source instructions.
1780 def LSL_mnemonic : MnemonicAlias<"lslv", "lsl">;
1781 def LSR_mnemonic : MnemonicAlias<"lsrv", "lsr">;
1782 def ASR_menmonic : MnemonicAlias<"asrv", "asr">;
1783 def ROR_menmonic : MnemonicAlias<"rorv", "ror">;
1784
1785 //===----------------------------------------------------------------------===//
1786 // Data Processing (3 sources) instructions
1787 //===----------------------------------------------------------------------===//
1788 // Contains: MADD, MSUB, SMADDL, SMSUBL, SMULH, UMADDL, UMSUBL, UMULH
1789 //    + aliases MUL, MNEG, SMULL, SMNEGL, UMULL, UMNEGL
1790
1791 class A64I_dp3_4operand<bit sf, bits<6> opcode, RegisterClass AccReg,
1792                         RegisterClass SrcReg, string asmop, dag pattern>
1793   : A64I_dp3<sf, opcode,
1794              (outs AccReg:$Rd), (ins SrcReg:$Rn, SrcReg:$Rm, AccReg:$Ra),
1795              !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Ra"),
1796              [(set AccReg:$Rd, pattern)], NoItinerary> {
1797   RegisterClass AccGPR = AccReg;
1798   RegisterClass SrcGPR = SrcReg;
1799 }
1800
1801 def MADDwwww : A64I_dp3_4operand<0b0, 0b000000, GPR32, GPR32, "madd",
1802                                  (add GPR32:$Ra, (mul GPR32:$Rn, GPR32:$Rm))>;
1803 def MADDxxxx : A64I_dp3_4operand<0b1, 0b000000, GPR64, GPR64, "madd",
1804                                  (add GPR64:$Ra, (mul GPR64:$Rn, GPR64:$Rm))>;
1805
1806 def MSUBwwww : A64I_dp3_4operand<0b0, 0b000001, GPR32, GPR32, "msub",
1807                                  (sub GPR32:$Ra, (mul GPR32:$Rn, GPR32:$Rm))>;
1808 def MSUBxxxx : A64I_dp3_4operand<0b1, 0b000001, GPR64, GPR64, "msub",
1809                                  (sub GPR64:$Ra, (mul GPR64:$Rn, GPR64:$Rm))>;
1810
1811 def SMADDLxwwx : A64I_dp3_4operand<0b1, 0b000010, GPR64, GPR32, "smaddl",
1812                (add GPR64:$Ra, (mul (i64 (sext GPR32:$Rn)), (sext GPR32:$Rm)))>;
1813 def SMSUBLxwwx : A64I_dp3_4operand<0b1, 0b000011, GPR64, GPR32, "smsubl",
1814                (sub GPR64:$Ra, (mul (i64 (sext GPR32:$Rn)), (sext GPR32:$Rm)))>;
1815
1816 def UMADDLxwwx : A64I_dp3_4operand<0b1, 0b001010, GPR64, GPR32, "umaddl",
1817                (add GPR64:$Ra, (mul (i64 (zext GPR32:$Rn)), (zext GPR32:$Rm)))>;
1818 def UMSUBLxwwx : A64I_dp3_4operand<0b1, 0b001011, GPR64, GPR32, "umsubl",
1819                (sub GPR64:$Ra, (mul (i64 (zext GPR32:$Rn)), (zext GPR32:$Rm)))>;
1820
1821 let isCommutable = 1, PostEncoderMethod = "fixMulHigh" in {
1822   def UMULHxxx : A64I_dp3<0b1, 0b001100, (outs GPR64:$Rd),
1823                           (ins GPR64:$Rn, GPR64:$Rm),
1824                           "umulh\t$Rd, $Rn, $Rm",
1825                           [(set GPR64:$Rd, (mulhu GPR64:$Rn, GPR64:$Rm))],
1826                           NoItinerary>;
1827
1828   def SMULHxxx : A64I_dp3<0b1, 0b000100, (outs GPR64:$Rd),
1829                           (ins GPR64:$Rn, GPR64:$Rm),
1830                           "smulh\t$Rd, $Rn, $Rm",
1831                           [(set GPR64:$Rd, (mulhs GPR64:$Rn, GPR64:$Rm))],
1832                           NoItinerary>;
1833 }
1834
1835 multiclass A64I_dp3_3operand<string asmop, A64I_dp3_4operand INST,
1836                              Register ZR, dag pattern> {
1837   def : InstAlias<asmop # " $Rd, $Rn, $Rm",
1838                   (INST INST.AccGPR:$Rd, INST.SrcGPR:$Rn, INST.SrcGPR:$Rm, ZR)>;
1839
1840   def : Pat<pattern, (INST INST.SrcGPR:$Rn, INST.SrcGPR:$Rm, ZR)>;
1841 }
1842
1843 defm : A64I_dp3_3operand<"mul", MADDwwww, WZR, (mul GPR32:$Rn, GPR32:$Rm)>;
1844 defm : A64I_dp3_3operand<"mul", MADDxxxx, XZR, (mul GPR64:$Rn, GPR64:$Rm)>;
1845
1846 defm : A64I_dp3_3operand<"mneg", MSUBwwww, WZR,
1847                          (sub 0, (mul GPR32:$Rn, GPR32:$Rm))>;
1848 defm : A64I_dp3_3operand<"mneg", MSUBxxxx, XZR,
1849                          (sub 0, (mul GPR64:$Rn, GPR64:$Rm))>;
1850
1851 defm : A64I_dp3_3operand<"smull", SMADDLxwwx, XZR,
1852                          (mul (i64 (sext GPR32:$Rn)), (sext GPR32:$Rm))>;
1853 defm : A64I_dp3_3operand<"smnegl", SMSUBLxwwx, XZR,
1854                        (sub 0, (mul (i64 (sext GPR32:$Rn)), (sext GPR32:$Rm)))>;
1855
1856 defm : A64I_dp3_3operand<"umull", UMADDLxwwx, XZR,
1857                          (mul (i64 (zext GPR32:$Rn)), (zext GPR32:$Rm))>;
1858 defm : A64I_dp3_3operand<"umnegl", UMSUBLxwwx, XZR,
1859                        (sub 0, (mul (i64 (zext GPR32:$Rn)), (zext GPR32:$Rm)))>;
1860
1861
1862 //===----------------------------------------------------------------------===//
1863 // Exception generation
1864 //===----------------------------------------------------------------------===//
1865 // Contains: SVC, HVC, SMC, BRK, HLT, DCPS1, DCPS2, DCPS3
1866
1867 def uimm16_asmoperand : AsmOperandClass {
1868   let Name = "UImm16";
1869   let PredicateMethod = "isUImm<16>";
1870   let RenderMethod = "addImmOperands";
1871   let DiagnosticType = "UImm16";
1872 }
1873
1874 def uimm16 : Operand<i32> {
1875   let ParserMatchClass = uimm16_asmoperand;
1876 }
1877
1878 class A64I_exceptImpl<bits<3> opc, bits<2> ll, string asmop>
1879   : A64I_exception<opc, 0b000, ll, (outs), (ins uimm16:$UImm16),
1880                    !strconcat(asmop, "\t$UImm16"), [], NoItinerary> {
1881   let isBranch = 1;
1882   let isTerminator = 1;
1883 }
1884
1885 def SVCi : A64I_exceptImpl<0b000, 0b01, "svc">;
1886 def HVCi : A64I_exceptImpl<0b000, 0b10, "hvc">;
1887 def SMCi : A64I_exceptImpl<0b000, 0b11, "smc">;
1888 def BRKi : A64I_exceptImpl<0b001, 0b00, "brk">;
1889 def HLTi : A64I_exceptImpl<0b010, 0b00, "hlt">;
1890
1891 def DCPS1i : A64I_exceptImpl<0b101, 0b01, "dcps1">;
1892 def DCPS2i : A64I_exceptImpl<0b101, 0b10, "dcps2">;
1893 def DCPS3i : A64I_exceptImpl<0b101, 0b11, "dcps3">;
1894
1895 // The immediate is optional for the DCPS instructions, defaulting to 0.
1896 def : InstAlias<"dcps1", (DCPS1i 0)>;
1897 def : InstAlias<"dcps2", (DCPS2i 0)>;
1898 def : InstAlias<"dcps3", (DCPS3i 0)>;
1899
1900 //===----------------------------------------------------------------------===//
1901 // Extract (immediate)
1902 //===----------------------------------------------------------------------===//
1903 // Contains: EXTR + alias ROR
1904
1905 def EXTRwwwi : A64I_extract<0b0, 0b000, 0b0,
1906                             (outs GPR32:$Rd),
1907                             (ins GPR32:$Rn, GPR32:$Rm, bitfield32_imm:$LSB),
1908                             "extr\t$Rd, $Rn, $Rm, $LSB",
1909                             [(set GPR32:$Rd,
1910                                   (A64Extr GPR32:$Rn, GPR32:$Rm, imm:$LSB))],
1911                             NoItinerary>;
1912 def EXTRxxxi : A64I_extract<0b1, 0b000, 0b1,
1913                             (outs GPR64:$Rd),
1914                             (ins GPR64:$Rn, GPR64:$Rm, bitfield64_imm:$LSB),
1915                             "extr\t$Rd, $Rn, $Rm, $LSB",
1916                             [(set GPR64:$Rd,
1917                                   (A64Extr GPR64:$Rn, GPR64:$Rm, imm:$LSB))],
1918                             NoItinerary>;
1919
1920 def : InstAlias<"ror $Rd, $Rs, $LSB",
1921                (EXTRwwwi GPR32:$Rd, GPR32:$Rs, GPR32:$Rs, bitfield32_imm:$LSB)>;
1922 def : InstAlias<"ror $Rd, $Rs, $LSB",
1923                (EXTRxxxi GPR64:$Rd, GPR64:$Rs, GPR64:$Rs, bitfield64_imm:$LSB)>;
1924
1925 def : Pat<(rotr GPR32:$Rn, bitfield32_imm:$LSB),
1926           (EXTRwwwi GPR32:$Rn, GPR32:$Rn, bitfield32_imm:$LSB)>;
1927 def : Pat<(rotr GPR64:$Rn, bitfield64_imm:$LSB),
1928           (EXTRxxxi GPR64:$Rn, GPR64:$Rn, bitfield64_imm:$LSB)>;
1929
1930 //===----------------------------------------------------------------------===//
1931 // Floating-point compare instructions
1932 //===----------------------------------------------------------------------===//
1933 // Contains: FCMP, FCMPE
1934
1935 def fpzero_asmoperand : AsmOperandClass {
1936   let Name = "FPZero";
1937   let ParserMethod = "ParseFPImmOperand";
1938   let DiagnosticType = "FPZero";
1939 }
1940
1941 def fpz32 : Operand<f32>,
1942             ComplexPattern<f32, 1, "SelectFPZeroOperand", [fpimm]> {
1943   let ParserMatchClass = fpzero_asmoperand;
1944   let PrintMethod = "printFPZeroOperand";
1945 }
1946
1947 def fpz64 : Operand<f64>,
1948             ComplexPattern<f64, 1, "SelectFPZeroOperand", [fpimm]> {
1949   let ParserMatchClass = fpzero_asmoperand;
1950   let PrintMethod = "printFPZeroOperand";
1951 }
1952
1953 multiclass A64I_fpcmpSignal<bits<2> type, bit imm, dag ins, string asmop2,
1954                             dag pattern> {
1955   def _quiet : A64I_fpcmp<0b0, 0b0, type, 0b00, {0b0, imm, 0b0, 0b0, 0b0},
1956                           (outs), ins, !strconcat("fcmp\t$Rn, ", asmop2),
1957                           [pattern], NoItinerary> {
1958     let Defs = [NZCV];
1959   }
1960
1961   def _sig : A64I_fpcmp<0b0, 0b0, type, 0b00, {0b1, imm, 0b0, 0b0, 0b0},
1962                         (outs), ins, !strconcat("fcmpe\t$Rn, ", asmop2),
1963                         [], NoItinerary> {
1964     let Defs = [NZCV];
1965   }
1966 }
1967
1968 defm FCMPss : A64I_fpcmpSignal<0b00, 0b0, (ins FPR32:$Rn, FPR32:$Rm), "$Rm",
1969                                (set NZCV, (A64cmp (f32 FPR32:$Rn), FPR32:$Rm))>;
1970 defm FCMPdd : A64I_fpcmpSignal<0b01, 0b0, (ins FPR64:$Rn, FPR64:$Rm), "$Rm",
1971                                (set NZCV, (A64cmp (f64 FPR64:$Rn), FPR64:$Rm))>;
1972
1973 // What would be Rm should be written as 0, but anything is valid for
1974 // disassembly so we can't set the bits
1975 let PostEncoderMethod = "fixFCMPImm" in {
1976   defm FCMPsi : A64I_fpcmpSignal<0b00, 0b1, (ins FPR32:$Rn, fpz32:$Imm), "$Imm",
1977                               (set NZCV, (A64cmp (f32 FPR32:$Rn), fpz32:$Imm))>;
1978
1979   defm FCMPdi : A64I_fpcmpSignal<0b01, 0b1, (ins FPR64:$Rn, fpz64:$Imm), "$Imm",
1980                               (set NZCV, (A64cmp (f64 FPR64:$Rn), fpz64:$Imm))>;
1981 }
1982
1983
1984 //===----------------------------------------------------------------------===//
1985 // Floating-point conditional compare instructions
1986 //===----------------------------------------------------------------------===//
1987 // Contains: FCCMP, FCCMPE
1988
1989 class A64I_fpccmpImpl<bits<2> type, bit op, RegisterClass FPR, string asmop>
1990   : A64I_fpccmp<0b0, 0b0, type, op,
1991                 (outs),
1992                 (ins FPR:$Rn, FPR:$Rm, uimm4:$NZCVImm, cond_code_op:$Cond),
1993                 !strconcat(asmop, "\t$Rn, $Rm, $NZCVImm, $Cond"),
1994                 [], NoItinerary> {
1995   let Defs = [NZCV];
1996 }
1997
1998 def FCCMPss : A64I_fpccmpImpl<0b00, 0b0, FPR32, "fccmp">;
1999 def FCCMPEss : A64I_fpccmpImpl<0b00, 0b1, FPR32, "fccmpe">;
2000 def FCCMPdd : A64I_fpccmpImpl<0b01, 0b0, FPR64, "fccmp">;
2001 def FCCMPEdd : A64I_fpccmpImpl<0b01, 0b1, FPR64, "fccmpe">;
2002
2003 //===----------------------------------------------------------------------===//
2004 // Floating-point conditional select instructions
2005 //===----------------------------------------------------------------------===//
2006 // Contains: FCSEL
2007
2008 let Uses = [NZCV] in {
2009   def FCSELsssc : A64I_fpcondsel<0b0, 0b0, 0b00, (outs FPR32:$Rd),
2010                                  (ins FPR32:$Rn, FPR32:$Rm, cond_code_op:$Cond),
2011                                  "fcsel\t$Rd, $Rn, $Rm, $Cond",
2012                                  [(set FPR32:$Rd,
2013                                        (simple_select (f32 FPR32:$Rn),
2014                                                       FPR32:$Rm))],
2015                                  NoItinerary>;
2016
2017
2018   def FCSELdddc : A64I_fpcondsel<0b0, 0b0, 0b01, (outs FPR64:$Rd),
2019                                  (ins FPR64:$Rn, FPR64:$Rm, cond_code_op:$Cond),
2020                                  "fcsel\t$Rd, $Rn, $Rm, $Cond",
2021                                  [(set FPR64:$Rd,
2022                                        (simple_select (f64 FPR64:$Rn),
2023                                                       FPR64:$Rm))],
2024                                  NoItinerary>;
2025 }
2026
2027 //===----------------------------------------------------------------------===//
2028 // Floating-point data-processing (1 source)
2029 //===----------------------------------------------------------------------===//
2030 // Contains: FMOV, FABS, FNEG, FSQRT, FCVT, FRINT[NPMZAXI].
2031
2032 def FPNoUnop : PatFrag<(ops node:$val), (fneg node:$val),
2033                        [{ (void)N; return false; }]>;
2034
2035 // First we do the fairly trivial bunch with uniform "OP s, s" and "OP d, d"
2036 // syntax. Default to no pattern because most are odd enough not to have one.
2037 multiclass A64I_fpdp1sizes<bits<6> opcode, string asmstr,
2038                            SDPatternOperator opnode = FPNoUnop> {
2039   def ss : A64I_fpdp1<0b0, 0b0, 0b00, opcode, (outs FPR32:$Rd), (ins FPR32:$Rn),
2040                      !strconcat(asmstr, "\t$Rd, $Rn"),
2041                      [(set (f32 FPR32:$Rd), (opnode FPR32:$Rn))],
2042                      NoItinerary>;
2043
2044   def dd : A64I_fpdp1<0b0, 0b0, 0b01, opcode, (outs FPR64:$Rd), (ins FPR64:$Rn),
2045                      !strconcat(asmstr, "\t$Rd, $Rn"),
2046                      [(set (f64 FPR64:$Rd), (opnode FPR64:$Rn))],
2047                      NoItinerary>;
2048 }
2049
2050 defm FMOV   : A64I_fpdp1sizes<0b000000, "fmov">;
2051 defm FABS   : A64I_fpdp1sizes<0b000001, "fabs", fabs>;
2052 defm FNEG   : A64I_fpdp1sizes<0b000010, "fneg", fneg>;
2053 defm FSQRT  : A64I_fpdp1sizes<0b000011, "fsqrt", fsqrt>;
2054
2055 defm FRINTN : A64I_fpdp1sizes<0b001000, "frintn">;
2056 defm FRINTP : A64I_fpdp1sizes<0b001001, "frintp", fceil>;
2057 defm FRINTM : A64I_fpdp1sizes<0b001010, "frintm", ffloor>;
2058 defm FRINTZ : A64I_fpdp1sizes<0b001011, "frintz", ftrunc>;
2059 defm FRINTA : A64I_fpdp1sizes<0b001100, "frinta">;
2060 defm FRINTX : A64I_fpdp1sizes<0b001110, "frintx", frint>;
2061 defm FRINTI : A64I_fpdp1sizes<0b001111, "frinti", fnearbyint>;
2062
2063 // The FCVT instrucitons have different source and destination register-types,
2064 // but the fields are uniform everywhere a D-register (say) crops up. Package
2065 // this information in a Record.
2066 class FCVTRegType<RegisterClass rc, bits<2> fld, ValueType vt> {
2067     RegisterClass Class = rc;
2068     ValueType VT = vt;
2069     bit t1 = fld{1};
2070     bit t0 = fld{0};
2071 }
2072
2073 def FCVT16 : FCVTRegType<FPR16, 0b11, f16>;
2074 def FCVT32 : FCVTRegType<FPR32, 0b00, f32>;
2075 def FCVT64 : FCVTRegType<FPR64, 0b01, f64>;
2076
2077 class A64I_fpdp1_fcvt<FCVTRegType DestReg, FCVTRegType SrcReg, SDNode opnode>
2078   : A64I_fpdp1<0b0, 0b0, {SrcReg.t1, SrcReg.t0},
2079                {0,0,0,1, DestReg.t1, DestReg.t0},
2080                (outs DestReg.Class:$Rd), (ins SrcReg.Class:$Rn),
2081                "fcvt\t$Rd, $Rn",
2082                [(set (DestReg.VT DestReg.Class:$Rd),
2083                      (opnode (SrcReg.VT SrcReg.Class:$Rn)))], NoItinerary>;
2084
2085 def FCVTds : A64I_fpdp1_fcvt<FCVT64, FCVT32, fextend>;
2086 def FCVThs : A64I_fpdp1_fcvt<FCVT16, FCVT32, fround>;
2087 def FCVTsd : A64I_fpdp1_fcvt<FCVT32, FCVT64, fround>;
2088 def FCVThd : A64I_fpdp1_fcvt<FCVT16, FCVT64, fround>;
2089 def FCVTsh : A64I_fpdp1_fcvt<FCVT32, FCVT16, fextend>;
2090 def FCVTdh : A64I_fpdp1_fcvt<FCVT64, FCVT16, fextend>;
2091
2092
2093 //===----------------------------------------------------------------------===//
2094 // Floating-point data-processing (2 sources) instructions
2095 //===----------------------------------------------------------------------===//
2096 // Contains: FMUL, FDIV, FADD, FSUB, FMAX, FMIN, FMAXNM, FMINNM, FNMUL
2097
2098 def FPNoBinop : PatFrag<(ops node:$lhs, node:$rhs), (fadd node:$lhs, node:$rhs),
2099                       [{ (void)N; return false; }]>;
2100
2101 multiclass A64I_fpdp2sizes<bits<4> opcode, string asmstr,
2102                            SDPatternOperator opnode> {
2103   def sss : A64I_fpdp2<0b0, 0b0, 0b00, opcode,
2104                       (outs FPR32:$Rd),
2105                       (ins FPR32:$Rn, FPR32:$Rm),
2106                       !strconcat(asmstr, "\t$Rd, $Rn, $Rm"),
2107                       [(set (f32 FPR32:$Rd), (opnode FPR32:$Rn, FPR32:$Rm))],
2108                       NoItinerary>;
2109
2110   def ddd : A64I_fpdp2<0b0, 0b0, 0b01, opcode,
2111                       (outs FPR64:$Rd),
2112                       (ins FPR64:$Rn, FPR64:$Rm),
2113                       !strconcat(asmstr, "\t$Rd, $Rn, $Rm"),
2114                       [(set (f64 FPR64:$Rd), (opnode FPR64:$Rn, FPR64:$Rm))],
2115                       NoItinerary>;
2116 }
2117
2118 let isCommutable = 1 in {
2119   defm FMUL   : A64I_fpdp2sizes<0b0000, "fmul", fmul>;
2120   defm FADD   : A64I_fpdp2sizes<0b0010, "fadd", fadd>;
2121
2122   // No patterns for these.
2123   defm FMAX   : A64I_fpdp2sizes<0b0100, "fmax", FPNoBinop>;
2124   defm FMIN   : A64I_fpdp2sizes<0b0101, "fmin", FPNoBinop>;
2125   defm FMAXNM : A64I_fpdp2sizes<0b0110, "fmaxnm", FPNoBinop>;
2126   defm FMINNM : A64I_fpdp2sizes<0b0111, "fminnm", FPNoBinop>;
2127
2128   defm FNMUL  : A64I_fpdp2sizes<0b1000, "fnmul",
2129                                 PatFrag<(ops node:$lhs, node:$rhs),
2130                                         (fneg (fmul node:$lhs, node:$rhs))> >;
2131 }
2132
2133 defm FDIV : A64I_fpdp2sizes<0b0001, "fdiv", fdiv>;
2134 defm FSUB : A64I_fpdp2sizes<0b0011, "fsub", fsub>;
2135
2136 //===----------------------------------------------------------------------===//
2137 // Floating-point data-processing (3 sources) instructions
2138 //===----------------------------------------------------------------------===//
2139 // Contains: FMADD, FMSUB, FNMADD, FNMSUB
2140
2141 def fmsub : PatFrag<(ops node:$Rn, node:$Rm, node:$Ra),
2142                     (fma (fneg node:$Rn),  node:$Rm, node:$Ra)>;
2143 def fnmadd : PatFrag<(ops node:$Rn, node:$Rm, node:$Ra),
2144                      (fma node:$Rn,  node:$Rm, (fneg node:$Ra))>;
2145 def fnmsub : PatFrag<(ops node:$Rn, node:$Rm, node:$Ra),
2146                      (fma (fneg node:$Rn),  node:$Rm, (fneg node:$Ra))>;
2147
2148 class A64I_fpdp3Impl<string asmop, RegisterClass FPR, ValueType VT,
2149                      bits<2> type, bit o1, bit o0, SDPatternOperator fmakind>
2150   : A64I_fpdp3<0b0, 0b0, type, o1, o0, (outs FPR:$Rd),
2151                (ins FPR:$Rn, FPR:$Rm, FPR:$Ra),
2152                !strconcat(asmop,"\t$Rd, $Rn, $Rm, $Ra"),
2153                [(set FPR:$Rd, (fmakind (VT FPR:$Rn), FPR:$Rm, FPR:$Ra))],
2154                NoItinerary>;
2155
2156 def FMADDssss  : A64I_fpdp3Impl<"fmadd",  FPR32, f32, 0b00, 0b0, 0b0, fma>;
2157 def FMSUBssss  : A64I_fpdp3Impl<"fmsub",  FPR32, f32, 0b00, 0b0, 0b1, fmsub>;
2158 def FNMADDssss : A64I_fpdp3Impl<"fnmadd", FPR32, f32, 0b00, 0b1, 0b0, fnmadd>;
2159 def FNMSUBssss : A64I_fpdp3Impl<"fnmsub", FPR32, f32, 0b00, 0b1, 0b1, fnmsub>;
2160
2161 def FMADDdddd  : A64I_fpdp3Impl<"fmadd",  FPR64, f64, 0b01, 0b0, 0b0, fma>;
2162 def FMSUBdddd  : A64I_fpdp3Impl<"fmsub",  FPR64, f64, 0b01, 0b0, 0b1, fmsub>;
2163 def FNMADDdddd : A64I_fpdp3Impl<"fnmadd", FPR64, f64, 0b01, 0b1, 0b0, fnmadd>;
2164 def FNMSUBdddd : A64I_fpdp3Impl<"fnmsub", FPR64, f64, 0b01, 0b1, 0b1, fnmsub>;
2165
2166 //===----------------------------------------------------------------------===//
2167 // Floating-point <-> fixed-point conversion instructions
2168 //===----------------------------------------------------------------------===//
2169 // Contains: FCVTZS, FCVTZU, SCVTF, UCVTF
2170
2171 // #1-#32 allowed, encoded as "64 - <specified imm>
2172 def fixedpos_asmoperand_i32 : AsmOperandClass {
2173   let Name = "CVTFixedPos32";
2174   let RenderMethod = "addCVTFixedPosOperands";
2175   let PredicateMethod = "isCVTFixedPos<32>";
2176   let DiagnosticType = "CVTFixedPos32";
2177 }
2178
2179 // Also encoded as "64 - <specified imm>" but #1-#64 allowed.
2180 def fixedpos_asmoperand_i64 : AsmOperandClass {
2181   let Name = "CVTFixedPos64";
2182   let RenderMethod = "addCVTFixedPosOperands";
2183   let PredicateMethod = "isCVTFixedPos<64>";
2184   let DiagnosticType = "CVTFixedPos64";
2185 }
2186
2187 // We need the cartesian product of f32/f64 i32/i64 operands for
2188 // conversions:
2189 //   + Selection needs to use operands of correct floating type
2190 //   + Assembly parsing and decoding depend on integer width
2191 class cvtfix_i32_op<ValueType FloatVT>
2192   : Operand<FloatVT>,
2193     ComplexPattern<FloatVT, 1, "SelectCVTFixedPosOperand<32>", [fpimm]> {
2194   let ParserMatchClass = fixedpos_asmoperand_i32;
2195   let DecoderMethod = "DecodeCVT32FixedPosOperand";
2196   let PrintMethod = "printCVTFixedPosOperand";
2197 }
2198
2199 class cvtfix_i64_op<ValueType FloatVT>
2200   : Operand<FloatVT>,
2201     ComplexPattern<FloatVT, 1, "SelectCVTFixedPosOperand<64>", [fpimm]> {
2202   let ParserMatchClass = fixedpos_asmoperand_i64;
2203   let PrintMethod = "printCVTFixedPosOperand";
2204 }
2205
2206 // Because of the proliferation of weird operands, it's not really
2207 // worth going for a multiclass here. Oh well.
2208
2209 class A64I_fptofix<bit sf, bits<2> type, bits<3> opcode,
2210                    RegisterClass GPR, RegisterClass FPR, Operand scale_op,
2211                    string asmop, SDNode cvtop>
2212   : A64I_fpfixed<sf, 0b0, type, 0b11, opcode,
2213                  (outs GPR:$Rd), (ins FPR:$Rn, scale_op:$Scale),
2214                  !strconcat(asmop, "\t$Rd, $Rn, $Scale"),
2215                  [(set GPR:$Rd, (cvtop (fmul FPR:$Rn, scale_op:$Scale)))],
2216                  NoItinerary>;
2217
2218 def FCVTZSwsi : A64I_fptofix<0b0, 0b00, 0b000, GPR32, FPR32,
2219                              cvtfix_i32_op<f32>, "fcvtzs", fp_to_sint>;
2220 def FCVTZSxsi : A64I_fptofix<0b1, 0b00, 0b000, GPR64, FPR32,
2221                              cvtfix_i64_op<f32>, "fcvtzs", fp_to_sint>;
2222 def FCVTZUwsi : A64I_fptofix<0b0, 0b00, 0b001, GPR32, FPR32,
2223                              cvtfix_i32_op<f32>, "fcvtzu", fp_to_uint>;
2224 def FCVTZUxsi : A64I_fptofix<0b1, 0b00, 0b001, GPR64, FPR32,
2225                              cvtfix_i64_op<f32>, "fcvtzu", fp_to_uint>;
2226
2227 def FCVTZSwdi : A64I_fptofix<0b0, 0b01, 0b000, GPR32, FPR64,
2228                              cvtfix_i32_op<f64>, "fcvtzs", fp_to_sint>;
2229 def FCVTZSxdi : A64I_fptofix<0b1, 0b01, 0b000, GPR64, FPR64,
2230                              cvtfix_i64_op<f64>, "fcvtzs", fp_to_sint>;
2231 def FCVTZUwdi : A64I_fptofix<0b0, 0b01, 0b001, GPR32, FPR64,
2232                              cvtfix_i32_op<f64>, "fcvtzu", fp_to_uint>;
2233 def FCVTZUxdi : A64I_fptofix<0b1, 0b01, 0b001, GPR64, FPR64,
2234                              cvtfix_i64_op<f64>, "fcvtzu", fp_to_uint>;
2235
2236
2237 class A64I_fixtofp<bit sf, bits<2> type, bits<3> opcode,
2238                    RegisterClass FPR, RegisterClass GPR, Operand scale_op,
2239                    string asmop, SDNode cvtop>
2240   : A64I_fpfixed<sf, 0b0, type, 0b00, opcode,
2241                  (outs FPR:$Rd), (ins GPR:$Rn, scale_op:$Scale),
2242                  !strconcat(asmop, "\t$Rd, $Rn, $Scale"),
2243                  [(set FPR:$Rd, (fdiv (cvtop GPR:$Rn), scale_op:$Scale))],
2244                  NoItinerary>;
2245
2246 def SCVTFswi : A64I_fixtofp<0b0, 0b00, 0b010, FPR32, GPR32,
2247                             cvtfix_i32_op<f32>, "scvtf", sint_to_fp>;
2248 def SCVTFsxi : A64I_fixtofp<0b1, 0b00, 0b010, FPR32, GPR64,
2249                             cvtfix_i64_op<f32>, "scvtf", sint_to_fp>;
2250 def UCVTFswi : A64I_fixtofp<0b0, 0b00, 0b011, FPR32, GPR32,
2251                             cvtfix_i32_op<f32>, "ucvtf", uint_to_fp>;
2252 def UCVTFsxi : A64I_fixtofp<0b1, 0b00, 0b011, FPR32, GPR64,
2253                             cvtfix_i64_op<f32>, "ucvtf", uint_to_fp>;
2254 def SCVTFdwi : A64I_fixtofp<0b0, 0b01, 0b010, FPR64, GPR32,
2255                             cvtfix_i32_op<f64>, "scvtf", sint_to_fp>;
2256 def SCVTFdxi : A64I_fixtofp<0b1, 0b01, 0b010, FPR64, GPR64,
2257                             cvtfix_i64_op<f64>, "scvtf", sint_to_fp>;
2258 def UCVTFdwi : A64I_fixtofp<0b0, 0b01, 0b011, FPR64, GPR32,
2259                             cvtfix_i32_op<f64>, "ucvtf", uint_to_fp>;
2260 def UCVTFdxi : A64I_fixtofp<0b1, 0b01, 0b011, FPR64, GPR64,
2261                             cvtfix_i64_op<f64>, "ucvtf", uint_to_fp>;
2262
2263 //===----------------------------------------------------------------------===//
2264 // Floating-point <-> integer conversion instructions
2265 //===----------------------------------------------------------------------===//
2266 // Contains: FCVTZS, FCVTZU, SCVTF, UCVTF
2267
2268 class A64I_fpintI<bit sf, bits<2> type, bits<2> rmode, bits<3> opcode,
2269                    RegisterClass DestPR, RegisterClass SrcPR, string asmop>
2270   : A64I_fpint<sf, 0b0, type, rmode, opcode, (outs DestPR:$Rd), (ins SrcPR:$Rn),
2271                !strconcat(asmop, "\t$Rd, $Rn"), [], NoItinerary>;
2272
2273 multiclass A64I_fptointRM<bits<2> rmode, bit o2, string asmop> {
2274   def Sws : A64I_fpintI<0b0, 0b00, rmode, {o2, 0, 0},
2275                         GPR32, FPR32, asmop # "s">;
2276   def Sxs : A64I_fpintI<0b1, 0b00, rmode, {o2, 0, 0},
2277                         GPR64, FPR32, asmop # "s">;
2278   def Uws : A64I_fpintI<0b0, 0b00, rmode, {o2, 0, 1},
2279                         GPR32, FPR32, asmop # "u">;
2280   def Uxs : A64I_fpintI<0b1, 0b00, rmode, {o2, 0, 1},
2281                         GPR64, FPR32, asmop # "u">;
2282
2283   def Swd : A64I_fpintI<0b0, 0b01, rmode, {o2, 0, 0},
2284                         GPR32, FPR64, asmop # "s">;
2285   def Sxd : A64I_fpintI<0b1, 0b01, rmode, {o2, 0, 0},
2286                         GPR64, FPR64, asmop # "s">;
2287   def Uwd : A64I_fpintI<0b0, 0b01, rmode, {o2, 0, 1},
2288                         GPR32, FPR64, asmop # "u">;
2289   def Uxd : A64I_fpintI<0b1, 0b01, rmode, {o2, 0, 1},
2290                         GPR64, FPR64, asmop # "u">;
2291 }
2292
2293 defm FCVTN : A64I_fptointRM<0b00, 0b0, "fcvtn">;
2294 defm FCVTP : A64I_fptointRM<0b01, 0b0, "fcvtp">;
2295 defm FCVTM : A64I_fptointRM<0b10, 0b0, "fcvtm">;
2296 defm FCVTZ : A64I_fptointRM<0b11, 0b0, "fcvtz">;
2297 defm FCVTA : A64I_fptointRM<0b00, 0b1, "fcvta">;
2298
2299 def : Pat<(i32 (fp_to_sint FPR32:$Rn)), (FCVTZSws FPR32:$Rn)>;
2300 def : Pat<(i64 (fp_to_sint FPR32:$Rn)), (FCVTZSxs FPR32:$Rn)>;
2301 def : Pat<(i32 (fp_to_uint FPR32:$Rn)), (FCVTZUws FPR32:$Rn)>;
2302 def : Pat<(i64 (fp_to_uint FPR32:$Rn)), (FCVTZUxs FPR32:$Rn)>;
2303 def : Pat<(i32 (fp_to_sint (f64 FPR64:$Rn))), (FCVTZSwd FPR64:$Rn)>;
2304 def : Pat<(i64 (fp_to_sint (f64 FPR64:$Rn))), (FCVTZSxd FPR64:$Rn)>;
2305 def : Pat<(i32 (fp_to_uint (f64 FPR64:$Rn))), (FCVTZUwd FPR64:$Rn)>;
2306 def : Pat<(i64 (fp_to_uint (f64 FPR64:$Rn))), (FCVTZUxd FPR64:$Rn)>;
2307
2308 multiclass A64I_inttofp<bit o0, string asmop> {
2309   def CVTFsw : A64I_fpintI<0b0, 0b00, 0b00, {0, 1, o0}, FPR32, GPR32, asmop>;
2310   def CVTFsx : A64I_fpintI<0b1, 0b00, 0b00, {0, 1, o0}, FPR32, GPR64, asmop>;
2311   def CVTFdw : A64I_fpintI<0b0, 0b01, 0b00, {0, 1, o0}, FPR64, GPR32, asmop>;
2312   def CVTFdx : A64I_fpintI<0b1, 0b01, 0b00, {0, 1, o0}, FPR64, GPR64, asmop>;
2313 }
2314
2315 defm S : A64I_inttofp<0b0, "scvtf">;
2316 defm U : A64I_inttofp<0b1, "ucvtf">;
2317
2318 def : Pat<(f32 (sint_to_fp GPR32:$Rn)), (SCVTFsw GPR32:$Rn)>;
2319 def : Pat<(f32 (sint_to_fp GPR64:$Rn)), (SCVTFsx GPR64:$Rn)>;
2320 def : Pat<(f64 (sint_to_fp GPR32:$Rn)), (SCVTFdw GPR32:$Rn)>;
2321 def : Pat<(f64 (sint_to_fp GPR64:$Rn)), (SCVTFdx GPR64:$Rn)>;
2322 def : Pat<(f32 (uint_to_fp GPR32:$Rn)), (UCVTFsw GPR32:$Rn)>;
2323 def : Pat<(f32 (uint_to_fp GPR64:$Rn)), (UCVTFsx GPR64:$Rn)>;
2324 def : Pat<(f64 (uint_to_fp GPR32:$Rn)), (UCVTFdw GPR32:$Rn)>;
2325 def : Pat<(f64 (uint_to_fp GPR64:$Rn)), (UCVTFdx GPR64:$Rn)>;
2326
2327 def FMOVws : A64I_fpintI<0b0, 0b00, 0b00, 0b110, GPR32, FPR32, "fmov">;
2328 def FMOVsw : A64I_fpintI<0b0, 0b00, 0b00, 0b111, FPR32, GPR32, "fmov">;
2329 def FMOVxd : A64I_fpintI<0b1, 0b01, 0b00, 0b110, GPR64, FPR64, "fmov">;
2330 def FMOVdx : A64I_fpintI<0b1, 0b01, 0b00, 0b111, FPR64, GPR64, "fmov">;
2331
2332 def : Pat<(i32 (bitconvert (f32 FPR32:$Rn))), (FMOVws FPR32:$Rn)>;
2333 def : Pat<(f32 (bitconvert (i32 GPR32:$Rn))), (FMOVsw GPR32:$Rn)>;
2334 def : Pat<(i64 (bitconvert (f64 FPR64:$Rn))), (FMOVxd FPR64:$Rn)>;
2335 def : Pat<(f64 (bitconvert (i64 GPR64:$Rn))), (FMOVdx GPR64:$Rn)>;
2336
2337 def lane1_asmoperand : AsmOperandClass {
2338   let Name = "Lane1";
2339   let RenderMethod = "addImmOperands";
2340   let DiagnosticType = "Lane1";
2341 }
2342
2343 def lane1 : Operand<i32> {
2344   let ParserMatchClass = lane1_asmoperand;
2345   let PrintMethod = "printBareImmOperand";
2346 }
2347
2348 let DecoderMethod =  "DecodeFMOVLaneInstruction" in {
2349   def FMOVxv : A64I_fpint<0b1, 0b0, 0b10, 0b01, 0b110,
2350                           (outs GPR64:$Rd), (ins VPR128:$Rn, lane1:$Lane),
2351                           "fmov\t$Rd, $Rn.d[$Lane]", [], NoItinerary>;
2352
2353   def FMOVvx : A64I_fpint<0b1, 0b0, 0b10, 0b01, 0b111,
2354                           (outs VPR128:$Rd), (ins GPR64:$Rn, lane1:$Lane),
2355                           "fmov\t$Rd.d[$Lane], $Rn", [], NoItinerary>;
2356 }
2357
2358 def : InstAlias<"fmov $Rd, $Rn.2d[$Lane]",
2359                 (FMOVxv GPR64:$Rd, VPR128:$Rn, lane1:$Lane), 0b0>;
2360
2361 def : InstAlias<"fmov $Rd.2d[$Lane], $Rn",
2362                 (FMOVvx VPR128:$Rd, GPR64:$Rn, lane1:$Lane), 0b0>;
2363
2364 //===----------------------------------------------------------------------===//
2365 // Floating-point immediate instructions
2366 //===----------------------------------------------------------------------===//
2367 // Contains: FMOV
2368
2369 def fpimm_asmoperand : AsmOperandClass {
2370   let Name = "FMOVImm";
2371   let ParserMethod = "ParseFPImmOperand";
2372   let DiagnosticType = "FPImm";
2373 }
2374
2375 // The MCOperand for these instructions are the encoded 8-bit values.
2376 def SDXF_fpimm : SDNodeXForm<fpimm, [{
2377   uint32_t Imm8;
2378   A64Imms::isFPImm(N->getValueAPF(), Imm8);
2379   return CurDAG->getTargetConstant(Imm8, MVT::i32);
2380 }]>;
2381
2382 class fmov_operand<ValueType FT>
2383   : Operand<i32>,
2384     PatLeaf<(FT fpimm), [{ return A64Imms::isFPImm(N->getValueAPF()); }],
2385             SDXF_fpimm> {
2386   let PrintMethod = "printFPImmOperand";
2387   let ParserMatchClass = fpimm_asmoperand;
2388 }
2389
2390 def fmov32_operand : fmov_operand<f32>;
2391 def fmov64_operand : fmov_operand<f64>;
2392
2393 class A64I_fpimm_impl<bits<2> type, RegisterClass Reg, ValueType VT,
2394                       Operand fmov_operand>
2395   : A64I_fpimm<0b0, 0b0, type, 0b00000,
2396                (outs Reg:$Rd),
2397                (ins fmov_operand:$Imm8),
2398                "fmov\t$Rd, $Imm8",
2399                [(set (VT Reg:$Rd), fmov_operand:$Imm8)],
2400                NoItinerary>;
2401
2402 def FMOVsi : A64I_fpimm_impl<0b00, FPR32, f32, fmov32_operand>;
2403 def FMOVdi : A64I_fpimm_impl<0b01, FPR64, f64, fmov64_operand>;
2404
2405 //===----------------------------------------------------------------------===//
2406 // Load-register (literal) instructions
2407 //===----------------------------------------------------------------------===//
2408 // Contains: LDR, LDRSW, PRFM
2409
2410 def ldrlit_label_asmoperand : AsmOperandClass {
2411   let Name = "LoadLitLabel";
2412   let RenderMethod = "addLabelOperands<19, 4>";
2413   let DiagnosticType = "Label";
2414 }
2415
2416 def ldrlit_label : Operand<i64> {
2417   let EncoderMethod = "getLoadLitLabelOpValue";
2418
2419   // This label is a 19-bit offset from PC, scaled by the instruction-width: 4.
2420   let PrintMethod = "printLabelOperand<19, 4>";
2421   let ParserMatchClass = ldrlit_label_asmoperand;
2422   let OperandType = "OPERAND_PCREL";
2423 }
2424
2425 // Various instructions take an immediate value (which can always be used),
2426 // where some numbers have a symbolic name to make things easier. These operands
2427 // and the associated functions abstract away the differences.
2428 multiclass namedimm<string prefix, string mapper> {
2429   def _asmoperand : AsmOperandClass {
2430     let Name = "NamedImm" # prefix;
2431     let PredicateMethod = "isUImm";
2432     let RenderMethod = "addImmOperands";
2433     let ParserMethod = "ParseNamedImmOperand<" # mapper # ">";
2434     let DiagnosticType = "NamedImm_" # prefix;
2435   }
2436
2437   def _op : Operand<i32> {
2438     let ParserMatchClass = !cast<AsmOperandClass>(prefix # "_asmoperand");
2439     let PrintMethod = "printNamedImmOperand<" # mapper # ">";
2440     let DecoderMethod = "DecodeNamedImmOperand<" # mapper # ">";
2441   }
2442 }
2443
2444 defm prefetch : namedimm<"prefetch", "A64PRFM::PRFMMapper">;
2445
2446 class A64I_LDRlitSimple<bits<2> opc, bit v, RegisterClass OutReg,
2447                       list<dag> patterns = []>
2448    : A64I_LDRlit<opc, v, (outs OutReg:$Rt), (ins ldrlit_label:$Imm19),
2449                  "ldr\t$Rt, $Imm19", patterns, NoItinerary>;
2450
2451 let mayLoad = 1 in {
2452   def LDRw_lit : A64I_LDRlitSimple<0b00, 0b0, GPR32,
2453                               [(set (i32 GPR32:$Rt), (load constpool:$Imm19))]>;
2454   def LDRx_lit : A64I_LDRlitSimple<0b01, 0b0, GPR64,
2455                               [(set (i64 GPR64:$Rt), (load constpool:$Imm19))]>;
2456 }
2457
2458 def LDRs_lit  : A64I_LDRlitSimple<0b00, 0b1, FPR32,
2459                               [(set (f32 FPR32:$Rt), (load constpool:$Imm19))]>;
2460 def LDRd_lit  : A64I_LDRlitSimple<0b01, 0b1, FPR64,
2461                               [(set (f64 FPR64:$Rt), (load constpool:$Imm19))]>;
2462
2463 let mayLoad = 1 in {
2464   def LDRq_lit : A64I_LDRlitSimple<0b10, 0b1, FPR128>;
2465
2466
2467   def LDRSWx_lit : A64I_LDRlit<0b10, 0b0,
2468                                (outs GPR64:$Rt),
2469                                (ins ldrlit_label:$Imm19),
2470                                "ldrsw\t$Rt, $Imm19",
2471                                [], NoItinerary>;
2472
2473   def PRFM_lit : A64I_LDRlit<0b11, 0b0,
2474                              (outs), (ins prefetch_op:$Rt, ldrlit_label:$Imm19),
2475                              "prfm\t$Rt, $Imm19",
2476                              [], NoItinerary>;
2477 }
2478
2479 //===----------------------------------------------------------------------===//
2480 // Load-store exclusive instructions
2481 //===----------------------------------------------------------------------===//
2482 // Contains: STXRB, STXRH, STXR, LDXRB, LDXRH, LDXR. STXP, LDXP, STLXRB,
2483 //           STLXRH, STLXR, LDAXRB, LDAXRH, LDAXR, STLXP, LDAXP, STLRB,
2484 //           STLRH, STLR, LDARB, LDARH, LDAR
2485
2486 // Since these instructions have the undefined register bits set to 1 in
2487 // their canonical form, we need a post encoder method to set those bits
2488 // to 1 when encoding these instructions. We do this using the
2489 // fixLoadStoreExclusive function. This function has template parameters:
2490 //
2491 // fixLoadStoreExclusive<int hasRs, int hasRt2>
2492 //
2493 // hasRs indicates that the instruction uses the Rs field, so we won't set
2494 // it to 1 (and the same for Rt2). We don't need template parameters for
2495 // the other register fiels since Rt and Rn are always used.
2496
2497 // This operand parses a GPR64xsp register, followed by an optional immediate
2498 // #0.
2499 def GPR64xsp0_asmoperand : AsmOperandClass {
2500   let Name = "GPR64xsp0";
2501   let PredicateMethod = "isWrappedReg";
2502   let RenderMethod = "addRegOperands";
2503   let ParserMethod = "ParseLSXAddressOperand";
2504   // Diagnostics are provided by ParserMethod
2505 }
2506
2507 def GPR64xsp0 : RegisterOperand<GPR64xsp> {
2508   let ParserMatchClass = GPR64xsp0_asmoperand;
2509 }
2510
2511 //===----------------------------------
2512 // Store-exclusive (releasing & normal)
2513 //===----------------------------------
2514
2515 class A64I_SRexs_impl<bits<2> size, bits<3> opcode, string asm, dag outs,
2516                         dag ins, list<dag> pat,
2517                         InstrItinClass itin> :
2518        A64I_LDSTex_stn <size,
2519                         opcode{2}, 0, opcode{1}, opcode{0},
2520                         outs, ins,
2521                         !strconcat(asm, "\t$Rs, $Rt, [$Rn]"),
2522                         pat, itin> {
2523   let mayStore = 1;
2524   let PostEncoderMethod = "fixLoadStoreExclusive<1,0>";
2525 }
2526
2527 multiclass A64I_SRex<string asmstr, bits<3> opcode, string prefix> {
2528   def _byte:  A64I_SRexs_impl<0b00, opcode, !strconcat(asmstr, "b"),
2529                               (outs GPR32:$Rs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2530                               [], NoItinerary>;
2531
2532   def _hword:  A64I_SRexs_impl<0b01, opcode, !strconcat(asmstr, "h"),
2533                                (outs GPR32:$Rs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2534                                [],NoItinerary>;
2535
2536   def _word:  A64I_SRexs_impl<0b10, opcode, asmstr,
2537                               (outs GPR32:$Rs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2538                               [], NoItinerary>;
2539
2540   def _dword: A64I_SRexs_impl<0b11, opcode, asmstr,
2541                               (outs GPR32:$Rs), (ins GPR64:$Rt, GPR64xsp0:$Rn),
2542                               [], NoItinerary>;
2543 }
2544
2545 defm STXR  : A64I_SRex<"stxr",  0b000, "STXR">;
2546 defm STLXR : A64I_SRex<"stlxr", 0b001, "STLXR">;
2547
2548 //===----------------------------------
2549 // Loads
2550 //===----------------------------------
2551
2552 class A64I_LRexs_impl<bits<2> size, bits<3> opcode, string asm, dag outs,
2553                         dag ins, list<dag> pat,
2554                         InstrItinClass itin> :
2555         A64I_LDSTex_tn <size,
2556                         opcode{2}, 1, opcode{1}, opcode{0},
2557                         outs, ins,
2558                         !strconcat(asm, "\t$Rt, [$Rn]"),
2559                         pat, itin> {
2560   let mayLoad = 1;
2561   let PostEncoderMethod = "fixLoadStoreExclusive<0,0>";
2562 }
2563
2564 multiclass A64I_LRex<string asmstr, bits<3> opcode> {
2565   def _byte:  A64I_LRexs_impl<0b00, opcode, !strconcat(asmstr, "b"),
2566                             (outs GPR32:$Rt), (ins GPR64xsp0:$Rn),
2567                             [], NoItinerary>;
2568
2569   def _hword:  A64I_LRexs_impl<0b01, opcode, !strconcat(asmstr, "h"),
2570                             (outs GPR32:$Rt), (ins GPR64xsp0:$Rn),
2571                             [], NoItinerary>;
2572
2573   def _word:  A64I_LRexs_impl<0b10, opcode, asmstr,
2574                             (outs GPR32:$Rt), (ins GPR64xsp0:$Rn),
2575                             [], NoItinerary>;
2576
2577   def _dword: A64I_LRexs_impl<0b11, opcode, asmstr,
2578                             (outs GPR64:$Rt), (ins GPR64xsp0:$Rn),
2579                             [], NoItinerary>;
2580 }
2581
2582 defm LDXR  : A64I_LRex<"ldxr",  0b000>;
2583 defm LDAXR : A64I_LRex<"ldaxr", 0b001>;
2584 defm LDAR  : A64I_LRex<"ldar",  0b101>;
2585
2586 class acquiring_load<PatFrag base>
2587   : PatFrag<(ops node:$ptr), (base node:$ptr), [{
2588   return cast<AtomicSDNode>(N)->getOrdering() == Acquire;
2589 }]>;
2590
2591 def atomic_load_acquire_8  : acquiring_load<atomic_load_8>;
2592 def atomic_load_acquire_16 : acquiring_load<atomic_load_16>;
2593 def atomic_load_acquire_32 : acquiring_load<atomic_load_32>;
2594 def atomic_load_acquire_64 : acquiring_load<atomic_load_64>;
2595
2596 def : Pat<(atomic_load_acquire_8  GPR64xsp:$Rn), (LDAR_byte  GPR64xsp0:$Rn)>;
2597 def : Pat<(atomic_load_acquire_16 GPR64xsp:$Rn), (LDAR_hword GPR64xsp0:$Rn)>;
2598 def : Pat<(atomic_load_acquire_32 GPR64xsp:$Rn), (LDAR_word  GPR64xsp0:$Rn)>;
2599 def : Pat<(atomic_load_acquire_64 GPR64xsp:$Rn), (LDAR_dword GPR64xsp0:$Rn)>;
2600
2601 //===----------------------------------
2602 // Store-release (no exclusivity)
2603 //===----------------------------------
2604
2605 class A64I_SLexs_impl<bits<2> size, bits<3> opcode, string asm, dag outs,
2606                         dag ins, list<dag> pat,
2607                         InstrItinClass itin> :
2608         A64I_LDSTex_tn <size,
2609                         opcode{2}, 0, opcode{1}, opcode{0},
2610                         outs, ins,
2611                         !strconcat(asm, "\t$Rt, [$Rn]"),
2612                         pat, itin> {
2613   let mayStore = 1;
2614   let PostEncoderMethod = "fixLoadStoreExclusive<0,0>";
2615 }
2616
2617 class releasing_store<PatFrag base>
2618   : PatFrag<(ops node:$ptr, node:$val), (base node:$ptr, node:$val), [{
2619   return cast<AtomicSDNode>(N)->getOrdering() == Release;
2620 }]>;
2621
2622 def atomic_store_release_8  : releasing_store<atomic_store_8>;
2623 def atomic_store_release_16 : releasing_store<atomic_store_16>;
2624 def atomic_store_release_32 : releasing_store<atomic_store_32>;
2625 def atomic_store_release_64 : releasing_store<atomic_store_64>;
2626
2627 multiclass A64I_SLex<string asmstr, bits<3> opcode, string prefix> {
2628   def _byte:  A64I_SLexs_impl<0b00, opcode, !strconcat(asmstr, "b"),
2629                             (outs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2630                             [(atomic_store_release_8 GPR64xsp0:$Rn, GPR32:$Rt)],
2631                             NoItinerary>;
2632
2633   def _hword:  A64I_SLexs_impl<0b01, opcode, !strconcat(asmstr, "h"),
2634                            (outs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2635                            [(atomic_store_release_16 GPR64xsp0:$Rn, GPR32:$Rt)],
2636                            NoItinerary>;
2637
2638   def _word:  A64I_SLexs_impl<0b10, opcode, asmstr,
2639                            (outs), (ins GPR32:$Rt, GPR64xsp0:$Rn),
2640                            [(atomic_store_release_32 GPR64xsp0:$Rn, GPR32:$Rt)],
2641                            NoItinerary>;
2642
2643   def _dword: A64I_SLexs_impl<0b11, opcode, asmstr,
2644                            (outs), (ins GPR64:$Rt, GPR64xsp0:$Rn),
2645                            [(atomic_store_release_64 GPR64xsp0:$Rn, GPR64:$Rt)],
2646                            NoItinerary>;
2647 }
2648
2649 defm STLR  : A64I_SLex<"stlr", 0b101, "STLR">;
2650
2651 //===----------------------------------
2652 // Store-exclusive pair (releasing & normal)
2653 //===----------------------------------
2654
2655 class A64I_SPexs_impl<bits<2> size, bits<3> opcode, string asm, dag outs,
2656                         dag ins, list<dag> pat,
2657                         InstrItinClass itin> :
2658      A64I_LDSTex_stt2n <size,
2659                         opcode{2}, 0, opcode{1}, opcode{0},
2660                         outs, ins,
2661                         !strconcat(asm, "\t$Rs, $Rt, $Rt2, [$Rn]"),
2662                         pat, itin> {
2663   let mayStore = 1;
2664 }
2665
2666
2667 multiclass A64I_SPex<string asmstr, bits<3> opcode> {
2668   def _word:  A64I_SPexs_impl<0b10, opcode, asmstr, (outs),
2669                             (ins GPR32:$Rs, GPR32:$Rt, GPR32:$Rt2,
2670                                  GPR64xsp0:$Rn),
2671                             [], NoItinerary>;
2672
2673   def _dword: A64I_SPexs_impl<0b11, opcode, asmstr, (outs),
2674                             (ins GPR32:$Rs, GPR64:$Rt, GPR64:$Rt2,
2675                                             GPR64xsp0:$Rn),
2676                             [], NoItinerary>;
2677 }
2678
2679 defm STXP  : A64I_SPex<"stxp", 0b010>;
2680 defm STLXP : A64I_SPex<"stlxp", 0b011>;
2681
2682 //===----------------------------------
2683 // Load-exclusive pair (acquiring & normal)
2684 //===----------------------------------
2685
2686 class A64I_LPexs_impl<bits<2> size, bits<3> opcode, string asm, dag outs,
2687                         dag ins, list<dag> pat,
2688                         InstrItinClass itin> :
2689       A64I_LDSTex_tt2n <size,
2690                         opcode{2}, 1, opcode{1}, opcode{0},
2691                         outs, ins,
2692                         !strconcat(asm, "\t$Rt, $Rt2, [$Rn]"),
2693                         pat, itin>{
2694   let mayLoad = 1;
2695   let DecoderMethod = "DecodeLoadPairExclusiveInstruction";
2696   let PostEncoderMethod = "fixLoadStoreExclusive<0,1>";
2697 }
2698
2699 multiclass A64I_LPex<string asmstr, bits<3> opcode> {
2700   def _word:  A64I_LPexs_impl<0b10, opcode, asmstr,
2701                             (outs GPR32:$Rt, GPR32:$Rt2),
2702                             (ins GPR64xsp0:$Rn),
2703                             [], NoItinerary>;
2704
2705   def _dword: A64I_LPexs_impl<0b11, opcode, asmstr,
2706                             (outs GPR64:$Rt, GPR64:$Rt2),
2707                             (ins GPR64xsp0:$Rn),
2708                             [], NoItinerary>;
2709 }
2710
2711 defm LDXP  : A64I_LPex<"ldxp", 0b010>;
2712 defm LDAXP : A64I_LPex<"ldaxp", 0b011>;
2713
2714 //===----------------------------------------------------------------------===//
2715 // Load-store register (unscaled immediate) instructions
2716 //===----------------------------------------------------------------------===//
2717 // Contains: LDURB, LDURH, LDRUSB, LDRUSH, LDRUSW, STUR, STURB, STURH and PRFUM
2718 //
2719 // and
2720 //
2721 //===----------------------------------------------------------------------===//
2722 // Load-store register (register offset) instructions
2723 //===----------------------------------------------------------------------===//
2724 // Contains: LDRB, LDRH, LDRSB, LDRSH, LDRSW, STR, STRB, STRH and PRFM
2725 //
2726 // and
2727 //
2728 //===----------------------------------------------------------------------===//
2729 // Load-store register (unsigned immediate) instructions
2730 //===----------------------------------------------------------------------===//
2731 // Contains: LDRB, LDRH, LDRSB, LDRSH, LDRSW, STR, STRB, STRH and PRFM
2732 //
2733 // and
2734 //
2735 //===----------------------------------------------------------------------===//
2736 // Load-store register (immediate post-indexed) instructions
2737 //===----------------------------------------------------------------------===//
2738 // Contains: STRB, STRH, STR, LDRB, LDRH, LDR, LDRSB, LDRSH, LDRSW
2739 //
2740 // and
2741 //
2742 //===----------------------------------------------------------------------===//
2743 // Load-store register (immediate pre-indexed) instructions
2744 //===----------------------------------------------------------------------===//
2745 // Contains: STRB, STRH, STR, LDRB, LDRH, LDR, LDRSB, LDRSH, LDRSW
2746
2747 // Note that patterns are much later on in a completely separate section (they
2748 // need ADRPxi to be defined).
2749
2750 //===-------------------------------
2751 // 1. Various operands needed
2752 //===-------------------------------
2753
2754 //===-------------------------------
2755 // 1.1 Unsigned 12-bit immediate operands
2756 //===-------------------------------
2757 // The addressing mode for these instructions consists of an unsigned 12-bit
2758 // immediate which is scaled by the size of the memory access.
2759 //
2760 // We represent this in the MC layer by two operands:
2761 //     1. A base register.
2762 //     2. A 12-bit immediate: not multiplied by access size, so "LDR x0,[x0,#8]"
2763 //        would have '1' in this field.
2764 // This means that separate functions are needed for converting representations
2765 // which *are* aware of the intended access size.
2766
2767 // Anything that creates an MCInst (Decoding, selection and AsmParsing) has to
2768 // know the access size via some means. An isolated operand does not have this
2769 // information unless told from here, which means we need separate tablegen
2770 // Operands for each access size. This multiclass takes care of instantiating
2771 // the correct template functions in the rest of the backend.
2772
2773 //===-------------------------------
2774 // 1.1 Unsigned 12-bit immediate operands
2775 //===-------------------------------
2776
2777 multiclass offsets_uimm12<int MemSize, string prefix> {
2778   def uimm12_asmoperand : AsmOperandClass {
2779     let Name = "OffsetUImm12_" # MemSize;
2780     let PredicateMethod = "isOffsetUImm12<" # MemSize # ">";
2781     let RenderMethod = "addOffsetUImm12Operands<" # MemSize # ">";
2782     let DiagnosticType = "LoadStoreUImm12_" # MemSize;
2783   }
2784
2785   // Pattern is really no more than an ImmLeaf, but predicated on MemSize which
2786   // complicates things beyond TableGen's ken.
2787   def uimm12 : Operand<i64>,
2788                ComplexPattern<i64, 1, "SelectOffsetUImm12<" # MemSize # ">"> {
2789     let ParserMatchClass
2790       = !cast<AsmOperandClass>(prefix # uimm12_asmoperand);
2791
2792     let PrintMethod = "printOffsetUImm12Operand<" # MemSize # ">";
2793     let EncoderMethod = "getOffsetUImm12OpValue<" # MemSize # ">";
2794   }
2795 }
2796
2797 defm byte_  : offsets_uimm12<1, "byte_">;
2798 defm hword_ : offsets_uimm12<2, "hword_">;
2799 defm word_  : offsets_uimm12<4, "word_">;
2800 defm dword_ : offsets_uimm12<8, "dword_">;
2801 defm qword_ : offsets_uimm12<16, "qword_">;
2802
2803 //===-------------------------------
2804 // 1.1 Signed 9-bit immediate operands
2805 //===-------------------------------
2806
2807 // The MCInst is expected to store the bit-wise encoding of the value,
2808 // which amounts to lopping off the extended sign bits.
2809 def SDXF_simm9 : SDNodeXForm<imm, [{
2810   return CurDAG->getTargetConstant(N->getZExtValue() & 0x1ff, MVT::i32);
2811 }]>;
2812
2813 def simm9_asmoperand : AsmOperandClass {
2814   let Name = "SImm9";
2815   let PredicateMethod = "isSImm<9>";
2816   let RenderMethod = "addSImmOperands<9>";
2817   let DiagnosticType = "LoadStoreSImm9";
2818 }
2819
2820 def simm9 : Operand<i64>,
2821             ImmLeaf<i64, [{ return Imm >= -0x100 && Imm <= 0xff; }],
2822             SDXF_simm9> {
2823   let PrintMethod = "printOffsetSImm9Operand";
2824   let ParserMatchClass = simm9_asmoperand;
2825 }
2826
2827
2828 //===-------------------------------
2829 // 1.3 Register offset extensions
2830 //===-------------------------------
2831
2832 // The assembly-syntax for these addressing-modes is:
2833 //    [<Xn|SP>, <R><m> {, <extend> {<amount>}}]
2834 //
2835 // The essential semantics are:
2836 //     + <amount> is a shift: #<log(transfer size)> or #0
2837 //     + <R> can be W or X.
2838 //     + If <R> is W, <extend> can be UXTW or SXTW
2839 //     + If <R> is X, <extend> can be LSL or SXTX
2840 //
2841 // The trickiest of those constraints is that Rm can be either GPR32 or GPR64,
2842 // which will need separate instructions for LLVM type-consistency. We'll also
2843 // need separate operands, of course.
2844 multiclass regexts<int MemSize, int RmSize, RegisterClass GPR,
2845                    string Rm, string prefix> {
2846   def regext_asmoperand : AsmOperandClass {
2847     let Name = "AddrRegExtend_" # MemSize # "_" #  Rm;
2848     let PredicateMethod = "isAddrRegExtend<" # MemSize # "," # RmSize # ">";
2849     let RenderMethod = "addAddrRegExtendOperands<" # MemSize # ">";
2850     let DiagnosticType = "LoadStoreExtend" # RmSize # "_" # MemSize;
2851   }
2852
2853   def regext : Operand<i64> {
2854     let PrintMethod
2855       = "printAddrRegExtendOperand<" # MemSize # ", " # RmSize # ">";
2856
2857     let DecoderMethod = "DecodeAddrRegExtendOperand";
2858     let ParserMatchClass
2859       = !cast<AsmOperandClass>(prefix # regext_asmoperand);
2860   }
2861 }
2862
2863 multiclass regexts_wx<int MemSize, string prefix> {
2864   // Rm is an X-register if LSL or SXTX are specified as the shift.
2865   defm Xm_ : regexts<MemSize, 64, GPR64, "Xm", prefix # "Xm_">;
2866
2867   // Rm is a W-register if UXTW or SXTW are specified as the shift.
2868   defm Wm_ : regexts<MemSize, 32, GPR32, "Wm", prefix # "Wm_">;
2869 }
2870
2871 defm byte_  : regexts_wx<1, "byte_">;
2872 defm hword_ : regexts_wx<2, "hword_">;
2873 defm word_  : regexts_wx<4, "word_">;
2874 defm dword_ : regexts_wx<8, "dword_">;
2875 defm qword_ : regexts_wx<16, "qword_">;
2876
2877
2878 //===------------------------------
2879 // 2. The instructions themselves.
2880 //===------------------------------
2881
2882 // We have the following instructions to implement:
2883 // |                 | B     | H     | W     | X      |
2884 // |-----------------+-------+-------+-------+--------|
2885 // | unsigned str    | STRB  | STRH  | STR   | STR    |
2886 // | unsigned ldr    | LDRB  | LDRH  | LDR   | LDR    |
2887 // | signed ldr to W | LDRSB | LDRSH | -     | -      |
2888 // | signed ldr to X | LDRSB | LDRSH | LDRSW | (PRFM) |
2889
2890 // This will instantiate the LDR/STR instructions you'd expect to use for an
2891 // unsigned datatype (first two rows above) or floating-point register, which is
2892 // reasonably uniform across all access sizes.
2893
2894
2895 //===------------------------------
2896 // 2.1 Regular instructions
2897 //===------------------------------
2898
2899 // This class covers the basic unsigned or irrelevantly-signed loads and stores,
2900 // to general-purpose and floating-point registers.
2901
2902 class AddrParams<string prefix> {
2903   Operand uimm12 = !cast<Operand>(prefix # "_uimm12");
2904
2905   Operand regextWm = !cast<Operand>(prefix # "_Wm_regext");
2906   Operand regextXm = !cast<Operand>(prefix # "_Xm_regext");
2907 }
2908
2909 def byte_addrparams : AddrParams<"byte">;
2910 def hword_addrparams : AddrParams<"hword">;
2911 def word_addrparams : AddrParams<"word">;
2912 def dword_addrparams : AddrParams<"dword">;
2913 def qword_addrparams : AddrParams<"qword">;
2914
2915 multiclass A64I_LDRSTR_unsigned<string prefix, bits<2> size, bit v,
2916                                 bit high_opc, string asmsuffix,
2917                                 RegisterClass GPR, AddrParams params> {
2918   // Unsigned immediate
2919   def _STR : A64I_LSunsigimm<size, v, {high_opc, 0b0},
2920                      (outs), (ins GPR:$Rt, GPR64xsp:$Rn, params.uimm12:$UImm12),
2921                      "str" # asmsuffix # "\t$Rt, [$Rn, $UImm12]",
2922                      [], NoItinerary> {
2923     let mayStore = 1;
2924   }
2925   def : InstAlias<"str" # asmsuffix # " $Rt, [$Rn]",
2926                 (!cast<Instruction>(prefix # "_STR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
2927
2928   def _LDR : A64I_LSunsigimm<size, v, {high_opc, 0b1},
2929                       (outs GPR:$Rt), (ins GPR64xsp:$Rn, params.uimm12:$UImm12),
2930                       "ldr" #  asmsuffix # "\t$Rt, [$Rn, $UImm12]",
2931                       [], NoItinerary> {
2932     let mayLoad = 1;
2933   }
2934   def : InstAlias<"ldr" # asmsuffix # " $Rt, [$Rn]",
2935                 (!cast<Instruction>(prefix # "_LDR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
2936
2937   // Register offset (four of these: load/store and Wm/Xm).
2938   let mayLoad = 1 in {
2939     def _Wm_RegOffset_LDR : A64I_LSregoff<size, v, {high_opc, 0b1}, 0b0,
2940                             (outs GPR:$Rt),
2941                             (ins GPR64xsp:$Rn, GPR32:$Rm, params.regextWm:$Ext),
2942                             "ldr" # asmsuffix # "\t$Rt, [$Rn, $Rm, $Ext]",
2943                             [], NoItinerary>;
2944
2945     def _Xm_RegOffset_LDR : A64I_LSregoff<size, v, {high_opc, 0b1}, 0b1,
2946                             (outs GPR:$Rt),
2947                             (ins GPR64xsp:$Rn, GPR64:$Rm, params.regextXm:$Ext),
2948                             "ldr" # asmsuffix # "\t$Rt, [$Rn, $Rm, $Ext]",
2949                             [], NoItinerary>;
2950   }
2951   def : InstAlias<"ldr" # asmsuffix # " $Rt, [$Rn, $Rm]",
2952         (!cast<Instruction>(prefix # "_Xm_RegOffset_LDR") GPR:$Rt, GPR64xsp:$Rn,
2953                                                           GPR64:$Rm, 2)>;
2954
2955   let mayStore = 1 in {
2956     def _Wm_RegOffset_STR : A64I_LSregoff<size, v, {high_opc, 0b0}, 0b0,
2957                                   (outs), (ins GPR:$Rt, GPR64xsp:$Rn, GPR32:$Rm,
2958                                                params.regextWm:$Ext),
2959                                   "str" # asmsuffix # "\t$Rt, [$Rn, $Rm, $Ext]",
2960                                   [], NoItinerary>;
2961
2962     def _Xm_RegOffset_STR : A64I_LSregoff<size, v, {high_opc, 0b0}, 0b1,
2963                                   (outs), (ins GPR:$Rt, GPR64xsp:$Rn, GPR64:$Rm,
2964                                                params.regextXm:$Ext),
2965                                   "str" # asmsuffix # "\t$Rt, [$Rn, $Rm, $Ext]",
2966                                   [], NoItinerary>;
2967   }
2968   def : InstAlias<"str" # asmsuffix # " $Rt, [$Rn, $Rm]",
2969       (!cast<Instruction>(prefix # "_Xm_RegOffset_STR") GPR:$Rt, GPR64xsp:$Rn,
2970                                                         GPR64:$Rm, 2)>;
2971
2972   // Unaligned immediate
2973   def _STUR : A64I_LSunalimm<size, v, {high_opc, 0b0},
2974                              (outs), (ins GPR:$Rt, GPR64xsp:$Rn, simm9:$SImm9),
2975                              "stur" # asmsuffix # "\t$Rt, [$Rn, $SImm9]",
2976                              [], NoItinerary> {
2977     let mayStore = 1;
2978   }
2979   def : InstAlias<"stur" # asmsuffix # " $Rt, [$Rn]",
2980                (!cast<Instruction>(prefix # "_STUR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
2981
2982   def _LDUR : A64I_LSunalimm<size, v, {high_opc, 0b1},
2983                              (outs GPR:$Rt), (ins GPR64xsp:$Rn, simm9:$SImm9),
2984                              "ldur" # asmsuffix # "\t$Rt, [$Rn, $SImm9]",
2985                              [], NoItinerary> {
2986     let mayLoad = 1;
2987   }
2988   def : InstAlias<"ldur" # asmsuffix # " $Rt, [$Rn]",
2989                (!cast<Instruction>(prefix # "_LDUR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
2990
2991   // Post-indexed
2992   def _PostInd_STR : A64I_LSpostind<size, v, {high_opc, 0b0},
2993                                (outs GPR64xsp:$Rn_wb),
2994                                (ins GPR:$Rt, GPR64xsp:$Rn, simm9:$SImm9),
2995                                "str" # asmsuffix # "\t$Rt, [$Rn], $SImm9",
2996                                [], NoItinerary> {
2997     let Constraints = "$Rn = $Rn_wb";
2998     let mayStore = 1;
2999
3000     // Decoder only needed for unpredictability checking (FIXME).
3001     let DecoderMethod = "DecodeSingleIndexedInstruction";
3002   }
3003
3004   def _PostInd_LDR : A64I_LSpostind<size, v, {high_opc, 0b1},
3005                                     (outs GPR:$Rt, GPR64xsp:$Rn_wb),
3006                                     (ins GPR64xsp:$Rn, simm9:$SImm9),
3007                                     "ldr" # asmsuffix # "\t$Rt, [$Rn], $SImm9",
3008                                     [], NoItinerary> {
3009     let mayLoad = 1;
3010     let Constraints = "$Rn = $Rn_wb";
3011     let DecoderMethod = "DecodeSingleIndexedInstruction";
3012   }
3013
3014   // Pre-indexed
3015   def _PreInd_STR : A64I_LSpreind<size, v, {high_opc, 0b0},
3016                                (outs GPR64xsp:$Rn_wb),
3017                                (ins GPR:$Rt, GPR64xsp:$Rn, simm9:$SImm9),
3018                                "str" # asmsuffix # "\t$Rt, [$Rn, $SImm9]!",
3019                                [], NoItinerary> {
3020     let Constraints = "$Rn = $Rn_wb";
3021     let mayStore = 1;
3022
3023     // Decoder only needed for unpredictability checking (FIXME).
3024     let DecoderMethod = "DecodeSingleIndexedInstruction";
3025   }
3026
3027   def _PreInd_LDR : A64I_LSpreind<size, v, {high_opc, 0b1},
3028                                     (outs GPR:$Rt, GPR64xsp:$Rn_wb),
3029                                     (ins GPR64xsp:$Rn, simm9:$SImm9),
3030                                     "ldr" # asmsuffix # "\t$Rt, [$Rn, $SImm9]!",
3031                                     [], NoItinerary> {
3032     let mayLoad = 1;
3033     let Constraints = "$Rn = $Rn_wb";
3034     let DecoderMethod = "DecodeSingleIndexedInstruction";
3035   }
3036
3037 }
3038
3039 // STRB/LDRB: First define the instructions
3040 defm LS8
3041   : A64I_LDRSTR_unsigned<"LS8", 0b00, 0b0, 0b0, "b", GPR32, byte_addrparams>;
3042
3043 // STRH/LDRH
3044 defm LS16
3045   : A64I_LDRSTR_unsigned<"LS16", 0b01, 0b0, 0b0, "h", GPR32, hword_addrparams>;
3046
3047
3048 // STR/LDR to/from a W register
3049 defm LS32
3050   : A64I_LDRSTR_unsigned<"LS32", 0b10, 0b0, 0b0, "", GPR32, word_addrparams>;
3051
3052 // STR/LDR to/from an X register
3053 defm LS64
3054   : A64I_LDRSTR_unsigned<"LS64", 0b11, 0b0, 0b0, "", GPR64, dword_addrparams>;
3055
3056 // STR/LDR to/from a B register
3057 defm LSFP8
3058   : A64I_LDRSTR_unsigned<"LSFP8", 0b00, 0b1, 0b0, "", FPR8, byte_addrparams>;
3059
3060 // STR/LDR to/from an H register
3061 defm LSFP16
3062   : A64I_LDRSTR_unsigned<"LSFP16", 0b01, 0b1, 0b0, "", FPR16, hword_addrparams>;
3063
3064 // STR/LDR to/from an S register
3065 defm LSFP32
3066   : A64I_LDRSTR_unsigned<"LSFP32", 0b10, 0b1, 0b0, "", FPR32, word_addrparams>;
3067 // STR/LDR to/from a D register
3068 defm LSFP64
3069   : A64I_LDRSTR_unsigned<"LSFP64", 0b11, 0b1, 0b0, "", FPR64, dword_addrparams>;
3070 // STR/LDR to/from a Q register
3071 defm LSFP128
3072   : A64I_LDRSTR_unsigned<"LSFP128", 0b00, 0b1, 0b1, "", FPR128,
3073                          qword_addrparams>;
3074
3075 //===------------------------------
3076 // 2.3 Signed loads
3077 //===------------------------------
3078
3079 // Byte and half-word signed loads can both go into either an X or a W register,
3080 // so it's worth factoring out. Signed word loads don't fit because there is no
3081 // W version.
3082 multiclass A64I_LDR_signed<bits<2> size, string asmopcode, AddrParams params,
3083                            string prefix> {
3084   // Unsigned offset
3085   def w : A64I_LSunsigimm<size, 0b0, 0b11,
3086                           (outs GPR32:$Rt),
3087                           (ins GPR64xsp:$Rn, params.uimm12:$UImm12),
3088                           "ldrs" # asmopcode # "\t$Rt, [$Rn, $UImm12]",
3089                           [], NoItinerary> {
3090     let mayLoad = 1;
3091   }
3092   def : InstAlias<"ldrs" # asmopcode # " $Rt, [$Rn]",
3093                   (!cast<Instruction>(prefix # w) GPR32:$Rt, GPR64xsp:$Rn, 0)>;
3094
3095   def x : A64I_LSunsigimm<size, 0b0, 0b10,
3096                           (outs GPR64:$Rt),
3097                           (ins GPR64xsp:$Rn, params.uimm12:$UImm12),
3098                           "ldrs" # asmopcode # "\t$Rt, [$Rn, $UImm12]",
3099                           [], NoItinerary> {
3100     let mayLoad = 1;
3101   }
3102   def : InstAlias<"ldrs" # asmopcode # " $Rt, [$Rn]",
3103                   (!cast<Instruction>(prefix # x) GPR64:$Rt, GPR64xsp:$Rn, 0)>;
3104
3105   // Register offset
3106   let mayLoad = 1 in {
3107     def w_Wm_RegOffset : A64I_LSregoff<size, 0b0, 0b11, 0b0,
3108                             (outs GPR32:$Rt),
3109                             (ins GPR64xsp:$Rn, GPR32:$Rm, params.regextWm:$Ext),
3110                             "ldrs" # asmopcode # "\t$Rt, [$Rn, $Rm, $Ext]",
3111                             [], NoItinerary>;
3112
3113     def w_Xm_RegOffset : A64I_LSregoff<size, 0b0, 0b11, 0b1,
3114                             (outs GPR32:$Rt),
3115                             (ins GPR64xsp:$Rn, GPR64:$Rm, params.regextXm:$Ext),
3116                             "ldrs" # asmopcode # "\t$Rt, [$Rn, $Rm, $Ext]",
3117                             [], NoItinerary>;
3118
3119     def x_Wm_RegOffset : A64I_LSregoff<size, 0b0, 0b10, 0b0,
3120                             (outs GPR64:$Rt),
3121                             (ins GPR64xsp:$Rn, GPR32:$Rm, params.regextWm:$Ext),
3122                             "ldrs" # asmopcode # "\t$Rt, [$Rn, $Rm, $Ext]",
3123                             [], NoItinerary>;
3124
3125     def x_Xm_RegOffset : A64I_LSregoff<size, 0b0, 0b10, 0b1,
3126                             (outs GPR64:$Rt),
3127                             (ins GPR64xsp:$Rn, GPR64:$Rm, params.regextXm:$Ext),
3128                             "ldrs" # asmopcode # "\t$Rt, [$Rn, $Rm, $Ext]",
3129                             [], NoItinerary>;
3130   }
3131   def : InstAlias<"ldrs" # asmopcode # " $Rt, [$Rn, $Rm]",
3132         (!cast<Instruction>(prefix # "w_Xm_RegOffset") GPR32:$Rt, GPR64xsp:$Rn,
3133                                                        GPR64:$Rm, 2)>;
3134
3135   def : InstAlias<"ldrs" # asmopcode # " $Rt, [$Rn, $Rm]",
3136         (!cast<Instruction>(prefix # "x_Xm_RegOffset") GPR64:$Rt, GPR64xsp:$Rn,
3137                                                        GPR64:$Rm, 2)>;
3138
3139
3140   let mayLoad = 1 in {
3141     // Unaligned offset
3142     def w_U : A64I_LSunalimm<size, 0b0, 0b11,
3143                              (outs GPR32:$Rt),
3144                              (ins GPR64xsp:$Rn, simm9:$SImm9),
3145                              "ldurs" # asmopcode # "\t$Rt, [$Rn, $SImm9]",
3146                              [], NoItinerary>;
3147
3148     def x_U : A64I_LSunalimm<size, 0b0, 0b10,
3149                              (outs GPR64:$Rt),
3150                              (ins GPR64xsp:$Rn, simm9:$SImm9),
3151                              "ldurs" # asmopcode # "\t$Rt, [$Rn, $SImm9]",
3152                              [], NoItinerary>;
3153
3154
3155     // Post-indexed
3156     def w_PostInd : A64I_LSpostind<size, 0b0, 0b11,
3157                                  (outs GPR32:$Rt, GPR64xsp:$Rn_wb),
3158                                  (ins GPR64xsp:$Rn, simm9:$SImm9),
3159                                  "ldrs" # asmopcode # "\t$Rt, [$Rn], $SImm9",
3160                                  [], NoItinerary> {
3161       let Constraints = "$Rn = $Rn_wb";
3162       let DecoderMethod = "DecodeSingleIndexedInstruction";
3163     }
3164
3165     def x_PostInd : A64I_LSpostind<size, 0b0, 0b10,
3166                                    (outs GPR64:$Rt, GPR64xsp:$Rn_wb),
3167                                    (ins GPR64xsp:$Rn, simm9:$SImm9),
3168                                    "ldrs" # asmopcode # "\t$Rt, [$Rn], $SImm9",
3169                                    [], NoItinerary> {
3170       let Constraints = "$Rn = $Rn_wb";
3171       let DecoderMethod = "DecodeSingleIndexedInstruction";
3172     }
3173
3174     // Pre-indexed
3175     def w_PreInd : A64I_LSpreind<size, 0b0, 0b11,
3176                                  (outs GPR32:$Rt, GPR64xsp:$Rn_wb),
3177                                  (ins GPR64xsp:$Rn, simm9:$SImm9),
3178                                  "ldrs" # asmopcode # "\t$Rt, [$Rn, $SImm9]!",
3179                                  [], NoItinerary> {
3180       let Constraints = "$Rn = $Rn_wb";
3181       let DecoderMethod = "DecodeSingleIndexedInstruction";
3182     }
3183
3184     def x_PreInd : A64I_LSpreind<size, 0b0, 0b10,
3185                                  (outs GPR64:$Rt, GPR64xsp:$Rn_wb),
3186                                  (ins GPR64xsp:$Rn, simm9:$SImm9),
3187                                  "ldrs" # asmopcode # "\t$Rt, [$Rn, $SImm9]!",
3188                                  [], NoItinerary> {
3189       let Constraints = "$Rn = $Rn_wb";
3190       let DecoderMethod = "DecodeSingleIndexedInstruction";
3191     }
3192   } // let mayLoad = 1
3193 }
3194
3195 // LDRSB
3196 defm LDRSB : A64I_LDR_signed<0b00, "b", byte_addrparams, "LDRSB">;
3197 // LDRSH
3198 defm LDRSH : A64I_LDR_signed<0b01, "h", hword_addrparams, "LDRSH">;
3199
3200 // LDRSW: load a 32-bit register, sign-extending to 64-bits.
3201 def LDRSWx
3202     : A64I_LSunsigimm<0b10, 0b0, 0b10,
3203                     (outs GPR64:$Rt),
3204                     (ins GPR64xsp:$Rn, word_uimm12:$UImm12),
3205                     "ldrsw\t$Rt, [$Rn, $UImm12]",
3206                     [], NoItinerary> {
3207   let mayLoad = 1;
3208 }
3209 def : InstAlias<"ldrsw $Rt, [$Rn]", (LDRSWx GPR64:$Rt, GPR64xsp:$Rn, 0)>;
3210
3211 let mayLoad = 1 in {
3212   def LDRSWx_Wm_RegOffset : A64I_LSregoff<0b10, 0b0, 0b10, 0b0,
3213                              (outs GPR64:$Rt),
3214                              (ins GPR64xsp:$Rn, GPR32:$Rm, word_Wm_regext:$Ext),
3215                              "ldrsw\t$Rt, [$Rn, $Rm, $Ext]",
3216                              [], NoItinerary>;
3217
3218   def LDRSWx_Xm_RegOffset : A64I_LSregoff<0b10, 0b0, 0b10, 0b1,
3219                              (outs GPR64:$Rt),
3220                              (ins GPR64xsp:$Rn, GPR64:$Rm, word_Xm_regext:$Ext),
3221                              "ldrsw\t$Rt, [$Rn, $Rm, $Ext]",
3222                              [], NoItinerary>;
3223 }
3224 def : InstAlias<"ldrsw $Rt, [$Rn, $Rm]",
3225                 (LDRSWx_Xm_RegOffset GPR64:$Rt, GPR64xsp:$Rn, GPR64:$Rm, 2)>;
3226
3227
3228 def LDURSWx
3229     : A64I_LSunalimm<0b10, 0b0, 0b10,
3230                     (outs GPR64:$Rt),
3231                     (ins GPR64xsp:$Rn, simm9:$SImm9),
3232                     "ldursw\t$Rt, [$Rn, $SImm9]",
3233                     [], NoItinerary> {
3234   let mayLoad = 1;
3235 }
3236 def : InstAlias<"ldursw $Rt, [$Rn]", (LDURSWx GPR64:$Rt, GPR64xsp:$Rn, 0)>;
3237
3238 def LDRSWx_PostInd
3239     : A64I_LSpostind<0b10, 0b0, 0b10,
3240                     (outs GPR64:$Rt, GPR64xsp:$Rn_wb),
3241                     (ins GPR64xsp:$Rn, simm9:$SImm9),
3242                     "ldrsw\t$Rt, [$Rn], $SImm9",
3243                     [], NoItinerary> {
3244   let mayLoad = 1;
3245   let Constraints = "$Rn = $Rn_wb";
3246   let DecoderMethod = "DecodeSingleIndexedInstruction";
3247 }
3248
3249 def LDRSWx_PreInd : A64I_LSpreind<0b10, 0b0, 0b10,
3250                                  (outs GPR64:$Rt, GPR64xsp:$Rn_wb),
3251                                  (ins GPR64xsp:$Rn, simm9:$SImm9),
3252                                  "ldrsw\t$Rt, [$Rn, $SImm9]!",
3253                                  [], NoItinerary> {
3254   let mayLoad = 1;
3255   let Constraints = "$Rn = $Rn_wb";
3256   let DecoderMethod = "DecodeSingleIndexedInstruction";
3257 }
3258
3259 //===------------------------------
3260 // 2.4 Prefetch operations
3261 //===------------------------------
3262
3263 def PRFM : A64I_LSunsigimm<0b11, 0b0, 0b10, (outs),
3264                  (ins prefetch_op:$Rt, GPR64xsp:$Rn, dword_uimm12:$UImm12),
3265                  "prfm\t$Rt, [$Rn, $UImm12]",
3266                  [], NoItinerary> {
3267   let mayLoad = 1;
3268 }
3269 def : InstAlias<"prfm $Rt, [$Rn]",
3270                 (PRFM prefetch_op:$Rt, GPR64xsp:$Rn, 0)>;
3271
3272 let mayLoad = 1 in {
3273   def PRFM_Wm_RegOffset : A64I_LSregoff<0b11, 0b0, 0b10, 0b0, (outs),
3274                                         (ins prefetch_op:$Rt, GPR64xsp:$Rn,
3275                                              GPR32:$Rm, dword_Wm_regext:$Ext),
3276                                         "prfm\t$Rt, [$Rn, $Rm, $Ext]",
3277                                         [], NoItinerary>;
3278   def PRFM_Xm_RegOffset : A64I_LSregoff<0b11, 0b0, 0b10, 0b1, (outs),
3279                                         (ins prefetch_op:$Rt, GPR64xsp:$Rn,
3280                                              GPR64:$Rm, dword_Xm_regext:$Ext),
3281                                         "prfm\t$Rt, [$Rn, $Rm, $Ext]",
3282                                         [], NoItinerary>;
3283 }
3284
3285 def : InstAlias<"prfm $Rt, [$Rn, $Rm]",
3286                 (PRFM_Xm_RegOffset prefetch_op:$Rt, GPR64xsp:$Rn,
3287                                    GPR64:$Rm, 2)>;
3288
3289
3290 def PRFUM : A64I_LSunalimm<0b11, 0b0, 0b10, (outs),
3291                          (ins prefetch_op:$Rt, GPR64xsp:$Rn, simm9:$SImm9),
3292                          "prfum\t$Rt, [$Rn, $SImm9]",
3293                          [], NoItinerary> {
3294   let mayLoad = 1;
3295 }
3296 def : InstAlias<"prfum $Rt, [$Rn]",
3297                 (PRFUM prefetch_op:$Rt, GPR64xsp:$Rn, 0)>;
3298
3299 //===----------------------------------------------------------------------===//
3300 // Load-store register (unprivileged) instructions
3301 //===----------------------------------------------------------------------===//
3302 // Contains: LDTRB, LDTRH, LDTRSB, LDTRSH, LDTRSW, STTR, STTRB and STTRH
3303
3304 // These instructions very much mirror the "unscaled immediate" loads, but since
3305 // there are no floating-point variants we need to split them out into their own
3306 // section to avoid instantiation of "ldtr d0, [sp]" etc.
3307
3308 multiclass A64I_LDTRSTTR<bits<2> size, string asmsuffix, RegisterClass GPR,
3309                          string prefix> {
3310   def _UnPriv_STR : A64I_LSunpriv<size, 0b0, 0b00,
3311                               (outs), (ins GPR:$Rt, GPR64xsp:$Rn, simm9:$SImm9),
3312                               "sttr" # asmsuffix # "\t$Rt, [$Rn, $SImm9]",
3313                               [], NoItinerary> {
3314     let mayStore = 1;
3315   }
3316
3317   def : InstAlias<"sttr" # asmsuffix # " $Rt, [$Rn]",
3318          (!cast<Instruction>(prefix # "_UnPriv_STR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
3319
3320   def _UnPriv_LDR : A64I_LSunpriv<size, 0b0, 0b01,
3321                                (outs GPR:$Rt), (ins GPR64xsp:$Rn, simm9:$SImm9),
3322                                "ldtr" # asmsuffix # "\t$Rt, [$Rn, $SImm9]",
3323                                [], NoItinerary> {
3324     let mayLoad = 1;
3325   }
3326
3327   def : InstAlias<"ldtr" # asmsuffix # " $Rt, [$Rn]",
3328          (!cast<Instruction>(prefix # "_UnPriv_LDR") GPR:$Rt, GPR64xsp:$Rn, 0)>;
3329
3330 }
3331
3332 // STTRB/LDTRB: First define the instructions
3333 defm LS8 : A64I_LDTRSTTR<0b00, "b", GPR32, "LS8">;
3334
3335 // STTRH/LDTRH
3336 defm LS16 : A64I_LDTRSTTR<0b01, "h", GPR32, "LS16">;
3337
3338 // STTR/LDTR to/from a W register
3339 defm LS32 : A64I_LDTRSTTR<0b10, "", GPR32, "LS32">;
3340
3341 // STTR/LDTR to/from an X register
3342 defm LS64 : A64I_LDTRSTTR<0b11, "", GPR64, "LS64">;
3343
3344 // Now a class for the signed instructions that can go to either 32 or 64
3345 // bits...
3346 multiclass A64I_LDTR_signed<bits<2> size, string asmopcode, string prefix> {
3347   let mayLoad = 1 in {
3348     def w : A64I_LSunpriv<size, 0b0, 0b11,
3349                           (outs GPR32:$Rt),
3350                           (ins GPR64xsp:$Rn, simm9:$SImm9),
3351                           "ldtrs" # asmopcode # "\t$Rt, [$Rn, $SImm9]",
3352                           [], NoItinerary>;
3353
3354     def x : A64I_LSunpriv<size, 0b0, 0b10,
3355                           (outs GPR64:$Rt),
3356                           (ins GPR64xsp:$Rn, simm9:$SImm9),
3357                           "ldtrs" # asmopcode # "\t$Rt, [$Rn, $SImm9]",
3358                           [], NoItinerary>;
3359   }
3360
3361   def : InstAlias<"ldtrs" # asmopcode # " $Rt, [$Rn]",
3362                  (!cast<Instruction>(prefix # "w") GPR32:$Rt, GPR64xsp:$Rn, 0)>;
3363
3364   def : InstAlias<"ldtrs" # asmopcode # " $Rt, [$Rn]",
3365                  (!cast<Instruction>(prefix # "x") GPR64:$Rt, GPR64xsp:$Rn, 0)>;
3366
3367 }
3368
3369 // LDTRSB
3370 defm LDTRSB : A64I_LDTR_signed<0b00, "b", "LDTRSB">;
3371 // LDTRSH
3372 defm LDTRSH : A64I_LDTR_signed<0b01, "h", "LDTRSH">;
3373
3374 // And finally LDTRSW which only goes to 64 bits.
3375 def LDTRSWx : A64I_LSunpriv<0b10, 0b0, 0b10,
3376                             (outs GPR64:$Rt),
3377                             (ins GPR64xsp:$Rn, simm9:$SImm9),
3378                             "ldtrsw\t$Rt, [$Rn, $SImm9]",
3379                             [], NoItinerary> {
3380   let mayLoad = 1;
3381 }
3382 def : InstAlias<"ldtrsw $Rt, [$Rn]", (LDTRSWx GPR64:$Rt, GPR64xsp:$Rn, 0)>;
3383
3384 //===----------------------------------------------------------------------===//
3385 // Load-store register pair (offset) instructions
3386 //===----------------------------------------------------------------------===//
3387 //
3388 // and
3389 //
3390 //===----------------------------------------------------------------------===//
3391 // Load-store register pair (post-indexed) instructions
3392 //===----------------------------------------------------------------------===//
3393 // Contains: STP, LDP, LDPSW
3394 //
3395 // and
3396 //
3397 //===----------------------------------------------------------------------===//
3398 // Load-store register pair (pre-indexed) instructions
3399 //===----------------------------------------------------------------------===//
3400 // Contains: STP, LDP, LDPSW
3401 //
3402 // and
3403 //
3404 //===----------------------------------------------------------------------===//
3405 // Load-store non-temporal register pair (offset) instructions
3406 //===----------------------------------------------------------------------===//
3407 // Contains: STNP, LDNP
3408
3409
3410 // Anything that creates an MCInst (Decoding, selection and AsmParsing) has to
3411 // know the access size via some means. An isolated operand does not have this
3412 // information unless told from here, which means we need separate tablegen
3413 // Operands for each access size. This multiclass takes care of instantiating
3414 // the correct template functions in the rest of the backend.
3415
3416 multiclass offsets_simm7<string MemSize, string prefix> {
3417   // The bare signed 7-bit immediate is used in post-indexed instructions, but
3418   // because of the scaling performed a generic "simm7" operand isn't
3419   // appropriate here either.
3420   def simm7_asmoperand : AsmOperandClass {
3421     let Name = "SImm7_Scaled" # MemSize;
3422     let PredicateMethod = "isSImm7Scaled<" # MemSize # ">";
3423     let RenderMethod = "addSImm7ScaledOperands<" # MemSize # ">";
3424     let DiagnosticType = "LoadStoreSImm7_" # MemSize;
3425   }
3426
3427   def simm7 : Operand<i64> {
3428     let PrintMethod = "printSImm7ScaledOperand<" # MemSize # ">";
3429     let ParserMatchClass = !cast<AsmOperandClass>(prefix # "simm7_asmoperand");
3430   }
3431 }
3432
3433 defm word_  : offsets_simm7<"4", "word_">;
3434 defm dword_ : offsets_simm7<"8", "dword_">;
3435 defm qword_ : offsets_simm7<"16", "qword_">;
3436
3437 multiclass A64I_LSPsimple<bits<2> opc, bit v, RegisterClass SomeReg,
3438                           Operand simm7, string prefix> {
3439   def _STR : A64I_LSPoffset<opc, v, 0b0, (outs),
3440                     (ins SomeReg:$Rt, SomeReg:$Rt2, GPR64xsp:$Rn, simm7:$SImm7),
3441                     "stp\t$Rt, $Rt2, [$Rn, $SImm7]", [], NoItinerary> {
3442     let mayStore = 1;
3443     let DecoderMethod = "DecodeLDSTPairInstruction";
3444   }
3445   def : InstAlias<"stp $Rt, $Rt2, [$Rn]",
3446                   (!cast<Instruction>(prefix # "_STR") SomeReg:$Rt,
3447                                                 SomeReg:$Rt2, GPR64xsp:$Rn, 0)>;
3448
3449   def _LDR : A64I_LSPoffset<opc, v, 0b1,
3450                             (outs SomeReg:$Rt, SomeReg:$Rt2),
3451                             (ins GPR64xsp:$Rn, simm7:$SImm7),
3452                             "ldp\t$Rt, $Rt2, [$Rn, $SImm7]", [], NoItinerary> {
3453     let mayLoad = 1;
3454     let DecoderMethod = "DecodeLDSTPairInstruction";
3455   }
3456   def : InstAlias<"ldp $Rt, $Rt2, [$Rn]",
3457                   (!cast<Instruction>(prefix # "_LDR") SomeReg:$Rt,
3458                                                 SomeReg:$Rt2, GPR64xsp:$Rn, 0)>;
3459
3460   def _PostInd_STR : A64I_LSPpostind<opc, v, 0b0,
3461                                (outs GPR64xsp:$Rn_wb),
3462                                (ins SomeReg:$Rt, SomeReg:$Rt2,
3463                                     GPR64xsp:$Rn,
3464                                     simm7:$SImm7),
3465                                "stp\t$Rt, $Rt2, [$Rn], $SImm7",
3466                                [], NoItinerary> {
3467     let mayStore = 1;
3468     let Constraints = "$Rn = $Rn_wb";
3469
3470     // Decoder only needed for unpredictability checking (FIXME).
3471     let DecoderMethod = "DecodeLDSTPairInstruction";
3472   }
3473
3474   def _PostInd_LDR : A64I_LSPpostind<opc, v, 0b1,
3475                         (outs SomeReg:$Rt, SomeReg:$Rt2, GPR64xsp:$Rn_wb),
3476                         (ins GPR64xsp:$Rn, simm7:$SImm7),
3477                         "ldp\t$Rt, $Rt2, [$Rn], $SImm7",
3478                         [], NoItinerary> {
3479     let mayLoad = 1;
3480     let Constraints = "$Rn = $Rn_wb";
3481     let DecoderMethod = "DecodeLDSTPairInstruction";
3482   }
3483
3484   def _PreInd_STR : A64I_LSPpreind<opc, v, 0b0, (outs GPR64xsp:$Rn_wb),
3485                     (ins SomeReg:$Rt, SomeReg:$Rt2, GPR64xsp:$Rn, simm7:$SImm7),
3486                     "stp\t$Rt, $Rt2, [$Rn, $SImm7]!",
3487                     [], NoItinerary> {
3488     let mayStore = 1;
3489     let Constraints = "$Rn = $Rn_wb";
3490     let DecoderMethod = "DecodeLDSTPairInstruction";
3491   }
3492
3493   def _PreInd_LDR : A64I_LSPpreind<opc, v, 0b1,
3494                               (outs SomeReg:$Rt, SomeReg:$Rt2, GPR64xsp:$Rn_wb),
3495                               (ins GPR64xsp:$Rn, simm7:$SImm7),
3496                               "ldp\t$Rt, $Rt2, [$Rn, $SImm7]!",
3497                               [], NoItinerary> {
3498     let mayLoad = 1;
3499     let Constraints = "$Rn = $Rn_wb";
3500     let DecoderMethod = "DecodeLDSTPairInstruction";
3501   }
3502
3503   def _NonTemp_STR : A64I_LSPnontemp<opc, v, 0b0, (outs),
3504                     (ins SomeReg:$Rt, SomeReg:$Rt2, GPR64xsp:$Rn, simm7:$SImm7),
3505                     "stnp\t$Rt, $Rt2, [$Rn, $SImm7]", [], NoItinerary> {
3506     let mayStore = 1;
3507     let DecoderMethod = "DecodeLDSTPairInstruction";
3508   }
3509   def : InstAlias<"stnp $Rt, $Rt2, [$Rn]",
3510                   (!cast<Instruction>(prefix # "_NonTemp_STR") SomeReg:$Rt,
3511                                                 SomeReg:$Rt2, GPR64xsp:$Rn, 0)>;
3512
3513   def _NonTemp_LDR : A64I_LSPnontemp<opc, v, 0b1,
3514                             (outs SomeReg:$Rt, SomeReg:$Rt2),
3515                             (ins GPR64xsp:$Rn, simm7:$SImm7),
3516                             "ldnp\t$Rt, $Rt2, [$Rn, $SImm7]", [], NoItinerary> {
3517     let mayLoad = 1;
3518     let DecoderMethod = "DecodeLDSTPairInstruction";
3519   }
3520   def : InstAlias<"ldnp $Rt, $Rt2, [$Rn]",
3521                   (!cast<Instruction>(prefix # "_NonTemp_LDR") SomeReg:$Rt,
3522                                                 SomeReg:$Rt2, GPR64xsp:$Rn, 0)>;
3523
3524 }
3525
3526
3527 defm LSPair32 : A64I_LSPsimple<0b00, 0b0, GPR32, word_simm7, "LSPair32">;
3528 defm LSPair64 : A64I_LSPsimple<0b10, 0b0, GPR64, dword_simm7, "LSPair64">;
3529 defm LSFPPair32 : A64I_LSPsimple<0b00, 0b1, FPR32, word_simm7, "LSFPPair32">;
3530 defm LSFPPair64 : A64I_LSPsimple<0b01, 0b1, FPR64,  dword_simm7, "LSFPPair64">;
3531 defm LSFPPair128 : A64I_LSPsimple<0b10, 0b1, FPR128, qword_simm7,
3532                                   "LSFPPair128">;
3533
3534
3535 def LDPSWx : A64I_LSPoffset<0b01, 0b0, 0b1,
3536                            (outs GPR64:$Rt, GPR64:$Rt2),
3537                            (ins GPR64xsp:$Rn, word_simm7:$SImm7),
3538                            "ldpsw\t$Rt, $Rt2, [$Rn, $SImm7]", [], NoItinerary> {
3539   let mayLoad = 1;
3540   let DecoderMethod = "DecodeLDSTPairInstruction";
3541 }
3542 def : InstAlias<"ldpsw $Rt, $Rt2, [$Rn]",
3543                 (LDPSWx GPR64:$Rt, GPR64:$Rt2, GPR64xsp:$Rn, 0)>;
3544
3545 def LDPSWx_PostInd : A64I_LSPpostind<0b01, 0b0, 0b1,
3546                                   (outs GPR64:$Rt, GPR64:$Rt2, GPR64:$Rn_wb),
3547                                   (ins GPR64xsp:$Rn, word_simm7:$SImm7),
3548                                   "ldpsw\t$Rt, $Rt2, [$Rn], $SImm7",
3549                                   [], NoItinerary> {
3550   let mayLoad = 1;
3551   let Constraints = "$Rn = $Rn_wb";
3552   let DecoderMethod = "DecodeLDSTPairInstruction";
3553 }
3554
3555 def LDPSWx_PreInd : A64I_LSPpreind<0b01, 0b0, 0b1,
3556                                    (outs GPR64:$Rt, GPR64:$Rt2, GPR64:$Rn_wb),
3557                                    (ins GPR64xsp:$Rn, word_simm7:$SImm7),
3558                                    "ldpsw\t$Rt, $Rt2, [$Rn, $SImm7]!",
3559                                    [], NoItinerary> {
3560   let mayLoad = 1;
3561   let Constraints = "$Rn = $Rn_wb";
3562   let DecoderMethod = "DecodeLDSTPairInstruction";
3563 }
3564
3565 //===----------------------------------------------------------------------===//
3566 // Logical (immediate) instructions
3567 //===----------------------------------------------------------------------===//
3568 // Contains: AND, ORR, EOR, ANDS, + aliases TST, MOV
3569
3570 multiclass logical_imm_operands<string prefix, string note,
3571                                 int size, ValueType VT> {
3572   def _asmoperand : AsmOperandClass {
3573     let Name = "LogicalImm" # note # size;
3574     let PredicateMethod = "isLogicalImm" # note # "<" # size # ">";
3575     let RenderMethod = "addLogicalImmOperands<" # size # ">";
3576     let DiagnosticType = "LogicalSecondSource";
3577   }
3578
3579   def _operand
3580         : Operand<VT>, ComplexPattern<VT, 1, "SelectLogicalImm", [imm]> {
3581     let ParserMatchClass = !cast<AsmOperandClass>(prefix # "_asmoperand");
3582     let PrintMethod = "printLogicalImmOperand<" # size # ">";
3583     let DecoderMethod = "DecodeLogicalImmOperand<" # size # ">";
3584   }
3585 }
3586
3587 defm logical_imm32 : logical_imm_operands<"logical_imm32", "", 32, i32>;
3588 defm logical_imm64 : logical_imm_operands<"logical_imm64", "", 64, i64>;
3589
3590 // The mov versions only differ in assembly parsing, where they
3591 // exclude values representable with either MOVZ or MOVN.
3592 defm logical_imm32_mov
3593   : logical_imm_operands<"logical_imm32_mov", "MOV", 32, i32>;
3594 defm logical_imm64_mov
3595   : logical_imm_operands<"logical_imm64_mov", "MOV", 64, i64>;
3596
3597
3598 multiclass A64I_logimmSizes<bits<2> opc, string asmop, SDNode opnode> {
3599   def wwi : A64I_logicalimm<0b0, opc, (outs GPR32wsp:$Rd),
3600                          (ins GPR32:$Rn, logical_imm32_operand:$Imm),
3601                          !strconcat(asmop, "\t$Rd, $Rn, $Imm"),
3602                          [(set GPR32wsp:$Rd,
3603                                (opnode GPR32:$Rn, logical_imm32_operand:$Imm))],
3604                          NoItinerary>;
3605
3606   def xxi : A64I_logicalimm<0b1, opc, (outs GPR64xsp:$Rd),
3607                          (ins GPR64:$Rn, logical_imm64_operand:$Imm),
3608                          !strconcat(asmop, "\t$Rd, $Rn, $Imm"),
3609                          [(set GPR64xsp:$Rd,
3610                                (opnode GPR64:$Rn, logical_imm64_operand:$Imm))],
3611                          NoItinerary>;
3612 }
3613
3614 defm AND : A64I_logimmSizes<0b00, "and", and>;
3615 defm ORR : A64I_logimmSizes<0b01, "orr", or>;
3616 defm EOR : A64I_logimmSizes<0b10, "eor", xor>;
3617
3618 let Defs = [NZCV] in {
3619   def ANDSwwi : A64I_logicalimm<0b0, 0b11, (outs GPR32:$Rd),
3620                                 (ins GPR32:$Rn, logical_imm32_operand:$Imm),
3621                                 "ands\t$Rd, $Rn, $Imm",
3622                                 [], NoItinerary>;
3623
3624   def ANDSxxi : A64I_logicalimm<0b1, 0b11, (outs GPR64:$Rd),
3625                                 (ins GPR64:$Rn, logical_imm64_operand:$Imm),
3626                                 "ands\t$Rd, $Rn, $Imm",
3627                                 [], NoItinerary>;
3628 }
3629
3630
3631 def : InstAlias<"tst $Rn, $Imm",
3632                 (ANDSwwi WZR, GPR32:$Rn, logical_imm32_operand:$Imm)>;
3633 def : InstAlias<"tst $Rn, $Imm",
3634                 (ANDSxxi XZR, GPR64:$Rn, logical_imm64_operand:$Imm)>;
3635 def : InstAlias<"mov $Rd, $Imm",
3636                 (ORRwwi GPR32wsp:$Rd, WZR, logical_imm32_mov_operand:$Imm)>;
3637 def : InstAlias<"mov $Rd, $Imm",
3638                 (ORRxxi GPR64xsp:$Rd, XZR, logical_imm64_mov_operand:$Imm)>;
3639
3640 //===----------------------------------------------------------------------===//
3641 // Logical (shifted register) instructions
3642 //===----------------------------------------------------------------------===//
3643 // Contains: AND, BIC, ORR, ORN, EOR, EON, ANDS, BICS + aliases TST, MVN, MOV
3644
3645 // Operand for optimizing (icmp (and LHS, RHS), 0, SomeCode). In theory "ANDS"
3646 // behaves differently for unsigned comparisons, so we defensively only allow
3647 // signed or n/a as the operand. In practice "unsigned greater than 0" is "not
3648 // equal to 0" and LLVM gives us this.
3649 def signed_cond : PatLeaf<(cond), [{
3650   return !isUnsignedIntSetCC(N->get());
3651 }]>;
3652
3653
3654 // These instructions share their "shift" operands with add/sub (shifted
3655 // register instructions). They are defined there.
3656
3657 // N.b. the commutable parameter is just !N. It will be first against the wall
3658 // when the revolution comes.
3659 multiclass logical_shifts<string prefix, bit sf, bits<2> opc,
3660                           bit N, bit commutable,
3661                           string asmop, SDPatternOperator opfrag, string sty,
3662                           RegisterClass GPR, list<Register> defs> {
3663   let isCommutable = commutable, Defs = defs in {
3664   def _lsl : A64I_logicalshift<sf, opc, 0b00, N,
3665                        (outs GPR:$Rd),
3666                        (ins GPR:$Rn, GPR:$Rm,
3667                             !cast<Operand>("lsl_operand_" # sty):$Imm6),
3668                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
3669                        [(set GPR:$Rd, (opfrag GPR:$Rn, (shl GPR:$Rm,
3670                             !cast<Operand>("lsl_operand_" # sty):$Imm6))
3671                        )],
3672                        NoItinerary>;
3673
3674   def _lsr : A64I_logicalshift<sf, opc, 0b01, N,
3675                        (outs GPR:$Rd),
3676                        (ins GPR:$Rn, GPR:$Rm,
3677                             !cast<Operand>("lsr_operand_" # sty):$Imm6),
3678                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
3679                        [(set GPR:$Rd, (opfrag GPR:$Rn, (srl GPR:$Rm,
3680                             !cast<Operand>("lsr_operand_" # sty):$Imm6))
3681                        )],
3682                        NoItinerary>;
3683
3684   def _asr : A64I_logicalshift<sf, opc, 0b10, N,
3685                        (outs GPR:$Rd),
3686                        (ins GPR:$Rn, GPR:$Rm,
3687                             !cast<Operand>("asr_operand_" # sty):$Imm6),
3688                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
3689                        [(set GPR:$Rd, (opfrag GPR:$Rn, (sra GPR:$Rm,
3690                             !cast<Operand>("asr_operand_" # sty):$Imm6))
3691                        )],
3692                        NoItinerary>;
3693
3694   def _ror : A64I_logicalshift<sf, opc, 0b11, N,
3695                        (outs GPR:$Rd),
3696                        (ins GPR:$Rn, GPR:$Rm,
3697                             !cast<Operand>("ror_operand_" # sty):$Imm6),
3698                        !strconcat(asmop, "\t$Rd, $Rn, $Rm, $Imm6"),
3699                        [(set GPR:$Rd, (opfrag GPR:$Rn, (rotr GPR:$Rm,
3700                             !cast<Operand>("ror_operand_" # sty):$Imm6))
3701                        )],
3702                        NoItinerary>;
3703   }
3704
3705   def _noshift
3706       : InstAlias<!strconcat(asmop, " $Rd, $Rn, $Rm"),
3707                  (!cast<Instruction>(prefix # "_lsl") GPR:$Rd, GPR:$Rn,
3708                                                       GPR:$Rm, 0)>;
3709
3710   def : Pat<(opfrag GPR:$Rn, GPR:$Rm),
3711             (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
3712 }
3713
3714 multiclass logical_sizes<string prefix, bits<2> opc, bit N, bit commutable,
3715                          string asmop, SDPatternOperator opfrag,
3716                          list<Register> defs> {
3717   defm xxx : logical_shifts<prefix # "xxx", 0b1, opc, N,
3718                             commutable, asmop, opfrag, "i64", GPR64, defs>;
3719   defm www : logical_shifts<prefix # "www", 0b0, opc, N,
3720                             commutable, asmop, opfrag, "i32", GPR32, defs>;
3721 }
3722
3723
3724 defm AND : logical_sizes<"AND", 0b00, 0b0, 0b1, "and", and, []>;
3725 defm ORR : logical_sizes<"ORR", 0b01, 0b0, 0b1, "orr", or, []>;
3726 defm EOR : logical_sizes<"EOR", 0b10, 0b0, 0b1, "eor", xor, []>;
3727 defm ANDS : logical_sizes<"ANDS", 0b11, 0b0, 0b1, "ands",
3728              PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs),
3729                      [{ (void)N; return false; }]>,
3730              [NZCV]>;
3731
3732 defm BIC : logical_sizes<"BIC", 0b00, 0b1, 0b0, "bic",
3733                          PatFrag<(ops node:$lhs, node:$rhs),
3734                                  (and node:$lhs, (not node:$rhs))>, []>;
3735 defm ORN : logical_sizes<"ORN", 0b01, 0b1, 0b0, "orn",
3736                          PatFrag<(ops node:$lhs, node:$rhs),
3737                                  (or node:$lhs, (not node:$rhs))>, []>;
3738 defm EON : logical_sizes<"EON", 0b10, 0b1, 0b0, "eon",
3739                          PatFrag<(ops node:$lhs, node:$rhs),
3740                                  (xor node:$lhs, (not node:$rhs))>, []>;
3741 defm BICS : logical_sizes<"BICS", 0b11, 0b1, 0b0, "bics",
3742                           PatFrag<(ops node:$lhs, node:$rhs),
3743                                   (and node:$lhs, (not node:$rhs)),
3744                                   [{ (void)N; return false; }]>,
3745                           [NZCV]>;
3746
3747 multiclass tst_shifts<string prefix, bit sf, string sty, RegisterClass GPR> {
3748   let isCommutable = 1, Rd = 0b11111, Defs = [NZCV] in {
3749   def _lsl : A64I_logicalshift<sf, 0b11, 0b00, 0b0,
3750                        (outs),
3751                        (ins GPR:$Rn, GPR:$Rm,
3752                             !cast<Operand>("lsl_operand_" # sty):$Imm6),
3753                        "tst\t$Rn, $Rm, $Imm6",
3754                        [(set NZCV, (A64setcc (and GPR:$Rn, (shl GPR:$Rm,
3755                            !cast<Operand>("lsl_operand_" # sty):$Imm6)),
3756                                           0, signed_cond))],
3757                        NoItinerary>;
3758
3759
3760   def _lsr : A64I_logicalshift<sf, 0b11, 0b01, 0b0,
3761                        (outs),
3762                        (ins GPR:$Rn, GPR:$Rm,
3763                             !cast<Operand>("lsr_operand_" # sty):$Imm6),
3764                        "tst\t$Rn, $Rm, $Imm6",
3765                        [(set NZCV, (A64setcc (and GPR:$Rn, (srl GPR:$Rm,
3766                            !cast<Operand>("lsr_operand_" # sty):$Imm6)),
3767                                           0, signed_cond))],
3768                        NoItinerary>;
3769
3770   def _asr : A64I_logicalshift<sf, 0b11, 0b10, 0b0,
3771                        (outs),
3772                        (ins GPR:$Rn, GPR:$Rm,
3773                             !cast<Operand>("asr_operand_" # sty):$Imm6),
3774                        "tst\t$Rn, $Rm, $Imm6",
3775                        [(set NZCV, (A64setcc (and GPR:$Rn, (sra GPR:$Rm,
3776                            !cast<Operand>("asr_operand_" # sty):$Imm6)),
3777                                           0, signed_cond))],
3778                        NoItinerary>;
3779
3780   def _ror : A64I_logicalshift<sf, 0b11, 0b11, 0b0,
3781                        (outs),
3782                        (ins GPR:$Rn, GPR:$Rm,
3783                             !cast<Operand>("ror_operand_" # sty):$Imm6),
3784                        "tst\t$Rn, $Rm, $Imm6",
3785                        [(set NZCV, (A64setcc (and GPR:$Rn, (rotr GPR:$Rm,
3786                            !cast<Operand>("ror_operand_" # sty):$Imm6)),
3787                                           0, signed_cond))],
3788                        NoItinerary>;
3789   }
3790
3791   def _noshift : InstAlias<"tst $Rn, $Rm",
3792                      (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
3793
3794   def : Pat<(A64setcc (and GPR:$Rn, GPR:$Rm), 0, signed_cond),
3795             (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
3796 }
3797
3798 defm TSTxx : tst_shifts<"TSTxx", 0b1, "i64", GPR64>;
3799 defm TSTww : tst_shifts<"TSTww", 0b0, "i32", GPR32>;
3800
3801
3802 multiclass mvn_shifts<string prefix, bit sf, string sty, RegisterClass GPR> {
3803   let isCommutable = 0, Rn = 0b11111 in {
3804   def _lsl : A64I_logicalshift<sf, 0b01, 0b00, 0b1,
3805                        (outs GPR:$Rd),
3806                        (ins GPR:$Rm,
3807                             !cast<Operand>("lsl_operand_" # sty):$Imm6),
3808                        "mvn\t$Rd, $Rm, $Imm6",
3809                        [(set GPR:$Rd, (not (shl GPR:$Rm,
3810                          !cast<Operand>("lsl_operand_" # sty):$Imm6)))],
3811                        NoItinerary>;
3812
3813
3814   def _lsr : A64I_logicalshift<sf, 0b01, 0b01, 0b1,
3815                        (outs GPR:$Rd),
3816                        (ins GPR:$Rm,
3817                             !cast<Operand>("lsr_operand_" # sty):$Imm6),
3818                        "mvn\t$Rd, $Rm, $Imm6",
3819                        [(set GPR:$Rd, (not (srl GPR:$Rm,
3820                          !cast<Operand>("lsr_operand_" # sty):$Imm6)))],
3821                        NoItinerary>;
3822
3823   def _asr : A64I_logicalshift<sf, 0b01, 0b10, 0b1,
3824                        (outs GPR:$Rd),
3825                        (ins GPR:$Rm,
3826                             !cast<Operand>("asr_operand_" # sty):$Imm6),
3827                        "mvn\t$Rd, $Rm, $Imm6",
3828                        [(set GPR:$Rd, (not (sra GPR:$Rm,
3829                          !cast<Operand>("asr_operand_" # sty):$Imm6)))],
3830                        NoItinerary>;
3831
3832   def _ror : A64I_logicalshift<sf, 0b01, 0b11, 0b1,
3833                        (outs GPR:$Rd),
3834                        (ins GPR:$Rm,
3835                             !cast<Operand>("ror_operand_" # sty):$Imm6),
3836                        "mvn\t$Rd, $Rm, $Imm6",
3837                        [(set GPR:$Rd, (not (rotr GPR:$Rm,
3838                          !cast<Operand>("lsl_operand_" # sty):$Imm6)))],
3839                        NoItinerary>;
3840   }
3841
3842   def _noshift : InstAlias<"mvn $Rn, $Rm",
3843                      (!cast<Instruction>(prefix # "_lsl") GPR:$Rn, GPR:$Rm, 0)>;
3844
3845   def : Pat<(not GPR:$Rm),
3846             (!cast<Instruction>(prefix # "_lsl") GPR:$Rm, 0)>;
3847 }
3848
3849 defm MVNxx : mvn_shifts<"MVNxx", 0b1, "i64", GPR64>;
3850 defm MVNww : mvn_shifts<"MVNww", 0b0, "i32", GPR32>;
3851
3852 def MOVxx :InstAlias<"mov $Rd, $Rm", (ORRxxx_lsl GPR64:$Rd, XZR, GPR64:$Rm, 0)>;
3853 def MOVww :InstAlias<"mov $Rd, $Rm", (ORRwww_lsl GPR32:$Rd, WZR, GPR32:$Rm, 0)>;
3854
3855 //===----------------------------------------------------------------------===//
3856 // Move wide (immediate) instructions
3857 //===----------------------------------------------------------------------===//
3858 // Contains: MOVN, MOVZ, MOVK + MOV aliases
3859
3860 // A wide variety of different relocations are needed for variants of these
3861 // instructions, so it turns out that we need a different operand for all of
3862 // them.
3863 multiclass movw_operands<string prefix, string instname, int width> {
3864   def _imm_asmoperand : AsmOperandClass {
3865     let Name = instname # width # "Shifted" # shift;
3866     let PredicateMethod = "is" # instname # width # "Imm";
3867     let RenderMethod = "addMoveWideImmOperands";
3868     let ParserMethod = "ParseImmWithLSLOperand";
3869     let DiagnosticType = "MOVWUImm16";
3870   }
3871
3872   def _imm : Operand<i32> {
3873     let ParserMatchClass = !cast<AsmOperandClass>(prefix # "_imm_asmoperand");
3874     let PrintMethod = "printMoveWideImmOperand";
3875     let EncoderMethod = "getMoveWideImmOpValue";
3876     let DecoderMethod = "DecodeMoveWideImmOperand<" # width # ">";
3877
3878     let MIOperandInfo = (ops uimm16:$UImm16, imm:$Shift);
3879   }
3880 }
3881
3882 defm movn32 : movw_operands<"movn32", "MOVN", 32>;
3883 defm movn64 : movw_operands<"movn64", "MOVN", 64>;
3884 defm movz32 : movw_operands<"movz32", "MOVZ", 32>;
3885 defm movz64 : movw_operands<"movz64", "MOVZ", 64>;
3886 defm movk32 : movw_operands<"movk32", "MOVK", 32>;
3887 defm movk64 : movw_operands<"movk64", "MOVK", 64>;
3888
3889 multiclass A64I_movwSizes<bits<2> opc, string asmop, dag ins32bit,
3890                           dag ins64bit> {
3891
3892   def wii : A64I_movw<0b0, opc, (outs GPR32:$Rd), ins32bit,
3893                       !strconcat(asmop, "\t$Rd, $FullImm"),
3894                       [], NoItinerary> {
3895     bits<18> FullImm;
3896     let UImm16 = FullImm{15-0};
3897     let Shift = FullImm{17-16};
3898   }
3899
3900   def xii : A64I_movw<0b1, opc, (outs GPR64:$Rd), ins64bit,
3901                       !strconcat(asmop, "\t$Rd, $FullImm"),
3902                       [], NoItinerary> {
3903     bits<18> FullImm;
3904     let UImm16 = FullImm{15-0};
3905     let Shift = FullImm{17-16};
3906   }
3907 }
3908
3909 let isMoveImm = 1, isReMaterializable = 1,
3910     isAsCheapAsAMove = 1, neverHasSideEffects = 1 in {
3911   defm MOVN : A64I_movwSizes<0b00, "movn",
3912                              (ins movn32_imm:$FullImm),
3913                              (ins movn64_imm:$FullImm)>;
3914
3915   // Some relocations are able to convert between a MOVZ and a MOVN. If these
3916   // are applied the instruction must be emitted with the corresponding bits as
3917   // 0, which means a MOVZ needs to override that bit from the default.
3918   let PostEncoderMethod = "fixMOVZ" in
3919   defm MOVZ : A64I_movwSizes<0b10, "movz",
3920                              (ins movz32_imm:$FullImm),
3921                              (ins movz64_imm:$FullImm)>;
3922 }
3923
3924 let Constraints = "$src = $Rd" in
3925 defm MOVK : A64I_movwSizes<0b11, "movk",
3926                            (ins GPR32:$src, movk32_imm:$FullImm),
3927                            (ins GPR64:$src, movk64_imm:$FullImm)>;
3928
3929
3930 // And now the "MOV" aliases. These also need their own operands because what
3931 // they accept is completely different to what the base instructions accept.
3932 multiclass movalias_operand<string prefix, string basename,
3933                             string immpredicate, int width> {
3934   def _asmoperand : AsmOperandClass {
3935     let Name = basename # width # "MovAlias";
3936     let PredicateMethod
3937           = "isMoveWideMovAlias<" # width # ", A64Imms::" # immpredicate # ">";
3938     let RenderMethod
3939       = "addMoveWideMovAliasOperands<" # width # ", "
3940                                        # "A64Imms::" # immpredicate # ">";
3941   }
3942
3943   def _movimm : Operand<i32> {
3944     let ParserMatchClass = !cast<AsmOperandClass>(prefix # "_asmoperand");
3945
3946     let MIOperandInfo = (ops uimm16:$UImm16, imm:$Shift);
3947   }
3948 }
3949
3950 defm movz32 : movalias_operand<"movz32", "MOVZ", "isMOVZImm", 32>;
3951 defm movz64 : movalias_operand<"movz64", "MOVZ", "isMOVZImm", 64>;
3952 defm movn32 : movalias_operand<"movn32", "MOVN", "isOnlyMOVNImm", 32>;
3953 defm movn64 : movalias_operand<"movn64", "MOVN", "isOnlyMOVNImm", 64>;
3954
3955 // FIXME: these are officially canonical aliases, but TableGen is too limited to
3956 // print them at the moment. I believe in this case an "AliasPredicate" method
3957 // will need to be implemented. to allow it, as well as the more generally
3958 // useful handling of non-register, non-constant operands.
3959 class movalias<Instruction INST, RegisterClass GPR, Operand operand>
3960   : InstAlias<"mov $Rd, $FullImm", (INST GPR:$Rd, operand:$FullImm)>;
3961
3962 def : movalias<MOVZwii, GPR32, movz32_movimm>;
3963 def : movalias<MOVZxii, GPR64, movz64_movimm>;
3964 def : movalias<MOVNwii, GPR32, movn32_movimm>;
3965 def : movalias<MOVNxii, GPR64, movn64_movimm>;
3966
3967 //===----------------------------------------------------------------------===//
3968 // PC-relative addressing instructions
3969 //===----------------------------------------------------------------------===//
3970 // Contains: ADR, ADRP
3971
3972 def adr_label : Operand<i64> {
3973   let EncoderMethod = "getLabelOpValue<AArch64::fixup_a64_adr_prel>";
3974
3975   // This label is a 21-bit offset from PC, unscaled
3976   let PrintMethod = "printLabelOperand<21, 1>";
3977   let ParserMatchClass = label_asmoperand<21, 1>;
3978   let OperandType = "OPERAND_PCREL";
3979 }
3980
3981 def adrp_label_asmoperand : AsmOperandClass {
3982   let Name = "AdrpLabel";
3983   let RenderMethod = "addLabelOperands<21, 4096>";
3984   let DiagnosticType = "Label";
3985 }
3986
3987 def adrp_label : Operand<i64> {
3988   let EncoderMethod = "getAdrpLabelOpValue";
3989
3990   // This label is a 21-bit offset from PC, scaled by the page-size: 4096.
3991   let PrintMethod = "printLabelOperand<21, 4096>";
3992   let ParserMatchClass = adrp_label_asmoperand;
3993   let OperandType = "OPERAND_PCREL";
3994 }
3995
3996 let neverHasSideEffects = 1 in {
3997   def ADRxi : A64I_PCADR<0b0, (outs GPR64:$Rd), (ins adr_label:$Label),
3998                          "adr\t$Rd, $Label", [], NoItinerary>;
3999
4000   def ADRPxi : A64I_PCADR<0b1, (outs GPR64:$Rd), (ins adrp_label:$Label),
4001                           "adrp\t$Rd, $Label", [], NoItinerary>;
4002 }
4003
4004 //===----------------------------------------------------------------------===//
4005 // System instructions
4006 //===----------------------------------------------------------------------===//
4007 // Contains: HINT, CLREX, DSB, DMB, ISB, MSR, SYS, SYSL, MRS
4008 //    + aliases IC, DC, AT, TLBI, NOP, YIELD, WFE, WFI, SEV, SEVL
4009
4010 // Op1 and Op2 fields are sometimes simple 3-bit unsigned immediate values.
4011 def uimm3_asmoperand : AsmOperandClass {
4012   let Name = "UImm3";
4013   let PredicateMethod = "isUImm<3>";
4014   let RenderMethod = "addImmOperands";
4015   let DiagnosticType = "UImm3";
4016 }
4017
4018 def uimm3 : Operand<i32> {
4019   let ParserMatchClass = uimm3_asmoperand;
4020 }
4021
4022 // The HINT alias can accept a simple unsigned 7-bit immediate.
4023 def uimm7_asmoperand : AsmOperandClass {
4024   let Name = "UImm7";
4025   let PredicateMethod = "isUImm<7>";
4026   let RenderMethod = "addImmOperands";
4027   let DiagnosticType = "UImm7";
4028 }
4029
4030 def uimm7 : Operand<i32> {
4031   let ParserMatchClass = uimm7_asmoperand;
4032 }
4033
4034 // Multiclass namedimm is defined with the prefetch operands. Most of these fit
4035 // into the NamedImmMapper scheme well: they either accept a named operand or
4036 // any immediate under a particular value (which may be 0, implying no immediate
4037 // is allowed).
4038 defm dbarrier : namedimm<"dbarrier", "A64DB::DBarrierMapper">;
4039 defm isb : namedimm<"isb", "A64ISB::ISBMapper">;
4040 defm ic : namedimm<"ic", "A64IC::ICMapper">;
4041 defm dc : namedimm<"dc", "A64DC::DCMapper">;
4042 defm at : namedimm<"at", "A64AT::ATMapper">;
4043 defm tlbi : namedimm<"tlbi", "A64TLBI::TLBIMapper">;
4044
4045 // However, MRS and MSR are more complicated for a few reasons:
4046 //   * There are ~1000 generic names S3_<op1>_<CRn>_<CRm>_<Op2> which have an
4047 //     implementation-defined effect
4048 //   * Most registers are shared, but some are read-only or write-only.
4049 //   * There is a variant of MSR which accepts the same register name (SPSel),
4050 //     but which would have a different encoding.
4051
4052 // In principle these could be resolved in with more complicated subclasses of
4053 // NamedImmMapper, however that imposes an overhead on other "named
4054 // immediates". Both in concrete terms with virtual tables and in unnecessary
4055 // abstraction.
4056
4057 // The solution adopted here is to take the MRS/MSR Mappers out of the usual
4058 // hierarchy (they're not derived from NamedImmMapper) and to add logic for
4059 // their special situation.
4060 def mrs_asmoperand : AsmOperandClass {
4061   let Name = "MRS";
4062   let ParserMethod = "ParseSysRegOperand";
4063   let DiagnosticType = "MRS";
4064 }
4065
4066 def mrs_op : Operand<i32> {
4067   let ParserMatchClass = mrs_asmoperand;
4068   let PrintMethod = "printMRSOperand";
4069   let DecoderMethod = "DecodeMRSOperand";
4070 }
4071
4072 def msr_asmoperand : AsmOperandClass {
4073   let Name = "MSRWithReg";
4074
4075   // Note that SPSel is valid for both this and the pstate operands, but with
4076   // different immediate encodings. This is why these operands provide a string
4077   // AArch64Operand rather than an immediate. The overlap is small enough that
4078   // it could be resolved with hackery now, but who can say in future?
4079   let ParserMethod = "ParseSysRegOperand";
4080   let DiagnosticType = "MSR";
4081 }
4082
4083 def msr_op : Operand<i32> {
4084   let ParserMatchClass = msr_asmoperand;
4085   let PrintMethod = "printMSROperand";
4086   let DecoderMethod = "DecodeMSROperand";
4087 }
4088
4089 def pstate_asmoperand : AsmOperandClass {
4090   let Name = "MSRPState";
4091   // See comment above about parser.
4092   let ParserMethod = "ParseSysRegOperand";
4093   let DiagnosticType = "MSR";
4094 }
4095
4096 def pstate_op : Operand<i32> {
4097   let ParserMatchClass = pstate_asmoperand;
4098   let PrintMethod = "printNamedImmOperand<A64PState::PStateMapper>";
4099   let DecoderMethod = "DecodeNamedImmOperand<A64PState::PStateMapper>";
4100 }
4101
4102 // When <CRn> is specified, an assembler should accept something like "C4", not
4103 // the usual "#4" immediate.
4104 def CRx_asmoperand : AsmOperandClass {
4105   let Name = "CRx";
4106   let PredicateMethod = "isUImm<4>";
4107   let RenderMethod = "addImmOperands";
4108   let ParserMethod = "ParseCRxOperand";
4109   // Diagnostics are handled in all cases by ParseCRxOperand.
4110 }
4111
4112 def CRx : Operand<i32> {
4113   let ParserMatchClass = CRx_asmoperand;
4114   let PrintMethod = "printCRxOperand";
4115 }
4116
4117
4118 // Finally, we can start defining the instructions.
4119
4120 // HINT is straightforward, with a few aliases.
4121 def HINTi : A64I_system<0b0, (outs), (ins uimm7:$UImm7), "hint\t$UImm7",
4122                         [], NoItinerary> {
4123   bits<7> UImm7;
4124   let CRm = UImm7{6-3};
4125   let Op2 = UImm7{2-0};
4126
4127   let Op0 = 0b00;
4128   let Op1 = 0b011;
4129   let CRn = 0b0010;
4130   let Rt = 0b11111;
4131 }
4132
4133 def : InstAlias<"nop", (HINTi 0)>;
4134 def : InstAlias<"yield", (HINTi 1)>;
4135 def : InstAlias<"wfe", (HINTi 2)>;
4136 def : InstAlias<"wfi", (HINTi 3)>;
4137 def : InstAlias<"sev", (HINTi 4)>;
4138 def : InstAlias<"sevl", (HINTi 5)>;
4139
4140 // Quite a few instructions then follow a similar pattern of fixing common
4141 // fields in the bitpattern, we'll define a helper-class for them.
4142 class simple_sys<bits<2> op0, bits<3> op1, bits<4> crn, bits<3> op2,
4143                  Operand operand, string asmop>
4144   : A64I_system<0b0, (outs), (ins operand:$CRm), !strconcat(asmop, "\t$CRm"),
4145                 [], NoItinerary> {
4146   let Op0 = op0;
4147   let Op1 = op1;
4148   let CRn = crn;
4149   let Op2 = op2;
4150   let Rt = 0b11111;
4151 }
4152
4153
4154 def CLREXi : simple_sys<0b00, 0b011, 0b0011, 0b010, uimm4, "clrex">;
4155 def DSBi : simple_sys<0b00, 0b011, 0b0011, 0b100, dbarrier_op, "dsb">;
4156 def DMBi : simple_sys<0b00, 0b011, 0b0011, 0b101, dbarrier_op, "dmb">;
4157 def ISBi : simple_sys<0b00, 0b011, 0b0011, 0b110, isb_op, "isb">;
4158
4159 def : InstAlias<"clrex", (CLREXi 0b1111)>;
4160 def : InstAlias<"isb", (ISBi 0b1111)>;
4161
4162 // (DMBi 0xb) is a "DMB ISH" instruciton, appropriate for Linux SMP
4163 // configurations at least.
4164 def : Pat<(atomic_fence imm, imm), (DMBi 0xb)>;
4165
4166 // Any SYS bitpattern can be represented with a complex and opaque "SYS"
4167 // instruction.
4168 def SYSiccix : A64I_system<0b0, (outs),
4169                            (ins uimm3:$Op1, CRx:$CRn, CRx:$CRm,
4170                                 uimm3:$Op2, GPR64:$Rt),
4171                            "sys\t$Op1, $CRn, $CRm, $Op2, $Rt",
4172                            [], NoItinerary> {
4173   let Op0 = 0b01;
4174 }
4175
4176 // You can skip the Xt argument whether it makes sense or not for the generic
4177 // SYS instruction.
4178 def : InstAlias<"sys $Op1, $CRn, $CRm, $Op2",
4179                 (SYSiccix uimm3:$Op1, CRx:$CRn, CRx:$CRm, uimm3:$Op2, XZR)>;
4180
4181
4182 // But many have aliases, which obviously don't fit into
4183 class SYSalias<dag ins, string asmstring>
4184   : A64I_system<0b0, (outs), ins, asmstring, [], NoItinerary> {
4185   let isAsmParserOnly = 1;
4186
4187   bits<14> SysOp;
4188   let Op0 = 0b01;
4189   let Op1 = SysOp{13-11};
4190   let CRn = SysOp{10-7};
4191   let CRm = SysOp{6-3};
4192   let Op2 = SysOp{2-0};
4193 }
4194
4195 def ICix : SYSalias<(ins ic_op:$SysOp, GPR64:$Rt), "ic\t$SysOp, $Rt">;
4196
4197 def ICi : SYSalias<(ins ic_op:$SysOp), "ic\t$SysOp"> {
4198   let Rt = 0b11111;
4199 }
4200
4201 def DCix : SYSalias<(ins dc_op:$SysOp, GPR64:$Rt), "dc\t$SysOp, $Rt">;
4202 def ATix : SYSalias<(ins at_op:$SysOp, GPR64:$Rt), "at\t$SysOp, $Rt">;
4203
4204 def TLBIix : SYSalias<(ins tlbi_op:$SysOp, GPR64:$Rt), "tlbi\t$SysOp, $Rt">;
4205
4206 def TLBIi : SYSalias<(ins tlbi_op:$SysOp), "tlbi\t$SysOp"> {
4207   let Rt = 0b11111;
4208 }
4209
4210
4211 def SYSLxicci : A64I_system<0b1, (outs GPR64:$Rt),
4212                             (ins uimm3:$Op1, CRx:$CRn, CRx:$CRm, uimm3:$Op2),
4213                             "sysl\t$Rt, $Op1, $CRn, $CRm, $Op2",
4214                             [], NoItinerary> {
4215   let Op0 = 0b01;
4216 }
4217
4218 // The instructions themselves are rather simple for MSR and MRS.
4219 def MSRix : A64I_system<0b0, (outs), (ins msr_op:$SysReg, GPR64:$Rt),
4220                         "msr\t$SysReg, $Rt", [], NoItinerary> {
4221   bits<16> SysReg;
4222   let Op0 = SysReg{15-14};
4223   let Op1 = SysReg{13-11};
4224   let CRn = SysReg{10-7};
4225   let CRm = SysReg{6-3};
4226   let Op2 = SysReg{2-0};
4227 }
4228
4229 def MRSxi : A64I_system<0b1, (outs GPR64:$Rt), (ins mrs_op:$SysReg),
4230                         "mrs\t$Rt, $SysReg", [], NoItinerary> {
4231   bits<16> SysReg;
4232   let Op0 = SysReg{15-14};
4233   let Op1 = SysReg{13-11};
4234   let CRn = SysReg{10-7};
4235   let CRm = SysReg{6-3};
4236   let Op2 = SysReg{2-0};
4237 }
4238
4239 def MSRii : A64I_system<0b0, (outs), (ins pstate_op:$PState, uimm4:$CRm),
4240                         "msr\t$PState, $CRm", [], NoItinerary> {
4241   bits<6> PState;
4242
4243   let Op0 = 0b00;
4244   let Op1 = PState{5-3};
4245   let CRn = 0b0100;
4246   let Op2 = PState{2-0};
4247   let Rt = 0b11111;
4248 }
4249
4250 //===----------------------------------------------------------------------===//
4251 // Test & branch (immediate) instructions
4252 //===----------------------------------------------------------------------===//
4253 // Contains: TBZ, TBNZ
4254
4255 // The bit to test is a simple unsigned 6-bit immediate in the X-register
4256 // versions.
4257 def uimm6 : Operand<i64> {
4258   let ParserMatchClass = uimm6_asmoperand;
4259 }
4260
4261 def label_wid14_scal4_asmoperand : label_asmoperand<14, 4>;
4262
4263 def tbimm_target : Operand<OtherVT> {
4264   let EncoderMethod = "getLabelOpValue<AArch64::fixup_a64_tstbr>";
4265
4266   // This label is a 14-bit offset from PC, scaled by the instruction-width: 4.
4267   let PrintMethod = "printLabelOperand<14, 4>";
4268   let ParserMatchClass = label_wid14_scal4_asmoperand;
4269
4270   let OperandType = "OPERAND_PCREL";
4271 }
4272
4273 def A64eq : ImmLeaf<i32, [{ return Imm == A64CC::EQ; }]>;
4274 def A64ne : ImmLeaf<i32, [{ return Imm == A64CC::NE; }]>;
4275
4276 // These instructions correspond to patterns involving "and" with a power of
4277 // two, which we need to be able to select.
4278 def tstb64_pat : ComplexPattern<i64, 1, "SelectTSTBOperand<64>">;
4279 def tstb32_pat : ComplexPattern<i32, 1, "SelectTSTBOperand<32>">;
4280
4281 let isBranch = 1, isTerminator = 1 in {
4282   def TBZxii : A64I_TBimm<0b0, (outs),
4283                         (ins GPR64:$Rt, uimm6:$Imm, tbimm_target:$Label),
4284                         "tbz\t$Rt, $Imm, $Label",
4285                         [(A64br_cc (A64cmp (and GPR64:$Rt, tstb64_pat:$Imm), 0),
4286                                    A64eq, bb:$Label)],
4287                         NoItinerary>;
4288
4289   def TBNZxii : A64I_TBimm<0b1, (outs),
4290                         (ins GPR64:$Rt, uimm6:$Imm, tbimm_target:$Label),
4291                         "tbnz\t$Rt, $Imm, $Label",
4292                         [(A64br_cc (A64cmp (and GPR64:$Rt, tstb64_pat:$Imm), 0),
4293                                    A64ne, bb:$Label)],
4294                         NoItinerary>;
4295
4296
4297   // Note, these instructions overlap with the above 64-bit patterns. This is
4298   // intentional, "tbz x3, #1, somewhere" and "tbz w3, #1, somewhere" would both
4299   // do the same thing and are both permitted assembly. They also both have
4300   // sensible DAG patterns.
4301   def TBZwii : A64I_TBimm<0b0, (outs),
4302                         (ins GPR32:$Rt, uimm5:$Imm, tbimm_target:$Label),
4303                         "tbz\t$Rt, $Imm, $Label",
4304                         [(A64br_cc (A64cmp (and GPR32:$Rt, tstb32_pat:$Imm), 0),
4305                                    A64eq, bb:$Label)],
4306                         NoItinerary> {
4307     let Imm{5} = 0b0;
4308   }
4309
4310   def TBNZwii : A64I_TBimm<0b1, (outs),
4311                         (ins GPR32:$Rt, uimm5:$Imm, tbimm_target:$Label),
4312                         "tbnz\t$Rt, $Imm, $Label",
4313                         [(A64br_cc (A64cmp (and GPR32:$Rt, tstb32_pat:$Imm), 0),
4314                                    A64ne, bb:$Label)],
4315                         NoItinerary> {
4316     let Imm{5} = 0b0;
4317   }
4318 }
4319
4320 //===----------------------------------------------------------------------===//
4321 // Unconditional branch (immediate) instructions
4322 //===----------------------------------------------------------------------===//
4323 // Contains: B, BL
4324
4325 def label_wid26_scal4_asmoperand : label_asmoperand<26, 4>;
4326
4327 def bimm_target : Operand<OtherVT> {
4328   let EncoderMethod = "getLabelOpValue<AArch64::fixup_a64_uncondbr>";
4329
4330   // This label is a 26-bit offset from PC, scaled by the instruction-width: 4.
4331   let PrintMethod = "printLabelOperand<26, 4>";
4332   let ParserMatchClass = label_wid26_scal4_asmoperand;
4333
4334   let OperandType = "OPERAND_PCREL";
4335 }
4336
4337 def blimm_target : Operand<i64> {
4338   let EncoderMethod = "getLabelOpValue<AArch64::fixup_a64_call>";
4339
4340   // This label is a 26-bit offset from PC, scaled by the instruction-width: 4.
4341   let PrintMethod = "printLabelOperand<26, 4>";
4342   let ParserMatchClass = label_wid26_scal4_asmoperand;
4343
4344   let OperandType = "OPERAND_PCREL";
4345 }
4346
4347 class A64I_BimmImpl<bit op, string asmop, list<dag> patterns, Operand lbl_type>
4348   : A64I_Bimm<op, (outs), (ins lbl_type:$Label),
4349               !strconcat(asmop, "\t$Label"), patterns,
4350               NoItinerary>;
4351
4352 let isBranch = 1 in {
4353   def Bimm : A64I_BimmImpl<0b0, "b", [(br bb:$Label)], bimm_target> {
4354     let isTerminator = 1;
4355     let isBarrier = 1;
4356   }
4357
4358   def BLimm : A64I_BimmImpl<0b1, "bl",
4359                             [(AArch64Call tglobaladdr:$Label)], blimm_target> {
4360     let isCall = 1;
4361     let Defs = [X30];
4362   }
4363 }
4364
4365 def : Pat<(AArch64Call texternalsym:$Label), (BLimm texternalsym:$Label)>;
4366
4367 //===----------------------------------------------------------------------===//
4368 // Unconditional branch (register) instructions
4369 //===----------------------------------------------------------------------===//
4370 // Contains: BR, BLR, RET, ERET, DRP.
4371
4372 // Most of the notional opcode fields in the A64I_Breg format are fixed in A64
4373 // at the moment.
4374 class A64I_BregImpl<bits<4> opc,
4375                     dag outs, dag ins, string asmstr, list<dag> patterns,
4376                     InstrItinClass itin = NoItinerary>
4377   : A64I_Breg<opc, 0b11111, 0b000000, 0b00000,
4378               outs, ins, asmstr, patterns, itin> {
4379   let isBranch         = 1;
4380   let isIndirectBranch = 1;
4381 }
4382
4383 // Note that these are not marked isCall or isReturn because as far as LLVM is
4384 // concerned they're not. "ret" is just another jump unless it has been selected
4385 // by LLVM as the function's return.
4386
4387 let isBranch = 1 in {
4388   def BRx : A64I_BregImpl<0b0000,(outs), (ins GPR64:$Rn),
4389                           "br\t$Rn", [(brind GPR64:$Rn)]> {
4390     let isBarrier = 1;
4391     let isTerminator = 1;
4392   }
4393
4394   def BLRx : A64I_BregImpl<0b0001, (outs), (ins GPR64:$Rn),
4395                            "blr\t$Rn", [(AArch64Call GPR64:$Rn)]> {
4396     let isBarrier = 0;
4397     let isCall = 1;
4398     let Defs = [X30];
4399   }
4400
4401   def RETx : A64I_BregImpl<0b0010, (outs), (ins GPR64:$Rn),
4402                            "ret\t$Rn", []> {
4403     let isBarrier = 1;
4404     let isTerminator = 1;
4405     let isReturn = 1;
4406   }
4407
4408   // Create a separate pseudo-instruction for codegen to use so that we don't
4409   // flag x30 as used in every function. It'll be restored before the RET by the
4410   // epilogue if it's legitimately used.
4411   def RET : A64PseudoExpand<(outs), (ins), [(A64ret)], (RETx (ops X30))> {
4412     let isTerminator = 1;
4413     let isBarrier = 1;
4414     let isReturn = 1;
4415   }
4416
4417   def ERET : A64I_BregImpl<0b0100, (outs), (ins), "eret", []> {
4418     let Rn = 0b11111;
4419     let isBarrier = 1;
4420     let isTerminator = 1;
4421     let isReturn = 1;
4422   }
4423
4424   def DRPS : A64I_BregImpl<0b0101, (outs), (ins), "drps", []> {
4425     let Rn = 0b11111;
4426     let isBarrier = 1;
4427   }
4428 }
4429
4430 def RETAlias : InstAlias<"ret", (RETx X30)>;
4431
4432
4433 //===----------------------------------------------------------------------===//
4434 // Address generation patterns
4435 //===----------------------------------------------------------------------===//
4436
4437 // Primary method of address generation for the small/absolute memory model is
4438 // an ADRP/ADR pair:
4439 //     ADRP x0, some_variable
4440 //     ADD x0, x0, #:lo12:some_variable
4441 //
4442 // The load/store elision of the ADD is accomplished when selecting
4443 // addressing-modes. This just mops up the cases where that doesn't work and we
4444 // really need an address in some register.
4445
4446 // This wrapper applies a LO12 modifier to the address. Otherwise we could just
4447 // use the same address.
4448
4449 class ADRP_ADD<SDNode Wrapper, SDNode addrop>
4450  : Pat<(Wrapper addrop:$Hi, addrop:$Lo12, (i32 imm)),
4451        (ADDxxi_lsl0_s (ADRPxi addrop:$Hi), addrop:$Lo12)>;
4452
4453 def : ADRP_ADD<A64WrapperSmall, tblockaddress>;
4454 def : ADRP_ADD<A64WrapperSmall, texternalsym>;
4455 def : ADRP_ADD<A64WrapperSmall, tglobaladdr>;
4456 def : ADRP_ADD<A64WrapperSmall, tglobaltlsaddr>;
4457 def : ADRP_ADD<A64WrapperSmall, tjumptable>;
4458
4459 //===----------------------------------------------------------------------===//
4460 // GOT access patterns
4461 //===----------------------------------------------------------------------===//
4462
4463 // FIXME: Wibble
4464
4465 class GOTLoadSmall<SDNode addrfrag>
4466   : Pat<(A64GOTLoad (A64WrapperSmall addrfrag:$Hi, addrfrag:$Lo12, 8)),
4467         (LS64_LDR (ADRPxi addrfrag:$Hi), addrfrag:$Lo12)>;
4468
4469 def : GOTLoadSmall<texternalsym>;
4470 def : GOTLoadSmall<tglobaladdr>;
4471 def : GOTLoadSmall<tglobaltlsaddr>;
4472
4473 //===----------------------------------------------------------------------===//
4474 // Tail call handling
4475 //===----------------------------------------------------------------------===//
4476
4477 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [XSP] in {
4478   def TC_RETURNdi
4479     : PseudoInst<(outs), (ins i64imm:$dst, i32imm:$FPDiff),
4480                  [(AArch64tcret tglobaladdr:$dst, (i32 timm:$FPDiff))]>;
4481
4482   def TC_RETURNxi
4483     : PseudoInst<(outs), (ins tcGPR64:$dst, i32imm:$FPDiff),
4484                  [(AArch64tcret tcGPR64:$dst, (i32 timm:$FPDiff))]>;
4485 }
4486
4487 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1,
4488     Uses = [XSP] in {
4489   def TAIL_Bimm : A64PseudoExpand<(outs), (ins bimm_target:$Label), [],
4490                                   (Bimm bimm_target:$Label)>;
4491
4492   def TAIL_BRx : A64PseudoExpand<(outs), (ins tcGPR64:$Rd), [],
4493                                  (BRx GPR64:$Rd)>;
4494 }
4495
4496
4497 def : Pat<(AArch64tcret texternalsym:$dst, (i32 timm:$FPDiff)),
4498           (TC_RETURNdi texternalsym:$dst, imm:$FPDiff)>;
4499
4500 //===----------------------------------------------------------------------===//
4501 // Thread local storage
4502 //===----------------------------------------------------------------------===//
4503
4504 // This is a pseudo-instruction representing the ".tlsdesccall" directive in
4505 // assembly. Its effect is to insert an R_AARCH64_TLSDESC_CALL relocation at the
4506 // current location. It should always be immediately followed by a BLR
4507 // instruction, and is intended solely for relaxation by the linker.
4508
4509 def : Pat<(A64threadpointer), (MRSxi 0xde82)>;
4510
4511 def TLSDESCCALL : PseudoInst<(outs), (ins i64imm:$Lbl), []> {
4512   let hasSideEffects = 1;
4513 }
4514
4515 def TLSDESC_BLRx : PseudoInst<(outs), (ins GPR64:$Rn, i64imm:$Var),
4516                             [(A64tlsdesc_blr GPR64:$Rn, tglobaltlsaddr:$Var)]> {
4517   let isCall = 1;
4518   let Defs = [X30];
4519 }
4520
4521 def : Pat<(A64tlsdesc_blr GPR64:$Rn, texternalsym:$Var),
4522           (TLSDESC_BLRx GPR64:$Rn, texternalsym:$Var)>;
4523
4524 //===----------------------------------------------------------------------===//
4525 // Bitfield patterns
4526 //===----------------------------------------------------------------------===//
4527
4528 def bfi32_lsb_to_immr : SDNodeXForm<imm, [{
4529   return CurDAG->getTargetConstant((32 - N->getZExtValue()) % 32, MVT::i64);
4530 }]>;
4531
4532 def bfi64_lsb_to_immr : SDNodeXForm<imm, [{
4533   return CurDAG->getTargetConstant((64 - N->getZExtValue()) % 64, MVT::i64);
4534 }]>;
4535
4536 def bfi_width_to_imms : SDNodeXForm<imm, [{
4537   return CurDAG->getTargetConstant(N->getZExtValue() - 1, MVT::i64);
4538 }]>;
4539
4540
4541 // The simpler patterns deal with cases where no AND mask is actually needed
4542 // (either all bits are used or the low 32 bits are used).
4543 let AddedComplexity = 10 in {
4544
4545 def : Pat<(A64Bfi GPR64:$src, GPR64:$Rn, imm:$ImmR, imm:$ImmS),
4546            (BFIxxii GPR64:$src, GPR64:$Rn,
4547                     (bfi64_lsb_to_immr (i64 imm:$ImmR)),
4548                     (bfi_width_to_imms (i64 imm:$ImmS)))>;
4549
4550 def : Pat<(A64Bfi GPR32:$src, GPR32:$Rn, imm:$ImmR, imm:$ImmS),
4551           (BFIwwii GPR32:$src, GPR32:$Rn,
4552                    (bfi32_lsb_to_immr (i64 imm:$ImmR)),
4553                    (bfi_width_to_imms (i64 imm:$ImmS)))>;
4554
4555
4556 def : Pat<(and (A64Bfi GPR64:$src, GPR64:$Rn, imm:$ImmR, imm:$ImmS),
4557                (i64 4294967295)),
4558           (SUBREG_TO_REG (i64 0),
4559                          (BFIwwii (EXTRACT_SUBREG GPR64:$src, sub_32),
4560                                   (EXTRACT_SUBREG GPR64:$Rn, sub_32),
4561                                   (bfi32_lsb_to_immr (i64 imm:$ImmR)),
4562                                   (bfi_width_to_imms (i64 imm:$ImmS))),
4563                          sub_32)>;
4564
4565 }
4566
4567 //===----------------------------------------------------------------------===//
4568 // Constant island entries
4569 //===----------------------------------------------------------------------===//
4570
4571 // The constant island pass needs to create "instructions" in the middle of the
4572 // instruction stream to reresent its constants.
4573
4574 def cpinst_operand : Operand<i32>;
4575
4576 def CONSTPOOL_ENTRY : PseudoInst<(outs), (ins cpinst_operand:$instid,
4577                                               cpinst_operand:$cpidx,
4578                                               i32imm:$size), []> {
4579   let neverHasSideEffects = 1;
4580   let isNotDuplicable = 1;
4581 }
4582
4583 //===----------------------------------------------------------------------===//
4584 // Miscellaneous patterns
4585 //===----------------------------------------------------------------------===//
4586
4587 // Truncation from 64 to 32-bits just involves renaming your register.
4588 def : Pat<(i32 (trunc (i64 GPR64:$val))), (EXTRACT_SUBREG GPR64:$val, sub_32)>;
4589
4590 // Similarly, extension where we don't care about the high bits is
4591 // just a rename.
4592 def : Pat<(i64 (anyext (i32 GPR32:$val))),
4593           (INSERT_SUBREG (IMPLICIT_DEF), GPR32:$val, sub_32)>;
4594
4595 // SELECT instructions providing f128 types need to be handled by a
4596 // pseudo-instruction since the eventual code will need to introduce basic
4597 // blocks and control flow.
4598 def F128CSEL : PseudoInst<(outs FPR128:$Rd),
4599                           (ins FPR128:$Rn, FPR128:$Rm, cond_code_op:$Cond),
4600                           [(set FPR128:$Rd, (simple_select (f128 FPR128:$Rn),
4601                                                            FPR128:$Rm))]> {
4602   let Uses = [NZCV];
4603   let usesCustomInserter = 1;
4604 }
4605
4606 //===----------------------------------------------------------------------===//
4607 // Load/store patterns
4608 //===----------------------------------------------------------------------===//
4609
4610 // There are lots of patterns here, because we need to allow at least three
4611 // parameters to vary independently.
4612 //   1. Instruction: "ldrb w9, [sp]", "ldrh w9, [sp]", ...
4613 //   2. LLVM source: zextloadi8, anyextloadi8, ...
4614 //   3. Address-generation: A64Wrapper, (add BASE, OFFSET), ...
4615 //
4616 // The biggest problem turns out to be the address-generation variable. At the
4617 // point of instantiation we need to produce two DAGs, one for the pattern and
4618 // one for the instruction. Doing this at the lowest level of classes doesn't
4619 // work.
4620 //
4621 // Consider the simple uimm12 addressing mode, and the desire to match both (add
4622 // GPR64xsp:$Rn, uimm12:$Offset) and GPR64xsp:$Rn, particularly on the
4623 // instruction side. We'd need to insert either "GPR64xsp" and "uimm12" or
4624 // "GPR64xsp" and "0" into an unknown dag. !subst is not capable of this
4625 // operation, and PatFrags are for selection not output.
4626 //
4627 // As a result, the address-generation patterns are the final
4628 // instantiations. However, we do still need to vary the operand for the address
4629 // further down (At the point we're deciding A64WrapperSmall, we don't know
4630 // the memory width of the operation).
4631
4632 //===------------------------------
4633 // 1. Basic infrastructural defs
4634 //===------------------------------
4635
4636 // First, some simple classes for !foreach and !subst to use:
4637 class Decls {
4638   dag pattern;
4639 }
4640
4641 def decls : Decls;
4642 def ALIGN;
4643 def INST;
4644 def OFFSET;
4645 def SHIFT;
4646
4647 // You can't use !subst on an actual immediate, but you *can* use it on an
4648 // operand record that happens to match a single immediate. So we do.
4649 def imm_eq0 : ImmLeaf<i64, [{ return Imm == 0; }]>;
4650 def imm_eq1 : ImmLeaf<i64, [{ return Imm == 1; }]>;
4651 def imm_eq2 : ImmLeaf<i64, [{ return Imm == 2; }]>;
4652 def imm_eq3 : ImmLeaf<i64, [{ return Imm == 3; }]>;
4653 def imm_eq4 : ImmLeaf<i64, [{ return Imm == 4; }]>;
4654
4655 // If the low bits of a pointer are known to be 0 then an "or" is just as good
4656 // as addition for computing an offset. This fragment forwards that check for
4657 // TableGen's use.
4658 def add_like_or : PatFrag<(ops node:$lhs, node:$rhs), (or node:$lhs, node:$rhs),
4659 [{
4660   return CurDAG->isBaseWithConstantOffset(SDValue(N, 0));
4661 }]>;
4662
4663 // Load/store (unsigned immediate) operations with relocations against global
4664 // symbols (for lo12) are only valid if those symbols have correct alignment
4665 // (since the immediate offset is divided by the access scale, it can't have a
4666 // remainder).
4667 //
4668 // The guaranteed alignment is provided as part of the WrapperSmall
4669 // operation, and checked against one of these.
4670 def any_align   : ImmLeaf<i32, [{ (void)Imm; return true; }]>;
4671 def min_align2  : ImmLeaf<i32, [{ return Imm >= 2; }]>;
4672 def min_align4  : ImmLeaf<i32, [{ return Imm >= 4; }]>;
4673 def min_align8  : ImmLeaf<i32, [{ return Imm >= 8; }]>;
4674 def min_align16 : ImmLeaf<i32, [{ return Imm >= 16; }]>;
4675
4676 // "Normal" load/store instructions can be used on atomic operations, provided
4677 // the ordering parameter is at most "monotonic". Anything above that needs
4678 // special handling with acquire/release instructions.
4679 class simple_load<PatFrag base>
4680   : PatFrag<(ops node:$ptr), (base node:$ptr), [{
4681   return cast<AtomicSDNode>(N)->getOrdering() <= Monotonic;
4682 }]>;
4683
4684 def atomic_load_simple_i8  : simple_load<atomic_load_8>;
4685 def atomic_load_simple_i16 : simple_load<atomic_load_16>;
4686 def atomic_load_simple_i32 : simple_load<atomic_load_32>;
4687 def atomic_load_simple_i64 : simple_load<atomic_load_64>;
4688
4689 class simple_store<PatFrag base>
4690   : PatFrag<(ops node:$ptr, node:$val), (base node:$ptr, node:$val), [{
4691   return cast<AtomicSDNode>(N)->getOrdering() <= Monotonic;
4692 }]>;
4693
4694 def atomic_store_simple_i8  : simple_store<atomic_store_8>;
4695 def atomic_store_simple_i16 : simple_store<atomic_store_16>;
4696 def atomic_store_simple_i32 : simple_store<atomic_store_32>;
4697 def atomic_store_simple_i64 : simple_store<atomic_store_64>;
4698
4699 //===------------------------------
4700 // 2. UImm12 and SImm9
4701 //===------------------------------
4702
4703 // These instructions have two operands providing the address so they can be
4704 // treated similarly for most purposes.
4705
4706 //===------------------------------
4707 // 2.1 Base patterns covering extend/truncate semantics
4708 //===------------------------------
4709
4710 // Atomic patterns can be shared between integer operations of all sizes, a
4711 // quick multiclass here allows reuse.
4712 multiclass ls_atomic_pats<Instruction LOAD, Instruction STORE, dag Base,
4713                           dag Offset, dag address, RegisterClass TPR,
4714                           ValueType sty> {
4715   def : Pat<(!cast<PatFrag>("atomic_load_simple_" # sty) address),
4716             (LOAD Base, Offset)>;
4717
4718   def : Pat<(!cast<PatFrag>("atomic_store_simple_" # sty) address, TPR:$Rt),
4719             (STORE TPR:$Rt, Base, Offset)>;
4720 }
4721
4722 // Instructions accessing a memory chunk smaller than a register (or, in a
4723 // pinch, the same size) have a characteristic set of patterns they want to
4724 // match: extending loads and truncating stores. This class deals with the
4725 // sign-neutral version of those patterns.
4726 //
4727 // It will be instantiated across multiple addressing-modes.
4728 multiclass ls_small_pats<Instruction LOAD, Instruction STORE,
4729                          dag Base, dag Offset,
4730                          dag address, ValueType sty>
4731   : ls_atomic_pats<LOAD, STORE, Base, Offset, address, GPR32, sty> {
4732   def : Pat<(!cast<SDNode>(zextload # sty) address), (LOAD Base, Offset)>;
4733
4734   def : Pat<(!cast<SDNode>(extload # sty) address), (LOAD Base, Offset)>;
4735
4736   // For zero-extension to 64-bits we have to tell LLVM that the whole 64-bit
4737   // register was actually set.
4738   def : Pat<(i64 (!cast<SDNode>(zextload # sty) address)),
4739             (SUBREG_TO_REG (i64 0), (LOAD Base, Offset), sub_32)>;
4740
4741   def : Pat<(i64 (!cast<SDNode>(extload # sty) address)),
4742             (SUBREG_TO_REG (i64 0), (LOAD Base, Offset), sub_32)>;
4743
4744   def : Pat<(!cast<SDNode>(truncstore # sty) GPR32:$Rt, address),
4745             (STORE GPR32:$Rt, Base, Offset)>;
4746
4747   // For truncating store from 64-bits, we have to manually tell LLVM to
4748   // ignore the high bits of the x register.
4749   def : Pat<(!cast<SDNode>(truncstore # sty) GPR64:$Rt, address),
4750             (STORE (EXTRACT_SUBREG GPR64:$Rt, sub_32), Base, Offset)>;
4751 }
4752
4753 // Next come patterns for sign-extending loads.
4754 multiclass load_signed_pats<string T, string U, dag Base, dag Offset,
4755                             dag address, ValueType sty> {
4756   def : Pat<(i32 (!cast<SDNode>("sextload" # sty) address)),
4757             (!cast<Instruction>("LDRS" # T # "w" # U) Base, Offset)>;
4758
4759   def : Pat<(i64 (!cast<SDNode>("sextload" # sty) address)),
4760             (!cast<Instruction>("LDRS" # T # "x" # U) Base, Offset)>;
4761
4762 }
4763
4764 // and finally "natural-width" loads and stores come next.
4765 multiclass ls_neutral_pats<Instruction LOAD, Instruction STORE, dag Base,
4766                            dag Offset, dag address, RegisterClass TPR,
4767                            ValueType sty> {
4768   def : Pat<(sty (load address)), (LOAD Base, Offset)>;
4769   def : Pat<(store (sty TPR:$Rt), address), (STORE TPR:$Rt, Base, Offset)>;
4770 }
4771
4772 // Integer operations also get atomic instructions to select for.
4773 multiclass ls_int_neutral_pats<Instruction LOAD, Instruction STORE, dag Base,
4774                            dag Offset, dag address, RegisterClass TPR,
4775                            ValueType sty>
4776   : ls_neutral_pats<LOAD, STORE, Base, Offset, address, TPR, sty>,
4777     ls_atomic_pats<LOAD, STORE, Base, Offset, address, TPR, sty>;
4778
4779 //===------------------------------
4780 // 2.2. Addressing-mode instantiations
4781 //===------------------------------
4782
4783 multiclass uimm12_pats<dag address, dag Base, dag Offset> {
4784   defm : ls_small_pats<LS8_LDR, LS8_STR, Base,
4785                        !foreach(decls.pattern, Offset,
4786                                 !subst(OFFSET, byte_uimm12, decls.pattern)),
4787                        !foreach(decls.pattern, address,
4788                                 !subst(OFFSET, byte_uimm12,
4789                                 !subst(ALIGN, any_align, decls.pattern))),
4790                        i8>;
4791   defm : ls_small_pats<LS16_LDR, LS16_STR, Base,
4792                        !foreach(decls.pattern, Offset,
4793                                 !subst(OFFSET, hword_uimm12, decls.pattern)),
4794                        !foreach(decls.pattern, address,
4795                                 !subst(OFFSET, hword_uimm12,
4796                                 !subst(ALIGN, min_align2, decls.pattern))),
4797                        i16>;
4798   defm : ls_small_pats<LS32_LDR, LS32_STR, Base,
4799                        !foreach(decls.pattern, Offset,
4800                                 !subst(OFFSET, word_uimm12, decls.pattern)),
4801                        !foreach(decls.pattern, address,
4802                                 !subst(OFFSET, word_uimm12,
4803                                 !subst(ALIGN, min_align4, decls.pattern))),
4804                        i32>;
4805
4806   defm : ls_int_neutral_pats<LS32_LDR, LS32_STR, Base,
4807                           !foreach(decls.pattern, Offset,
4808                                    !subst(OFFSET, word_uimm12, decls.pattern)),
4809                           !foreach(decls.pattern, address,
4810                                    !subst(OFFSET, word_uimm12,
4811                                    !subst(ALIGN, min_align4, decls.pattern))),
4812                           GPR32, i32>;
4813
4814   defm : ls_int_neutral_pats<LS64_LDR, LS64_STR, Base,
4815                           !foreach(decls.pattern, Offset,
4816                                    !subst(OFFSET, dword_uimm12, decls.pattern)),
4817                           !foreach(decls.pattern, address,
4818                                    !subst(OFFSET, dword_uimm12,
4819                                    !subst(ALIGN, min_align8, decls.pattern))),
4820                           GPR64, i64>;
4821
4822   defm : ls_neutral_pats<LSFP16_LDR, LSFP16_STR, Base,
4823                           !foreach(decls.pattern, Offset,
4824                                    !subst(OFFSET, hword_uimm12, decls.pattern)),
4825                           !foreach(decls.pattern, address,
4826                                    !subst(OFFSET, hword_uimm12,
4827                                    !subst(ALIGN, min_align2, decls.pattern))),
4828                           FPR16, f16>;
4829
4830   defm : ls_neutral_pats<LSFP32_LDR, LSFP32_STR, Base,
4831                           !foreach(decls.pattern, Offset,
4832                                    !subst(OFFSET, word_uimm12, decls.pattern)),
4833                           !foreach(decls.pattern, address,
4834                                    !subst(OFFSET, word_uimm12,
4835                                    !subst(ALIGN, min_align4, decls.pattern))),
4836                           FPR32, f32>;
4837
4838   defm : ls_neutral_pats<LSFP64_LDR, LSFP64_STR, Base,
4839                           !foreach(decls.pattern, Offset,
4840                                    !subst(OFFSET, dword_uimm12, decls.pattern)),
4841                           !foreach(decls.pattern, address,
4842                                    !subst(OFFSET, dword_uimm12,
4843                                    !subst(ALIGN, min_align8, decls.pattern))),
4844                           FPR64, f64>;
4845
4846   defm : ls_neutral_pats<LSFP128_LDR, LSFP128_STR, Base,
4847                           !foreach(decls.pattern, Offset,
4848                                    !subst(OFFSET, qword_uimm12, decls.pattern)),
4849                           !foreach(decls.pattern, address,
4850                                    !subst(OFFSET, qword_uimm12,
4851                                    !subst(ALIGN, min_align16, decls.pattern))),
4852                           FPR128, f128>;
4853
4854   defm : load_signed_pats<"B", "", Base,
4855                           !foreach(decls.pattern, Offset,
4856                                    !subst(OFFSET, byte_uimm12, decls.pattern)),
4857                           !foreach(decls.pattern, address,
4858                                    !subst(OFFSET, byte_uimm12,
4859                                    !subst(ALIGN, any_align, decls.pattern))),
4860                           i8>;
4861
4862   defm : load_signed_pats<"H", "", Base,
4863                           !foreach(decls.pattern, Offset,
4864                                    !subst(OFFSET, hword_uimm12, decls.pattern)),
4865                           !foreach(decls.pattern, address,
4866                                    !subst(OFFSET, hword_uimm12,
4867                                    !subst(ALIGN, min_align2, decls.pattern))),
4868                           i16>;
4869
4870   def : Pat<(sextloadi32 !foreach(decls.pattern, address,
4871                                   !subst(OFFSET, word_uimm12,
4872                                   !subst(ALIGN, min_align4, decls.pattern)))),
4873             (LDRSWx Base, !foreach(decls.pattern, Offset,
4874                                   !subst(OFFSET, word_uimm12, decls.pattern)))>;
4875 }
4876
4877 // Straightforward patterns of last resort: a pointer with or without an
4878 // appropriate offset.
4879 defm : uimm12_pats<(i64 GPR64xsp:$Rn), (i64 GPR64xsp:$Rn), (i64 0)>;
4880 defm : uimm12_pats<(add GPR64xsp:$Rn, OFFSET:$UImm12),
4881                    (i64 GPR64xsp:$Rn), (i64 OFFSET:$UImm12)>;
4882
4883 // The offset could be hidden behind an "or", of course:
4884 defm : uimm12_pats<(add_like_or GPR64xsp:$Rn, OFFSET:$UImm12),
4885                    (i64 GPR64xsp:$Rn), (i64 OFFSET:$UImm12)>;
4886
4887 // Global addresses under the small-absolute model should use these
4888 // instructions. There are ELF relocations specifically for it.
4889 defm : uimm12_pats<(A64WrapperSmall tglobaladdr:$Hi, tglobaladdr:$Lo12, ALIGN),
4890                    (ADRPxi tglobaladdr:$Hi), (i64 tglobaladdr:$Lo12)>;
4891
4892 defm : uimm12_pats<(A64WrapperSmall tglobaltlsaddr:$Hi, tglobaltlsaddr:$Lo12,
4893                                     ALIGN),
4894                    (ADRPxi tglobaltlsaddr:$Hi), (i64 tglobaltlsaddr:$Lo12)>;
4895
4896 // External symbols that make it this far should also get standard relocations.
4897 defm : uimm12_pats<(A64WrapperSmall texternalsym:$Hi, texternalsym:$Lo12,
4898                                     ALIGN),
4899                    (ADRPxi texternalsym:$Hi), (i64 texternalsym:$Lo12)>;
4900
4901
4902 // We also want to use uimm12 instructions for local variables at the moment.
4903 def tframeindex_XFORM : SDNodeXForm<frameindex, [{
4904   int FI = cast<FrameIndexSDNode>(N)->getIndex();
4905   return CurDAG->getTargetFrameIndex(FI, MVT::i64);
4906 }]>;
4907
4908 defm : uimm12_pats<(i64 frameindex:$Rn),
4909                    (tframeindex_XFORM tframeindex:$Rn), (i64 0)>;
4910
4911 // These can be much simpler than uimm12 because we don't to change the operand
4912 // type (e.g. LDURB and LDURH take the same operands).
4913 multiclass simm9_pats<dag address, dag Base, dag Offset> {
4914   defm : ls_small_pats<LS8_LDUR, LS8_STUR, Base, Offset, address, i8>;
4915   defm : ls_small_pats<LS16_LDUR, LS16_STUR, Base, Offset, address, i16>;
4916
4917   defm : ls_int_neutral_pats<LS32_LDUR, LS32_STUR, Base, Offset, address,
4918                              GPR32, i32>;
4919   defm : ls_int_neutral_pats<LS64_LDUR, LS64_STUR, Base, Offset, address,
4920                              GPR64, i64>;
4921
4922   defm : ls_neutral_pats<LSFP16_LDUR, LSFP16_STUR, Base, Offset, address,
4923                          FPR16, f16>;
4924   defm : ls_neutral_pats<LSFP32_LDUR, LSFP32_STUR, Base, Offset, address,
4925                          FPR32, f32>;
4926   defm : ls_neutral_pats<LSFP64_LDUR, LSFP64_STUR, Base, Offset, address,
4927                          FPR64, f64>;
4928   defm : ls_neutral_pats<LSFP128_LDUR, LSFP128_STUR, Base, Offset, address,
4929                          FPR128, f128>;
4930
4931   def : Pat<(i64 (zextloadi32 address)),
4932             (SUBREG_TO_REG (i64 0), (LS32_LDUR Base, Offset), sub_32)>;
4933
4934   def : Pat<(truncstorei32 GPR64:$Rt, address),
4935             (LS32_STUR (EXTRACT_SUBREG GPR64:$Rt, sub_32), Base, Offset)>;
4936
4937   defm : load_signed_pats<"B", "_U", Base, Offset, address, i8>;
4938   defm : load_signed_pats<"H", "_U", Base, Offset, address, i16>;
4939   def : Pat<(sextloadi32 address), (LDURSWx Base, Offset)>;
4940 }
4941
4942 defm : simm9_pats<(add GPR64xsp:$Rn, simm9:$SImm9),
4943                   (i64 GPR64xsp:$Rn), (SDXF_simm9 simm9:$SImm9)>;
4944
4945 defm : simm9_pats<(add_like_or GPR64xsp:$Rn, simm9:$SImm9),
4946                   (i64 GPR64xsp:$Rn), (SDXF_simm9 simm9:$SImm9)>;
4947
4948
4949 //===------------------------------
4950 // 3. Register offset patterns
4951 //===------------------------------
4952
4953 // Atomic patterns can be shared between integer operations of all sizes, a
4954 // quick multiclass here allows reuse.
4955 multiclass ro_atomic_pats<Instruction LOAD, Instruction STORE, dag Base,
4956                           dag Offset, dag Extend, dag address,
4957                           RegisterClass TPR, ValueType sty> {
4958   def : Pat<(!cast<PatFrag>("atomic_load_simple_" # sty) address),
4959             (LOAD Base, Offset, Extend)>;
4960
4961   def : Pat<(!cast<PatFrag>("atomic_store_simple_" # sty) address, TPR:$Rt),
4962             (STORE TPR:$Rt, Base, Offset, Extend)>;
4963 }
4964
4965 // The register offset instructions take three operands giving the instruction,
4966 // and have an annoying split between instructions where Rm is 32-bit and
4967 // 64-bit. So we need a special hierarchy to describe them. Other than that the
4968 // same operations should be supported as for simm9 and uimm12 addressing.
4969
4970 multiclass ro_small_pats<Instruction LOAD, Instruction STORE,
4971                          dag Base, dag Offset, dag Extend,
4972                          dag address, ValueType sty>
4973   : ro_atomic_pats<LOAD, STORE, Base, Offset, Extend, address, GPR32, sty> {
4974   def : Pat<(!cast<SDNode>(zextload # sty) address),
4975             (LOAD Base, Offset, Extend)>;
4976
4977   def : Pat<(!cast<SDNode>(extload # sty) address),
4978             (LOAD Base, Offset, Extend)>;
4979
4980   // For zero-extension to 64-bits we have to tell LLVM that the whole 64-bit
4981   // register was actually set.
4982   def : Pat<(i64 (!cast<SDNode>(zextload # sty) address)),
4983             (SUBREG_TO_REG (i64 0), (LOAD Base, Offset, Extend), sub_32)>;
4984
4985   def : Pat<(i64 (!cast<SDNode>(extload # sty) address)),
4986             (SUBREG_TO_REG (i64 0), (LOAD Base, Offset, Extend), sub_32)>;
4987
4988   def : Pat<(!cast<SDNode>(truncstore # sty) GPR32:$Rt, address),
4989             (STORE GPR32:$Rt, Base, Offset, Extend)>;
4990
4991   // For truncating store from 64-bits, we have to manually tell LLVM to
4992   // ignore the high bits of the x register.
4993   def : Pat<(!cast<SDNode>(truncstore # sty) GPR64:$Rt, address),
4994             (STORE (EXTRACT_SUBREG GPR64:$Rt, sub_32), Base, Offset, Extend)>;
4995
4996 }
4997
4998 // Next come patterns for sign-extending loads.
4999 multiclass ro_signed_pats<string T, string Rm, dag Base, dag Offset, dag Extend,
5000                           dag address, ValueType sty> {
5001   def : Pat<(i32 (!cast<SDNode>("sextload" # sty) address)),
5002             (!cast<Instruction>("LDRS" # T # "w_" # Rm # "_RegOffset")
5003               Base, Offset, Extend)>;
5004
5005   def : Pat<(i64 (!cast<SDNode>("sextload" # sty) address)),
5006             (!cast<Instruction>("LDRS" # T # "x_" # Rm # "_RegOffset")
5007               Base, Offset, Extend)>;
5008 }
5009
5010 // and finally "natural-width" loads and stores come next.
5011 multiclass ro_neutral_pats<Instruction LOAD, Instruction STORE,
5012                            dag Base, dag Offset, dag Extend, dag address,
5013                            RegisterClass TPR, ValueType sty> {
5014   def : Pat<(sty (load address)), (LOAD Base, Offset, Extend)>;
5015   def : Pat<(store (sty TPR:$Rt), address),
5016             (STORE TPR:$Rt, Base, Offset, Extend)>;
5017 }
5018
5019 multiclass ro_int_neutral_pats<Instruction LOAD, Instruction STORE,
5020                                dag Base, dag Offset, dag Extend, dag address,
5021                                RegisterClass TPR, ValueType sty>
5022   : ro_neutral_pats<LOAD, STORE, Base, Offset, Extend, address, TPR, sty>,
5023     ro_atomic_pats<LOAD, STORE, Base, Offset, Extend, address, TPR, sty>;
5024
5025 multiclass regoff_pats<string Rm, dag address, dag Base, dag Offset,
5026                        dag Extend> {
5027   defm : ro_small_pats<!cast<Instruction>("LS8_" # Rm # "_RegOffset_LDR"),
5028                        !cast<Instruction>("LS8_" # Rm # "_RegOffset_STR"),
5029                        Base, Offset, Extend,
5030                        !foreach(decls.pattern, address,
5031                                 !subst(SHIFT, imm_eq0, decls.pattern)),
5032                        i8>;
5033   defm : ro_small_pats<!cast<Instruction>("LS16_" # Rm # "_RegOffset_LDR"),
5034                        !cast<Instruction>("LS16_" # Rm # "_RegOffset_STR"),
5035                        Base, Offset, Extend,
5036                        !foreach(decls.pattern, address,
5037                                 !subst(SHIFT, imm_eq1, decls.pattern)),
5038                        i16>;
5039   defm : ro_small_pats<!cast<Instruction>("LS32_" # Rm # "_RegOffset_LDR"),
5040                        !cast<Instruction>("LS32_" # Rm # "_RegOffset_STR"),
5041                        Base, Offset, Extend,
5042                        !foreach(decls.pattern, address,
5043                                 !subst(SHIFT, imm_eq2, decls.pattern)),
5044                        i32>;
5045
5046   defm : ro_int_neutral_pats<
5047                             !cast<Instruction>("LS32_" # Rm # "_RegOffset_LDR"),
5048                             !cast<Instruction>("LS32_" # Rm # "_RegOffset_STR"),
5049                             Base, Offset, Extend,
5050                             !foreach(decls.pattern, address,
5051                                      !subst(SHIFT, imm_eq2, decls.pattern)),
5052                             GPR32, i32>;
5053
5054   defm : ro_int_neutral_pats<
5055                             !cast<Instruction>("LS64_" # Rm # "_RegOffset_LDR"),
5056                             !cast<Instruction>("LS64_" # Rm # "_RegOffset_STR"),
5057                             Base, Offset, Extend,
5058                             !foreach(decls.pattern, address,
5059                                      !subst(SHIFT, imm_eq3, decls.pattern)),
5060                             GPR64, i64>;
5061
5062   defm : ro_neutral_pats<!cast<Instruction>("LSFP16_" # Rm # "_RegOffset_LDR"),
5063                          !cast<Instruction>("LSFP16_" # Rm # "_RegOffset_STR"),
5064                          Base, Offset, Extend,
5065                          !foreach(decls.pattern, address,
5066                                   !subst(SHIFT, imm_eq1, decls.pattern)),
5067                          FPR16, f16>;
5068
5069   defm : ro_neutral_pats<!cast<Instruction>("LSFP32_" # Rm # "_RegOffset_LDR"),
5070                          !cast<Instruction>("LSFP32_" # Rm # "_RegOffset_STR"),
5071                          Base, Offset, Extend,
5072                          !foreach(decls.pattern, address,
5073                                   !subst(SHIFT, imm_eq2, decls.pattern)),
5074                          FPR32, f32>;
5075
5076   defm : ro_neutral_pats<!cast<Instruction>("LSFP64_" # Rm # "_RegOffset_LDR"),
5077                          !cast<Instruction>("LSFP64_" # Rm # "_RegOffset_STR"),
5078                          Base, Offset, Extend,
5079                          !foreach(decls.pattern, address,
5080                                   !subst(SHIFT, imm_eq3, decls.pattern)),
5081                          FPR64, f64>;
5082
5083   defm : ro_neutral_pats<!cast<Instruction>("LSFP128_" # Rm # "_RegOffset_LDR"),
5084                          !cast<Instruction>("LSFP128_" # Rm # "_RegOffset_STR"),
5085                          Base, Offset, Extend,
5086                          !foreach(decls.pattern, address,
5087                                   !subst(SHIFT, imm_eq4, decls.pattern)),
5088                          FPR128, f128>;
5089
5090   defm : ro_signed_pats<"B", Rm, Base, Offset, Extend,
5091                           !foreach(decls.pattern, address,
5092                                    !subst(SHIFT, imm_eq0, decls.pattern)),
5093                           i8>;
5094
5095   defm : ro_signed_pats<"H", Rm, Base, Offset, Extend,
5096                           !foreach(decls.pattern, address,
5097                                    !subst(SHIFT, imm_eq1, decls.pattern)),
5098                           i16>;
5099
5100   def : Pat<(sextloadi32 !foreach(decls.pattern, address,
5101                                   !subst(SHIFT, imm_eq2, decls.pattern))),
5102             (!cast<Instruction>("LDRSWx_" # Rm # "_RegOffset")
5103               Base, Offset, Extend)>;
5104 }
5105
5106
5107 // Finally we're in a position to tell LLVM exactly what addresses are reachable
5108 // using register-offset instructions. Essentially a base plus a possibly
5109 // extended, possibly shifted (by access size) offset.
5110
5111 defm : regoff_pats<"Wm", (add GPR64xsp:$Rn, (sext GPR32:$Rm)),
5112                    (i64 GPR64xsp:$Rn), (i32 GPR32:$Rm), (i64 6)>;
5113
5114 defm : regoff_pats<"Wm", (add GPR64xsp:$Rn, (shl (sext GPR32:$Rm), SHIFT)),
5115                    (i64 GPR64xsp:$Rn), (i32 GPR32:$Rm), (i64 7)>;
5116
5117 defm : regoff_pats<"Wm", (add GPR64xsp:$Rn, (zext GPR32:$Rm)),
5118                    (i64 GPR64xsp:$Rn), (i32 GPR32:$Rm), (i64 2)>;
5119
5120 defm : regoff_pats<"Wm", (add GPR64xsp:$Rn, (shl (zext GPR32:$Rm), SHIFT)),
5121                    (i64 GPR64xsp:$Rn), (i32 GPR32:$Rm), (i64 3)>;
5122
5123 defm : regoff_pats<"Xm", (add GPR64xsp:$Rn, GPR64:$Rm),
5124                    (i64 GPR64xsp:$Rn), (i64 GPR64:$Rm), (i64 2)>;
5125
5126 defm : regoff_pats<"Xm", (add GPR64xsp:$Rn, (shl GPR64:$Rm, SHIFT)),
5127                    (i64 GPR64xsp:$Rn), (i64 GPR64:$Rm), (i64 3)>;