blob: 04968edf34de9d226de885ef7f8f23f138c81332 [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
38def SDT_PPClbrx : SDTypeProfile<1, 3, [
39 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
40]>;
41def SDT_PPCstbrx : SDTypeProfile<0, 4, [
42 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
43]>;
44
Arnold Schwaighofera0032722008-04-30 09:16:33 +000045
Evan Cheng0589b512008-04-19 02:30:38 +000046def SDT_PPClarx : SDTypeProfile<1, 2, [
47 SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, i32>
Evan Cheng4df1f9d2008-04-19 01:30:48 +000048]>;
Evan Cheng0589b512008-04-19 02:30:38 +000049def SDT_PPCstcx : SDTypeProfile<0, 3, [
50 SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, i32>
Evan Cheng4df1f9d2008-04-19 01:30:48 +000051]>;
52def SDT_PPCcmp_unres : SDTypeProfile<0, 3, [
Evan Cheng0589b512008-04-19 02:30:38 +000053 SDTCisSameAs<0, 1>, SDTCisInt<1>, SDTCisVT<2, i32>
Evan Cheng4df1f9d2008-04-19 01:30:48 +000054]>;
55
Arnold Schwaighofera0032722008-04-30 09:16:33 +000056def SDT_PPCTC_ret : SDTypeProfile<0, 2, [
57 SDTCisPtrTy<0>, SDTCisVT<1, i32>
58]>;
59
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060//===----------------------------------------------------------------------===//
61// PowerPC specific DAG Nodes.
62//
63
64def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>;
65def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
66def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
Chris Lattneref8d6082008-01-06 06:44:58 +000067def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx,
68 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069
Dale Johannesen3d8578b2007-10-10 01:01:31 +000070// This sequence is used for long double->int conversions. It changes the
71// bits in the FPSCR which is not modelled.
72def PPCmffs : SDNode<"PPCISD::MFFS", SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>,
73 [SDNPOutFlag]>;
74def PPCmtfsb0 : SDNode<"PPCISD::MTFSB0", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
75 [SDNPInFlag, SDNPOutFlag]>;
76def PPCmtfsb1 : SDNode<"PPCISD::MTFSB1", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
77 [SDNPInFlag, SDNPOutFlag]>;
78def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp,
79 [SDNPInFlag, SDNPOutFlag]>;
80def PPCmtfsf : SDNode<"PPCISD::MTFSF", SDTypeProfile<1, 3,
81 [SDTCisVT<0, f64>, SDTCisInt<1>, SDTCisVT<2, f64>,
82 SDTCisVT<3, f64>]>,
83 [SDNPInFlag]>;
84
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085def PPCfsel : SDNode<"PPCISD::FSEL",
86 // Type constraint for fsel.
87 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
88 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
89
90def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
91def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
92def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
93def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
94
95def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
96
97// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
98// amounts. These nodes are generated by the multi-precision shift code.
Chris Lattnerdfebab92008-03-07 20:18:24 +000099def PPCsrl : SDNode<"PPCISD::SRL" , SDTIntShiftOp>;
100def PPCsra : SDNode<"PPCISD::SRA" , SDTIntShiftOp>;
101def PPCshl : SDNode<"PPCISD::SHL" , SDTIntShiftOp>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000104def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore,
105 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107// These are target-independent nodes, but have target-specific formats.
Bill Wendling7173da52007-11-13 09:19:02 +0000108def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +0000110def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd,
Bill Wendling22f8deb2007-11-13 00:44:25 +0000111 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112
113def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
114def PPCcall_Macho : SDNode<"PPCISD::CALL_Macho", SDT_PPCCall,
115 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
116def PPCcall_ELF : SDNode<"PPCISD::CALL_ELF", SDT_PPCCall,
117 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
118def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
119 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Chris Lattner3d254552008-01-15 22:02:54 +0000120def PPCbctrl_Macho : SDNode<"PPCISD::BCTRL_Macho", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000121 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122
Chris Lattner3d254552008-01-15 22:02:54 +0000123def PPCbctrl_ELF : SDNode<"PPCISD::BCTRL_ELF", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000124 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125
Chris Lattner3d254552008-01-15 22:02:54 +0000126def retflag : SDNode<"PPCISD::RET_FLAG", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000127 [SDNPHasChain, SDNPOptInFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000129def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret,
130 [SDNPHasChain, SDNPOptInFlag]>;
131
132def PPCtailcall : SDNode<"PPCISD::TAILCALL", SDT_PPCCall,
133 [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
134
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
136def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>;
137
138def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
139 [SDNPHasChain, SDNPOptInFlag]>;
140
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000141def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
142 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000143def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
144 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145
Evan Cheng0589b512008-04-19 02:30:38 +0000146def PPClarx : SDNode<"PPCISD::LARX", SDT_PPClarx,
147 [SDNPHasChain, SDNPMayLoad]>;
148def PPCstcx : SDNode<"PPCISD::STCX", SDT_PPCstcx,
149 [SDNPHasChain, SDNPMayStore]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000150def PPCcmp_unres : SDNode<"PPCISD::CMP_UNRESERVE", SDT_PPCcmp_unres,
151 [SDNPHasChain]>;
152
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153// Instructions to support dynamic alloca.
154def SDTDynOp : SDTypeProfile<1, 2, []>;
155def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
156
157//===----------------------------------------------------------------------===//
158// PowerPC specific transformation functions and pattern fragments.
159//
160
161def SHL32 : SDNodeXForm<imm, [{
162 // Transformation function: 31 - imm
163 return getI32Imm(31 - N->getValue());
164}]>;
165
166def SRL32 : SDNodeXForm<imm, [{
167 // Transformation function: 32 - imm
168 return N->getValue() ? getI32Imm(32 - N->getValue()) : getI32Imm(0);
169}]>;
170
171def LO16 : SDNodeXForm<imm, [{
172 // Transformation function: get the low 16 bits.
173 return getI32Imm((unsigned short)N->getValue());
174}]>;
175
176def HI16 : SDNodeXForm<imm, [{
177 // Transformation function: shift the immediate value down into the low bits.
178 return getI32Imm((unsigned)N->getValue() >> 16);
179}]>;
180
181def HA16 : SDNodeXForm<imm, [{
182 // Transformation function: shift the immediate value down into the low bits.
183 signed int Val = N->getValue();
184 return getI32Imm((Val - (signed short)Val) >> 16);
185}]>;
186def MB : SDNodeXForm<imm, [{
187 // Transformation function: get the start bit of a mask
188 unsigned mb, me;
189 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
190 return getI32Imm(mb);
191}]>;
192
193def ME : SDNodeXForm<imm, [{
194 // Transformation function: get the end bit of a mask
195 unsigned mb, me;
196 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
197 return getI32Imm(me);
198}]>;
199def maskimm32 : PatLeaf<(imm), [{
200 // maskImm predicate - True if immediate is a run of ones.
201 unsigned mb, me;
202 if (N->getValueType(0) == MVT::i32)
203 return isRunOfOnes((unsigned)N->getValue(), mb, me);
204 else
205 return false;
206}]>;
207
208def immSExt16 : PatLeaf<(imm), [{
209 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
210 // field. Used by instructions like 'addi'.
211 if (N->getValueType(0) == MVT::i32)
212 return (int32_t)N->getValue() == (short)N->getValue();
213 else
214 return (int64_t)N->getValue() == (short)N->getValue();
215}]>;
216def immZExt16 : PatLeaf<(imm), [{
217 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
218 // field. Used by instructions like 'ori'.
219 return (uint64_t)N->getValue() == (unsigned short)N->getValue();
220}], LO16>;
221
222// imm16Shifted* - These match immediates where the low 16-bits are zero. There
223// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
224// identical in 32-bit mode, but in 64-bit mode, they return true if the
225// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
226// clear).
227def imm16ShiftedZExt : PatLeaf<(imm), [{
228 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
229 // immediate are set. Used by instructions like 'xoris'.
230 return (N->getValue() & ~uint64_t(0xFFFF0000)) == 0;
231}], HI16>;
232
233def imm16ShiftedSExt : PatLeaf<(imm), [{
234 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
235 // immediate are set. Used by instructions like 'addis'. Identical to
236 // imm16ShiftedZExt in 32-bit mode.
237 if (N->getValue() & 0xFFFF) return false;
238 if (N->getValueType(0) == MVT::i32)
239 return true;
240 // For 64-bit, make sure it is sext right.
241 return N->getValue() == (uint64_t)(int)N->getValue();
242}], HI16>;
243
244
245//===----------------------------------------------------------------------===//
246// PowerPC Flag Definitions.
247
248class isPPC64 { bit PPC64 = 1; }
249class isDOT {
250 list<Register> Defs = [CR0];
251 bit RC = 1;
252}
253
254class RegConstraint<string C> {
255 string Constraints = C;
256}
257class NoEncode<string E> {
258 string DisableEncoding = E;
259}
260
261
262//===----------------------------------------------------------------------===//
263// PowerPC Operand Definitions.
264
265def s5imm : Operand<i32> {
266 let PrintMethod = "printS5ImmOperand";
267}
268def u5imm : Operand<i32> {
269 let PrintMethod = "printU5ImmOperand";
270}
271def u6imm : Operand<i32> {
272 let PrintMethod = "printU6ImmOperand";
273}
274def s16imm : Operand<i32> {
275 let PrintMethod = "printS16ImmOperand";
276}
277def u16imm : Operand<i32> {
278 let PrintMethod = "printU16ImmOperand";
279}
280def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing.
281 let PrintMethod = "printS16X4ImmOperand";
282}
283def target : Operand<OtherVT> {
284 let PrintMethod = "printBranchOperand";
285}
286def calltarget : Operand<iPTR> {
287 let PrintMethod = "printCallOperand";
288}
289def aaddr : Operand<iPTR> {
290 let PrintMethod = "printAbsAddrOperand";
291}
292def piclabel: Operand<iPTR> {
293 let PrintMethod = "printPICLabel";
294}
295def symbolHi: Operand<i32> {
296 let PrintMethod = "printSymbolHi";
297}
298def symbolLo: Operand<i32> {
299 let PrintMethod = "printSymbolLo";
300}
301def crbitm: Operand<i8> {
302 let PrintMethod = "printcrbitm";
303}
304// Address operands
305def memri : Operand<iPTR> {
306 let PrintMethod = "printMemRegImm";
307 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
308}
309def memrr : Operand<iPTR> {
310 let PrintMethod = "printMemRegReg";
311 let MIOperandInfo = (ops ptr_rc, ptr_rc);
312}
313def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
314 let PrintMethod = "printMemRegImmShifted";
315 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
316}
317
318// PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg
319// that doesn't matter.
320def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
Nate Begeman78297d82008-02-13 02:58:33 +0000321 (ops (i32 20), (i32 zero_reg))> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 let PrintMethod = "printPredicateOperand";
323}
324
325// Define PowerPC specific addressing mode.
326def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
327def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
328def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
329def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
330
331/// This is just the offset part of iaddr, used for preinc.
332def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
333
334//===----------------------------------------------------------------------===//
335// PowerPC Instruction Predicate Definitions.
336def FPContractions : Predicate<"!NoExcessFPPrecision">;
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000337def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
338def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340
341//===----------------------------------------------------------------------===//
342// PowerPC Instruction Definitions.
343
344// Pseudo-instructions:
345
346let hasCtrlDep = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000347let Defs = [R1], Uses = [R1] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000348def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 "${:comment} ADJCALLSTACKDOWN",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000350 [(callseq_start imm:$amt)]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +0000351def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 "${:comment} ADJCALLSTACKUP",
Bill Wendling22f8deb2007-11-13 00:44:25 +0000353 [(callseq_end imm:$amt1, imm:$amt2)]>;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000354}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355
Evan Chengb783fa32007-07-19 01:14:50 +0000356def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 "UPDATE_VRSAVE $rD, $rS", []>;
358}
359
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000360let Defs = [R1], Uses = [R1] in
Evan Chengb783fa32007-07-19 01:14:50 +0000361def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 "${:comment} DYNALLOC $result, $negsize, $fpsi",
363 [(set GPRC:$result,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000364 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
367// scheduler into a branch sequence.
368let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
369 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000370 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
372 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000373 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
375 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000376 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$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_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$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_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
384 []>;
385}
386
Bill Wendlinga1877c52008-03-03 22:19:16 +0000387// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
388// scavenge a register for it.
389def SPILL_CR : Pseudo<(outs), (ins GPRC:$cond, memri:$F),
390 "${:comment} SPILL_CR $cond $F", []>;
391
Evan Cheng37e7c752007-07-21 00:34:19 +0000392let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 let isReturn = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000394 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 "b${p:cc}lr ${p:reg}", BrB,
396 [(retflag)]>;
Owen Andersonf8053082007-11-12 07:39:39 +0000397 let isBranch = 1, isIndirectBranch = 1 in
398 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399}
400
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000402 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 PPC970_Unit_BRU;
404
Evan Cheng37e7c752007-07-21 00:34:19 +0000405let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000407 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408 "b $dst", BrB,
409 [(br bb:$dst)]>;
410 }
411
412 // BCC represents an arbitrary conditional branch on a predicate.
413 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
414 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000415 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 "b${cond:cc} ${cond:reg}, $dst"
417 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
418}
419
420// Macho ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000421let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 // All calls clobber the non-callee saved registers...
423 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
424 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
425 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
426 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000427 CR0,CR1,CR5,CR6,CR7,
428 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
429 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 // Convenient aliases for call instructions
431 def BL_Macho : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000432 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 "bl $func", BrB, []>; // See Pat patterns below.
434 def BLA_Macho : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000435 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
437 def BCTRL_Macho : 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_Macho)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441}
442
443// ELF ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000444let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 // All calls clobber the non-callee saved registers...
446 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
447 F0,F1,F2,F3,F4,F5,F6,F7,F8,
448 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
449 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000450 CR0,CR1,CR5,CR6,CR7,
451 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
452 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 // Convenient aliases for call instructions
454 def BL_ELF : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000455 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 "bl $func", BrB, []>; // See Pat patterns below.
457 def BLA_ELF : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000458 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 "bla $func", BrB,
460 [(PPCcall_ELF (i32 imm:$func))]>;
461 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000462 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000464 [(PPCbctrl_ELF)]>, Requires<[In32BitMode]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465}
466
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000467
468let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
469def TCRETURNdi :Pseudo< (outs),
470 (ins calltarget:$dst, i32imm:$offset, variable_ops),
471 "#TC_RETURNd $dst $offset",
472 []>;
473
474
475let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
476def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset, variable_ops),
477 "#TC_RETURNa $func $offset",
478 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
479
480let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
481def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset, variable_ops),
482 "#TC_RETURNr $dst $offset",
483 []>;
484
485
486let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
487 isIndirectBranch = 1, isCall = 1, isReturn = 1 in
488def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
489 Requires<[In32BitMode]>;
490
491
492
493let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
494 isBarrier = 1, isCall = 1, isReturn = 1 in
495def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
496 "b $dst", BrB,
497 []>;
498
499
500let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
501 isBarrier = 1, isCall = 1, isReturn = 1 in
502def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
503 "ba $dst", BrB,
504 []>;
505
506
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000508def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
510 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000511def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
513 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000514def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
516 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000517def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
519 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000520def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
522 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000523def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
525 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000526def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
528 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000529def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
531 PPC970_DGroup_Single;
532
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000533// Atomic operations.
534def LWARX : Pseudo<(outs GPRC:$rD), (ins memrr:$ptr, i32imm:$label),
535 "\nLa${label}_entry:\n\tlwarx $rD, $ptr",
Evan Cheng0589b512008-04-19 02:30:38 +0000536 [(set GPRC:$rD, (PPClarx xoaddr:$ptr, imm:$label))]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000537
538let Defs = [CR0] in {
539def STWCX : Pseudo<(outs), (ins GPRC:$rS, memrr:$dst, i32imm:$label),
Evan Cheng0589b512008-04-19 02:30:38 +0000540 "stwcx. $rS, $dst\n\tbne- La${label}_entry\nLa${label}_exit:",
541 [(PPCstcx GPRC:$rS, xoaddr:$dst, imm:$label)]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000542
543def CMP_UNRESw : Pseudo<(outs), (ins GPRC:$rA, GPRC:$rB, i32imm:$label),
544 "cmpw $rA, $rB\n\tbne- La${label}_exit",
545 [(PPCcmp_unres GPRC:$rA, GPRC:$rB, imm:$label)]>;
546def CMP_UNRESwi : Pseudo<(outs), (ins GPRC:$rA, s16imm:$imm, i32imm:$label),
547 "cmpwi $rA, $imm\n\tbne- La${label}_exit",
Evan Cheng0589b512008-04-19 02:30:38 +0000548 [(PPCcmp_unres GPRC:$rA, immSExt16:$imm, imm:$label)]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000549}
550
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551//===----------------------------------------------------------------------===//
552// PPC32 Load Instructions.
553//
554
555// Unindexed (r+i) Loads.
Chris Lattner1a1932c2008-01-06 23:38:27 +0000556let isSimpleLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000557def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 "lbz $rD, $src", LdStGeneral,
559 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000560def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 "lha $rD, $src", LdStLHA,
562 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
563 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000564def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565 "lhz $rD, $src", LdStGeneral,
566 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000567def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 "lwz $rD, $src", LdStGeneral,
569 [(set GPRC:$rD, (load iaddr:$src))]>;
570
Evan Chengb783fa32007-07-19 01:14:50 +0000571def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 "lfs $rD, $src", LdStLFDU,
573 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000574def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 "lfd $rD, $src", LdStLFD,
576 [(set F8RC:$rD, (load iaddr:$src))]>;
577
578
579// Unindexed (r+i) Loads with Update (preinc).
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000580def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 "lbzu $rD, $addr", LdStGeneral,
582 []>, RegConstraint<"$addr.reg = $ea_result">,
583 NoEncode<"$ea_result">;
584
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000585def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 "lhau $rD, $addr", LdStGeneral,
587 []>, RegConstraint<"$addr.reg = $ea_result">,
588 NoEncode<"$ea_result">;
589
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000590def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000591 "lhzu $rD, $addr", LdStGeneral,
592 []>, RegConstraint<"$addr.reg = $ea_result">,
593 NoEncode<"$ea_result">;
594
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000595def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 "lwzu $rD, $addr", LdStGeneral,
597 []>, RegConstraint<"$addr.reg = $ea_result">,
598 NoEncode<"$ea_result">;
599
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000600def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 "lfs $rD, $addr", LdStLFDU,
602 []>, RegConstraint<"$addr.reg = $ea_result">,
603 NoEncode<"$ea_result">;
604
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000605def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 "lfd $rD, $addr", LdStLFD,
607 []>, RegConstraint<"$addr.reg = $ea_result">,
608 NoEncode<"$ea_result">;
609}
610
611// Indexed (r+r) Loads.
612//
Chris Lattner1a1932c2008-01-06 23:38:27 +0000613let isSimpleLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000614def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 "lbzx $rD, $src", LdStGeneral,
616 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000617def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 "lhax $rD, $src", LdStLHA,
619 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
620 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000621def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622 "lhzx $rD, $src", LdStGeneral,
623 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000624def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 "lwzx $rD, $src", LdStGeneral,
626 [(set GPRC:$rD, (load xaddr:$src))]>;
627
628
Evan Chengb783fa32007-07-19 01:14:50 +0000629def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 "lhbrx $rD, $src", LdStGeneral,
631 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000632def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633 "lwbrx $rD, $src", LdStGeneral,
634 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
635
Evan Chengb783fa32007-07-19 01:14:50 +0000636def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637 "lfsx $frD, $src", LdStLFDU,
638 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000639def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640 "lfdx $frD, $src", LdStLFDU,
641 [(set F8RC:$frD, (load xaddr:$src))]>;
642}
643
644//===----------------------------------------------------------------------===//
645// PPC32 Store Instructions.
646//
647
648// Unindexed (r+i) Stores.
Chris Lattner8f34d942008-01-06 05:53:26 +0000649let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000650def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 "stb $rS, $src", LdStGeneral,
652 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000653def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 "sth $rS, $src", LdStGeneral,
655 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000656def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 "stw $rS, $src", LdStGeneral,
658 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000659def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 "stfs $rS, $dst", LdStUX,
661 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000662def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 "stfd $rS, $dst", LdStUX,
664 [(store F8RC:$rS, iaddr:$dst)]>;
665}
666
667// Unindexed (r+i) Stores with Update (preinc).
Chris Lattner8f34d942008-01-06 05:53:26 +0000668let PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000669def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 symbolLo:$ptroff, ptr_rc:$ptrreg),
671 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
672 [(set ptr_rc:$ea_res,
673 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
674 iaddroff:$ptroff))]>,
675 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000676def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 symbolLo:$ptroff, ptr_rc:$ptrreg),
678 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
679 [(set ptr_rc:$ea_res,
680 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
681 iaddroff:$ptroff))]>,
682 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000683def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684 symbolLo:$ptroff, ptr_rc:$ptrreg),
685 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
686 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
687 iaddroff:$ptroff))]>,
688 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000689def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690 symbolLo:$ptroff, ptr_rc:$ptrreg),
691 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
692 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
693 iaddroff:$ptroff))]>,
694 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000695def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696 symbolLo:$ptroff, ptr_rc:$ptrreg),
697 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
698 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
699 iaddroff:$ptroff))]>,
700 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
701}
702
703
704// Indexed (r+r) Stores.
705//
Chris Lattner8f34d942008-01-06 05:53:26 +0000706let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000707def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 "stbx $rS, $dst", LdStGeneral,
709 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
710 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000711def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712 "sthx $rS, $dst", LdStGeneral,
713 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
714 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000715def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716 "stwx $rS, $dst", LdStGeneral,
717 [(store GPRC:$rS, xaddr:$dst)]>,
718 PPC970_DGroup_Cracked;
Chris Lattner8f34d942008-01-06 05:53:26 +0000719
Chris Lattner6887b142008-01-06 08:36:04 +0000720let mayStore = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000721def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 "stwux $rS, $rA, $rB", LdStGeneral,
723 []>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000724}
Evan Chengb783fa32007-07-19 01:14:50 +0000725def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 "sthbrx $rS, $dst", LdStGeneral,
727 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
728 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000729def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 "stwbrx $rS, $dst", LdStGeneral,
731 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
732 PPC970_DGroup_Cracked;
733
Evan Chengb783fa32007-07-19 01:14:50 +0000734def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 "stfiwx $frS, $dst", LdStUX,
736 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000737
Evan Chengb783fa32007-07-19 01:14:50 +0000738def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 "stfsx $frS, $dst", LdStUX,
740 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000741def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 "stfdx $frS, $dst", LdStUX,
743 [(store F8RC:$frS, xaddr:$dst)]>;
744}
745
746
747//===----------------------------------------------------------------------===//
748// PPC32 Arithmetic Instructions.
749//
750
751let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000752def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 "addi $rD, $rA, $imm", IntGeneral,
754 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000755def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 "addic $rD, $rA, $imm", IntGeneral,
757 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
758 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000759def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760 "addic. $rD, $rA, $imm", IntGeneral,
761 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000762def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 "addis $rD, $rA, $imm", IntGeneral,
764 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000765def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 "la $rD, $sym($rA)", IntGeneral,
767 [(set GPRC:$rD, (add GPRC:$rA,
768 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000769def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 "mulli $rD, $rA, $imm", IntMulLI,
771 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000772def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 "subfic $rD, $rA, $imm", IntGeneral,
774 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000775
Chris Lattner17dab4a2008-01-10 05:45:39 +0000776let isReMaterializable = 1 in {
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000777 def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
778 "li $rD, $imm", IntGeneral,
779 [(set GPRC:$rD, immSExt16:$imm)]>;
780 def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
781 "lis $rD, $imm", IntGeneral,
782 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
783}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784}
785
786let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000787def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 "andi. $dst, $src1, $src2", IntGeneral,
789 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
790 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000791def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 "andis. $dst, $src1, $src2", IntGeneral,
793 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
794 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000795def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 "ori $dst, $src1, $src2", IntGeneral,
797 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000798def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000799 "oris $dst, $src1, $src2", IntGeneral,
800 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000801def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 "xori $dst, $src1, $src2", IntGeneral,
803 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000804def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 "xoris $dst, $src1, $src2", IntGeneral,
806 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000807def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000809def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000811def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 "cmplwi $dst, $src1, $src2", IntCompare>;
813}
814
815
816let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000817def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 "nand $rA, $rS, $rB", IntGeneral,
819 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000820def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821 "and $rA, $rS, $rB", IntGeneral,
822 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000823def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 "andc $rA, $rS, $rB", IntGeneral,
825 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000826def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 "or $rA, $rS, $rB", IntGeneral,
828 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000829def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830 "nor $rA, $rS, $rB", IntGeneral,
831 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000832def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833 "orc $rA, $rS, $rB", IntGeneral,
834 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000835def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 "eqv $rA, $rS, $rB", IntGeneral,
837 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000838def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 "xor $rA, $rS, $rB", IntGeneral,
840 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000841def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 "slw $rA, $rS, $rB", IntGeneral,
843 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000844def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 "srw $rA, $rS, $rB", IntGeneral,
846 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000847def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848 "sraw $rA, $rS, $rB", IntShift,
849 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
850}
851
852let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000853def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 "srawi $rA, $rS, $SH", IntShift,
855 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000856def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857 "cntlzw $rA, $rS", IntGeneral,
858 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000859def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000860 "extsb $rA, $rS", IntGeneral,
861 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000862def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 "extsh $rA, $rS", IntGeneral,
864 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
865
Evan Chengb783fa32007-07-19 01:14:50 +0000866def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000868def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 "cmplw $crD, $rA, $rB", IntCompare>;
870}
871let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000872//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000874def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000876def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 "fcmpu $crD, $fA, $fB", FPCompare>;
878
Evan Chengb783fa32007-07-19 01:14:50 +0000879def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 "fctiwz $frD, $frB", FPGeneral,
881 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000882def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 "frsp $frD, $frB", FPGeneral,
884 [(set F4RC:$frD, (fround F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000885def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886 "fsqrt $frD, $frB", FPSqrt,
887 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000888def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 "fsqrts $frD, $frB", FPSqrt,
890 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
891}
892
893/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
894///
895/// Note that these are defined as pseudo-ops on the PPC970 because they are
896/// often coalesced away and we don't want the dispatch group builder to think
897/// that they will fill slots (which could cause the load of a LSU reject to
898/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +0000899def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000900 "fmr $frD, $frB", FPGeneral,
901 []>, // (set F4RC:$frD, F4RC:$frB)
902 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000903def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904 "fmr $frD, $frB", FPGeneral,
905 []>, // (set F8RC:$frD, F8RC:$frB)
906 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000907def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 "fmr $frD, $frB", FPGeneral,
909 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
910 PPC970_Unit_Pseudo;
911
912let PPC970_Unit = 3 in { // FPU Operations.
913// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +0000914def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 "fabs $frD, $frB", FPGeneral,
916 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000917def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918 "fabs $frD, $frB", FPGeneral,
919 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000920def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 "fnabs $frD, $frB", FPGeneral,
922 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000923def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 "fnabs $frD, $frB", FPGeneral,
925 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000926def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 "fneg $frD, $frB", FPGeneral,
928 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000929def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 "fneg $frD, $frB", FPGeneral,
931 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
932}
933
934
935// XL-Form instructions. condition register logical ops.
936//
Evan Chengb783fa32007-07-19 01:14:50 +0000937def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 "mcrf $BF, $BFA", BrMCR>,
939 PPC970_DGroup_First, PPC970_Unit_CRU;
940
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000941def CREQV : XLForm_1<19, 289, (outs CRBITRC:$CRD),
942 (ins CRBITRC:$CRA, CRBITRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943 "creqv $CRD, $CRA, $CRB", BrCR,
944 []>;
945
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000946def CROR : XLForm_1<19, 449, (outs CRBITRC:$CRD),
947 (ins CRBITRC:$CRA, CRBITRC:$CRB),
948 "cror $CRD, $CRA, $CRB", BrCR,
949 []>;
950
951def CRSET : XLForm_1_ext<19, 289, (outs CRBITRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 "creqv $dst, $dst, $dst", BrCR,
953 []>;
954
955// XFX-Form instructions. Instructions that deal with SPRs.
956//
Evan Chengb783fa32007-07-19 01:14:50 +0000957def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
958 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000959 PPC970_DGroup_First, PPC970_Unit_FXU;
960let Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000961def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
962 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 PPC970_DGroup_First, PPC970_Unit_FXU;
964}
965
Evan Chengb783fa32007-07-19 01:14:50 +0000966def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
967 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 PPC970_DGroup_First, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000969def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
970 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971 PPC970_DGroup_First, PPC970_Unit_FXU;
972
973// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
974// a GPR on the PPC970. As such, copies in and out have the same performance
975// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +0000976def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 "mtspr 256, $rS", IntGeneral>,
978 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000979def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 "mfspr $rT, 256", IntGeneral>,
981 PPC970_DGroup_First, PPC970_Unit_FXU;
982
Evan Chengb783fa32007-07-19 01:14:50 +0000983def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 "mtcrf $FXM, $rS", BrMCRX>,
985 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000986def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000988def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 "mfcr $rT, $FXM", SprMFCR>,
990 PPC970_DGroup_First, PPC970_Unit_CRU;
991
Dale Johannesen3d8578b2007-10-10 01:01:31 +0000992// Instructions to manipulate FPSCR. Only long double handling uses these.
993// FPSCR is not modelled; we use the SDNode Flag to keep things in order.
994
995def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins),
996 "mffs $rT", IntMFFS,
997 [(set F8RC:$rT, (PPCmffs))]>,
998 PPC970_DGroup_Single, PPC970_Unit_FPU;
999def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
1000 "mtfsb0 $FM", IntMTFSB0,
1001 [(PPCmtfsb0 (i32 imm:$FM))]>,
1002 PPC970_DGroup_Single, PPC970_Unit_FPU;
1003def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
1004 "mtfsb1 $FM", IntMTFSB0,
1005 [(PPCmtfsb1 (i32 imm:$FM))]>,
1006 PPC970_DGroup_Single, PPC970_Unit_FPU;
1007def FADDrtz: AForm_2<63, 21,
1008 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1009 "fadd $FRT, $FRA, $FRB", FPGeneral,
1010 [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>,
1011 PPC970_DGroup_Single, PPC970_Unit_FPU;
1012// MTFSF does not actually produce an FP result. We pretend it copies
1013// input reg B to the output. If we didn't do this it would look like the
1014// instruction had no outputs (because we aren't modelling the FPSCR) and
1015// it would be deleted.
1016def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA),
1017 (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB),
1018 "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0,
1019 [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM),
1020 F8RC:$rT, F8RC:$FRB))]>,
1021 PPC970_DGroup_Single, PPC970_Unit_FPU;
1022
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023let PPC970_Unit = 1 in { // FXU Operations.
1024
1025// XO-Form instructions. Arithmetic instructions that can set overflow bit
1026//
Evan Chengb783fa32007-07-19 01:14:50 +00001027def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028 "add $rT, $rA, $rB", IntGeneral,
1029 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001030def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 "addc $rT, $rA, $rB", IntGeneral,
1032 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
1033 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001034def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035 "adde $rT, $rA, $rB", IntGeneral,
1036 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001037def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 "divw $rT, $rA, $rB", IntDivW,
1039 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
1040 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001041def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 "divwu $rT, $rA, $rB", IntDivW,
1043 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
1044 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001045def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 "mulhw $rT, $rA, $rB", IntMulHW,
1047 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001048def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 "mulhwu $rT, $rA, $rB", IntMulHWU,
1050 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001051def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 "mullw $rT, $rA, $rB", IntMulHW,
1053 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001054def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055 "subf $rT, $rA, $rB", IntGeneral,
1056 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001057def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 "subfc $rT, $rA, $rB", IntGeneral,
1059 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
1060 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001061def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 "subfe $rT, $rA, $rB", IntGeneral,
1063 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001064def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065 "addme $rT, $rA", IntGeneral,
1066 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001067def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 "addze $rT, $rA", IntGeneral,
1069 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001070def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 "neg $rT, $rA", IntGeneral,
1072 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001073def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 "subfme $rT, $rA", IntGeneral,
1075 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001076def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 "subfze $rT, $rA", IntGeneral,
1078 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
1079}
1080
1081// A-Form instructions. Most of the instructions executed in the FPU are of
1082// this type.
1083//
1084let PPC970_Unit = 3 in { // FPU Operations.
1085def FMADD : AForm_1<63, 29,
Evan Chengb783fa32007-07-19 01:14:50 +00001086 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1088 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1089 F8RC:$FRB))]>,
1090 Requires<[FPContractions]>;
1091def FMADDS : AForm_1<59, 29,
Evan Chengb783fa32007-07-19 01:14:50 +00001092 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1094 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1095 F4RC:$FRB))]>,
1096 Requires<[FPContractions]>;
1097def FMSUB : AForm_1<63, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001098 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1100 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1101 F8RC:$FRB))]>,
1102 Requires<[FPContractions]>;
1103def FMSUBS : AForm_1<59, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001104 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1106 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1107 F4RC:$FRB))]>,
1108 Requires<[FPContractions]>;
1109def FNMADD : AForm_1<63, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001110 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1112 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1113 F8RC:$FRB)))]>,
1114 Requires<[FPContractions]>;
1115def FNMADDS : AForm_1<59, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001116 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1118 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1119 F4RC:$FRB)))]>,
1120 Requires<[FPContractions]>;
1121def FNMSUB : AForm_1<63, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001122 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1124 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1125 F8RC:$FRB)))]>,
1126 Requires<[FPContractions]>;
1127def FNMSUBS : AForm_1<59, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001128 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001129 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1130 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1131 F4RC:$FRB)))]>,
1132 Requires<[FPContractions]>;
1133// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1134// having 4 of these, force the comparison to always be an 8-byte double (code
1135// should use an FMRSD if the input comparison value really wants to be a float)
1136// and 4/8 byte forms for the result and operand type..
1137def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001138 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1140 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
1141def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001142 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1144 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
1145def FADD : AForm_2<63, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001146 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 "fadd $FRT, $FRA, $FRB", FPGeneral,
1148 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1149def FADDS : AForm_2<59, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001150 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 "fadds $FRT, $FRA, $FRB", FPGeneral,
1152 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1153def FDIV : AForm_2<63, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001154 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 "fdiv $FRT, $FRA, $FRB", FPDivD,
1156 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1157def FDIVS : AForm_2<59, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001158 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001159 "fdivs $FRT, $FRA, $FRB", FPDivS,
1160 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1161def FMUL : AForm_3<63, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001162 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 "fmul $FRT, $FRA, $FRB", FPFused,
1164 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1165def FMULS : AForm_3<59, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001166 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1168 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1169def FSUB : AForm_2<63, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001170 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171 "fsub $FRT, $FRA, $FRB", FPGeneral,
1172 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1173def FSUBS : AForm_2<59, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001174 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001175 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1176 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1177}
1178
1179let PPC970_Unit = 1 in { // FXU Operations.
1180// M-Form instructions. rotate and mask instructions.
1181//
1182let isCommutable = 1 in {
1183// RLWIMI can be commuted if the rotate amount is zero.
1184def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001185 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1187 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1188 NoEncode<"$rSi">;
1189}
1190def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001191 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001192 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1193 []>;
1194def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001195 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1197 []>, isDOT, PPC970_DGroup_Cracked;
1198def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001199 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001200 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1201 []>;
1202}
1203
1204
1205//===----------------------------------------------------------------------===//
1206// DWARF Pseudo Instructions
1207//
1208
Evan Chengb783fa32007-07-19 01:14:50 +00001209def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210 "${:comment} .loc $file, $line, $col",
1211 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1212 (i32 imm:$file))]>;
1213
1214//===----------------------------------------------------------------------===//
1215// PowerPC Instruction Patterns
1216//
1217
1218// Arbitrary immediate support. Implement in terms of LIS/ORI.
1219def : Pat<(i32 imm:$imm),
1220 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1221
1222// Implement the 'not' operation with the NOR instruction.
1223def NOT : Pat<(not GPRC:$in),
1224 (NOR GPRC:$in, GPRC:$in)>;
1225
1226// ADD an arbitrary immediate.
1227def : Pat<(add GPRC:$in, imm:$imm),
1228 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1229// OR an arbitrary immediate.
1230def : Pat<(or GPRC:$in, imm:$imm),
1231 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1232// XOR an arbitrary immediate.
1233def : Pat<(xor GPRC:$in, imm:$imm),
1234 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1235// SUBFIC
1236def : Pat<(sub immSExt16:$imm, GPRC:$in),
1237 (SUBFIC GPRC:$in, imm:$imm)>;
1238
1239// SHL/SRL
1240def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1241 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1242def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1243 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1244
1245// ROTL
1246def : Pat<(rotl GPRC:$in, GPRC:$sh),
1247 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1248def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1249 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1250
1251// RLWNM
1252def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1253 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1254
1255// Calls
1256def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1257 (BL_Macho tglobaladdr:$dst)>;
1258def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1259 (BL_Macho texternalsym:$dst)>;
1260def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1261 (BL_ELF tglobaladdr:$dst)>;
1262def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1263 (BL_ELF texternalsym:$dst)>;
1264
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001265
1266def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
1267 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
1268
1269def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
1270 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
1271
1272def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
1273 (TCRETURNri CTRRC:$dst, imm:$imm)>;
1274
1275
1276
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001277// Hi and Lo for Darwin Global Addresses.
1278def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1279def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1280def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1281def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1282def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1283def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1284def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1285 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1286def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1287 (ADDIS GPRC:$in, tconstpool:$g)>;
1288def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1289 (ADDIS GPRC:$in, tjumptable:$g)>;
1290
1291// Fused negative multiply subtract, alternate pattern
1292def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1293 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1294 Requires<[FPContractions]>;
1295def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1296 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1297 Requires<[FPContractions]>;
1298
1299// Standard shifts. These are represented separately from the real shifts above
1300// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1301// amounts.
1302def : Pat<(sra GPRC:$rS, GPRC:$rB),
1303 (SRAW GPRC:$rS, GPRC:$rB)>;
1304def : Pat<(srl GPRC:$rS, GPRC:$rB),
1305 (SRW GPRC:$rS, GPRC:$rB)>;
1306def : Pat<(shl GPRC:$rS, GPRC:$rB),
1307 (SLW GPRC:$rS, GPRC:$rB)>;
1308
1309def : Pat<(zextloadi1 iaddr:$src),
1310 (LBZ iaddr:$src)>;
1311def : Pat<(zextloadi1 xaddr:$src),
1312 (LBZX xaddr:$src)>;
1313def : Pat<(extloadi1 iaddr:$src),
1314 (LBZ iaddr:$src)>;
1315def : Pat<(extloadi1 xaddr:$src),
1316 (LBZX xaddr:$src)>;
1317def : Pat<(extloadi8 iaddr:$src),
1318 (LBZ iaddr:$src)>;
1319def : Pat<(extloadi8 xaddr:$src),
1320 (LBZX xaddr:$src)>;
1321def : Pat<(extloadi16 iaddr:$src),
1322 (LHZ iaddr:$src)>;
1323def : Pat<(extloadi16 xaddr:$src),
1324 (LHZX xaddr:$src)>;
1325def : Pat<(extloadf32 iaddr:$src),
1326 (FMRSD (LFS iaddr:$src))>;
1327def : Pat<(extloadf32 xaddr:$src),
1328 (FMRSD (LFSX xaddr:$src))>;
1329
Evan Cheng4df1f9d2008-04-19 01:30:48 +00001330// Atomic operations
Evan Cheng0589b512008-04-19 02:30:38 +00001331def : Pat<(PPCcmp_unres immSExt16:$imm, GPRC:$rA, imm:$label),
1332 (CMP_UNRESwi GPRC:$rA, immSExt16:$imm, imm:$label)>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +00001333
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001334include "PPCInstrAltivec.td"
1335include "PPCInstr64Bit.td"