blob: 8fe151ad229aae8bad57355d0fdf320fe5244492 [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]>;
Bill Wendling7173da52007-11-13 09:19:02 +000023def SDT_PPCCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
24def SDT_PPCCallSeqEnd : SDCallSeqEnd<[ SDTCisVT<0, i32>,
25 SDTCisVT<1, i32> ]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026def SDT_PPCvperm : SDTypeProfile<1, 3, [
27 SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>
28]>;
29
30def SDT_PPCvcmp : SDTypeProfile<1, 3, [
31 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>
32]>;
33
34def SDT_PPCcondbr : SDTypeProfile<0, 3, [
35 SDTCisVT<0, i32>, SDTCisVT<2, OtherVT>
36]>;
37
Dan Gohman4e3bb1b2009-09-25 20:36:54 +000038def SDT_PPClbrx : SDTypeProfile<1, 2, [
39 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040]>;
Dan Gohman4e3bb1b2009-09-25 20:36:54 +000041def SDT_PPCstbrx : SDTypeProfile<0, 3, [
42 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043]>;
44
Evan Chengaf964df2008-07-12 02:23:19 +000045def SDT_PPClarx : SDTypeProfile<1, 1, [
46 SDTCisInt<0>, SDTCisPtrTy<1>
Evan Cheng4df1f9d2008-04-19 01:30:48 +000047]>;
Evan Chengaf964df2008-07-12 02:23:19 +000048def SDT_PPCstcx : SDTypeProfile<0, 2, [
49 SDTCisInt<0>, SDTCisPtrTy<1>
Evan Cheng4df1f9d2008-04-19 01:30:48 +000050]>;
51
Arnold Schwaighofera0032722008-04-30 09:16:33 +000052def SDT_PPCTC_ret : SDTypeProfile<0, 2, [
53 SDTCisPtrTy<0>, SDTCisVT<1, i32>
54]>;
55
Tilmann Scheller72cf2812009-08-15 11:54:46 +000056def SDT_PPCnop : SDTypeProfile<0, 0, []>;
57
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058//===----------------------------------------------------------------------===//
59// PowerPC specific DAG Nodes.
60//
61
62def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>;
63def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
64def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
Chris Lattneref8d6082008-01-06 06:44:58 +000065def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx,
66 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
Dale Johannesen3d8578b2007-10-10 01:01:31 +000068// This sequence is used for long double->int conversions. It changes the
69// bits in the FPSCR which is not modelled.
70def PPCmffs : SDNode<"PPCISD::MFFS", SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>,
71 [SDNPOutFlag]>;
72def PPCmtfsb0 : SDNode<"PPCISD::MTFSB0", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
73 [SDNPInFlag, SDNPOutFlag]>;
74def PPCmtfsb1 : SDNode<"PPCISD::MTFSB1", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
75 [SDNPInFlag, SDNPOutFlag]>;
76def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp,
77 [SDNPInFlag, SDNPOutFlag]>;
78def PPCmtfsf : SDNode<"PPCISD::MTFSF", SDTypeProfile<1, 3,
79 [SDTCisVT<0, f64>, SDTCisInt<1>, SDTCisVT<2, f64>,
80 SDTCisVT<3, f64>]>,
81 [SDNPInFlag]>;
82
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083def PPCfsel : SDNode<"PPCISD::FSEL",
84 // Type constraint for fsel.
85 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
86 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
87
88def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
89def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000090def PPCtoc_entry: SDNode<"PPCISD::TOC_ENTRY", SDTIntBinOp, [SDNPMayLoad]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
92def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
93
94def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
95
96// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
97// amounts. These nodes are generated by the multi-precision shift code.
Chris Lattnerdfebab92008-03-07 20:18:24 +000098def PPCsrl : SDNode<"PPCISD::SRL" , SDTIntShiftOp>;
99def PPCsra : SDNode<"PPCISD::SRA" , SDTIntShiftOp>;
100def PPCshl : SDNode<"PPCISD::SHL" , SDTIntShiftOp>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101
102def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000103def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore,
104 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105
106// These are target-independent nodes, but have target-specific formats.
Bill Wendling7173da52007-11-13 09:19:02 +0000107def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +0000109def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd,
Bill Wendling22f8deb2007-11-13 00:44:25 +0000110 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111
112def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
Tilmann Scheller386330d2009-07-03 06:47:08 +0000113def PPCcall_Darwin : SDNode<"PPCISD::CALL_Darwin", SDT_PPCCall,
114 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
115def PPCcall_SVR4 : SDNode<"PPCISD::CALL_SVR4", SDT_PPCCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000117def PPCnop : SDNode<"PPCISD::NOP", SDT_PPCnop, [SDNPInFlag, SDNPOutFlag]>;
Tilmann Schellerfc3e8eb2009-12-18 13:00:15 +0000118def PPCload : SDNode<"PPCISD::LOAD", SDTypeProfile<1, 1, []>,
119 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
120def PPCload_toc : SDNode<"PPCISD::LOAD_TOC", SDTypeProfile<0, 1, []>,
121 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
122def PPCtoc_restore : SDNode<"PPCISD::TOC_RESTORE", SDTypeProfile<0, 0, []>,
123 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
125 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Tilmann Scheller386330d2009-07-03 06:47:08 +0000126def PPCbctrl_Darwin : SDNode<"PPCISD::BCTRL_Darwin", SDTNone,
127 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128
Tilmann Scheller386330d2009-07-03 06:47:08 +0000129def PPCbctrl_SVR4 : SDNode<"PPCISD::BCTRL_SVR4", SDTNone,
130 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131
Chris Lattner3d254552008-01-15 22:02:54 +0000132def retflag : SDNode<"PPCISD::RET_FLAG", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000133 [SDNPHasChain, SDNPOptInFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000135def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret,
136 [SDNPHasChain, SDNPOptInFlag]>;
137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
139def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>;
140
141def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
142 [SDNPHasChain, SDNPOptInFlag]>;
143
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000144def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
145 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000146def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
147 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148
Evan Chengaf964df2008-07-12 02:23:19 +0000149// Instructions to support atomic operations
Evan Cheng0589b512008-04-19 02:30:38 +0000150def PPClarx : SDNode<"PPCISD::LARX", SDT_PPClarx,
151 [SDNPHasChain, SDNPMayLoad]>;
152def PPCstcx : SDNode<"PPCISD::STCX", SDT_PPCstcx,
153 [SDNPHasChain, SDNPMayStore]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000154
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155// Instructions to support dynamic alloca.
156def SDTDynOp : SDTypeProfile<1, 2, []>;
157def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
158
159//===----------------------------------------------------------------------===//
160// PowerPC specific transformation functions and pattern fragments.
161//
162
163def SHL32 : SDNodeXForm<imm, [{
164 // Transformation function: 31 - imm
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000165 return getI32Imm(31 - N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166}]>;
167
168def SRL32 : SDNodeXForm<imm, [{
169 // Transformation function: 32 - imm
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000170 return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue()) : getI32Imm(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171}]>;
172
173def LO16 : SDNodeXForm<imm, [{
174 // Transformation function: get the low 16 bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000175 return getI32Imm((unsigned short)N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176}]>;
177
178def HI16 : SDNodeXForm<imm, [{
179 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000180 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181}]>;
182
183def HA16 : SDNodeXForm<imm, [{
184 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000185 signed int Val = N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 return getI32Imm((Val - (signed short)Val) >> 16);
187}]>;
188def MB : SDNodeXForm<imm, [{
189 // Transformation function: get the start bit of a mask
Duncan Sandsfaccd252008-10-16 13:02:33 +0000190 unsigned mb = 0, me;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000191 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 return getI32Imm(mb);
193}]>;
194
195def ME : SDNodeXForm<imm, [{
196 // Transformation function: get the end bit of a mask
Duncan Sandsfaccd252008-10-16 13:02:33 +0000197 unsigned mb, me = 0;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000198 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 return getI32Imm(me);
200}]>;
201def maskimm32 : PatLeaf<(imm), [{
202 // maskImm predicate - True if immediate is a run of ones.
203 unsigned mb, me;
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000204 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000205 return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 else
207 return false;
208}]>;
209
210def immSExt16 : PatLeaf<(imm), [{
211 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
212 // field. Used by instructions like 'addi'.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000213 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000214 return (int32_t)N->getZExtValue() == (short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 else
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000216 return (int64_t)N->getZExtValue() == (short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217}]>;
218def immZExt16 : PatLeaf<(imm), [{
219 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
220 // field. Used by instructions like 'ori'.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000221 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222}], LO16>;
223
224// imm16Shifted* - These match immediates where the low 16-bits are zero. There
225// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
226// identical in 32-bit mode, but in 64-bit mode, they return true if the
227// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
228// clear).
229def imm16ShiftedZExt : PatLeaf<(imm), [{
230 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
231 // immediate are set. Used by instructions like 'xoris'.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000232 return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233}], HI16>;
234
235def imm16ShiftedSExt : PatLeaf<(imm), [{
236 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
237 // immediate are set. Used by instructions like 'addis'. Identical to
238 // imm16ShiftedZExt in 32-bit mode.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000239 if (N->getZExtValue() & 0xFFFF) return false;
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000240 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 return true;
242 // For 64-bit, make sure it is sext right.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000243 return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244}], HI16>;
245
246
247//===----------------------------------------------------------------------===//
248// PowerPC Flag Definitions.
249
250class isPPC64 { bit PPC64 = 1; }
251class isDOT {
252 list<Register> Defs = [CR0];
253 bit RC = 1;
254}
255
256class RegConstraint<string C> {
257 string Constraints = C;
258}
259class NoEncode<string E> {
260 string DisableEncoding = E;
261}
262
263
264//===----------------------------------------------------------------------===//
265// PowerPC Operand Definitions.
266
267def s5imm : Operand<i32> {
268 let PrintMethod = "printS5ImmOperand";
269}
270def u5imm : Operand<i32> {
271 let PrintMethod = "printU5ImmOperand";
272}
273def u6imm : Operand<i32> {
274 let PrintMethod = "printU6ImmOperand";
275}
276def s16imm : Operand<i32> {
277 let PrintMethod = "printS16ImmOperand";
278}
279def u16imm : Operand<i32> {
280 let PrintMethod = "printU16ImmOperand";
281}
282def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing.
283 let PrintMethod = "printS16X4ImmOperand";
284}
285def target : Operand<OtherVT> {
286 let PrintMethod = "printBranchOperand";
287}
288def calltarget : Operand<iPTR> {
289 let PrintMethod = "printCallOperand";
290}
291def aaddr : Operand<iPTR> {
292 let PrintMethod = "printAbsAddrOperand";
293}
294def piclabel: Operand<iPTR> {
295 let PrintMethod = "printPICLabel";
296}
297def symbolHi: Operand<i32> {
298 let PrintMethod = "printSymbolHi";
299}
300def symbolLo: Operand<i32> {
301 let PrintMethod = "printSymbolLo";
302}
303def crbitm: Operand<i8> {
304 let PrintMethod = "printcrbitm";
305}
306// Address operands
307def memri : Operand<iPTR> {
308 let PrintMethod = "printMemRegImm";
309 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
310}
311def memrr : Operand<iPTR> {
312 let PrintMethod = "printMemRegReg";
313 let MIOperandInfo = (ops ptr_rc, ptr_rc);
314}
315def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
316 let PrintMethod = "printMemRegImmShifted";
317 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
318}
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000319def tocentry : Operand<iPTR> {
320 let PrintMethod = "printTOCEntryLabel";
321 let MIOperandInfo = (ops i32imm:$imm);
322}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323
324// PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg
325// that doesn't matter.
326def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
Nate Begeman78297d82008-02-13 02:58:33 +0000327 (ops (i32 20), (i32 zero_reg))> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 let PrintMethod = "printPredicateOperand";
329}
330
331// Define PowerPC specific addressing mode.
332def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
333def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
334def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
335def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
336
337/// This is just the offset part of iaddr, used for preinc.
338def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
339
340//===----------------------------------------------------------------------===//
341// PowerPC Instruction Predicate Definitions.
342def FPContractions : Predicate<"!NoExcessFPPrecision">;
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000343def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
344def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345
346
347//===----------------------------------------------------------------------===//
348// PowerPC Instruction Definitions.
349
350// Pseudo-instructions:
351
352let hasCtrlDep = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000353let Defs = [R1], Uses = [R1] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000354def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 "${:comment} ADJCALLSTACKDOWN",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000356 [(callseq_start timm:$amt)]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +0000357def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 "${:comment} ADJCALLSTACKUP",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000359 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000360}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361
Evan Chengb783fa32007-07-19 01:14:50 +0000362def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 "UPDATE_VRSAVE $rD, $rS", []>;
364}
365
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000366let Defs = [R1], Uses = [R1] in
Evan Chengb783fa32007-07-19 01:14:50 +0000367def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 "${:comment} DYNALLOC $result, $negsize, $fpsi",
369 [(set GPRC:$result,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000370 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
Dan Gohman30afe012009-10-29 18:10:34 +0000372// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
373// instruction selection into a branch sequence.
374let usesCustomInserter = 1, // Expanded after instruction selection.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000376 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
378 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000379 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
381 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000382 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
384 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000385 def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
387 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000388 def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
390 []>;
391}
392
Bill Wendlinga1877c52008-03-03 22:19:16 +0000393// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
394// scavenge a register for it.
395def SPILL_CR : Pseudo<(outs), (ins GPRC:$cond, memri:$F),
396 "${:comment} SPILL_CR $cond $F", []>;
397
Evan Cheng37e7c752007-07-21 00:34:19 +0000398let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dale Johannesenb73cd822008-10-29 18:26:45 +0000399 let isReturn = 1, Uses = [LR, RM] in
Evan Chengb783fa32007-07-19 01:14:50 +0000400 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 "b${p:cc}lr ${p:reg}", BrB,
402 [(retflag)]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000403 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in
Owen Andersonf8053082007-11-12 07:39:39 +0000404 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405}
406
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000408 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409 PPC970_Unit_BRU;
410
Evan Cheng37e7c752007-07-21 00:34:19 +0000411let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000413 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 "b $dst", BrB,
415 [(br bb:$dst)]>;
416 }
417
418 // BCC represents an arbitrary conditional branch on a predicate.
419 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
420 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000421 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 "b${cond:cc} ${cond:reg}, $dst"
423 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
424}
425
Tilmann Scheller386330d2009-07-03 06:47:08 +0000426// Darwin ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000427let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 // All calls clobber the non-callee saved registers...
429 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
430 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
431 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
432 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000433 CR0,CR1,CR5,CR6,CR7,
434 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
Dale Johannesen899369d2009-09-18 20:15:22 +0000435 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN,CARRY] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 // Convenient aliases for call instructions
Dale Johannesenb73cd822008-10-29 18:26:45 +0000437 let Uses = [RM] in {
Tilmann Scheller386330d2009-07-03 06:47:08 +0000438 def BL_Darwin : IForm<18, 0, 1,
439 (outs), (ins calltarget:$func, variable_ops),
440 "bl $func", BrB, []>; // See Pat patterns below.
441 def BLA_Darwin : IForm<18, 1, 1,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000442 (outs), (ins aaddr:$func, variable_ops),
Tilmann Scheller386330d2009-07-03 06:47:08 +0000443 "bla $func", BrB, [(PPCcall_Darwin (i32 imm:$func))]>;
Dale Johannesenb73cd822008-10-29 18:26:45 +0000444 }
445 let Uses = [CTR, RM] in {
Tilmann Scheller386330d2009-07-03 06:47:08 +0000446 def BCTRL_Darwin : XLForm_2_ext<19, 528, 20, 0, 1,
447 (outs), (ins variable_ops),
448 "bctrl", BrB,
449 [(PPCbctrl_Darwin)]>, Requires<[In32BitMode]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000450 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451}
452
Tilmann Scheller386330d2009-07-03 06:47:08 +0000453// SVR4 ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000454let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 // All calls clobber the non-callee saved registers...
Tilmann Scheller1dd42ff2009-07-03 06:45:56 +0000456 Defs = [R0,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
457 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
459 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000460 CR0,CR1,CR5,CR6,CR7,
461 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
Dale Johannesen899369d2009-09-18 20:15:22 +0000462 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN,CARRY] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 // Convenient aliases for call instructions
Dale Johannesenb73cd822008-10-29 18:26:45 +0000464 let Uses = [RM] in {
Tilmann Scheller386330d2009-07-03 06:47:08 +0000465 def BL_SVR4 : IForm<18, 0, 1,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000466 (outs), (ins calltarget:$func, variable_ops),
467 "bl $func", BrB, []>; // See Pat patterns below.
Tilmann Scheller386330d2009-07-03 06:47:08 +0000468 def BLA_SVR4 : IForm<18, 1, 1,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000469 (outs), (ins aaddr:$func, variable_ops),
470 "bla $func", BrB,
Tilmann Scheller386330d2009-07-03 06:47:08 +0000471 [(PPCcall_SVR4 (i32 imm:$func))]>;
Dale Johannesenb73cd822008-10-29 18:26:45 +0000472 }
473 let Uses = [CTR, RM] in {
Tilmann Scheller386330d2009-07-03 06:47:08 +0000474 def BCTRL_SVR4 : XLForm_2_ext<19, 528, 20, 0, 1,
475 (outs), (ins variable_ops),
476 "bctrl", BrB,
477 [(PPCbctrl_SVR4)]>, Requires<[In32BitMode]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000478 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479}
480
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000481
Dale Johannesenb73cd822008-10-29 18:26:45 +0000482let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000483def TCRETURNdi :Pseudo< (outs),
484 (ins calltarget:$dst, i32imm:$offset, variable_ops),
485 "#TC_RETURNd $dst $offset",
486 []>;
487
488
Dale Johannesenb73cd822008-10-29 18:26:45 +0000489let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000490def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset, variable_ops),
491 "#TC_RETURNa $func $offset",
492 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
493
Dale Johannesenb73cd822008-10-29 18:26:45 +0000494let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000495def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset, variable_ops),
496 "#TC_RETURNr $dst $offset",
497 []>;
498
499
500let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000501 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000502def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
503 Requires<[In32BitMode]>;
504
505
506
507let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000508 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000509def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
510 "b $dst", BrB,
511 []>;
512
513
514let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb73cd822008-10-29 18:26:45 +0000515 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000516def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
517 "ba $dst", BrB,
518 []>;
519
520
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000522def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
524 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000525def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
527 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000528def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
530 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000531def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
533 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000534def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
536 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000537def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
539 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000540def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000541 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
542 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000543def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
545 PPC970_DGroup_Single;
546
Evan Chengaf964df2008-07-12 02:23:19 +0000547// Atomic operations
Dan Gohman30afe012009-10-29 18:10:34 +0000548let usesCustomInserter = 1 in {
Evan Chengaf964df2008-07-12 02:23:19 +0000549 let Uses = [CR0] in {
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000550 def ATOMIC_LOAD_ADD_I8 : Pseudo<
551 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
552 "${:comment} ATOMIC_LOAD_ADD_I8 PSEUDO!",
553 [(set GPRC:$dst, (atomic_load_add_8 xoaddr:$ptr, GPRC:$incr))]>;
554 def ATOMIC_LOAD_SUB_I8 : Pseudo<
555 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
556 "${:comment} ATOMIC_LOAD_SUB_I8 PSEUDO!",
557 [(set GPRC:$dst, (atomic_load_sub_8 xoaddr:$ptr, GPRC:$incr))]>;
558 def ATOMIC_LOAD_AND_I8 : Pseudo<
559 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
560 "${:comment} ATOMIC_LOAD_AND_I8 PSEUDO!",
561 [(set GPRC:$dst, (atomic_load_and_8 xoaddr:$ptr, GPRC:$incr))]>;
562 def ATOMIC_LOAD_OR_I8 : Pseudo<
563 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
564 "${:comment} ATOMIC_LOAD_OR_I8 PSEUDO!",
565 [(set GPRC:$dst, (atomic_load_or_8 xoaddr:$ptr, GPRC:$incr))]>;
566 def ATOMIC_LOAD_XOR_I8 : Pseudo<
567 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
568 "${:comment} ATOMIC_LOAD_XOR_I8 PSEUDO!",
569 [(set GPRC:$dst, (atomic_load_xor_8 xoaddr:$ptr, GPRC:$incr))]>;
570 def ATOMIC_LOAD_NAND_I8 : Pseudo<
571 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
572 "${:comment} ATOMIC_LOAD_NAND_I8 PSEUDO!",
573 [(set GPRC:$dst, (atomic_load_nand_8 xoaddr:$ptr, GPRC:$incr))]>;
574 def ATOMIC_LOAD_ADD_I16 : Pseudo<
575 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
576 "${:comment} ATOMIC_LOAD_ADD_I16 PSEUDO!",
577 [(set GPRC:$dst, (atomic_load_add_16 xoaddr:$ptr, GPRC:$incr))]>;
578 def ATOMIC_LOAD_SUB_I16 : Pseudo<
579 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
580 "${:comment} ATOMIC_LOAD_SUB_I16 PSEUDO!",
581 [(set GPRC:$dst, (atomic_load_sub_16 xoaddr:$ptr, GPRC:$incr))]>;
582 def ATOMIC_LOAD_AND_I16 : Pseudo<
583 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
584 "${:comment} ATOMIC_LOAD_AND_I16 PSEUDO!",
585 [(set GPRC:$dst, (atomic_load_and_16 xoaddr:$ptr, GPRC:$incr))]>;
586 def ATOMIC_LOAD_OR_I16 : Pseudo<
587 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
588 "${:comment} ATOMIC_LOAD_OR_I16 PSEUDO!",
589 [(set GPRC:$dst, (atomic_load_or_16 xoaddr:$ptr, GPRC:$incr))]>;
590 def ATOMIC_LOAD_XOR_I16 : Pseudo<
591 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
592 "${:comment} ATOMIC_LOAD_XOR_I16 PSEUDO!",
593 [(set GPRC:$dst, (atomic_load_xor_16 xoaddr:$ptr, GPRC:$incr))]>;
594 def ATOMIC_LOAD_NAND_I16 : Pseudo<
595 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
596 "${:comment} ATOMIC_LOAD_NAND_I16 PSEUDO!",
597 [(set GPRC:$dst, (atomic_load_nand_16 xoaddr:$ptr, GPRC:$incr))]>;
Evan Chengaf964df2008-07-12 02:23:19 +0000598 def ATOMIC_LOAD_ADD_I32 : Pseudo<
599 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
600 "${:comment} ATOMIC_LOAD_ADD_I32 PSEUDO!",
Dale Johannesencdc7c752008-08-25 21:09:52 +0000601 [(set GPRC:$dst, (atomic_load_add_32 xoaddr:$ptr, GPRC:$incr))]>;
Dale Johannesene91a2d62008-08-25 22:34:37 +0000602 def ATOMIC_LOAD_SUB_I32 : Pseudo<
603 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
604 "${:comment} ATOMIC_LOAD_SUB_I32 PSEUDO!",
605 [(set GPRC:$dst, (atomic_load_sub_32 xoaddr:$ptr, GPRC:$incr))]>;
606 def ATOMIC_LOAD_AND_I32 : Pseudo<
607 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
608 "${:comment} ATOMIC_LOAD_AND_I32 PSEUDO!",
609 [(set GPRC:$dst, (atomic_load_and_32 xoaddr:$ptr, GPRC:$incr))]>;
610 def ATOMIC_LOAD_OR_I32 : Pseudo<
611 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
612 "${:comment} ATOMIC_LOAD_OR_I32 PSEUDO!",
613 [(set GPRC:$dst, (atomic_load_or_32 xoaddr:$ptr, GPRC:$incr))]>;
614 def ATOMIC_LOAD_XOR_I32 : Pseudo<
615 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
616 "${:comment} ATOMIC_LOAD_XOR_I32 PSEUDO!",
617 [(set GPRC:$dst, (atomic_load_xor_32 xoaddr:$ptr, GPRC:$incr))]>;
618 def ATOMIC_LOAD_NAND_I32 : Pseudo<
619 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
620 "${:comment} ATOMIC_LOAD_NAND_I32 PSEUDO!",
621 [(set GPRC:$dst, (atomic_load_nand_32 xoaddr:$ptr, GPRC:$incr))]>;
622
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000623 def ATOMIC_CMP_SWAP_I8 : Pseudo<
624 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
625 "${:comment} ATOMIC_CMP_SWAP_I8 PSEUDO!",
626 [(set GPRC:$dst,
627 (atomic_cmp_swap_8 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
628 def ATOMIC_CMP_SWAP_I16 : Pseudo<
629 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
630 "${:comment} ATOMIC_CMP_SWAP_I16 PSEUDO!",
631 [(set GPRC:$dst,
632 (atomic_cmp_swap_16 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
Dale Johannesene6f1e442008-08-22 03:49:10 +0000633 def ATOMIC_CMP_SWAP_I32 : Pseudo<
634 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
635 "${:comment} ATOMIC_CMP_SWAP_I32 PSEUDO!",
636 [(set GPRC:$dst,
Dale Johannesencdc7c752008-08-25 21:09:52 +0000637 (atomic_cmp_swap_32 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
Dale Johannesene91a2d62008-08-25 22:34:37 +0000638
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000639 def ATOMIC_SWAP_I8 : Pseudo<
640 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
641 "${:comment} ATOMIC_SWAP_I8 PSEUDO!",
642 [(set GPRC:$dst, (atomic_swap_8 xoaddr:$ptr, GPRC:$new))]>;
643 def ATOMIC_SWAP_I16 : Pseudo<
644 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
645 "${:comment} ATOMIC_SWAP_I16 PSEUDO!",
646 [(set GPRC:$dst, (atomic_swap_16 xoaddr:$ptr, GPRC:$new))]>;
Dale Johannesencdc7c752008-08-25 21:09:52 +0000647 def ATOMIC_SWAP_I32 : Pseudo<
648 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
649 "${:comment} ATOMIC_SWAP_I32 PSEUDO!",
650 [(set GPRC:$dst, (atomic_swap_32 xoaddr:$ptr, GPRC:$new))]>;
Dale Johannesene6f1e442008-08-22 03:49:10 +0000651 }
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000652}
653
Evan Chengaf964df2008-07-12 02:23:19 +0000654// Instructions to support atomic operations
655def LWARX : XForm_1<31, 20, (outs GPRC:$rD), (ins memrr:$src),
656 "lwarx $rD, $src", LdStLWARX,
657 [(set GPRC:$rD, (PPClarx xoaddr:$src))]>;
658
659let Defs = [CR0] in
660def STWCX : XForm_1<31, 150, (outs), (ins GPRC:$rS, memrr:$dst),
661 "stwcx. $rS, $dst", LdStSTWCX,
662 [(PPCstcx GPRC:$rS, xoaddr:$dst)]>,
663 isDOT;
664
Nate Begemanf46776e2008-08-11 17:36:31 +0000665let isBarrier = 1, hasCtrlDep = 1 in
666def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStGeneral, [(trap)]>;
667
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668//===----------------------------------------------------------------------===//
669// PPC32 Load Instructions.
670//
671
672// Unindexed (r+i) Loads.
Dan Gohman5574cc72008-12-03 18:15:48 +0000673let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000674def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675 "lbz $rD, $src", LdStGeneral,
676 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000677def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 "lha $rD, $src", LdStLHA,
679 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
680 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000681def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 "lhz $rD, $src", LdStGeneral,
683 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000684def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 "lwz $rD, $src", LdStGeneral,
686 [(set GPRC:$rD, (load iaddr:$src))]>;
687
Evan Chengb783fa32007-07-19 01:14:50 +0000688def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 "lfs $rD, $src", LdStLFDU,
690 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000691def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 "lfd $rD, $src", LdStLFD,
693 [(set F8RC:$rD, (load iaddr:$src))]>;
694
695
696// Unindexed (r+i) Loads with Update (preinc).
Dan Gohmanbc1714f2008-12-03 02:30:17 +0000697let mayLoad = 1 in {
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000698def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699 "lbzu $rD, $addr", LdStGeneral,
700 []>, RegConstraint<"$addr.reg = $ea_result">,
701 NoEncode<"$ea_result">;
702
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000703def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 "lhau $rD, $addr", LdStGeneral,
705 []>, RegConstraint<"$addr.reg = $ea_result">,
706 NoEncode<"$ea_result">;
707
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000708def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709 "lhzu $rD, $addr", LdStGeneral,
710 []>, RegConstraint<"$addr.reg = $ea_result">,
711 NoEncode<"$ea_result">;
712
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000713def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 "lwzu $rD, $addr", LdStGeneral,
715 []>, RegConstraint<"$addr.reg = $ea_result">,
716 NoEncode<"$ea_result">;
717
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000718def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 "lfs $rD, $addr", LdStLFDU,
720 []>, RegConstraint<"$addr.reg = $ea_result">,
721 NoEncode<"$ea_result">;
722
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000723def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 "lfd $rD, $addr", LdStLFD,
725 []>, RegConstraint<"$addr.reg = $ea_result">,
726 NoEncode<"$ea_result">;
727}
Dan Gohmanbc1714f2008-12-03 02:30:17 +0000728}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729
730// Indexed (r+r) Loads.
731//
Dan Gohman5574cc72008-12-03 18:15:48 +0000732let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000733def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 "lbzx $rD, $src", LdStGeneral,
735 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000736def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737 "lhax $rD, $src", LdStLHA,
738 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
739 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000740def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741 "lhzx $rD, $src", LdStGeneral,
742 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000743def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 "lwzx $rD, $src", LdStGeneral,
745 [(set GPRC:$rD, (load xaddr:$src))]>;
746
747
Evan Chengb783fa32007-07-19 01:14:50 +0000748def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 "lhbrx $rD, $src", LdStGeneral,
Dan Gohman4e3bb1b2009-09-25 20:36:54 +0000750 [(set GPRC:$rD, (PPClbrx xoaddr:$src, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000751def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 "lwbrx $rD, $src", LdStGeneral,
Dan Gohman4e3bb1b2009-09-25 20:36:54 +0000753 [(set GPRC:$rD, (PPClbrx xoaddr:$src, i32))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754
Evan Chengb783fa32007-07-19 01:14:50 +0000755def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 "lfsx $frD, $src", LdStLFDU,
757 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000758def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 "lfdx $frD, $src", LdStLFDU,
760 [(set F8RC:$frD, (load xaddr:$src))]>;
761}
762
763//===----------------------------------------------------------------------===//
764// PPC32 Store Instructions.
765//
766
767// Unindexed (r+i) Stores.
Chris Lattner8f34d942008-01-06 05:53:26 +0000768let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000769def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 "stb $rS, $src", LdStGeneral,
771 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000772def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 "sth $rS, $src", LdStGeneral,
774 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000775def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 "stw $rS, $src", LdStGeneral,
777 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000778def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779 "stfs $rS, $dst", LdStUX,
780 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000781def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782 "stfd $rS, $dst", LdStUX,
783 [(store F8RC:$rS, iaddr:$dst)]>;
784}
785
786// Unindexed (r+i) Stores with Update (preinc).
Chris Lattner8f34d942008-01-06 05:53:26 +0000787let PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000788def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 symbolLo:$ptroff, ptr_rc:$ptrreg),
790 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
791 [(set ptr_rc:$ea_res,
792 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
793 iaddroff:$ptroff))]>,
794 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000795def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 symbolLo:$ptroff, ptr_rc:$ptrreg),
797 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
798 [(set ptr_rc:$ea_res,
799 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
800 iaddroff:$ptroff))]>,
801 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000802def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 symbolLo:$ptroff, ptr_rc:$ptrreg),
804 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
805 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
806 iaddroff:$ptroff))]>,
807 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000808def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 symbolLo:$ptroff, ptr_rc:$ptrreg),
810 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
811 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
812 iaddroff:$ptroff))]>,
813 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000814def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 symbolLo:$ptroff, ptr_rc:$ptrreg),
816 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
817 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
818 iaddroff:$ptroff))]>,
819 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
820}
821
822
823// Indexed (r+r) Stores.
824//
Chris Lattner8f34d942008-01-06 05:53:26 +0000825let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000826def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 "stbx $rS, $dst", LdStGeneral,
828 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
829 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000830def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000831 "sthx $rS, $dst", LdStGeneral,
832 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
833 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000834def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835 "stwx $rS, $dst", LdStGeneral,
836 [(store GPRC:$rS, xaddr:$dst)]>,
837 PPC970_DGroup_Cracked;
Chris Lattner8f34d942008-01-06 05:53:26 +0000838
Chris Lattner6887b142008-01-06 08:36:04 +0000839let mayStore = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000840def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 "stwux $rS, $rA, $rB", LdStGeneral,
842 []>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000843}
Evan Chengb783fa32007-07-19 01:14:50 +0000844def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 "sthbrx $rS, $dst", LdStGeneral,
Dan Gohman4e3bb1b2009-09-25 20:36:54 +0000846 [(PPCstbrx GPRC:$rS, xoaddr:$dst, i16)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000848def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 "stwbrx $rS, $dst", LdStGeneral,
Dan Gohman4e3bb1b2009-09-25 20:36:54 +0000850 [(PPCstbrx GPRC:$rS, xoaddr:$dst, i32)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 PPC970_DGroup_Cracked;
852
Evan Chengb783fa32007-07-19 01:14:50 +0000853def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 "stfiwx $frS, $dst", LdStUX,
855 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000856
Evan Chengb783fa32007-07-19 01:14:50 +0000857def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000858 "stfsx $frS, $dst", LdStUX,
859 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000860def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861 "stfdx $frS, $dst", LdStUX,
862 [(store F8RC:$frS, xaddr:$dst)]>;
863}
864
Dale Johannesen8d4de232008-08-22 17:20:54 +0000865let isBarrier = 1 in
866def SYNC : XForm_24_sync<31, 598, (outs), (ins),
867 "sync", LdStSync,
868 [(int_ppc_sync)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869
870//===----------------------------------------------------------------------===//
871// PPC32 Arithmetic Instructions.
872//
873
874let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000875def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876 "addi $rD, $rA, $imm", IntGeneral,
877 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000878let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000879def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 "addic $rD, $rA, $imm", IntGeneral,
881 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
882 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000883def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 "addic. $rD, $rA, $imm", IntGeneral,
885 []>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000886}
Evan Chengb783fa32007-07-19 01:14:50 +0000887def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 "addis $rD, $rA, $imm", IntGeneral,
889 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000890def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 "la $rD, $sym($rA)", IntGeneral,
892 [(set GPRC:$rD, (add GPRC:$rA,
893 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000894def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 "mulli $rD, $rA, $imm", IntMulLI,
896 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000897let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000898def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 "subfic $rD, $rA, $imm", IntGeneral,
900 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000901}
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000902
Chris Lattner17dab4a2008-01-10 05:45:39 +0000903let isReMaterializable = 1 in {
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000904 def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
905 "li $rD, $imm", IntGeneral,
906 [(set GPRC:$rD, immSExt16:$imm)]>;
907 def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
908 "lis $rD, $imm", IntGeneral,
909 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
910}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911}
912
913let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000914def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 "andi. $dst, $src1, $src2", IntGeneral,
916 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
917 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000918def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919 "andis. $dst, $src1, $src2", IntGeneral,
920 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
921 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000922def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 "ori $dst, $src1, $src2", IntGeneral,
924 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000925def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000926 "oris $dst, $src1, $src2", IntGeneral,
927 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000928def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 "xori $dst, $src1, $src2", IntGeneral,
930 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000931def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932 "xoris $dst, $src1, $src2", IntGeneral,
933 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000934def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000936def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000937 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000938def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 "cmplwi $dst, $src1, $src2", IntCompare>;
940}
941
942
943let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000944def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 "nand $rA, $rS, $rB", IntGeneral,
946 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000947def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000948 "and $rA, $rS, $rB", IntGeneral,
949 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000950def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 "andc $rA, $rS, $rB", IntGeneral,
952 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000953def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 "or $rA, $rS, $rB", IntGeneral,
955 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000956def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000957 "nor $rA, $rS, $rB", IntGeneral,
958 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000959def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 "orc $rA, $rS, $rB", IntGeneral,
961 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000962def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 "eqv $rA, $rS, $rB", IntGeneral,
964 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000965def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 "xor $rA, $rS, $rB", IntGeneral,
967 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000968def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 "slw $rA, $rS, $rB", IntGeneral,
970 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000971def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000972 "srw $rA, $rS, $rB", IntGeneral,
973 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000974let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000975def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 "sraw $rA, $rS, $rB", IntShift,
977 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
978}
Dale Johannesen899369d2009-09-18 20:15:22 +0000979}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980
981let PPC970_Unit = 1 in { // FXU Operations.
Dale Johannesen899369d2009-09-18 20:15:22 +0000982let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000983def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 "srawi $rA, $rS, $SH", IntShift,
985 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +0000986}
Evan Chengb783fa32007-07-19 01:14:50 +0000987def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 "cntlzw $rA, $rS", IntGeneral,
989 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000990def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 "extsb $rA, $rS", IntGeneral,
992 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000993def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 "extsh $rA, $rS", IntGeneral,
995 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
996
Evan Chengb783fa32007-07-19 01:14:50 +0000997def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000999def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 "cmplw $crD, $rA, $rB", IntCompare>;
1001}
1002let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +00001003//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +00001005def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +00001007def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 "fcmpu $crD, $fA, $fB", FPCompare>;
1009
Dale Johannesenb73cd822008-10-29 18:26:45 +00001010let Uses = [RM] in {
1011 def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
1012 "fctiwz $frD, $frB", FPGeneral,
1013 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
1014 def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
1015 "frsp $frD, $frB", FPGeneral,
1016 [(set F4RC:$frD, (fround F8RC:$frB))]>;
1017 def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
1018 "fsqrt $frD, $frB", FPSqrt,
1019 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
1020 def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
1021 "fsqrts $frD, $frB", FPSqrt,
1022 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
1023 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024}
1025
1026/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
1027///
1028/// Note that these are defined as pseudo-ops on the PPC970 because they are
1029/// often coalesced away and we don't want the dispatch group builder to think
1030/// that they will fill slots (which could cause the load of a LSU reject to
1031/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +00001032def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 "fmr $frD, $frB", FPGeneral,
1034 []>, // (set F4RC:$frD, F4RC:$frB)
1035 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +00001036def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 "fmr $frD, $frB", FPGeneral,
1038 []>, // (set F8RC:$frD, F8RC:$frB)
1039 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +00001040def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 "fmr $frD, $frB", FPGeneral,
1042 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
1043 PPC970_Unit_Pseudo;
1044
1045let PPC970_Unit = 3 in { // FPU Operations.
1046// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +00001047def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 "fabs $frD, $frB", FPGeneral,
1049 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001050def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 "fabs $frD, $frB", FPGeneral,
1052 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001053def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 "fnabs $frD, $frB", FPGeneral,
1055 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001056def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 "fnabs $frD, $frB", FPGeneral,
1058 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001059def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 "fneg $frD, $frB", FPGeneral,
1061 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001062def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 "fneg $frD, $frB", FPGeneral,
1064 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
1065}
1066
1067
1068// XL-Form instructions. condition register logical ops.
1069//
Evan Chengb783fa32007-07-19 01:14:50 +00001070def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 "mcrf $BF, $BFA", BrMCR>,
1072 PPC970_DGroup_First, PPC970_Unit_CRU;
1073
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +00001074def CREQV : XLForm_1<19, 289, (outs CRBITRC:$CRD),
1075 (ins CRBITRC:$CRA, CRBITRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076 "creqv $CRD, $CRA, $CRB", BrCR,
1077 []>;
1078
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +00001079def CROR : XLForm_1<19, 449, (outs CRBITRC:$CRD),
1080 (ins CRBITRC:$CRA, CRBITRC:$CRB),
1081 "cror $CRD, $CRA, $CRB", BrCR,
1082 []>;
1083
1084def CRSET : XLForm_1_ext<19, 289, (outs CRBITRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 "creqv $dst, $dst, $dst", BrCR,
1086 []>;
1087
1088// XFX-Form instructions. Instructions that deal with SPRs.
1089//
Dale Johannesen595432b2008-10-23 20:41:28 +00001090let Uses = [CTR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001091def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
1092 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001094}
1095let Defs = [CTR], Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001096def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
1097 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 PPC970_DGroup_First, PPC970_Unit_FXU;
1099}
1100
Dale Johannesen595432b2008-10-23 20:41:28 +00001101let Defs = [LR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001102def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
1103 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001105}
1106let Uses = [LR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001107def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
1108 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001110}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111
1112// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1113// a GPR on the PPC970. As such, copies in and out have the same performance
1114// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +00001115def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116 "mtspr 256, $rS", IntGeneral>,
1117 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +00001118def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 "mfspr $rT, 256", IntGeneral>,
1120 PPC970_DGroup_First, PPC970_Unit_FXU;
1121
Evan Chengb783fa32007-07-19 01:14:50 +00001122def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 "mtcrf $FXM, $rS", BrMCRX>,
1124 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesenb73cd822008-10-29 18:26:45 +00001125// FIXME: this Uses all the CR registers. Marking it as such is
1126// necessary for DeadMachineInstructionElim to do the right thing.
1127// However, marking it also exposes PR 2964, and causes crashes in
1128// the Local RA because it doesn't like this sequence:
1129// vreg = MCRF CR0
1130// MFCR <kill of whatever preg got assigned to vreg>
1131// For now DeadMachineInstructionElim is turned off, so don't do the marking.
Evan Chengb783fa32007-07-19 01:14:50 +00001132def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +00001134def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135 "mfcr $rT, $FXM", SprMFCR>,
1136 PPC970_DGroup_First, PPC970_Unit_CRU;
1137
Dale Johannesen3d8578b2007-10-10 01:01:31 +00001138// Instructions to manipulate FPSCR. Only long double handling uses these.
1139// FPSCR is not modelled; we use the SDNode Flag to keep things in order.
1140
Dale Johannesenb73cd822008-10-29 18:26:45 +00001141let Uses = [RM], Defs = [RM] in {
1142 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
1143 "mtfsb0 $FM", IntMTFSB0,
1144 [(PPCmtfsb0 (i32 imm:$FM))]>,
1145 PPC970_DGroup_Single, PPC970_Unit_FPU;
1146 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
1147 "mtfsb1 $FM", IntMTFSB0,
1148 [(PPCmtfsb1 (i32 imm:$FM))]>,
1149 PPC970_DGroup_Single, PPC970_Unit_FPU;
1150 // MTFSF does not actually produce an FP result. We pretend it copies
1151 // input reg B to the output. If we didn't do this it would look like the
1152 // instruction had no outputs (because we aren't modelling the FPSCR) and
1153 // it would be deleted.
1154 def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA),
1155 (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB),
1156 "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0,
1157 [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM),
1158 F8RC:$rT, F8RC:$FRB))]>,
1159 PPC970_DGroup_Single, PPC970_Unit_FPU;
1160}
1161let Uses = [RM] in {
1162 def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins),
1163 "mffs $rT", IntMFFS,
1164 [(set F8RC:$rT, (PPCmffs))]>,
1165 PPC970_DGroup_Single, PPC970_Unit_FPU;
1166 def FADDrtz: AForm_2<63, 21,
1167 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1168 "fadd $FRT, $FRA, $FRB", FPGeneral,
1169 [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>,
1170 PPC970_DGroup_Single, PPC970_Unit_FPU;
1171}
1172
Dale Johannesen3d8578b2007-10-10 01:01:31 +00001173
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174let PPC970_Unit = 1 in { // FXU Operations.
1175
1176// XO-Form instructions. Arithmetic instructions that can set overflow bit
1177//
Evan Chengb783fa32007-07-19 01:14:50 +00001178def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 "add $rT, $rA, $rB", IntGeneral,
1180 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +00001181let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001182def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183 "addc $rT, $rA, $rB", IntGeneral,
1184 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
1185 PPC970_DGroup_Cracked;
Dale Johannesen899369d2009-09-18 20:15:22 +00001186}
Evan Chengb783fa32007-07-19 01:14:50 +00001187def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001188 "divw $rT, $rA, $rB", IntDivW,
1189 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
1190 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001191def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001192 "divwu $rT, $rA, $rB", IntDivW,
1193 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
1194 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001195def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 "mulhw $rT, $rA, $rB", IntMulHW,
1197 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001198def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001199 "mulhwu $rT, $rA, $rB", IntMulHWU,
1200 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001201def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001202 "mullw $rT, $rA, $rB", IntMulHW,
1203 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001204def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 "subf $rT, $rA, $rB", IntGeneral,
1206 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +00001207let Defs = [CARRY] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001208def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001209 "subfc $rT, $rA, $rB", IntGeneral,
1210 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
1211 PPC970_DGroup_Cracked;
Dale Johannesen899369d2009-09-18 20:15:22 +00001212}
1213def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
1214 "neg $rT, $rA", IntGeneral,
1215 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
1216let Uses = [CARRY], Defs = [CARRY] in {
1217def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
1218 "adde $rT, $rA, $rB", IntGeneral,
1219 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001220def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001221 "addme $rT, $rA", IntGeneral,
1222 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001223def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001224 "addze $rT, $rA", IntGeneral,
1225 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Dale Johannesen899369d2009-09-18 20:15:22 +00001226def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
1227 "subfe $rT, $rA, $rB", IntGeneral,
1228 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001229def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001230 "subfme $rT, $rA", IntGeneral,
1231 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001232def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001233 "subfze $rT, $rA", IntGeneral,
1234 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
1235}
Dale Johannesen899369d2009-09-18 20:15:22 +00001236}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237
1238// A-Form instructions. Most of the instructions executed in the FPU are of
1239// this type.
1240//
1241let PPC970_Unit = 3 in { // FPU Operations.
Dale Johannesenb73cd822008-10-29 18:26:45 +00001242let Uses = [RM] in {
1243 def FMADD : AForm_1<63, 29,
1244 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
1245 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1246 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1247 F8RC:$FRB))]>,
1248 Requires<[FPContractions]>;
1249 def FMADDS : AForm_1<59, 29,
1250 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
1251 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1252 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1253 F4RC:$FRB))]>,
1254 Requires<[FPContractions]>;
1255 def FMSUB : AForm_1<63, 28,
1256 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
1257 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1258 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1259 F8RC:$FRB))]>,
1260 Requires<[FPContractions]>;
1261 def FMSUBS : AForm_1<59, 28,
1262 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
1263 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1264 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1265 F4RC:$FRB))]>,
1266 Requires<[FPContractions]>;
1267 def FNMADD : AForm_1<63, 31,
1268 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
1269 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1270 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1271 F8RC:$FRB)))]>,
1272 Requires<[FPContractions]>;
1273 def FNMADDS : AForm_1<59, 31,
1274 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
1275 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1276 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1277 F4RC:$FRB)))]>,
1278 Requires<[FPContractions]>;
1279 def FNMSUB : AForm_1<63, 30,
1280 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
1281 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1282 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1283 F8RC:$FRB)))]>,
1284 Requires<[FPContractions]>;
1285 def FNMSUBS : AForm_1<59, 30,
1286 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
1287 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1288 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1289 F4RC:$FRB)))]>,
1290 Requires<[FPContractions]>;
1291}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001292// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1293// having 4 of these, force the comparison to always be an 8-byte double (code
1294// should use an FMRSD if the input comparison value really wants to be a float)
1295// and 4/8 byte forms for the result and operand type..
1296def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001297 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001298 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1299 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
1300def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001301 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001302 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1303 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
Dale Johannesenb73cd822008-10-29 18:26:45 +00001304let Uses = [RM] in {
1305 def FADD : AForm_2<63, 21,
1306 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1307 "fadd $FRT, $FRA, $FRB", FPGeneral,
1308 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1309 def FADDS : AForm_2<59, 21,
1310 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
1311 "fadds $FRT, $FRA, $FRB", FPGeneral,
1312 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1313 def FDIV : AForm_2<63, 18,
1314 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1315 "fdiv $FRT, $FRA, $FRB", FPDivD,
1316 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1317 def FDIVS : AForm_2<59, 18,
1318 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
1319 "fdivs $FRT, $FRA, $FRB", FPDivS,
1320 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1321 def FMUL : AForm_3<63, 25,
1322 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1323 "fmul $FRT, $FRA, $FRB", FPFused,
1324 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1325 def FMULS : AForm_3<59, 25,
1326 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
1327 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1328 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1329 def FSUB : AForm_2<63, 20,
1330 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1331 "fsub $FRT, $FRA, $FRB", FPGeneral,
1332 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1333 def FSUBS : AForm_2<59, 20,
1334 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
1335 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1336 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1337 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338}
1339
1340let PPC970_Unit = 1 in { // FXU Operations.
1341// M-Form instructions. rotate and mask instructions.
1342//
1343let isCommutable = 1 in {
1344// RLWIMI can be commuted if the rotate amount is zero.
1345def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001346 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001347 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1348 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1349 NoEncode<"$rSi">;
1350}
1351def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001352 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1354 []>;
1355def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001356 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1358 []>, isDOT, PPC970_DGroup_Cracked;
1359def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001360 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001361 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1362 []>;
1363}
1364
1365
1366//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367// PowerPC Instruction Patterns
1368//
1369
1370// Arbitrary immediate support. Implement in terms of LIS/ORI.
1371def : Pat<(i32 imm:$imm),
1372 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1373
1374// Implement the 'not' operation with the NOR instruction.
1375def NOT : Pat<(not GPRC:$in),
1376 (NOR GPRC:$in, GPRC:$in)>;
1377
1378// ADD an arbitrary immediate.
1379def : Pat<(add GPRC:$in, imm:$imm),
1380 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1381// OR an arbitrary immediate.
1382def : Pat<(or GPRC:$in, imm:$imm),
1383 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1384// XOR an arbitrary immediate.
1385def : Pat<(xor GPRC:$in, imm:$imm),
1386 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1387// SUBFIC
1388def : Pat<(sub immSExt16:$imm, GPRC:$in),
1389 (SUBFIC GPRC:$in, imm:$imm)>;
1390
1391// SHL/SRL
1392def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1393 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1394def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1395 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1396
1397// ROTL
1398def : Pat<(rotl GPRC:$in, GPRC:$sh),
1399 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1400def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1401 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1402
1403// RLWNM
1404def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1405 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1406
1407// Calls
Tilmann Scheller386330d2009-07-03 06:47:08 +00001408def : Pat<(PPCcall_Darwin (i32 tglobaladdr:$dst)),
1409 (BL_Darwin tglobaladdr:$dst)>;
1410def : Pat<(PPCcall_Darwin (i32 texternalsym:$dst)),
1411 (BL_Darwin texternalsym:$dst)>;
1412def : Pat<(PPCcall_SVR4 (i32 tglobaladdr:$dst)),
1413 (BL_SVR4 tglobaladdr:$dst)>;
1414def : Pat<(PPCcall_SVR4 (i32 texternalsym:$dst)),
1415 (BL_SVR4 texternalsym:$dst)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001416
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001417
1418def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
1419 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
1420
1421def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
1422 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
1423
1424def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
1425 (TCRETURNri CTRRC:$dst, imm:$imm)>;
1426
1427
1428
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001429// Hi and Lo for Darwin Global Addresses.
1430def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1431def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1432def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1433def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1434def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1435def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilsone8cbca92009-11-04 21:31:18 +00001436def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
1437def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1439 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1440def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1441 (ADDIS GPRC:$in, tconstpool:$g)>;
1442def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1443 (ADDIS GPRC:$in, tjumptable:$g)>;
Bob Wilsone8cbca92009-11-04 21:31:18 +00001444def : Pat<(add GPRC:$in, (PPChi tblockaddress:$g, 0)),
1445 (ADDIS GPRC:$in, tblockaddress:$g)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446
1447// Fused negative multiply subtract, alternate pattern
1448def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1449 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1450 Requires<[FPContractions]>;
1451def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1452 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1453 Requires<[FPContractions]>;
1454
1455// Standard shifts. These are represented separately from the real shifts above
1456// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1457// amounts.
1458def : Pat<(sra GPRC:$rS, GPRC:$rB),
1459 (SRAW GPRC:$rS, GPRC:$rB)>;
1460def : Pat<(srl GPRC:$rS, GPRC:$rB),
1461 (SRW GPRC:$rS, GPRC:$rB)>;
1462def : Pat<(shl GPRC:$rS, GPRC:$rB),
1463 (SLW GPRC:$rS, GPRC:$rB)>;
1464
1465def : Pat<(zextloadi1 iaddr:$src),
1466 (LBZ iaddr:$src)>;
1467def : Pat<(zextloadi1 xaddr:$src),
1468 (LBZX xaddr:$src)>;
1469def : Pat<(extloadi1 iaddr:$src),
1470 (LBZ iaddr:$src)>;
1471def : Pat<(extloadi1 xaddr:$src),
1472 (LBZX xaddr:$src)>;
1473def : Pat<(extloadi8 iaddr:$src),
1474 (LBZ iaddr:$src)>;
1475def : Pat<(extloadi8 xaddr:$src),
1476 (LBZX xaddr:$src)>;
1477def : Pat<(extloadi16 iaddr:$src),
1478 (LHZ iaddr:$src)>;
1479def : Pat<(extloadi16 xaddr:$src),
1480 (LHZX xaddr:$src)>;
1481def : Pat<(extloadf32 iaddr:$src),
1482 (FMRSD (LFS iaddr:$src))>;
1483def : Pat<(extloadf32 xaddr:$src),
1484 (FMRSD (LFSX xaddr:$src))>;
1485
Dale Johannesen8d4de232008-08-22 17:20:54 +00001486// Memory barriers
1487def : Pat<(membarrier (i32 imm:$ll),
1488 (i32 imm:$ls),
1489 (i32 imm:$sl),
1490 (i32 imm:$ss),
1491 (i32 imm:$device)),
1492 (SYNC)>;
1493
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001494include "PPCInstrAltivec.td"
1495include "PPCInstr64Bit.td"