[PowerPC] Add asm/disasm support for dcbt with hint
[oota-llvm.git] / lib / Target / PowerPC / PPCInstrInfo.td
1 //===-- PPCInstrInfo.td - The PowerPC Instruction Set ------*- 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 subset of the 32-bit PowerPC instruction set, as used
11 // by the PowerPC instruction selector.
12 //
13 //===----------------------------------------------------------------------===//
14
15 include "PPCInstrFormats.td"
16
17 //===----------------------------------------------------------------------===//
18 // PowerPC specific type constraints.
19 //
20 def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx
21   SDTCisVT<0, f64>, SDTCisPtrTy<1>
22 ]>;
23 def SDT_PPClfiwx : SDTypeProfile<1, 1, [ // lfiw[az]x
24   SDTCisVT<0, f64>, SDTCisPtrTy<1>
25 ]>;
26
27 def SDT_PPCCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
28 def SDT_PPCCallSeqEnd   : SDCallSeqEnd<[ SDTCisVT<0, i32>,
29                                          SDTCisVT<1, i32> ]>;
30 def SDT_PPCvperm   : SDTypeProfile<1, 3, [
31   SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>
32 ]>;
33
34 def SDT_PPCvcmp : SDTypeProfile<1, 3, [
35   SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>
36 ]>;
37
38 def SDT_PPCcondbr : SDTypeProfile<0, 3, [
39   SDTCisVT<0, i32>, SDTCisVT<2, OtherVT>
40 ]>;
41
42 def SDT_PPClbrx : SDTypeProfile<1, 2, [
43   SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
44 ]>;
45 def SDT_PPCstbrx : SDTypeProfile<0, 3, [
46   SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
47 ]>;
48
49 def SDT_PPCTC_ret : SDTypeProfile<0, 2, [
50   SDTCisPtrTy<0>, SDTCisVT<1, i32>
51 ]>;
52
53 def tocentry32 : Operand<iPTR> {
54   let MIOperandInfo = (ops i32imm:$imm);
55 }
56
57 def SDT_PPCqvfperm   : SDTypeProfile<1, 3, [
58   SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisVec<3>
59 ]>;
60 def SDT_PPCqvgpci   : SDTypeProfile<1, 1, [
61   SDTCisVec<0>, SDTCisInt<1>
62 ]>;
63 def SDT_PPCqvaligni   : SDTypeProfile<1, 3, [
64   SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<3>
65 ]>;
66 def SDT_PPCqvesplati   : SDTypeProfile<1, 2, [
67   SDTCisVec<0>, SDTCisSameAs<0, 1>, SDTCisInt<2>
68 ]>;
69
70 def SDT_PPCqbflt : SDTypeProfile<1, 1, [
71   SDTCisVec<0>, SDTCisVec<1>
72 ]>;
73
74 def SDT_PPCqvlfsb : SDTypeProfile<1, 1, [
75   SDTCisVec<0>, SDTCisPtrTy<1>
76 ]>;
77
78 //===----------------------------------------------------------------------===//
79 // PowerPC specific DAG Nodes.
80 //
81
82 def PPCfre    : SDNode<"PPCISD::FRE",     SDTFPUnaryOp, []>;
83 def PPCfrsqrte: SDNode<"PPCISD::FRSQRTE", SDTFPUnaryOp, []>;
84
85 def PPCfcfid  : SDNode<"PPCISD::FCFID",   SDTFPUnaryOp, []>;
86 def PPCfcfidu : SDNode<"PPCISD::FCFIDU",  SDTFPUnaryOp, []>;
87 def PPCfcfids : SDNode<"PPCISD::FCFIDS",  SDTFPRoundOp, []>;
88 def PPCfcfidus: SDNode<"PPCISD::FCFIDUS", SDTFPRoundOp, []>;
89 def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
90 def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
91 def PPCfctiduz: SDNode<"PPCISD::FCTIDUZ",SDTFPUnaryOp, []>;
92 def PPCfctiwuz: SDNode<"PPCISD::FCTIWUZ",SDTFPUnaryOp, []>;
93 def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx,
94                        [SDNPHasChain, SDNPMayStore]>;
95 def PPClfiwax : SDNode<"PPCISD::LFIWAX", SDT_PPClfiwx,
96                        [SDNPHasChain, SDNPMayLoad]>;
97 def PPClfiwzx : SDNode<"PPCISD::LFIWZX", SDT_PPClfiwx,
98                        [SDNPHasChain, SDNPMayLoad]>;
99
100 // Extract FPSCR (not modeled at the DAG level).
101 def PPCmffs   : SDNode<"PPCISD::MFFS",
102                        SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>, []>;
103
104 // Perform FADD in round-to-zero mode.
105 def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp, []>;
106
107
108 def PPCfsel   : SDNode<"PPCISD::FSEL",  
109    // Type constraint for fsel.
110    SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>, 
111                         SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
112
113 def PPChi       : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
114 def PPClo       : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
115 def PPCtoc_entry: SDNode<"PPCISD::TOC_ENTRY", SDTIntBinOp,
116                          [SDNPMayLoad, SDNPMemOperand]>;
117 def PPCvmaddfp  : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
118 def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
119
120 def PPCppc32GOT : SDNode<"PPCISD::PPC32_GOT", SDTIntLeaf, []>;
121
122 def PPCaddisGotTprelHA : SDNode<"PPCISD::ADDIS_GOT_TPREL_HA", SDTIntBinOp>;
123 def PPCldGotTprelL : SDNode<"PPCISD::LD_GOT_TPREL_L", SDTIntBinOp,
124                             [SDNPMayLoad]>;
125 def PPCaddTls     : SDNode<"PPCISD::ADD_TLS", SDTIntBinOp, []>;
126 def PPCaddisTlsgdHA : SDNode<"PPCISD::ADDIS_TLSGD_HA", SDTIntBinOp>;
127 def PPCaddiTlsgdL   : SDNode<"PPCISD::ADDI_TLSGD_L", SDTIntBinOp>;
128 def PPCgetTlsAddr   : SDNode<"PPCISD::GET_TLS_ADDR", SDTIntBinOp>;
129 def PPCaddiTlsgdLAddr : SDNode<"PPCISD::ADDI_TLSGD_L_ADDR",
130                                SDTypeProfile<1, 3, [
131                                  SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
132                                  SDTCisSameAs<0, 3>, SDTCisInt<0> ]>>;
133 def PPCaddisTlsldHA : SDNode<"PPCISD::ADDIS_TLSLD_HA", SDTIntBinOp>;
134 def PPCaddiTlsldL   : SDNode<"PPCISD::ADDI_TLSLD_L", SDTIntBinOp>;
135 def PPCgetTlsldAddr : SDNode<"PPCISD::GET_TLSLD_ADDR", SDTIntBinOp>;
136 def PPCaddiTlsldLAddr : SDNode<"PPCISD::ADDI_TLSLD_L_ADDR",
137                                SDTypeProfile<1, 3, [
138                                  SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
139                                  SDTCisSameAs<0, 3>, SDTCisInt<0> ]>>;
140 def PPCaddisDtprelHA : SDNode<"PPCISD::ADDIS_DTPREL_HA", SDTIntBinOp>;
141 def PPCaddiDtprelL   : SDNode<"PPCISD::ADDI_DTPREL_L", SDTIntBinOp>;
142
143 def PPCvperm    : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
144
145 def PPCqvfperm   : SDNode<"PPCISD::QVFPERM", SDT_PPCqvfperm, []>;
146 def PPCqvgpci    : SDNode<"PPCISD::QVGPCI", SDT_PPCqvgpci, []>;
147 def PPCqvaligni  : SDNode<"PPCISD::QVALIGNI", SDT_PPCqvaligni, []>;
148 def PPCqvesplati : SDNode<"PPCISD::QVESPLATI", SDT_PPCqvesplati, []>;
149
150 def PPCqbflt     : SDNode<"PPCISD::QBFLT", SDT_PPCqbflt, []>;
151
152 def PPCqvlfsb    : SDNode<"PPCISD::QVLFSb", SDT_PPCqvlfsb,
153                           [SDNPHasChain, SDNPMayLoad]>;
154
155 def PPCcmpb     : SDNode<"PPCISD::CMPB", SDTIntBinOp, []>;
156
157 // These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
158 // amounts.  These nodes are generated by the multi-precision shift code.
159 def PPCsrl        : SDNode<"PPCISD::SRL"       , SDTIntShiftOp>;
160 def PPCsra        : SDNode<"PPCISD::SRA"       , SDTIntShiftOp>;
161 def PPCshl        : SDNode<"PPCISD::SHL"       , SDTIntShiftOp>;
162
163 // These are target-independent nodes, but have target-specific formats.
164 def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
165                            [SDNPHasChain, SDNPOutGlue]>;
166 def callseq_end   : SDNode<"ISD::CALLSEQ_END",   SDT_PPCCallSeqEnd,
167                            [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
168
169 def SDT_PPCCall   : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
170 def PPCcall  : SDNode<"PPCISD::CALL", SDT_PPCCall,
171                       [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
172                        SDNPVariadic]>;
173 def PPCcall_nop  : SDNode<"PPCISD::CALL_NOP", SDT_PPCCall,
174                           [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
175                            SDNPVariadic]>;
176 def PPCmtctr      : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
177                            [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
178 def PPCbctrl : SDNode<"PPCISD::BCTRL", SDTNone,
179                       [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
180                        SDNPVariadic]>;
181 def PPCbctrl_load_toc : SDNode<"PPCISD::BCTRL_LOAD_TOC",
182                                SDTypeProfile<0, 1, []>,
183                                [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
184                                 SDNPVariadic]>;
185
186 def retflag       : SDNode<"PPCISD::RET_FLAG", SDTNone,
187                            [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
188
189 def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret,
190                         [SDNPHasChain,  SDNPOptInGlue, SDNPVariadic]>;
191
192 def PPCeh_sjlj_setjmp  : SDNode<"PPCISD::EH_SJLJ_SETJMP",
193                                 SDTypeProfile<1, 1, [SDTCisInt<0>,
194                                                      SDTCisPtrTy<1>]>,
195                                 [SDNPHasChain, SDNPSideEffect]>;
196 def PPCeh_sjlj_longjmp : SDNode<"PPCISD::EH_SJLJ_LONGJMP",
197                                 SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>,
198                                 [SDNPHasChain, SDNPSideEffect]>;
199
200 def SDT_PPCsc     : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
201 def PPCsc         : SDNode<"PPCISD::SC", SDT_PPCsc,
202                            [SDNPHasChain, SDNPSideEffect]>;
203
204 def PPCvcmp       : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
205 def PPCvcmp_o     : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutGlue]>;
206
207 def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
208                            [SDNPHasChain, SDNPOptInGlue]>;
209
210 def PPClbrx       : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
211                            [SDNPHasChain, SDNPMayLoad]>;
212 def PPCstbrx      : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
213                            [SDNPHasChain, SDNPMayStore]>;
214
215 // Instructions to set/unset CR bit 6 for SVR4 vararg calls
216 def PPCcr6set   : SDNode<"PPCISD::CR6SET", SDTNone,
217                          [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
218 def PPCcr6unset : SDNode<"PPCISD::CR6UNSET", SDTNone,
219                          [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
220
221 // Instructions to support dynamic alloca.
222 def SDTDynOp  : SDTypeProfile<1, 2, []>;
223 def PPCdynalloc   : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
224
225 //===----------------------------------------------------------------------===//
226 // PowerPC specific transformation functions and pattern fragments.
227 //
228
229 def SHL32 : SDNodeXForm<imm, [{
230   // Transformation function: 31 - imm
231   return getI32Imm(31 - N->getZExtValue());
232 }]>;
233
234 def SRL32 : SDNodeXForm<imm, [{
235   // Transformation function: 32 - imm
236   return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue()) : getI32Imm(0);
237 }]>;
238
239 def LO16 : SDNodeXForm<imm, [{
240   // Transformation function: get the low 16 bits.
241   return getI32Imm((unsigned short)N->getZExtValue());
242 }]>;
243
244 def HI16 : SDNodeXForm<imm, [{
245   // Transformation function: shift the immediate value down into the low bits.
246   return getI32Imm((unsigned)N->getZExtValue() >> 16);
247 }]>;
248
249 def HA16 : SDNodeXForm<imm, [{
250   // Transformation function: shift the immediate value down into the low bits.
251   signed int Val = N->getZExtValue();
252   return getI32Imm((Val - (signed short)Val) >> 16);
253 }]>;
254 def MB : SDNodeXForm<imm, [{
255   // Transformation function: get the start bit of a mask
256   unsigned mb = 0, me;
257   (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
258   return getI32Imm(mb);
259 }]>;
260
261 def ME : SDNodeXForm<imm, [{
262   // Transformation function: get the end bit of a mask
263   unsigned mb, me = 0;
264   (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
265   return getI32Imm(me);
266 }]>;
267 def maskimm32 : PatLeaf<(imm), [{
268   // maskImm predicate - True if immediate is a run of ones.
269   unsigned mb, me;
270   if (N->getValueType(0) == MVT::i32)
271     return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
272   else
273     return false;
274 }]>;
275
276 def imm32SExt16  : Operand<i32>, ImmLeaf<i32, [{
277   // imm32SExt16 predicate - True if the i32 immediate fits in a 16-bit
278   // sign extended field.  Used by instructions like 'addi'.
279   return (int32_t)Imm == (short)Imm;
280 }]>;
281 def imm64SExt16  : Operand<i64>, ImmLeaf<i64, [{
282   // imm64SExt16 predicate - True if the i64 immediate fits in a 16-bit
283   // sign extended field.  Used by instructions like 'addi'.
284   return (int64_t)Imm == (short)Imm;
285 }]>;
286 def immZExt16  : PatLeaf<(imm), [{
287   // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
288   // field.  Used by instructions like 'ori'.
289   return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
290 }], LO16>;
291
292 // imm16Shifted* - These match immediates where the low 16-bits are zero.  There
293 // are two forms: imm16ShiftedSExt and imm16ShiftedZExt.  These two forms are
294 // identical in 32-bit mode, but in 64-bit mode, they return true if the
295 // immediate fits into a sign/zero extended 32-bit immediate (with the low bits
296 // clear).
297 def imm16ShiftedZExt : PatLeaf<(imm), [{
298   // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
299   // immediate are set.  Used by instructions like 'xoris'.
300   return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
301 }], HI16>;
302
303 def imm16ShiftedSExt : PatLeaf<(imm), [{
304   // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
305   // immediate are set.  Used by instructions like 'addis'.  Identical to 
306   // imm16ShiftedZExt in 32-bit mode.
307   if (N->getZExtValue() & 0xFFFF) return false;
308   if (N->getValueType(0) == MVT::i32)
309     return true;
310   // For 64-bit, make sure it is sext right.
311   return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
312 }], HI16>;
313
314 def imm64ZExt32  : Operand<i64>, ImmLeaf<i64, [{
315   // imm64ZExt32 predicate - True if the i64 immediate fits in a 32-bit
316   // zero extended field.
317   return isUInt<32>(Imm);
318 }]>;
319
320 // Some r+i load/store instructions (such as LD, STD, LDU, etc.) that require
321 // restricted memrix (4-aligned) constants are alignment sensitive. If these
322 // offsets are hidden behind TOC entries than the values of the lower-order
323 // bits cannot be checked directly. As a result, we need to also incorporate
324 // an alignment check into the relevant patterns.
325
326 def aligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
327   return cast<LoadSDNode>(N)->getAlignment() >= 4;
328 }]>;
329 def aligned4store : PatFrag<(ops node:$val, node:$ptr),
330                             (store node:$val, node:$ptr), [{
331   return cast<StoreSDNode>(N)->getAlignment() >= 4;
332 }]>;
333 def aligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
334   return cast<LoadSDNode>(N)->getAlignment() >= 4;
335 }]>;
336 def aligned4pre_store : PatFrag<
337                           (ops node:$val, node:$base, node:$offset),
338                           (pre_store node:$val, node:$base, node:$offset), [{
339   return cast<StoreSDNode>(N)->getAlignment() >= 4;
340 }]>;
341
342 def unaligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
343   return cast<LoadSDNode>(N)->getAlignment() < 4;
344 }]>;
345 def unaligned4store : PatFrag<(ops node:$val, node:$ptr),
346                               (store node:$val, node:$ptr), [{
347   return cast<StoreSDNode>(N)->getAlignment() < 4;
348 }]>;
349 def unaligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
350   return cast<LoadSDNode>(N)->getAlignment() < 4;
351 }]>;
352
353 //===----------------------------------------------------------------------===//
354 // PowerPC Flag Definitions.
355
356 class isPPC64 { bit PPC64 = 1; }
357 class isDOT   { bit RC = 1; }
358
359 class RegConstraint<string C> {
360   string Constraints = C;
361 }
362 class NoEncode<string E> {
363   string DisableEncoding = E;
364 }
365
366
367 //===----------------------------------------------------------------------===//
368 // PowerPC Operand Definitions.
369
370 // In the default PowerPC assembler syntax, registers are specified simply
371 // by number, so they cannot be distinguished from immediate values (without
372 // looking at the opcode).  This means that the default operand matching logic
373 // for the asm parser does not work, and we need to specify custom matchers.
374 // Since those can only be specified with RegisterOperand classes and not
375 // directly on the RegisterClass, all instructions patterns used by the asm
376 // parser need to use a RegisterOperand (instead of a RegisterClass) for
377 // all their register operands.
378 // For this purpose, we define one RegisterOperand for each RegisterClass,
379 // using the same name as the class, just in lower case.
380
381 def PPCRegGPRCAsmOperand : AsmOperandClass {
382   let Name = "RegGPRC"; let PredicateMethod = "isRegNumber";
383 }
384 def gprc : RegisterOperand<GPRC> {
385   let ParserMatchClass = PPCRegGPRCAsmOperand;
386 }
387 def PPCRegG8RCAsmOperand : AsmOperandClass {
388   let Name = "RegG8RC"; let PredicateMethod = "isRegNumber";
389 }
390 def g8rc : RegisterOperand<G8RC> {
391   let ParserMatchClass = PPCRegG8RCAsmOperand;
392 }
393 def PPCRegGPRCNoR0AsmOperand : AsmOperandClass {
394   let Name = "RegGPRCNoR0"; let PredicateMethod = "isRegNumber";
395 }
396 def gprc_nor0 : RegisterOperand<GPRC_NOR0> {
397   let ParserMatchClass = PPCRegGPRCNoR0AsmOperand;
398 }
399 def PPCRegG8RCNoX0AsmOperand : AsmOperandClass {
400   let Name = "RegG8RCNoX0"; let PredicateMethod = "isRegNumber";
401 }
402 def g8rc_nox0 : RegisterOperand<G8RC_NOX0> {
403   let ParserMatchClass = PPCRegG8RCNoX0AsmOperand;
404 }
405 def PPCRegF8RCAsmOperand : AsmOperandClass {
406   let Name = "RegF8RC"; let PredicateMethod = "isRegNumber";
407 }
408 def f8rc : RegisterOperand<F8RC> {
409   let ParserMatchClass = PPCRegF8RCAsmOperand;
410 }
411 def PPCRegF4RCAsmOperand : AsmOperandClass {
412   let Name = "RegF4RC"; let PredicateMethod = "isRegNumber";
413 }
414 def f4rc : RegisterOperand<F4RC> {
415   let ParserMatchClass = PPCRegF4RCAsmOperand;
416 }
417 def PPCRegVRRCAsmOperand : AsmOperandClass {
418   let Name = "RegVRRC"; let PredicateMethod = "isRegNumber";
419 }
420 def vrrc : RegisterOperand<VRRC> {
421   let ParserMatchClass = PPCRegVRRCAsmOperand;
422 }
423 def PPCRegCRBITRCAsmOperand : AsmOperandClass {
424   let Name = "RegCRBITRC"; let PredicateMethod = "isCRBitNumber";
425 }
426 def crbitrc : RegisterOperand<CRBITRC> {
427   let ParserMatchClass = PPCRegCRBITRCAsmOperand;
428 }
429 def PPCRegCRRCAsmOperand : AsmOperandClass {
430   let Name = "RegCRRC"; let PredicateMethod = "isCCRegNumber";
431 }
432 def crrc : RegisterOperand<CRRC> {
433   let ParserMatchClass = PPCRegCRRCAsmOperand;
434 }
435 def crrc0 : RegisterOperand<CRRC0> {
436   let ParserMatchClass = PPCRegCRRCAsmOperand;
437 }
438
439 def PPCU1ImmAsmOperand : AsmOperandClass {
440   let Name = "U1Imm"; let PredicateMethod = "isU1Imm";
441   let RenderMethod = "addImmOperands";
442 }
443 def u1imm   : Operand<i32> {
444   let PrintMethod = "printU1ImmOperand";
445   let ParserMatchClass = PPCU1ImmAsmOperand;
446 }
447
448 def PPCU2ImmAsmOperand : AsmOperandClass {
449   let Name = "U2Imm"; let PredicateMethod = "isU2Imm";
450   let RenderMethod = "addImmOperands";
451 }
452 def u2imm   : Operand<i32> {
453   let PrintMethod = "printU2ImmOperand";
454   let ParserMatchClass = PPCU2ImmAsmOperand;
455 }
456
457 def PPCU3ImmAsmOperand : AsmOperandClass {
458   let Name = "U3Imm"; let PredicateMethod = "isU3Imm";
459   let RenderMethod = "addImmOperands";
460 }
461 def u3imm   : Operand<i32> {
462   let PrintMethod = "printU3ImmOperand";
463   let ParserMatchClass = PPCU3ImmAsmOperand;
464 }
465
466 def PPCU4ImmAsmOperand : AsmOperandClass {
467   let Name = "U4Imm"; let PredicateMethod = "isU4Imm";
468   let RenderMethod = "addImmOperands";
469 }
470 def u4imm   : Operand<i32> {
471   let PrintMethod = "printU4ImmOperand";
472   let ParserMatchClass = PPCU4ImmAsmOperand;
473 }
474 def PPCS5ImmAsmOperand : AsmOperandClass {
475   let Name = "S5Imm"; let PredicateMethod = "isS5Imm";
476   let RenderMethod = "addImmOperands";
477 }
478 def s5imm   : Operand<i32> {
479   let PrintMethod = "printS5ImmOperand";
480   let ParserMatchClass = PPCS5ImmAsmOperand;
481   let DecoderMethod = "decodeSImmOperand<5>";
482 }
483 def PPCU5ImmAsmOperand : AsmOperandClass {
484   let Name = "U5Imm"; let PredicateMethod = "isU5Imm";
485   let RenderMethod = "addImmOperands";
486 }
487 def u5imm   : Operand<i32> {
488   let PrintMethod = "printU5ImmOperand";
489   let ParserMatchClass = PPCU5ImmAsmOperand;
490   let DecoderMethod = "decodeUImmOperand<5>";
491 }
492 def PPCU6ImmAsmOperand : AsmOperandClass {
493   let Name = "U6Imm"; let PredicateMethod = "isU6Imm";
494   let RenderMethod = "addImmOperands";
495 }
496 def u6imm   : Operand<i32> {
497   let PrintMethod = "printU6ImmOperand";
498   let ParserMatchClass = PPCU6ImmAsmOperand;
499   let DecoderMethod = "decodeUImmOperand<6>";
500 }
501 def PPCU12ImmAsmOperand : AsmOperandClass {
502   let Name = "U12Imm"; let PredicateMethod = "isU12Imm";
503   let RenderMethod = "addImmOperands";
504 }
505 def u12imm  : Operand<i32> {
506   let PrintMethod = "printU12ImmOperand";
507   let ParserMatchClass = PPCU12ImmAsmOperand;
508   let DecoderMethod = "decodeUImmOperand<12>";
509 }
510 def PPCS16ImmAsmOperand : AsmOperandClass {
511   let Name = "S16Imm"; let PredicateMethod = "isS16Imm";
512   let RenderMethod = "addS16ImmOperands";
513 }
514 def s16imm  : Operand<i32> {
515   let PrintMethod = "printS16ImmOperand";
516   let EncoderMethod = "getImm16Encoding";
517   let ParserMatchClass = PPCS16ImmAsmOperand;
518   let DecoderMethod = "decodeSImmOperand<16>";
519 }
520 def PPCU16ImmAsmOperand : AsmOperandClass {
521   let Name = "U16Imm"; let PredicateMethod = "isU16Imm";
522   let RenderMethod = "addU16ImmOperands";
523 }
524 def u16imm  : Operand<i32> {
525   let PrintMethod = "printU16ImmOperand";
526   let EncoderMethod = "getImm16Encoding";
527   let ParserMatchClass = PPCU16ImmAsmOperand;
528   let DecoderMethod = "decodeUImmOperand<16>";
529 }
530 def PPCS17ImmAsmOperand : AsmOperandClass {
531   let Name = "S17Imm"; let PredicateMethod = "isS17Imm";
532   let RenderMethod = "addS16ImmOperands";
533 }
534 def s17imm  : Operand<i32> {
535   // This operand type is used for addis/lis to allow the assembler parser
536   // to accept immediates in the range -65536..65535 for compatibility with
537   // the GNU assembler.  The operand is treated as 16-bit otherwise.
538   let PrintMethod = "printS16ImmOperand";
539   let EncoderMethod = "getImm16Encoding";
540   let ParserMatchClass = PPCS17ImmAsmOperand;
541   let DecoderMethod = "decodeSImmOperand<16>";
542 }
543 def PPCDirectBrAsmOperand : AsmOperandClass {
544   let Name = "DirectBr"; let PredicateMethod = "isDirectBr";
545   let RenderMethod = "addBranchTargetOperands";
546 }
547 def directbrtarget : Operand<OtherVT> {
548   let PrintMethod = "printBranchOperand";
549   let EncoderMethod = "getDirectBrEncoding";
550   let ParserMatchClass = PPCDirectBrAsmOperand;
551 }
552 def absdirectbrtarget : Operand<OtherVT> {
553   let PrintMethod = "printAbsBranchOperand";
554   let EncoderMethod = "getAbsDirectBrEncoding";
555   let ParserMatchClass = PPCDirectBrAsmOperand;
556 }
557 def PPCCondBrAsmOperand : AsmOperandClass {
558   let Name = "CondBr"; let PredicateMethod = "isCondBr";
559   let RenderMethod = "addBranchTargetOperands";
560 }
561 def condbrtarget : Operand<OtherVT> {
562   let PrintMethod = "printBranchOperand";
563   let EncoderMethod = "getCondBrEncoding";
564   let ParserMatchClass = PPCCondBrAsmOperand;
565 }
566 def abscondbrtarget : Operand<OtherVT> {
567   let PrintMethod = "printAbsBranchOperand";
568   let EncoderMethod = "getAbsCondBrEncoding";
569   let ParserMatchClass = PPCCondBrAsmOperand;
570 }
571 def calltarget : Operand<iPTR> {
572   let PrintMethod = "printBranchOperand";
573   let EncoderMethod = "getDirectBrEncoding";
574   let ParserMatchClass = PPCDirectBrAsmOperand;
575 }
576 def abscalltarget : Operand<iPTR> {
577   let PrintMethod = "printAbsBranchOperand";
578   let EncoderMethod = "getAbsDirectBrEncoding";
579   let ParserMatchClass = PPCDirectBrAsmOperand;
580 }
581 def PPCCRBitMaskOperand : AsmOperandClass {
582  let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask";
583 }
584 def crbitm: Operand<i8> {
585   let PrintMethod = "printcrbitm";
586   let EncoderMethod = "get_crbitm_encoding";
587   let DecoderMethod = "decodeCRBitMOperand";
588   let ParserMatchClass = PPCCRBitMaskOperand;
589 }
590 // Address operands
591 // A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
592 def PPCRegGxRCNoR0Operand : AsmOperandClass {
593   let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber";
594 }
595 def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> {
596   let ParserMatchClass = PPCRegGxRCNoR0Operand;
597 }
598 // A version of ptr_rc usable with the asm parser.
599 def PPCRegGxRCOperand : AsmOperandClass {
600   let Name = "RegGxRC"; let PredicateMethod = "isRegNumber";
601 }
602 def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> {
603   let ParserMatchClass = PPCRegGxRCOperand;
604 }
605
606 def PPCDispRIOperand : AsmOperandClass {
607  let Name = "DispRI"; let PredicateMethod = "isS16Imm";
608  let RenderMethod = "addS16ImmOperands";
609 }
610 def dispRI : Operand<iPTR> {
611   let ParserMatchClass = PPCDispRIOperand;
612 }
613 def PPCDispRIXOperand : AsmOperandClass {
614  let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4";
615  let RenderMethod = "addImmOperands";
616 }
617 def dispRIX : Operand<iPTR> {
618   let ParserMatchClass = PPCDispRIXOperand;
619 }
620 def PPCDispSPE8Operand : AsmOperandClass {
621  let Name = "DispSPE8"; let PredicateMethod = "isU8ImmX8";
622  let RenderMethod = "addImmOperands";
623 }
624 def dispSPE8 : Operand<iPTR> {
625   let ParserMatchClass = PPCDispSPE8Operand;
626 }
627 def PPCDispSPE4Operand : AsmOperandClass {
628  let Name = "DispSPE4"; let PredicateMethod = "isU7ImmX4";
629  let RenderMethod = "addImmOperands";
630 }
631 def dispSPE4 : Operand<iPTR> {
632   let ParserMatchClass = PPCDispSPE4Operand;
633 }
634 def PPCDispSPE2Operand : AsmOperandClass {
635  let Name = "DispSPE2"; let PredicateMethod = "isU6ImmX2";
636  let RenderMethod = "addImmOperands";
637 }
638 def dispSPE2 : Operand<iPTR> {
639   let ParserMatchClass = PPCDispSPE2Operand;
640 }
641
642 def memri : Operand<iPTR> {
643   let PrintMethod = "printMemRegImm";
644   let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
645   let EncoderMethod = "getMemRIEncoding";
646   let DecoderMethod = "decodeMemRIOperands";
647 }
648 def memrr : Operand<iPTR> {
649   let PrintMethod = "printMemRegReg";
650   let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg);
651 }
652 def memrix : Operand<iPTR> {   // memri where the imm is 4-aligned.
653   let PrintMethod = "printMemRegImm";
654   let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
655   let EncoderMethod = "getMemRIXEncoding";
656   let DecoderMethod = "decodeMemRIXOperands";
657 }
658 def spe8dis : Operand<iPTR> {   // SPE displacement where the imm is 8-aligned.
659   let PrintMethod = "printMemRegImm";
660   let MIOperandInfo = (ops dispSPE8:$imm, ptr_rc_nor0:$reg);
661   let EncoderMethod = "getSPE8DisEncoding";
662 }
663 def spe4dis : Operand<iPTR> {   // SPE displacement where the imm is 4-aligned.
664   let PrintMethod = "printMemRegImm";
665   let MIOperandInfo = (ops dispSPE4:$imm, ptr_rc_nor0:$reg);
666   let EncoderMethod = "getSPE4DisEncoding";
667 }
668 def spe2dis : Operand<iPTR> {   // SPE displacement where the imm is 2-aligned.
669   let PrintMethod = "printMemRegImm";
670   let MIOperandInfo = (ops dispSPE2:$imm, ptr_rc_nor0:$reg);
671   let EncoderMethod = "getSPE2DisEncoding";
672 }
673
674 // A single-register address. This is used with the SjLj
675 // pseudo-instructions.
676 def memr : Operand<iPTR> {
677   let MIOperandInfo = (ops ptr_rc:$ptrreg);
678 }
679 def PPCTLSRegOperand : AsmOperandClass {
680   let Name = "TLSReg"; let PredicateMethod = "isTLSReg";
681   let RenderMethod = "addTLSRegOperands";
682 }
683 def tlsreg32 : Operand<i32> {
684   let EncoderMethod = "getTLSRegEncoding";
685   let ParserMatchClass = PPCTLSRegOperand;
686 }
687 def tlsgd32 : Operand<i32> {}
688 def tlscall32 : Operand<i32> {
689   let PrintMethod = "printTLSCall";
690   let MIOperandInfo = (ops calltarget:$func, tlsgd32:$sym);
691   let EncoderMethod = "getTLSCallEncoding";
692 }
693
694 // PowerPC Predicate operand.
695 def pred : Operand<OtherVT> {
696   let PrintMethod = "printPredicateOperand";
697   let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
698 }
699
700 // Define PowerPC specific addressing mode.
701 def iaddr  : ComplexPattern<iPTR, 2, "SelectAddrImm",    [], []>;
702 def xaddr  : ComplexPattern<iPTR, 2, "SelectAddrIdx",    [], []>;
703 def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
704 def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmX4",  [], []>; // "std"
705
706 // The address in a single register. This is used with the SjLj
707 // pseudo-instructions.
708 def addr   : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
709
710 /// This is just the offset part of iaddr, used for preinc.
711 def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
712
713 //===----------------------------------------------------------------------===//
714 // PowerPC Instruction Predicate Definitions.
715 def In32BitMode  : Predicate<"!PPCSubTarget->isPPC64()">;
716 def In64BitMode  : Predicate<"PPCSubTarget->isPPC64()">;
717 def IsBookE  : Predicate<"PPCSubTarget->isBookE()">;
718 def IsNotBookE  : Predicate<"!PPCSubTarget->isBookE()">;
719 def HasOnlyMSYNC : Predicate<"PPCSubTarget->hasOnlyMSYNC()">;
720 def HasSYNC   : Predicate<"!PPCSubTarget->hasOnlyMSYNC()">;
721 def IsPPC4xx  : Predicate<"PPCSubTarget->isPPC4xx()">;
722 def IsPPC6xx  : Predicate<"PPCSubTarget->isPPC6xx()">;
723 def IsE500  : Predicate<"PPCSubTarget->isE500()">;
724 def HasSPE  : Predicate<"PPCSubTarget->HasSPE()">;
725 def HasICBT : Predicate<"PPCSubTarget->hasICBT()">;
726 def HasPartwordAtomics : Predicate<"PPCSubTarget->hasPartwordAtomics()">;
727 def NoNaNsFPMath : Predicate<"TM.Options.NoNaNsFPMath">;
728 def NaNsFPMath   : Predicate<"!TM.Options.NoNaNsFPMath">;
729 def HasBPERMD : Predicate<"PPCSubTarget->hasBPERMD()">;
730 def HasExtDiv : Predicate<"PPCSubTarget->hasExtDiv()">;
731
732 //===----------------------------------------------------------------------===//
733 // PowerPC Multiclass Definitions.
734
735 multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
736                     string asmbase, string asmstr, InstrItinClass itin,
737                     list<dag> pattern> {
738   let BaseName = asmbase in {
739     def NAME : XForm_6<opcode, xo, OOL, IOL,
740                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
741                        pattern>, RecFormRel;
742     let Defs = [CR0] in
743     def o    : XForm_6<opcode, xo, OOL, IOL,
744                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
745                        []>, isDOT, RecFormRel;
746   }
747 }
748
749 multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
750                      string asmbase, string asmstr, InstrItinClass itin,
751                      list<dag> pattern> {
752   let BaseName = asmbase in {
753     let Defs = [CARRY] in
754     def NAME : XForm_6<opcode, xo, OOL, IOL,
755                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
756                        pattern>, RecFormRel;
757     let Defs = [CARRY, CR0] in
758     def o    : XForm_6<opcode, xo, OOL, IOL,
759                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
760                        []>, isDOT, RecFormRel;
761   }
762 }
763
764 multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
765                       string asmbase, string asmstr, InstrItinClass itin,
766                       list<dag> pattern> {
767   let BaseName = asmbase in {
768     let Defs = [CARRY] in
769     def NAME : XForm_10<opcode, xo, OOL, IOL,
770                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
771                        pattern>, RecFormRel;
772     let Defs = [CARRY, CR0] in
773     def o    : XForm_10<opcode, xo, OOL, IOL,
774                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
775                        []>, isDOT, RecFormRel;
776   }
777 }
778
779 multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
780                     string asmbase, string asmstr, InstrItinClass itin,
781                     list<dag> pattern> {
782   let BaseName = asmbase in {
783     def NAME : XForm_11<opcode, xo, OOL, IOL,
784                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
785                        pattern>, RecFormRel;
786     let Defs = [CR0] in
787     def o    : XForm_11<opcode, xo, OOL, IOL,
788                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
789                        []>, isDOT, RecFormRel;
790   }
791 }
792
793 multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
794                     string asmbase, string asmstr, InstrItinClass itin,
795                     list<dag> pattern> {
796   let BaseName = asmbase in {
797     def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
798                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
799                        pattern>, RecFormRel;
800     let Defs = [CR0] in
801     def o    : XOForm_1<opcode, xo, oe, OOL, IOL,
802                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
803                        []>, isDOT, RecFormRel;
804   }
805 }
806
807 // Multiclass for instructions for which the non record form is not cracked
808 // and the record form is cracked (i.e. divw, mullw, etc.)
809 multiclass XOForm_1rcr<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
810                       string asmbase, string asmstr, InstrItinClass itin,
811                       list<dag> pattern> {
812   let BaseName = asmbase in {
813     def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
814                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
815                        pattern>, RecFormRel;
816     let Defs = [CR0] in
817     def o    : XOForm_1<opcode, xo, oe, OOL, IOL,
818                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
819                        []>, isDOT, RecFormRel, PPC970_DGroup_First,
820                        PPC970_DGroup_Cracked;
821   }
822 }
823
824 multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
825                       string asmbase, string asmstr, InstrItinClass itin,
826                       list<dag> pattern> {
827   let BaseName = asmbase in {
828     let Defs = [CARRY] in
829     def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
830                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
831                        pattern>, RecFormRel;
832     let Defs = [CARRY, CR0] in
833     def o    : XOForm_1<opcode, xo, oe, OOL, IOL,
834                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
835                        []>, isDOT, RecFormRel;
836   }
837 }
838
839 multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
840                     string asmbase, string asmstr, InstrItinClass itin,
841                     list<dag> pattern> {
842   let BaseName = asmbase in {
843     def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
844                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
845                        pattern>, RecFormRel;
846     let Defs = [CR0] in
847     def o    : XOForm_3<opcode, xo, oe, OOL, IOL,
848                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
849                        []>, isDOT, RecFormRel;
850   }
851 }
852
853 multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
854                       string asmbase, string asmstr, InstrItinClass itin,
855                       list<dag> pattern> {
856   let BaseName = asmbase in {
857     let Defs = [CARRY] in
858     def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
859                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
860                        pattern>, RecFormRel;
861     let Defs = [CARRY, CR0] in
862     def o    : XOForm_3<opcode, xo, oe, OOL, IOL,
863                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
864                        []>, isDOT, RecFormRel;
865   }
866 }
867
868 multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
869                     string asmbase, string asmstr, InstrItinClass itin,
870                     list<dag> pattern> {
871   let BaseName = asmbase in {
872     def NAME : MForm_2<opcode, OOL, IOL,
873                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
874                        pattern>, RecFormRel;
875     let Defs = [CR0] in
876     def o    : MForm_2<opcode, OOL, IOL,
877                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
878                        []>, isDOT, RecFormRel;
879   }
880 }
881
882 multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
883                     string asmbase, string asmstr, InstrItinClass itin,
884                     list<dag> pattern> {
885   let BaseName = asmbase in {
886     def NAME : MDForm_1<opcode, xo, OOL, IOL,
887                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
888                        pattern>, RecFormRel;
889     let Defs = [CR0] in
890     def o    : MDForm_1<opcode, xo, OOL, IOL,
891                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
892                        []>, isDOT, RecFormRel;
893   }
894 }
895
896 multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
897                      string asmbase, string asmstr, InstrItinClass itin,
898                      list<dag> pattern> {
899   let BaseName = asmbase in {
900     def NAME : MDSForm_1<opcode, xo, OOL, IOL,
901                         !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
902                         pattern>, RecFormRel;
903     let Defs = [CR0] in
904     def o    : MDSForm_1<opcode, xo, OOL, IOL,
905                         !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
906                         []>, isDOT, RecFormRel;
907   }
908 }
909
910 multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
911                       string asmbase, string asmstr, InstrItinClass itin,
912                       list<dag> pattern> {
913   let BaseName = asmbase in {
914     let Defs = [CARRY] in
915     def NAME : XSForm_1<opcode, xo, OOL, IOL,
916                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
917                        pattern>, RecFormRel;
918     let Defs = [CARRY, CR0] in
919     def o    : XSForm_1<opcode, xo, OOL, IOL,
920                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
921                        []>, isDOT, RecFormRel;
922   }
923 }
924
925 multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
926                     string asmbase, string asmstr, InstrItinClass itin,
927                     list<dag> pattern> {
928   let BaseName = asmbase in {
929     def NAME : XForm_26<opcode, xo, OOL, IOL,
930                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
931                        pattern>, RecFormRel;
932     let Defs = [CR1] in
933     def o    : XForm_26<opcode, xo, OOL, IOL,
934                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
935                        []>, isDOT, RecFormRel;
936   }
937 }
938
939 multiclass XForm_28r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
940                     string asmbase, string asmstr, InstrItinClass itin,
941                     list<dag> pattern> {
942   let BaseName = asmbase in {
943     def NAME : XForm_28<opcode, xo, OOL, IOL,
944                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
945                        pattern>, RecFormRel;
946     let Defs = [CR1] in
947     def o    : XForm_28<opcode, xo, OOL, IOL,
948                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
949                        []>, isDOT, RecFormRel;
950   }
951 }
952
953 multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
954                     string asmbase, string asmstr, InstrItinClass itin,
955                     list<dag> pattern> {
956   let BaseName = asmbase in {
957     def NAME : AForm_1<opcode, xo, OOL, IOL,
958                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
959                        pattern>, RecFormRel;
960     let Defs = [CR1] in
961     def o    : AForm_1<opcode, xo, OOL, IOL,
962                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
963                        []>, isDOT, RecFormRel;
964   }
965 }
966
967 multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
968                     string asmbase, string asmstr, InstrItinClass itin,
969                     list<dag> pattern> {
970   let BaseName = asmbase in {
971     def NAME : AForm_2<opcode, xo, OOL, IOL,
972                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
973                        pattern>, RecFormRel;
974     let Defs = [CR1] in
975     def o    : AForm_2<opcode, xo, OOL, IOL,
976                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
977                        []>, isDOT, RecFormRel;
978   }
979 }
980
981 multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
982                     string asmbase, string asmstr, InstrItinClass itin,
983                     list<dag> pattern> {
984   let BaseName = asmbase in {
985     def NAME : AForm_3<opcode, xo, OOL, IOL,
986                        !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
987                        pattern>, RecFormRel;
988     let Defs = [CR1] in
989     def o    : AForm_3<opcode, xo, OOL, IOL,
990                        !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
991                        []>, isDOT, RecFormRel;
992   }
993 }
994
995 //===----------------------------------------------------------------------===//
996 // PowerPC Instruction Definitions.
997
998 // Pseudo-instructions:
999
1000 let hasCtrlDep = 1 in {
1001 let Defs = [R1], Uses = [R1] in {
1002 def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
1003                               [(callseq_start timm:$amt)]>;
1004 def ADJCALLSTACKUP   : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
1005                               [(callseq_end timm:$amt1, timm:$amt2)]>;
1006 }
1007
1008 def UPDATE_VRSAVE    : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
1009                               "UPDATE_VRSAVE $rD, $rS", []>;
1010 }
1011
1012 let Defs = [R1], Uses = [R1] in
1013 def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
1014                        [(set i32:$result,
1015                              (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
1016                          
1017 // SELECT_CC_* - Used to implement the SELECT_CC DAG operation.  Expanded after
1018 // instruction selection into a branch sequence.
1019 let usesCustomInserter = 1,    // Expanded after instruction selection.
1020     PPC970_Single = 1 in {
1021   // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
1022   // because either operand might become the first operand in an isel, and
1023   // that operand cannot be r0.
1024   def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
1025                               gprc_nor0:$T, gprc_nor0:$F,
1026                               i32imm:$BROPC), "#SELECT_CC_I4",
1027                               []>;
1028   def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
1029                               g8rc_nox0:$T, g8rc_nox0:$F,
1030                               i32imm:$BROPC), "#SELECT_CC_I8",
1031                               []>;
1032   def SELECT_CC_F4  : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
1033                               i32imm:$BROPC), "#SELECT_CC_F4",
1034                               []>;
1035   def SELECT_CC_F8  : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
1036                               i32imm:$BROPC), "#SELECT_CC_F8",
1037                               []>;
1038   def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
1039                               i32imm:$BROPC), "#SELECT_CC_VRRC",
1040                               []>;
1041
1042   // SELECT_* pseudo instructions, like SELECT_CC_* but taking condition
1043   // register bit directly.
1044   def SELECT_I4 : Pseudo<(outs gprc:$dst), (ins crbitrc:$cond,
1045                           gprc_nor0:$T, gprc_nor0:$F), "#SELECT_I4",
1046                           [(set i32:$dst, (select i1:$cond, i32:$T, i32:$F))]>;
1047   def SELECT_I8 : Pseudo<(outs g8rc:$dst), (ins crbitrc:$cond,
1048                           g8rc_nox0:$T, g8rc_nox0:$F), "#SELECT_I8",
1049                           [(set i64:$dst, (select i1:$cond, i64:$T, i64:$F))]>;
1050   def SELECT_F4  : Pseudo<(outs f4rc:$dst), (ins crbitrc:$cond,
1051                           f4rc:$T, f4rc:$F), "#SELECT_F4",
1052                           [(set f32:$dst, (select i1:$cond, f32:$T, f32:$F))]>;
1053   def SELECT_F8  : Pseudo<(outs f8rc:$dst), (ins crbitrc:$cond,
1054                           f8rc:$T, f8rc:$F), "#SELECT_F8",
1055                           [(set f64:$dst, (select i1:$cond, f64:$T, f64:$F))]>;
1056   def SELECT_VRRC: Pseudo<(outs vrrc:$dst), (ins crbitrc:$cond,
1057                           vrrc:$T, vrrc:$F), "#SELECT_VRRC",
1058                           [(set v4i32:$dst,
1059                                 (select i1:$cond, v4i32:$T, v4i32:$F))]>;
1060 }
1061
1062 // SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
1063 // scavenge a register for it.
1064 let mayStore = 1 in {
1065 def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
1066                      "#SPILL_CR", []>;
1067 def SPILL_CRBIT : Pseudo<(outs), (ins crbitrc:$cond, memri:$F),
1068                          "#SPILL_CRBIT", []>;
1069 }
1070
1071 // RESTORE_CR - Indicate that we're restoring the CR register (previously
1072 // spilled), so we'll need to scavenge a register for it.
1073 let mayLoad = 1 in {
1074 def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
1075                      "#RESTORE_CR", []>;
1076 def RESTORE_CRBIT : Pseudo<(outs crbitrc:$cond), (ins memri:$F),
1077                            "#RESTORE_CRBIT", []>;
1078 }
1079
1080 let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
1081   let isReturn = 1, Uses = [LR, RM] in
1082     def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", IIC_BrB,
1083                            [(retflag)]>, Requires<[In32BitMode]>;
1084   let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
1085     def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB,
1086                             []>;
1087
1088     let isCodeGenOnly = 1 in {
1089       def BCCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
1090                                "b${cond:cc}ctr${cond:pm} ${cond:reg}", IIC_BrB,
1091                                []>;
1092
1093       def BCCTR :  XLForm_2_br2<19, 528, 12, 0, (outs), (ins crbitrc:$bi),
1094                                 "bcctr 12, $bi, 0", IIC_BrB, []>;
1095       def BCCTRn : XLForm_2_br2<19, 528, 4, 0, (outs), (ins crbitrc:$bi),
1096                                 "bcctr 4, $bi, 0", IIC_BrB, []>;
1097     }
1098   }
1099 }
1100
1101 let Defs = [LR] in
1102   def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
1103                    PPC970_Unit_BRU;
1104 let Defs = [LR] in
1105   def MoveGOTtoLR : Pseudo<(outs), (ins), "#MoveGOTtoLR", []>,
1106                     PPC970_Unit_BRU;
1107
1108 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
1109   let isBarrier = 1 in {
1110   def B   : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
1111                   "b $dst", IIC_BrB,
1112                   [(br bb:$dst)]>;
1113   def BA  : IForm<18, 1, 0, (outs), (ins absdirectbrtarget:$dst),
1114                   "ba $dst", IIC_BrB, []>;
1115   }
1116
1117   // BCC represents an arbitrary conditional branch on a predicate.
1118   // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
1119   // a two-value operand where a dag node expects two operands. :(
1120   let isCodeGenOnly = 1 in {
1121     def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
1122                     "b${cond:cc}${cond:pm} ${cond:reg}, $dst"
1123                     /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
1124     def BCCA : BForm<16, 1, 0, (outs), (ins pred:$cond, abscondbrtarget:$dst),
1125                      "b${cond:cc}a${cond:pm} ${cond:reg}, $dst">;
1126
1127     let isReturn = 1, Uses = [LR, RM] in
1128     def BCCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
1129                            "b${cond:cc}lr${cond:pm} ${cond:reg}", IIC_BrB, []>;
1130   }
1131
1132   let isCodeGenOnly = 1 in {
1133     let Pattern = [(brcond i1:$bi, bb:$dst)] in
1134     def BC  : BForm_4<16, 12, 0, 0, (outs), (ins crbitrc:$bi, condbrtarget:$dst),
1135              "bc 12, $bi, $dst">;
1136
1137     let Pattern = [(brcond (not i1:$bi), bb:$dst)] in
1138     def BCn : BForm_4<16, 4, 0, 0, (outs), (ins crbitrc:$bi, condbrtarget:$dst),
1139              "bc 4, $bi, $dst">;
1140
1141     let isReturn = 1, Uses = [LR, RM] in
1142     def BCLR  : XLForm_2_br2<19, 16, 12, 0, (outs), (ins crbitrc:$bi),
1143                              "bclr 12, $bi, 0", IIC_BrB, []>;
1144     def BCLRn : XLForm_2_br2<19, 16, 4, 0, (outs), (ins crbitrc:$bi),
1145                              "bclr 4, $bi, 0", IIC_BrB, []>;
1146   }
1147
1148   let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
1149    def BDZLR  : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
1150                              "bdzlr", IIC_BrB, []>;
1151    def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
1152                              "bdnzlr", IIC_BrB, []>;
1153    def BDZLRp : XLForm_2_ext<19, 16, 27, 0, 0, (outs), (ins),
1154                              "bdzlr+", IIC_BrB, []>;
1155    def BDNZLRp: XLForm_2_ext<19, 16, 25, 0, 0, (outs), (ins),
1156                              "bdnzlr+", IIC_BrB, []>;
1157    def BDZLRm : XLForm_2_ext<19, 16, 26, 0, 0, (outs), (ins),
1158                              "bdzlr-", IIC_BrB, []>;
1159    def BDNZLRm: XLForm_2_ext<19, 16, 24, 0, 0, (outs), (ins),
1160                              "bdnzlr-", IIC_BrB, []>;
1161   }
1162
1163   let Defs = [CTR], Uses = [CTR] in {
1164     def BDZ  : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
1165                        "bdz $dst">;
1166     def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
1167                        "bdnz $dst">;
1168     def BDZA  : BForm_1<16, 18, 1, 0, (outs), (ins abscondbrtarget:$dst),
1169                         "bdza $dst">;
1170     def BDNZA : BForm_1<16, 16, 1, 0, (outs), (ins abscondbrtarget:$dst),
1171                         "bdnza $dst">;
1172     def BDZp : BForm_1<16, 27, 0, 0, (outs), (ins condbrtarget:$dst),
1173                        "bdz+ $dst">;
1174     def BDNZp: BForm_1<16, 25, 0, 0, (outs), (ins condbrtarget:$dst),
1175                        "bdnz+ $dst">;
1176     def BDZAp : BForm_1<16, 27, 1, 0, (outs), (ins abscondbrtarget:$dst),
1177                         "bdza+ $dst">;
1178     def BDNZAp: BForm_1<16, 25, 1, 0, (outs), (ins abscondbrtarget:$dst),
1179                         "bdnza+ $dst">;
1180     def BDZm : BForm_1<16, 26, 0, 0, (outs), (ins condbrtarget:$dst),
1181                        "bdz- $dst">;
1182     def BDNZm: BForm_1<16, 24, 0, 0, (outs), (ins condbrtarget:$dst),
1183                        "bdnz- $dst">;
1184     def BDZAm : BForm_1<16, 26, 1, 0, (outs), (ins abscondbrtarget:$dst),
1185                         "bdza- $dst">;
1186     def BDNZAm: BForm_1<16, 24, 1, 0, (outs), (ins abscondbrtarget:$dst),
1187                         "bdnza- $dst">;
1188   }
1189 }
1190
1191 // The unconditional BCL used by the SjLj setjmp code.
1192 let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
1193   let Defs = [LR], Uses = [RM] in {
1194     def BCLalways  : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
1195                             "bcl 20, 31, $dst">;
1196   }
1197 }
1198
1199 let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
1200   // Convenient aliases for call instructions
1201   let Uses = [RM] in {
1202     def BL  : IForm<18, 0, 1, (outs), (ins calltarget:$func),
1203                     "bl $func", IIC_BrB, []>;  // See Pat patterns below.
1204     def BLA : IForm<18, 1, 1, (outs), (ins abscalltarget:$func),
1205                     "bla $func", IIC_BrB, [(PPCcall (i32 imm:$func))]>;
1206
1207     let isCodeGenOnly = 1 in {
1208       def BL_TLS  : IForm<18, 0, 1, (outs), (ins tlscall32:$func),
1209                           "bl $func", IIC_BrB, []>;
1210       def BCCL : BForm<16, 0, 1, (outs), (ins pred:$cond, condbrtarget:$dst),
1211                        "b${cond:cc}l${cond:pm} ${cond:reg}, $dst">;
1212       def BCCLA : BForm<16, 1, 1, (outs), (ins pred:$cond, abscondbrtarget:$dst),
1213                         "b${cond:cc}la${cond:pm} ${cond:reg}, $dst">;
1214
1215       def BCL  : BForm_4<16, 12, 0, 1, (outs),
1216                          (ins crbitrc:$bi, condbrtarget:$dst),
1217                          "bcl 12, $bi, $dst">;
1218       def BCLn : BForm_4<16, 4, 0, 1, (outs),
1219                          (ins crbitrc:$bi, condbrtarget:$dst),
1220                          "bcl 4, $bi, $dst">;
1221     }
1222   }
1223   let Uses = [CTR, RM] in {
1224     def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
1225                              "bctrl", IIC_BrB, [(PPCbctrl)]>,
1226                 Requires<[In32BitMode]>;
1227
1228     let isCodeGenOnly = 1 in {
1229       def BCCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
1230                                 "b${cond:cc}ctrl${cond:pm} ${cond:reg}", IIC_BrB,
1231                                 []>;
1232
1233       def BCCTRL  : XLForm_2_br2<19, 528, 12, 1, (outs), (ins crbitrc:$bi),
1234                                  "bcctrl 12, $bi, 0", IIC_BrB, []>;
1235       def BCCTRLn : XLForm_2_br2<19, 528, 4, 1, (outs), (ins crbitrc:$bi),
1236                                  "bcctrl 4, $bi, 0", IIC_BrB, []>;
1237     }
1238   }
1239   let Uses = [LR, RM] in {
1240     def BLRL : XLForm_2_ext<19, 16, 20, 0, 1, (outs), (ins),
1241                             "blrl", IIC_BrB, []>;
1242
1243     let isCodeGenOnly = 1 in {
1244       def BCCLRL : XLForm_2_br<19, 16, 1, (outs), (ins pred:$cond),
1245                               "b${cond:cc}lrl${cond:pm} ${cond:reg}", IIC_BrB,
1246                               []>;
1247
1248       def BCLRL  : XLForm_2_br2<19, 16, 12, 1, (outs), (ins crbitrc:$bi),
1249                                 "bclrl 12, $bi, 0", IIC_BrB, []>;
1250       def BCLRLn : XLForm_2_br2<19, 16, 4, 1, (outs), (ins crbitrc:$bi),
1251                                 "bclrl 4, $bi, 0", IIC_BrB, []>;
1252     }
1253   }
1254   let Defs = [CTR], Uses = [CTR, RM] in {
1255     def BDZL  : BForm_1<16, 18, 0, 1, (outs), (ins condbrtarget:$dst),
1256                         "bdzl $dst">;
1257     def BDNZL : BForm_1<16, 16, 0, 1, (outs), (ins condbrtarget:$dst),
1258                         "bdnzl $dst">;
1259     def BDZLA  : BForm_1<16, 18, 1, 1, (outs), (ins abscondbrtarget:$dst),
1260                          "bdzla $dst">;
1261     def BDNZLA : BForm_1<16, 16, 1, 1, (outs), (ins abscondbrtarget:$dst),
1262                          "bdnzla $dst">;
1263     def BDZLp : BForm_1<16, 27, 0, 1, (outs), (ins condbrtarget:$dst),
1264                         "bdzl+ $dst">;
1265     def BDNZLp: BForm_1<16, 25, 0, 1, (outs), (ins condbrtarget:$dst),
1266                         "bdnzl+ $dst">;
1267     def BDZLAp : BForm_1<16, 27, 1, 1, (outs), (ins abscondbrtarget:$dst),
1268                          "bdzla+ $dst">;
1269     def BDNZLAp: BForm_1<16, 25, 1, 1, (outs), (ins abscondbrtarget:$dst),
1270                          "bdnzla+ $dst">;
1271     def BDZLm : BForm_1<16, 26, 0, 1, (outs), (ins condbrtarget:$dst),
1272                         "bdzl- $dst">;
1273     def BDNZLm: BForm_1<16, 24, 0, 1, (outs), (ins condbrtarget:$dst),
1274                         "bdnzl- $dst">;
1275     def BDZLAm : BForm_1<16, 26, 1, 1, (outs), (ins abscondbrtarget:$dst),
1276                          "bdzla- $dst">;
1277     def BDNZLAm: BForm_1<16, 24, 1, 1, (outs), (ins abscondbrtarget:$dst),
1278                          "bdnzla- $dst">;
1279   }
1280   let Defs = [CTR], Uses = [CTR, LR, RM] in {
1281     def BDZLRL  : XLForm_2_ext<19, 16, 18, 0, 1, (outs), (ins),
1282                                "bdzlrl", IIC_BrB, []>;
1283     def BDNZLRL : XLForm_2_ext<19, 16, 16, 0, 1, (outs), (ins),
1284                                "bdnzlrl", IIC_BrB, []>;
1285     def BDZLRLp : XLForm_2_ext<19, 16, 27, 0, 1, (outs), (ins),
1286                                "bdzlrl+", IIC_BrB, []>;
1287     def BDNZLRLp: XLForm_2_ext<19, 16, 25, 0, 1, (outs), (ins),
1288                                "bdnzlrl+", IIC_BrB, []>;
1289     def BDZLRLm : XLForm_2_ext<19, 16, 26, 0, 1, (outs), (ins),
1290                                "bdzlrl-", IIC_BrB, []>;
1291     def BDNZLRLm: XLForm_2_ext<19, 16, 24, 0, 1, (outs), (ins),
1292                                "bdnzlrl-", IIC_BrB, []>;
1293   }
1294 }
1295
1296 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
1297 def TCRETURNdi :Pseudo< (outs),
1298                         (ins calltarget:$dst, i32imm:$offset),
1299                  "#TC_RETURNd $dst $offset",
1300                  []>;
1301
1302
1303 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
1304 def TCRETURNai :Pseudo<(outs), (ins abscalltarget:$func, i32imm:$offset),
1305                  "#TC_RETURNa $func $offset",
1306                  [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
1307
1308 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
1309 def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
1310                  "#TC_RETURNr $dst $offset",
1311                  []>;
1312
1313
1314 let isCodeGenOnly = 1 in {
1315
1316 let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
1317     isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM]  in
1318 def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", IIC_BrB,
1319                             []>, Requires<[In32BitMode]>;
1320
1321 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
1322     isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
1323 def TAILB   : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
1324                   "b $dst", IIC_BrB,
1325                   []>;
1326
1327 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
1328     isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
1329 def TAILBA   : IForm<18, 0, 0, (outs), (ins abscalltarget:$dst),
1330                   "ba $dst", IIC_BrB,
1331                   []>;
1332
1333 }
1334
1335 let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
1336   let Defs = [CTR] in
1337   def EH_SjLj_SetJmp32  : Pseudo<(outs gprc:$dst), (ins memr:$buf),
1338                             "#EH_SJLJ_SETJMP32",
1339                             [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
1340                           Requires<[In32BitMode]>;
1341   let isTerminator = 1 in
1342   def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
1343                             "#EH_SJLJ_LONGJMP32",
1344                             [(PPCeh_sjlj_longjmp addr:$buf)]>,
1345                           Requires<[In32BitMode]>;
1346 }
1347
1348 let isBranch = 1, isTerminator = 1 in {
1349   def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
1350                         "#EH_SjLj_Setup\t$dst", []>;
1351 }
1352
1353 // System call.
1354 let PPC970_Unit = 7 in {
1355   def SC     : SCForm<17, 1, (outs), (ins i32imm:$lev),
1356                       "sc $lev", IIC_BrB, [(PPCsc (i32 imm:$lev))]>;
1357 }
1358
1359 // DCB* instructions.
1360 def DCBA   : DCB_Form<758, 0, (outs), (ins memrr:$dst), "dcba $dst",
1361                       IIC_LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
1362                       PPC970_DGroup_Single;
1363 def DCBF   : DCB_Form<86, 0, (outs), (ins memrr:$dst), "dcbf $dst",
1364                       IIC_LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
1365                       PPC970_DGroup_Single;
1366 def DCBI   : DCB_Form<470, 0, (outs), (ins memrr:$dst), "dcbi $dst",
1367                       IIC_LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
1368                       PPC970_DGroup_Single;
1369 def DCBST  : DCB_Form<54, 0, (outs), (ins memrr:$dst), "dcbst $dst",
1370                       IIC_LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
1371                       PPC970_DGroup_Single;
1372 def DCBZ   : DCB_Form<1014, 0, (outs), (ins memrr:$dst), "dcbz $dst",
1373                       IIC_LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
1374                       PPC970_DGroup_Single;
1375 def DCBZL  : DCB_Form<1014, 1, (outs), (ins memrr:$dst), "dcbzl $dst",
1376                       IIC_LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
1377                       PPC970_DGroup_Single;
1378
1379 let hasSideEffects = 0, mayLoad = 1, mayStore = 1 in {
1380 def DCBT   : DCB_Form_hint<278, (outs), (ins u5imm:$TH, memrr:$dst),
1381                       "dcbt $dst, $TH", IIC_LdStDCBF, []>,
1382                       PPC970_DGroup_Single;
1383 def DCBTST : DCB_Form_hint<246, (outs), (ins u5imm:$TH, memrr:$dst),
1384                       "dcbtst $dst, $TH", IIC_LdStDCBF, []>,
1385                       PPC970_DGroup_Single;
1386 } // hasSideEffects = 0
1387
1388 def ICBT  : XForm_icbt<31, 22, (outs), (ins u4imm:$CT, memrr:$src),
1389                        "icbt $CT, $src", IIC_LdStLoad>, Requires<[HasICBT]>;
1390
1391 def : Pat<(int_ppc_dcbt xoaddr:$dst),
1392           (DCBT 0, xoaddr:$dst)>;
1393 def : Pat<(int_ppc_dcbtst xoaddr:$dst),
1394           (DCBTST 0, xoaddr:$dst)>;
1395
1396 def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
1397           (DCBT 0, xoaddr:$dst)>;   // data prefetch for loads
1398 def : Pat<(prefetch xoaddr:$dst, (i32 1), imm, (i32 1)),
1399           (DCBTST 0, xoaddr:$dst)>; // data prefetch for stores
1400 def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 0)),
1401           (ICBT 0, xoaddr:$dst)>, Requires<[HasICBT]>; // inst prefetch (for read)
1402
1403 // Atomic operations
1404 let usesCustomInserter = 1 in {
1405   let Defs = [CR0] in {
1406     def ATOMIC_LOAD_ADD_I8 : Pseudo<
1407       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
1408       [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
1409     def ATOMIC_LOAD_SUB_I8 : Pseudo<
1410       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
1411       [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
1412     def ATOMIC_LOAD_AND_I8 : Pseudo<
1413       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
1414       [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
1415     def ATOMIC_LOAD_OR_I8 : Pseudo<
1416       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
1417       [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
1418     def ATOMIC_LOAD_XOR_I8 : Pseudo<
1419       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
1420       [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
1421     def ATOMIC_LOAD_NAND_I8 : Pseudo<
1422       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
1423       [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
1424     def ATOMIC_LOAD_ADD_I16 : Pseudo<
1425       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
1426       [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
1427     def ATOMIC_LOAD_SUB_I16 : Pseudo<
1428       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
1429       [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
1430     def ATOMIC_LOAD_AND_I16 : Pseudo<
1431       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
1432       [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
1433     def ATOMIC_LOAD_OR_I16 : Pseudo<
1434       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
1435       [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
1436     def ATOMIC_LOAD_XOR_I16 : Pseudo<
1437       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
1438       [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
1439     def ATOMIC_LOAD_NAND_I16 : Pseudo<
1440       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
1441       [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
1442     def ATOMIC_LOAD_ADD_I32 : Pseudo<
1443       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
1444       [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
1445     def ATOMIC_LOAD_SUB_I32 : Pseudo<
1446       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
1447       [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
1448     def ATOMIC_LOAD_AND_I32 : Pseudo<
1449       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
1450       [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
1451     def ATOMIC_LOAD_OR_I32 : Pseudo<
1452       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
1453       [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
1454     def ATOMIC_LOAD_XOR_I32 : Pseudo<
1455       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
1456       [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
1457     def ATOMIC_LOAD_NAND_I32 : Pseudo<
1458       (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
1459       [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
1460
1461     def ATOMIC_CMP_SWAP_I8 : Pseudo<
1462       (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
1463       [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
1464     def ATOMIC_CMP_SWAP_I16 : Pseudo<
1465       (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I16 $dst $ptr $old $new",
1466       [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
1467     def ATOMIC_CMP_SWAP_I32 : Pseudo<
1468       (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I32 $dst $ptr $old $new",
1469       [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
1470
1471     def ATOMIC_SWAP_I8 : Pseudo<
1472       (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
1473       [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
1474     def ATOMIC_SWAP_I16 : Pseudo<
1475       (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
1476       [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
1477     def ATOMIC_SWAP_I32 : Pseudo<
1478       (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
1479       [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
1480   }
1481 }
1482
1483 // Instructions to support atomic operations
1484 let mayLoad = 1, hasSideEffects = 0 in {
1485 def LBARX : XForm_1<31,  52, (outs gprc:$rD), (ins memrr:$src),
1486                     "lbarx $rD, $src", IIC_LdStLWARX, []>,
1487                     Requires<[HasPartwordAtomics]>;
1488
1489 def LHARX : XForm_1<31,  116, (outs gprc:$rD), (ins memrr:$src),
1490                     "lharx $rD, $src", IIC_LdStLWARX, []>,
1491                     Requires<[HasPartwordAtomics]>;
1492
1493 def LWARX : XForm_1<31,  20, (outs gprc:$rD), (ins memrr:$src),
1494                     "lwarx $rD, $src", IIC_LdStLWARX, []>;
1495
1496 // Instructions to support lock versions of atomics
1497 // (EH=1 - see Power ISA 2.07 Book II 4.4.2)
1498 def LBARXL : XForm_1<31,  52, (outs gprc:$rD), (ins memrr:$src),
1499                      "lbarx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT,
1500                      Requires<[HasPartwordAtomics]>;
1501
1502 def LHARXL : XForm_1<31,  116, (outs gprc:$rD), (ins memrr:$src),
1503                      "lharx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT,
1504                      Requires<[HasPartwordAtomics]>;
1505
1506 def LWARXL : XForm_1<31,  20, (outs gprc:$rD), (ins memrr:$src),
1507                      "lwarx $rD, $src, 1", IIC_LdStLWARX, []>, isDOT;
1508 }
1509
1510 let Defs = [CR0], mayStore = 1, hasSideEffects = 0 in {
1511 def STBCX : XForm_1<31, 694, (outs), (ins gprc:$rS, memrr:$dst),
1512                     "stbcx. $rS, $dst", IIC_LdStSTWCX, []>,
1513                     isDOT, Requires<[HasPartwordAtomics]>;
1514
1515 def STHCX : XForm_1<31, 726, (outs), (ins gprc:$rS, memrr:$dst),
1516                     "sthcx. $rS, $dst", IIC_LdStSTWCX, []>,
1517                     isDOT, Requires<[HasPartwordAtomics]>;
1518
1519 def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
1520                     "stwcx. $rS, $dst", IIC_LdStSTWCX, []>, isDOT;
1521 }
1522
1523 let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
1524 def TRAP  : XForm_24<31, 4, (outs), (ins), "trap", IIC_LdStLoad, [(trap)]>;
1525
1526 def TWI : DForm_base<3, (outs), (ins u5imm:$to, gprc:$rA, s16imm:$imm),
1527                      "twi $to, $rA, $imm", IIC_IntTrapW, []>;
1528 def TW : XForm_1<31, 4, (outs), (ins u5imm:$to, gprc:$rA, gprc:$rB),
1529                  "tw $to, $rA, $rB", IIC_IntTrapW, []>;
1530 def TDI : DForm_base<2, (outs), (ins u5imm:$to, g8rc:$rA, s16imm:$imm),
1531                      "tdi $to, $rA, $imm", IIC_IntTrapD, []>;
1532 def TD : XForm_1<31, 68, (outs), (ins u5imm:$to, g8rc:$rA, g8rc:$rB),
1533                  "td $to, $rA, $rB", IIC_IntTrapD, []>;
1534
1535 //===----------------------------------------------------------------------===//
1536 // PPC32 Load Instructions.
1537 //
1538
1539 // Unindexed (r+i) Loads. 
1540 let PPC970_Unit = 2 in {
1541 def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
1542                   "lbz $rD, $src", IIC_LdStLoad,
1543                   [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
1544 def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
1545                   "lha $rD, $src", IIC_LdStLHA,
1546                   [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
1547                   PPC970_DGroup_Cracked;
1548 def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
1549                   "lhz $rD, $src", IIC_LdStLoad,
1550                   [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
1551 def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
1552                   "lwz $rD, $src", IIC_LdStLoad,
1553                   [(set i32:$rD, (load iaddr:$src))]>;
1554
1555 def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
1556                   "lfs $rD, $src", IIC_LdStLFD,
1557                   [(set f32:$rD, (load iaddr:$src))]>;
1558 def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
1559                   "lfd $rD, $src", IIC_LdStLFD,
1560                   [(set f64:$rD, (load iaddr:$src))]>;
1561
1562
1563 // Unindexed (r+i) Loads with Update (preinc).
1564 let mayLoad = 1, hasSideEffects = 0 in {
1565 def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1566                    "lbzu $rD, $addr", IIC_LdStLoadUpd,
1567                    []>, RegConstraint<"$addr.reg = $ea_result">,
1568                    NoEncode<"$ea_result">;
1569
1570 def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1571                    "lhau $rD, $addr", IIC_LdStLHAU,
1572                    []>, RegConstraint<"$addr.reg = $ea_result">,
1573                    NoEncode<"$ea_result">;
1574
1575 def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1576                    "lhzu $rD, $addr", IIC_LdStLoadUpd,
1577                    []>, RegConstraint<"$addr.reg = $ea_result">,
1578                    NoEncode<"$ea_result">;
1579
1580 def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1581                    "lwzu $rD, $addr", IIC_LdStLoadUpd,
1582                    []>, RegConstraint<"$addr.reg = $ea_result">,
1583                    NoEncode<"$ea_result">;
1584
1585 def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1586                   "lfsu $rD, $addr", IIC_LdStLFDU,
1587                   []>, RegConstraint<"$addr.reg = $ea_result">,
1588                    NoEncode<"$ea_result">;
1589
1590 def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
1591                   "lfdu $rD, $addr", IIC_LdStLFDU,
1592                   []>, RegConstraint<"$addr.reg = $ea_result">,
1593                    NoEncode<"$ea_result">;
1594
1595
1596 // Indexed (r+r) Loads with Update (preinc).
1597 def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
1598                    (ins memrr:$addr),
1599                    "lbzux $rD, $addr", IIC_LdStLoadUpdX,
1600                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1601                    NoEncode<"$ea_result">;
1602
1603 def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
1604                    (ins memrr:$addr),
1605                    "lhaux $rD, $addr", IIC_LdStLHAUX,
1606                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1607                    NoEncode<"$ea_result">;
1608
1609 def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
1610                    (ins memrr:$addr),
1611                    "lhzux $rD, $addr", IIC_LdStLoadUpdX,
1612                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1613                    NoEncode<"$ea_result">;
1614
1615 def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
1616                    (ins memrr:$addr),
1617                    "lwzux $rD, $addr", IIC_LdStLoadUpdX,
1618                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1619                    NoEncode<"$ea_result">;
1620
1621 def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
1622                    (ins memrr:$addr),
1623                    "lfsux $rD, $addr", IIC_LdStLFDUX,
1624                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1625                    NoEncode<"$ea_result">;
1626
1627 def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
1628                    (ins memrr:$addr),
1629                    "lfdux $rD, $addr", IIC_LdStLFDUX,
1630                    []>, RegConstraint<"$addr.ptrreg = $ea_result">,
1631                    NoEncode<"$ea_result">;
1632 }
1633 }
1634
1635 // Indexed (r+r) Loads.
1636 //
1637 let PPC970_Unit = 2 in {
1638 def LBZX : XForm_1<31,  87, (outs gprc:$rD), (ins memrr:$src),
1639                    "lbzx $rD, $src", IIC_LdStLoad,
1640                    [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
1641 def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
1642                    "lhax $rD, $src", IIC_LdStLHA,
1643                    [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
1644                    PPC970_DGroup_Cracked;
1645 def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
1646                    "lhzx $rD, $src", IIC_LdStLoad,
1647                    [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
1648 def LWZX : XForm_1<31,  23, (outs gprc:$rD), (ins memrr:$src),
1649                    "lwzx $rD, $src", IIC_LdStLoad,
1650                    [(set i32:$rD, (load xaddr:$src))]>;
1651                    
1652                    
1653 def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
1654                    "lhbrx $rD, $src", IIC_LdStLoad,
1655                    [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
1656 def LWBRX : XForm_1<31,  534, (outs gprc:$rD), (ins memrr:$src),
1657                    "lwbrx $rD, $src", IIC_LdStLoad,
1658                    [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
1659
1660 def LFSX   : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
1661                       "lfsx $frD, $src", IIC_LdStLFD,
1662                       [(set f32:$frD, (load xaddr:$src))]>;
1663 def LFDX   : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
1664                       "lfdx $frD, $src", IIC_LdStLFD,
1665                       [(set f64:$frD, (load xaddr:$src))]>;
1666
1667 def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
1668                       "lfiwax $frD, $src", IIC_LdStLFD,
1669                       [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
1670 def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
1671                       "lfiwzx $frD, $src", IIC_LdStLFD,
1672                       [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
1673 }
1674
1675 // Load Multiple
1676 def LMW : DForm_1<46, (outs gprc:$rD), (ins memri:$src),
1677                   "lmw $rD, $src", IIC_LdStLMW, []>;
1678
1679 //===----------------------------------------------------------------------===//
1680 // PPC32 Store Instructions.
1681 //
1682
1683 // Unindexed (r+i) Stores.
1684 let PPC970_Unit = 2 in {
1685 def STB  : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
1686                    "stb $rS, $src", IIC_LdStStore,
1687                    [(truncstorei8 i32:$rS, iaddr:$src)]>;
1688 def STH  : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
1689                    "sth $rS, $src", IIC_LdStStore,
1690                    [(truncstorei16 i32:$rS, iaddr:$src)]>;
1691 def STW  : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
1692                    "stw $rS, $src", IIC_LdStStore,
1693                    [(store i32:$rS, iaddr:$src)]>;
1694 def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
1695                    "stfs $rS, $dst", IIC_LdStSTFD,
1696                    [(store f32:$rS, iaddr:$dst)]>;
1697 def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
1698                    "stfd $rS, $dst", IIC_LdStSTFD,
1699                    [(store f64:$rS, iaddr:$dst)]>;
1700 }
1701
1702 // Unindexed (r+i) Stores with Update (preinc).
1703 let PPC970_Unit = 2, mayStore = 1 in {
1704 def STBU  : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
1705                     "stbu $rS, $dst", IIC_LdStStoreUpd, []>,
1706                     RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1707 def STHU  : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
1708                     "sthu $rS, $dst", IIC_LdStStoreUpd, []>,
1709                     RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1710 def STWU  : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
1711                     "stwu $rS, $dst", IIC_LdStStoreUpd, []>,
1712                     RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1713 def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
1714                     "stfsu $rS, $dst", IIC_LdStSTFDU, []>,
1715                     RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1716 def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
1717                     "stfdu $rS, $dst", IIC_LdStSTFDU, []>,
1718                     RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
1719 }
1720
1721 // Patterns to match the pre-inc stores.  We can't put the patterns on
1722 // the instruction definitions directly as ISel wants the address base
1723 // and offset to be separate operands, not a single complex operand.
1724 def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1725           (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1726 def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1727           (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1728 def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1729           (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1730 def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1731           (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1732 def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1733           (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
1734
1735 // Indexed (r+r) Stores.
1736 let PPC970_Unit = 2 in {
1737 def STBX  : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
1738                    "stbx $rS, $dst", IIC_LdStStore,
1739                    [(truncstorei8 i32:$rS, xaddr:$dst)]>,
1740                    PPC970_DGroup_Cracked;
1741 def STHX  : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
1742                    "sthx $rS, $dst", IIC_LdStStore,
1743                    [(truncstorei16 i32:$rS, xaddr:$dst)]>,
1744                    PPC970_DGroup_Cracked;
1745 def STWX  : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
1746                    "stwx $rS, $dst", IIC_LdStStore,
1747                    [(store i32:$rS, xaddr:$dst)]>,
1748                    PPC970_DGroup_Cracked;
1749  
1750 def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
1751                    "sthbrx $rS, $dst", IIC_LdStStore,
1752                    [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
1753                    PPC970_DGroup_Cracked;
1754 def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
1755                    "stwbrx $rS, $dst", IIC_LdStStore,
1756                    [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
1757                    PPC970_DGroup_Cracked;
1758
1759 def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
1760                      "stfiwx $frS, $dst", IIC_LdStSTFD,
1761                      [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
1762                      
1763 def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
1764                      "stfsx $frS, $dst", IIC_LdStSTFD,
1765                      [(store f32:$frS, xaddr:$dst)]>;
1766 def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
1767                      "stfdx $frS, $dst", IIC_LdStSTFD,
1768                      [(store f64:$frS, xaddr:$dst)]>;
1769 }
1770
1771 // Indexed (r+r) Stores with Update (preinc).
1772 let PPC970_Unit = 2, mayStore = 1 in {
1773 def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
1774                     "stbux $rS, $dst", IIC_LdStStoreUpd, []>,
1775                     RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
1776                     PPC970_DGroup_Cracked;
1777 def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
1778                     "sthux $rS, $dst", IIC_LdStStoreUpd, []>,
1779                     RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
1780                     PPC970_DGroup_Cracked;
1781 def STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
1782                     "stwux $rS, $dst", IIC_LdStStoreUpd, []>,
1783                     RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
1784                     PPC970_DGroup_Cracked;
1785 def STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
1786                     "stfsux $rS, $dst", IIC_LdStSTFDU, []>,
1787                     RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
1788                     PPC970_DGroup_Cracked;
1789 def STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
1790                     "stfdux $rS, $dst", IIC_LdStSTFDU, []>,
1791                     RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
1792                     PPC970_DGroup_Cracked;
1793 }
1794
1795 // Patterns to match the pre-inc stores.  We can't put the patterns on
1796 // the instruction definitions directly as ISel wants the address base
1797 // and offset to be separate operands, not a single complex operand.
1798 def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1799           (STBUX $rS, $ptrreg, $ptroff)>;
1800 def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1801           (STHUX $rS, $ptrreg, $ptroff)>;
1802 def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1803           (STWUX $rS, $ptrreg, $ptroff)>;
1804 def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1805           (STFSUX $rS, $ptrreg, $ptroff)>;
1806 def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1807           (STFDUX $rS, $ptrreg, $ptroff)>;
1808
1809 // Store Multiple
1810 def STMW : DForm_1<47, (outs), (ins gprc:$rS, memri:$dst),
1811                    "stmw $rS, $dst", IIC_LdStLMW, []>;
1812
1813 def SYNC : XForm_24_sync<31, 598, (outs), (ins i32imm:$L),
1814                         "sync $L", IIC_LdStSync, []>;
1815
1816 let isCodeGenOnly = 1 in {
1817   def MSYNC : XForm_24_sync<31, 598, (outs), (ins),
1818                            "msync", IIC_LdStSync, []> {
1819     let L = 0;
1820   }
1821 }
1822
1823 def : Pat<(int_ppc_sync),   (SYNC 0)>, Requires<[HasSYNC]>;
1824 def : Pat<(int_ppc_lwsync), (SYNC 1)>, Requires<[HasSYNC]>;
1825 def : Pat<(int_ppc_sync),   (MSYNC)>, Requires<[HasOnlyMSYNC]>;
1826 def : Pat<(int_ppc_lwsync), (MSYNC)>, Requires<[HasOnlyMSYNC]>;
1827
1828 //===----------------------------------------------------------------------===//
1829 // PPC32 Arithmetic Instructions.
1830 //
1831
1832 let PPC970_Unit = 1 in {  // FXU Operations.
1833 def ADDI   : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$imm),
1834                      "addi $rD, $rA, $imm", IIC_IntSimple,
1835                      [(set i32:$rD, (add i32:$rA, imm32SExt16:$imm))]>;
1836 let BaseName = "addic" in {
1837 let Defs = [CARRY] in
1838 def ADDIC  : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
1839                      "addic $rD, $rA, $imm", IIC_IntGeneral,
1840                      [(set i32:$rD, (addc i32:$rA, imm32SExt16:$imm))]>,
1841                      RecFormRel, PPC970_DGroup_Cracked;
1842 let Defs = [CARRY, CR0] in
1843 def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
1844                      "addic. $rD, $rA, $imm", IIC_IntGeneral,
1845                      []>, isDOT, RecFormRel;
1846 }
1847 def ADDIS  : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, s17imm:$imm),
1848                      "addis $rD, $rA, $imm", IIC_IntSimple,
1849                      [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
1850 let isCodeGenOnly = 1 in
1851 def LA     : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$sym),
1852                      "la $rD, $sym($rA)", IIC_IntGeneral,
1853                      [(set i32:$rD, (add i32:$rA,
1854                                           (PPClo tglobaladdr:$sym, 0)))]>;
1855 def MULLI  : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
1856                      "mulli $rD, $rA, $imm", IIC_IntMulLI,
1857                      [(set i32:$rD, (mul i32:$rA, imm32SExt16:$imm))]>;
1858 let Defs = [CARRY] in
1859 def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
1860                      "subfic $rD, $rA, $imm", IIC_IntGeneral,
1861                      [(set i32:$rD, (subc imm32SExt16:$imm, i32:$rA))]>;
1862
1863 let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
1864   def LI  : DForm_2_r0<14, (outs gprc:$rD), (ins s16imm:$imm),
1865                        "li $rD, $imm", IIC_IntSimple,
1866                        [(set i32:$rD, imm32SExt16:$imm)]>;
1867   def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins s17imm:$imm),
1868                        "lis $rD, $imm", IIC_IntSimple,
1869                        [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
1870 }
1871 }
1872
1873 let PPC970_Unit = 1 in {  // FXU Operations.
1874 let Defs = [CR0] in {
1875 def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1876                     "andi. $dst, $src1, $src2", IIC_IntGeneral,
1877                     [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
1878                     isDOT;
1879 def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1880                     "andis. $dst, $src1, $src2", IIC_IntGeneral,
1881                     [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
1882                     isDOT;
1883 }
1884 def ORI   : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1885                     "ori $dst, $src1, $src2", IIC_IntSimple,
1886                     [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
1887 def ORIS  : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1888                     "oris $dst, $src1, $src2", IIC_IntSimple,
1889                     [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
1890 def XORI  : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1891                     "xori $dst, $src1, $src2", IIC_IntSimple,
1892                     [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
1893 def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
1894                     "xoris $dst, $src1, $src2", IIC_IntSimple,
1895                     [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
1896
1897 def NOP   : DForm_4_zero<24, (outs), (ins), "nop", IIC_IntSimple,
1898                          []>;
1899 let isCodeGenOnly = 1 in {
1900 // The POWER6 and POWER7 have special group-terminating nops.
1901 def NOP_GT_PWR6 : DForm_4_fixedreg_zero<24, 1, (outs), (ins),
1902                                         "ori 1, 1, 0", IIC_IntSimple, []>;
1903 def NOP_GT_PWR7 : DForm_4_fixedreg_zero<24, 2, (outs), (ins),
1904                                         "ori 2, 2, 0", IIC_IntSimple, []>;
1905 }
1906
1907 let isCompare = 1, hasSideEffects = 0 in {
1908   def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
1909                           "cmpwi $crD, $rA, $imm", IIC_IntCompare>;
1910   def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
1911                            "cmplwi $dst, $src1, $src2", IIC_IntCompare>;
1912 }
1913 }
1914
1915 let PPC970_Unit = 1, hasSideEffects = 0 in {  // FXU Operations.
1916 let isCommutable = 1 in {
1917 defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1918                      "nand", "$rA, $rS, $rB", IIC_IntSimple,
1919                      [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
1920 defm AND  : XForm_6r<31,  28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1921                      "and", "$rA, $rS, $rB", IIC_IntSimple,
1922                      [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
1923 } // isCommutable
1924 defm ANDC : XForm_6r<31,  60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1925                      "andc", "$rA, $rS, $rB", IIC_IntSimple,
1926                      [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
1927 let isCommutable = 1 in {
1928 defm OR   : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1929                      "or", "$rA, $rS, $rB", IIC_IntSimple,
1930                      [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
1931 defm NOR  : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1932                      "nor", "$rA, $rS, $rB", IIC_IntSimple,
1933                      [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
1934 } // isCommutable
1935 defm ORC  : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1936                      "orc", "$rA, $rS, $rB", IIC_IntSimple,
1937                      [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
1938 let isCommutable = 1 in {
1939 defm EQV  : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1940                      "eqv", "$rA, $rS, $rB", IIC_IntSimple,
1941                      [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
1942 defm XOR  : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1943                      "xor", "$rA, $rS, $rB", IIC_IntSimple,
1944                      [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
1945 } // isCommutable
1946 defm SLW  : XForm_6r<31,  24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1947                      "slw", "$rA, $rS, $rB", IIC_IntGeneral,
1948                      [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
1949 defm SRW  : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1950                      "srw", "$rA, $rS, $rB", IIC_IntGeneral,
1951                      [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
1952 defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1953                       "sraw", "$rA, $rS, $rB", IIC_IntShift,
1954                       [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
1955 }
1956
1957 let PPC970_Unit = 1 in {  // FXU Operations.
1958 let hasSideEffects = 0 in {
1959 defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
1960                         "srawi", "$rA, $rS, $SH", IIC_IntShift,
1961                         [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
1962 defm CNTLZW : XForm_11r<31,  26, (outs gprc:$rA), (ins gprc:$rS),
1963                         "cntlzw", "$rA, $rS", IIC_IntGeneral,
1964                         [(set i32:$rA, (ctlz i32:$rS))]>;
1965 defm EXTSB  : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
1966                         "extsb", "$rA, $rS", IIC_IntSimple,
1967                         [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
1968 defm EXTSH  : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
1969                         "extsh", "$rA, $rS", IIC_IntSimple,
1970                         [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1971
1972 let isCommutable = 1 in
1973 def CMPB : XForm_6<31, 508, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
1974                    "cmpb $rA, $rS, $rB", IIC_IntGeneral,
1975                    [(set i32:$rA, (PPCcmpb i32:$rS, i32:$rB))]>;
1976 }
1977 let isCompare = 1, hasSideEffects = 0 in {
1978   def CMPW   : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
1979                             "cmpw $crD, $rA, $rB", IIC_IntCompare>;
1980   def CMPLW  : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
1981                             "cmplw $crD, $rA, $rB", IIC_IntCompare>;
1982 }
1983 }
1984 let PPC970_Unit = 3 in {  // FPU Operations.
1985 //def FCMPO  : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
1986 //                      "fcmpo $crD, $fA, $fB", IIC_FPCompare>;
1987 let isCompare = 1, hasSideEffects = 0 in {
1988   def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
1989                         "fcmpu $crD, $fA, $fB", IIC_FPCompare>;
1990   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
1991   def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
1992                         "fcmpu $crD, $fA, $fB", IIC_FPCompare>;
1993 }
1994
1995 let Uses = [RM] in {
1996   let hasSideEffects = 0 in {
1997   defm FCTIW  : XForm_26r<63, 14, (outs f8rc:$frD), (ins f8rc:$frB),
1998                           "fctiw", "$frD, $frB", IIC_FPGeneral,
1999                           []>;
2000   defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
2001                           "fctiwz", "$frD, $frB", IIC_FPGeneral,
2002                           [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
2003
2004   defm FRSP   : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
2005                           "frsp", "$frD, $frB", IIC_FPGeneral,
2006                           [(set f32:$frD, (fround f64:$frB))]>;
2007
2008   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2009   defm FRIND  : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
2010                           "frin", "$frD, $frB", IIC_FPGeneral,
2011                           [(set f64:$frD, (frnd f64:$frB))]>;
2012   defm FRINS  : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
2013                           "frin", "$frD, $frB", IIC_FPGeneral,
2014                           [(set f32:$frD, (frnd f32:$frB))]>;
2015   }
2016
2017   let hasSideEffects = 0 in {
2018   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2019   defm FRIPD  : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
2020                           "frip", "$frD, $frB", IIC_FPGeneral,
2021                           [(set f64:$frD, (fceil f64:$frB))]>;
2022   defm FRIPS  : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
2023                           "frip", "$frD, $frB", IIC_FPGeneral,
2024                           [(set f32:$frD, (fceil f32:$frB))]>;
2025   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2026   defm FRIZD  : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
2027                           "friz", "$frD, $frB", IIC_FPGeneral,
2028                           [(set f64:$frD, (ftrunc f64:$frB))]>;
2029   defm FRIZS  : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
2030                           "friz", "$frD, $frB", IIC_FPGeneral,
2031                           [(set f32:$frD, (ftrunc f32:$frB))]>;
2032   let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2033   defm FRIMD  : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
2034                           "frim", "$frD, $frB", IIC_FPGeneral,
2035                           [(set f64:$frD, (ffloor f64:$frB))]>;
2036   defm FRIMS  : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
2037                           "frim", "$frD, $frB", IIC_FPGeneral,
2038                           [(set f32:$frD, (ffloor f32:$frB))]>;
2039
2040   defm FSQRT  : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
2041                           "fsqrt", "$frD, $frB", IIC_FPSqrtD,
2042                           [(set f64:$frD, (fsqrt f64:$frB))]>;
2043   defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
2044                           "fsqrts", "$frD, $frB", IIC_FPSqrtS,
2045                           [(set f32:$frD, (fsqrt f32:$frB))]>;
2046   }
2047   }
2048 }
2049
2050 /// Note that FMR is defined as pseudo-ops on the PPC970 because they are
2051 /// often coalesced away and we don't want the dispatch group builder to think
2052 /// that they will fill slots (which could cause the load of a LSU reject to
2053 /// sneak into a d-group with a store).
2054 let hasSideEffects = 0 in
2055 defm FMR   : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
2056                        "fmr", "$frD, $frB", IIC_FPGeneral,
2057                        []>,  // (set f32:$frD, f32:$frB)
2058                        PPC970_Unit_Pseudo;
2059
2060 let PPC970_Unit = 3, hasSideEffects = 0 in {  // FPU Operations.
2061 // These are artificially split into two different forms, for 4/8 byte FP.
2062 defm FABSS  : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
2063                         "fabs", "$frD, $frB", IIC_FPGeneral,
2064                         [(set f32:$frD, (fabs f32:$frB))]>;
2065 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2066 defm FABSD  : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
2067                         "fabs", "$frD, $frB", IIC_FPGeneral,
2068                         [(set f64:$frD, (fabs f64:$frB))]>;
2069 defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
2070                         "fnabs", "$frD, $frB", IIC_FPGeneral,
2071                         [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
2072 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2073 defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
2074                         "fnabs", "$frD, $frB", IIC_FPGeneral,
2075                         [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
2076 defm FNEGS  : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
2077                         "fneg", "$frD, $frB", IIC_FPGeneral,
2078                         [(set f32:$frD, (fneg f32:$frB))]>;
2079 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2080 defm FNEGD  : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
2081                         "fneg", "$frD, $frB", IIC_FPGeneral,
2082                         [(set f64:$frD, (fneg f64:$frB))]>;
2083
2084 defm FCPSGNS : XForm_28r<63, 8, (outs f4rc:$frD), (ins f4rc:$frA, f4rc:$frB),
2085                         "fcpsgn", "$frD, $frA, $frB", IIC_FPGeneral,
2086                         [(set f32:$frD, (fcopysign f32:$frB, f32:$frA))]>;
2087 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2088 defm FCPSGND : XForm_28r<63, 8, (outs f8rc:$frD), (ins f8rc:$frA, f8rc:$frB),
2089                         "fcpsgn", "$frD, $frA, $frB", IIC_FPGeneral,
2090                         [(set f64:$frD, (fcopysign f64:$frB, f64:$frA))]>;
2091
2092 // Reciprocal estimates.
2093 defm FRE      : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
2094                           "fre", "$frD, $frB", IIC_FPGeneral,
2095                           [(set f64:$frD, (PPCfre f64:$frB))]>;
2096 defm FRES     : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
2097                           "fres", "$frD, $frB", IIC_FPGeneral,
2098                           [(set f32:$frD, (PPCfre f32:$frB))]>;
2099 defm FRSQRTE  : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
2100                           "frsqrte", "$frD, $frB", IIC_FPGeneral,
2101                           [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
2102 defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
2103                           "frsqrtes", "$frD, $frB", IIC_FPGeneral,
2104                           [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
2105 }
2106
2107 // XL-Form instructions.  condition register logical ops.
2108 //
2109 let hasSideEffects = 0 in
2110 def MCRF   : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
2111                       "mcrf $BF, $BFA", IIC_BrMCR>,
2112              PPC970_DGroup_First, PPC970_Unit_CRU;
2113
2114 // FIXME: According to the ISA (section 2.5.1 of version 2.06), the
2115 // condition-register logical instructions have preferred forms. Specifically,
2116 // it is preferred that the bit specified by the BT field be in the same
2117 // condition register as that specified by the bit BB. We might want to account
2118 // for this via hinting the register allocator and anti-dep breakers, or we
2119 // could constrain the register class to force this constraint and then loosen
2120 // it during register allocation via convertToThreeAddress or some similar
2121 // mechanism.
2122
2123 let isCommutable = 1 in {
2124 def CRAND  : XLForm_1<19, 257, (outs crbitrc:$CRD),
2125                                (ins crbitrc:$CRA, crbitrc:$CRB),
2126                       "crand $CRD, $CRA, $CRB", IIC_BrCR,
2127                       [(set i1:$CRD, (and i1:$CRA, i1:$CRB))]>;
2128
2129 def CRNAND : XLForm_1<19, 225, (outs crbitrc:$CRD),
2130                                (ins crbitrc:$CRA, crbitrc:$CRB),
2131                       "crnand $CRD, $CRA, $CRB", IIC_BrCR,
2132                       [(set i1:$CRD, (not (and i1:$CRA, i1:$CRB)))]>;
2133
2134 def CROR   : XLForm_1<19, 449, (outs crbitrc:$CRD),
2135                                (ins crbitrc:$CRA, crbitrc:$CRB),
2136                       "cror $CRD, $CRA, $CRB", IIC_BrCR,
2137                       [(set i1:$CRD, (or i1:$CRA, i1:$CRB))]>;
2138
2139 def CRXOR  : XLForm_1<19, 193, (outs crbitrc:$CRD),
2140                                (ins crbitrc:$CRA, crbitrc:$CRB),
2141                       "crxor $CRD, $CRA, $CRB", IIC_BrCR,
2142                       [(set i1:$CRD, (xor i1:$CRA, i1:$CRB))]>;
2143
2144 def CRNOR  : XLForm_1<19, 33, (outs crbitrc:$CRD),
2145                               (ins crbitrc:$CRA, crbitrc:$CRB),
2146                       "crnor $CRD, $CRA, $CRB", IIC_BrCR,
2147                       [(set i1:$CRD, (not (or i1:$CRA, i1:$CRB)))]>;
2148
2149 def CREQV  : XLForm_1<19, 289, (outs crbitrc:$CRD),
2150                                (ins crbitrc:$CRA, crbitrc:$CRB),
2151                       "creqv $CRD, $CRA, $CRB", IIC_BrCR,
2152                       [(set i1:$CRD, (not (xor i1:$CRA, i1:$CRB)))]>;
2153 } // isCommutable
2154
2155 def CRANDC : XLForm_1<19, 129, (outs crbitrc:$CRD),
2156                                (ins crbitrc:$CRA, crbitrc:$CRB),
2157                       "crandc $CRD, $CRA, $CRB", IIC_BrCR,
2158                       [(set i1:$CRD, (and i1:$CRA, (not i1:$CRB)))]>;
2159
2160 def CRORC  : XLForm_1<19, 417, (outs crbitrc:$CRD),
2161                                (ins crbitrc:$CRA, crbitrc:$CRB),
2162                       "crorc $CRD, $CRA, $CRB", IIC_BrCR,
2163                       [(set i1:$CRD, (or i1:$CRA, (not i1:$CRB)))]>;
2164
2165 let isCodeGenOnly = 1 in {
2166 def CRSET  : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
2167               "creqv $dst, $dst, $dst", IIC_BrCR,
2168               [(set i1:$dst, 1)]>;
2169
2170 def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
2171               "crxor $dst, $dst, $dst", IIC_BrCR,
2172               [(set i1:$dst, 0)]>;
2173
2174 let Defs = [CR1EQ], CRD = 6 in {
2175 def CR6SET  : XLForm_1_ext<19, 289, (outs), (ins),
2176               "creqv 6, 6, 6", IIC_BrCR,
2177               [(PPCcr6set)]>;
2178
2179 def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
2180               "crxor 6, 6, 6", IIC_BrCR,
2181               [(PPCcr6unset)]>;
2182 }
2183 }
2184
2185 // XFX-Form instructions.  Instructions that deal with SPRs.
2186 //
2187
2188 def MFSPR : XFXForm_1<31, 339, (outs gprc:$RT), (ins i32imm:$SPR),
2189                       "mfspr $RT, $SPR", IIC_SprMFSPR>;
2190 def MTSPR : XFXForm_1<31, 467, (outs), (ins i32imm:$SPR, gprc:$RT),
2191                       "mtspr $SPR, $RT", IIC_SprMTSPR>;
2192
2193 def MFTB : XFXForm_1<31, 371, (outs gprc:$RT), (ins i32imm:$SPR),
2194                      "mftb $RT, $SPR", IIC_SprMFTB>, Deprecated<DeprecatedMFTB>;
2195
2196 // A pseudo-instruction used to implement the read of the 64-bit cycle counter
2197 // on a 32-bit target.
2198 let hasSideEffects = 1, usesCustomInserter = 1 in
2199 def ReadTB : Pseudo<(outs gprc:$lo, gprc:$hi), (ins),
2200                     "#ReadTB", []>;
2201
2202 let Uses = [CTR] in {
2203 def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
2204                           "mfctr $rT", IIC_SprMFSPR>,
2205             PPC970_DGroup_First, PPC970_Unit_FXU;
2206 }
2207 let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
2208 def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
2209                           "mtctr $rS", IIC_SprMTSPR>,
2210             PPC970_DGroup_First, PPC970_Unit_FXU;
2211 }
2212 let hasSideEffects = 1, isCodeGenOnly = 1, Defs = [CTR] in {
2213 let Pattern = [(int_ppc_mtctr i32:$rS)] in
2214 def MTCTRloop : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
2215                               "mtctr $rS", IIC_SprMTSPR>,
2216                 PPC970_DGroup_First, PPC970_Unit_FXU;
2217 }
2218
2219 let Defs = [LR] in {
2220 def MTLR  : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
2221                           "mtlr $rS", IIC_SprMTSPR>,
2222             PPC970_DGroup_First, PPC970_Unit_FXU;
2223 }
2224 let Uses = [LR] in {
2225 def MFLR  : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
2226                           "mflr $rT", IIC_SprMFSPR>,
2227             PPC970_DGroup_First, PPC970_Unit_FXU;
2228 }
2229
2230 let isCodeGenOnly = 1 in {
2231   // Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed
2232   // like a GPR on the PPC970.  As such, copies in and out have the same
2233   // performance characteristics as an OR instruction.
2234   def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
2235                                "mtspr 256, $rS", IIC_IntGeneral>,
2236                  PPC970_DGroup_Single, PPC970_Unit_FXU;
2237   def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
2238                                "mfspr $rT, 256", IIC_IntGeneral>,
2239                  PPC970_DGroup_First, PPC970_Unit_FXU;
2240
2241   def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
2242                                 (outs VRSAVERC:$reg), (ins gprc:$rS),
2243                                 "mtspr 256, $rS", IIC_IntGeneral>,
2244                   PPC970_DGroup_Single, PPC970_Unit_FXU;
2245   def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
2246                                 (ins VRSAVERC:$reg),
2247                                 "mfspr $rT, 256", IIC_IntGeneral>,
2248                   PPC970_DGroup_First, PPC970_Unit_FXU;
2249 }
2250
2251 // SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
2252 // so we'll need to scavenge a register for it.
2253 let mayStore = 1 in
2254 def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
2255                      "#SPILL_VRSAVE", []>;
2256
2257 // RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
2258 // spilled), so we'll need to scavenge a register for it.
2259 let mayLoad = 1 in
2260 def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
2261                      "#RESTORE_VRSAVE", []>;
2262
2263 let hasSideEffects = 0 in {
2264 def MTOCRF: XFXForm_5a<31, 144, (outs crbitm:$FXM), (ins gprc:$ST),
2265                        "mtocrf $FXM, $ST", IIC_BrMCRX>,
2266             PPC970_DGroup_First, PPC970_Unit_CRU;
2267
2268 def MTCRF : XFXForm_5<31, 144, (outs), (ins i32imm:$FXM, gprc:$rS),
2269                       "mtcrf $FXM, $rS", IIC_BrMCRX>,
2270             PPC970_MicroCode, PPC970_Unit_CRU;
2271
2272 let hasExtraSrcRegAllocReq = 1 in // to enable post-ra anti-dep breaking.
2273 def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
2274                        "mfocrf $rT, $FXM", IIC_SprMFCRF>,
2275             PPC970_DGroup_First, PPC970_Unit_CRU;
2276
2277 def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
2278                      "mfcr $rT", IIC_SprMFCR>,
2279                      PPC970_MicroCode, PPC970_Unit_CRU;
2280 } // hasSideEffects = 0
2281
2282 // Pseudo instruction to perform FADD in round-to-zero mode.
2283 let usesCustomInserter = 1, Uses = [RM] in {
2284   def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
2285                       [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
2286 }
2287
2288 // The above pseudo gets expanded to make use of the following instructions
2289 // to manipulate FPSCR.  Note that FPSCR is not modeled at the DAG level.
2290 let Uses = [RM], Defs = [RM] in { 
2291   def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
2292                         "mtfsb0 $FM", IIC_IntMTFSB0, []>,
2293                PPC970_DGroup_Single, PPC970_Unit_FPU;
2294   def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
2295                         "mtfsb1 $FM", IIC_IntMTFSB0, []>,
2296                PPC970_DGroup_Single, PPC970_Unit_FPU;
2297   let isCodeGenOnly = 1 in
2298   def MTFSFb  : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
2299                         "mtfsf $FM, $rT", IIC_IntMTFSB0, []>,
2300                 PPC970_DGroup_Single, PPC970_Unit_FPU;
2301 }
2302 let Uses = [RM] in {
2303   def MFFS   : XForm_42<63, 583, (outs f8rc:$rT), (ins),
2304                          "mffs $rT", IIC_IntMFFS,
2305                          [(set f64:$rT, (PPCmffs))]>,
2306                PPC970_DGroup_Single, PPC970_Unit_FPU;
2307
2308   let Defs = [CR1] in
2309   def MFFSo : XForm_42<63, 583, (outs f8rc:$rT), (ins),
2310                       "mffs. $rT", IIC_IntMFFS, []>, isDOT;
2311 }
2312
2313
2314 let PPC970_Unit = 1, hasSideEffects = 0 in {  // FXU Operations.
2315 // XO-Form instructions.  Arithmetic instructions that can set overflow bit
2316 let isCommutable = 1 in
2317 defm ADD4  : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2318                        "add", "$rT, $rA, $rB", IIC_IntSimple,
2319                        [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
2320 let isCodeGenOnly = 1 in
2321 def ADD4TLS  : XOForm_1<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, tlsreg32:$rB),
2322                        "add $rT, $rA, $rB", IIC_IntSimple,
2323                        [(set i32:$rT, (add i32:$rA, tglobaltlsaddr:$rB))]>;
2324 let isCommutable = 1 in
2325 defm ADDC  : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2326                         "addc", "$rT, $rA, $rB", IIC_IntGeneral,
2327                         [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
2328                         PPC970_DGroup_Cracked;
2329
2330 defm DIVW  : XOForm_1rcr<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2331                           "divw", "$rT, $rA, $rB", IIC_IntDivW,
2332                           [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>;
2333 defm DIVWU : XOForm_1rcr<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2334                           "divwu", "$rT, $rA, $rB", IIC_IntDivW,
2335                           [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>;
2336 def DIVWE : XOForm_1<31, 427, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2337                      "divwe $rT, $rA, $rB", IIC_IntDivW,
2338                      [(set i32:$rT, (int_ppc_divwe gprc:$rA, gprc:$rB))]>,
2339                      Requires<[HasExtDiv]>;
2340 let Defs = [CR0] in
2341 def DIVWEo : XOForm_1<31, 427, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2342                       "divwe. $rT, $rA, $rB", IIC_IntDivW,
2343                       []>, isDOT, PPC970_DGroup_Cracked, PPC970_DGroup_First,
2344                       Requires<[HasExtDiv]>;
2345 def DIVWEU : XOForm_1<31, 395, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2346                       "divweu $rT, $rA, $rB", IIC_IntDivW,
2347                       [(set i32:$rT, (int_ppc_divweu gprc:$rA, gprc:$rB))]>,
2348                       Requires<[HasExtDiv]>;
2349 let Defs = [CR0] in
2350 def DIVWEUo : XOForm_1<31, 395, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2351                        "divweu. $rT, $rA, $rB", IIC_IntDivW,
2352                        []>, isDOT, PPC970_DGroup_Cracked, PPC970_DGroup_First,
2353                        Requires<[HasExtDiv]>;
2354 let isCommutable = 1 in {
2355 defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2356                        "mulhw", "$rT, $rA, $rB", IIC_IntMulHW,
2357                        [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
2358 defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2359                        "mulhwu", "$rT, $rA, $rB", IIC_IntMulHWU,
2360                        [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
2361 defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2362                        "mullw", "$rT, $rA, $rB", IIC_IntMulHW,
2363                        [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
2364 } // isCommutable
2365 defm SUBF  : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2366                        "subf", "$rT, $rA, $rB", IIC_IntGeneral,
2367                        [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
2368 defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2369                         "subfc", "$rT, $rA, $rB", IIC_IntGeneral,
2370                         [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
2371                         PPC970_DGroup_Cracked;
2372 defm NEG    : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
2373                         "neg", "$rT, $rA", IIC_IntSimple,
2374                         [(set i32:$rT, (ineg i32:$rA))]>;
2375 let Uses = [CARRY] in {
2376 let isCommutable = 1 in
2377 defm ADDE  : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2378                         "adde", "$rT, $rA, $rB", IIC_IntGeneral,
2379                         [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
2380 defm ADDME  : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
2381                          "addme", "$rT, $rA", IIC_IntGeneral,
2382                          [(set i32:$rT, (adde i32:$rA, -1))]>;
2383 defm ADDZE  : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
2384                          "addze", "$rT, $rA", IIC_IntGeneral,
2385                          [(set i32:$rT, (adde i32:$rA, 0))]>;
2386 defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
2387                         "subfe", "$rT, $rA, $rB", IIC_IntGeneral,
2388                         [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
2389 defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
2390                          "subfme", "$rT, $rA", IIC_IntGeneral,
2391                          [(set i32:$rT, (sube -1, i32:$rA))]>;
2392 defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
2393                          "subfze", "$rT, $rA", IIC_IntGeneral,
2394                          [(set i32:$rT, (sube 0, i32:$rA))]>;
2395 }
2396 }
2397
2398 // A-Form instructions.  Most of the instructions executed in the FPU are of
2399 // this type.
2400 //
2401 let PPC970_Unit = 3, hasSideEffects = 0 in {  // FPU Operations.
2402 let Uses = [RM] in {
2403 let isCommutable = 1 in {
2404   defm FMADD : AForm_1r<63, 29, 
2405                       (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
2406                       "fmadd", "$FRT, $FRA, $FRC, $FRB", IIC_FPFused,
2407                       [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
2408   defm FMADDS : AForm_1r<59, 29,
2409                       (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
2410                       "fmadds", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2411                       [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
2412   defm FMSUB : AForm_1r<63, 28,
2413                       (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
2414                       "fmsub", "$FRT, $FRA, $FRC, $FRB", IIC_FPFused,
2415                       [(set f64:$FRT,
2416                             (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
2417   defm FMSUBS : AForm_1r<59, 28,
2418                       (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
2419                       "fmsubs", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2420                       [(set f32:$FRT,
2421                             (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
2422   defm FNMADD : AForm_1r<63, 31,
2423                       (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
2424                       "fnmadd", "$FRT, $FRA, $FRC, $FRB", IIC_FPFused,
2425                       [(set f64:$FRT,
2426                             (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
2427   defm FNMADDS : AForm_1r<59, 31,
2428                       (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
2429                       "fnmadds", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2430                       [(set f32:$FRT,
2431                             (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
2432   defm FNMSUB : AForm_1r<63, 30,
2433                       (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
2434                       "fnmsub", "$FRT, $FRA, $FRC, $FRB", IIC_FPFused,
2435                       [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
2436                                                  (fneg f64:$FRB))))]>;
2437   defm FNMSUBS : AForm_1r<59, 30,
2438                       (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
2439                       "fnmsubs", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2440                       [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
2441                                                  (fneg f32:$FRB))))]>;
2442 } // isCommutable
2443 }
2444 // FSEL is artificially split into 4 and 8-byte forms for the result.  To avoid
2445 // having 4 of these, force the comparison to always be an 8-byte double (code
2446 // should use an FMRSD if the input comparison value really wants to be a float)
2447 // and 4/8 byte forms for the result and operand type..
2448 let Interpretation64Bit = 1, isCodeGenOnly = 1 in
2449 defm FSELD : AForm_1r<63, 23,
2450                       (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
2451                       "fsel", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2452                       [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
2453 defm FSELS : AForm_1r<63, 23,
2454                       (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
2455                       "fsel", "$FRT, $FRA, $FRC, $FRB", IIC_FPGeneral,
2456                       [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
2457 let Uses = [RM] in {
2458   let isCommutable = 1 in {
2459   defm FADD  : AForm_2r<63, 21,
2460                         (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
2461                         "fadd", "$FRT, $FRA, $FRB", IIC_FPAddSub,
2462                         [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
2463   defm FADDS : AForm_2r<59, 21,
2464                         (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
2465                         "fadds", "$FRT, $FRA, $FRB", IIC_FPGeneral,
2466                         [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
2467   } // isCommutable
2468   defm FDIV  : AForm_2r<63, 18,
2469                         (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
2470                         "fdiv", "$FRT, $FRA, $FRB", IIC_FPDivD,
2471                         [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
2472   defm FDIVS : AForm_2r<59, 18,
2473                         (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
2474                         "fdivs", "$FRT, $FRA, $FRB", IIC_FPDivS,
2475                         [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
2476   let isCommutable = 1 in {
2477   defm FMUL  : AForm_3r<63, 25,
2478                         (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
2479                         "fmul", "$FRT, $FRA, $FRC", IIC_FPFused,
2480                         [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
2481   defm FMULS : AForm_3r<59, 25,
2482                         (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
2483                         "fmuls", "$FRT, $FRA, $FRC", IIC_FPGeneral,
2484                         [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
2485   } // isCommutable
2486   defm FSUB  : AForm_2r<63, 20,
2487                         (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
2488                         "fsub", "$FRT, $FRA, $FRB", IIC_FPAddSub,
2489                         [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
2490   defm FSUBS : AForm_2r<59, 20,
2491                         (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
2492                         "fsubs", "$FRT, $FRA, $FRB", IIC_FPGeneral,
2493                         [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
2494   }
2495 }
2496
2497 let hasSideEffects = 0 in {
2498 let PPC970_Unit = 1 in {  // FXU Operations.
2499   let isSelect = 1 in
2500   def ISEL  : AForm_4<31, 15,
2501                      (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
2502                      "isel $rT, $rA, $rB, $cond", IIC_IntISEL,
2503                      []>;
2504 }
2505
2506 let PPC970_Unit = 1 in {  // FXU Operations.
2507 // M-Form instructions.  rotate and mask instructions.
2508 //
2509 let isCommutable = 1 in {
2510 // RLWIMI can be commuted if the rotate amount is zero.
2511 defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
2512                        (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
2513                        u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME",
2514                        IIC_IntRotate, []>, PPC970_DGroup_Cracked,
2515                        RegConstraint<"$rSi = $rA">, NoEncode<"$rSi">;
2516 }
2517 let BaseName = "rlwinm" in {
2518 def RLWINM : MForm_2<21,
2519                      (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
2520                      "rlwinm $rA, $rS, $SH, $MB, $ME", IIC_IntGeneral,
2521                      []>, RecFormRel;
2522 let Defs = [CR0] in
2523 def RLWINMo : MForm_2<21,
2524                       (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
2525                       "rlwinm. $rA, $rS, $SH, $MB, $ME", IIC_IntGeneral,
2526                       []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
2527 }
2528 defm RLWNM  : MForm_2r<23, (outs gprc:$rA),
2529                        (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
2530                        "rlwnm", "$rA, $rS, $rB, $MB, $ME", IIC_IntGeneral,
2531                        []>;
2532 }
2533 } // hasSideEffects = 0
2534
2535 //===----------------------------------------------------------------------===//
2536 // PowerPC Instruction Patterns
2537 //
2538
2539 // Arbitrary immediate support.  Implement in terms of LIS/ORI.
2540 def : Pat<(i32 imm:$imm),
2541           (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
2542
2543 // Implement the 'not' operation with the NOR instruction.
2544 def i32not : OutPatFrag<(ops node:$in),
2545                         (NOR $in, $in)>;
2546 def        : Pat<(not i32:$in),
2547                  (i32not $in)>;
2548
2549 // ADD an arbitrary immediate.
2550 def : Pat<(add i32:$in, imm:$imm),
2551           (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
2552 // OR an arbitrary immediate.
2553 def : Pat<(or i32:$in, imm:$imm),
2554           (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
2555 // XOR an arbitrary immediate.
2556 def : Pat<(xor i32:$in, imm:$imm),
2557           (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
2558 // SUBFIC
2559 def : Pat<(sub imm32SExt16:$imm, i32:$in),
2560           (SUBFIC $in, imm:$imm)>;
2561
2562 // SHL/SRL
2563 def : Pat<(shl i32:$in, (i32 imm:$imm)),
2564           (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
2565 def : Pat<(srl i32:$in, (i32 imm:$imm)),
2566           (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
2567
2568 // ROTL
2569 def : Pat<(rotl i32:$in, i32:$sh),
2570           (RLWNM $in, $sh, 0, 31)>;
2571 def : Pat<(rotl i32:$in, (i32 imm:$imm)),
2572           (RLWINM $in, imm:$imm, 0, 31)>;
2573
2574 // RLWNM
2575 def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
2576           (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
2577
2578 // Calls
2579 def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
2580           (BL tglobaladdr:$dst)>;
2581 def : Pat<(PPCcall (i32 texternalsym:$dst)),
2582           (BL texternalsym:$dst)>;
2583
2584 def : Pat<(PPCtc_return (i32 tglobaladdr:$dst),  imm:$imm),
2585           (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
2586
2587 def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
2588           (TCRETURNdi texternalsym:$dst, imm:$imm)>;
2589
2590 def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
2591           (TCRETURNri CTRRC:$dst, imm:$imm)>;
2592
2593
2594
2595 // Hi and Lo for Darwin Global Addresses.
2596 def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
2597 def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
2598 def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
2599 def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
2600 def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
2601 def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
2602 def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
2603 def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
2604 def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
2605           (ADDIS $in, tglobaltlsaddr:$g)>;
2606 def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
2607           (ADDI $in, tglobaltlsaddr:$g)>;
2608 def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
2609           (ADDIS $in, tglobaladdr:$g)>;
2610 def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
2611           (ADDIS $in, tconstpool:$g)>;
2612 def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
2613           (ADDIS $in, tjumptable:$g)>;
2614 def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
2615           (ADDIS $in, tblockaddress:$g)>;
2616
2617 // Support for thread-local storage.
2618 def PPC32GOT: Pseudo<(outs gprc:$rD), (ins), "#PPC32GOT", 
2619                 [(set i32:$rD, (PPCppc32GOT))]>;
2620
2621 // Get the _GLOBAL_OFFSET_TABLE_ in PIC mode.
2622 // This uses two output registers, the first as the real output, the second as a
2623 // temporary register, used internally in code generation.
2624 def PPC32PICGOT: Pseudo<(outs gprc:$rD, gprc:$rT), (ins), "#PPC32PICGOT", 
2625                 []>, NoEncode<"$rT">;
2626
2627 def LDgotTprelL32: Pseudo<(outs gprc:$rD), (ins s16imm:$disp, gprc_nor0:$reg),
2628                            "#LDgotTprelL32",
2629                            [(set i32:$rD,
2630                              (PPCldGotTprelL tglobaltlsaddr:$disp, i32:$reg))]>;
2631 def : Pat<(PPCaddTls i32:$in, tglobaltlsaddr:$g),
2632           (ADD4TLS $in, tglobaltlsaddr:$g)>;
2633
2634 def ADDItlsgdL32 : Pseudo<(outs gprc:$rD), (ins gprc_nor0:$reg, s16imm:$disp),
2635                          "#ADDItlsgdL32",
2636                          [(set i32:$rD,
2637                            (PPCaddiTlsgdL i32:$reg, tglobaltlsaddr:$disp))]>;
2638 // LR is a true define, while the rest of the Defs are clobbers.  R3 is
2639 // explicitly defined when this op is created, so not mentioned here.
2640 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
2641     Defs = [R0,R4,R5,R6,R7,R8,R9,R10,R11,R12,LR,CTR,CR0,CR1,CR5,CR6,CR7] in
2642 def GETtlsADDR32 : Pseudo<(outs gprc:$rD), (ins gprc:$reg, tlsgd32:$sym),
2643                           "GETtlsADDR32",
2644                           [(set i32:$rD,
2645                             (PPCgetTlsAddr i32:$reg, tglobaltlsaddr:$sym))]>;
2646 // Combined op for ADDItlsgdL32 and GETtlsADDR32, late expanded.  R3 and LR
2647 // are true defines while the rest of the Defs are clobbers.
2648 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
2649     Defs = [R0,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,LR,CTR,CR0,CR1,CR5,CR6,CR7] in
2650 def ADDItlsgdLADDR32 : Pseudo<(outs gprc:$rD),
2651                               (ins gprc_nor0:$reg, s16imm:$disp, tlsgd32:$sym),
2652                               "#ADDItlsgdLADDR32",
2653                               [(set i32:$rD,
2654                                 (PPCaddiTlsgdLAddr i32:$reg,
2655                                                    tglobaltlsaddr:$disp,
2656                                                    tglobaltlsaddr:$sym))]>;
2657 def ADDItlsldL32 : Pseudo<(outs gprc:$rD), (ins gprc_nor0:$reg, s16imm:$disp),
2658                           "#ADDItlsldL32",
2659                           [(set i32:$rD,
2660                             (PPCaddiTlsldL i32:$reg, tglobaltlsaddr:$disp))]>;
2661 // LR is a true define, while the rest of the Defs are clobbers.  R3 is
2662 // explicitly defined when this op is created, so not mentioned here.
2663 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
2664     Defs = [R0,R4,R5,R6,R7,R8,R9,R10,R11,R12,LR,CTR,CR0,CR1,CR5,CR6,CR7] in
2665 def GETtlsldADDR32 : Pseudo<(outs gprc:$rD), (ins gprc:$reg, tlsgd32:$sym),
2666                             "GETtlsldADDR32",
2667                             [(set i32:$rD,
2668                               (PPCgetTlsldAddr i32:$reg,
2669                                                tglobaltlsaddr:$sym))]>;
2670 // Combined op for ADDItlsldL32 and GETtlsADDR32, late expanded.  R3 and LR
2671 // are true defines while the rest of the Defs are clobbers.
2672 let hasExtraSrcRegAllocReq = 1, hasExtraDefRegAllocReq = 1,
2673     Defs = [R0,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,LR,CTR,CR0,CR1,CR5,CR6,CR7] in
2674 def ADDItlsldLADDR32 : Pseudo<(outs gprc:$rD),
2675                               (ins gprc_nor0:$reg, s16imm:$disp, tlsgd32:$sym),
2676                               "#ADDItlsldLADDR32",
2677                               [(set i32:$rD,
2678                                 (PPCaddiTlsldLAddr i32:$reg,
2679                                                    tglobaltlsaddr:$disp,
2680                                                    tglobaltlsaddr:$sym))]>;
2681 def ADDIdtprelL32 : Pseudo<(outs gprc:$rD), (ins gprc_nor0:$reg, s16imm:$disp),
2682                            "#ADDIdtprelL32",
2683                            [(set i32:$rD,
2684                              (PPCaddiDtprelL i32:$reg, tglobaltlsaddr:$disp))]>;
2685 def ADDISdtprelHA32 : Pseudo<(outs gprc:$rD), (ins gprc_nor0:$reg, s16imm:$disp),
2686                             "#ADDISdtprelHA32",
2687                             [(set i32:$rD,
2688                               (PPCaddisDtprelHA i32:$reg,
2689                                                 tglobaltlsaddr:$disp))]>;
2690
2691 // Support for Position-independent code
2692 def LWZtoc : Pseudo<(outs gprc:$rD), (ins tocentry32:$disp, gprc:$reg),
2693                    "#LWZtoc",
2694                    [(set i32:$rD,
2695                       (PPCtoc_entry tglobaladdr:$disp, i32:$reg))]>;
2696 // Get Global (GOT) Base Register offset, from the word immediately preceding
2697 // the function label.
2698 def UpdateGBR : Pseudo<(outs gprc:$rD, gprc:$rT), (ins gprc:$rI), "#UpdateGBR", []>;
2699
2700
2701 // Standard shifts.  These are represented separately from the real shifts above
2702 // so that we can distinguish between shifts that allow 5-bit and 6-bit shift
2703 // amounts.
2704 def : Pat<(sra i32:$rS, i32:$rB),
2705           (SRAW $rS, $rB)>;
2706 def : Pat<(srl i32:$rS, i32:$rB),
2707           (SRW $rS, $rB)>;
2708 def : Pat<(shl i32:$rS, i32:$rB),
2709           (SLW $rS, $rB)>;
2710
2711 def : Pat<(zextloadi1 iaddr:$src),
2712           (LBZ iaddr:$src)>;
2713 def : Pat<(zextloadi1 xaddr:$src),
2714           (LBZX xaddr:$src)>;
2715 def : Pat<(extloadi1 iaddr:$src),
2716           (LBZ iaddr:$src)>;
2717 def : Pat<(extloadi1 xaddr:$src),
2718           (LBZX xaddr:$src)>;
2719 def : Pat<(extloadi8 iaddr:$src),
2720           (LBZ iaddr:$src)>;
2721 def : Pat<(extloadi8 xaddr:$src),
2722           (LBZX xaddr:$src)>;
2723 def : Pat<(extloadi16 iaddr:$src),
2724           (LHZ iaddr:$src)>;
2725 def : Pat<(extloadi16 xaddr:$src),
2726           (LHZX xaddr:$src)>;
2727 def : Pat<(f64 (extloadf32 iaddr:$src)),
2728           (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
2729 def : Pat<(f64 (extloadf32 xaddr:$src)),
2730           (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
2731
2732 def : Pat<(f64 (fextend f32:$src)),
2733           (COPY_TO_REGCLASS $src, F8RC)>;
2734
2735 // Only seq_cst fences require the heavyweight sync (SYNC 0).
2736 // All others can use the lightweight sync (SYNC 1).
2737 // source: http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
2738 // The rule for seq_cst is duplicated to work with both 64 bits and 32 bits
2739 // versions of Power.
2740 def : Pat<(atomic_fence (i64 7), (imm)), (SYNC 0)>, Requires<[HasSYNC]>;
2741 def : Pat<(atomic_fence (i32 7), (imm)), (SYNC 0)>, Requires<[HasSYNC]>;
2742 def : Pat<(atomic_fence (imm),   (imm)), (SYNC 1)>, Requires<[HasSYNC]>;
2743 def : Pat<(atomic_fence (imm), (imm)), (MSYNC)>, Requires<[HasOnlyMSYNC]>;
2744
2745 // Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2746 def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2747           (FNMSUB $A, $C, $B)>;
2748 def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2749           (FNMSUB $A, $C, $B)>;
2750 def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2751           (FNMSUBS $A, $C, $B)>;
2752 def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2753           (FNMSUBS $A, $C, $B)>;
2754
2755 // FCOPYSIGN's operand types need not agree.
2756 def : Pat<(fcopysign f64:$frB, f32:$frA),
2757           (FCPSGND (COPY_TO_REGCLASS $frA, F8RC), $frB)>;
2758 def : Pat<(fcopysign f32:$frB, f64:$frA),
2759           (FCPSGNS (COPY_TO_REGCLASS $frA, F4RC), $frB)>;
2760
2761 include "PPCInstrAltivec.td"
2762 include "PPCInstrSPE.td"
2763 include "PPCInstr64Bit.td"
2764 include "PPCInstrVSX.td"
2765 include "PPCInstrQPX.td"
2766 include "PPCInstrHTM.td"
2767
2768 def crnot : OutPatFrag<(ops node:$in),
2769                        (CRNOR $in, $in)>;
2770 def       : Pat<(not i1:$in),
2771                 (crnot $in)>;
2772
2773 // Patterns for arithmetic i1 operations.
2774 def : Pat<(add i1:$a, i1:$b),
2775           (CRXOR $a, $b)>;
2776 def : Pat<(sub i1:$a, i1:$b),
2777           (CRXOR $a, $b)>;
2778 def : Pat<(mul i1:$a, i1:$b),
2779           (CRAND $a, $b)>;
2780
2781 // We're sometimes asked to materialize i1 -1, which is just 1 in this case
2782 // (-1 is used to mean all bits set).
2783 def : Pat<(i1 -1), (CRSET)>;
2784
2785 // i1 extensions, implemented in terms of isel.
2786 def : Pat<(i32 (zext i1:$in)),
2787           (SELECT_I4 $in, (LI 1), (LI 0))>;
2788 def : Pat<(i32 (sext i1:$in)),
2789           (SELECT_I4 $in, (LI -1), (LI 0))>;
2790
2791 def : Pat<(i64 (zext i1:$in)),
2792           (SELECT_I8 $in, (LI8 1), (LI8 0))>;
2793 def : Pat<(i64 (sext i1:$in)),
2794           (SELECT_I8 $in, (LI8 -1), (LI8 0))>;
2795
2796 // FIXME: We should choose either a zext or a sext based on other constants
2797 // already around.
2798 def : Pat<(i32 (anyext i1:$in)),
2799           (SELECT_I4 $in, (LI 1), (LI 0))>;
2800 def : Pat<(i64 (anyext i1:$in)),
2801           (SELECT_I8 $in, (LI8 1), (LI8 0))>;
2802
2803 // match setcc on i1 variables.
2804 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETLT)),
2805           (CRANDC $s2, $s1)>;
2806 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETULT)),
2807           (CRANDC $s2, $s1)>;
2808 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETLE)),
2809           (CRORC $s2, $s1)>;
2810 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETULE)),
2811           (CRORC $s2, $s1)>;
2812 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETEQ)),
2813           (CREQV $s1, $s2)>;
2814 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETGE)),
2815           (CRORC $s1, $s2)>;
2816 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETUGE)),
2817           (CRORC $s1, $s2)>;
2818 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETGT)),
2819           (CRANDC $s1, $s2)>;
2820 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETUGT)),
2821           (CRANDC $s1, $s2)>;
2822 def : Pat<(i1 (setcc i1:$s1, i1:$s2, SETNE)),
2823           (CRXOR $s1, $s2)>;
2824
2825 // match setcc on non-i1 (non-vector) variables. Note that SETUEQ, SETOGE,
2826 // SETOLE, SETONE, SETULT and SETUGT should be expanded by legalize for
2827 // floating-point types.
2828
2829 multiclass CRNotPat<dag pattern, dag result> {
2830   def : Pat<pattern, (crnot result)>;
2831   def : Pat<(not pattern), result>;
2832
2833   // We can also fold the crnot into an extension:
2834   def : Pat<(i32 (zext pattern)),
2835             (SELECT_I4 result, (LI 0), (LI 1))>;
2836   def : Pat<(i32 (sext pattern)),
2837             (SELECT_I4 result, (LI 0), (LI -1))>;
2838
2839   // We can also fold the crnot into an extension:
2840   def : Pat<(i64 (zext pattern)),
2841             (SELECT_I8 result, (LI8 0), (LI8 1))>;
2842   def : Pat<(i64 (sext pattern)),
2843             (SELECT_I8 result, (LI8 0), (LI8 -1))>;
2844
2845   // FIXME: We should choose either a zext or a sext based on other constants
2846   // already around.
2847   def : Pat<(i32 (anyext pattern)),
2848             (SELECT_I4 result, (LI 0), (LI 1))>;
2849
2850   def : Pat<(i64 (anyext pattern)),
2851             (SELECT_I8 result, (LI8 0), (LI8 1))>;
2852 }
2853
2854 // FIXME: Because of what seems like a bug in TableGen's type-inference code,
2855 // we need to write imm:$imm in the output patterns below, not just $imm, or
2856 // else the resulting matcher will not correctly add the immediate operand
2857 // (making it a register operand instead).
2858
2859 // extended SETCC.
2860 multiclass ExtSetCCPat<CondCode cc, PatFrag pfrag,
2861                        OutPatFrag rfrag, OutPatFrag rfrag8> {
2862   def : Pat<(i32 (zext (i1 (pfrag i32:$s1, cc)))),
2863             (rfrag $s1)>;
2864   def : Pat<(i64 (zext (i1 (pfrag i64:$s1, cc)))),
2865             (rfrag8 $s1)>;
2866   def : Pat<(i64 (zext (i1 (pfrag i32:$s1, cc)))),
2867             (INSERT_SUBREG (i64 (IMPLICIT_DEF)), (rfrag $s1), sub_32)>;
2868   def : Pat<(i32 (zext (i1 (pfrag i64:$s1, cc)))),
2869             (EXTRACT_SUBREG (rfrag8 $s1), sub_32)>;
2870
2871   def : Pat<(i32 (anyext (i1 (pfrag i32:$s1, cc)))),
2872             (rfrag $s1)>;
2873   def : Pat<(i64 (anyext (i1 (pfrag i64:$s1, cc)))),
2874             (rfrag8 $s1)>;
2875   def : Pat<(i64 (anyext (i1 (pfrag i32:$s1, cc)))),
2876             (INSERT_SUBREG (i64 (IMPLICIT_DEF)), (rfrag $s1), sub_32)>;
2877   def : Pat<(i32 (anyext (i1 (pfrag i64:$s1, cc)))),
2878             (EXTRACT_SUBREG (rfrag8 $s1), sub_32)>;
2879 }
2880
2881 // Note that we do all inversions below with i(32|64)not, instead of using
2882 // (xori x, 1) because on the A2 nor has single-cycle latency while xori
2883 // has 2-cycle latency.
2884
2885 defm : ExtSetCCPat<SETEQ,
2886                    PatFrag<(ops node:$in, node:$cc),
2887                            (setcc $in, 0, $cc)>,
2888                    OutPatFrag<(ops node:$in),
2889                               (RLWINM (CNTLZW $in), 27, 31, 31)>,
2890                    OutPatFrag<(ops node:$in),
2891                               (RLDICL (CNTLZD $in), 58, 63)> >;
2892  
2893 defm : ExtSetCCPat<SETNE,
2894                    PatFrag<(ops node:$in, node:$cc),
2895                            (setcc $in, 0, $cc)>,
2896                    OutPatFrag<(ops node:$in),
2897                               (RLWINM (i32not (CNTLZW $in)), 27, 31, 31)>,
2898                    OutPatFrag<(ops node:$in),
2899                               (RLDICL (i64not (CNTLZD $in)), 58, 63)> >;
2900                  
2901 defm : ExtSetCCPat<SETLT,
2902                    PatFrag<(ops node:$in, node:$cc),
2903                            (setcc $in, 0, $cc)>,
2904                    OutPatFrag<(ops node:$in),
2905                               (RLWINM $in, 1, 31, 31)>,
2906                    OutPatFrag<(ops node:$in),
2907                               (RLDICL $in, 1, 63)> >;
2908
2909 defm : ExtSetCCPat<SETGE,
2910                    PatFrag<(ops node:$in, node:$cc),
2911                            (setcc $in, 0, $cc)>,
2912                    OutPatFrag<(ops node:$in),
2913                               (RLWINM (i32not $in), 1, 31, 31)>,
2914                    OutPatFrag<(ops node:$in),
2915                               (RLDICL (i64not $in), 1, 63)> >;
2916
2917 defm : ExtSetCCPat<SETGT,
2918                    PatFrag<(ops node:$in, node:$cc),
2919                            (setcc $in, 0, $cc)>,
2920                    OutPatFrag<(ops node:$in),
2921                               (RLWINM (ANDC (NEG $in), $in), 1, 31, 31)>,
2922                    OutPatFrag<(ops node:$in),
2923                               (RLDICL (ANDC8 (NEG8 $in), $in), 1, 63)> >;
2924
2925 defm : ExtSetCCPat<SETLE,
2926                    PatFrag<(ops node:$in, node:$cc),
2927                            (setcc $in, 0, $cc)>,
2928                    OutPatFrag<(ops node:$in),
2929                               (RLWINM (ORC $in, (NEG $in)), 1, 31, 31)>,
2930                    OutPatFrag<(ops node:$in),
2931                               (RLDICL (ORC8 $in, (NEG8 $in)), 1, 63)> >;
2932
2933 defm : ExtSetCCPat<SETLT,
2934                    PatFrag<(ops node:$in, node:$cc),
2935                            (setcc $in, -1, $cc)>,
2936                    OutPatFrag<(ops node:$in),
2937                               (RLWINM (AND $in, (ADDI $in, 1)), 1, 31, 31)>,
2938                    OutPatFrag<(ops node:$in),
2939                               (RLDICL (AND8 $in, (ADDI8 $in, 1)), 1, 63)> >;
2940
2941 defm : ExtSetCCPat<SETGE,
2942                    PatFrag<(ops node:$in, node:$cc),
2943                            (setcc $in, -1, $cc)>,
2944                    OutPatFrag<(ops node:$in),
2945                               (RLWINM (NAND $in, (ADDI $in, 1)), 1, 31, 31)>,
2946                    OutPatFrag<(ops node:$in),
2947                               (RLDICL (NAND8 $in, (ADDI8 $in, 1)), 1, 63)> >;
2948
2949 defm : ExtSetCCPat<SETGT,
2950                    PatFrag<(ops node:$in, node:$cc),
2951                            (setcc $in, -1, $cc)>,
2952                    OutPatFrag<(ops node:$in),
2953                               (RLWINM (i32not $in), 1, 31, 31)>,
2954                    OutPatFrag<(ops node:$in),
2955                               (RLDICL (i64not $in), 1, 63)> >;
2956
2957 defm : ExtSetCCPat<SETLE,
2958                    PatFrag<(ops node:$in, node:$cc),
2959                            (setcc $in, -1, $cc)>,
2960                    OutPatFrag<(ops node:$in),
2961                               (RLWINM $in, 1, 31, 31)>,
2962                    OutPatFrag<(ops node:$in),
2963                               (RLDICL $in, 1, 63)> >;
2964
2965 // SETCC for i32.
2966 def : Pat<(i1 (setcc i32:$s1, immZExt16:$imm, SETULT)),
2967           (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_lt)>;
2968 def : Pat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETLT)),
2969           (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_lt)>;
2970 def : Pat<(i1 (setcc i32:$s1, immZExt16:$imm, SETUGT)),
2971           (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_gt)>;
2972 def : Pat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETGT)),
2973           (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_gt)>;
2974 def : Pat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETEQ)),
2975           (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_eq)>;
2976 def : Pat<(i1 (setcc i32:$s1, immZExt16:$imm, SETEQ)),
2977           (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_eq)>;
2978
2979 // For non-equality comparisons, the default code would materialize the
2980 // constant, then compare against it, like this:
2981 //   lis r2, 4660
2982 //   ori r2, r2, 22136
2983 //   cmpw cr0, r3, r2
2984 //   beq cr0,L6
2985 // Since we are just comparing for equality, we can emit this instead:
2986 //   xoris r0,r3,0x1234
2987 //   cmplwi cr0,r0,0x5678
2988 //   beq cr0,L6
2989
2990 def : Pat<(i1 (setcc i32:$s1, imm:$imm, SETEQ)),
2991           (EXTRACT_SUBREG (CMPLWI (XORIS $s1, (HI16 imm:$imm)),
2992                                   (LO16 imm:$imm)), sub_eq)>;
2993
2994 defm : CRNotPat<(i1 (setcc i32:$s1, immZExt16:$imm, SETUGE)),
2995                 (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_lt)>;
2996 defm : CRNotPat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETGE)),
2997                 (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_lt)>;
2998 defm : CRNotPat<(i1 (setcc i32:$s1, immZExt16:$imm, SETULE)),
2999                 (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_gt)>;
3000 defm : CRNotPat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETLE)),
3001                 (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_gt)>;
3002 defm : CRNotPat<(i1 (setcc i32:$s1, imm32SExt16:$imm, SETNE)),
3003                 (EXTRACT_SUBREG (CMPWI $s1, imm:$imm), sub_eq)>;
3004 defm : CRNotPat<(i1 (setcc i32:$s1, immZExt16:$imm, SETNE)),
3005                 (EXTRACT_SUBREG (CMPLWI $s1, imm:$imm), sub_eq)>;
3006
3007 defm : CRNotPat<(i1 (setcc i32:$s1, imm:$imm, SETNE)),
3008                 (EXTRACT_SUBREG (CMPLWI (XORIS $s1, (HI16 imm:$imm)),
3009                                         (LO16 imm:$imm)), sub_eq)>;
3010
3011 def : Pat<(i1 (setcc i32:$s1, i32:$s2, SETULT)),
3012           (EXTRACT_SUBREG (CMPLW $s1, $s2), sub_lt)>;
3013 def : Pat<(i1 (setcc i32:$s1, i32:$s2, SETLT)),
3014           (EXTRACT_SUBREG (CMPW $s1, $s2), sub_lt)>;
3015 def : Pat<(i1 (setcc i32:$s1, i32:$s2, SETUGT)),
3016           (EXTRACT_SUBREG (CMPLW $s1, $s2), sub_gt)>;
3017 def : Pat<(i1 (setcc i32:$s1, i32:$s2, SETGT)),
3018           (EXTRACT_SUBREG (CMPW $s1, $s2), sub_gt)>;
3019 def : Pat<(i1 (setcc i32:$s1, i32:$s2, SETEQ)),
3020           (EXTRACT_SUBREG (CMPW $s1, $s2), sub_eq)>;
3021
3022 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETUGE)),
3023                 (EXTRACT_SUBREG (CMPLW $s1, $s2), sub_lt)>;
3024 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETGE)),
3025                 (EXTRACT_SUBREG (CMPW $s1, $s2), sub_lt)>;
3026 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETULE)),
3027                 (EXTRACT_SUBREG (CMPLW $s1, $s2), sub_gt)>;
3028 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETLE)),
3029                 (EXTRACT_SUBREG (CMPW $s1, $s2), sub_gt)>;
3030 defm : CRNotPat<(i1 (setcc i32:$s1, i32:$s2, SETNE)),
3031                 (EXTRACT_SUBREG (CMPW $s1, $s2), sub_eq)>;
3032
3033 // SETCC for i64.
3034 def : Pat<(i1 (setcc i64:$s1, immZExt16:$imm, SETULT)),
3035           (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_lt)>;
3036 def : Pat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETLT)),
3037           (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_lt)>;
3038 def : Pat<(i1 (setcc i64:$s1, immZExt16:$imm, SETUGT)),
3039           (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_gt)>;
3040 def : Pat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETGT)),
3041           (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_gt)>;
3042 def : Pat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETEQ)),
3043           (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_eq)>;
3044 def : Pat<(i1 (setcc i64:$s1, immZExt16:$imm, SETEQ)),
3045           (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_eq)>;
3046
3047 // For non-equality comparisons, the default code would materialize the
3048 // constant, then compare against it, like this:
3049 //   lis r2, 4660
3050 //   ori r2, r2, 22136
3051 //   cmpd cr0, r3, r2
3052 //   beq cr0,L6
3053 // Since we are just comparing for equality, we can emit this instead:
3054 //   xoris r0,r3,0x1234
3055 //   cmpldi cr0,r0,0x5678
3056 //   beq cr0,L6
3057
3058 def : Pat<(i1 (setcc i64:$s1, imm64ZExt32:$imm, SETEQ)),
3059           (EXTRACT_SUBREG (CMPLDI (XORIS8 $s1, (HI16 imm:$imm)),
3060                                   (LO16 imm:$imm)), sub_eq)>;
3061
3062 defm : CRNotPat<(i1 (setcc i64:$s1, immZExt16:$imm, SETUGE)),
3063                 (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_lt)>;
3064 defm : CRNotPat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETGE)),
3065                 (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_lt)>;
3066 defm : CRNotPat<(i1 (setcc i64:$s1, immZExt16:$imm, SETULE)),
3067                 (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_gt)>;
3068 defm : CRNotPat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETLE)),
3069                 (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_gt)>;
3070 defm : CRNotPat<(i1 (setcc i64:$s1, imm64SExt16:$imm, SETNE)),
3071                 (EXTRACT_SUBREG (CMPDI $s1, imm:$imm), sub_eq)>;
3072 defm : CRNotPat<(i1 (setcc i64:$s1, immZExt16:$imm, SETNE)),
3073                 (EXTRACT_SUBREG (CMPLDI $s1, imm:$imm), sub_eq)>;
3074
3075 defm : CRNotPat<(i1 (setcc i64:$s1, imm64ZExt32:$imm, SETNE)),
3076                 (EXTRACT_SUBREG (CMPLDI (XORIS8 $s1, (HI16 imm:$imm)),
3077                                         (LO16 imm:$imm)), sub_eq)>;
3078
3079 def : Pat<(i1 (setcc i64:$s1, i64:$s2, SETULT)),
3080           (EXTRACT_SUBREG (CMPLD $s1, $s2), sub_lt)>;
3081 def : Pat<(i1 (setcc i64:$s1, i64:$s2, SETLT)),
3082           (EXTRACT_SUBREG (CMPD $s1, $s2), sub_lt)>;
3083 def : Pat<(i1 (setcc i64:$s1, i64:$s2, SETUGT)),
3084           (EXTRACT_SUBREG (CMPLD $s1, $s2), sub_gt)>;
3085 def : Pat<(i1 (setcc i64:$s1, i64:$s2, SETGT)),
3086           (EXTRACT_SUBREG (CMPD $s1, $s2), sub_gt)>;
3087 def : Pat<(i1 (setcc i64:$s1, i64:$s2, SETEQ)),
3088           (EXTRACT_SUBREG (CMPD $s1, $s2), sub_eq)>;
3089
3090 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETUGE)),
3091                 (EXTRACT_SUBREG (CMPLD $s1, $s2), sub_lt)>;
3092 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETGE)),
3093                 (EXTRACT_SUBREG (CMPD $s1, $s2), sub_lt)>;
3094 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETULE)),
3095                 (EXTRACT_SUBREG (CMPLD $s1, $s2), sub_gt)>;
3096 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETLE)),
3097                 (EXTRACT_SUBREG (CMPD $s1, $s2), sub_gt)>;
3098 defm : CRNotPat<(i1 (setcc i64:$s1, i64:$s2, SETNE)),
3099                 (EXTRACT_SUBREG (CMPD $s1, $s2), sub_eq)>;
3100
3101 // SETCC for f32.
3102 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETOLT)),
3103           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_lt)>;
3104 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETLT)),
3105           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_lt)>;
3106 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETOGT)),
3107           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_gt)>;
3108 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETGT)),
3109           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_gt)>;
3110 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETOEQ)),
3111           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_eq)>;
3112 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETEQ)),
3113           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_eq)>;
3114 def : Pat<(i1 (setcc f32:$s1, f32:$s2, SETUO)),
3115           (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_un)>;
3116
3117 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETUGE)),
3118                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_lt)>;
3119 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETGE)),
3120                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_lt)>;
3121 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETULE)),
3122                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_gt)>;
3123 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETLE)),
3124                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_gt)>;
3125 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETUNE)),
3126                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_eq)>;
3127 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETNE)),
3128                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_eq)>;
3129 defm : CRNotPat<(i1 (setcc f32:$s1, f32:$s2, SETO)),
3130                 (EXTRACT_SUBREG (FCMPUS $s1, $s2), sub_un)>;
3131
3132 // SETCC for f64.
3133 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETOLT)),
3134           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_lt)>;
3135 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETLT)),
3136           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_lt)>;
3137 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETOGT)),
3138           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_gt)>;
3139 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETGT)),
3140           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_gt)>;
3141 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETOEQ)),
3142           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_eq)>;
3143 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETEQ)),
3144           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_eq)>;
3145 def : Pat<(i1 (setcc f64:$s1, f64:$s2, SETUO)),
3146           (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_un)>;
3147
3148 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETUGE)),
3149                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_lt)>;
3150 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETGE)),
3151                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_lt)>;
3152 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETULE)),
3153                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_gt)>;
3154 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETLE)),
3155                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_gt)>;
3156 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETUNE)),
3157                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_eq)>;
3158 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETNE)),
3159                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_eq)>;
3160 defm : CRNotPat<(i1 (setcc f64:$s1, f64:$s2, SETO)),
3161                 (EXTRACT_SUBREG (FCMPUD $s1, $s2), sub_un)>;
3162
3163 // match select on i1 variables:
3164 def : Pat<(i1 (select i1:$cond, i1:$tval, i1:$fval)),
3165           (CROR (CRAND        $cond , $tval),
3166                 (CRAND (crnot $cond), $fval))>;
3167
3168 // match selectcc on i1 variables:
3169 //   select (lhs == rhs), tval, fval is:
3170 //   ((lhs == rhs) & tval) | (!(lhs == rhs) & fval)
3171 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLT)),
3172            (CROR (CRAND (CRANDC $rhs, $lhs), $tval),
3173                  (CRAND (CRORC  $lhs, $rhs), $fval))>;
3174 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETLE)),
3175            (CROR (CRAND (CRORC  $rhs, $lhs), $tval),
3176                  (CRAND (CRANDC $lhs, $rhs), $fval))>;
3177 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETEQ)),
3178            (CROR (CRAND (CREQV $lhs, $rhs), $tval),
3179                  (CRAND (CRXOR $lhs, $rhs), $fval))>;
3180 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETGE)),
3181            (CROR (CRAND (CRORC  $lhs, $rhs), $tval),
3182                  (CRAND (CRANDC $rhs, $lhs), $fval))>;
3183 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETGT)),
3184            (CROR (CRAND (CRANDC $lhs, $rhs), $tval),
3185                  (CRAND (CRORC  $rhs, $lhs), $fval))>;
3186 def : Pat <(i1 (selectcc i1:$lhs, i1:$rhs, i1:$tval, i1:$fval, SETNE)),
3187            (CROR (CRAND (CREQV $lhs, $rhs), $fval),
3188                  (CRAND (CRXOR $lhs, $rhs), $tval))>;
3189
3190 // match selectcc on i1 variables with non-i1 output.
3191 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETLT)),
3192           (SELECT_I4 (CRANDC $rhs, $lhs), $tval, $fval)>;
3193 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETLE)),
3194           (SELECT_I4 (CRORC  $rhs, $lhs), $tval, $fval)>;
3195 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETEQ)),
3196           (SELECT_I4 (CREQV $lhs, $rhs), $tval, $fval)>;
3197 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETGE)),
3198           (SELECT_I4 (CRORC  $lhs, $rhs), $tval, $fval)>;
3199 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETGT)),
3200           (SELECT_I4 (CRANDC $lhs, $rhs), $tval, $fval)>;
3201 def : Pat<(i32 (selectcc i1:$lhs, i1:$rhs, i32:$tval, i32:$fval, SETNE)),
3202           (SELECT_I4 (CRXOR $lhs, $rhs), $tval, $fval)>;
3203
3204 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETLT)),
3205           (SELECT_I8 (CRANDC $rhs, $lhs), $tval, $fval)>;
3206 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETLE)),
3207           (SELECT_I8 (CRORC  $rhs, $lhs), $tval, $fval)>;
3208 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETEQ)),
3209           (SELECT_I8 (CREQV $lhs, $rhs), $tval, $fval)>;
3210 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETGE)),
3211           (SELECT_I8 (CRORC  $lhs, $rhs), $tval, $fval)>;
3212 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETGT)),
3213           (SELECT_I8 (CRANDC $lhs, $rhs), $tval, $fval)>;
3214 def : Pat<(i64 (selectcc i1:$lhs, i1:$rhs, i64:$tval, i64:$fval, SETNE)),
3215           (SELECT_I8 (CRXOR $lhs, $rhs), $tval, $fval)>;
3216
3217 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLT)),
3218           (SELECT_F4 (CRANDC $rhs, $lhs), $tval, $fval)>;
3219 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETLE)),
3220           (SELECT_F4 (CRORC  $rhs, $lhs), $tval, $fval)>;
3221 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETEQ)),
3222           (SELECT_F4 (CREQV $lhs, $rhs), $tval, $fval)>;
3223 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETGE)),
3224           (SELECT_F4 (CRORC  $lhs, $rhs), $tval, $fval)>;
3225 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETGT)),
3226           (SELECT_F4 (CRANDC $lhs, $rhs), $tval, $fval)>;
3227 def : Pat<(f32 (selectcc i1:$lhs, i1:$rhs, f32:$tval, f32:$fval, SETNE)),
3228           (SELECT_F4 (CRXOR $lhs, $rhs), $tval, $fval)>;
3229
3230 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETLT)),
3231           (SELECT_F8 (CRANDC $rhs, $lhs), $tval, $fval)>;
3232 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETLE)),
3233           (SELECT_F8 (CRORC  $rhs, $lhs), $tval, $fval)>;
3234 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETEQ)),
3235           (SELECT_F8 (CREQV $lhs, $rhs), $tval, $fval)>;
3236 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETGE)),
3237           (SELECT_F8 (CRORC  $lhs, $rhs), $tval, $fval)>;
3238 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETGT)),
3239           (SELECT_F8 (CRANDC $lhs, $rhs), $tval, $fval)>;
3240 def : Pat<(f64 (selectcc i1:$lhs, i1:$rhs, f64:$tval, f64:$fval, SETNE)),
3241           (SELECT_F8 (CRXOR $lhs, $rhs), $tval, $fval)>;
3242
3243 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETLT)),
3244           (SELECT_VRRC (CRANDC $rhs, $lhs), $tval, $fval)>;
3245 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETLE)),
3246           (SELECT_VRRC (CRORC  $rhs, $lhs), $tval, $fval)>;
3247 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETEQ)),
3248           (SELECT_VRRC (CREQV $lhs, $rhs), $tval, $fval)>;
3249 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETGE)),
3250           (SELECT_VRRC (CRORC  $lhs, $rhs), $tval, $fval)>;
3251 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETGT)),
3252           (SELECT_VRRC (CRANDC $lhs, $rhs), $tval, $fval)>;
3253 def : Pat<(v4i32 (selectcc i1:$lhs, i1:$rhs, v4i32:$tval, v4i32:$fval, SETNE)),
3254           (SELECT_VRRC (CRXOR $lhs, $rhs), $tval, $fval)>;
3255
3256 let usesCustomInserter = 1 in {
3257 def ANDIo_1_EQ_BIT : Pseudo<(outs crbitrc:$dst), (ins gprc:$in),
3258                              "#ANDIo_1_EQ_BIT",
3259                              [(set i1:$dst, (trunc (not i32:$in)))]>;
3260 def ANDIo_1_GT_BIT : Pseudo<(outs crbitrc:$dst), (ins gprc:$in),
3261                              "#ANDIo_1_GT_BIT",
3262                              [(set i1:$dst, (trunc i32:$in))]>;
3263
3264 def ANDIo_1_EQ_BIT8 : Pseudo<(outs crbitrc:$dst), (ins g8rc:$in),
3265                               "#ANDIo_1_EQ_BIT8",
3266                               [(set i1:$dst, (trunc (not i64:$in)))]>;
3267 def ANDIo_1_GT_BIT8 : Pseudo<(outs crbitrc:$dst), (ins g8rc:$in),
3268                               "#ANDIo_1_GT_BIT8",
3269                               [(set i1:$dst, (trunc i64:$in))]>;
3270 }
3271
3272 def : Pat<(i1 (not (trunc i32:$in))),
3273            (ANDIo_1_EQ_BIT $in)>;
3274 def : Pat<(i1 (not (trunc i64:$in))),
3275            (ANDIo_1_EQ_BIT8 $in)>;
3276
3277 //===----------------------------------------------------------------------===//
3278 // PowerPC Instructions used for assembler/disassembler only
3279 //
3280
3281 // FIXME: For B=0 or B > 8, the registers following RT are used.
3282 // WARNING: Do not add patterns for this instruction without fixing this.
3283 def LSWI  : XForm_base_r3xo<31, 597, (outs gprc:$RT), (ins gprc:$A, u5imm:$B),
3284                             "lswi $RT, $A, $B", IIC_LdStLoad, []>;
3285
3286 // FIXME: For B=0 or B > 8, the registers following RT are used.
3287 // WARNING: Do not add patterns for this instruction without fixing this.
3288 def STSWI : XForm_base_r3xo<31, 725, (outs), (ins gprc:$RT, gprc:$A, u5imm:$B),
3289                             "stswi $RT, $A, $B", IIC_LdStLoad, []>;
3290
3291 def ISYNC : XLForm_2_ext<19, 150, 0, 0, 0, (outs), (ins),
3292                          "isync", IIC_SprISYNC, []>;
3293
3294 def ICBI : XForm_1a<31, 982, (outs), (ins memrr:$src),
3295                     "icbi $src", IIC_LdStICBI, []>;
3296
3297 // We used to have EIEIO as value but E[0-9A-Z] is a reserved name
3298 def EnforceIEIO : XForm_24_eieio<31, 854, (outs), (ins),
3299                            "eieio", IIC_LdStLoad, []>;
3300
3301 def WAIT : XForm_24_sync<31, 62, (outs), (ins i32imm:$L),
3302                          "wait $L", IIC_LdStLoad, []>;
3303
3304 def MBAR : XForm_mbar<31, 854, (outs), (ins u5imm:$MO),
3305                          "mbar $MO", IIC_LdStLoad>, Requires<[IsBookE]>;
3306
3307 def MTSR: XForm_sr<31, 210, (outs), (ins gprc:$RS, u4imm:$SR),
3308             "mtsr $SR, $RS", IIC_SprMTSR>;
3309
3310 def MFSR: XForm_sr<31, 595, (outs gprc:$RS), (ins u4imm:$SR),
3311             "mfsr $RS, $SR", IIC_SprMFSR>;
3312
3313 def MTSRIN: XForm_srin<31, 242, (outs), (ins gprc:$RS, gprc:$RB),
3314             "mtsrin $RS, $RB", IIC_SprMTSR>;
3315
3316 def MFSRIN: XForm_srin<31, 659, (outs gprc:$RS), (ins gprc:$RB),
3317             "mfsrin $RS, $RB", IIC_SprMFSR>;
3318
3319 def MTMSR: XForm_mtmsr<31, 146, (outs), (ins gprc:$RS, i32imm:$L),
3320                     "mtmsr $RS, $L", IIC_SprMTMSR>;
3321
3322 def WRTEE: XForm_mtmsr<31, 131, (outs), (ins gprc:$RS),
3323                     "wrtee $RS", IIC_SprMTMSR>, Requires<[IsBookE]> {
3324   let L = 0;
3325 }
3326
3327 def WRTEEI: I<31, (outs), (ins i1imm:$E), "wrteei $E", IIC_SprMTMSR>,
3328               Requires<[IsBookE]> {
3329   bits<1> E;
3330
3331   let Inst{16} = E;
3332   let Inst{21-30} = 163;
3333 }
3334
3335 def DCCCI : XForm_tlb<454, (outs), (ins gprc:$A, gprc:$B),
3336                "dccci $A, $B", IIC_LdStLoad>, Requires<[IsPPC4xx]>;
3337 def ICCCI : XForm_tlb<966, (outs), (ins gprc:$A, gprc:$B),
3338                "iccci $A, $B", IIC_LdStLoad>, Requires<[IsPPC4xx]>;
3339
3340 def : InstAlias<"dci 0", (DCCCI R0, R0)>, Requires<[IsPPC4xx]>;
3341 def : InstAlias<"dccci", (DCCCI R0, R0)>, Requires<[IsPPC4xx]>;
3342 def : InstAlias<"ici 0", (ICCCI R0, R0)>, Requires<[IsPPC4xx]>;
3343 def : InstAlias<"iccci", (ICCCI R0, R0)>, Requires<[IsPPC4xx]>;
3344
3345 def MFMSR : XForm_rs<31, 83, (outs gprc:$RT), (ins),
3346                   "mfmsr $RT", IIC_SprMFMSR, []>;
3347
3348 def MTMSRD : XForm_mtmsr<31, 178, (outs), (ins gprc:$RS, i32imm:$L),
3349                     "mtmsrd $RS, $L", IIC_SprMTMSRD>;
3350
3351 def MCRFS : XLForm_3<63, 64, (outs crrc:$BF), (ins crrc:$BFA),
3352                      "mcrfs $BF, $BFA", IIC_BrMCR>;
3353
3354 def MTFSFI : XLForm_4<63, 134, (outs crrc:$BF), (ins i32imm:$U, i32imm:$W),
3355                       "mtfsfi $BF, $U, $W", IIC_IntMFFS>;
3356
3357 def MTFSFIo : XLForm_4<63, 134, (outs crrc:$BF), (ins i32imm:$U, i32imm:$W),
3358                        "mtfsfi. $BF, $U, $W", IIC_IntMFFS>, isDOT;
3359
3360 def : InstAlias<"mtfsfi $BF, $U", (MTFSFI crrc:$BF, i32imm:$U, 0)>;
3361 def : InstAlias<"mtfsfi. $BF, $U", (MTFSFIo crrc:$BF, i32imm:$U, 0)>;
3362
3363 def MTFSF : XFLForm_1<63, 711, (outs),
3364                       (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3365                       "mtfsf $FLM, $FRB, $L, $W", IIC_IntMFFS, []>;
3366 def MTFSFo : XFLForm_1<63, 711, (outs),
3367                        (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3368                        "mtfsf. $FLM, $FRB, $L, $W", IIC_IntMFFS, []>, isDOT;
3369
3370 def : InstAlias<"mtfsf $FLM, $FRB", (MTFSF i32imm:$FLM, f8rc:$FRB, 0, 0)>;
3371 def : InstAlias<"mtfsf. $FLM, $FRB", (MTFSFo i32imm:$FLM, f8rc:$FRB, 0, 0)>;
3372
3373 def SLBIE : XForm_16b<31, 434, (outs), (ins gprc:$RB),
3374                         "slbie $RB", IIC_SprSLBIE, []>;
3375
3376 def SLBMTE : XForm_26<31, 402, (outs), (ins gprc:$RS, gprc:$RB),
3377                     "slbmte $RS, $RB", IIC_SprSLBMTE, []>;
3378
3379 def SLBMFEE : XForm_26<31, 915, (outs gprc:$RT), (ins gprc:$RB),
3380                        "slbmfee $RT, $RB", IIC_SprSLBMFEE, []>;
3381
3382 def SLBIA : XForm_0<31, 498, (outs), (ins), "slbia", IIC_SprSLBIA, []>;
3383
3384 def TLBIA : XForm_0<31, 370, (outs), (ins),
3385                         "tlbia", IIC_SprTLBIA, []>;
3386
3387 def TLBSYNC : XForm_0<31, 566, (outs), (ins),
3388                         "tlbsync", IIC_SprTLBSYNC, []>;
3389
3390 def TLBIEL : XForm_16b<31, 274, (outs), (ins gprc:$RB),
3391                           "tlbiel $RB", IIC_SprTLBIEL, []>;
3392
3393 def TLBLD : XForm_16b<31, 978, (outs), (ins gprc:$RB),
3394                           "tlbld $RB", IIC_LdStLoad, []>, Requires<[IsPPC6xx]>;
3395 def TLBLI : XForm_16b<31, 1010, (outs), (ins gprc:$RB),
3396                           "tlbli $RB", IIC_LdStLoad, []>, Requires<[IsPPC6xx]>;
3397
3398 def TLBIE : XForm_26<31, 306, (outs), (ins gprc:$RS, gprc:$RB),
3399                           "tlbie $RB,$RS", IIC_SprTLBIE, []>;
3400
3401 def TLBSX : XForm_tlb<914, (outs), (ins gprc:$A, gprc:$B), "tlbsx $A, $B",
3402                 IIC_LdStLoad>, Requires<[IsBookE]>;
3403
3404 def TLBIVAX : XForm_tlb<786, (outs), (ins gprc:$A, gprc:$B), "tlbivax $A, $B",
3405                 IIC_LdStLoad>, Requires<[IsBookE]>;
3406
3407 def TLBRE : XForm_24_eieio<31, 946, (outs), (ins),
3408                            "tlbre", IIC_LdStLoad, []>, Requires<[IsBookE]>;
3409
3410 def TLBWE : XForm_24_eieio<31, 978, (outs), (ins),
3411                            "tlbwe", IIC_LdStLoad, []>, Requires<[IsBookE]>;
3412
3413 def TLBRE2 : XForm_tlbws<31, 946, (outs gprc:$RS), (ins gprc:$A, i1imm:$WS),
3414                "tlbre $RS, $A, $WS", IIC_LdStLoad, []>, Requires<[IsPPC4xx]>;
3415
3416 def TLBWE2 : XForm_tlbws<31, 978, (outs), (ins gprc:$RS, gprc:$A, i1imm:$WS),
3417                "tlbwe $RS, $A, $WS", IIC_LdStLoad, []>, Requires<[IsPPC4xx]>;
3418
3419 def TLBSX2 : XForm_base_r3xo<31, 914, (outs), (ins gprc:$RST, gprc:$A, gprc:$B),
3420                              "tlbsx $RST, $A, $B", IIC_LdStLoad, []>,
3421                              Requires<[IsPPC4xx]>;
3422 def TLBSX2D : XForm_base_r3xo<31, 914, (outs),
3423                               (ins gprc:$RST, gprc:$A, gprc:$B),
3424                               "tlbsx. $RST, $A, $B", IIC_LdStLoad, []>,
3425                               Requires<[IsPPC4xx]>, isDOT;
3426
3427 def RFID : XForm_0<19, 18, (outs), (ins), "rfid", IIC_IntRFID, []>;
3428
3429 def RFI : XForm_0<19, 50, (outs), (ins), "rfi", IIC_SprRFI, []>,
3430                   Requires<[IsBookE]>;
3431 def RFCI : XForm_0<19, 51, (outs), (ins), "rfci", IIC_BrB, []>,
3432                    Requires<[IsBookE]>;
3433
3434 def RFDI : XForm_0<19, 39, (outs), (ins), "rfdi", IIC_BrB, []>,
3435                    Requires<[IsE500]>;
3436 def RFMCI : XForm_0<19, 38, (outs), (ins), "rfmci", IIC_BrB, []>,
3437                     Requires<[IsE500]>;
3438
3439 def MFDCR : XFXForm_1<31, 323, (outs gprc:$RT), (ins i32imm:$SPR),
3440                       "mfdcr $RT, $SPR", IIC_SprMFSPR>, Requires<[IsPPC4xx]>;
3441 def MTDCR : XFXForm_1<31, 451, (outs), (ins gprc:$RT, i32imm:$SPR),
3442                       "mtdcr $SPR, $RT", IIC_SprMTSPR>, Requires<[IsPPC4xx]>;
3443
3444 def ATTN : XForm_attn<0, 256, (outs), (ins), "attn", IIC_BrB>;
3445
3446 def LBZCIX : XForm_base_r3xo<31, 853, (outs gprc:$RST), (ins gprc:$A, gprc:$B),
3447                              "lbzcix $RST, $A, $B", IIC_LdStLoad, []>;
3448 def LHZCIX : XForm_base_r3xo<31, 821, (outs gprc:$RST), (ins gprc:$A, gprc:$B),
3449                              "lhzcix $RST, $A, $B", IIC_LdStLoad, []>;
3450 def LWZCIX : XForm_base_r3xo<31, 789, (outs gprc:$RST), (ins gprc:$A, gprc:$B),
3451                              "lwzcix $RST, $A, $B", IIC_LdStLoad, []>;
3452 def LDCIX :  XForm_base_r3xo<31, 885, (outs gprc:$RST), (ins gprc:$A, gprc:$B),
3453                              "ldcix $RST, $A, $B", IIC_LdStLoad, []>;
3454
3455 def STBCIX : XForm_base_r3xo<31, 981, (outs), (ins gprc:$RST, gprc:$A, gprc:$B),
3456                              "stbcix $RST, $A, $B", IIC_LdStLoad, []>;
3457 def STHCIX : XForm_base_r3xo<31, 949, (outs), (ins gprc:$RST, gprc:$A, gprc:$B),
3458                              "sthcix $RST, $A, $B", IIC_LdStLoad, []>;
3459 def STWCIX : XForm_base_r3xo<31, 917, (outs), (ins gprc:$RST, gprc:$A, gprc:$B),
3460                              "stwcix $RST, $A, $B", IIC_LdStLoad, []>;
3461 def STDCIX : XForm_base_r3xo<31, 1013, (outs), (ins gprc:$RST, gprc:$A, gprc:$B),
3462                              "stdcix $RST, $A, $B", IIC_LdStLoad, []>;
3463
3464 //===----------------------------------------------------------------------===//
3465 // PowerPC Assembler Instruction Aliases
3466 //
3467
3468 // Pseudo-instructions for alternate assembly syntax (never used by codegen).
3469 // These are aliases that require C++ handling to convert to the target
3470 // instruction, while InstAliases can be handled directly by tblgen.
3471 class PPCAsmPseudo<string asm, dag iops>
3472   : Instruction {
3473   let Namespace = "PPC";
3474   bit PPC64 = 0;  // Default value, override with isPPC64
3475
3476   let OutOperandList = (outs);
3477   let InOperandList = iops;
3478   let Pattern = [];
3479   let AsmString = asm;
3480   let isAsmParserOnly = 1;
3481   let isPseudo = 1;
3482 }
3483
3484 def : InstAlias<"sc", (SC 0)>;
3485
3486 def : InstAlias<"sync", (SYNC 0)>, Requires<[HasSYNC]>;
3487 def : InstAlias<"msync", (SYNC 0)>, Requires<[HasSYNC]>;
3488 def : InstAlias<"lwsync", (SYNC 1)>, Requires<[HasSYNC]>;
3489 def : InstAlias<"ptesync", (SYNC 2)>, Requires<[HasSYNC]>;
3490
3491 def : InstAlias<"wait", (WAIT 0)>;
3492 def : InstAlias<"waitrsv", (WAIT 1)>;
3493 def : InstAlias<"waitimpl", (WAIT 2)>;
3494
3495 def : InstAlias<"mbar", (MBAR 0)>, Requires<[IsBookE]>;
3496
3497 def DCBTx   : PPCAsmPseudo<"dcbt $dst", (ins memrr:$dst)>;
3498 def DCBTSTx : PPCAsmPseudo<"dcbtst $dst", (ins memrr:$dst)>;
3499
3500 def DCBTCT : PPCAsmPseudo<"dcbtct $dst, $TH", (ins memrr:$dst, u5imm:$TH)>;
3501 def DCBTDS : PPCAsmPseudo<"dcbtds $dst, $TH", (ins memrr:$dst, u5imm:$TH)>;
3502 def DCBTT  : PPCAsmPseudo<"dcbtt $dst", (ins memrr:$dst)>;
3503
3504 def DCBTSTCT : PPCAsmPseudo<"dcbtstct $dst, $TH", (ins memrr:$dst, u5imm:$TH)>;
3505 def DCBTSTDS : PPCAsmPseudo<"dcbtstds $dst, $TH", (ins memrr:$dst, u5imm:$TH)>;
3506 def DCBTSTT  : PPCAsmPseudo<"dcbtstt $dst", (ins memrr:$dst)>;
3507
3508 def : InstAlias<"crset $bx", (CREQV crbitrc:$bx, crbitrc:$bx, crbitrc:$bx)>;
3509 def : InstAlias<"crclr $bx", (CRXOR crbitrc:$bx, crbitrc:$bx, crbitrc:$bx)>;
3510 def : InstAlias<"crmove $bx, $by", (CROR crbitrc:$bx, crbitrc:$by, crbitrc:$by)>;
3511 def : InstAlias<"crnot $bx, $by", (CRNOR crbitrc:$bx, crbitrc:$by, crbitrc:$by)>;
3512
3513 def : InstAlias<"mtxer $Rx", (MTSPR 1, gprc:$Rx)>;
3514 def : InstAlias<"mfxer $Rx", (MFSPR gprc:$Rx, 1)>;
3515
3516 def : InstAlias<"mfrtcu $Rx", (MFSPR gprc:$Rx, 4)>;
3517 def : InstAlias<"mfrtcl $Rx", (MFSPR gprc:$Rx, 5)>;
3518
3519 def : InstAlias<"mtdscr $Rx", (MTSPR 17, gprc:$Rx)>;
3520 def : InstAlias<"mfdscr $Rx", (MFSPR gprc:$Rx, 17)>;
3521
3522 def : InstAlias<"mtdsisr $Rx", (MTSPR 18, gprc:$Rx)>;
3523 def : InstAlias<"mfdsisr $Rx", (MFSPR gprc:$Rx, 18)>;
3524
3525 def : InstAlias<"mtdar $Rx", (MTSPR 19, gprc:$Rx)>;
3526 def : InstAlias<"mfdar $Rx", (MFSPR gprc:$Rx, 19)>;
3527
3528 def : InstAlias<"mtdec $Rx", (MTSPR 22, gprc:$Rx)>;
3529 def : InstAlias<"mfdec $Rx", (MFSPR gprc:$Rx, 22)>;
3530
3531 def : InstAlias<"mtsdr1 $Rx", (MTSPR 25, gprc:$Rx)>;
3532 def : InstAlias<"mfsdr1 $Rx", (MFSPR gprc:$Rx, 25)>;
3533
3534 def : InstAlias<"mtsrr0 $Rx", (MTSPR 26, gprc:$Rx)>;
3535 def : InstAlias<"mfsrr0 $Rx", (MFSPR gprc:$Rx, 26)>;
3536
3537 def : InstAlias<"mtsrr1 $Rx", (MTSPR 27, gprc:$Rx)>;
3538 def : InstAlias<"mfsrr1 $Rx", (MFSPR gprc:$Rx, 27)>;
3539
3540 def : InstAlias<"mtsrr2 $Rx", (MTSPR 990, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3541 def : InstAlias<"mfsrr2 $Rx", (MFSPR gprc:$Rx, 990)>, Requires<[IsPPC4xx]>;
3542
3543 def : InstAlias<"mtsrr3 $Rx", (MTSPR 991, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3544 def : InstAlias<"mfsrr3 $Rx", (MFSPR gprc:$Rx, 991)>, Requires<[IsPPC4xx]>;
3545
3546 def : InstAlias<"mtcfar $Rx", (MTSPR 28, gprc:$Rx)>;
3547 def : InstAlias<"mfcfar $Rx", (MFSPR gprc:$Rx, 28)>;
3548
3549 def : InstAlias<"mtamr $Rx", (MTSPR 29, gprc:$Rx)>;
3550 def : InstAlias<"mfamr $Rx", (MFSPR gprc:$Rx, 29)>;
3551
3552 def : InstAlias<"mtpid $Rx", (MTSPR 48, gprc:$Rx)>, Requires<[IsBookE]>;
3553 def : InstAlias<"mfpid $Rx", (MFSPR gprc:$Rx, 48)>, Requires<[IsBookE]>;
3554
3555 def : InstAlias<"mftb $Rx", (MFTB gprc:$Rx, 268)>;
3556 def : InstAlias<"mftbl $Rx", (MFTB gprc:$Rx, 268)>;
3557 def : InstAlias<"mftbu $Rx", (MFTB gprc:$Rx, 269)>;
3558
3559 def : InstAlias<"mttbl $Rx", (MTSPR 284, gprc:$Rx)>;
3560 def : InstAlias<"mttbu $Rx", (MTSPR 285, gprc:$Rx)>;
3561
3562 def : InstAlias<"mftblo $Rx", (MFSPR gprc:$Rx, 989)>, Requires<[IsPPC4xx]>;
3563 def : InstAlias<"mttblo $Rx", (MTSPR 989, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3564 def : InstAlias<"mftbhi $Rx", (MFSPR gprc:$Rx, 988)>, Requires<[IsPPC4xx]>;
3565 def : InstAlias<"mttbhi $Rx", (MTSPR 988, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3566
3567 def : InstAlias<"xnop", (XORI R0, R0, 0)>;
3568
3569 def : InstAlias<"mr $rA, $rB", (OR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
3570 def : InstAlias<"mr. $rA, $rB", (OR8o g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
3571
3572 def : InstAlias<"not $rA, $rB", (NOR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
3573 def : InstAlias<"not. $rA, $rB", (NOR8o g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
3574
3575 def : InstAlias<"mtcr $rA", (MTCRF8 255, g8rc:$rA)>;
3576
3577 foreach BATR = 0-3 in {
3578     def : InstAlias<"mtdbatu "#BATR#", $Rx",
3579                     (MTSPR !add(BATR, !add(BATR, 536)), gprc:$Rx)>,
3580                     Requires<[IsPPC6xx]>;
3581     def : InstAlias<"mfdbatu $Rx, "#BATR,
3582                     (MFSPR gprc:$Rx, !add(BATR, !add(BATR, 536)))>,
3583                     Requires<[IsPPC6xx]>;
3584     def : InstAlias<"mtdbatl "#BATR#", $Rx",
3585                     (MTSPR !add(BATR, !add(BATR, 537)), gprc:$Rx)>,
3586                     Requires<[IsPPC6xx]>;
3587     def : InstAlias<"mfdbatl $Rx, "#BATR,
3588                     (MFSPR gprc:$Rx, !add(BATR, !add(BATR, 537)))>,
3589                     Requires<[IsPPC6xx]>;
3590     def : InstAlias<"mtibatu "#BATR#", $Rx",
3591                     (MTSPR !add(BATR, !add(BATR, 528)), gprc:$Rx)>,
3592                     Requires<[IsPPC6xx]>;
3593     def : InstAlias<"mfibatu $Rx, "#BATR,
3594                     (MFSPR gprc:$Rx, !add(BATR, !add(BATR, 528)))>,
3595                     Requires<[IsPPC6xx]>;
3596     def : InstAlias<"mtibatl "#BATR#", $Rx",
3597                     (MTSPR !add(BATR, !add(BATR, 529)), gprc:$Rx)>,
3598                     Requires<[IsPPC6xx]>;
3599     def : InstAlias<"mfibatl $Rx, "#BATR,
3600                     (MFSPR gprc:$Rx, !add(BATR, !add(BATR, 529)))>,
3601                     Requires<[IsPPC6xx]>;
3602 }
3603
3604 foreach BR = 0-7 in {
3605     def : InstAlias<"mfbr"#BR#" $Rx",
3606                     (MFDCR gprc:$Rx, !add(BR, 0x80))>,
3607                     Requires<[IsPPC4xx]>;
3608     def : InstAlias<"mtbr"#BR#" $Rx",
3609                     (MTDCR gprc:$Rx, !add(BR, 0x80))>,
3610                     Requires<[IsPPC4xx]>;
3611 }
3612
3613 def : InstAlias<"mtdccr $Rx", (MTSPR 1018, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3614 def : InstAlias<"mfdccr $Rx", (MFSPR gprc:$Rx, 1018)>, Requires<[IsPPC4xx]>;
3615
3616 def : InstAlias<"mticcr $Rx", (MTSPR 1019, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3617 def : InstAlias<"mficcr $Rx", (MFSPR gprc:$Rx, 1019)>, Requires<[IsPPC4xx]>;
3618
3619 def : InstAlias<"mtdear $Rx", (MTSPR 981, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3620 def : InstAlias<"mfdear $Rx", (MFSPR gprc:$Rx, 981)>, Requires<[IsPPC4xx]>;
3621
3622 def : InstAlias<"mtesr $Rx", (MTSPR 980, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3623 def : InstAlias<"mfesr $Rx", (MFSPR gprc:$Rx, 980)>, Requires<[IsPPC4xx]>;
3624
3625 def : InstAlias<"mfspefscr $Rx", (MFSPR gprc:$Rx, 512)>;
3626 def : InstAlias<"mtspefscr $Rx", (MTSPR 512, gprc:$Rx)>;
3627
3628 def : InstAlias<"mttcr $Rx", (MTSPR 986, gprc:$Rx)>, Requires<[IsPPC4xx]>;
3629 def : InstAlias<"mftcr $Rx", (MFSPR gprc:$Rx, 986)>, Requires<[IsPPC4xx]>;
3630
3631 def LAx : PPCAsmPseudo<"la $rA, $addr", (ins gprc:$rA, memri:$addr)>;
3632
3633 def SUBI : PPCAsmPseudo<"subi $rA, $rB, $imm",
3634                         (ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
3635 def SUBIS : PPCAsmPseudo<"subis $rA, $rB, $imm",
3636                          (ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
3637 def SUBIC : PPCAsmPseudo<"subic $rA, $rB, $imm",
3638                          (ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
3639 def SUBICo : PPCAsmPseudo<"subic. $rA, $rB, $imm",
3640                           (ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
3641
3642 def : InstAlias<"sub $rA, $rB, $rC", (SUBF8 g8rc:$rA, g8rc:$rC, g8rc:$rB)>;
3643 def : InstAlias<"sub. $rA, $rB, $rC", (SUBF8o g8rc:$rA, g8rc:$rC, g8rc:$rB)>;
3644 def : InstAlias<"subc $rA, $rB, $rC", (SUBFC8 g8rc:$rA, g8rc:$rC, g8rc:$rB)>;
3645 def : InstAlias<"subc. $rA, $rB, $rC", (SUBFC8o g8rc:$rA, g8rc:$rC, g8rc:$rB)>;
3646
3647 def : InstAlias<"mtmsrd $RS", (MTMSRD gprc:$RS, 0)>;
3648 def : InstAlias<"mtmsr $RS", (MTMSR gprc:$RS, 0)>;
3649
3650 def : InstAlias<"mfasr $RT", (MFSPR gprc:$RT, 280)>;
3651 def : InstAlias<"mtasr $RT", (MTSPR 280, gprc:$RT)>;
3652
3653 foreach SPRG = 0-3 in {
3654   def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 272))>;
3655   def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 272))>;
3656   def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
3657   def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
3658 }
3659 foreach SPRG = 4-7 in {
3660   def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 256))>,
3661                   Requires<[IsBookE]>;
3662   def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 256))>,
3663                   Requires<[IsBookE]>;
3664   def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
3665                   Requires<[IsBookE]>;
3666   def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
3667                   Requires<[IsBookE]>;
3668 }
3669
3670 def : InstAlias<"mtasr $RS", (MTSPR 280, gprc:$RS)>;
3671
3672 def : InstAlias<"mfdec $RT", (MFSPR gprc:$RT, 22)>;
3673 def : InstAlias<"mtdec $RT", (MTSPR 22, gprc:$RT)>;
3674
3675 def : InstAlias<"mfpvr $RT", (MFSPR gprc:$RT, 287)>;
3676
3677 def : InstAlias<"mfsdr1 $RT", (MFSPR gprc:$RT, 25)>;
3678 def : InstAlias<"mtsdr1 $RT", (MTSPR 25, gprc:$RT)>;
3679
3680 def : InstAlias<"mfsrr0 $RT", (MFSPR gprc:$RT, 26)>;
3681 def : InstAlias<"mfsrr1 $RT", (MFSPR gprc:$RT, 27)>;
3682 def : InstAlias<"mtsrr0 $RT", (MTSPR 26, gprc:$RT)>;
3683 def : InstAlias<"mtsrr1 $RT", (MTSPR 27, gprc:$RT)>;
3684
3685 def : InstAlias<"tlbie $RB", (TLBIE R0, gprc:$RB)>;
3686
3687 def : InstAlias<"tlbrehi $RS, $A", (TLBRE2 gprc:$RS, gprc:$A, 0)>,
3688                 Requires<[IsPPC4xx]>;
3689 def : InstAlias<"tlbrelo $RS, $A", (TLBRE2 gprc:$RS, gprc:$A, 1)>,
3690                 Requires<[IsPPC4xx]>;
3691 def : InstAlias<"tlbwehi $RS, $A", (TLBWE2 gprc:$RS, gprc:$A, 0)>,
3692                 Requires<[IsPPC4xx]>;
3693 def : InstAlias<"tlbwelo $RS, $A", (TLBWE2 gprc:$RS, gprc:$A, 1)>,
3694                 Requires<[IsPPC4xx]>;
3695
3696 def EXTLWI : PPCAsmPseudo<"extlwi $rA, $rS, $n, $b",
3697                           (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3698 def EXTLWIo : PPCAsmPseudo<"extlwi. $rA, $rS, $n, $b",
3699                            (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3700 def EXTRWI : PPCAsmPseudo<"extrwi $rA, $rS, $n, $b",
3701                           (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3702 def EXTRWIo : PPCAsmPseudo<"extrwi. $rA, $rS, $n, $b",
3703                            (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3704 def INSLWI : PPCAsmPseudo<"inslwi $rA, $rS, $n, $b",
3705                           (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3706 def INSLWIo : PPCAsmPseudo<"inslwi. $rA, $rS, $n, $b",
3707                            (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3708 def INSRWI : PPCAsmPseudo<"insrwi $rA, $rS, $n, $b",
3709                           (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3710 def INSRWIo : PPCAsmPseudo<"insrwi. $rA, $rS, $n, $b",
3711                            (ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
3712 def ROTRWI : PPCAsmPseudo<"rotrwi $rA, $rS, $n",
3713                           (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3714 def ROTRWIo : PPCAsmPseudo<"rotrwi. $rA, $rS, $n",
3715                            (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3716 def SLWI : PPCAsmPseudo<"slwi $rA, $rS, $n",
3717                         (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3718 def SLWIo : PPCAsmPseudo<"slwi. $rA, $rS, $n",
3719                          (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3720 def SRWI : PPCAsmPseudo<"srwi $rA, $rS, $n",
3721                         (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3722 def SRWIo : PPCAsmPseudo<"srwi. $rA, $rS, $n",
3723                          (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3724 def CLRRWI : PPCAsmPseudo<"clrrwi $rA, $rS, $n",
3725                           (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3726 def CLRRWIo : PPCAsmPseudo<"clrrwi. $rA, $rS, $n",
3727                            (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
3728 def CLRLSLWI : PPCAsmPseudo<"clrlslwi $rA, $rS, $b, $n",
3729                             (ins gprc:$rA, gprc:$rS, u5imm:$b, u5imm:$n)>;
3730 def CLRLSLWIo : PPCAsmPseudo<"clrlslwi. $rA, $rS, $b, $n",
3731                              (ins gprc:$rA, gprc:$rS, u5imm:$b, u5imm:$n)>;
3732
3733 def : InstAlias<"rotlwi $rA, $rS, $n", (RLWINM gprc:$rA, gprc:$rS, u5imm:$n, 0, 31)>;
3734 def : InstAlias<"rotlwi. $rA, $rS, $n", (RLWINMo gprc:$rA, gprc:$rS, u5imm:$n, 0, 31)>;
3735 def : InstAlias<"rotlw $rA, $rS, $rB", (RLWNM gprc:$rA, gprc:$rS, gprc:$rB, 0, 31)>;
3736 def : InstAlias<"rotlw. $rA, $rS, $rB", (RLWNMo gprc:$rA, gprc:$rS, gprc:$rB, 0, 31)>;
3737 def : InstAlias<"clrlwi $rA, $rS, $n", (RLWINM gprc:$rA, gprc:$rS, 0, u5imm:$n, 31)>;
3738 def : InstAlias<"clrlwi. $rA, $rS, $n", (RLWINMo gprc:$rA, gprc:$rS, 0, u5imm:$n, 31)>;
3739
3740 def : InstAlias<"cntlz $rA, $rS", (CNTLZW gprc:$rA, gprc:$rS)>;
3741 def : InstAlias<"cntlz. $rA, $rS", (CNTLZWo gprc:$rA, gprc:$rS)>;
3742
3743 def EXTLDI : PPCAsmPseudo<"extldi $rA, $rS, $n, $b",
3744                           (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3745 def EXTLDIo : PPCAsmPseudo<"extldi. $rA, $rS, $n, $b",
3746                            (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3747 def EXTRDI : PPCAsmPseudo<"extrdi $rA, $rS, $n, $b",
3748                           (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3749 def EXTRDIo : PPCAsmPseudo<"extrdi. $rA, $rS, $n, $b",
3750                            (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3751 def INSRDI : PPCAsmPseudo<"insrdi $rA, $rS, $n, $b",
3752                           (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3753 def INSRDIo : PPCAsmPseudo<"insrdi. $rA, $rS, $n, $b",
3754                            (ins g8rc:$rA, g8rc:$rS, u6imm:$n, u6imm:$b)>;
3755 def ROTRDI : PPCAsmPseudo<"rotrdi $rA, $rS, $n",
3756                           (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3757 def ROTRDIo : PPCAsmPseudo<"rotrdi. $rA, $rS, $n",
3758                            (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3759 def SLDI : PPCAsmPseudo<"sldi $rA, $rS, $n",
3760                         (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3761 def SLDIo : PPCAsmPseudo<"sldi. $rA, $rS, $n",
3762                          (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3763 def SRDI : PPCAsmPseudo<"srdi $rA, $rS, $n",
3764                         (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3765 def SRDIo : PPCAsmPseudo<"srdi. $rA, $rS, $n",
3766                          (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3767 def CLRRDI : PPCAsmPseudo<"clrrdi $rA, $rS, $n",
3768                           (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3769 def CLRRDIo : PPCAsmPseudo<"clrrdi. $rA, $rS, $n",
3770                            (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
3771 def CLRLSLDI : PPCAsmPseudo<"clrlsldi $rA, $rS, $b, $n",
3772                             (ins g8rc:$rA, g8rc:$rS, u6imm:$b, u6imm:$n)>;
3773 def CLRLSLDIo : PPCAsmPseudo<"clrlsldi. $rA, $rS, $b, $n",
3774                              (ins g8rc:$rA, g8rc:$rS, u6imm:$b, u6imm:$n)>;
3775
3776 def : InstAlias<"rotldi $rA, $rS, $n", (RLDICL g8rc:$rA, g8rc:$rS, u6imm:$n, 0)>;
3777 def : InstAlias<"rotldi. $rA, $rS, $n", (RLDICLo g8rc:$rA, g8rc:$rS, u6imm:$n, 0)>;
3778 def : InstAlias<"rotld $rA, $rS, $rB", (RLDCL g8rc:$rA, g8rc:$rS, gprc:$rB, 0)>;
3779 def : InstAlias<"rotld. $rA, $rS, $rB", (RLDCLo g8rc:$rA, g8rc:$rS, gprc:$rB, 0)>;
3780 def : InstAlias<"clrldi $rA, $rS, $n", (RLDICL g8rc:$rA, g8rc:$rS, 0, u6imm:$n)>;
3781 def : InstAlias<"clrldi. $rA, $rS, $n", (RLDICLo g8rc:$rA, g8rc:$rS, 0, u6imm:$n)>;
3782
3783 def RLWINMbm : PPCAsmPseudo<"rlwinm $rA, $rS, $n, $b",
3784                             (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3785 def RLWINMobm : PPCAsmPseudo<"rlwinm. $rA, $rS, $n, $b",
3786                             (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3787 def RLWIMIbm : PPCAsmPseudo<"rlwimi $rA, $rS, $n, $b",
3788                            (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3789 def RLWIMIobm : PPCAsmPseudo<"rlwimi. $rA, $rS, $n, $b",
3790                             (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3791 def RLWNMbm : PPCAsmPseudo<"rlwnm $rA, $rS, $n, $b",
3792                           (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3793 def RLWNMobm : PPCAsmPseudo<"rlwnm. $rA, $rS, $n, $b",
3794                            (ins g8rc:$rA, g8rc:$rS, u5imm:$n, i32imm:$b)>;
3795
3796 // These generic branch instruction forms are used for the assembler parser only.
3797 // Defs and Uses are conservative, since we don't know the BO value.
3798 let PPC970_Unit = 7 in {
3799   let Defs = [CTR], Uses = [CTR, RM] in {
3800     def gBC : BForm_3<16, 0, 0, (outs),
3801                       (ins u5imm:$bo, crbitrc:$bi, condbrtarget:$dst),
3802                       "bc $bo, $bi, $dst">;
3803     def gBCA : BForm_3<16, 1, 0, (outs),
3804                        (ins u5imm:$bo, crbitrc:$bi, abscondbrtarget:$dst),
3805                        "bca $bo, $bi, $dst">;
3806   }
3807   let Defs = [LR, CTR], Uses = [CTR, RM] in {
3808     def gBCL : BForm_3<16, 0, 1, (outs),
3809                        (ins u5imm:$bo, crbitrc:$bi, condbrtarget:$dst),
3810                        "bcl $bo, $bi, $dst">;
3811     def gBCLA : BForm_3<16, 1, 1, (outs),
3812                         (ins u5imm:$bo, crbitrc:$bi, abscondbrtarget:$dst),
3813                         "bcla $bo, $bi, $dst">;
3814   }
3815   let Defs = [CTR], Uses = [CTR, LR, RM] in
3816     def gBCLR : XLForm_2<19, 16, 0, (outs),
3817                          (ins u5imm:$bo, crbitrc:$bi, i32imm:$bh),
3818                          "bclr $bo, $bi, $bh", IIC_BrB, []>;
3819   let Defs = [LR, CTR], Uses = [CTR, LR, RM] in
3820     def gBCLRL : XLForm_2<19, 16, 1, (outs),
3821                           (ins u5imm:$bo, crbitrc:$bi, i32imm:$bh),
3822                           "bclrl $bo, $bi, $bh", IIC_BrB, []>;
3823   let Defs = [CTR], Uses = [CTR, LR, RM] in
3824     def gBCCTR : XLForm_2<19, 528, 0, (outs),
3825                           (ins u5imm:$bo, crbitrc:$bi, i32imm:$bh),
3826                           "bcctr $bo, $bi, $bh", IIC_BrB, []>;
3827   let Defs = [LR, CTR], Uses = [CTR, LR, RM] in
3828     def gBCCTRL : XLForm_2<19, 528, 1, (outs),
3829                            (ins u5imm:$bo, crbitrc:$bi, i32imm:$bh),
3830                            "bcctrl $bo, $bi, $bh", IIC_BrB, []>;
3831 }
3832 def : InstAlias<"bclr $bo, $bi", (gBCLR u5imm:$bo, crbitrc:$bi, 0)>;
3833 def : InstAlias<"bclrl $bo, $bi", (gBCLRL u5imm:$bo, crbitrc:$bi, 0)>;
3834 def : InstAlias<"bcctr $bo, $bi", (gBCCTR u5imm:$bo, crbitrc:$bi, 0)>;
3835 def : InstAlias<"bcctrl $bo, $bi", (gBCCTRL u5imm:$bo, crbitrc:$bi, 0)>;
3836
3837 multiclass BranchSimpleMnemonic1<string name, string pm, int bo> {
3838   def : InstAlias<"b"#name#pm#" $bi, $dst", (gBC bo, crbitrc:$bi, condbrtarget:$dst)>;
3839   def : InstAlias<"b"#name#"a"#pm#" $bi, $dst", (gBCA bo, crbitrc:$bi, abscondbrtarget:$dst)>;
3840   def : InstAlias<"b"#name#"lr"#pm#" $bi", (gBCLR bo, crbitrc:$bi, 0)>;
3841   def : InstAlias<"b"#name#"l"#pm#" $bi, $dst", (gBCL bo, crbitrc:$bi, condbrtarget:$dst)>;
3842   def : InstAlias<"b"#name#"la"#pm#" $bi, $dst", (gBCLA bo, crbitrc:$bi, abscondbrtarget:$dst)>;
3843   def : InstAlias<"b"#name#"lrl"#pm#" $bi", (gBCLRL bo, crbitrc:$bi, 0)>;
3844 }
3845 multiclass BranchSimpleMnemonic2<string name, string pm, int bo>
3846   : BranchSimpleMnemonic1<name, pm, bo> {
3847   def : InstAlias<"b"#name#"ctr"#pm#" $bi", (gBCCTR bo, crbitrc:$bi, 0)>;
3848   def : InstAlias<"b"#name#"ctrl"#pm#" $bi", (gBCCTRL bo, crbitrc:$bi, 0)>;
3849 }
3850 defm : BranchSimpleMnemonic2<"t", "", 12>;
3851 defm : BranchSimpleMnemonic2<"f", "", 4>;
3852 defm : BranchSimpleMnemonic2<"t", "-", 14>;
3853 defm : BranchSimpleMnemonic2<"f", "-", 6>;
3854 defm : BranchSimpleMnemonic2<"t", "+", 15>;
3855 defm : BranchSimpleMnemonic2<"f", "+", 7>;
3856 defm : BranchSimpleMnemonic1<"dnzt", "", 8>;
3857 defm : BranchSimpleMnemonic1<"dnzf", "", 0>;
3858 defm : BranchSimpleMnemonic1<"dzt", "", 10>;
3859 defm : BranchSimpleMnemonic1<"dzf", "", 2>;
3860
3861 multiclass BranchExtendedMnemonicPM<string name, string pm, int bibo> {
3862   def : InstAlias<"b"#name#pm#" $cc, $dst",
3863                   (BCC bibo, crrc:$cc, condbrtarget:$dst)>;
3864   def : InstAlias<"b"#name#pm#" $dst",
3865                   (BCC bibo, CR0, condbrtarget:$dst)>;
3866
3867   def : InstAlias<"b"#name#"a"#pm#" $cc, $dst",
3868                   (BCCA bibo, crrc:$cc, abscondbrtarget:$dst)>;
3869   def : InstAlias<"b"#name#"a"#pm#" $dst",
3870                   (BCCA bibo, CR0, abscondbrtarget:$dst)>;
3871
3872   def : InstAlias<"b"#name#"lr"#pm#" $cc",
3873                   (BCCLR bibo, crrc:$cc)>;
3874   def : InstAlias<"b"#name#"lr"#pm,
3875                   (BCCLR bibo, CR0)>;
3876
3877   def : InstAlias<"b"#name#"ctr"#pm#" $cc",
3878                   (BCCCTR bibo, crrc:$cc)>;
3879   def : InstAlias<"b"#name#"ctr"#pm,
3880                   (BCCCTR bibo, CR0)>;
3881
3882   def : InstAlias<"b"#name#"l"#pm#" $cc, $dst",
3883                   (BCCL bibo, crrc:$cc, condbrtarget:$dst)>;
3884   def : InstAlias<"b"#name#"l"#pm#" $dst",
3885                   (BCCL bibo, CR0, condbrtarget:$dst)>;
3886
3887   def : InstAlias<"b"#name#"la"#pm#" $cc, $dst",
3888                   (BCCLA bibo, crrc:$cc, abscondbrtarget:$dst)>;
3889   def : InstAlias<"b"#name#"la"#pm#" $dst",
3890                   (BCCLA bibo, CR0, abscondbrtarget:$dst)>;
3891
3892   def : InstAlias<"b"#name#"lrl"#pm#" $cc",
3893                   (BCCLRL bibo, crrc:$cc)>;
3894   def : InstAlias<"b"#name#"lrl"#pm,
3895                   (BCCLRL bibo, CR0)>;
3896
3897   def : InstAlias<"b"#name#"ctrl"#pm#" $cc",
3898                   (BCCCTRL bibo, crrc:$cc)>;
3899   def : InstAlias<"b"#name#"ctrl"#pm,
3900                   (BCCCTRL bibo, CR0)>;
3901 }
3902 multiclass BranchExtendedMnemonic<string name, int bibo> {
3903   defm : BranchExtendedMnemonicPM<name, "", bibo>;
3904   defm : BranchExtendedMnemonicPM<name, "-", !add(bibo, 2)>;
3905   defm : BranchExtendedMnemonicPM<name, "+", !add(bibo, 3)>;
3906 }
3907 defm : BranchExtendedMnemonic<"lt", 12>;
3908 defm : BranchExtendedMnemonic<"gt", 44>;
3909 defm : BranchExtendedMnemonic<"eq", 76>;
3910 defm : BranchExtendedMnemonic<"un", 108>;
3911 defm : BranchExtendedMnemonic<"so", 108>;
3912 defm : BranchExtendedMnemonic<"ge", 4>;
3913 defm : BranchExtendedMnemonic<"nl", 4>;
3914 defm : BranchExtendedMnemonic<"le", 36>;
3915 defm : BranchExtendedMnemonic<"ng", 36>;
3916 defm : BranchExtendedMnemonic<"ne", 68>;
3917 defm : BranchExtendedMnemonic<"nu", 100>;
3918 defm : BranchExtendedMnemonic<"ns", 100>;
3919
3920 def : InstAlias<"cmpwi $rA, $imm", (CMPWI CR0, gprc:$rA, s16imm:$imm)>;
3921 def : InstAlias<"cmpw $rA, $rB", (CMPW CR0, gprc:$rA, gprc:$rB)>;
3922 def : InstAlias<"cmplwi $rA, $imm", (CMPLWI CR0, gprc:$rA, u16imm:$imm)>;
3923 def : InstAlias<"cmplw $rA, $rB", (CMPLW CR0, gprc:$rA, gprc:$rB)>;
3924 def : InstAlias<"cmpdi $rA, $imm", (CMPDI CR0, g8rc:$rA, s16imm64:$imm)>;
3925 def : InstAlias<"cmpd $rA, $rB", (CMPD CR0, g8rc:$rA, g8rc:$rB)>;
3926 def : InstAlias<"cmpldi $rA, $imm", (CMPLDI CR0, g8rc:$rA, u16imm64:$imm)>;
3927 def : InstAlias<"cmpld $rA, $rB", (CMPLD CR0, g8rc:$rA, g8rc:$rB)>;
3928
3929 def : InstAlias<"cmpi $bf, 0, $rA, $imm", (CMPWI crrc:$bf, gprc:$rA, s16imm:$imm)>;
3930 def : InstAlias<"cmp $bf, 0, $rA, $rB", (CMPW crrc:$bf, gprc:$rA, gprc:$rB)>;
3931 def : InstAlias<"cmpli $bf, 0, $rA, $imm", (CMPLWI crrc:$bf, gprc:$rA, u16imm:$imm)>;
3932 def : InstAlias<"cmpl $bf, 0, $rA, $rB", (CMPLW crrc:$bf, gprc:$rA, gprc:$rB)>;
3933 def : InstAlias<"cmpi $bf, 1, $rA, $imm", (CMPDI crrc:$bf, g8rc:$rA, s16imm64:$imm)>;
3934 def : InstAlias<"cmp $bf, 1, $rA, $rB", (CMPD crrc:$bf, g8rc:$rA, g8rc:$rB)>;
3935 def : InstAlias<"cmpli $bf, 1, $rA, $imm", (CMPLDI crrc:$bf, g8rc:$rA, u16imm64:$imm)>;
3936 def : InstAlias<"cmpl $bf, 1, $rA, $rB", (CMPLD crrc:$bf, g8rc:$rA, g8rc:$rB)>;
3937
3938 multiclass TrapExtendedMnemonic<string name, int to> {
3939   def : InstAlias<"td"#name#"i $rA, $imm", (TDI to, g8rc:$rA, s16imm:$imm)>;
3940   def : InstAlias<"td"#name#" $rA, $rB", (TD to, g8rc:$rA, g8rc:$rB)>;
3941   def : InstAlias<"tw"#name#"i $rA, $imm", (TWI to, gprc:$rA, s16imm:$imm)>;
3942   def : InstAlias<"tw"#name#" $rA, $rB", (TW to, gprc:$rA, gprc:$rB)>;
3943 }
3944 defm : TrapExtendedMnemonic<"lt", 16>;
3945 defm : TrapExtendedMnemonic<"le", 20>;
3946 defm : TrapExtendedMnemonic<"eq", 4>;
3947 defm : TrapExtendedMnemonic<"ge", 12>;
3948 defm : TrapExtendedMnemonic<"gt", 8>;
3949 defm : TrapExtendedMnemonic<"nl", 12>;
3950 defm : TrapExtendedMnemonic<"ne", 24>;
3951 defm : TrapExtendedMnemonic<"ng", 20>;
3952 defm : TrapExtendedMnemonic<"llt", 2>;
3953 defm : TrapExtendedMnemonic<"lle", 6>;
3954 defm : TrapExtendedMnemonic<"lge", 5>;
3955 defm : TrapExtendedMnemonic<"lgt", 1>;
3956 defm : TrapExtendedMnemonic<"lnl", 5>;
3957 defm : TrapExtendedMnemonic<"lng", 6>;
3958 defm : TrapExtendedMnemonic<"u", 31>;
3959
3960 // Atomic loads
3961 def : Pat<(atomic_load_8  iaddr:$src), (LBZ  memri:$src)>;
3962 def : Pat<(atomic_load_16 iaddr:$src), (LHZ  memri:$src)>;
3963 def : Pat<(atomic_load_32 iaddr:$src), (LWZ  memri:$src)>;
3964 def : Pat<(atomic_load_8  xaddr:$src), (LBZX memrr:$src)>;
3965 def : Pat<(atomic_load_16 xaddr:$src), (LHZX memrr:$src)>;
3966 def : Pat<(atomic_load_32 xaddr:$src), (LWZX memrr:$src)>;
3967
3968 // Atomic stores
3969 def : Pat<(atomic_store_8  iaddr:$ptr, i32:$val), (STB  gprc:$val, memri:$ptr)>;
3970 def : Pat<(atomic_store_16 iaddr:$ptr, i32:$val), (STH  gprc:$val, memri:$ptr)>;
3971 def : Pat<(atomic_store_32 iaddr:$ptr, i32:$val), (STW  gprc:$val, memri:$ptr)>;
3972 def : Pat<(atomic_store_8  xaddr:$ptr, i32:$val), (STBX gprc:$val, memrr:$ptr)>;
3973 def : Pat<(atomic_store_16 xaddr:$ptr, i32:$val), (STHX gprc:$val, memrr:$ptr)>;
3974 def : Pat<(atomic_store_32 xaddr:$ptr, i32:$val), (STWX gprc:$val, memrr:$ptr)>;