[PowerPC] Generate Power9 extswsli extend sign and shift immediate instruction
[llvm-core.git] / lib / Target / PowerPC / PPCInstr64Bit.td
blobb533efd0ffa4433f253575eaf48cdc3bea91e5f0
1 //===-- PPCInstr64Bit.td - The PowerPC 64-bit Support ------*- 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 PowerPC 64-bit instructions.  These patterns are used
11 // both when in ppc64 mode and when in "use 64-bit extensions in 32-bit" mode.
13 //===----------------------------------------------------------------------===//
15 //===----------------------------------------------------------------------===//
16 // 64-bit operands.
18 def s16imm64 : Operand<i64> {
19   let PrintMethod = "printS16ImmOperand";
20   let EncoderMethod = "getImm16Encoding";
21   let ParserMatchClass = PPCS16ImmAsmOperand;
22   let DecoderMethod = "decodeSImmOperand<16>";
24 def u16imm64 : Operand<i64> {
25   let PrintMethod = "printU16ImmOperand";
26   let EncoderMethod = "getImm16Encoding";
27   let ParserMatchClass = PPCU16ImmAsmOperand;
28   let DecoderMethod = "decodeUImmOperand<16>";
30 def s17imm64 : Operand<i64> {
31   // This operand type is used for addis/lis to allow the assembler parser
32   // to accept immediates in the range -65536..65535 for compatibility with
33   // the GNU assembler.  The operand is treated as 16-bit otherwise.
34   let PrintMethod = "printS16ImmOperand";
35   let EncoderMethod = "getImm16Encoding";
36   let ParserMatchClass = PPCS17ImmAsmOperand;
37   let DecoderMethod = "decodeSImmOperand<16>";
39 def tocentry : Operand<iPTR> {
40   let MIOperandInfo = (ops i64imm:$imm);
42 def tlsreg : Operand<i64> {
43   let EncoderMethod = "getTLSRegEncoding";
44   let ParserMatchClass = PPCTLSRegOperand;
46 def tlsgd : Operand<i64> {}
47 def tlscall : Operand<i64> {
48   let PrintMethod = "printTLSCall";
49   let MIOperandInfo = (ops calltarget:$func, tlsgd:$sym);
50   let EncoderMethod = "getTLSCallEncoding";
53 //===----------------------------------------------------------------------===//
54 // 64-bit transformation functions.
57 def SHL64 : SDNodeXForm<imm, [{
58   // Transformation function: 63 - imm
59   return getI32Imm(63 - N->getZExtValue(), SDLoc(N));
60 }]>;
62 def SRL64 : SDNodeXForm<imm, [{
63   // Transformation function: 64 - imm
64   return N->getZExtValue() ? getI32Imm(64 - N->getZExtValue(), SDLoc(N))
65                            : getI32Imm(0, SDLoc(N));
66 }]>;
69 //===----------------------------------------------------------------------===//
70 // Calls.
73 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
74 let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
75   let isReturn = 1, Uses = [LR8, RM] in
76     def BLR8 : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", IIC_BrB,
77                             [(retflag)]>, Requires<[In64BitMode]>;
78   let isBranch = 1, isIndirectBranch = 1, Uses = [CTR8] in {
79     def BCTR8 : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB,
80                              []>,
81         Requires<[In64BitMode]>;
82     def BCCCTR8 : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
83                               "b${cond:cc}ctr${cond:pm} ${cond:reg}", IIC_BrB,
84                               []>,
85         Requires<[In64BitMode]>;
87     def BCCTR8  : XLForm_2_br2<19, 528, 12, 0, (outs), (ins crbitrc:$bi),
88                                "bcctr 12, $bi, 0", IIC_BrB, []>,
89         Requires<[In64BitMode]>;
90     def BCCTR8n : XLForm_2_br2<19, 528, 4, 0, (outs), (ins crbitrc:$bi),
91                                "bcctr 4, $bi, 0", IIC_BrB, []>,
92         Requires<[In64BitMode]>;
93   }
96 let Defs = [LR8] in
97   def MovePCtoLR8 : Pseudo<(outs), (ins), "#MovePCtoLR8", []>,
98                     PPC970_Unit_BRU;
100 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
101   let Defs = [CTR8], Uses = [CTR8] in {
102     def BDZ8  : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
103                         "bdz $dst">;
104     def BDNZ8 : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
105                         "bdnz $dst">;
106   }
108   let isReturn = 1, Defs = [CTR8], Uses = [CTR8, LR8, RM] in {
109     def BDZLR8  : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
110                               "bdzlr", IIC_BrB, []>;
111     def BDNZLR8 : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
112                               "bdnzlr", IIC_BrB, []>;
113   }
118 let isCall = 1, PPC970_Unit = 7, Defs = [LR8] in {
119   // Convenient aliases for call instructions
120   let Uses = [RM] in {
121     def BL8  : IForm<18, 0, 1, (outs), (ins calltarget:$func),
122                      "bl $func", IIC_BrB, []>;  // See Pat patterns below.
124     def BL8_TLS  : IForm<18, 0, 1, (outs), (ins tlscall:$func),
125                          "bl $func", IIC_BrB, []>;
127     def BLA8 : IForm<18, 1, 1, (outs), (ins abscalltarget:$func),
128                      "bla $func", IIC_BrB, [(PPCcall (i64 imm:$func))]>;
129   }
130   let Uses = [RM], isCodeGenOnly = 1 in {
131     def BL8_NOP  : IForm_and_DForm_4_zero<18, 0, 1, 24,
132                              (outs), (ins calltarget:$func),
133                              "bl $func\n\tnop", IIC_BrB, []>;
135     def BL8_NOP_TLS : IForm_and_DForm_4_zero<18, 0, 1, 24,
136                                   (outs), (ins tlscall:$func),
137                                   "bl $func\n\tnop", IIC_BrB, []>;
139     def BLA8_NOP : IForm_and_DForm_4_zero<18, 1, 1, 24,
140                              (outs), (ins abscalltarget:$func),
141                              "bla $func\n\tnop", IIC_BrB,
142                              [(PPCcall_nop (i64 imm:$func))]>;
143   }
144   let Uses = [CTR8, RM] in {
145     def BCTRL8 : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
146                               "bctrl", IIC_BrB, [(PPCbctrl)]>,
147                  Requires<[In64BitMode]>;
149     let isCodeGenOnly = 1 in {
150       def BCCCTRL8 : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
151                                  "b${cond:cc}ctrl${cond:pm} ${cond:reg}", IIC_BrB,
152                                  []>,
153           Requires<[In64BitMode]>;
155       def BCCTRL8  : XLForm_2_br2<19, 528, 12, 1, (outs), (ins crbitrc:$bi),
156                                   "bcctrl 12, $bi, 0", IIC_BrB, []>,
157           Requires<[In64BitMode]>;
158       def BCCTRL8n : XLForm_2_br2<19, 528, 4, 1, (outs), (ins crbitrc:$bi),
159                                   "bcctrl 4, $bi, 0", IIC_BrB, []>,
160           Requires<[In64BitMode]>;
161     }
162   }
165 let isCall = 1, PPC970_Unit = 7, isCodeGenOnly = 1,
166     Defs = [LR8, X2], Uses = [CTR8, RM], RST = 2 in {
167   def BCTRL8_LDinto_toc :
168     XLForm_2_ext_and_DSForm_1<19, 528, 20, 0, 1, 58, 0, (outs),
169                               (ins memrix:$src),
170                               "bctrl\n\tld 2, $src", IIC_BrB,
171                               [(PPCbctrl_load_toc ixaddr:$src)]>,
172     Requires<[In64BitMode]>;
175 } // Interpretation64Bit
177 // FIXME: Duplicating this for the asm parser should be unnecessary, but the
178 // previous definition must be marked as CodeGen only to prevent decoding
179 // conflicts.
180 let Interpretation64Bit = 1, isAsmParserOnly = 1 in
181 let isCall = 1, PPC970_Unit = 7, Defs = [LR8], Uses = [RM] in
182 def BL8_TLS_ : IForm<18, 0, 1, (outs), (ins tlscall:$func),
183                      "bl $func", IIC_BrB, []>;
185 // Calls
186 def : Pat<(PPCcall (i64 tglobaladdr:$dst)),
187           (BL8 tglobaladdr:$dst)>;
188 def : Pat<(PPCcall_nop (i64 tglobaladdr:$dst)),
189           (BL8_NOP tglobaladdr:$dst)>;
191 def : Pat<(PPCcall (i64 texternalsym:$dst)),
192           (BL8 texternalsym:$dst)>;
193 def : Pat<(PPCcall_nop (i64 texternalsym:$dst)),
194           (BL8_NOP texternalsym:$dst)>;
196 // Atomic operations
197 // FIXME: some of these might be used with constant operands. This will result
198 // in constant materialization instructions that may be redundant. We currently
199 // clean this up in PPCMIPeephole with calls to
200 // PPCInstrInfo::convertToImmediateForm() but we should probably not emit them
201 // in the first place.
202 let usesCustomInserter = 1 in {
203   let Defs = [CR0] in {
204     def ATOMIC_LOAD_ADD_I64 : Pseudo<
205       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_ADD_I64",
206       [(set i64:$dst, (atomic_load_add_64 xoaddr:$ptr, i64:$incr))]>;
207     def ATOMIC_LOAD_SUB_I64 : Pseudo<
208       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_SUB_I64",
209       [(set i64:$dst, (atomic_load_sub_64 xoaddr:$ptr, i64:$incr))]>;
210     def ATOMIC_LOAD_OR_I64 : Pseudo<
211       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_OR_I64",
212       [(set i64:$dst, (atomic_load_or_64 xoaddr:$ptr, i64:$incr))]>;
213     def ATOMIC_LOAD_XOR_I64 : Pseudo<
214       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_XOR_I64",
215       [(set i64:$dst, (atomic_load_xor_64 xoaddr:$ptr, i64:$incr))]>;
216     def ATOMIC_LOAD_AND_I64 : Pseudo<
217       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_AND_i64",
218       [(set i64:$dst, (atomic_load_and_64 xoaddr:$ptr, i64:$incr))]>;
219     def ATOMIC_LOAD_NAND_I64 : Pseudo<
220       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_NAND_I64",
221       [(set i64:$dst, (atomic_load_nand_64 xoaddr:$ptr, i64:$incr))]>;
222     def ATOMIC_LOAD_MIN_I64 : Pseudo<
223       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_MIN_I64",
224       [(set i64:$dst, (atomic_load_min_64 xoaddr:$ptr, i64:$incr))]>;
225     def ATOMIC_LOAD_MAX_I64 : Pseudo<
226       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_MAX_I64",
227       [(set i64:$dst, (atomic_load_max_64 xoaddr:$ptr, i64:$incr))]>;
228     def ATOMIC_LOAD_UMIN_I64 : Pseudo<
229       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_UMIN_I64",
230       [(set i64:$dst, (atomic_load_umin_64 xoaddr:$ptr, i64:$incr))]>;
231     def ATOMIC_LOAD_UMAX_I64 : Pseudo<
232       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$incr), "#ATOMIC_LOAD_UMAX_I64",
233       [(set i64:$dst, (atomic_load_umax_64 xoaddr:$ptr, i64:$incr))]>;
235     def ATOMIC_CMP_SWAP_I64 : Pseudo<
236       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$old, g8rc:$new), "#ATOMIC_CMP_SWAP_I64",
237       [(set i64:$dst, (atomic_cmp_swap_64 xoaddr:$ptr, i64:$old, i64:$new))]>;
239     def ATOMIC_SWAP_I64 : Pseudo<
240       (outs g8rc:$dst), (ins memrr:$ptr, g8rc:$new), "#ATOMIC_SWAP_I64",
241       [(set i64:$dst, (atomic_swap_64 xoaddr:$ptr, i64:$new))]>;
242   }
245 // Instructions to support atomic operations
246 let mayLoad = 1, hasSideEffects = 0 in {
247 def LDARX : XForm_1_memOp<31,  84, (outs g8rc:$rD), (ins memrr:$ptr),
248                           "ldarx $rD, $ptr", IIC_LdStLDARX, []>;
250 // Instruction to support lock versions of atomics
251 // (EH=1 - see Power ISA 2.07 Book II 4.4.2)
252 def LDARXL : XForm_1<31,  84, (outs g8rc:$rD), (ins memrr:$ptr),
253                      "ldarx $rD, $ptr, 1", IIC_LdStLDARX, []>, isDOT;
255 let hasExtraDefRegAllocReq = 1 in
256 def LDAT : X_RD5_RS5_IM5<31, 614, (outs g8rc:$rD), (ins g8rc:$rA, u5imm:$FC),
257                          "ldat $rD, $rA, $FC", IIC_LdStLoad>, isPPC64,
258            Requires<[IsISA3_0]>;
261 let Defs = [CR0], mayStore = 1, mayLoad = 0, hasSideEffects = 0 in
262 def STDCX : XForm_1_memOp<31, 214, (outs), (ins g8rc:$rS, memrr:$dst),
263                           "stdcx. $rS, $dst", IIC_LdStSTDCX, []>, isDOT;
265 let mayStore = 1, mayLoad = 0, hasSideEffects = 0 in
266 def STDAT : X_RD5_RS5_IM5<31, 742, (outs), (ins g8rc:$rS, g8rc:$rA, u5imm:$FC),
267                           "stdat $rS, $rA, $FC", IIC_LdStStore>, isPPC64,
268             Requires<[IsISA3_0]>;
270 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
271 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
272 def TCRETURNdi8 :Pseudo< (outs),
273                         (ins calltarget:$dst, i32imm:$offset),
274                  "#TC_RETURNd8 $dst $offset",
275                  []>;
277 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
278 def TCRETURNai8 :Pseudo<(outs), (ins abscalltarget:$func, i32imm:$offset),
279                  "#TC_RETURNa8 $func $offset",
280                  [(PPCtc_return (i64 imm:$func), imm:$offset)]>;
282 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
283 def TCRETURNri8 : Pseudo<(outs), (ins CTRRC8:$dst, i32imm:$offset),
284                  "#TC_RETURNr8 $dst $offset",
285                  []>;
287 let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
288     isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR8, RM] in
289 def TAILBCTR8 : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB,
290                              []>,
291     Requires<[In64BitMode]>;
293 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
294     isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
295 def TAILB8   : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
296                   "b $dst", IIC_BrB,
297                   []>;
299 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
300     isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
301 def TAILBA8   : IForm<18, 0, 0, (outs), (ins abscalltarget:$dst),
302                   "ba $dst", IIC_BrB,
303                   []>;
304 } // Interpretation64Bit
306 def : Pat<(PPCtc_return (i64 tglobaladdr:$dst),  imm:$imm),
307           (TCRETURNdi8 tglobaladdr:$dst, imm:$imm)>;
309 def : Pat<(PPCtc_return (i64 texternalsym:$dst), imm:$imm),
310           (TCRETURNdi8 texternalsym:$dst, imm:$imm)>;
312 def : Pat<(PPCtc_return CTRRC8:$dst, imm:$imm),
313           (TCRETURNri8 CTRRC8:$dst, imm:$imm)>;
316 // 64-bit CR instructions
317 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
318 let hasSideEffects = 0 in {
319 // mtocrf's input needs to be prepared by shifting by an amount dependent
320 // on the cr register selected. Thus, post-ra anti-dep breaking must not
321 // later change that register assignment.
322 let hasExtraDefRegAllocReq = 1 in {
323 def MTOCRF8: XFXForm_5a<31, 144, (outs crbitm:$FXM), (ins g8rc:$ST),
324                         "mtocrf $FXM, $ST", IIC_BrMCRX>,
325             PPC970_DGroup_First, PPC970_Unit_CRU;
327 // Similarly to mtocrf, the mask for mtcrf must be prepared in a way that
328 // is dependent on the cr fields being set.
329 def MTCRF8 : XFXForm_5<31, 144, (outs), (ins i32imm:$FXM, g8rc:$rS),
330                       "mtcrf $FXM, $rS", IIC_BrMCRX>,
331             PPC970_MicroCode, PPC970_Unit_CRU;
332 } // hasExtraDefRegAllocReq = 1
334 // mfocrf's input needs to be prepared by shifting by an amount dependent
335 // on the cr register selected. Thus, post-ra anti-dep breaking must not
336 // later change that register assignment.
337 let hasExtraSrcRegAllocReq = 1 in {
338 def MFOCRF8: XFXForm_5a<31, 19, (outs g8rc:$rT), (ins crbitm:$FXM),
339                         "mfocrf $rT, $FXM", IIC_SprMFCRF>,
340              PPC970_DGroup_First, PPC970_Unit_CRU;
342 // Similarly to mfocrf, the mask for mfcrf must be prepared in a way that
343 // is dependent on the cr fields being copied.
344 def MFCR8 : XFXForm_3<31, 19, (outs g8rc:$rT), (ins),
345                      "mfcr $rT", IIC_SprMFCR>,
346                      PPC970_MicroCode, PPC970_Unit_CRU;
347 } // hasExtraSrcRegAllocReq = 1
348 } // hasSideEffects = 0
350 let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
351   let Defs = [CTR8] in
352   def EH_SjLj_SetJmp64  : Pseudo<(outs gprc:$dst), (ins memr:$buf),
353                             "#EH_SJLJ_SETJMP64",
354                             [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
355                           Requires<[In64BitMode]>;
356   let isTerminator = 1 in
357   def EH_SjLj_LongJmp64 : Pseudo<(outs), (ins memr:$buf),
358                             "#EH_SJLJ_LONGJMP64",
359                             [(PPCeh_sjlj_longjmp addr:$buf)]>,
360                           Requires<[In64BitMode]>;
363 def MFSPR8 : XFXForm_1<31, 339, (outs g8rc:$RT), (ins i32imm:$SPR),
364                        "mfspr $RT, $SPR", IIC_SprMFSPR>;
365 def MTSPR8 : XFXForm_1<31, 467, (outs), (ins i32imm:$SPR, g8rc:$RT),
366                        "mtspr $SPR, $RT", IIC_SprMTSPR>;
369 //===----------------------------------------------------------------------===//
370 // 64-bit SPR manipulation instrs.
372 let Uses = [CTR8] in {
373 def MFCTR8 : XFXForm_1_ext<31, 339, 9, (outs g8rc:$rT), (ins),
374                            "mfctr $rT", IIC_SprMFSPR>,
375              PPC970_DGroup_First, PPC970_Unit_FXU;
377 let Pattern = [(PPCmtctr i64:$rS)], Defs = [CTR8] in {
378 def MTCTR8 : XFXForm_7_ext<31, 467, 9, (outs), (ins g8rc:$rS),
379                            "mtctr $rS", IIC_SprMTSPR>,
380              PPC970_DGroup_First, PPC970_Unit_FXU;
382 let hasSideEffects = 1, Defs = [CTR8] in {
383 let Pattern = [(int_ppc_mtctr i64:$rS)] in
384 def MTCTR8loop : XFXForm_7_ext<31, 467, 9, (outs), (ins g8rc:$rS),
385                                "mtctr $rS", IIC_SprMTSPR>,
386                  PPC970_DGroup_First, PPC970_Unit_FXU;
389 let Pattern = [(set i64:$rT, readcyclecounter)] in
390 def MFTB8 : XFXForm_1_ext<31, 339, 268, (outs g8rc:$rT), (ins),
391                           "mfspr $rT, 268", IIC_SprMFTB>,
392             PPC970_DGroup_First, PPC970_Unit_FXU;
393 // Note that encoding mftb using mfspr is now the preferred form,
394 // and has been since at least ISA v2.03. The mftb instruction has
395 // now been phased out. Using mfspr, however, is known not to work on
396 // the POWER3.
398 let Defs = [X1], Uses = [X1] in
399 def DYNALLOC8 : Pseudo<(outs g8rc:$result), (ins g8rc:$negsize, memri:$fpsi),"#DYNALLOC8",
400                        [(set i64:$result,
401                              (PPCdynalloc i64:$negsize, iaddr:$fpsi))]>;
402 def DYNAREAOFFSET8 : Pseudo<(outs i64imm:$result), (ins memri:$fpsi), "#DYNAREAOFFSET8",
403                        [(set i64:$result, (PPCdynareaoffset iaddr:$fpsi))]>;
405 let Defs = [LR8] in {
406 def MTLR8  : XFXForm_7_ext<31, 467, 8, (outs), (ins g8rc:$rS),
407                            "mtlr $rS", IIC_SprMTSPR>,
408              PPC970_DGroup_First, PPC970_Unit_FXU;
410 let Uses = [LR8] in {
411 def MFLR8  : XFXForm_1_ext<31, 339, 8, (outs g8rc:$rT), (ins),
412                            "mflr $rT", IIC_SprMFSPR>,
413              PPC970_DGroup_First, PPC970_Unit_FXU;
415 } // Interpretation64Bit
417 //===----------------------------------------------------------------------===//
418 // Fixed point instructions.
421 let PPC970_Unit = 1 in {  // FXU Operations.
422 let Interpretation64Bit = 1 in {
423 let hasSideEffects = 0 in {
424 let isCodeGenOnly = 1 in {
426 let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
427 def LI8  : DForm_2_r0<14, (outs g8rc:$rD), (ins s16imm64:$imm),
428                       "li $rD, $imm", IIC_IntSimple,
429                       [(set i64:$rD, imm64SExt16:$imm)]>;
430 def LIS8 : DForm_2_r0<15, (outs g8rc:$rD), (ins s17imm64:$imm),
431                       "lis $rD, $imm", IIC_IntSimple,
432                       [(set i64:$rD, imm16ShiftedSExt:$imm)]>;
435 // Logical ops.
436 let isCommutable = 1 in {
437 defm NAND8: XForm_6r<31, 476, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
438                      "nand", "$rA, $rS, $rB", IIC_IntSimple,
439                      [(set i64:$rA, (not (and i64:$rS, i64:$rB)))]>;
440 defm AND8 : XForm_6r<31,  28, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
441                      "and", "$rA, $rS, $rB", IIC_IntSimple,
442                      [(set i64:$rA, (and i64:$rS, i64:$rB))]>;
443 } // isCommutable
444 defm ANDC8: XForm_6r<31,  60, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
445                      "andc", "$rA, $rS, $rB", IIC_IntSimple,
446                      [(set i64:$rA, (and i64:$rS, (not i64:$rB)))]>;
447 let isCommutable = 1 in {
448 defm OR8  : XForm_6r<31, 444, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
449                      "or", "$rA, $rS, $rB", IIC_IntSimple,
450                      [(set i64:$rA, (or i64:$rS, i64:$rB))]>;
451 defm NOR8 : XForm_6r<31, 124, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
452                      "nor", "$rA, $rS, $rB", IIC_IntSimple,
453                      [(set i64:$rA, (not (or i64:$rS, i64:$rB)))]>;
454 } // isCommutable
455 defm ORC8 : XForm_6r<31, 412, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
456                      "orc", "$rA, $rS, $rB", IIC_IntSimple,
457                      [(set i64:$rA, (or i64:$rS, (not i64:$rB)))]>;
458 let isCommutable = 1 in {
459 defm EQV8 : XForm_6r<31, 284, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
460                      "eqv", "$rA, $rS, $rB", IIC_IntSimple,
461                      [(set i64:$rA, (not (xor i64:$rS, i64:$rB)))]>;
462 defm XOR8 : XForm_6r<31, 316, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
463                      "xor", "$rA, $rS, $rB", IIC_IntSimple,
464                      [(set i64:$rA, (xor i64:$rS, i64:$rB))]>;
465 } // let isCommutable = 1
467 // Logical ops with immediate.
468 let Defs = [CR0] in {
469 def ANDIo8  : DForm_4<28, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
470                       "andi. $dst, $src1, $src2", IIC_IntGeneral,
471                       [(set i64:$dst, (and i64:$src1, immZExt16:$src2))]>,
472                       isDOT;
473 def ANDISo8 : DForm_4<29, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
474                      "andis. $dst, $src1, $src2", IIC_IntGeneral,
475                     [(set i64:$dst, (and i64:$src1, imm16ShiftedZExt:$src2))]>,
476                      isDOT;
478 def ORI8    : DForm_4<24, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
479                       "ori $dst, $src1, $src2", IIC_IntSimple,
480                       [(set i64:$dst, (or i64:$src1, immZExt16:$src2))]>;
481 def ORIS8   : DForm_4<25, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
482                       "oris $dst, $src1, $src2", IIC_IntSimple,
483                     [(set i64:$dst, (or i64:$src1, imm16ShiftedZExt:$src2))]>;
484 def XORI8   : DForm_4<26, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
485                       "xori $dst, $src1, $src2", IIC_IntSimple,
486                       [(set i64:$dst, (xor i64:$src1, immZExt16:$src2))]>;
487 def XORIS8  : DForm_4<27, (outs g8rc:$dst), (ins g8rc:$src1, u16imm64:$src2),
488                       "xoris $dst, $src1, $src2", IIC_IntSimple,
489                    [(set i64:$dst, (xor i64:$src1, imm16ShiftedZExt:$src2))]>;
491 let isCommutable = 1 in
492 defm ADD8  : XOForm_1r<31, 266, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
493                        "add", "$rT, $rA, $rB", IIC_IntSimple,
494                        [(set i64:$rT, (add i64:$rA, i64:$rB))]>;
495 // ADD8 has a special form: reg = ADD8(reg, sym@tls) for use by the
496 // initial-exec thread-local storage model.  We need to forbid r0 here -
497 // while it works for add just fine, the linker can relax this to local-exec
498 // addi, which won't work for r0.
499 def ADD8TLS  : XOForm_1<31, 266, 0, (outs g8rc:$rT), (ins g8rc_nox0:$rA, tlsreg:$rB),
500                         "add $rT, $rA, $rB", IIC_IntSimple,
501                         [(set i64:$rT, (add i64:$rA, tglobaltlsaddr:$rB))]>;
502 let mayLoad = 1 in {
503 def LBZXTLS : XForm_1<31,  87, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
504                       "lbzx $rD, $rA, $rB", IIC_LdStLoad, []>;
505 def LHZXTLS : XForm_1<31, 279, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
506                       "lhzx $rD, $rA, $rB", IIC_LdStLoad, []>;
507 def LWZXTLS : XForm_1<31,  23, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
508                       "lwzx $rD, $rA, $rB", IIC_LdStLoad, []>;
509 def LDXTLS  : XForm_1<31,  21, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
510                       "ldx $rD, $rA, $rB", IIC_LdStLD, []>, isPPC64;
511 def LBZXTLS_32 : XForm_1<31,  87, (outs gprc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
512                          "lbzx $rD, $rA, $rB", IIC_LdStLoad, []>;
513 def LHZXTLS_32 : XForm_1<31, 279, (outs gprc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
514                          "lhzx $rD, $rA, $rB", IIC_LdStLoad, []>;
515 def LWZXTLS_32 : XForm_1<31,  23, (outs gprc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
516                          "lwzx $rD, $rA, $rB", IIC_LdStLoad, []>;
520 let mayStore = 1 in {
521 def STBXTLS : XForm_8<31, 215, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
522                       "stbx $rS, $rA, $rB", IIC_LdStStore, []>,
523                       PPC970_DGroup_Cracked;
524 def STHXTLS : XForm_8<31, 407, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
525                       "sthx $rS, $rA, $rB", IIC_LdStStore, []>,
526                       PPC970_DGroup_Cracked;
527 def STWXTLS : XForm_8<31, 151, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
528                       "stwx $rS, $rA, $rB", IIC_LdStStore, []>,
529                       PPC970_DGroup_Cracked;
530 def STDXTLS  : XForm_8<31, 149, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
531                        "stdx $rS, $rA, $rB", IIC_LdStSTD, []>, isPPC64,
532                        PPC970_DGroup_Cracked;
533 def STBXTLS_32 : XForm_8<31, 215, (outs), (ins gprc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
534                          "stbx $rS, $rA, $rB", IIC_LdStStore, []>,
535                          PPC970_DGroup_Cracked;
536 def STHXTLS_32 : XForm_8<31, 407, (outs), (ins gprc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
537                          "sthx $rS, $rA, $rB", IIC_LdStStore, []>,
538                          PPC970_DGroup_Cracked;
539 def STWXTLS_32 : XForm_8<31, 151, (outs), (ins gprc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
540                          "stwx $rS, $rA, $rB", IIC_LdStStore, []>,
541                          PPC970_DGroup_Cracked;
545 let isCommutable = 1 in
546 defm ADDC8 : XOForm_1rc<31, 10, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
547                         "addc", "$rT, $rA, $rB", IIC_IntGeneral,
548                         [(set i64:$rT, (addc i64:$rA, i64:$rB))]>,
549                         PPC970_DGroup_Cracked;
551 let Defs = [CARRY] in
552 def ADDIC8 : DForm_2<12, (outs g8rc:$rD), (ins g8rc:$rA, s16imm64:$imm),
553                      "addic $rD, $rA, $imm", IIC_IntGeneral,
554                      [(set i64:$rD, (addc i64:$rA, imm64SExt16:$imm))]>;
555 def ADDI8  : DForm_2<14, (outs g8rc:$rD), (ins g8rc_nox0:$rA, s16imm64:$imm),
556                      "addi $rD, $rA, $imm", IIC_IntSimple,
557                      [(set i64:$rD, (add i64:$rA, imm64SExt16:$imm))]>;
558 def ADDIS8 : DForm_2<15, (outs g8rc:$rD), (ins g8rc_nox0:$rA, s17imm64:$imm),
559                      "addis $rD, $rA, $imm", IIC_IntSimple,
560                      [(set i64:$rD, (add i64:$rA, imm16ShiftedSExt:$imm))]>;
562 let Defs = [CARRY] in {
563 def SUBFIC8: DForm_2< 8, (outs g8rc:$rD), (ins g8rc:$rA, s16imm64:$imm),
564                      "subfic $rD, $rA, $imm", IIC_IntGeneral,
565                      [(set i64:$rD, (subc imm64SExt16:$imm, i64:$rA))]>;
567 defm SUBFC8 : XOForm_1rc<31, 8, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
568                         "subfc", "$rT, $rA, $rB", IIC_IntGeneral,
569                         [(set i64:$rT, (subc i64:$rB, i64:$rA))]>,
570                         PPC970_DGroup_Cracked;
571 defm SUBF8 : XOForm_1r<31, 40, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
572                        "subf", "$rT, $rA, $rB", IIC_IntGeneral,
573                        [(set i64:$rT, (sub i64:$rB, i64:$rA))]>;
574 defm NEG8    : XOForm_3r<31, 104, 0, (outs g8rc:$rT), (ins g8rc:$rA),
575                         "neg", "$rT, $rA", IIC_IntSimple,
576                         [(set i64:$rT, (ineg i64:$rA))]>;
577 let Uses = [CARRY] in {
578 let isCommutable = 1 in
579 defm ADDE8   : XOForm_1rc<31, 138, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
580                           "adde", "$rT, $rA, $rB", IIC_IntGeneral,
581                           [(set i64:$rT, (adde i64:$rA, i64:$rB))]>;
582 defm ADDME8  : XOForm_3rc<31, 234, 0, (outs g8rc:$rT), (ins g8rc:$rA),
583                           "addme", "$rT, $rA", IIC_IntGeneral,
584                           [(set i64:$rT, (adde i64:$rA, -1))]>;
585 defm ADDZE8  : XOForm_3rc<31, 202, 0, (outs g8rc:$rT), (ins g8rc:$rA),
586                           "addze", "$rT, $rA", IIC_IntGeneral,
587                           [(set i64:$rT, (adde i64:$rA, 0))]>;
588 defm SUBFE8  : XOForm_1rc<31, 136, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
589                           "subfe", "$rT, $rA, $rB", IIC_IntGeneral,
590                           [(set i64:$rT, (sube i64:$rB, i64:$rA))]>;
591 defm SUBFME8 : XOForm_3rc<31, 232, 0, (outs g8rc:$rT), (ins g8rc:$rA),
592                           "subfme", "$rT, $rA", IIC_IntGeneral,
593                           [(set i64:$rT, (sube -1, i64:$rA))]>;
594 defm SUBFZE8 : XOForm_3rc<31, 200, 0, (outs g8rc:$rT), (ins g8rc:$rA),
595                           "subfze", "$rT, $rA", IIC_IntGeneral,
596                           [(set i64:$rT, (sube 0, i64:$rA))]>;
598 } // isCodeGenOnly
600 // FIXME: Duplicating this for the asm parser should be unnecessary, but the
601 // previous definition must be marked as CodeGen only to prevent decoding
602 // conflicts.
603 let isAsmParserOnly = 1 in {
604 def ADD8TLS_ : XOForm_1<31, 266, 0, (outs g8rc:$rT), (ins g8rc:$rA, tlsreg:$rB),
605                         "add $rT, $rA, $rB", IIC_IntSimple, []>;
607 let mayLoad = 1 in {
608 def LBZXTLS_ : XForm_1<31,  87, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
609                       "lbzx $rD, $rA, $rB", IIC_LdStLoad, []>;
610 def LHZXTLS_ : XForm_1<31, 279, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
611                       "lhzx $rD, $rA, $rB", IIC_LdStLoad, []>;
612 def LWZXTLS_ : XForm_1<31,  23, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
613                       "lwzx $rD, $rA, $rB", IIC_LdStLoad, []>;
614 def LDXTLS_  : XForm_1<31,  21, (outs g8rc:$rD), (ins ptr_rc_nor0:$rA, tlsreg:$rB),
615                       "ldx $rD, $rA, $rB", IIC_LdStLD, []>, isPPC64;
618 let mayStore = 1 in {
619 def STBXTLS_ : XForm_8<31, 215, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
620                       "stbx $rS, $rA, $rB", IIC_LdStStore, []>,
621                       PPC970_DGroup_Cracked;
622 def STHXTLS_ : XForm_8<31, 407, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
623                       "sthx $rS, $rA, $rB", IIC_LdStStore, []>,
624                       PPC970_DGroup_Cracked;
625 def STWXTLS_ : XForm_8<31, 151, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
626                       "stwx $rS, $rA, $rB", IIC_LdStStore, []>,
627                       PPC970_DGroup_Cracked;
628 def STDXTLS_  : XForm_8<31, 149, (outs), (ins g8rc:$rS, ptr_rc_nor0:$rA, tlsreg:$rB),
629                        "stdx $rS, $rA, $rB", IIC_LdStSTD, []>, isPPC64,
630                        PPC970_DGroup_Cracked;
634 let isCommutable = 1 in {
635 defm MULHD : XOForm_1r<31, 73, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
636                        "mulhd", "$rT, $rA, $rB", IIC_IntMulHW,
637                        [(set i64:$rT, (mulhs i64:$rA, i64:$rB))]>;
638 defm MULHDU : XOForm_1r<31, 9, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
639                        "mulhdu", "$rT, $rA, $rB", IIC_IntMulHWU,
640                        [(set i64:$rT, (mulhu i64:$rA, i64:$rB))]>;
641 } // isCommutable
643 } // Interpretation64Bit
645 let isCompare = 1, hasSideEffects = 0 in {
646   def CMPD   : XForm_16_ext<31, 0, (outs crrc:$crD), (ins g8rc:$rA, g8rc:$rB),
647                             "cmpd $crD, $rA, $rB", IIC_IntCompare>, isPPC64;
648   def CMPLD  : XForm_16_ext<31, 32, (outs crrc:$crD), (ins g8rc:$rA, g8rc:$rB),
649                             "cmpld $crD, $rA, $rB", IIC_IntCompare>, isPPC64;
650   def CMPDI  : DForm_5_ext<11, (outs crrc:$crD), (ins g8rc:$rA, s16imm64:$imm),
651                            "cmpdi $crD, $rA, $imm", IIC_IntCompare>, isPPC64;
652   def CMPLDI : DForm_6_ext<10, (outs crrc:$dst), (ins g8rc:$src1, u16imm64:$src2),
653                            "cmpldi $dst, $src1, $src2",
654                            IIC_IntCompare>, isPPC64;
655   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
656   def CMPRB8 : X_BF3_L1_RS5_RS5<31, 192, (outs crbitrc:$BF),
657                                 (ins u1imm:$L, g8rc:$rA, g8rc:$rB),
658                                 "cmprb $BF, $L, $rA, $rB", IIC_IntCompare, []>,
659                Requires<[IsISA3_0]>;
660   def CMPEQB : X_BF3_RS5_RS5<31, 224, (outs crbitrc:$BF),
661                              (ins g8rc:$rA, g8rc:$rB), "cmpeqb $BF, $rA, $rB",
662                              IIC_IntCompare, []>, Requires<[IsISA3_0]>;
665 let hasSideEffects = 0 in {
666 defm SLD  : XForm_6r<31,  27, (outs g8rc:$rA), (ins g8rc:$rS, gprc:$rB),
667                      "sld", "$rA, $rS, $rB", IIC_IntRotateD,
668                      [(set i64:$rA, (PPCshl i64:$rS, i32:$rB))]>, isPPC64;
669 defm SRD  : XForm_6r<31, 539, (outs g8rc:$rA), (ins g8rc:$rS, gprc:$rB),
670                      "srd", "$rA, $rS, $rB", IIC_IntRotateD,
671                      [(set i64:$rA, (PPCsrl i64:$rS, i32:$rB))]>, isPPC64;
672 defm SRAD : XForm_6rc<31, 794, (outs g8rc:$rA), (ins g8rc:$rS, gprc:$rB),
673                       "srad", "$rA, $rS, $rB", IIC_IntRotateD,
674                       [(set i64:$rA, (PPCsra i64:$rS, i32:$rB))]>, isPPC64;
676 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
677 defm CNTLZW8 : XForm_11r<31,  26, (outs g8rc:$rA), (ins g8rc:$rS),
678                         "cntlzw", "$rA, $rS", IIC_IntGeneral, []>;
679 defm CNTTZW8 : XForm_11r<31, 538, (outs g8rc:$rA), (ins g8rc:$rS),
680                         "cnttzw", "$rA, $rS", IIC_IntGeneral, []>,
681                Requires<[IsISA3_0]>;
683 defm EXTSB8 : XForm_11r<31, 954, (outs g8rc:$rA), (ins g8rc:$rS),
684                         "extsb", "$rA, $rS", IIC_IntSimple,
685                         [(set i64:$rA, (sext_inreg i64:$rS, i8))]>;
686 defm EXTSH8 : XForm_11r<31, 922, (outs g8rc:$rA), (ins g8rc:$rS),
687                         "extsh", "$rA, $rS", IIC_IntSimple,
688                         [(set i64:$rA, (sext_inreg i64:$rS, i16))]>;
690 defm SLW8  : XForm_6r<31,  24, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
691                       "slw", "$rA, $rS, $rB", IIC_IntGeneral, []>;
692 defm SRW8  : XForm_6r<31, 536, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
693                       "srw", "$rA, $rS, $rB", IIC_IntGeneral, []>;
694 } // Interpretation64Bit
696 // For fast-isel:
697 let isCodeGenOnly = 1 in {
698 def EXTSB8_32_64 : XForm_11<31, 954, (outs g8rc:$rA), (ins gprc:$rS),
699                            "extsb $rA, $rS", IIC_IntSimple, []>, isPPC64;
700 def EXTSH8_32_64 : XForm_11<31, 922, (outs g8rc:$rA), (ins gprc:$rS),
701                            "extsh $rA, $rS", IIC_IntSimple, []>, isPPC64;
702 } // isCodeGenOnly for fast-isel
704 defm EXTSW  : XForm_11r<31, 986, (outs g8rc:$rA), (ins g8rc:$rS),
705                         "extsw", "$rA, $rS", IIC_IntSimple,
706                         [(set i64:$rA, (sext_inreg i64:$rS, i32))]>, isPPC64;
707 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
708 defm EXTSW_32_64 : XForm_11r<31, 986, (outs g8rc:$rA), (ins gprc:$rS),
709                              "extsw", "$rA, $rS", IIC_IntSimple,
710                              [(set i64:$rA, (sext i32:$rS))]>, isPPC64;
711 let isCodeGenOnly = 1 in
712 def EXTSW_32 : XForm_11<31, 986, (outs gprc:$rA), (ins gprc:$rS),
713                         "extsw $rA, $rS", IIC_IntSimple,
714                         []>, isPPC64;
716 defm SRADI  : XSForm_1rc<31, 413, (outs g8rc:$rA), (ins g8rc:$rS, u6imm:$SH),
717                          "sradi", "$rA, $rS, $SH", IIC_IntRotateDI,
718                          [(set i64:$rA, (sra i64:$rS, (i32 imm:$SH)))]>, isPPC64;
720 defm EXTSWSLI : XSForm_1r<31, 445, (outs g8rc:$rA), (ins gprc:$rS, u6imm:$SH),
721                           "extswsli", "$rA, $rS, $SH", IIC_IntRotateDI,
722                           [(set i64:$rA, (PPCextswsli i32:$rS, (i32 imm:$SH)))]>,
723                           isPPC64, Requires<[IsISA3_0]>;
725 // For fast-isel:
726 let isCodeGenOnly = 1, Defs = [CARRY] in
727 def SRADI_32  : XSForm_1<31, 413, (outs gprc:$rA), (ins gprc:$rS, u6imm:$SH),
728                          "sradi $rA, $rS, $SH", IIC_IntRotateDI, []>, isPPC64;
730 defm CNTLZD : XForm_11r<31,  58, (outs g8rc:$rA), (ins g8rc:$rS),
731                         "cntlzd", "$rA, $rS", IIC_IntGeneral,
732                         [(set i64:$rA, (ctlz i64:$rS))]>;
733 defm CNTTZD : XForm_11r<31, 570, (outs g8rc:$rA), (ins g8rc:$rS),
734                         "cnttzd", "$rA, $rS", IIC_IntGeneral,
735                         [(set i64:$rA, (cttz i64:$rS))]>, Requires<[IsISA3_0]>;
736 def POPCNTD : XForm_11<31, 506, (outs g8rc:$rA), (ins g8rc:$rS),
737                        "popcntd $rA, $rS", IIC_IntGeneral,
738                        [(set i64:$rA, (ctpop i64:$rS))]>;
739 def BPERMD : XForm_6<31, 252, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
740                      "bpermd $rA, $rS, $rB", IIC_IntGeneral,
741                      [(set i64:$rA, (int_ppc_bpermd g8rc:$rS, g8rc:$rB))]>,
742                      isPPC64, Requires<[HasBPERMD]>;
744 let isCodeGenOnly = 1, isCommutable = 1 in
745 def CMPB8 : XForm_6<31, 508, (outs g8rc:$rA), (ins g8rc:$rS, g8rc:$rB),
746                     "cmpb $rA, $rS, $rB", IIC_IntGeneral,
747                     [(set i64:$rA, (PPCcmpb i64:$rS, i64:$rB))]>;
749 // popcntw also does a population count on the high 32 bits (storing the
750 // results in the high 32-bits of the output). We'll ignore that here (which is
751 // safe because we never separately use the high part of the 64-bit registers).
752 def POPCNTW : XForm_11<31, 378, (outs gprc:$rA), (ins gprc:$rS),
753                        "popcntw $rA, $rS", IIC_IntGeneral,
754                        [(set i32:$rA, (ctpop i32:$rS))]>;
756 def POPCNTB : XForm_11<31, 122, (outs gprc:$rA), (ins gprc:$rS),
757                        "popcntb $rA, $rS", IIC_IntGeneral, []>;
759 defm DIVD  : XOForm_1rcr<31, 489, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
760                           "divd", "$rT, $rA, $rB", IIC_IntDivD,
761                           [(set i64:$rT, (sdiv i64:$rA, i64:$rB))]>, isPPC64;
762 defm DIVDU : XOForm_1rcr<31, 457, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
763                           "divdu", "$rT, $rA, $rB", IIC_IntDivD,
764                           [(set i64:$rT, (udiv i64:$rA, i64:$rB))]>, isPPC64;
765 def DIVDE : XOForm_1<31, 425, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
766                      "divde $rT, $rA, $rB", IIC_IntDivD,
767                      [(set i64:$rT, (int_ppc_divde g8rc:$rA, g8rc:$rB))]>,
768                      isPPC64, Requires<[HasExtDiv]>;
770 let Predicates = [IsISA3_0] in {
771 def MADDHD : VAForm_1a<48, (outs g8rc :$RT), (ins g8rc:$RA, g8rc:$RB, g8rc:$RC),
772                        "maddhd $RT, $RA, $RB, $RC", IIC_IntMulHD, []>, isPPC64;
773 def MADDHDU : VAForm_1a<49, (outs g8rc :$RT), (ins g8rc:$RA, g8rc:$RB, g8rc:$RC),
774                        "maddhdu $RT, $RA, $RB, $RC", IIC_IntMulHD, []>, isPPC64;
775 def MADDLD : VAForm_1a<51, (outs g8rc :$RT), (ins g8rc:$RA, g8rc:$RB, g8rc:$RC),
776                        "maddld $RT, $RA, $RB, $RC", IIC_IntMulHD, []>, isPPC64;
777 def SETB : XForm_44<31, 128, (outs g8rc:$RT), (ins crrc:$BFA),
778                      "setb $RT, $BFA", IIC_IntGeneral>, isPPC64;
779 def DARN : XForm_45<31, 755, (outs g8rc:$RT), (ins i32imm:$L),
780                      "darn $RT, $L", IIC_LdStLD>, isPPC64;
781 def ADDPCIS : DXForm<19, 2, (outs g8rc:$RT), (ins i32imm:$D),
782                      "addpcis $RT, $D", IIC_BrB, []>, isPPC64;
783 def MODSD : XForm_8<31, 777, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
784                         "modsd $rT, $rA, $rB", IIC_IntDivW,
785                         [(set i64:$rT, (srem i64:$rA, i64:$rB))]>;
786 def MODUD : XForm_8<31, 265, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
787                         "modud $rT, $rA, $rB", IIC_IntDivW,
788                         [(set i64:$rT, (urem i64:$rA, i64:$rB))]>;
791 let Defs = [CR0] in
792 def DIVDEo : XOForm_1<31, 425, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
793                       "divde. $rT, $rA, $rB", IIC_IntDivD,
794                       []>, isDOT, PPC970_DGroup_Cracked, PPC970_DGroup_First,
795                       isPPC64, Requires<[HasExtDiv]>;
796 def DIVDEU : XOForm_1<31, 393, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
797                       "divdeu $rT, $rA, $rB", IIC_IntDivD,
798                       [(set i64:$rT, (int_ppc_divdeu g8rc:$rA, g8rc:$rB))]>,
799                       isPPC64, Requires<[HasExtDiv]>;
800 let Defs = [CR0] in
801 def DIVDEUo : XOForm_1<31, 393, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
802                        "divdeu. $rT, $rA, $rB", IIC_IntDivD,
803                        []>, isDOT, PPC970_DGroup_Cracked, PPC970_DGroup_First,
804                         isPPC64, Requires<[HasExtDiv]>;
805 let isCommutable = 1 in
806 defm MULLD : XOForm_1r<31, 233, 0, (outs g8rc:$rT), (ins g8rc:$rA, g8rc:$rB),
807                        "mulld", "$rT, $rA, $rB", IIC_IntMulHD,
808                        [(set i64:$rT, (mul i64:$rA, i64:$rB))]>, isPPC64;
809 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
810 def MULLI8 : DForm_2<7, (outs g8rc:$rD), (ins g8rc:$rA, s16imm64:$imm),
811                        "mulli $rD, $rA, $imm", IIC_IntMulLI,
812                        [(set i64:$rD, (mul i64:$rA, imm64SExt16:$imm))]>;
815 let hasSideEffects = 0 in {
816 defm RLDIMI : MDForm_1r<30, 3, (outs g8rc:$rA),
817                         (ins g8rc:$rSi, g8rc:$rS, u6imm:$SH, u6imm:$MBE),
818                         "rldimi", "$rA, $rS, $SH, $MBE", IIC_IntRotateDI,
819                         []>, isPPC64, RegConstraint<"$rSi = $rA">,
820                         NoEncode<"$rSi">;
822 // Rotate instructions.
823 defm RLDCL  : MDSForm_1r<30, 8,
824                         (outs g8rc:$rA), (ins g8rc:$rS, gprc:$rB, u6imm:$MBE),
825                         "rldcl", "$rA, $rS, $rB, $MBE", IIC_IntRotateD,
826                         []>, isPPC64;
827 defm RLDCR  : MDSForm_1r<30, 9,
828                         (outs g8rc:$rA), (ins g8rc:$rS, gprc:$rB, u6imm:$MBE),
829                         "rldcr", "$rA, $rS, $rB, $MBE", IIC_IntRotateD,
830                         []>, isPPC64;
831 defm RLDICL : MDForm_1r<30, 0,
832                         (outs g8rc:$rA), (ins g8rc:$rS, u6imm:$SH, u6imm:$MBE),
833                         "rldicl", "$rA, $rS, $SH, $MBE", IIC_IntRotateDI,
834                         []>, isPPC64;
835 // For fast-isel:
836 let isCodeGenOnly = 1 in
837 def RLDICL_32_64 : MDForm_1<30, 0,
838                             (outs g8rc:$rA),
839                             (ins gprc:$rS, u6imm:$SH, u6imm:$MBE),
840                             "rldicl $rA, $rS, $SH, $MBE", IIC_IntRotateDI,
841                             []>, isPPC64;
842 // End fast-isel.
843 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
844 defm RLDICL_32 : MDForm_1r<30, 0,
845                            (outs gprc:$rA),
846                            (ins gprc:$rS, u6imm:$SH, u6imm:$MBE),
847                            "rldicl", "$rA, $rS, $SH, $MBE", IIC_IntRotateDI,
848                            []>, isPPC64;
849 defm RLDICR : MDForm_1r<30, 1,
850                         (outs g8rc:$rA), (ins g8rc:$rS, u6imm:$SH, u6imm:$MBE),
851                         "rldicr", "$rA, $rS, $SH, $MBE", IIC_IntRotateDI,
852                         []>, isPPC64;
853 let isCodeGenOnly = 1 in
854 def RLDICR_32 : MDForm_1<30, 1,
855                          (outs gprc:$rA), (ins gprc:$rS, u6imm:$SH, u6imm:$MBE),
856                          "rldicr $rA, $rS, $SH, $MBE", IIC_IntRotateDI,
857                          []>, isPPC64;
858 defm RLDIC  : MDForm_1r<30, 2,
859                         (outs g8rc:$rA), (ins g8rc:$rS, u6imm:$SH, u6imm:$MBE),
860                         "rldic", "$rA, $rS, $SH, $MBE", IIC_IntRotateDI,
861                         []>, isPPC64;
863 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
864 defm RLWINM8 : MForm_2r<21, (outs g8rc:$rA),
865                         (ins g8rc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
866                         "rlwinm", "$rA, $rS, $SH, $MB, $ME", IIC_IntGeneral,
867                         []>;
869 defm RLWNM8  : MForm_2r<23, (outs g8rc:$rA),
870                         (ins g8rc:$rS, g8rc:$rB, u5imm:$MB, u5imm:$ME),
871                         "rlwnm", "$rA, $rS, $rB, $MB, $ME", IIC_IntGeneral,
872                         []>;
874 // RLWIMI can be commuted if the rotate amount is zero.
875 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
876 defm RLWIMI8 : MForm_2r<20, (outs g8rc:$rA),
877                         (ins g8rc:$rSi, g8rc:$rS, u5imm:$SH, u5imm:$MB,
878                         u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME",
879                         IIC_IntRotate, []>, PPC970_DGroup_Cracked,
880                         RegConstraint<"$rSi = $rA">, NoEncode<"$rSi">;
882 let isSelect = 1 in
883 def ISEL8   : AForm_4<31, 15,
884                      (outs g8rc:$rT), (ins g8rc_nox0:$rA, g8rc:$rB, crbitrc:$cond),
885                      "isel $rT, $rA, $rB, $cond", IIC_IntISEL,
886                      []>;
887 }  // Interpretation64Bit
888 }  // hasSideEffects = 0
889 }  // End FXU Operations.
892 //===----------------------------------------------------------------------===//
893 // Load/Store instructions.
897 // Sign extending loads.
898 let PPC970_Unit = 2 in {
899 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
900 def LHA8: DForm_1<42, (outs g8rc:$rD), (ins memri:$src),
901                   "lha $rD, $src", IIC_LdStLHA,
902                   [(set i64:$rD, (sextloadi16 iaddr:$src))]>,
903                   PPC970_DGroup_Cracked;
904 def LWA  : DSForm_1<58, 2, (outs g8rc:$rD), (ins memrix:$src),
905                     "lwa $rD, $src", IIC_LdStLWA,
906                     [(set i64:$rD,
907                           (aligned4sextloadi32 ixaddr:$src))]>, isPPC64,
908                     PPC970_DGroup_Cracked;
909 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
910 def LHAX8: XForm_1_memOp<31, 343, (outs g8rc:$rD), (ins memrr:$src),
911                         "lhax $rD, $src", IIC_LdStLHA,
912                         [(set i64:$rD, (sextloadi16 xaddr:$src))]>,
913                         PPC970_DGroup_Cracked;
914 def LWAX : XForm_1_memOp<31, 341, (outs g8rc:$rD), (ins memrr:$src),
915                         "lwax $rD, $src", IIC_LdStLHA,
916                         [(set i64:$rD, (sextloadi32 xaddr:$src))]>, isPPC64,
917                         PPC970_DGroup_Cracked;
918 // For fast-isel:
919 let isCodeGenOnly = 1, mayLoad = 1 in {
920 def LWA_32  : DSForm_1<58, 2, (outs gprc:$rD), (ins memrix:$src),
921                       "lwa $rD, $src", IIC_LdStLWA, []>, isPPC64,
922                       PPC970_DGroup_Cracked;
923 def LWAX_32 : XForm_1_memOp<31, 341, (outs gprc:$rD), (ins memrr:$src),
924                             "lwax $rD, $src", IIC_LdStLHA, []>, isPPC64,
925                             PPC970_DGroup_Cracked;
926 } // end fast-isel isCodeGenOnly
928 // Update forms.
929 let mayLoad = 1, hasSideEffects = 0 in {
930 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
931 def LHAU8 : DForm_1<43, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
932                     (ins memri:$addr),
933                     "lhau $rD, $addr", IIC_LdStLHAU,
934                     []>, RegConstraint<"$addr.reg = $ea_result">,
935                     NoEncode<"$ea_result">;
936 // NO LWAU!
938 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
939 def LHAUX8 : XForm_1_memOp<31, 375, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
940                           (ins memrr:$addr),
941                           "lhaux $rD, $addr", IIC_LdStLHAUX,
942                           []>, RegConstraint<"$addr.ptrreg = $ea_result">,
943                           NoEncode<"$ea_result">;
944 def LWAUX : XForm_1_memOp<31, 373, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
945                           (ins memrr:$addr),
946                           "lwaux $rD, $addr", IIC_LdStLHAUX,
947                           []>, RegConstraint<"$addr.ptrreg = $ea_result">,
948                           NoEncode<"$ea_result">, isPPC64;
952 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
953 // Zero extending loads.
954 let PPC970_Unit = 2 in {
955 def LBZ8 : DForm_1<34, (outs g8rc:$rD), (ins memri:$src),
956                   "lbz $rD, $src", IIC_LdStLoad,
957                   [(set i64:$rD, (zextloadi8 iaddr:$src))]>;
958 def LHZ8 : DForm_1<40, (outs g8rc:$rD), (ins memri:$src),
959                   "lhz $rD, $src", IIC_LdStLoad,
960                   [(set i64:$rD, (zextloadi16 iaddr:$src))]>;
961 def LWZ8 : DForm_1<32, (outs g8rc:$rD), (ins memri:$src),
962                   "lwz $rD, $src", IIC_LdStLoad,
963                   [(set i64:$rD, (zextloadi32 iaddr:$src))]>, isPPC64;
965 def LBZX8 : XForm_1_memOp<31,  87, (outs g8rc:$rD), (ins memrr:$src),
966                           "lbzx $rD, $src", IIC_LdStLoad,
967                           [(set i64:$rD, (zextloadi8 xaddr:$src))]>;
968 def LHZX8 : XForm_1_memOp<31, 279, (outs g8rc:$rD), (ins memrr:$src),
969                           "lhzx $rD, $src", IIC_LdStLoad,
970                           [(set i64:$rD, (zextloadi16 xaddr:$src))]>;
971 def LWZX8 : XForm_1_memOp<31,  23, (outs g8rc:$rD), (ins memrr:$src),
972                           "lwzx $rD, $src", IIC_LdStLoad,
973                           [(set i64:$rD, (zextloadi32 xaddr:$src))]>;
974                    
975                    
976 // Update forms.
977 let mayLoad = 1, hasSideEffects = 0 in {
978 def LBZU8 : DForm_1<35, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
979                     (ins memri:$addr),
980                     "lbzu $rD, $addr", IIC_LdStLoadUpd,
981                     []>, RegConstraint<"$addr.reg = $ea_result">,
982                     NoEncode<"$ea_result">;
983 def LHZU8 : DForm_1<41, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
984                     (ins memri:$addr),
985                     "lhzu $rD, $addr", IIC_LdStLoadUpd,
986                     []>, RegConstraint<"$addr.reg = $ea_result">,
987                     NoEncode<"$ea_result">;
988 def LWZU8 : DForm_1<33, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
989                     (ins memri:$addr),
990                     "lwzu $rD, $addr", IIC_LdStLoadUpd,
991                     []>, RegConstraint<"$addr.reg = $ea_result">,
992                     NoEncode<"$ea_result">;
994 def LBZUX8 : XForm_1_memOp<31, 119, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
995                           (ins memrr:$addr),
996                           "lbzux $rD, $addr", IIC_LdStLoadUpdX,
997                           []>, RegConstraint<"$addr.ptrreg = $ea_result">,
998                           NoEncode<"$ea_result">;
999 def LHZUX8 : XForm_1_memOp<31, 311, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
1000                           (ins memrr:$addr),
1001                           "lhzux $rD, $addr", IIC_LdStLoadUpdX,
1002                           []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1003                           NoEncode<"$ea_result">;
1004 def LWZUX8 : XForm_1_memOp<31, 55, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
1005                           (ins memrr:$addr),
1006                           "lwzux $rD, $addr", IIC_LdStLoadUpdX,
1007                           []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1008                           NoEncode<"$ea_result">;
1011 } // Interpretation64Bit
1014 // Full 8-byte loads.
1015 let PPC970_Unit = 2 in {
1016 def LD   : DSForm_1<58, 0, (outs g8rc:$rD), (ins memrix:$src),
1017                     "ld $rD, $src", IIC_LdStLD,
1018                     [(set i64:$rD, (aligned4load ixaddr:$src))]>, isPPC64;
1019 // The following four definitions are selected for small code model only.
1020 // Otherwise, we need to create two instructions to form a 32-bit offset,
1021 // so we have a custom matcher for TOC_ENTRY in PPCDAGToDAGIsel::Select().
1022 def LDtoc: Pseudo<(outs g8rc:$rD), (ins tocentry:$disp, g8rc:$reg),
1023                   "#LDtoc",
1024                   [(set i64:$rD,
1025                      (PPCtoc_entry tglobaladdr:$disp, i64:$reg))]>, isPPC64;
1026 def LDtocJTI: Pseudo<(outs g8rc:$rD), (ins tocentry:$disp, g8rc:$reg),
1027                   "#LDtocJTI",
1028                   [(set i64:$rD,
1029                      (PPCtoc_entry tjumptable:$disp, i64:$reg))]>, isPPC64;
1030 def LDtocCPT: Pseudo<(outs g8rc:$rD), (ins tocentry:$disp, g8rc:$reg),
1031                   "#LDtocCPT",
1032                   [(set i64:$rD,
1033                      (PPCtoc_entry tconstpool:$disp, i64:$reg))]>, isPPC64;
1034 def LDtocBA: Pseudo<(outs g8rc:$rD), (ins tocentry:$disp, g8rc:$reg),
1035                   "#LDtocCPT",
1036                   [(set i64:$rD,
1037                      (PPCtoc_entry tblockaddress:$disp, i64:$reg))]>, isPPC64;
1039 def LDX  : XForm_1_memOp<31,  21, (outs g8rc:$rD), (ins memrr:$src),
1040                         "ldx $rD, $src", IIC_LdStLD,
1041                         [(set i64:$rD, (load xaddr:$src))]>, isPPC64;
1042 def LDBRX : XForm_1_memOp<31,  532, (outs g8rc:$rD), (ins memrr:$src),
1043                           "ldbrx $rD, $src", IIC_LdStLoad,
1044                           [(set i64:$rD, (PPClbrx xoaddr:$src, i64))]>, isPPC64;
1046 let mayLoad = 1, hasSideEffects = 0, isCodeGenOnly = 1 in {
1047 def LHBRX8 : XForm_1_memOp<31, 790, (outs g8rc:$rD), (ins memrr:$src),
1048                           "lhbrx $rD, $src", IIC_LdStLoad, []>;
1049 def LWBRX8 : XForm_1_memOp<31,  534, (outs g8rc:$rD), (ins memrr:$src),
1050                           "lwbrx $rD, $src", IIC_LdStLoad, []>;
1053 let mayLoad = 1, hasSideEffects = 0 in {
1054 def LDU  : DSForm_1<58, 1, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
1055                     (ins memrix:$addr),
1056                     "ldu $rD, $addr", IIC_LdStLDU,
1057                     []>, RegConstraint<"$addr.reg = $ea_result">, isPPC64,
1058                     NoEncode<"$ea_result">;
1060 def LDUX : XForm_1_memOp<31, 53, (outs g8rc:$rD, ptr_rc_nor0:$ea_result),
1061                         (ins memrr:$addr),
1062                         "ldux $rD, $addr", IIC_LdStLDUX,
1063                         []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1064                         NoEncode<"$ea_result">, isPPC64;
1066 def LDMX : XForm_1<31, 309, (outs g8rc:$rD), (ins memrr:$src),
1067                    "ldmx $rD, $src", IIC_LdStLD, []>, isPPC64,
1068                    Requires<[IsISA3_0]>;
1072 // Support for medium and large code model.
1073 let hasSideEffects = 0 in {
1074 let isReMaterializable = 1 in {
1075 def ADDIStocHA: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, tocentry:$disp),
1076                        "#ADDIStocHA", []>, isPPC64;
1077 def ADDItocL: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, tocentry:$disp),
1078                      "#ADDItocL", []>, isPPC64;
1080 let mayLoad = 1 in
1081 def LDtocL: Pseudo<(outs g8rc:$rD), (ins tocentry:$disp, g8rc_nox0:$reg),
1082                    "#LDtocL", []>, isPPC64;
1085 // Support for thread-local storage.
1086 def ADDISgotTprelHA: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1087                          "#ADDISgotTprelHA",
1088                          [(set i64:$rD,
1089                            (PPCaddisGotTprelHA i64:$reg,
1090                                                tglobaltlsaddr:$disp))]>,
1091                   isPPC64;
1092 def LDgotTprelL: Pseudo<(outs g8rc:$rD), (ins s16imm64:$disp, g8rc_nox0:$reg),
1093                         "#LDgotTprelL",
1094                         [(set i64:$rD,
1095                           (PPCldGotTprelL tglobaltlsaddr:$disp, i64:$reg))]>,
1096                  isPPC64;
1098 let isPseudo = 1, Defs = [CR7], Itinerary = IIC_LdStSync in
1099 def CFENCE8 : Pseudo<(outs), (ins g8rc:$cr), "#CFENCE8", []>;
1101 def : Pat<(PPCaddTls i64:$in, tglobaltlsaddr:$g),
1102           (ADD8TLS $in, tglobaltlsaddr:$g)>;
1103 def ADDIStlsgdHA: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1104                          "#ADDIStlsgdHA",
1105                          [(set i64:$rD,
1106                            (PPCaddisTlsgdHA i64:$reg, tglobaltlsaddr:$disp))]>,
1107                   isPPC64;
1108 def ADDItlsgdL : Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1109                        "#ADDItlsgdL",
1110                        [(set i64:$rD,
1111                          (PPCaddiTlsgdL i64:$reg, tglobaltlsaddr:$disp))]>,
1112                  isPPC64;
1113 // LR8 is a true define, while the rest of the Defs are clobbers.  X3 is
1114 // explicitly defined when this op is created, so not mentioned here.
1115 // This is lowered to BL8_NOP_TLS by the assembly printer, so the size must be
1116 // correct because the branch select pass is relying on it.
1117 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1, Size = 8,
1118     Defs = [X0,X4,X5,X6,X7,X8,X9,X10,X11,X12,LR8,CTR8,CR0,CR1,CR5,CR6,CR7] in
1119 def GETtlsADDR : Pseudo<(outs g8rc:$rD), (ins g8rc:$reg, tlsgd:$sym),
1120                         "#GETtlsADDR",
1121                         [(set i64:$rD,
1122                           (PPCgetTlsAddr i64:$reg, tglobaltlsaddr:$sym))]>,
1123                  isPPC64;
1124 // Combined op for ADDItlsgdL and GETtlsADDR, late expanded.  X3 and LR8
1125 // are true defines while the rest of the Defs are clobbers.
1126 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
1127     Defs = [X0,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12,LR8,CTR8,CR0,CR1,CR5,CR6,CR7]
1128     in
1129 def ADDItlsgdLADDR : Pseudo<(outs g8rc:$rD),
1130                             (ins g8rc_nox0:$reg, s16imm64:$disp, tlsgd:$sym),
1131                             "#ADDItlsgdLADDR",
1132                             [(set i64:$rD,
1133                               (PPCaddiTlsgdLAddr i64:$reg,
1134                                                  tglobaltlsaddr:$disp,
1135                                                  tglobaltlsaddr:$sym))]>,
1136                      isPPC64;
1137 def ADDIStlsldHA: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1138                          "#ADDIStlsldHA",
1139                          [(set i64:$rD,
1140                            (PPCaddisTlsldHA i64:$reg, tglobaltlsaddr:$disp))]>,
1141                   isPPC64;
1142 def ADDItlsldL : Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1143                        "#ADDItlsldL",
1144                        [(set i64:$rD,
1145                          (PPCaddiTlsldL i64:$reg, tglobaltlsaddr:$disp))]>,
1146                  isPPC64;
1147 // LR8 is a true define, while the rest of the Defs are clobbers.  X3 is
1148 // explicitly defined when this op is created, so not mentioned here.
1149 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
1150     Defs = [X0,X4,X5,X6,X7,X8,X9,X10,X11,X12,LR8,CTR8,CR0,CR1,CR5,CR6,CR7] in
1151 def GETtlsldADDR : Pseudo<(outs g8rc:$rD), (ins g8rc:$reg, tlsgd:$sym),
1152                           "#GETtlsldADDR",
1153                           [(set i64:$rD,
1154                             (PPCgetTlsldAddr i64:$reg, tglobaltlsaddr:$sym))]>,
1155                    isPPC64;
1156 // Combined op for ADDItlsldL and GETtlsADDR, late expanded.  X3 and LR8
1157 // are true defines, while the rest of the Defs are clobbers.
1158 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
1159     Defs = [X0,X3,X4,X5,X6,X7,X8,X9,X10,X11,X12,LR8,CTR8,CR0,CR1,CR5,CR6,CR7]
1160     in
1161 def ADDItlsldLADDR : Pseudo<(outs g8rc:$rD),
1162                             (ins g8rc_nox0:$reg, s16imm64:$disp, tlsgd:$sym),
1163                             "#ADDItlsldLADDR",
1164                             [(set i64:$rD,
1165                               (PPCaddiTlsldLAddr i64:$reg,
1166                                                  tglobaltlsaddr:$disp,
1167                                                  tglobaltlsaddr:$sym))]>,
1168                      isPPC64;
1169 def ADDISdtprelHA: Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1170                           "#ADDISdtprelHA",
1171                           [(set i64:$rD,
1172                             (PPCaddisDtprelHA i64:$reg,
1173                                               tglobaltlsaddr:$disp))]>,
1174                    isPPC64;
1175 def ADDIdtprelL : Pseudo<(outs g8rc:$rD), (ins g8rc_nox0:$reg, s16imm64:$disp),
1176                          "#ADDIdtprelL",
1177                          [(set i64:$rD,
1178                            (PPCaddiDtprelL i64:$reg, tglobaltlsaddr:$disp))]>,
1179                   isPPC64;
1181 let PPC970_Unit = 2 in {
1182 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
1183 // Truncating stores.                       
1184 def STB8 : DForm_1<38, (outs), (ins g8rc:$rS, memri:$src),
1185                    "stb $rS, $src", IIC_LdStStore,
1186                    [(truncstorei8 i64:$rS, iaddr:$src)]>;
1187 def STH8 : DForm_1<44, (outs), (ins g8rc:$rS, memri:$src),
1188                    "sth $rS, $src", IIC_LdStStore,
1189                    [(truncstorei16 i64:$rS, iaddr:$src)]>;
1190 def STW8 : DForm_1<36, (outs), (ins g8rc:$rS, memri:$src),
1191                    "stw $rS, $src", IIC_LdStStore,
1192                    [(truncstorei32 i64:$rS, iaddr:$src)]>;
1193 def STBX8 : XForm_8_memOp<31, 215, (outs), (ins g8rc:$rS, memrr:$dst),
1194                           "stbx $rS, $dst", IIC_LdStStore,
1195                           [(truncstorei8 i64:$rS, xaddr:$dst)]>,
1196                           PPC970_DGroup_Cracked;
1197 def STHX8 : XForm_8_memOp<31, 407, (outs), (ins g8rc:$rS, memrr:$dst),
1198                           "sthx $rS, $dst", IIC_LdStStore,
1199                           [(truncstorei16 i64:$rS, xaddr:$dst)]>,
1200                           PPC970_DGroup_Cracked;
1201 def STWX8 : XForm_8_memOp<31, 151, (outs), (ins g8rc:$rS, memrr:$dst),
1202                           "stwx $rS, $dst", IIC_LdStStore,
1203                           [(truncstorei32 i64:$rS, xaddr:$dst)]>,
1204                           PPC970_DGroup_Cracked;
1205 } // Interpretation64Bit
1207 // Normal 8-byte stores.
1208 def STD  : DSForm_1<62, 0, (outs), (ins g8rc:$rS, memrix:$dst),
1209                     "std $rS, $dst", IIC_LdStSTD,
1210                     [(aligned4store i64:$rS, ixaddr:$dst)]>, isPPC64;
1211 def STDX  : XForm_8_memOp<31, 149, (outs), (ins g8rc:$rS, memrr:$dst),
1212                           "stdx $rS, $dst", IIC_LdStSTD,
1213                           [(store i64:$rS, xaddr:$dst)]>, isPPC64,
1214                           PPC970_DGroup_Cracked;
1215 def STDBRX: XForm_8_memOp<31, 660, (outs), (ins g8rc:$rS, memrr:$dst),
1216                           "stdbrx $rS, $dst", IIC_LdStStore,
1217                           [(PPCstbrx i64:$rS, xoaddr:$dst, i64)]>, isPPC64,
1218                           PPC970_DGroup_Cracked;
1221 // Stores with Update (pre-inc).
1222 let PPC970_Unit = 2, mayStore = 1, mayLoad = 0 in {
1223 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
1224 def STBU8 : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins g8rc:$rS, memri:$dst),
1225                    "stbu $rS, $dst", IIC_LdStStoreUpd, []>,
1226                    RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1227 def STHU8 : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins g8rc:$rS, memri:$dst),
1228                    "sthu $rS, $dst", IIC_LdStStoreUpd, []>,
1229                    RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1230 def STWU8 : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins g8rc:$rS, memri:$dst),
1231                    "stwu $rS, $dst", IIC_LdStStoreUpd, []>,
1232                    RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1234 def STBUX8: XForm_8_memOp<31, 247, (outs ptr_rc_nor0:$ea_res),
1235                           (ins g8rc:$rS, memrr:$dst),
1236                           "stbux $rS, $dst", IIC_LdStStoreUpd, []>,
1237                           RegConstraint<"$dst.ptrreg = $ea_res">,
1238                           NoEncode<"$ea_res">,
1239                           PPC970_DGroup_Cracked;
1240 def STHUX8: XForm_8_memOp<31, 439, (outs ptr_rc_nor0:$ea_res),
1241                           (ins g8rc:$rS, memrr:$dst),
1242                           "sthux $rS, $dst", IIC_LdStStoreUpd, []>,
1243                           RegConstraint<"$dst.ptrreg = $ea_res">,
1244                           NoEncode<"$ea_res">,
1245                           PPC970_DGroup_Cracked;
1246 def STWUX8: XForm_8_memOp<31, 183, (outs ptr_rc_nor0:$ea_res),
1247                           (ins g8rc:$rS, memrr:$dst),
1248                           "stwux $rS, $dst", IIC_LdStStoreUpd, []>,
1249                           RegConstraint<"$dst.ptrreg = $ea_res">,
1250                           NoEncode<"$ea_res">,
1251                           PPC970_DGroup_Cracked;
1252 } // Interpretation64Bit
1254 def STDU : DSForm_1<62, 1, (outs ptr_rc_nor0:$ea_res),
1255                    (ins g8rc:$rS, memrix:$dst),
1256                    "stdu $rS, $dst", IIC_LdStSTDU, []>,
1257                    RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">,
1258                    isPPC64;
1260 def STDUX : XForm_8_memOp<31, 181, (outs ptr_rc_nor0:$ea_res),
1261                           (ins g8rc:$rS, memrr:$dst),
1262                           "stdux $rS, $dst", IIC_LdStSTDUX, []>,
1263                           RegConstraint<"$dst.ptrreg = $ea_res">,
1264                           NoEncode<"$ea_res">,
1265                           PPC970_DGroup_Cracked, isPPC64;
1268 // Patterns to match the pre-inc stores.  We can't put the patterns on
1269 // the instruction definitions directly as ISel wants the address base
1270 // and offset to be separate operands, not a single complex operand.
1271 def : Pat<(pre_truncsti8 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1272           (STBU8 $rS, iaddroff:$ptroff, $ptrreg)>;
1273 def : Pat<(pre_truncsti16 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1274           (STHU8 $rS, iaddroff:$ptroff, $ptrreg)>;
1275 def : Pat<(pre_truncsti32 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1276           (STWU8 $rS, iaddroff:$ptroff, $ptrreg)>;
1277 def : Pat<(aligned4pre_store i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1278           (STDU $rS, iaddroff:$ptroff, $ptrreg)>;
1280 def : Pat<(pre_truncsti8 i64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1281           (STBUX8 $rS, $ptrreg, $ptroff)>;
1282 def : Pat<(pre_truncsti16 i64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1283           (STHUX8 $rS, $ptrreg, $ptroff)>;
1284 def : Pat<(pre_truncsti32 i64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1285           (STWUX8 $rS, $ptrreg, $ptroff)>;
1286 def : Pat<(pre_store i64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1287           (STDUX $rS, $ptrreg, $ptroff)>;
1290 //===----------------------------------------------------------------------===//
1291 // Floating point instructions.
1295 let PPC970_Unit = 3, hasSideEffects = 0,
1296     Uses = [RM] in {  // FPU Operations.
1297 defm FCFID  : XForm_26r<63, 846, (outs f8rc:$frD), (ins f8rc:$frB),
1298                         "fcfid", "$frD, $frB", IIC_FPGeneral,
1299                         [(set f64:$frD, (PPCfcfid f64:$frB))]>, isPPC64;
1300 defm FCTID  : XForm_26r<63, 814, (outs f8rc:$frD), (ins f8rc:$frB),
1301                         "fctid", "$frD, $frB", IIC_FPGeneral,
1302                         []>, isPPC64;
1303 defm FCTIDU : XForm_26r<63, 942, (outs f8rc:$frD), (ins f8rc:$frB),
1304                         "fctidu", "$frD, $frB", IIC_FPGeneral,
1305                         []>, isPPC64;
1306 defm FCTIDZ : XForm_26r<63, 815, (outs f8rc:$frD), (ins f8rc:$frB),
1307                         "fctidz", "$frD, $frB", IIC_FPGeneral,
1308                         [(set f64:$frD, (PPCfctidz f64:$frB))]>, isPPC64;
1310 defm FCFIDU  : XForm_26r<63, 974, (outs f8rc:$frD), (ins f8rc:$frB),
1311                         "fcfidu", "$frD, $frB", IIC_FPGeneral,
1312                         [(set f64:$frD, (PPCfcfidu f64:$frB))]>, isPPC64;
1313 defm FCFIDS  : XForm_26r<59, 846, (outs f4rc:$frD), (ins f8rc:$frB),
1314                         "fcfids", "$frD, $frB", IIC_FPGeneral,
1315                         [(set f32:$frD, (PPCfcfids f64:$frB))]>, isPPC64;
1316 defm FCFIDUS : XForm_26r<59, 974, (outs f4rc:$frD), (ins f8rc:$frB),
1317                         "fcfidus", "$frD, $frB", IIC_FPGeneral,
1318                         [(set f32:$frD, (PPCfcfidus f64:$frB))]>, isPPC64;
1319 defm FCTIDUZ : XForm_26r<63, 943, (outs f8rc:$frD), (ins f8rc:$frB),
1320                         "fctiduz", "$frD, $frB", IIC_FPGeneral,
1321                         [(set f64:$frD, (PPCfctiduz f64:$frB))]>, isPPC64;
1322 defm FCTIWUZ : XForm_26r<63, 143, (outs f8rc:$frD), (ins f8rc:$frB),
1323                         "fctiwuz", "$frD, $frB", IIC_FPGeneral,
1324                         [(set f64:$frD, (PPCfctiwuz f64:$frB))]>, isPPC64;
1328 //===----------------------------------------------------------------------===//
1329 // Instruction Patterns
1332 // Extensions and truncates to/from 32-bit regs.
1333 def : Pat<(i64 (zext i32:$in)),
1334           (RLDICL (INSERT_SUBREG (i64 (IMPLICIT_DEF)), $in, sub_32),
1335                   0, 32)>;
1336 def : Pat<(i64 (anyext i32:$in)),
1337           (INSERT_SUBREG (i64 (IMPLICIT_DEF)), $in, sub_32)>;
1338 def : Pat<(i32 (trunc i64:$in)),
1339           (EXTRACT_SUBREG $in, sub_32)>;
1341 // Implement the 'not' operation with the NOR instruction.
1342 // (we could use the default xori pattern, but nor has lower latency on some
1343 // cores (such as the A2)).
1344 def i64not : OutPatFrag<(ops node:$in),
1345                         (NOR8 $in, $in)>;
1346 def        : Pat<(not i64:$in),
1347                  (i64not $in)>;
1349 // Extending loads with i64 targets.
1350 def : Pat<(zextloadi1 iaddr:$src),
1351           (LBZ8 iaddr:$src)>;
1352 def : Pat<(zextloadi1 xaddr:$src),
1353           (LBZX8 xaddr:$src)>;
1354 def : Pat<(extloadi1 iaddr:$src),
1355           (LBZ8 iaddr:$src)>;
1356 def : Pat<(extloadi1 xaddr:$src),
1357           (LBZX8 xaddr:$src)>;
1358 def : Pat<(extloadi8 iaddr:$src),
1359           (LBZ8 iaddr:$src)>;
1360 def : Pat<(extloadi8 xaddr:$src),
1361           (LBZX8 xaddr:$src)>;
1362 def : Pat<(extloadi16 iaddr:$src),
1363           (LHZ8 iaddr:$src)>;
1364 def : Pat<(extloadi16 xaddr:$src),
1365           (LHZX8 xaddr:$src)>;
1366 def : Pat<(extloadi32 iaddr:$src),
1367           (LWZ8 iaddr:$src)>;
1368 def : Pat<(extloadi32 xaddr:$src),
1369           (LWZX8 xaddr:$src)>;
1371 // Standard shifts.  These are represented separately from the real shifts above
1372 // so that we can distinguish between shifts that allow 6-bit and 7-bit shift
1373 // amounts.
1374 def : Pat<(sra i64:$rS, i32:$rB),
1375           (SRAD $rS, $rB)>;
1376 def : Pat<(srl i64:$rS, i32:$rB),
1377           (SRD $rS, $rB)>;
1378 def : Pat<(shl i64:$rS, i32:$rB),
1379           (SLD $rS, $rB)>;
1381 // SUBFIC
1382 def : Pat<(sub imm64SExt16:$imm, i64:$in),
1383           (SUBFIC8 $in, imm:$imm)>;
1385 // SHL/SRL
1386 def : Pat<(shl i64:$in, (i32 imm:$imm)),
1387           (RLDICR $in, imm:$imm, (SHL64 imm:$imm))>;
1388 def : Pat<(srl i64:$in, (i32 imm:$imm)),
1389           (RLDICL $in, (SRL64 imm:$imm), imm:$imm)>;
1391 // ROTL
1392 def : Pat<(rotl i64:$in, i32:$sh),
1393           (RLDCL $in, $sh, 0)>;
1394 def : Pat<(rotl i64:$in, (i32 imm:$imm)),
1395           (RLDICL $in, imm:$imm, 0)>;
1397 // Hi and Lo for Darwin Global Addresses.
1398 def : Pat<(PPChi tglobaladdr:$in, 0), (LIS8 tglobaladdr:$in)>;
1399 def : Pat<(PPClo tglobaladdr:$in, 0), (LI8  tglobaladdr:$in)>;
1400 def : Pat<(PPChi tconstpool:$in , 0), (LIS8 tconstpool:$in)>;
1401 def : Pat<(PPClo tconstpool:$in , 0), (LI8  tconstpool:$in)>;
1402 def : Pat<(PPChi tjumptable:$in , 0), (LIS8 tjumptable:$in)>;
1403 def : Pat<(PPClo tjumptable:$in , 0), (LI8  tjumptable:$in)>;
1404 def : Pat<(PPChi tblockaddress:$in, 0), (LIS8 tblockaddress:$in)>;
1405 def : Pat<(PPClo tblockaddress:$in, 0), (LI8  tblockaddress:$in)>;
1406 def : Pat<(PPChi tglobaltlsaddr:$g, i64:$in),
1407           (ADDIS8 $in, tglobaltlsaddr:$g)>;
1408 def : Pat<(PPClo tglobaltlsaddr:$g, i64:$in),
1409           (ADDI8 $in, tglobaltlsaddr:$g)>;
1410 def : Pat<(add i64:$in, (PPChi tglobaladdr:$g, 0)),
1411           (ADDIS8 $in, tglobaladdr:$g)>;
1412 def : Pat<(add i64:$in, (PPChi tconstpool:$g, 0)),
1413           (ADDIS8 $in, tconstpool:$g)>;
1414 def : Pat<(add i64:$in, (PPChi tjumptable:$g, 0)),
1415           (ADDIS8 $in, tjumptable:$g)>;
1416 def : Pat<(add i64:$in, (PPChi tblockaddress:$g, 0)),
1417           (ADDIS8 $in, tblockaddress:$g)>;
1419 // Patterns to match r+r indexed loads and stores for
1420 // addresses without at least 4-byte alignment.
1421 def : Pat<(i64 (unaligned4sextloadi32 xoaddr:$src)),
1422           (LWAX xoaddr:$src)>;
1423 def : Pat<(i64 (unaligned4load xoaddr:$src)),
1424           (LDX xoaddr:$src)>;
1425 def : Pat<(unaligned4store i64:$rS, xoaddr:$dst),
1426           (STDX $rS, xoaddr:$dst)>;
1428 // 64-bits atomic loads and stores
1429 def : Pat<(atomic_load_64 ixaddr:$src), (LD  memrix:$src)>;
1430 def : Pat<(atomic_load_64 xaddr:$src),  (LDX memrr:$src)>;
1432 def : Pat<(atomic_store_64 ixaddr:$ptr, i64:$val), (STD  g8rc:$val, memrix:$ptr)>;
1433 def : Pat<(atomic_store_64 xaddr:$ptr,  i64:$val), (STDX g8rc:$val, memrr:$ptr)>;
1435 let Predicates = [IsISA3_0] in {
1437 class X_L1_RA5_RB5<bits<6> opcode, bits<10> xo, string opc, RegisterOperand ty,
1438                    InstrItinClass itin, list<dag> pattern>
1439   : X_L1_RS5_RS5<opcode, xo, (outs), (ins ty:$rA, ty:$rB, u1imm:$L),
1440                  !strconcat(opc, " $rA, $rB, $L"), itin, pattern>;
1442 let Interpretation64Bit = 1, isCodeGenOnly = 1 in {
1443 def CP_COPY8   : X_L1_RA5_RB5<31, 774, "copy"  , g8rc, IIC_LdStCOPY, []>;
1444 def CP_PASTE8  : X_L1_RA5_RB5<31, 902, "paste" , g8rc, IIC_LdStPASTE, []>;
1445 def CP_PASTE8o : X_L1_RA5_RB5<31, 902, "paste.", g8rc, IIC_LdStPASTE, []>,isDOT;
1448 // SLB Invalidate Entry Global
1449 def SLBIEG : XForm_26<31, 466, (outs), (ins gprc:$RS, gprc:$RB),
1450                       "slbieg $RS, $RB", IIC_SprSLBIEG, []>;
1451 // SLB Synchronize
1452 def SLBSYNC : XForm_0<31, 338, (outs), (ins), "slbsync", IIC_SprSLBSYNC, []>;
1454 } // IsISA3_0