blob: 0673361be442724ee89ce133fafbe8cf6cd58ab8 [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
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056//===----------------------------------------------------------------------===//
57// PowerPC specific DAG Nodes.
58//
59
60def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>;
61def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
62def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
Chris Lattneref8d6082008-01-06 06:44:58 +000063def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx,
64 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065
Dale Johannesen3d8578b2007-10-10 01:01:31 +000066// This sequence is used for long double->int conversions. It changes the
67// bits in the FPSCR which is not modelled.
68def PPCmffs : SDNode<"PPCISD::MFFS", SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>,
69 [SDNPOutFlag]>;
70def PPCmtfsb0 : SDNode<"PPCISD::MTFSB0", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
71 [SDNPInFlag, SDNPOutFlag]>;
72def PPCmtfsb1 : SDNode<"PPCISD::MTFSB1", SDTypeProfile<0, 1, [SDTCisInt<0>]>,
73 [SDNPInFlag, SDNPOutFlag]>;
74def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp,
75 [SDNPInFlag, SDNPOutFlag]>;
76def PPCmtfsf : SDNode<"PPCISD::MTFSF", SDTypeProfile<1, 3,
77 [SDTCisVT<0, f64>, SDTCisInt<1>, SDTCisVT<2, f64>,
78 SDTCisVT<3, f64>]>,
79 [SDNPInFlag]>;
80
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081def PPCfsel : SDNode<"PPCISD::FSEL",
82 // Type constraint for fsel.
83 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
84 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
85
86def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
87def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
88def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
89def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
90
91def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
92
93// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
94// amounts. These nodes are generated by the multi-precision shift code.
Chris Lattnerdfebab92008-03-07 20:18:24 +000095def PPCsrl : SDNode<"PPCISD::SRL" , SDTIntShiftOp>;
96def PPCsra : SDNode<"PPCISD::SRA" , SDTIntShiftOp>;
97def PPCshl : SDNode<"PPCISD::SHL" , SDTIntShiftOp>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
99def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000100def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore,
101 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103// These are target-independent nodes, but have target-specific formats.
Bill Wendling7173da52007-11-13 09:19:02 +0000104def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendling7173da52007-11-13 09:19:02 +0000106def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd,
Bill Wendling22f8deb2007-11-13 00:44:25 +0000107 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108
109def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
110def PPCcall_Macho : SDNode<"PPCISD::CALL_Macho", SDT_PPCCall,
111 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
112def PPCcall_ELF : SDNode<"PPCISD::CALL_ELF", SDT_PPCCall,
113 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
114def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
115 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Chris Lattner3d254552008-01-15 22:02:54 +0000116def PPCbctrl_Macho : SDNode<"PPCISD::BCTRL_Macho", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000117 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
Chris Lattner3d254552008-01-15 22:02:54 +0000119def PPCbctrl_ELF : SDNode<"PPCISD::BCTRL_ELF", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000120 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121
Chris Lattner3d254552008-01-15 22:02:54 +0000122def retflag : SDNode<"PPCISD::RET_FLAG", SDTNone,
Bill Wendling6c02cd22008-02-27 06:33:05 +0000123 [SDNPHasChain, SDNPOptInFlag]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000125def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret,
126 [SDNPHasChain, SDNPOptInFlag]>;
127
128def PPCtailcall : SDNode<"PPCISD::TAILCALL", SDT_PPCCall,
129 [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
132def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>;
133
134def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
135 [SDNPHasChain, SDNPOptInFlag]>;
136
Chris Lattnerca4e0fe2008-01-10 05:12:37 +0000137def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
138 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000139def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
140 [SDNPHasChain, SDNPMayStore]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141
Evan Chengaf964df2008-07-12 02:23:19 +0000142// Instructions to support atomic operations
Evan Cheng0589b512008-04-19 02:30:38 +0000143def PPClarx : SDNode<"PPCISD::LARX", SDT_PPClarx,
144 [SDNPHasChain, SDNPMayLoad]>;
145def PPCstcx : SDNode<"PPCISD::STCX", SDT_PPCstcx,
146 [SDNPHasChain, SDNPMayStore]>;
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000147
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148// Instructions to support dynamic alloca.
149def SDTDynOp : SDTypeProfile<1, 2, []>;
150def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
151
152//===----------------------------------------------------------------------===//
153// PowerPC specific transformation functions and pattern fragments.
154//
155
156def SHL32 : SDNodeXForm<imm, [{
157 // Transformation function: 31 - imm
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000158 return getI32Imm(31 - N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159}]>;
160
161def SRL32 : SDNodeXForm<imm, [{
162 // Transformation function: 32 - imm
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000163 return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue()) : getI32Imm(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164}]>;
165
166def LO16 : SDNodeXForm<imm, [{
167 // Transformation function: get the low 16 bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000168 return getI32Imm((unsigned short)N->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169}]>;
170
171def HI16 : SDNodeXForm<imm, [{
172 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000173 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174}]>;
175
176def HA16 : SDNodeXForm<imm, [{
177 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000178 signed int Val = N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 return getI32Imm((Val - (signed short)Val) >> 16);
180}]>;
181def MB : SDNodeXForm<imm, [{
182 // Transformation function: get the start bit of a mask
Duncan Sandsfaccd252008-10-16 13:02:33 +0000183 unsigned mb = 0, me;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000184 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 return getI32Imm(mb);
186}]>;
187
188def ME : SDNodeXForm<imm, [{
189 // Transformation function: get the end bit of a mask
Duncan Sandsfaccd252008-10-16 13:02:33 +0000190 unsigned mb, me = 0;
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(me);
193}]>;
194def maskimm32 : PatLeaf<(imm), [{
195 // maskImm predicate - True if immediate is a run of ones.
196 unsigned mb, me;
197 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000198 return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 else
200 return false;
201}]>;
202
203def immSExt16 : PatLeaf<(imm), [{
204 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
205 // field. Used by instructions like 'addi'.
206 if (N->getValueType(0) == MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000207 return (int32_t)N->getZExtValue() == (short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 else
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000209 return (int64_t)N->getZExtValue() == (short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210}]>;
211def immZExt16 : PatLeaf<(imm), [{
212 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
213 // field. Used by instructions like 'ori'.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000214 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215}], LO16>;
216
217// imm16Shifted* - These match immediates where the low 16-bits are zero. There
218// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
219// identical in 32-bit mode, but in 64-bit mode, they return true if the
220// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
221// clear).
222def imm16ShiftedZExt : PatLeaf<(imm), [{
223 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
224 // immediate are set. Used by instructions like 'xoris'.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000225 return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226}], HI16>;
227
228def imm16ShiftedSExt : PatLeaf<(imm), [{
229 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
230 // immediate are set. Used by instructions like 'addis'. Identical to
231 // imm16ShiftedZExt in 32-bit mode.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000232 if (N->getZExtValue() & 0xFFFF) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233 if (N->getValueType(0) == MVT::i32)
234 return true;
235 // For 64-bit, make sure it is sext right.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000236 return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237}], HI16>;
238
239
240//===----------------------------------------------------------------------===//
241// PowerPC Flag Definitions.
242
243class isPPC64 { bit PPC64 = 1; }
244class isDOT {
245 list<Register> Defs = [CR0];
246 bit RC = 1;
247}
248
249class RegConstraint<string C> {
250 string Constraints = C;
251}
252class NoEncode<string E> {
253 string DisableEncoding = E;
254}
255
256
257//===----------------------------------------------------------------------===//
258// PowerPC Operand Definitions.
259
260def s5imm : Operand<i32> {
261 let PrintMethod = "printS5ImmOperand";
262}
263def u5imm : Operand<i32> {
264 let PrintMethod = "printU5ImmOperand";
265}
266def u6imm : Operand<i32> {
267 let PrintMethod = "printU6ImmOperand";
268}
269def s16imm : Operand<i32> {
270 let PrintMethod = "printS16ImmOperand";
271}
272def u16imm : Operand<i32> {
273 let PrintMethod = "printU16ImmOperand";
274}
275def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing.
276 let PrintMethod = "printS16X4ImmOperand";
277}
278def target : Operand<OtherVT> {
279 let PrintMethod = "printBranchOperand";
280}
281def calltarget : Operand<iPTR> {
282 let PrintMethod = "printCallOperand";
283}
284def aaddr : Operand<iPTR> {
285 let PrintMethod = "printAbsAddrOperand";
286}
287def piclabel: Operand<iPTR> {
288 let PrintMethod = "printPICLabel";
289}
290def symbolHi: Operand<i32> {
291 let PrintMethod = "printSymbolHi";
292}
293def symbolLo: Operand<i32> {
294 let PrintMethod = "printSymbolLo";
295}
296def crbitm: Operand<i8> {
297 let PrintMethod = "printcrbitm";
298}
299// Address operands
300def memri : Operand<iPTR> {
301 let PrintMethod = "printMemRegImm";
302 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
303}
304def memrr : Operand<iPTR> {
305 let PrintMethod = "printMemRegReg";
306 let MIOperandInfo = (ops ptr_rc, ptr_rc);
307}
308def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
309 let PrintMethod = "printMemRegImmShifted";
310 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
311}
312
313// PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg
314// that doesn't matter.
315def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
Nate Begeman78297d82008-02-13 02:58:33 +0000316 (ops (i32 20), (i32 zero_reg))> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 let PrintMethod = "printPredicateOperand";
318}
319
320// Define PowerPC specific addressing mode.
321def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
322def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
323def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
324def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
325
326/// This is just the offset part of iaddr, used for preinc.
327def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
328
329//===----------------------------------------------------------------------===//
330// PowerPC Instruction Predicate Definitions.
331def FPContractions : Predicate<"!NoExcessFPPrecision">;
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000332def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
333def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334
335
336//===----------------------------------------------------------------------===//
337// PowerPC Instruction Definitions.
338
339// Pseudo-instructions:
340
341let hasCtrlDep = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000342let Defs = [R1], Uses = [R1] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000343def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 "${:comment} ADJCALLSTACKDOWN",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000345 [(callseq_start timm:$amt)]>;
Bill Wendling22f8deb2007-11-13 00:44:25 +0000346def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 "${:comment} ADJCALLSTACKUP",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000348 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000349}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350
Evan Chengb783fa32007-07-19 01:14:50 +0000351def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 "UPDATE_VRSAVE $rD, $rS", []>;
353}
354
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000355let Defs = [R1], Uses = [R1] in
Evan Chengb783fa32007-07-19 01:14:50 +0000356def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 "${:comment} DYNALLOC $result, $negsize, $fpsi",
358 [(set GPRC:$result,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000359 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
362// scheduler into a branch sequence.
363let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
364 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000365 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
367 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000368 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
370 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000371 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
373 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000374 def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
376 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000377 def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
379 []>;
380}
381
Bill Wendlinga1877c52008-03-03 22:19:16 +0000382// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
383// scavenge a register for it.
384def SPILL_CR : Pseudo<(outs), (ins GPRC:$cond, memri:$F),
385 "${:comment} SPILL_CR $cond $F", []>;
386
Evan Cheng37e7c752007-07-21 00:34:19 +0000387let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dale Johannesen595432b2008-10-23 20:41:28 +0000388 let isReturn = 1, Uses = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000389 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 "b${p:cc}lr ${p:reg}", BrB,
391 [(retflag)]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000392 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in
Owen Andersonf8053082007-11-12 07:39:39 +0000393 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394}
395
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000397 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 PPC970_Unit_BRU;
399
Evan Cheng37e7c752007-07-21 00:34:19 +0000400let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000402 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 "b $dst", BrB,
404 [(br bb:$dst)]>;
405 }
406
407 // BCC represents an arbitrary conditional branch on a predicate.
408 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
409 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000410 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 "b${cond:cc} ${cond:reg}, $dst"
412 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
413}
414
415// Macho ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000416let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 // All calls clobber the non-callee saved registers...
418 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
419 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
420 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
421 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000422 CR0,CR1,CR5,CR6,CR7,
423 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
424 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 // Convenient aliases for call instructions
426 def BL_Macho : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000427 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 "bl $func", BrB, []>; // See Pat patterns below.
429 def BLA_Macho : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000430 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000432 let Uses = [CTR] in {
433 def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000434 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000436 [(PPCbctrl_Macho)]>, Requires<[In32BitMode]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000437 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438}
439
440// ELF ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000441let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 // All calls clobber the non-callee saved registers...
443 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
444 F0,F1,F2,F3,F4,F5,F6,F7,F8,
445 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
446 LR,CTR,
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +0000447 CR0,CR1,CR5,CR6,CR7,
448 CR0LT,CR0GT,CR0EQ,CR0UN,CR1LT,CR1GT,CR1EQ,CR1UN,CR5LT,CR5GT,CR5EQ,
449 CR5UN,CR6LT,CR6GT,CR6EQ,CR6UN,CR7LT,CR7GT,CR7EQ,CR7UN] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 // Convenient aliases for call instructions
451 def BL_ELF : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000452 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 "bl $func", BrB, []>; // See Pat patterns below.
454 def BLA_ELF : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000455 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 "bla $func", BrB,
457 [(PPCcall_ELF (i32 imm:$func))]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000458 let Uses = [CTR] in {
459 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000460 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 "bctrl", BrB,
Evan Cheng9d99c5e2007-10-23 06:42:42 +0000462 [(PPCbctrl_ELF)]>, Requires<[In32BitMode]>;
Dale Johannesen595432b2008-10-23 20:41:28 +0000463 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464}
465
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000466
467let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
468def TCRETURNdi :Pseudo< (outs),
469 (ins calltarget:$dst, i32imm:$offset, variable_ops),
470 "#TC_RETURNd $dst $offset",
471 []>;
472
473
474let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
475def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset, variable_ops),
476 "#TC_RETURNa $func $offset",
477 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
478
479let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
480def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset, variable_ops),
481 "#TC_RETURNr $dst $offset",
482 []>;
483
484
485let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesen595432b2008-10-23 20:41:28 +0000486 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR] in
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000487def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
488 Requires<[In32BitMode]>;
489
490
491
492let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
493 isBarrier = 1, isCall = 1, isReturn = 1 in
494def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
495 "b $dst", BrB,
496 []>;
497
498
499let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
500 isBarrier = 1, isCall = 1, isReturn = 1 in
501def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
502 "ba $dst", BrB,
503 []>;
504
505
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000507def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
509 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000510def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
512 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000513def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
515 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000516def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
518 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000519def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
521 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000522def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
524 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000525def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
527 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000528def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
530 PPC970_DGroup_Single;
531
Evan Chengaf964df2008-07-12 02:23:19 +0000532// Atomic operations
533let usesCustomDAGSchedInserter = 1 in {
534 let Uses = [CR0] in {
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000535 def ATOMIC_LOAD_ADD_I8 : Pseudo<
536 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
537 "${:comment} ATOMIC_LOAD_ADD_I8 PSEUDO!",
538 [(set GPRC:$dst, (atomic_load_add_8 xoaddr:$ptr, GPRC:$incr))]>;
539 def ATOMIC_LOAD_SUB_I8 : Pseudo<
540 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
541 "${:comment} ATOMIC_LOAD_SUB_I8 PSEUDO!",
542 [(set GPRC:$dst, (atomic_load_sub_8 xoaddr:$ptr, GPRC:$incr))]>;
543 def ATOMIC_LOAD_AND_I8 : Pseudo<
544 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
545 "${:comment} ATOMIC_LOAD_AND_I8 PSEUDO!",
546 [(set GPRC:$dst, (atomic_load_and_8 xoaddr:$ptr, GPRC:$incr))]>;
547 def ATOMIC_LOAD_OR_I8 : Pseudo<
548 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
549 "${:comment} ATOMIC_LOAD_OR_I8 PSEUDO!",
550 [(set GPRC:$dst, (atomic_load_or_8 xoaddr:$ptr, GPRC:$incr))]>;
551 def ATOMIC_LOAD_XOR_I8 : Pseudo<
552 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
553 "${:comment} ATOMIC_LOAD_XOR_I8 PSEUDO!",
554 [(set GPRC:$dst, (atomic_load_xor_8 xoaddr:$ptr, GPRC:$incr))]>;
555 def ATOMIC_LOAD_NAND_I8 : Pseudo<
556 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
557 "${:comment} ATOMIC_LOAD_NAND_I8 PSEUDO!",
558 [(set GPRC:$dst, (atomic_load_nand_8 xoaddr:$ptr, GPRC:$incr))]>;
559 def ATOMIC_LOAD_ADD_I16 : Pseudo<
560 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
561 "${:comment} ATOMIC_LOAD_ADD_I16 PSEUDO!",
562 [(set GPRC:$dst, (atomic_load_add_16 xoaddr:$ptr, GPRC:$incr))]>;
563 def ATOMIC_LOAD_SUB_I16 : Pseudo<
564 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
565 "${:comment} ATOMIC_LOAD_SUB_I16 PSEUDO!",
566 [(set GPRC:$dst, (atomic_load_sub_16 xoaddr:$ptr, GPRC:$incr))]>;
567 def ATOMIC_LOAD_AND_I16 : Pseudo<
568 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
569 "${:comment} ATOMIC_LOAD_AND_I16 PSEUDO!",
570 [(set GPRC:$dst, (atomic_load_and_16 xoaddr:$ptr, GPRC:$incr))]>;
571 def ATOMIC_LOAD_OR_I16 : Pseudo<
572 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
573 "${:comment} ATOMIC_LOAD_OR_I16 PSEUDO!",
574 [(set GPRC:$dst, (atomic_load_or_16 xoaddr:$ptr, GPRC:$incr))]>;
575 def ATOMIC_LOAD_XOR_I16 : Pseudo<
576 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
577 "${:comment} ATOMIC_LOAD_XOR_I16 PSEUDO!",
578 [(set GPRC:$dst, (atomic_load_xor_16 xoaddr:$ptr, GPRC:$incr))]>;
579 def ATOMIC_LOAD_NAND_I16 : Pseudo<
580 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
581 "${:comment} ATOMIC_LOAD_NAND_I16 PSEUDO!",
582 [(set GPRC:$dst, (atomic_load_nand_16 xoaddr:$ptr, GPRC:$incr))]>;
Evan Chengaf964df2008-07-12 02:23:19 +0000583 def ATOMIC_LOAD_ADD_I32 : Pseudo<
584 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
585 "${:comment} ATOMIC_LOAD_ADD_I32 PSEUDO!",
Dale Johannesencdc7c752008-08-25 21:09:52 +0000586 [(set GPRC:$dst, (atomic_load_add_32 xoaddr:$ptr, GPRC:$incr))]>;
Dale Johannesene91a2d62008-08-25 22:34:37 +0000587 def ATOMIC_LOAD_SUB_I32 : Pseudo<
588 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
589 "${:comment} ATOMIC_LOAD_SUB_I32 PSEUDO!",
590 [(set GPRC:$dst, (atomic_load_sub_32 xoaddr:$ptr, GPRC:$incr))]>;
591 def ATOMIC_LOAD_AND_I32 : Pseudo<
592 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
593 "${:comment} ATOMIC_LOAD_AND_I32 PSEUDO!",
594 [(set GPRC:$dst, (atomic_load_and_32 xoaddr:$ptr, GPRC:$incr))]>;
595 def ATOMIC_LOAD_OR_I32 : Pseudo<
596 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
597 "${:comment} ATOMIC_LOAD_OR_I32 PSEUDO!",
598 [(set GPRC:$dst, (atomic_load_or_32 xoaddr:$ptr, GPRC:$incr))]>;
599 def ATOMIC_LOAD_XOR_I32 : Pseudo<
600 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
601 "${:comment} ATOMIC_LOAD_XOR_I32 PSEUDO!",
602 [(set GPRC:$dst, (atomic_load_xor_32 xoaddr:$ptr, GPRC:$incr))]>;
603 def ATOMIC_LOAD_NAND_I32 : Pseudo<
604 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$incr),
605 "${:comment} ATOMIC_LOAD_NAND_I32 PSEUDO!",
606 [(set GPRC:$dst, (atomic_load_nand_32 xoaddr:$ptr, GPRC:$incr))]>;
607
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000608 def ATOMIC_CMP_SWAP_I8 : Pseudo<
609 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
610 "${:comment} ATOMIC_CMP_SWAP_I8 PSEUDO!",
611 [(set GPRC:$dst,
612 (atomic_cmp_swap_8 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
613 def ATOMIC_CMP_SWAP_I16 : Pseudo<
614 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
615 "${:comment} ATOMIC_CMP_SWAP_I16 PSEUDO!",
616 [(set GPRC:$dst,
617 (atomic_cmp_swap_16 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
Dale Johannesene6f1e442008-08-22 03:49:10 +0000618 def ATOMIC_CMP_SWAP_I32 : Pseudo<
619 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$old, GPRC:$new),
620 "${:comment} ATOMIC_CMP_SWAP_I32 PSEUDO!",
621 [(set GPRC:$dst,
Dale Johannesencdc7c752008-08-25 21:09:52 +0000622 (atomic_cmp_swap_32 xoaddr:$ptr, GPRC:$old, GPRC:$new))]>;
Dale Johannesene91a2d62008-08-25 22:34:37 +0000623
Dale Johannesen97ed14a2008-08-28 17:53:09 +0000624 def ATOMIC_SWAP_I8 : Pseudo<
625 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
626 "${:comment} ATOMIC_SWAP_I8 PSEUDO!",
627 [(set GPRC:$dst, (atomic_swap_8 xoaddr:$ptr, GPRC:$new))]>;
628 def ATOMIC_SWAP_I16 : Pseudo<
629 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
630 "${:comment} ATOMIC_SWAP_I16 PSEUDO!",
631 [(set GPRC:$dst, (atomic_swap_16 xoaddr:$ptr, GPRC:$new))]>;
Dale Johannesencdc7c752008-08-25 21:09:52 +0000632 def ATOMIC_SWAP_I32 : Pseudo<
633 (outs GPRC:$dst), (ins memrr:$ptr, GPRC:$new),
634 "${:comment} ATOMIC_SWAP_I32 PSEUDO!",
635 [(set GPRC:$dst, (atomic_swap_32 xoaddr:$ptr, GPRC:$new))]>;
Dale Johannesene6f1e442008-08-22 03:49:10 +0000636 }
Evan Cheng4df1f9d2008-04-19 01:30:48 +0000637}
638
Evan Chengaf964df2008-07-12 02:23:19 +0000639// Instructions to support atomic operations
640def LWARX : XForm_1<31, 20, (outs GPRC:$rD), (ins memrr:$src),
641 "lwarx $rD, $src", LdStLWARX,
642 [(set GPRC:$rD, (PPClarx xoaddr:$src))]>;
643
644let Defs = [CR0] in
645def STWCX : XForm_1<31, 150, (outs), (ins GPRC:$rS, memrr:$dst),
646 "stwcx. $rS, $dst", LdStSTWCX,
647 [(PPCstcx GPRC:$rS, xoaddr:$dst)]>,
648 isDOT;
649
Nate Begemanf46776e2008-08-11 17:36:31 +0000650let isBarrier = 1, hasCtrlDep = 1 in
651def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStGeneral, [(trap)]>;
652
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653//===----------------------------------------------------------------------===//
654// PPC32 Load Instructions.
655//
656
657// Unindexed (r+i) Loads.
Chris Lattner1a1932c2008-01-06 23:38:27 +0000658let isSimpleLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000659def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 "lbz $rD, $src", LdStGeneral,
661 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000662def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 "lha $rD, $src", LdStLHA,
664 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
665 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000666def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 "lhz $rD, $src", LdStGeneral,
668 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000669def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 "lwz $rD, $src", LdStGeneral,
671 [(set GPRC:$rD, (load iaddr:$src))]>;
672
Evan Chengb783fa32007-07-19 01:14:50 +0000673def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 "lfs $rD, $src", LdStLFDU,
675 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000676def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 "lfd $rD, $src", LdStLFD,
678 [(set F8RC:$rD, (load iaddr:$src))]>;
679
680
681// Unindexed (r+i) Loads with Update (preinc).
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000682def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 "lbzu $rD, $addr", LdStGeneral,
684 []>, RegConstraint<"$addr.reg = $ea_result">,
685 NoEncode<"$ea_result">;
686
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000687def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 "lhau $rD, $addr", LdStGeneral,
689 []>, RegConstraint<"$addr.reg = $ea_result">,
690 NoEncode<"$ea_result">;
691
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000692def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693 "lhzu $rD, $addr", LdStGeneral,
694 []>, RegConstraint<"$addr.reg = $ea_result">,
695 NoEncode<"$ea_result">;
696
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000697def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 "lwzu $rD, $addr", LdStGeneral,
699 []>, RegConstraint<"$addr.reg = $ea_result">,
700 NoEncode<"$ea_result">;
701
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000702def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703 "lfs $rD, $addr", LdStLFDU,
704 []>, RegConstraint<"$addr.reg = $ea_result">,
705 NoEncode<"$ea_result">;
706
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000707def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 "lfd $rD, $addr", LdStLFD,
709 []>, RegConstraint<"$addr.reg = $ea_result">,
710 NoEncode<"$ea_result">;
711}
712
713// Indexed (r+r) Loads.
714//
Chris Lattner1a1932c2008-01-06 23:38:27 +0000715let isSimpleLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000716def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 "lbzx $rD, $src", LdStGeneral,
718 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000719def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 "lhax $rD, $src", LdStLHA,
721 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
722 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000723def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 "lhzx $rD, $src", LdStGeneral,
725 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000726def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727 "lwzx $rD, $src", LdStGeneral,
728 [(set GPRC:$rD, (load xaddr:$src))]>;
729
730
Evan Chengb783fa32007-07-19 01:14:50 +0000731def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 "lhbrx $rD, $src", LdStGeneral,
733 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000734def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 "lwbrx $rD, $src", LdStGeneral,
736 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
737
Evan Chengb783fa32007-07-19 01:14:50 +0000738def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 "lfsx $frD, $src", LdStLFDU,
740 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000741def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 "lfdx $frD, $src", LdStLFDU,
743 [(set F8RC:$frD, (load xaddr:$src))]>;
744}
745
746//===----------------------------------------------------------------------===//
747// PPC32 Store Instructions.
748//
749
750// Unindexed (r+i) Stores.
Chris Lattner8f34d942008-01-06 05:53:26 +0000751let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000752def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 "stb $rS, $src", LdStGeneral,
754 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000755def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 "sth $rS, $src", LdStGeneral,
757 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000758def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 "stw $rS, $src", LdStGeneral,
760 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000761def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 "stfs $rS, $dst", LdStUX,
763 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000764def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 "stfd $rS, $dst", LdStUX,
766 [(store F8RC:$rS, iaddr:$dst)]>;
767}
768
769// Unindexed (r+i) Stores with Update (preinc).
Chris Lattner8f34d942008-01-06 05:53:26 +0000770let PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000771def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 symbolLo:$ptroff, ptr_rc:$ptrreg),
773 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
774 [(set ptr_rc:$ea_res,
775 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
776 iaddroff:$ptroff))]>,
777 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000778def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779 symbolLo:$ptroff, ptr_rc:$ptrreg),
780 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
781 [(set ptr_rc:$ea_res,
782 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
783 iaddroff:$ptroff))]>,
784 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000785def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786 symbolLo:$ptroff, ptr_rc:$ptrreg),
787 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
788 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
789 iaddroff:$ptroff))]>,
790 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000791def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 symbolLo:$ptroff, ptr_rc:$ptrreg),
793 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
794 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
795 iaddroff:$ptroff))]>,
796 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000797def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 symbolLo:$ptroff, ptr_rc:$ptrreg),
799 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
800 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
801 iaddroff:$ptroff))]>,
802 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
803}
804
805
806// Indexed (r+r) Stores.
807//
Chris Lattner8f34d942008-01-06 05:53:26 +0000808let PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000809def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810 "stbx $rS, $dst", LdStGeneral,
811 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
812 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000813def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 "sthx $rS, $dst", LdStGeneral,
815 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
816 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000817def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 "stwx $rS, $dst", LdStGeneral,
819 [(store GPRC:$rS, xaddr:$dst)]>,
820 PPC970_DGroup_Cracked;
Chris Lattner8f34d942008-01-06 05:53:26 +0000821
Chris Lattner6887b142008-01-06 08:36:04 +0000822let mayStore = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000823def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 "stwux $rS, $rA, $rB", LdStGeneral,
825 []>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000826}
Evan Chengb783fa32007-07-19 01:14:50 +0000827def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 "sthbrx $rS, $dst", LdStGeneral,
829 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
830 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000831def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 "stwbrx $rS, $dst", LdStGeneral,
833 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
834 PPC970_DGroup_Cracked;
835
Evan Chengb783fa32007-07-19 01:14:50 +0000836def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 "stfiwx $frS, $dst", LdStUX,
838 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Chris Lattneref8d6082008-01-06 06:44:58 +0000839
Evan Chengb783fa32007-07-19 01:14:50 +0000840def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 "stfsx $frS, $dst", LdStUX,
842 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000843def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 "stfdx $frS, $dst", LdStUX,
845 [(store F8RC:$frS, xaddr:$dst)]>;
846}
847
Dale Johannesen8d4de232008-08-22 17:20:54 +0000848let isBarrier = 1 in
849def SYNC : XForm_24_sync<31, 598, (outs), (ins),
850 "sync", LdStSync,
851 [(int_ppc_sync)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852
853//===----------------------------------------------------------------------===//
854// PPC32 Arithmetic Instructions.
855//
856
857let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000858def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 "addi $rD, $rA, $imm", IntGeneral,
860 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000861def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 "addic $rD, $rA, $imm", IntGeneral,
863 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
864 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000865def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 "addic. $rD, $rA, $imm", IntGeneral,
867 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000868def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 "addis $rD, $rA, $imm", IntGeneral,
870 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000871def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 "la $rD, $sym($rA)", IntGeneral,
873 [(set GPRC:$rD, (add GPRC:$rA,
874 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000875def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876 "mulli $rD, $rA, $imm", IntMulLI,
877 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000878def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 "subfic $rD, $rA, $imm", IntGeneral,
880 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000881
Chris Lattner17dab4a2008-01-10 05:45:39 +0000882let isReMaterializable = 1 in {
Bill Wendlingb958b0d2007-12-07 21:42:31 +0000883 def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
884 "li $rD, $imm", IntGeneral,
885 [(set GPRC:$rD, immSExt16:$imm)]>;
886 def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
887 "lis $rD, $imm", IntGeneral,
888 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
889}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890}
891
892let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000893def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000894 "andi. $dst, $src1, $src2", IntGeneral,
895 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
896 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000897def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000898 "andis. $dst, $src1, $src2", IntGeneral,
899 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
900 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000901def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902 "ori $dst, $src1, $src2", IntGeneral,
903 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000904def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 "oris $dst, $src1, $src2", IntGeneral,
906 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000907def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 "xori $dst, $src1, $src2", IntGeneral,
909 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000910def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 "xoris $dst, $src1, $src2", IntGeneral,
912 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000913def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000914 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000915def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000917def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918 "cmplwi $dst, $src1, $src2", IntCompare>;
919}
920
921
922let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000923def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 "nand $rA, $rS, $rB", IntGeneral,
925 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000926def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 "and $rA, $rS, $rB", IntGeneral,
928 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000929def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 "andc $rA, $rS, $rB", IntGeneral,
931 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000932def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933 "or $rA, $rS, $rB", IntGeneral,
934 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000935def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 "nor $rA, $rS, $rB", IntGeneral,
937 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000938def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 "orc $rA, $rS, $rB", IntGeneral,
940 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000941def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000942 "eqv $rA, $rS, $rB", IntGeneral,
943 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000944def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 "xor $rA, $rS, $rB", IntGeneral,
946 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000947def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000948 "slw $rA, $rS, $rB", IntGeneral,
949 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000950def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 "srw $rA, $rS, $rB", IntGeneral,
952 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000953def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 "sraw $rA, $rS, $rB", IntShift,
955 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
956}
957
958let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000959def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 "srawi $rA, $rS, $SH", IntShift,
961 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000962def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 "cntlzw $rA, $rS", IntGeneral,
964 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000965def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 "extsb $rA, $rS", IntGeneral,
967 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000968def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 "extsh $rA, $rS", IntGeneral,
970 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
971
Evan Chengb783fa32007-07-19 01:14:50 +0000972def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000974def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 "cmplw $crD, $rA, $rB", IntCompare>;
976}
977let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000978//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000980def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000982def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 "fcmpu $crD, $fA, $fB", FPCompare>;
984
Evan Chengb783fa32007-07-19 01:14:50 +0000985def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 "fctiwz $frD, $frB", FPGeneral,
987 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000988def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 "frsp $frD, $frB", FPGeneral,
990 [(set F4RC:$frD, (fround F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000991def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992 "fsqrt $frD, $frB", FPSqrt,
993 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000994def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 "fsqrts $frD, $frB", FPSqrt,
996 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
997}
998
999/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
1000///
1001/// Note that these are defined as pseudo-ops on the PPC970 because they are
1002/// often coalesced away and we don't want the dispatch group builder to think
1003/// that they will fill slots (which could cause the load of a LSU reject to
1004/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +00001005def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 "fmr $frD, $frB", FPGeneral,
1007 []>, // (set F4RC:$frD, F4RC:$frB)
1008 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +00001009def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 "fmr $frD, $frB", FPGeneral,
1011 []>, // (set F8RC:$frD, F8RC:$frB)
1012 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +00001013def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 "fmr $frD, $frB", FPGeneral,
1015 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
1016 PPC970_Unit_Pseudo;
1017
1018let PPC970_Unit = 3 in { // FPU Operations.
1019// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +00001020def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 "fabs $frD, $frB", FPGeneral,
1022 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001023def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024 "fabs $frD, $frB", FPGeneral,
1025 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001026def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 "fnabs $frD, $frB", FPGeneral,
1028 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001029def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 "fnabs $frD, $frB", FPGeneral,
1031 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001032def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 "fneg $frD, $frB", FPGeneral,
1034 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001035def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 "fneg $frD, $frB", FPGeneral,
1037 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
1038}
1039
1040
1041// XL-Form instructions. condition register logical ops.
1042//
Evan Chengb783fa32007-07-19 01:14:50 +00001043def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 "mcrf $BF, $BFA", BrMCR>,
1045 PPC970_DGroup_First, PPC970_Unit_CRU;
1046
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +00001047def CREQV : XLForm_1<19, 289, (outs CRBITRC:$CRD),
1048 (ins CRBITRC:$CRA, CRBITRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 "creqv $CRD, $CRA, $CRB", BrCR,
1050 []>;
1051
Nicolas Geoffrayd01feb22008-03-10 14:12:10 +00001052def CROR : XLForm_1<19, 449, (outs CRBITRC:$CRD),
1053 (ins CRBITRC:$CRA, CRBITRC:$CRB),
1054 "cror $CRD, $CRA, $CRB", BrCR,
1055 []>;
1056
1057def CRSET : XLForm_1_ext<19, 289, (outs CRBITRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 "creqv $dst, $dst, $dst", BrCR,
1059 []>;
1060
1061// XFX-Form instructions. Instructions that deal with SPRs.
1062//
Dale Johannesen595432b2008-10-23 20:41:28 +00001063let Uses = [CTR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001064def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
1065 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001067}
1068let Defs = [CTR], Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001069def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
1070 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 PPC970_DGroup_First, PPC970_Unit_FXU;
1072}
1073
Dale Johannesen595432b2008-10-23 20:41:28 +00001074let Defs = [LR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001075def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
1076 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001078}
1079let Uses = [LR] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001080def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
1081 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen595432b2008-10-23 20:41:28 +00001083}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084
1085// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1086// a GPR on the PPC970. As such, copies in and out have the same performance
1087// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +00001088def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089 "mtspr 256, $rS", IntGeneral>,
1090 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +00001091def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 "mfspr $rT, 256", IntGeneral>,
1093 PPC970_DGroup_First, PPC970_Unit_FXU;
1094
Evan Chengb783fa32007-07-19 01:14:50 +00001095def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 "mtcrf $FXM, $rS", BrMCRX>,
1097 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen586b75d2008-10-24 22:08:01 +00001098let Uses = [CR0, CR1, CR2, CR3, CR4, CR5, CR6, CR7] in {
Evan Chengb783fa32007-07-19 01:14:50 +00001099def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen586b75d2008-10-24 22:08:01 +00001101}
Evan Chengb783fa32007-07-19 01:14:50 +00001102def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103 "mfcr $rT, $FXM", SprMFCR>,
1104 PPC970_DGroup_First, PPC970_Unit_CRU;
1105
Dale Johannesen3d8578b2007-10-10 01:01:31 +00001106// Instructions to manipulate FPSCR. Only long double handling uses these.
1107// FPSCR is not modelled; we use the SDNode Flag to keep things in order.
1108
1109def MFFS : XForm_42<63, 583, (outs F8RC:$rT), (ins),
1110 "mffs $rT", IntMFFS,
1111 [(set F8RC:$rT, (PPCmffs))]>,
1112 PPC970_DGroup_Single, PPC970_Unit_FPU;
1113def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
1114 "mtfsb0 $FM", IntMTFSB0,
1115 [(PPCmtfsb0 (i32 imm:$FM))]>,
1116 PPC970_DGroup_Single, PPC970_Unit_FPU;
1117def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
1118 "mtfsb1 $FM", IntMTFSB0,
1119 [(PPCmtfsb1 (i32 imm:$FM))]>,
1120 PPC970_DGroup_Single, PPC970_Unit_FPU;
1121def FADDrtz: AForm_2<63, 21,
1122 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
1123 "fadd $FRT, $FRA, $FRB", FPGeneral,
1124 [(set F8RC:$FRT, (PPCfaddrtz F8RC:$FRA, F8RC:$FRB))]>,
1125 PPC970_DGroup_Single, PPC970_Unit_FPU;
1126// MTFSF does not actually produce an FP result. We pretend it copies
1127// input reg B to the output. If we didn't do this it would look like the
1128// instruction had no outputs (because we aren't modelling the FPSCR) and
1129// it would be deleted.
1130def MTFSF : XFLForm<63, 711, (outs F8RC:$FRA),
1131 (ins i32imm:$FM, F8RC:$rT, F8RC:$FRB),
1132 "mtfsf $FM, $rT", "$FRB = $FRA", IntMTFSB0,
1133 [(set F8RC:$FRA, (PPCmtfsf (i32 imm:$FM),
1134 F8RC:$rT, F8RC:$FRB))]>,
1135 PPC970_DGroup_Single, PPC970_Unit_FPU;
1136
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137let PPC970_Unit = 1 in { // FXU Operations.
1138
1139// XO-Form instructions. Arithmetic instructions that can set overflow bit
1140//
Evan Chengb783fa32007-07-19 01:14:50 +00001141def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 "add $rT, $rA, $rB", IntGeneral,
1143 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001144def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001145 "addc $rT, $rA, $rB", IntGeneral,
1146 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
1147 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001148def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 "adde $rT, $rA, $rB", IntGeneral,
1150 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001151def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152 "divw $rT, $rA, $rB", IntDivW,
1153 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
1154 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001155def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 "divwu $rT, $rA, $rB", IntDivW,
1157 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
1158 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001159def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160 "mulhw $rT, $rA, $rB", IntMulHW,
1161 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001162def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 "mulhwu $rT, $rA, $rB", IntMulHWU,
1164 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001165def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166 "mullw $rT, $rA, $rB", IntMulHW,
1167 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001168def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001169 "subf $rT, $rA, $rB", IntGeneral,
1170 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001171def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001172 "subfc $rT, $rA, $rB", IntGeneral,
1173 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
1174 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +00001175def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001176 "subfe $rT, $rA, $rB", IntGeneral,
1177 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001178def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 "addme $rT, $rA", IntGeneral,
1180 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001181def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001182 "addze $rT, $rA", IntGeneral,
1183 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001184def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001185 "neg $rT, $rA", IntGeneral,
1186 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001187def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001188 "subfme $rT, $rA", IntGeneral,
1189 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001190def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191 "subfze $rT, $rA", IntGeneral,
1192 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
1193}
1194
1195// A-Form instructions. Most of the instructions executed in the FPU are of
1196// this type.
1197//
1198let PPC970_Unit = 3 in { // FPU Operations.
1199def FMADD : AForm_1<63, 29,
Evan Chengb783fa32007-07-19 01:14:50 +00001200 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1202 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1203 F8RC:$FRB))]>,
1204 Requires<[FPContractions]>;
1205def FMADDS : AForm_1<59, 29,
Evan Chengb783fa32007-07-19 01:14:50 +00001206 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001207 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1208 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1209 F4RC:$FRB))]>,
1210 Requires<[FPContractions]>;
1211def FMSUB : AForm_1<63, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001212 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001213 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1214 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1215 F8RC:$FRB))]>,
1216 Requires<[FPContractions]>;
1217def FMSUBS : AForm_1<59, 28,
Evan Chengb783fa32007-07-19 01:14:50 +00001218 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001219 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1220 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1221 F4RC:$FRB))]>,
1222 Requires<[FPContractions]>;
1223def FNMADD : AForm_1<63, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001224 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001225 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
1226 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
1227 F8RC:$FRB)))]>,
1228 Requires<[FPContractions]>;
1229def FNMADDS : AForm_1<59, 31,
Evan Chengb783fa32007-07-19 01:14:50 +00001230 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001231 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
1232 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
1233 F4RC:$FRB)))]>,
1234 Requires<[FPContractions]>;
1235def FNMSUB : AForm_1<63, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001236 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001237 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
1238 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
1239 F8RC:$FRB)))]>,
1240 Requires<[FPContractions]>;
1241def FNMSUBS : AForm_1<59, 30,
Evan Chengb783fa32007-07-19 01:14:50 +00001242 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001243 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
1244 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
1245 F4RC:$FRB)))]>,
1246 Requires<[FPContractions]>;
1247// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1248// having 4 of these, force the comparison to always be an 8-byte double (code
1249// should use an FMRSD if the input comparison value really wants to be a float)
1250// and 4/8 byte forms for the result and operand type..
1251def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001252 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1254 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
1255def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +00001256 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
1258 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
1259def FADD : AForm_2<63, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001260 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261 "fadd $FRT, $FRA, $FRB", FPGeneral,
1262 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1263def FADDS : AForm_2<59, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001264 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265 "fadds $FRT, $FRA, $FRB", FPGeneral,
1266 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1267def FDIV : AForm_2<63, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001268 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001269 "fdiv $FRT, $FRA, $FRB", FPDivD,
1270 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1271def FDIVS : AForm_2<59, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001272 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273 "fdivs $FRT, $FRA, $FRB", FPDivS,
1274 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1275def FMUL : AForm_3<63, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001276 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001277 "fmul $FRT, $FRA, $FRB", FPFused,
1278 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1279def FMULS : AForm_3<59, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001280 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1282 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1283def FSUB : AForm_2<63, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001284 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285 "fsub $FRT, $FRA, $FRB", FPGeneral,
1286 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1287def FSUBS : AForm_2<59, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001288 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001289 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1290 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1291}
1292
1293let PPC970_Unit = 1 in { // FXU Operations.
1294// M-Form instructions. rotate and mask instructions.
1295//
1296let isCommutable = 1 in {
1297// RLWIMI can be commuted if the rotate amount is zero.
1298def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001299 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1301 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1302 NoEncode<"$rSi">;
1303}
1304def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001305 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1307 []>;
1308def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001309 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1311 []>, isDOT, PPC970_DGroup_Cracked;
1312def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001313 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1315 []>;
1316}
1317
1318
1319//===----------------------------------------------------------------------===//
1320// DWARF Pseudo Instructions
1321//
1322
Evan Chengb783fa32007-07-19 01:14:50 +00001323def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001324 "${:comment} .loc $file, $line, $col",
1325 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1326 (i32 imm:$file))]>;
1327
1328//===----------------------------------------------------------------------===//
1329// PowerPC Instruction Patterns
1330//
1331
1332// Arbitrary immediate support. Implement in terms of LIS/ORI.
1333def : Pat<(i32 imm:$imm),
1334 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1335
1336// Implement the 'not' operation with the NOR instruction.
1337def NOT : Pat<(not GPRC:$in),
1338 (NOR GPRC:$in, GPRC:$in)>;
1339
1340// ADD an arbitrary immediate.
1341def : Pat<(add GPRC:$in, imm:$imm),
1342 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1343// OR an arbitrary immediate.
1344def : Pat<(or GPRC:$in, imm:$imm),
1345 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1346// XOR an arbitrary immediate.
1347def : Pat<(xor GPRC:$in, imm:$imm),
1348 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1349// SUBFIC
1350def : Pat<(sub immSExt16:$imm, GPRC:$in),
1351 (SUBFIC GPRC:$in, imm:$imm)>;
1352
1353// SHL/SRL
1354def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1355 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1356def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1357 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1358
1359// ROTL
1360def : Pat<(rotl GPRC:$in, GPRC:$sh),
1361 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1362def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1363 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1364
1365// RLWNM
1366def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1367 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1368
1369// Calls
1370def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1371 (BL_Macho tglobaladdr:$dst)>;
1372def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1373 (BL_Macho texternalsym:$dst)>;
1374def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1375 (BL_ELF tglobaladdr:$dst)>;
1376def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1377 (BL_ELF texternalsym:$dst)>;
1378
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001379
1380def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
1381 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
1382
1383def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
1384 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
1385
1386def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
1387 (TCRETURNri CTRRC:$dst, imm:$imm)>;
1388
1389
1390
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391// Hi and Lo for Darwin Global Addresses.
1392def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1393def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1394def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1395def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1396def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1397def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1398def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1399 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1400def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1401 (ADDIS GPRC:$in, tconstpool:$g)>;
1402def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1403 (ADDIS GPRC:$in, tjumptable:$g)>;
1404
1405// Fused negative multiply subtract, alternate pattern
1406def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1407 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1408 Requires<[FPContractions]>;
1409def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1410 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1411 Requires<[FPContractions]>;
1412
1413// Standard shifts. These are represented separately from the real shifts above
1414// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1415// amounts.
1416def : Pat<(sra GPRC:$rS, GPRC:$rB),
1417 (SRAW GPRC:$rS, GPRC:$rB)>;
1418def : Pat<(srl GPRC:$rS, GPRC:$rB),
1419 (SRW GPRC:$rS, GPRC:$rB)>;
1420def : Pat<(shl GPRC:$rS, GPRC:$rB),
1421 (SLW GPRC:$rS, GPRC:$rB)>;
1422
1423def : Pat<(zextloadi1 iaddr:$src),
1424 (LBZ iaddr:$src)>;
1425def : Pat<(zextloadi1 xaddr:$src),
1426 (LBZX xaddr:$src)>;
1427def : Pat<(extloadi1 iaddr:$src),
1428 (LBZ iaddr:$src)>;
1429def : Pat<(extloadi1 xaddr:$src),
1430 (LBZX xaddr:$src)>;
1431def : Pat<(extloadi8 iaddr:$src),
1432 (LBZ iaddr:$src)>;
1433def : Pat<(extloadi8 xaddr:$src),
1434 (LBZX xaddr:$src)>;
1435def : Pat<(extloadi16 iaddr:$src),
1436 (LHZ iaddr:$src)>;
1437def : Pat<(extloadi16 xaddr:$src),
1438 (LHZX xaddr:$src)>;
1439def : Pat<(extloadf32 iaddr:$src),
1440 (FMRSD (LFS iaddr:$src))>;
1441def : Pat<(extloadf32 xaddr:$src),
1442 (FMRSD (LFSX xaddr:$src))>;
1443
Dale Johannesen8d4de232008-08-22 17:20:54 +00001444// Memory barriers
1445def : Pat<(membarrier (i32 imm:$ll),
1446 (i32 imm:$ls),
1447 (i32 imm:$sl),
1448 (i32 imm:$ss),
1449 (i32 imm:$device)),
1450 (SYNC)>;
1451
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001452include "PPCInstrAltivec.td"
1453include "PPCInstr64Bit.td"