blob: 42d0f659ea87dc7614852c1d50275d223bf05c10 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- PPCInstrInfo.td - The PowerPC Instruction Set -------*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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
15include "PPCInstrFormats.td"
16
17//===----------------------------------------------------------------------===//
18// PowerPC specific type constraints.
19//
20def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx
21 SDTCisVT<0, f64>, SDTCisPtrTy<1>
22]>;
23def SDT_PPCShiftOp : SDTypeProfile<1, 2, [ // PPCshl, PPCsra, PPCsrl
24 SDTCisVT<0, i32>, SDTCisVT<1, i32>, SDTCisVT<2, i32>
25]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +000026def SDT_PPCCallSeq_start : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>;
27def SDT_PPCCallSeq_end : SDTypeProfile<0, 2, [ SDTCisVT<0, i32>,
28 SDTCisVT<1, i32> ]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029def SDT_PPCvperm : SDTypeProfile<1, 3, [
30 SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>
31]>;
32
33def SDT_PPCvcmp : SDTypeProfile<1, 3, [
34 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>
35]>;
36
37def SDT_PPCcondbr : SDTypeProfile<0, 3, [
38 SDTCisVT<0, i32>, SDTCisVT<2, OtherVT>
39]>;
40
41def SDT_PPClbrx : SDTypeProfile<1, 3, [
42 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
43]>;
44def SDT_PPCstbrx : SDTypeProfile<0, 4, [
45 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
46]>;
47
48//===----------------------------------------------------------------------===//
49// PowerPC specific DAG Nodes.
50//
51
52def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>;
53def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
54def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
55def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx, [SDNPHasChain]>;
56
Dale Johannesen3d8578b2007-10-10 01:01:31 +000057// This sequence is used for long double->int conversions. It changes the
58// bits in the FPSCR which is not modelled.
59def PPCmffs : SDNode<"PPCISD::MFFS", SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>,
60 [SDNPOutFlag]>;
61def PPCmtfsb0 : SDNode<"PPCISD::MTFSB0", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
62 [SDNPInFlag, SDNPOutFlag]>;
63def PPCmtfsb1 : SDNode<"PPCISD::MTFSB1", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
64 [SDNPInFlag, SDNPOutFlag]>;
65def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp,
66 [SDNPInFlag, SDNPOutFlag]>;
67def PPCmtfsf : SDNode<"PPCISD::MTFSF", SDTypeProfile<1, 3,
68 [SDTCisVT<0, f64>, SDTCisInt<1>, SDTCisVT<2, f64>,
69 SDTCisVT<3, f64>]>,
70 [SDNPInFlag]>;
71
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072def PPCfsel : SDNode<"PPCISD::FSEL",
73 // Type constraint for fsel.
74 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
75 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
76
77def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
78def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
79def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
80def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
81
82def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
83
84// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
85// amounts. These nodes are generated by the multi-precision shift code.
86def PPCsrl : SDNode<"PPCISD::SRL" , SDT_PPCShiftOp>;
87def PPCsra : SDNode<"PPCISD::SRA" , SDT_PPCShiftOp>;
88def PPCshl : SDNode<"PPCISD::SHL" , SDT_PPCShiftOp>;
89
90def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>;
91def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore, [SDNPHasChain]>;
92
93// These are target-independent nodes, but have target-specific formats.
Bill Wendling22f8deb2007-11-13 00:44:25 +000094def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeq_start,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +000096def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeq_end,
97 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
100def PPCcall_Macho : SDNode<"PPCISD::CALL_Macho", SDT_PPCCall,
101 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
102def PPCcall_ELF : SDNode<"PPCISD::CALL_ELF", SDT_PPCCall,
103 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
104def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
105 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
106def PPCbctrl_Macho : SDNode<"PPCISD::BCTRL_Macho", SDTRet,
107 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
108
109def PPCbctrl_ELF : SDNode<"PPCISD::BCTRL_ELF", SDTRet,
110 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
111
112def retflag : SDNode<"PPCISD::RET_FLAG", SDTRet,
113 [SDNPHasChain, SDNPOptInFlag]>;
114
115def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
116def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>;
117
118def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
119 [SDNPHasChain, SDNPOptInFlag]>;
120
121def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx, [SDNPHasChain]>;
122def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx, [SDNPHasChain]>;
123
124// Instructions to support dynamic alloca.
125def SDTDynOp : SDTypeProfile<1, 2, []>;
126def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
127
128//===----------------------------------------------------------------------===//
129// PowerPC specific transformation functions and pattern fragments.
130//
131
132def SHL32 : SDNodeXForm<imm, [{
133 // Transformation function: 31 - imm
134 return getI32Imm(31 - N->getValue());
135}]>;
136
137def SRL32 : SDNodeXForm<imm, [{
138 // Transformation function: 32 - imm
139 return N->getValue() ? getI32Imm(32 - N->getValue()) : getI32Imm(0);
140}]>;
141
142def LO16 : SDNodeXForm<imm, [{
143 // Transformation function: get the low 16 bits.
144 return getI32Imm((unsigned short)N->getValue());
145}]>;
146
147def HI16 : SDNodeXForm<imm, [{
148 // Transformation function: shift the immediate value down into the low bits.
149 return getI32Imm((unsigned)N->getValue() >> 16);
150}]>;
151
152def HA16 : SDNodeXForm<imm, [{
153 // Transformation function: shift the immediate value down into the low bits.
154 signed int Val = N->getValue();
155 return getI32Imm((Val - (signed short)Val) >> 16);
156}]>;
157def MB : SDNodeXForm<imm, [{
158 // Transformation function: get the start bit of a mask
159 unsigned mb, me;
160 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
161 return getI32Imm(mb);
162}]>;
163
164def ME : SDNodeXForm<imm, [{
165 // Transformation function: get the end bit of a mask
166 unsigned mb, me;
167 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
168 return getI32Imm(me);
169}]>;
170def maskimm32 : PatLeaf<(imm), [{
171 // maskImm predicate - True if immediate is a run of ones.
172 unsigned mb, me;
173 if (N->getValueType(0) == MVT::i32)
174 return isRunOfOnes((unsigned)N->getValue(), mb, me);
175 else
176 return false;
177}]>;
178
179def immSExt16 : PatLeaf<(imm), [{
180 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
181 // field. Used by instructions like 'addi'.
182 if (N->getValueType(0) == MVT::i32)
183 return (int32_t)N->getValue() == (short)N->getValue();
184 else
185 return (int64_t)N->getValue() == (short)N->getValue();
186}]>;
187def immZExt16 : PatLeaf<(imm), [{
188 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
189 // field. Used by instructions like 'ori'.
190 return (uint64_t)N->getValue() == (unsigned short)N->getValue();
191}], LO16>;
192
193// imm16Shifted* - These match immediates where the low 16-bits are zero. There
194// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
195// identical in 32-bit mode, but in 64-bit mode, they return true if the
196// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
197// clear).
198def imm16ShiftedZExt : PatLeaf<(imm), [{
199 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
200 // immediate are set. Used by instructions like 'xoris'.
201 return (N->getValue() & ~uint64_t(0xFFFF0000)) == 0;
202}], HI16>;
203
204def imm16ShiftedSExt : PatLeaf<(imm), [{
205 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
206 // immediate are set. Used by instructions like 'addis'. Identical to
207 // imm16ShiftedZExt in 32-bit mode.
208 if (N->getValue() & 0xFFFF) return false;
209 if (N->getValueType(0) == MVT::i32)
210 return true;
211 // For 64-bit, make sure it is sext right.
212 return N->getValue() == (uint64_t)(int)N->getValue();
213}], HI16>;
214
215
216//===----------------------------------------------------------------------===//
217// PowerPC Flag Definitions.
218
219class isPPC64 { bit PPC64 = 1; }
220class isDOT {
221 list<Register> Defs = [CR0];
222 bit RC = 1;
223}
224
225class RegConstraint<string C> {
226 string Constraints = C;
227}
228class NoEncode<string E> {
229 string DisableEncoding = E;
230}
231
232
233//===----------------------------------------------------------------------===//
234// PowerPC Operand Definitions.
235
236def s5imm : Operand<i32> {
237 let PrintMethod = "printS5ImmOperand";
238}
239def u5imm : Operand<i32> {
240 let PrintMethod = "printU5ImmOperand";
241}
242def u6imm : Operand<i32> {
243 let PrintMethod = "printU6ImmOperand";
244}
245def s16imm : Operand<i32> {
246 let PrintMethod = "printS16ImmOperand";
247}
248def u16imm : Operand<i32> {
249 let PrintMethod = "printU16ImmOperand";
250}
251def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing.
252 let PrintMethod = "printS16X4ImmOperand";
253}
254def target : Operand<OtherVT> {
255 let PrintMethod = "printBranchOperand";
256}
257def calltarget : Operand<iPTR> {
258 let PrintMethod = "printCallOperand";
259}
260def aaddr : Operand<iPTR> {
261 let PrintMethod = "printAbsAddrOperand";
262}
263def piclabel: Operand<iPTR> {
264 let PrintMethod = "printPICLabel";
265}
266def symbolHi: Operand<i32> {
267 let PrintMethod = "printSymbolHi";
268}
269def symbolLo: Operand<i32> {
270 let PrintMethod = "printSymbolLo";
271}
272def crbitm: Operand<i8> {
273 let PrintMethod = "printcrbitm";
274}
275// Address operands
276def memri : Operand<iPTR> {
277 let PrintMethod = "printMemRegImm";
278 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
279}
280def memrr : Operand<iPTR> {
281 let PrintMethod = "printMemRegReg";
282 let MIOperandInfo = (ops ptr_rc, ptr_rc);
283}
284def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
285 let PrintMethod = "printMemRegImmShifted";
286 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
287}
288
289// PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg
290// that doesn't matter.
291def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
292 (ops (i32 20), CR0)> {
293 let PrintMethod = "printPredicateOperand";
294}
295
296// Define PowerPC specific addressing mode.
297def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
298def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
299def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
300def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
301
302/// This is just the offset part of iaddr, used for preinc.
303def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
304
305//===----------------------------------------------------------------------===//
306// PowerPC Instruction Predicate Definitions.
307def FPContractions : Predicate<"!NoExcessFPPrecision">;
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000308def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
309def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310
311
312//===----------------------------------------------------------------------===//
313// PowerPC Instruction Definitions.
314
315// Pseudo-instructions:
316
317let hasCtrlDep = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000318let Defs = [R1], Uses = [R1] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000319def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 "${:comment} ADJCALLSTACKDOWN",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000321 [(callseq_start imm:$amt)]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +0000322def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 "${:comment} ADJCALLSTACKUP",
Bill Wendling22f8deb2007-11-13 00:44:25 +0000324 [(callseq_end imm:$amt1, imm:$amt2)]>;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000325}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326
Evan Chengb783fa32007-07-19 01:14:50 +0000327def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 "UPDATE_VRSAVE $rD, $rS", []>;
329}
330
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000331let Defs = [R1], Uses = [R1] in
Evan Chengb783fa32007-07-19 01:14:50 +0000332def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333 "${:comment} DYNALLOC $result, $negsize, $fpsi",
334 [(set GPRC:$result,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000335 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336
Evan Chengb783fa32007-07-19 01:14:50 +0000337def IMPLICIT_DEF_GPRC: Pseudo<(outs GPRC:$rD), (ins),
338 "${:comment}IMPLICIT_DEF_GPRC $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 [(set GPRC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000340def IMPLICIT_DEF_F8 : Pseudo<(outs F8RC:$rD), (ins),
341 "${:comment} IMPLICIT_DEF_F8 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 [(set F8RC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000343def IMPLICIT_DEF_F4 : Pseudo<(outs F4RC:$rD), (ins),
344 "${:comment} IMPLICIT_DEF_F4 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 [(set F4RC:$rD, (undef))]>;
346
347// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
348// scheduler into a branch sequence.
349let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
350 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000351 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
353 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000354 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
356 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000357 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
359 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000360 def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
362 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000363 def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
365 []>;
366}
367
Evan Cheng37e7c752007-07-21 00:34:19 +0000368let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 let isReturn = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000370 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 "b${p:cc}lr ${p:reg}", BrB,
372 [(retflag)]>;
Owen Andersonf8053082007-11-12 07:39:39 +0000373 let isBranch = 1, isIndirectBranch = 1 in
374 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375}
376
377
378
379let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000380 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 PPC970_Unit_BRU;
382
Evan Cheng37e7c752007-07-21 00:34:19 +0000383let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000385 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 "b $dst", BrB,
387 [(br bb:$dst)]>;
388 }
389
390 // BCC represents an arbitrary conditional branch on a predicate.
391 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
392 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000393 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 "b${cond:cc} ${cond:reg}, $dst"
395 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
396}
397
398// Macho ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000399let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400 // All calls clobber the non-callee saved registers...
401 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
402 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
403 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
404 LR,CTR,
405 CR0,CR1,CR5,CR6,CR7] in {
406 // Convenient aliases for call instructions
407 def BL_Macho : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000408 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409 "bl $func", BrB, []>; // See Pat patterns below.
410 def BLA_Macho : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000411 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
413 def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000414 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000416 [(PPCbctrl_Macho)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417}
418
419// ELF ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000420let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 // All calls clobber the non-callee saved registers...
422 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
423 F0,F1,F2,F3,F4,F5,F6,F7,F8,
424 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
425 LR,CTR,
426 CR0,CR1,CR5,CR6,CR7] in {
427 // Convenient aliases for call instructions
428 def BL_ELF : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000429 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 "bl $func", BrB, []>; // See Pat patterns below.
431 def BLA_ELF : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000432 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 "bla $func", BrB,
434 [(PPCcall_ELF (i32 imm:$func))]>;
435 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000436 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000438 [(PPCbctrl_ELF)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439}
440
441// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000442def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
444 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000445def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
447 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000448def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
450 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000451def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
453 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000454def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
456 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000457def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
459 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000460def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
462 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000463def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
465 PPC970_DGroup_Single;
466
467//===----------------------------------------------------------------------===//
468// PPC32 Load Instructions.
469//
470
471// Unindexed (r+i) Loads.
472let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000473def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474 "lbz $rD, $src", LdStGeneral,
475 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000476def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 "lha $rD, $src", LdStLHA,
478 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
479 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000480def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 "lhz $rD, $src", LdStGeneral,
482 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000483def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 "lwz $rD, $src", LdStGeneral,
485 [(set GPRC:$rD, (load iaddr:$src))]>;
486
Evan Chengb783fa32007-07-19 01:14:50 +0000487def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 "lfs $rD, $src", LdStLFDU,
489 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000490def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 "lfd $rD, $src", LdStLFD,
492 [(set F8RC:$rD, (load iaddr:$src))]>;
493
494
495// Unindexed (r+i) Loads with Update (preinc).
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000496def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497 "lbzu $rD, $addr", LdStGeneral,
498 []>, RegConstraint<"$addr.reg = $ea_result">,
499 NoEncode<"$ea_result">;
500
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000501def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502 "lhau $rD, $addr", LdStGeneral,
503 []>, RegConstraint<"$addr.reg = $ea_result">,
504 NoEncode<"$ea_result">;
505
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000506def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 "lhzu $rD, $addr", LdStGeneral,
508 []>, RegConstraint<"$addr.reg = $ea_result">,
509 NoEncode<"$ea_result">;
510
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000511def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 "lwzu $rD, $addr", LdStGeneral,
513 []>, RegConstraint<"$addr.reg = $ea_result">,
514 NoEncode<"$ea_result">;
515
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000516def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 "lfs $rD, $addr", LdStLFDU,
518 []>, RegConstraint<"$addr.reg = $ea_result">,
519 NoEncode<"$ea_result">;
520
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000521def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 "lfd $rD, $addr", LdStLFD,
523 []>, RegConstraint<"$addr.reg = $ea_result">,
524 NoEncode<"$ea_result">;
525}
526
527// Indexed (r+r) Loads.
528//
529let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000530def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 "lbzx $rD, $src", LdStGeneral,
532 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000533def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 "lhax $rD, $src", LdStLHA,
535 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
536 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000537def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538 "lhzx $rD, $src", LdStGeneral,
539 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000540def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000541 "lwzx $rD, $src", LdStGeneral,
542 [(set GPRC:$rD, (load xaddr:$src))]>;
543
544
Evan Chengb783fa32007-07-19 01:14:50 +0000545def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 "lhbrx $rD, $src", LdStGeneral,
547 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000548def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 "lwbrx $rD, $src", LdStGeneral,
550 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
551
Evan Chengb783fa32007-07-19 01:14:50 +0000552def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 "lfsx $frD, $src", LdStLFDU,
554 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000555def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 "lfdx $frD, $src", LdStLFDU,
557 [(set F8RC:$frD, (load xaddr:$src))]>;
558}
559
560//===----------------------------------------------------------------------===//
561// PPC32 Store Instructions.
562//
563
564// Unindexed (r+i) Stores.
Evan Cheng37e7c752007-07-21 00:34:19 +0000565let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000566def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 "stb $rS, $src", LdStGeneral,
568 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000569def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 "sth $rS, $src", LdStGeneral,
571 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000572def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 "stw $rS, $src", LdStGeneral,
574 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000575def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 "stfs $rS, $dst", LdStUX,
577 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000578def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 "stfd $rS, $dst", LdStUX,
580 [(store F8RC:$rS, iaddr:$dst)]>;
581}
582
583// Unindexed (r+i) Stores with Update (preinc).
584let isStore = 1, PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000585def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 symbolLo:$ptroff, ptr_rc:$ptrreg),
587 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
588 [(set ptr_rc:$ea_res,
589 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
590 iaddroff:$ptroff))]>,
591 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000592def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 symbolLo:$ptroff, ptr_rc:$ptrreg),
594 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
595 [(set ptr_rc:$ea_res,
596 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
597 iaddroff:$ptroff))]>,
598 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000599def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600 symbolLo:$ptroff, ptr_rc:$ptrreg),
601 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
602 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
603 iaddroff:$ptroff))]>,
604 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000605def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 symbolLo:$ptroff, ptr_rc:$ptrreg),
607 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
608 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
609 iaddroff:$ptroff))]>,
610 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000611def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 symbolLo:$ptroff, ptr_rc:$ptrreg),
613 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
614 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
615 iaddroff:$ptroff))]>,
616 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
617}
618
619
620// Indexed (r+r) Stores.
621//
Evan Cheng37e7c752007-07-21 00:34:19 +0000622let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000623def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624 "stbx $rS, $dst", LdStGeneral,
625 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
626 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000627def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628 "sthx $rS, $dst", LdStGeneral,
629 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
630 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000631def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 "stwx $rS, $dst", LdStGeneral,
633 [(store GPRC:$rS, xaddr:$dst)]>,
634 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000635def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 "stwux $rS, $rA, $rB", LdStGeneral,
637 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000638def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 "sthbrx $rS, $dst", LdStGeneral,
640 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
641 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000642def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 "stwbrx $rS, $dst", LdStGeneral,
644 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
645 PPC970_DGroup_Cracked;
646
Evan Chengb783fa32007-07-19 01:14:50 +0000647def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648 "stfiwx $frS, $dst", LdStUX,
649 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000650def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 "stfsx $frS, $dst", LdStUX,
652 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000653def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 "stfdx $frS, $dst", LdStUX,
655 [(store F8RC:$frS, xaddr:$dst)]>;
656}
657
658
659//===----------------------------------------------------------------------===//
660// PPC32 Arithmetic Instructions.
661//
662
663let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000664def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 "addi $rD, $rA, $imm", IntGeneral,
666 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000667def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 "addic $rD, $rA, $imm", IntGeneral,
669 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
670 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000671def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 "addic. $rD, $rA, $imm", IntGeneral,
673 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000674def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675 "addis $rD, $rA, $imm", IntGeneral,
676 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000677def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 "la $rD, $sym($rA)", IntGeneral,
679 [(set GPRC:$rD, (add GPRC:$rA,
680 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000681def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 "mulli $rD, $rA, $imm", IntMulLI,
683 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000684def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 "subfic $rD, $rA, $imm", IntGeneral,
686 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000687def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 "li $rD, $imm", IntGeneral,
689 [(set GPRC:$rD, immSExt16:$imm)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000690def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 "lis $rD, $imm", IntGeneral,
692 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
693}
694
695let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000696def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 "andi. $dst, $src1, $src2", IntGeneral,
698 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
699 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000700def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701 "andis. $dst, $src1, $src2", IntGeneral,
702 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
703 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000704def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705 "ori $dst, $src1, $src2", IntGeneral,
706 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000707def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 "oris $dst, $src1, $src2", IntGeneral,
709 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000710def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 "xori $dst, $src1, $src2", IntGeneral,
712 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000713def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 "xoris $dst, $src1, $src2", IntGeneral,
715 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000716def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000718def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000720def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 "cmplwi $dst, $src1, $src2", IntCompare>;
722}
723
724
725let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000726def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727 "nand $rA, $rS, $rB", IntGeneral,
728 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000729def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 "and $rA, $rS, $rB", IntGeneral,
731 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000732def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733 "andc $rA, $rS, $rB", IntGeneral,
734 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000735def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000736 "or $rA, $rS, $rB", IntGeneral,
737 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000738def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 "nor $rA, $rS, $rB", IntGeneral,
740 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000741def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 "orc $rA, $rS, $rB", IntGeneral,
743 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000744def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000745 "eqv $rA, $rS, $rB", IntGeneral,
746 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000747def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748 "xor $rA, $rS, $rB", IntGeneral,
749 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000750def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751 "slw $rA, $rS, $rB", IntGeneral,
752 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000753def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754 "srw $rA, $rS, $rB", IntGeneral,
755 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000756def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 "sraw $rA, $rS, $rB", IntShift,
758 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
759}
760
761let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000762def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 "srawi $rA, $rS, $SH", IntShift,
764 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000765def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 "cntlzw $rA, $rS", IntGeneral,
767 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000768def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 "extsb $rA, $rS", IntGeneral,
770 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000771def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 "extsh $rA, $rS", IntGeneral,
773 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
774
Evan Chengb783fa32007-07-19 01:14:50 +0000775def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000777def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 "cmplw $crD, $rA, $rB", IntCompare>;
779}
780let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000781//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000783def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000785def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786 "fcmpu $crD, $fA, $fB", FPCompare>;
787
Evan Chengb783fa32007-07-19 01:14:50 +0000788def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 "fctiwz $frD, $frB", FPGeneral,
790 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000791def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 "frsp $frD, $frB", FPGeneral,
793 [(set F4RC:$frD, (fround F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000794def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 "fsqrt $frD, $frB", FPSqrt,
796 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000797def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 "fsqrts $frD, $frB", FPSqrt,
799 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
800}
801
802/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
803///
804/// Note that these are defined as pseudo-ops on the PPC970 because they are
805/// often coalesced away and we don't want the dispatch group builder to think
806/// that they will fill slots (which could cause the load of a LSU reject to
807/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +0000808def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 "fmr $frD, $frB", FPGeneral,
810 []>, // (set F4RC:$frD, F4RC:$frB)
811 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000812def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 "fmr $frD, $frB", FPGeneral,
814 []>, // (set F8RC:$frD, F8RC:$frB)
815 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000816def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 "fmr $frD, $frB", FPGeneral,
818 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
819 PPC970_Unit_Pseudo;
820
821let PPC970_Unit = 3 in { // FPU Operations.
822// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +0000823def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 "fabs $frD, $frB", FPGeneral,
825 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000826def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 "fabs $frD, $frB", FPGeneral,
828 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000829def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830 "fnabs $frD, $frB", FPGeneral,
831 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000832def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833 "fnabs $frD, $frB", FPGeneral,
834 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000835def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 "fneg $frD, $frB", FPGeneral,
837 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000838def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 "fneg $frD, $frB", FPGeneral,
840 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
841}
842
843
844// XL-Form instructions. condition register logical ops.
845//
Evan Chengb783fa32007-07-19 01:14:50 +0000846def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 "mcrf $BF, $BFA", BrMCR>,
848 PPC970_DGroup_First, PPC970_Unit_CRU;
849
Evan Chengb783fa32007-07-19 01:14:50 +0000850def CREQV : XLForm_1<19, 289, (outs CRRC:$CRD), (ins CRRC:$CRA, CRRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 "creqv $CRD, $CRA, $CRB", BrCR,
852 []>;
853
Evan Chengb783fa32007-07-19 01:14:50 +0000854def SETCR : XLForm_1_ext<19, 289, (outs CRRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 "creqv $dst, $dst, $dst", BrCR,
856 []>;
857
858// XFX-Form instructions. Instructions that deal with SPRs.
859//
Evan Chengb783fa32007-07-19 01:14:50 +0000860def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
861 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 PPC970_DGroup_First, PPC970_Unit_FXU;
863let Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000864def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
865 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 PPC970_DGroup_First, PPC970_Unit_FXU;
867}
868
Evan Chengb783fa32007-07-19 01:14:50 +0000869def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
870 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 PPC970_DGroup_First, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000872def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
873 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 PPC970_DGroup_First, PPC970_Unit_FXU;
875
876// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
877// a GPR on the PPC970. As such, copies in and out have the same performance
878// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +0000879def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 "mtspr 256, $rS", IntGeneral>,
881 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000882def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 "mfspr $rT, 256", IntGeneral>,
884 PPC970_DGroup_First, PPC970_Unit_FXU;
885
Evan Chengb783fa32007-07-19 01:14:50 +0000886def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 "mtcrf $FXM, $rS", BrMCRX>,
888 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000889def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000891def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 "mfcr $rT, $FXM", SprMFCR>,
893 PPC970_DGroup_First, PPC970_Unit_CRU;
894
Dale Johannesen3d8578b2007-10-10 01:01:31 +0000895// Instructions to manipulate FPSCR. Only long double handling uses these.
896// FPSCR is not modelled; we use the SDNode Flag to keep things in order.
897
898def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins),
899 "mffs $rT", IntMFFS,
900 [(set F8RC:$rT, (PPCmffs))]>,
901 PPC970_DGroup_Single, PPC970_Unit_FPU;
902def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
903 "mtfsb0 $FM", IntMTFSB0,
904 [(PPCmtfsb0 (i32 imm:$FM))]>,
905 PPC970_DGroup_Single, PPC970_Unit_FPU;
906def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
907 "mtfsb1 $FM", IntMTFSB0,
908 [(PPCmtfsb1 (i32 imm:$FM))]>,
909 PPC970_DGroup_Single, PPC970_Unit_FPU;
910def FADDrtz: AForm_2<63, 21,
911 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
912 "fadd $FRT, $FRA, $FRB", FPGeneral,
913 [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>,
914 PPC970_DGroup_Single, PPC970_Unit_FPU;
915// MTFSF does not actually produce an FP result. We pretend it copies
916// input reg B to the output. If we didn't do this it would look like the
917// instruction had no outputs (because we aren't modelling the FPSCR) and
918// it would be deleted.
919def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA),
920 (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB),
921 "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0,
922 [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM),
923 F8RC:$rT, F8RC:$FRB))]>,
924 PPC970_DGroup_Single, PPC970_Unit_FPU;
925
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000926let PPC970_Unit = 1 in { // FXU Operations.
927
928// XO-Form instructions. Arithmetic instructions that can set overflow bit
929//
Evan Chengb783fa32007-07-19 01:14:50 +0000930def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 "add $rT, $rA, $rB", IntGeneral,
932 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000933def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000934 "addc $rT, $rA, $rB", IntGeneral,
935 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
936 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000937def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 "adde $rT, $rA, $rB", IntGeneral,
939 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000940def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 "divw $rT, $rA, $rB", IntDivW,
942 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
943 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000944def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 "divwu $rT, $rA, $rB", IntDivW,
946 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
947 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000948def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 "mulhw $rT, $rA, $rB", IntMulHW,
950 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000951def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 "mulhwu $rT, $rA, $rB", IntMulHWU,
953 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000954def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000955 "mullw $rT, $rA, $rB", IntMulHW,
956 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000957def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 "subf $rT, $rA, $rB", IntGeneral,
959 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000960def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000961 "subfc $rT, $rA, $rB", IntGeneral,
962 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
963 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000964def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 "subfe $rT, $rA, $rB", IntGeneral,
966 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000967def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 "addme $rT, $rA", IntGeneral,
969 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000970def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971 "addze $rT, $rA", IntGeneral,
972 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000973def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974 "neg $rT, $rA", IntGeneral,
975 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000976def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 "subfme $rT, $rA", IntGeneral,
978 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000979def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 "subfze $rT, $rA", IntGeneral,
981 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
982}
983
984// A-Form instructions. Most of the instructions executed in the FPU are of
985// this type.
986//
987let PPC970_Unit = 3 in { // FPU Operations.
988def FMADD : AForm_1<63, 29,
Evan Chengb783fa32007-07-19 01:14:50 +0000989 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
991 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
992 F8RC:$FRB))]>,
993 Requires<[FPContractions]>;
994def FMADDS : AForm_1<59, 29,
Evan Chengb783fa32007-07-19 01:14:50 +0000995 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
997 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
998 F4RC:$FRB))]>,
999 Requires<[FPContractions]>;
1000def FMSUB : AForm_1<63, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001001 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1003 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1004 F8RC:$FRB))]>,
1005 Requires<[FPContractions]>;
1006def FMSUBS : AForm_1<59, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001007 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1009 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1010 F4RC:$FRB))]>,
1011 Requires<[FPContractions]>;
1012def FNMADD : AForm_1<63, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001013 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1015 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1016 F8RC:$FRB)))]>,
1017 Requires<[FPContractions]>;
1018def FNMADDS : AForm_1<59, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001019 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1021 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1022 F4RC:$FRB)))]>,
1023 Requires<[FPContractions]>;
1024def FNMSUB : AForm_1<63, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001025 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1027 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1028 F8RC:$FRB)))]>,
1029 Requires<[FPContractions]>;
1030def FNMSUBS : AForm_1<59, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001031 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1033 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1034 F4RC:$FRB)))]>,
1035 Requires<[FPContractions]>;
1036// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1037// having 4 of these, force the comparison to always be an 8-byte double (code
1038// should use an FMRSD if the input comparison value really wants to be a float)
1039// and 4/8 byte forms for the result and operand type..
1040def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001041 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1043 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
1044def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001045 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1047 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
1048def FADD : AForm_2<63, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001049 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 "fadd $FRT, $FRA, $FRB", FPGeneral,
1051 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1052def FADDS : AForm_2<59, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001053 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 "fadds $FRT, $FRA, $FRB", FPGeneral,
1055 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1056def FDIV : AForm_2<63, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001057 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 "fdiv $FRT, $FRA, $FRB", FPDivD,
1059 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1060def FDIVS : AForm_2<59, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001061 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 "fdivs $FRT, $FRA, $FRB", FPDivS,
1063 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1064def FMUL : AForm_3<63, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001065 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 "fmul $FRT, $FRA, $FRB", FPFused,
1067 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1068def FMULS : AForm_3<59, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001069 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1071 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1072def FSUB : AForm_2<63, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001073 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 "fsub $FRT, $FRA, $FRB", FPGeneral,
1075 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1076def FSUBS : AForm_2<59, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001077 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1079 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1080}
1081
1082let PPC970_Unit = 1 in { // FXU Operations.
1083// M-Form instructions. rotate and mask instructions.
1084//
1085let isCommutable = 1 in {
1086// RLWIMI can be commuted if the rotate amount is zero.
1087def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001088 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1090 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1091 NoEncode<"$rSi">;
1092}
1093def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001094 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1096 []>;
1097def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001098 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1100 []>, isDOT, PPC970_DGroup_Cracked;
1101def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001102 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1104 []>;
1105}
1106
1107
1108//===----------------------------------------------------------------------===//
1109// DWARF Pseudo Instructions
1110//
1111
Evan Chengb783fa32007-07-19 01:14:50 +00001112def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 "${:comment} .loc $file, $line, $col",
1114 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1115 (i32 imm:$file))]>;
1116
1117//===----------------------------------------------------------------------===//
1118// PowerPC Instruction Patterns
1119//
1120
1121// Arbitrary immediate support. Implement in terms of LIS/ORI.
1122def : Pat<(i32 imm:$imm),
1123 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1124
1125// Implement the 'not' operation with the NOR instruction.
1126def NOT : Pat<(not GPRC:$in),
1127 (NOR GPRC:$in, GPRC:$in)>;
1128
1129// ADD an arbitrary immediate.
1130def : Pat<(add GPRC:$in, imm:$imm),
1131 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1132// OR an arbitrary immediate.
1133def : Pat<(or GPRC:$in, imm:$imm),
1134 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1135// XOR an arbitrary immediate.
1136def : Pat<(xor GPRC:$in, imm:$imm),
1137 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1138// SUBFIC
1139def : Pat<(sub immSExt16:$imm, GPRC:$in),
1140 (SUBFIC GPRC:$in, imm:$imm)>;
1141
1142// SHL/SRL
1143def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1144 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1145def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1146 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1147
1148// ROTL
1149def : Pat<(rotl GPRC:$in, GPRC:$sh),
1150 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1151def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1152 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1153
1154// RLWNM
1155def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1156 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1157
1158// Calls
1159def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1160 (BL_Macho tglobaladdr:$dst)>;
1161def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1162 (BL_Macho texternalsym:$dst)>;
1163def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1164 (BL_ELF tglobaladdr:$dst)>;
1165def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1166 (BL_ELF texternalsym:$dst)>;
1167
1168// Hi and Lo for Darwin Global Addresses.
1169def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1170def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1171def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1172def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1173def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1174def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1175def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1176 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1177def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1178 (ADDIS GPRC:$in, tconstpool:$g)>;
1179def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1180 (ADDIS GPRC:$in, tjumptable:$g)>;
1181
1182// Fused negative multiply subtract, alternate pattern
1183def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1184 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1185 Requires<[FPContractions]>;
1186def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1187 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1188 Requires<[FPContractions]>;
1189
1190// Standard shifts. These are represented separately from the real shifts above
1191// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1192// amounts.
1193def : Pat<(sra GPRC:$rS, GPRC:$rB),
1194 (SRAW GPRC:$rS, GPRC:$rB)>;
1195def : Pat<(srl GPRC:$rS, GPRC:$rB),
1196 (SRW GPRC:$rS, GPRC:$rB)>;
1197def : Pat<(shl GPRC:$rS, GPRC:$rB),
1198 (SLW GPRC:$rS, GPRC:$rB)>;
1199
1200def : Pat<(zextloadi1 iaddr:$src),
1201 (LBZ iaddr:$src)>;
1202def : Pat<(zextloadi1 xaddr:$src),
1203 (LBZX xaddr:$src)>;
1204def : Pat<(extloadi1 iaddr:$src),
1205 (LBZ iaddr:$src)>;
1206def : Pat<(extloadi1 xaddr:$src),
1207 (LBZX xaddr:$src)>;
1208def : Pat<(extloadi8 iaddr:$src),
1209 (LBZ iaddr:$src)>;
1210def : Pat<(extloadi8 xaddr:$src),
1211 (LBZX xaddr:$src)>;
1212def : Pat<(extloadi16 iaddr:$src),
1213 (LHZ iaddr:$src)>;
1214def : Pat<(extloadi16 xaddr:$src),
1215 (LHZX xaddr:$src)>;
1216def : Pat<(extloadf32 iaddr:$src),
1217 (FMRSD (LFS iaddr:$src))>;
1218def : Pat<(extloadf32 xaddr:$src),
1219 (FMRSD (LFSX xaddr:$src))>;
1220
1221include "PPCInstrAltivec.td"
1222include "PPCInstr64Bit.td"