blob: 0d6bebf6d15f492026d97c988312ca70b23a47a9 [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//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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 Wendling7173da52007-11-13 09:19:02 +000026def SDT_PPCCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
27def SDT_PPCCallSeqEnd : SDCallSeqEnd<[ 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 Wendling7173da52007-11-13 09:19:02 +000094def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +000096def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd,
Bill Wendling22f8deb2007-11-13 00:44:25 +000097 [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 Chenge399fbb2007-12-12 23:12:09 +0000337let isImplicitDef = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000338def IMPLICIT_DEF_GPRC: Pseudo<(outs GPRC:$rD), (ins),
339 "${:comment}IMPLICIT_DEF_GPRC $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 [(set GPRC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000341def IMPLICIT_DEF_F8 : Pseudo<(outs F8RC:$rD), (ins),
342 "${:comment} IMPLICIT_DEF_F8 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 [(set F8RC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000344def IMPLICIT_DEF_F4 : Pseudo<(outs F4RC:$rD), (ins),
345 "${:comment} IMPLICIT_DEF_F4 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 [(set F4RC:$rD, (undef))]>;
Evan Chenge399fbb2007-12-12 23:12:09 +0000347}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348
349// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
350// scheduler into a branch sequence.
351let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
352 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000353 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
355 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000356 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
358 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000359 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
361 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000362 def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
364 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000365 def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
367 []>;
368}
369
Evan Cheng37e7c752007-07-21 00:34:19 +0000370let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 let isReturn = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000372 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 "b${p:cc}lr ${p:reg}", BrB,
374 [(retflag)]>;
Owen Andersonf8053082007-11-12 07:39:39 +0000375 let isBranch = 1, isIndirectBranch = 1 in
376 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377}
378
379
380
381let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000382 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 PPC970_Unit_BRU;
384
Evan Cheng37e7c752007-07-21 00:34:19 +0000385let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000387 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 "b $dst", BrB,
389 [(br bb:$dst)]>;
390 }
391
392 // BCC represents an arbitrary conditional branch on a predicate.
393 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
394 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000395 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 "b${cond:cc} ${cond:reg}, $dst"
397 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
398}
399
400// Macho ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000401let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 // All calls clobber the non-callee saved registers...
403 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
404 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
405 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
406 LR,CTR,
407 CR0,CR1,CR5,CR6,CR7] in {
408 // Convenient aliases for call instructions
409 def BL_Macho : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000410 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 "bl $func", BrB, []>; // See Pat patterns below.
412 def BLA_Macho : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000413 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
415 def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000416 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000418 [(PPCbctrl_Macho)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419}
420
421// ELF ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000422let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 // All calls clobber the non-callee saved registers...
424 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
425 F0,F1,F2,F3,F4,F5,F6,F7,F8,
426 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
427 LR,CTR,
428 CR0,CR1,CR5,CR6,CR7] in {
429 // Convenient aliases for call instructions
430 def BL_ELF : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000431 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 "bl $func", BrB, []>; // See Pat patterns below.
433 def BLA_ELF : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000434 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 "bla $func", BrB,
436 [(PPCcall_ELF (i32 imm:$func))]>;
437 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000438 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000440 [(PPCbctrl_ELF)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441}
442
443// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000444def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
446 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000447def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
449 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000450def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
452 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000453def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
455 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000456def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
458 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000459def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
461 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000462def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
464 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000465def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
467 PPC970_DGroup_Single;
468
469//===----------------------------------------------------------------------===//
470// PPC32 Load Instructions.
471//
472
473// Unindexed (r+i) Loads.
474let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000475def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 "lbz $rD, $src", LdStGeneral,
477 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000478def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 "lha $rD, $src", LdStLHA,
480 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
481 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000482def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 "lhz $rD, $src", LdStGeneral,
484 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000485def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 "lwz $rD, $src", LdStGeneral,
487 [(set GPRC:$rD, (load iaddr:$src))]>;
488
Evan Chengb783fa32007-07-19 01:14:50 +0000489def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490 "lfs $rD, $src", LdStLFDU,
491 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000492def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 "lfd $rD, $src", LdStLFD,
494 [(set F8RC:$rD, (load iaddr:$src))]>;
495
496
497// Unindexed (r+i) Loads with Update (preinc).
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000498def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 "lbzu $rD, $addr", LdStGeneral,
500 []>, RegConstraint<"$addr.reg = $ea_result">,
501 NoEncode<"$ea_result">;
502
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000503def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 "lhau $rD, $addr", LdStGeneral,
505 []>, RegConstraint<"$addr.reg = $ea_result">,
506 NoEncode<"$ea_result">;
507
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000508def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 "lhzu $rD, $addr", LdStGeneral,
510 []>, RegConstraint<"$addr.reg = $ea_result">,
511 NoEncode<"$ea_result">;
512
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000513def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 "lwzu $rD, $addr", LdStGeneral,
515 []>, RegConstraint<"$addr.reg = $ea_result">,
516 NoEncode<"$ea_result">;
517
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000518def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 "lfs $rD, $addr", LdStLFDU,
520 []>, RegConstraint<"$addr.reg = $ea_result">,
521 NoEncode<"$ea_result">;
522
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000523def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 "lfd $rD, $addr", LdStLFD,
525 []>, RegConstraint<"$addr.reg = $ea_result">,
526 NoEncode<"$ea_result">;
527}
528
529// Indexed (r+r) Loads.
530//
531let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000532def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 "lbzx $rD, $src", LdStGeneral,
534 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000535def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 "lhax $rD, $src", LdStLHA,
537 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
538 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000539def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 "lhzx $rD, $src", LdStGeneral,
541 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000542def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 "lwzx $rD, $src", LdStGeneral,
544 [(set GPRC:$rD, (load xaddr:$src))]>;
545
546
Evan Chengb783fa32007-07-19 01:14:50 +0000547def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 "lhbrx $rD, $src", LdStGeneral,
549 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000550def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 "lwbrx $rD, $src", LdStGeneral,
552 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
553
Evan Chengb783fa32007-07-19 01:14:50 +0000554def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 "lfsx $frD, $src", LdStLFDU,
556 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000557def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 "lfdx $frD, $src", LdStLFDU,
559 [(set F8RC:$frD, (load xaddr:$src))]>;
560}
561
562//===----------------------------------------------------------------------===//
563// PPC32 Store Instructions.
564//
565
566// Unindexed (r+i) Stores.
Evan Cheng37e7c752007-07-21 00:34:19 +0000567let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000568def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 "stb $rS, $src", LdStGeneral,
570 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000571def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 "sth $rS, $src", LdStGeneral,
573 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000574def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 "stw $rS, $src", LdStGeneral,
576 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000577def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 "stfs $rS, $dst", LdStUX,
579 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000580def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 "stfd $rS, $dst", LdStUX,
582 [(store F8RC:$rS, iaddr:$dst)]>;
583}
584
585// Unindexed (r+i) Stores with Update (preinc).
586let isStore = 1, PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000587def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 symbolLo:$ptroff, ptr_rc:$ptrreg),
589 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
590 [(set ptr_rc:$ea_res,
591 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
592 iaddroff:$ptroff))]>,
593 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000594def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 symbolLo:$ptroff, ptr_rc:$ptrreg),
596 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
597 [(set ptr_rc:$ea_res,
598 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
599 iaddroff:$ptroff))]>,
600 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000601def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602 symbolLo:$ptroff, ptr_rc:$ptrreg),
603 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
604 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
605 iaddroff:$ptroff))]>,
606 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000607def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 symbolLo:$ptroff, ptr_rc:$ptrreg),
609 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
610 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
611 iaddroff:$ptroff))]>,
612 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000613def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 symbolLo:$ptroff, ptr_rc:$ptrreg),
615 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
616 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
617 iaddroff:$ptroff))]>,
618 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
619}
620
621
622// Indexed (r+r) Stores.
623//
Evan Cheng37e7c752007-07-21 00:34:19 +0000624let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000625def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 "stbx $rS, $dst", LdStGeneral,
627 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
628 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000629def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 "sthx $rS, $dst", LdStGeneral,
631 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
632 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000633def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 "stwx $rS, $dst", LdStGeneral,
635 [(store GPRC:$rS, xaddr:$dst)]>,
636 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000637def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 "stwux $rS, $rA, $rB", LdStGeneral,
639 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000640def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 "sthbrx $rS, $dst", LdStGeneral,
642 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
643 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000644def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 "stwbrx $rS, $dst", LdStGeneral,
646 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
647 PPC970_DGroup_Cracked;
648
Evan Chengb783fa32007-07-19 01:14:50 +0000649def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 "stfiwx $frS, $dst", LdStUX,
651 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000652def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 "stfsx $frS, $dst", LdStUX,
654 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000655def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656 "stfdx $frS, $dst", LdStUX,
657 [(store F8RC:$frS, xaddr:$dst)]>;
658}
659
660
661//===----------------------------------------------------------------------===//
662// PPC32 Arithmetic Instructions.
663//
664
665let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000666def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 "addi $rD, $rA, $imm", IntGeneral,
668 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000669def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 "addic $rD, $rA, $imm", IntGeneral,
671 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
672 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000673def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 "addic. $rD, $rA, $imm", IntGeneral,
675 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000676def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 "addis $rD, $rA, $imm", IntGeneral,
678 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000679def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 "la $rD, $sym($rA)", IntGeneral,
681 [(set GPRC:$rD, (add GPRC:$rA,
682 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000683def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684 "mulli $rD, $rA, $imm", IntMulLI,
685 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000686def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 "subfic $rD, $rA, $imm", IntGeneral,
688 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000689
Bill Wendling722b4122007-12-19 06:07:48 +0000690let isReMaterializable = 1, neverHasSideEffects = 1 in {
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000691 def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
692 "li $rD, $imm", IntGeneral,
693 [(set GPRC:$rD, immSExt16:$imm)]>;
694 def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
695 "lis $rD, $imm", IntGeneral,
696 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
697}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698}
699
700let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000701def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 "andi. $dst, $src1, $src2", IntGeneral,
703 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
704 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000705def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 "andis. $dst, $src1, $src2", IntGeneral,
707 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
708 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000709def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 "ori $dst, $src1, $src2", IntGeneral,
711 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000712def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 "oris $dst, $src1, $src2", IntGeneral,
714 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000715def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716 "xori $dst, $src1, $src2", IntGeneral,
717 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000718def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 "xoris $dst, $src1, $src2", IntGeneral,
720 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000721def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000723def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000725def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 "cmplwi $dst, $src1, $src2", IntCompare>;
727}
728
729
730let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000731def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 "nand $rA, $rS, $rB", IntGeneral,
733 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000734def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 "and $rA, $rS, $rB", IntGeneral,
736 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000737def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 "andc $rA, $rS, $rB", IntGeneral,
739 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000740def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741 "or $rA, $rS, $rB", IntGeneral,
742 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000743def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 "nor $rA, $rS, $rB", IntGeneral,
745 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000746def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 "orc $rA, $rS, $rB", IntGeneral,
748 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000749def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750 "eqv $rA, $rS, $rB", IntGeneral,
751 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000752def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 "xor $rA, $rS, $rB", IntGeneral,
754 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000755def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 "slw $rA, $rS, $rB", IntGeneral,
757 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000758def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 "srw $rA, $rS, $rB", IntGeneral,
760 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000761def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 "sraw $rA, $rS, $rB", IntShift,
763 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
764}
765
766let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000767def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 "srawi $rA, $rS, $SH", IntShift,
769 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000770def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000771 "cntlzw $rA, $rS", IntGeneral,
772 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000773def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000774 "extsb $rA, $rS", IntGeneral,
775 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000776def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777 "extsh $rA, $rS", IntGeneral,
778 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
779
Evan Chengb783fa32007-07-19 01:14:50 +0000780def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000782def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783 "cmplw $crD, $rA, $rB", IntCompare>;
784}
785let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000786//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000788def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000790def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791 "fcmpu $crD, $fA, $fB", FPCompare>;
792
Evan Chengb783fa32007-07-19 01:14:50 +0000793def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794 "fctiwz $frD, $frB", FPGeneral,
795 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000796def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000797 "frsp $frD, $frB", FPGeneral,
798 [(set F4RC:$frD, (fround F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000799def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 "fsqrt $frD, $frB", FPSqrt,
801 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000802def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 "fsqrts $frD, $frB", FPSqrt,
804 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
805}
806
807/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
808///
809/// Note that these are defined as pseudo-ops on the PPC970 because they are
810/// often coalesced away and we don't want the dispatch group builder to think
811/// that they will fill slots (which could cause the load of a LSU reject to
812/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +0000813def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 "fmr $frD, $frB", FPGeneral,
815 []>, // (set F4RC:$frD, F4RC:$frB)
816 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000817def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 "fmr $frD, $frB", FPGeneral,
819 []>, // (set F8RC:$frD, F8RC:$frB)
820 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000821def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 "fmr $frD, $frB", FPGeneral,
823 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
824 PPC970_Unit_Pseudo;
825
826let PPC970_Unit = 3 in { // FPU Operations.
827// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +0000828def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 "fabs $frD, $frB", FPGeneral,
830 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000831def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 "fabs $frD, $frB", FPGeneral,
833 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000834def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835 "fnabs $frD, $frB", FPGeneral,
836 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000837def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 "fnabs $frD, $frB", FPGeneral,
839 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000840def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 "fneg $frD, $frB", FPGeneral,
842 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000843def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 "fneg $frD, $frB", FPGeneral,
845 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
846}
847
848
849// XL-Form instructions. condition register logical ops.
850//
Evan Chengb783fa32007-07-19 01:14:50 +0000851def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852 "mcrf $BF, $BFA", BrMCR>,
853 PPC970_DGroup_First, PPC970_Unit_CRU;
854
Evan Chengb783fa32007-07-19 01:14:50 +0000855def CREQV : XLForm_1<19, 289, (outs CRRC:$CRD), (ins CRRC:$CRA, CRRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000856 "creqv $CRD, $CRA, $CRB", BrCR,
857 []>;
858
Evan Chengb783fa32007-07-19 01:14:50 +0000859def SETCR : XLForm_1_ext<19, 289, (outs CRRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000860 "creqv $dst, $dst, $dst", BrCR,
861 []>;
862
863// XFX-Form instructions. Instructions that deal with SPRs.
864//
Evan Chengb783fa32007-07-19 01:14:50 +0000865def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
866 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867 PPC970_DGroup_First, PPC970_Unit_FXU;
868let Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000869def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
870 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 PPC970_DGroup_First, PPC970_Unit_FXU;
872}
873
Evan Chengb783fa32007-07-19 01:14:50 +0000874def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
875 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876 PPC970_DGroup_First, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000877def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
878 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 PPC970_DGroup_First, PPC970_Unit_FXU;
880
881// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
882// a GPR on the PPC970. As such, copies in and out have the same performance
883// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +0000884def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885 "mtspr 256, $rS", IntGeneral>,
886 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000887def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 "mfspr $rT, 256", IntGeneral>,
889 PPC970_DGroup_First, PPC970_Unit_FXU;
890
Evan Chengb783fa32007-07-19 01:14:50 +0000891def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 "mtcrf $FXM, $rS", BrMCRX>,
893 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000894def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000896def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 "mfcr $rT, $FXM", SprMFCR>,
898 PPC970_DGroup_First, PPC970_Unit_CRU;
899
Dale Johannesen3d8578b2007-10-10 01:01:31 +0000900// Instructions to manipulate FPSCR. Only long double handling uses these.
901// FPSCR is not modelled; we use the SDNode Flag to keep things in order.
902
903def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins),
904 "mffs $rT", IntMFFS,
905 [(set F8RC:$rT, (PPCmffs))]>,
906 PPC970_DGroup_Single, PPC970_Unit_FPU;
907def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
908 "mtfsb0 $FM", IntMTFSB0,
909 [(PPCmtfsb0 (i32 imm:$FM))]>,
910 PPC970_DGroup_Single, PPC970_Unit_FPU;
911def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
912 "mtfsb1 $FM", IntMTFSB0,
913 [(PPCmtfsb1 (i32 imm:$FM))]>,
914 PPC970_DGroup_Single, PPC970_Unit_FPU;
915def FADDrtz: AForm_2<63, 21,
916 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
917 "fadd $FRT, $FRA, $FRB", FPGeneral,
918 [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>,
919 PPC970_DGroup_Single, PPC970_Unit_FPU;
920// MTFSF does not actually produce an FP result. We pretend it copies
921// input reg B to the output. If we didn't do this it would look like the
922// instruction had no outputs (because we aren't modelling the FPSCR) and
923// it would be deleted.
924def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA),
925 (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB),
926 "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0,
927 [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM),
928 F8RC:$rT, F8RC:$FRB))]>,
929 PPC970_DGroup_Single, PPC970_Unit_FPU;
930
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931let PPC970_Unit = 1 in { // FXU Operations.
932
933// XO-Form instructions. Arithmetic instructions that can set overflow bit
934//
Evan Chengb783fa32007-07-19 01:14:50 +0000935def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 "add $rT, $rA, $rB", IntGeneral,
937 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000938def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 "addc $rT, $rA, $rB", IntGeneral,
940 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
941 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000942def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943 "adde $rT, $rA, $rB", IntGeneral,
944 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000945def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000946 "divw $rT, $rA, $rB", IntDivW,
947 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
948 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000949def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 "divwu $rT, $rA, $rB", IntDivW,
951 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
952 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000953def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 "mulhw $rT, $rA, $rB", IntMulHW,
955 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000956def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000957 "mulhwu $rT, $rA, $rB", IntMulHWU,
958 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000959def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 "mullw $rT, $rA, $rB", IntMulHW,
961 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000962def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 "subf $rT, $rA, $rB", IntGeneral,
964 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000965def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 "subfc $rT, $rA, $rB", IntGeneral,
967 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
968 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000969def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000970 "subfe $rT, $rA, $rB", IntGeneral,
971 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000972def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 "addme $rT, $rA", IntGeneral,
974 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000975def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 "addze $rT, $rA", IntGeneral,
977 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000978def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 "neg $rT, $rA", IntGeneral,
980 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000981def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982 "subfme $rT, $rA", IntGeneral,
983 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000984def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000985 "subfze $rT, $rA", IntGeneral,
986 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
987}
988
989// A-Form instructions. Most of the instructions executed in the FPU are of
990// this type.
991//
992let PPC970_Unit = 3 in { // FPU Operations.
993def FMADD : AForm_1<63, 29,
Evan Chengb783fa32007-07-19 01:14:50 +0000994 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
996 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
997 F8RC:$FRB))]>,
998 Requires<[FPContractions]>;
999def FMADDS : AForm_1<59, 29,
Evan Chengb783fa32007-07-19 01:14:50 +00001000 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1002 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1003 F4RC:$FRB))]>,
1004 Requires<[FPContractions]>;
1005def FMSUB : AForm_1<63, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001006 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1008 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1009 F8RC:$FRB))]>,
1010 Requires<[FPContractions]>;
1011def FMSUBS : AForm_1<59, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001012 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001013 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1014 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1015 F4RC:$FRB))]>,
1016 Requires<[FPContractions]>;
1017def FNMADD : AForm_1<63, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001018 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1020 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1021 F8RC:$FRB)))]>,
1022 Requires<[FPContractions]>;
1023def FNMADDS : AForm_1<59, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001024 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001025 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1026 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1027 F4RC:$FRB)))]>,
1028 Requires<[FPContractions]>;
1029def FNMSUB : AForm_1<63, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001030 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1032 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1033 F8RC:$FRB)))]>,
1034 Requires<[FPContractions]>;
1035def FNMSUBS : AForm_1<59, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001036 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1038 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1039 F4RC:$FRB)))]>,
1040 Requires<[FPContractions]>;
1041// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1042// having 4 of these, force the comparison to always be an 8-byte double (code
1043// should use an FMRSD if the input comparison value really wants to be a float)
1044// and 4/8 byte forms for the result and operand type..
1045def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001046 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1048 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
1049def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001050 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1052 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
1053def FADD : AForm_2<63, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001054 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055 "fadd $FRT, $FRA, $FRB", FPGeneral,
1056 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1057def FADDS : AForm_2<59, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001058 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 "fadds $FRT, $FRA, $FRB", FPGeneral,
1060 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1061def FDIV : AForm_2<63, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001062 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 "fdiv $FRT, $FRA, $FRB", FPDivD,
1064 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1065def FDIVS : AForm_2<59, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001066 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 "fdivs $FRT, $FRA, $FRB", FPDivS,
1068 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1069def FMUL : AForm_3<63, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001070 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 "fmul $FRT, $FRA, $FRB", FPFused,
1072 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1073def FMULS : AForm_3<59, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001074 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1076 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1077def FSUB : AForm_2<63, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001078 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 "fsub $FRT, $FRA, $FRB", FPGeneral,
1080 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1081def FSUBS : AForm_2<59, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001082 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1084 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1085}
1086
1087let PPC970_Unit = 1 in { // FXU Operations.
1088// M-Form instructions. rotate and mask instructions.
1089//
1090let isCommutable = 1 in {
1091// RLWIMI can be commuted if the rotate amount is zero.
1092def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001093 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1095 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1096 NoEncode<"$rSi">;
1097}
1098def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001099 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1101 []>;
1102def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001103 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1105 []>, isDOT, PPC970_DGroup_Cracked;
1106def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001107 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001108 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1109 []>;
1110}
1111
1112
1113//===----------------------------------------------------------------------===//
1114// DWARF Pseudo Instructions
1115//
1116
Evan Chengb783fa32007-07-19 01:14:50 +00001117def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 "${:comment} .loc $file, $line, $col",
1119 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1120 (i32 imm:$file))]>;
1121
1122//===----------------------------------------------------------------------===//
1123// PowerPC Instruction Patterns
1124//
1125
1126// Arbitrary immediate support. Implement in terms of LIS/ORI.
1127def : Pat<(i32 imm:$imm),
1128 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1129
1130// Implement the 'not' operation with the NOR instruction.
1131def NOT : Pat<(not GPRC:$in),
1132 (NOR GPRC:$in, GPRC:$in)>;
1133
1134// ADD an arbitrary immediate.
1135def : Pat<(add GPRC:$in, imm:$imm),
1136 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1137// OR an arbitrary immediate.
1138def : Pat<(or GPRC:$in, imm:$imm),
1139 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1140// XOR an arbitrary immediate.
1141def : Pat<(xor GPRC:$in, imm:$imm),
1142 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1143// SUBFIC
1144def : Pat<(sub immSExt16:$imm, GPRC:$in),
1145 (SUBFIC GPRC:$in, imm:$imm)>;
1146
1147// SHL/SRL
1148def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1149 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1150def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1151 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1152
1153// ROTL
1154def : Pat<(rotl GPRC:$in, GPRC:$sh),
1155 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1156def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1157 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1158
1159// RLWNM
1160def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1161 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1162
1163// Calls
1164def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1165 (BL_Macho tglobaladdr:$dst)>;
1166def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1167 (BL_Macho texternalsym:$dst)>;
1168def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1169 (BL_ELF tglobaladdr:$dst)>;
1170def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1171 (BL_ELF texternalsym:$dst)>;
1172
1173// Hi and Lo for Darwin Global Addresses.
1174def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1175def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1176def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1177def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1178def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1179def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1180def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1181 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1182def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1183 (ADDIS GPRC:$in, tconstpool:$g)>;
1184def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1185 (ADDIS GPRC:$in, tjumptable:$g)>;
1186
1187// Fused negative multiply subtract, alternate pattern
1188def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1189 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1190 Requires<[FPContractions]>;
1191def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1192 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1193 Requires<[FPContractions]>;
1194
1195// Standard shifts. These are represented separately from the real shifts above
1196// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1197// amounts.
1198def : Pat<(sra GPRC:$rS, GPRC:$rB),
1199 (SRAW GPRC:$rS, GPRC:$rB)>;
1200def : Pat<(srl GPRC:$rS, GPRC:$rB),
1201 (SRW GPRC:$rS, GPRC:$rB)>;
1202def : Pat<(shl GPRC:$rS, GPRC:$rB),
1203 (SLW GPRC:$rS, GPRC:$rB)>;
1204
1205def : Pat<(zextloadi1 iaddr:$src),
1206 (LBZ iaddr:$src)>;
1207def : Pat<(zextloadi1 xaddr:$src),
1208 (LBZX xaddr:$src)>;
1209def : Pat<(extloadi1 iaddr:$src),
1210 (LBZ iaddr:$src)>;
1211def : Pat<(extloadi1 xaddr:$src),
1212 (LBZX xaddr:$src)>;
1213def : Pat<(extloadi8 iaddr:$src),
1214 (LBZ iaddr:$src)>;
1215def : Pat<(extloadi8 xaddr:$src),
1216 (LBZX xaddr:$src)>;
1217def : Pat<(extloadi16 iaddr:$src),
1218 (LHZ iaddr:$src)>;
1219def : Pat<(extloadi16 xaddr:$src),
1220 (LHZX xaddr:$src)>;
1221def : Pat<(extloadf32 iaddr:$src),
1222 (FMRSD (LFS iaddr:$src))>;
1223def : Pat<(extloadf32 xaddr:$src),
1224 (FMRSD (LFSX xaddr:$src))>;
1225
1226include "PPCInstrAltivec.td"
1227include "PPCInstr64Bit.td"