blob: 1591148b880c9a5da86e960de90b6fd6e1141a4a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- PPCInstrInfo.td - The PowerPC Instruction Set -------*- tablegen -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the subset of the 32-bit PowerPC instruction set, as used
11// by the PowerPC instruction selector.
12//
13//===----------------------------------------------------------------------===//
14
15include "PPCInstrFormats.td"
16
17//===----------------------------------------------------------------------===//
18// PowerPC specific type constraints.
19//
20def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx
21 SDTCisVT<0, f64>, SDTCisPtrTy<1>
22]>;
23def SDT_PPCShiftOp : SDTypeProfile<1, 2, [ // PPCshl, PPCsra, PPCsrl
24 SDTCisVT<0, i32>, SDTCisVT<1, i32>, SDTCisVT<2, i32>
25]>;
26def SDT_PPCCallSeq : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>;
27
28def SDT_PPCvperm : SDTypeProfile<1, 3, [
29 SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>
30]>;
31
32def SDT_PPCvcmp : SDTypeProfile<1, 3, [
33 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>
34]>;
35
36def SDT_PPCcondbr : SDTypeProfile<0, 3, [
37 SDTCisVT<0, i32>, SDTCisVT<2, OtherVT>
38]>;
39
40def SDT_PPClbrx : SDTypeProfile<1, 3, [
41 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
42]>;
43def SDT_PPCstbrx : SDTypeProfile<0, 4, [
44 SDTCisVT<0, i32>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
45]>;
46
47//===----------------------------------------------------------------------===//
48// PowerPC specific DAG Nodes.
49//
50
51def PPCfcfid : SDNode<"PPCISD::FCFID" , SDTFPUnaryOp, []>;
52def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
53def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
54def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx, [SDNPHasChain]>;
55
56def PPCfsel : SDNode<"PPCISD::FSEL",
57 // Type constraint for fsel.
58 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
59 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
60
61def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
62def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
63def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
64def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
65
66def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
67
68// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
69// amounts. These nodes are generated by the multi-precision shift code.
70def PPCsrl : SDNode<"PPCISD::SRL" , SDT_PPCShiftOp>;
71def PPCsra : SDNode<"PPCISD::SRA" , SDT_PPCShiftOp>;
72def PPCshl : SDNode<"PPCISD::SHL" , SDT_PPCShiftOp>;
73
74def PPCextsw_32 : SDNode<"PPCISD::EXTSW_32" , SDTIntUnaryOp>;
75def PPCstd_32 : SDNode<"PPCISD::STD_32" , SDTStore, [SDNPHasChain]>;
76
77// These are target-independent nodes, but have target-specific formats.
78def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeq,
79 [SDNPHasChain, SDNPOutFlag]>;
80def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeq,
81 [SDNPHasChain, SDNPOutFlag]>;
82
83def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
84def PPCcall_Macho : SDNode<"PPCISD::CALL_Macho", SDT_PPCCall,
85 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
86def PPCcall_ELF : SDNode<"PPCISD::CALL_ELF", SDT_PPCCall,
87 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
88def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
89 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
90def PPCbctrl_Macho : SDNode<"PPCISD::BCTRL_Macho", SDTRet,
91 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
92
93def PPCbctrl_ELF : SDNode<"PPCISD::BCTRL_ELF", SDTRet,
94 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
95
96def retflag : SDNode<"PPCISD::RET_FLAG", SDTRet,
97 [SDNPHasChain, SDNPOptInFlag]>;
98
99def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
100def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutFlag]>;
101
102def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
103 [SDNPHasChain, SDNPOptInFlag]>;
104
105def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx, [SDNPHasChain]>;
106def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx, [SDNPHasChain]>;
107
108// Instructions to support dynamic alloca.
109def SDTDynOp : SDTypeProfile<1, 2, []>;
110def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
111
112//===----------------------------------------------------------------------===//
113// PowerPC specific transformation functions and pattern fragments.
114//
115
116def SHL32 : SDNodeXForm<imm, [{
117 // Transformation function: 31 - imm
118 return getI32Imm(31 - N->getValue());
119}]>;
120
121def SRL32 : SDNodeXForm<imm, [{
122 // Transformation function: 32 - imm
123 return N->getValue() ? getI32Imm(32 - N->getValue()) : getI32Imm(0);
124}]>;
125
126def LO16 : SDNodeXForm<imm, [{
127 // Transformation function: get the low 16 bits.
128 return getI32Imm((unsigned short)N->getValue());
129}]>;
130
131def HI16 : SDNodeXForm<imm, [{
132 // Transformation function: shift the immediate value down into the low bits.
133 return getI32Imm((unsigned)N->getValue() >> 16);
134}]>;
135
136def HA16 : SDNodeXForm<imm, [{
137 // Transformation function: shift the immediate value down into the low bits.
138 signed int Val = N->getValue();
139 return getI32Imm((Val - (signed short)Val) >> 16);
140}]>;
141def MB : SDNodeXForm<imm, [{
142 // Transformation function: get the start bit of a mask
143 unsigned mb, me;
144 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
145 return getI32Imm(mb);
146}]>;
147
148def ME : SDNodeXForm<imm, [{
149 // Transformation function: get the end bit of a mask
150 unsigned mb, me;
151 (void)isRunOfOnes((unsigned)N->getValue(), mb, me);
152 return getI32Imm(me);
153}]>;
154def maskimm32 : PatLeaf<(imm), [{
155 // maskImm predicate - True if immediate is a run of ones.
156 unsigned mb, me;
157 if (N->getValueType(0) == MVT::i32)
158 return isRunOfOnes((unsigned)N->getValue(), mb, me);
159 else
160 return false;
161}]>;
162
163def immSExt16 : PatLeaf<(imm), [{
164 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
165 // field. Used by instructions like 'addi'.
166 if (N->getValueType(0) == MVT::i32)
167 return (int32_t)N->getValue() == (short)N->getValue();
168 else
169 return (int64_t)N->getValue() == (short)N->getValue();
170}]>;
171def immZExt16 : PatLeaf<(imm), [{
172 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
173 // field. Used by instructions like 'ori'.
174 return (uint64_t)N->getValue() == (unsigned short)N->getValue();
175}], LO16>;
176
177// imm16Shifted* - These match immediates where the low 16-bits are zero. There
178// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
179// identical in 32-bit mode, but in 64-bit mode, they return true if the
180// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
181// clear).
182def imm16ShiftedZExt : PatLeaf<(imm), [{
183 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
184 // immediate are set. Used by instructions like 'xoris'.
185 return (N->getValue() & ~uint64_t(0xFFFF0000)) == 0;
186}], HI16>;
187
188def imm16ShiftedSExt : PatLeaf<(imm), [{
189 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
190 // immediate are set. Used by instructions like 'addis'. Identical to
191 // imm16ShiftedZExt in 32-bit mode.
192 if (N->getValue() & 0xFFFF) return false;
193 if (N->getValueType(0) == MVT::i32)
194 return true;
195 // For 64-bit, make sure it is sext right.
196 return N->getValue() == (uint64_t)(int)N->getValue();
197}], HI16>;
198
199
200//===----------------------------------------------------------------------===//
201// PowerPC Flag Definitions.
202
203class isPPC64 { bit PPC64 = 1; }
204class isDOT {
205 list<Register> Defs = [CR0];
206 bit RC = 1;
207}
208
209class RegConstraint<string C> {
210 string Constraints = C;
211}
212class NoEncode<string E> {
213 string DisableEncoding = E;
214}
215
216
217//===----------------------------------------------------------------------===//
218// PowerPC Operand Definitions.
219
220def s5imm : Operand<i32> {
221 let PrintMethod = "printS5ImmOperand";
222}
223def u5imm : Operand<i32> {
224 let PrintMethod = "printU5ImmOperand";
225}
226def u6imm : Operand<i32> {
227 let PrintMethod = "printU6ImmOperand";
228}
229def s16imm : Operand<i32> {
230 let PrintMethod = "printS16ImmOperand";
231}
232def u16imm : Operand<i32> {
233 let PrintMethod = "printU16ImmOperand";
234}
235def s16immX4 : Operand<i32> { // Multiply imm by 4 before printing.
236 let PrintMethod = "printS16X4ImmOperand";
237}
238def target : Operand<OtherVT> {
239 let PrintMethod = "printBranchOperand";
240}
241def calltarget : Operand<iPTR> {
242 let PrintMethod = "printCallOperand";
243}
244def aaddr : Operand<iPTR> {
245 let PrintMethod = "printAbsAddrOperand";
246}
247def piclabel: Operand<iPTR> {
248 let PrintMethod = "printPICLabel";
249}
250def symbolHi: Operand<i32> {
251 let PrintMethod = "printSymbolHi";
252}
253def symbolLo: Operand<i32> {
254 let PrintMethod = "printSymbolLo";
255}
256def crbitm: Operand<i8> {
257 let PrintMethod = "printcrbitm";
258}
259// Address operands
260def memri : Operand<iPTR> {
261 let PrintMethod = "printMemRegImm";
262 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
263}
264def memrr : Operand<iPTR> {
265 let PrintMethod = "printMemRegReg";
266 let MIOperandInfo = (ops ptr_rc, ptr_rc);
267}
268def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
269 let PrintMethod = "printMemRegImmShifted";
270 let MIOperandInfo = (ops i32imm:$imm, ptr_rc:$reg);
271}
272
273// PowerPC Predicate operand. 20 = (0<<5)|20 = always, CR0 is a dummy reg
274// that doesn't matter.
275def pred : PredicateOperand<OtherVT, (ops imm, CRRC),
276 (ops (i32 20), CR0)> {
277 let PrintMethod = "printPredicateOperand";
278}
279
280// Define PowerPC specific addressing mode.
281def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
282def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
283def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
284def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
285
286/// This is just the offset part of iaddr, used for preinc.
287def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
288
289//===----------------------------------------------------------------------===//
290// PowerPC Instruction Predicate Definitions.
291def FPContractions : Predicate<"!NoExcessFPPrecision">;
292
293
294//===----------------------------------------------------------------------===//
295// PowerPC Instruction Definitions.
296
297// Pseudo-instructions:
298
299let hasCtrlDep = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000300let Defs = [R1], Uses = [R1] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000301def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 "${:comment} ADJCALLSTACKDOWN",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000303 [(callseq_start imm:$amt)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000304def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305 "${:comment} ADJCALLSTACKUP",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000306 [(callseq_end imm:$amt)]>;
307}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308
Evan Chengb783fa32007-07-19 01:14:50 +0000309def UPDATE_VRSAVE : Pseudo<(outs GPRC:$rD), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310 "UPDATE_VRSAVE $rD, $rS", []>;
311}
312
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000313let Defs = [R1], Uses = [R1] in
Evan Chengb783fa32007-07-19 01:14:50 +0000314def DYNALLOC : Pseudo<(outs GPRC:$result), (ins GPRC:$negsize, memri:$fpsi),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 "${:comment} DYNALLOC $result, $negsize, $fpsi",
316 [(set GPRC:$result,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000317 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318
Evan Chengb783fa32007-07-19 01:14:50 +0000319def IMPLICIT_DEF_GPRC: Pseudo<(outs GPRC:$rD), (ins),
320 "${:comment}IMPLICIT_DEF_GPRC $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 [(set GPRC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000322def IMPLICIT_DEF_F8 : Pseudo<(outs F8RC:$rD), (ins),
323 "${:comment} IMPLICIT_DEF_F8 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324 [(set F8RC:$rD, (undef))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000325def IMPLICIT_DEF_F4 : Pseudo<(outs F4RC:$rD), (ins),
326 "${:comment} IMPLICIT_DEF_F4 $rD",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327 [(set F4RC:$rD, (undef))]>;
328
329// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
330// scheduler into a branch sequence.
331let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
332 PPC970_Single = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000333 def SELECT_CC_I4 : Pseudo<(outs GPRC:$dst), (ins CRRC:$cond, GPRC:$T, GPRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
335 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000336 def SELECT_CC_I8 : Pseudo<(outs G8RC:$dst), (ins CRRC:$cond, G8RC:$T, G8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
338 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000339 def SELECT_CC_F4 : Pseudo<(outs F4RC:$dst), (ins CRRC:$cond, F4RC:$T, F4RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
341 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000342 def SELECT_CC_F8 : Pseudo<(outs F8RC:$dst), (ins CRRC:$cond, F8RC:$T, F8RC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
344 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000345 def SELECT_CC_VRRC: Pseudo<(outs VRRC:$dst), (ins CRRC:$cond, VRRC:$T, VRRC:$F,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
347 []>;
348}
349
Evan Cheng37e7c752007-07-21 00:34:19 +0000350let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351 let isReturn = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000352 def BLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$p),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 "b${p:cc}lr ${p:reg}", BrB,
354 [(retflag)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000355 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356}
357
358
359
360let Defs = [LR] in
Evan Chengb783fa32007-07-19 01:14:50 +0000361 def MovePCtoLR : Pseudo<(outs), (ins piclabel:$label), "bl $label", []>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 PPC970_Unit_BRU;
363
Evan Cheng37e7c752007-07-21 00:34:19 +0000364let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 let isBarrier = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000366 def B : IForm<18, 0, 0, (outs), (ins target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 "b $dst", BrB,
368 [(br bb:$dst)]>;
369 }
370
371 // BCC represents an arbitrary conditional branch on a predicate.
372 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
373 // a two-value operand where a dag node expects two operands. :(
Evan Chengb783fa32007-07-19 01:14:50 +0000374 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, target:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 "b${cond:cc} ${cond:reg}, $dst"
376 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
377}
378
379// Macho ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000380let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 // All calls clobber the non-callee saved registers...
382 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
383 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
384 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
385 LR,CTR,
386 CR0,CR1,CR5,CR6,CR7] in {
387 // Convenient aliases for call instructions
388 def BL_Macho : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000389 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 "bl $func", BrB, []>; // See Pat patterns below.
391 def BLA_Macho : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000392 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
394 def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000395 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 "bctrl", BrB,
397 [(PPCbctrl_Macho)]>;
398}
399
400// ELF ABI Calls.
Evan Cheng37e7c752007-07-21 00:34:19 +0000401let isCall = 1, PPC970_Unit = 7,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 // All calls clobber the non-callee saved registers...
403 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
404 F0,F1,F2,F3,F4,F5,F6,F7,F8,
405 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
406 LR,CTR,
407 CR0,CR1,CR5,CR6,CR7] in {
408 // Convenient aliases for call instructions
409 def BL_ELF : IForm<18, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000410 (outs), (ins calltarget:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 "bl $func", BrB, []>; // See Pat patterns below.
412 def BLA_ELF : IForm<18, 1, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000413 (outs), (ins aaddr:$func, variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 "bla $func", BrB,
415 [(PPCcall_ELF (i32 imm:$func))]>;
416 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
Evan Chengb783fa32007-07-19 01:14:50 +0000417 (outs), (ins variable_ops),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 "bctrl", BrB,
419 [(PPCbctrl_ELF)]>;
420}
421
422// DCB* instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000423def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
425 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000426def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
428 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000429def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
431 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000432def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
434 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000435def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
437 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000438def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
440 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000441def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
443 PPC970_DGroup_Single;
Evan Chengb783fa32007-07-19 01:14:50 +0000444def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
446 PPC970_DGroup_Single;
447
448//===----------------------------------------------------------------------===//
449// PPC32 Load Instructions.
450//
451
452// Unindexed (r+i) Loads.
453let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000454def LBZ : DForm_1<34, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 "lbz $rD, $src", LdStGeneral,
456 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000457def LHA : DForm_1<42, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 "lha $rD, $src", LdStLHA,
459 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
460 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000461def LHZ : DForm_1<40, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462 "lhz $rD, $src", LdStGeneral,
463 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000464def LWZ : DForm_1<32, (outs GPRC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 "lwz $rD, $src", LdStGeneral,
466 [(set GPRC:$rD, (load iaddr:$src))]>;
467
Evan Chengb783fa32007-07-19 01:14:50 +0000468def LFS : DForm_1<48, (outs F4RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000469 "lfs $rD, $src", LdStLFDU,
470 [(set F4RC:$rD, (load iaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000471def LFD : DForm_1<50, (outs F8RC:$rD), (ins memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 "lfd $rD, $src", LdStLFD,
473 [(set F8RC:$rD, (load iaddr:$src))]>;
474
475
476// Unindexed (r+i) Loads with Update (preinc).
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000477def LBZU : DForm_1<35, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 "lbzu $rD, $addr", LdStGeneral,
479 []>, RegConstraint<"$addr.reg = $ea_result">,
480 NoEncode<"$ea_result">;
481
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000482def LHAU : DForm_1<43, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 "lhau $rD, $addr", LdStGeneral,
484 []>, RegConstraint<"$addr.reg = $ea_result">,
485 NoEncode<"$ea_result">;
486
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000487def LHZU : DForm_1<41, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 "lhzu $rD, $addr", LdStGeneral,
489 []>, RegConstraint<"$addr.reg = $ea_result">,
490 NoEncode<"$ea_result">;
491
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000492def LWZU : DForm_1<33, (outs GPRC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 "lwzu $rD, $addr", LdStGeneral,
494 []>, RegConstraint<"$addr.reg = $ea_result">,
495 NoEncode<"$ea_result">;
496
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000497def LFSU : DForm_1<49, (outs F4RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498 "lfs $rD, $addr", LdStLFDU,
499 []>, RegConstraint<"$addr.reg = $ea_result">,
500 NoEncode<"$ea_result">;
501
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000502def LFDU : DForm_1<51, (outs F8RC:$rD, ptr_rc:$ea_result), (ins memri:$addr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 "lfd $rD, $addr", LdStLFD,
504 []>, RegConstraint<"$addr.reg = $ea_result">,
505 NoEncode<"$ea_result">;
506}
507
508// Indexed (r+r) Loads.
509//
510let isLoad = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000511def LBZX : XForm_1<31, 87, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 "lbzx $rD, $src", LdStGeneral,
513 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000514def LHAX : XForm_1<31, 343, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 "lhax $rD, $src", LdStLHA,
516 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
517 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000518def LHZX : XForm_1<31, 279, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 "lhzx $rD, $src", LdStGeneral,
520 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000521def LWZX : XForm_1<31, 23, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 "lwzx $rD, $src", LdStGeneral,
523 [(set GPRC:$rD, (load xaddr:$src))]>;
524
525
Evan Chengb783fa32007-07-19 01:14:50 +0000526def LHBRX : XForm_1<31, 790, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 "lhbrx $rD, $src", LdStGeneral,
528 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000529def LWBRX : XForm_1<31, 534, (outs GPRC:$rD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 "lwbrx $rD, $src", LdStGeneral,
531 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
532
Evan Chengb783fa32007-07-19 01:14:50 +0000533def LFSX : XForm_25<31, 535, (outs F4RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 "lfsx $frD, $src", LdStLFDU,
535 [(set F4RC:$frD, (load xaddr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000536def LFDX : XForm_25<31, 599, (outs F8RC:$frD), (ins memrr:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 "lfdx $frD, $src", LdStLFDU,
538 [(set F8RC:$frD, (load xaddr:$src))]>;
539}
540
541//===----------------------------------------------------------------------===//
542// PPC32 Store Instructions.
543//
544
545// Unindexed (r+i) Stores.
Evan Cheng37e7c752007-07-21 00:34:19 +0000546let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000547def STB : DForm_1<38, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 "stb $rS, $src", LdStGeneral,
549 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000550def STH : DForm_1<44, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 "sth $rS, $src", LdStGeneral,
552 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000553def STW : DForm_1<36, (outs), (ins GPRC:$rS, memri:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 "stw $rS, $src", LdStGeneral,
555 [(store GPRC:$rS, iaddr:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000556def STFS : DForm_1<52, (outs), (ins F4RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557 "stfs $rS, $dst", LdStUX,
558 [(store F4RC:$rS, iaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000559def STFD : DForm_1<54, (outs), (ins F8RC:$rS, memri:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 "stfd $rS, $dst", LdStUX,
561 [(store F8RC:$rS, iaddr:$dst)]>;
562}
563
564// Unindexed (r+i) Stores with Update (preinc).
565let isStore = 1, PPC970_Unit = 2 in {
Evan Chengeface712007-07-20 00:20:46 +0000566def STBU : DForm_1<39, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 symbolLo:$ptroff, ptr_rc:$ptrreg),
568 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
569 [(set ptr_rc:$ea_res,
570 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
571 iaddroff:$ptroff))]>,
572 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000573def STHU : DForm_1<45, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 symbolLo:$ptroff, ptr_rc:$ptrreg),
575 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
576 [(set ptr_rc:$ea_res,
577 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
578 iaddroff:$ptroff))]>,
579 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000580def STWU : DForm_1<37, (outs ptr_rc:$ea_res), (ins GPRC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 symbolLo:$ptroff, ptr_rc:$ptrreg),
582 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
583 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
584 iaddroff:$ptroff))]>,
585 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000586def STFSU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F4RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000587 symbolLo:$ptroff, ptr_rc:$ptrreg),
588 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
589 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
590 iaddroff:$ptroff))]>,
591 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
Evan Chengeface712007-07-20 00:20:46 +0000592def STFDU : DForm_1<37, (outs ptr_rc:$ea_res), (ins F8RC:$rS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 symbolLo:$ptroff, ptr_rc:$ptrreg),
594 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
595 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
596 iaddroff:$ptroff))]>,
597 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
598}
599
600
601// Indexed (r+r) Stores.
602//
Evan Cheng37e7c752007-07-21 00:34:19 +0000603let isStore = 1, PPC970_Unit = 2 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000604def STBX : XForm_8<31, 215, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 "stbx $rS, $dst", LdStGeneral,
606 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
607 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000608def STHX : XForm_8<31, 407, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 "sthx $rS, $dst", LdStGeneral,
610 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
611 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000612def STWX : XForm_8<31, 151, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 "stwx $rS, $dst", LdStGeneral,
614 [(store GPRC:$rS, xaddr:$dst)]>,
615 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000616def STWUX : XForm_8<31, 183, (outs), (ins GPRC:$rS, GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 "stwux $rS, $rA, $rB", LdStGeneral,
618 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000619def STHBRX: XForm_8<31, 918, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 "sthbrx $rS, $dst", LdStGeneral,
621 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
622 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000623def STWBRX: XForm_8<31, 662, (outs), (ins GPRC:$rS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624 "stwbrx $rS, $dst", LdStGeneral,
625 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
626 PPC970_DGroup_Cracked;
627
Evan Chengb783fa32007-07-19 01:14:50 +0000628def STFIWX: XForm_28<31, 983, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 "stfiwx $frS, $dst", LdStUX,
630 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000631def STFSX : XForm_28<31, 663, (outs), (ins F4RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 "stfsx $frS, $dst", LdStUX,
633 [(store F4RC:$frS, xaddr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000634def STFDX : XForm_28<31, 727, (outs), (ins F8RC:$frS, memrr:$dst),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 "stfdx $frS, $dst", LdStUX,
636 [(store F8RC:$frS, xaddr:$dst)]>;
637}
638
639
640//===----------------------------------------------------------------------===//
641// PPC32 Arithmetic Instructions.
642//
643
644let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000645def ADDI : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646 "addi $rD, $rA, $imm", IntGeneral,
647 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000648def ADDIC : DForm_2<12, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 "addic $rD, $rA, $imm", IntGeneral,
650 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
651 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000652def ADDICo : DForm_2<13, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 "addic. $rD, $rA, $imm", IntGeneral,
654 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000655def ADDIS : DForm_2<15, (outs GPRC:$rD), (ins GPRC:$rA, symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656 "addis $rD, $rA, $imm", IntGeneral,
657 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000658def LA : DForm_2<14, (outs GPRC:$rD), (ins GPRC:$rA, symbolLo:$sym),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659 "la $rD, $sym($rA)", IntGeneral,
660 [(set GPRC:$rD, (add GPRC:$rA,
661 (PPClo tglobaladdr:$sym, 0)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000662def MULLI : DForm_2< 7, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 "mulli $rD, $rA, $imm", IntMulLI,
664 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000665def SUBFIC : DForm_2< 8, (outs GPRC:$rD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 "subfic $rD, $rA, $imm", IntGeneral,
667 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000668def LI : DForm_2_r0<14, (outs GPRC:$rD), (ins symbolLo:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669 "li $rD, $imm", IntGeneral,
670 [(set GPRC:$rD, immSExt16:$imm)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000671def LIS : DForm_2_r0<15, (outs GPRC:$rD), (ins symbolHi:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 "lis $rD, $imm", IntGeneral,
673 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
674}
675
676let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000677def ANDIo : DForm_4<28, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 "andi. $dst, $src1, $src2", IntGeneral,
679 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
680 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000681def ANDISo : DForm_4<29, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 "andis. $dst, $src1, $src2", IntGeneral,
683 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
684 isDOT;
Evan Chengb783fa32007-07-19 01:14:50 +0000685def ORI : DForm_4<24, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 "ori $dst, $src1, $src2", IntGeneral,
687 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000688def ORIS : DForm_4<25, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 "oris $dst, $src1, $src2", IntGeneral,
690 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000691def XORI : DForm_4<26, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 "xori $dst, $src1, $src2", IntGeneral,
693 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000694def XORIS : DForm_4<27, (outs GPRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 "xoris $dst, $src1, $src2", IntGeneral,
696 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000697def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntGeneral,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 []>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000699def CMPWI : DForm_5_ext<11, (outs CRRC:$crD), (ins GPRC:$rA, s16imm:$imm),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 "cmpwi $crD, $rA, $imm", IntCompare>;
Evan Chengdcfb5cb2007-08-01 23:07:38 +0000701def CMPLWI : DForm_6_ext<10, (outs CRRC:$dst), (ins GPRC:$src1, u16imm:$src2),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 "cmplwi $dst, $src1, $src2", IntCompare>;
703}
704
705
706let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000707def NAND : XForm_6<31, 476, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 "nand $rA, $rS, $rB", IntGeneral,
709 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000710def AND : XForm_6<31, 28, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 "and $rA, $rS, $rB", IntGeneral,
712 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000713def ANDC : XForm_6<31, 60, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 "andc $rA, $rS, $rB", IntGeneral,
715 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000716def OR : XForm_6<31, 444, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 "or $rA, $rS, $rB", IntGeneral,
718 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000719def NOR : XForm_6<31, 124, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 "nor $rA, $rS, $rB", IntGeneral,
721 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000722def ORC : XForm_6<31, 412, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 "orc $rA, $rS, $rB", IntGeneral,
724 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000725def EQV : XForm_6<31, 284, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 "eqv $rA, $rS, $rB", IntGeneral,
727 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000728def XOR : XForm_6<31, 316, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 "xor $rA, $rS, $rB", IntGeneral,
730 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000731def SLW : XForm_6<31, 24, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 "slw $rA, $rS, $rB", IntGeneral,
733 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000734def SRW : XForm_6<31, 536, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 "srw $rA, $rS, $rB", IntGeneral,
736 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000737def SRAW : XForm_6<31, 792, (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 "sraw $rA, $rS, $rB", IntShift,
739 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
740}
741
742let PPC970_Unit = 1 in { // FXU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000743def SRAWI : XForm_10<31, 824, (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 "srawi $rA, $rS, $SH", IntShift,
745 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000746def CNTLZW : XForm_11<31, 26, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 "cntlzw $rA, $rS", IntGeneral,
748 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000749def EXTSB : XForm_11<31, 954, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750 "extsb $rA, $rS", IntGeneral,
751 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000752def EXTSH : XForm_11<31, 922, (outs GPRC:$rA), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 "extsh $rA, $rS", IntGeneral,
754 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
755
Evan Chengb783fa32007-07-19 01:14:50 +0000756def CMPW : XForm_16_ext<31, 0, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 "cmpw $crD, $rA, $rB", IntCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000758def CMPLW : XForm_16_ext<31, 32, (outs CRRC:$crD), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 "cmplw $crD, $rA, $rB", IntCompare>;
760}
761let PPC970_Unit = 3 in { // FPU Operations.
Evan Chengb783fa32007-07-19 01:14:50 +0000762//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763// "fcmpo $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000764def FCMPUS : XForm_17<63, 0, (outs CRRC:$crD), (ins F4RC:$fA, F4RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 "fcmpu $crD, $fA, $fB", FPCompare>;
Evan Chengb783fa32007-07-19 01:14:50 +0000766def FCMPUD : XForm_17<63, 0, (outs CRRC:$crD), (ins F8RC:$fA, F8RC:$fB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767 "fcmpu $crD, $fA, $fB", FPCompare>;
768
Evan Chengb783fa32007-07-19 01:14:50 +0000769def FCTIWZ : XForm_26<63, 15, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 "fctiwz $frD, $frB", FPGeneral,
771 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000772def FRSP : XForm_26<63, 12, (outs F4RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 "frsp $frD, $frB", FPGeneral,
774 [(set F4RC:$frD, (fround F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000775def FSQRT : XForm_26<63, 22, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 "fsqrt $frD, $frB", FPSqrt,
777 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000778def FSQRTS : XForm_26<59, 22, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779 "fsqrts $frD, $frB", FPSqrt,
780 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
781}
782
783/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
784///
785/// Note that these are defined as pseudo-ops on the PPC970 because they are
786/// often coalesced away and we don't want the dispatch group builder to think
787/// that they will fill slots (which could cause the load of a LSU reject to
788/// sneak into a d-group with a store).
Evan Chengb783fa32007-07-19 01:14:50 +0000789def FMRS : XForm_26<63, 72, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790 "fmr $frD, $frB", FPGeneral,
791 []>, // (set F4RC:$frD, F4RC:$frB)
792 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000793def FMRD : XForm_26<63, 72, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794 "fmr $frD, $frB", FPGeneral,
795 []>, // (set F8RC:$frD, F8RC:$frB)
796 PPC970_Unit_Pseudo;
Evan Chengb783fa32007-07-19 01:14:50 +0000797def FMRSD : XForm_26<63, 72, (outs F8RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 "fmr $frD, $frB", FPGeneral,
799 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
800 PPC970_Unit_Pseudo;
801
802let PPC970_Unit = 3 in { // FPU Operations.
803// These are artificially split into two different forms, for 4/8 byte FP.
Evan Chengb783fa32007-07-19 01:14:50 +0000804def FABSS : XForm_26<63, 264, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 "fabs $frD, $frB", FPGeneral,
806 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000807def FABSD : XForm_26<63, 264, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 "fabs $frD, $frB", FPGeneral,
809 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000810def FNABSS : XForm_26<63, 136, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 "fnabs $frD, $frB", FPGeneral,
812 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000813def FNABSD : XForm_26<63, 136, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 "fnabs $frD, $frB", FPGeneral,
815 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000816def FNEGS : XForm_26<63, 40, (outs F4RC:$frD), (ins F4RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 "fneg $frD, $frB", FPGeneral,
818 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000819def FNEGD : XForm_26<63, 40, (outs F8RC:$frD), (ins F8RC:$frB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820 "fneg $frD, $frB", FPGeneral,
821 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
822}
823
824
825// XL-Form instructions. condition register logical ops.
826//
Evan Chengb783fa32007-07-19 01:14:50 +0000827def MCRF : XLForm_3<19, 0, (outs CRRC:$BF), (ins CRRC:$BFA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 "mcrf $BF, $BFA", BrMCR>,
829 PPC970_DGroup_First, PPC970_Unit_CRU;
830
Evan Chengb783fa32007-07-19 01:14:50 +0000831def CREQV : XLForm_1<19, 289, (outs CRRC:$CRD), (ins CRRC:$CRA, CRRC:$CRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 "creqv $CRD, $CRA, $CRB", BrCR,
833 []>;
834
Evan Chengb783fa32007-07-19 01:14:50 +0000835def SETCR : XLForm_1_ext<19, 289, (outs CRRC:$dst), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 "creqv $dst, $dst, $dst", BrCR,
837 []>;
838
839// XFX-Form instructions. Instructions that deal with SPRs.
840//
Evan Chengb783fa32007-07-19 01:14:50 +0000841def MFCTR : XFXForm_1_ext<31, 339, 9, (outs GPRC:$rT), (ins),
842 "mfctr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 PPC970_DGroup_First, PPC970_Unit_FXU;
844let Pattern = [(PPCmtctr GPRC:$rS)] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000845def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins GPRC:$rS),
846 "mtctr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 PPC970_DGroup_First, PPC970_Unit_FXU;
848}
849
Evan Chengb783fa32007-07-19 01:14:50 +0000850def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins GPRC:$rS),
851 "mtlr $rS", SprMTSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852 PPC970_DGroup_First, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000853def MFLR : XFXForm_1_ext<31, 339, 8, (outs GPRC:$rT), (ins),
854 "mflr $rT", SprMFSPR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 PPC970_DGroup_First, PPC970_Unit_FXU;
856
857// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
858// a GPR on the PPC970. As such, copies in and out have the same performance
859// characteristics as an OR instruction.
Evan Chengb783fa32007-07-19 01:14:50 +0000860def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861 "mtspr 256, $rS", IntGeneral>,
862 PPC970_DGroup_Single, PPC970_Unit_FXU;
Evan Chengb783fa32007-07-19 01:14:50 +0000863def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs GPRC:$rT), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864 "mfspr $rT, 256", IntGeneral>,
865 PPC970_DGroup_First, PPC970_Unit_FXU;
866
Evan Chengb783fa32007-07-19 01:14:50 +0000867def MTCRF : XFXForm_5<31, 144, (outs), (ins crbitm:$FXM, GPRC:$rS),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 "mtcrf $FXM, $rS", BrMCRX>,
869 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000870def MFCR : XFXForm_3<31, 19, (outs GPRC:$rT), (ins), "mfcr $rT", SprMFCR>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 PPC970_MicroCode, PPC970_Unit_CRU;
Evan Chengb783fa32007-07-19 01:14:50 +0000872def MFOCRF: XFXForm_5a<31, 19, (outs GPRC:$rT), (ins crbitm:$FXM),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873 "mfcr $rT, $FXM", SprMFCR>,
874 PPC970_DGroup_First, PPC970_Unit_CRU;
875
876let PPC970_Unit = 1 in { // FXU Operations.
877
878// XO-Form instructions. Arithmetic instructions that can set overflow bit
879//
Evan Chengb783fa32007-07-19 01:14:50 +0000880def ADD4 : XOForm_1<31, 266, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 "add $rT, $rA, $rB", IntGeneral,
882 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000883def ADDC : XOForm_1<31, 10, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 "addc $rT, $rA, $rB", IntGeneral,
885 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
886 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000887def ADDE : XOForm_1<31, 138, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 "adde $rT, $rA, $rB", IntGeneral,
889 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000890def DIVW : XOForm_1<31, 491, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 "divw $rT, $rA, $rB", IntDivW,
892 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
893 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000894def DIVWU : XOForm_1<31, 459, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 "divwu $rT, $rA, $rB", IntDivW,
896 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
897 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000898def MULHW : XOForm_1<31, 75, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 "mulhw $rT, $rA, $rB", IntMulHW,
900 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000901def MULHWU : XOForm_1<31, 11, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902 "mulhwu $rT, $rA, $rB", IntMulHWU,
903 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000904def MULLW : XOForm_1<31, 235, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 "mullw $rT, $rA, $rB", IntMulHW,
906 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000907def SUBF : XOForm_1<31, 40, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 "subf $rT, $rA, $rB", IntGeneral,
909 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000910def SUBFC : XOForm_1<31, 8, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 "subfc $rT, $rA, $rB", IntGeneral,
912 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
913 PPC970_DGroup_Cracked;
Evan Chengb783fa32007-07-19 01:14:50 +0000914def SUBFE : XOForm_1<31, 136, 0, (outs GPRC:$rT), (ins GPRC:$rA, GPRC:$rB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 "subfe $rT, $rA, $rB", IntGeneral,
916 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000917def ADDME : XOForm_3<31, 234, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918 "addme $rT, $rA", IntGeneral,
919 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000920def ADDZE : XOForm_3<31, 202, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 "addze $rT, $rA", IntGeneral,
922 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000923def NEG : XOForm_3<31, 104, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 "neg $rT, $rA", IntGeneral,
925 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000926def SUBFME : XOForm_3<31, 232, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 "subfme $rT, $rA", IntGeneral,
928 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000929def SUBFZE : XOForm_3<31, 200, 0, (outs GPRC:$rT), (ins GPRC:$rA),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 "subfze $rT, $rA", IntGeneral,
931 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
932}
933
934// A-Form instructions. Most of the instructions executed in the FPU are of
935// this type.
936//
937let PPC970_Unit = 3 in { // FPU Operations.
938def FMADD : AForm_1<63, 29,
Evan Chengb783fa32007-07-19 01:14:50 +0000939 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
941 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
942 F8RC:$FRB))]>,
943 Requires<[FPContractions]>;
944def FMADDS : AForm_1<59, 29,
Evan Chengb783fa32007-07-19 01:14:50 +0000945 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000946 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
947 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
948 F4RC:$FRB))]>,
949 Requires<[FPContractions]>;
950def FMSUB : AForm_1<63, 28,
Evan Chengb783fa32007-07-19 01:14:50 +0000951 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
953 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
954 F8RC:$FRB))]>,
955 Requires<[FPContractions]>;
956def FMSUBS : AForm_1<59, 28,
Evan Chengb783fa32007-07-19 01:14:50 +0000957 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
959 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
960 F4RC:$FRB))]>,
961 Requires<[FPContractions]>;
962def FNMADD : AForm_1<63, 31,
Evan Chengb783fa32007-07-19 01:14:50 +0000963 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
965 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
966 F8RC:$FRB)))]>,
967 Requires<[FPContractions]>;
968def FNMADDS : AForm_1<59, 31,
Evan Chengb783fa32007-07-19 01:14:50 +0000969 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000970 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
971 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
972 F4RC:$FRB)))]>,
973 Requires<[FPContractions]>;
974def FNMSUB : AForm_1<63, 30,
Evan Chengb783fa32007-07-19 01:14:50 +0000975 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
977 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
978 F8RC:$FRB)))]>,
979 Requires<[FPContractions]>;
980def FNMSUBS : AForm_1<59, 30,
Evan Chengb783fa32007-07-19 01:14:50 +0000981 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
983 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
984 F4RC:$FRB)))]>,
985 Requires<[FPContractions]>;
986// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
987// having 4 of these, force the comparison to always be an 8-byte double (code
988// should use an FMRSD if the input comparison value really wants to be a float)
989// and 4/8 byte forms for the result and operand type..
990def FSELD : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +0000991 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
993 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
994def FSELS : AForm_1<63, 23,
Evan Chengb783fa32007-07-19 01:14:50 +0000995 (outs F4RC:$FRT), (ins F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
997 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
998def FADD : AForm_2<63, 21,
Evan Chengb783fa32007-07-19 01:14:50 +0000999 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 "fadd $FRT, $FRA, $FRB", FPGeneral,
1001 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
1002def FADDS : AForm_2<59, 21,
Evan Chengb783fa32007-07-19 01:14:50 +00001003 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004 "fadds $FRT, $FRA, $FRB", FPGeneral,
1005 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
1006def FDIV : AForm_2<63, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001007 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 "fdiv $FRT, $FRA, $FRB", FPDivD,
1009 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1010def FDIVS : AForm_2<59, 18,
Evan Chengb783fa32007-07-19 01:14:50 +00001011 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 "fdivs $FRT, $FRA, $FRB", FPDivS,
1013 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1014def FMUL : AForm_3<63, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001015 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016 "fmul $FRT, $FRA, $FRB", FPFused,
1017 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1018def FMULS : AForm_3<59, 25,
Evan Chengb783fa32007-07-19 01:14:50 +00001019 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1021 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1022def FSUB : AForm_2<63, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001023 (outs F8RC:$FRT), (ins F8RC:$FRA, F8RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024 "fsub $FRT, $FRA, $FRB", FPGeneral,
1025 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1026def FSUBS : AForm_2<59, 20,
Evan Chengb783fa32007-07-19 01:14:50 +00001027 (outs F4RC:$FRT), (ins F4RC:$FRA, F4RC:$FRB),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1029 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1030}
1031
1032let PPC970_Unit = 1 in { // FXU Operations.
1033// M-Form instructions. rotate and mask instructions.
1034//
1035let isCommutable = 1 in {
1036// RLWIMI can be commuted if the rotate amount is zero.
1037def RLWIMI : MForm_2<20,
Evan Chengb783fa32007-07-19 01:14:50 +00001038 (outs GPRC:$rA), (ins GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1040 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1041 NoEncode<"$rSi">;
1042}
1043def RLWINM : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001044 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1046 []>;
1047def RLWINMo : MForm_2<21,
Evan Chengb783fa32007-07-19 01:14:50 +00001048 (outs GPRC:$rA), (ins GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1050 []>, isDOT, PPC970_DGroup_Cracked;
1051def RLWNM : MForm_2<23,
Evan Chengb783fa32007-07-19 01:14:50 +00001052 (outs GPRC:$rA), (ins GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1054 []>;
1055}
1056
1057
1058//===----------------------------------------------------------------------===//
1059// DWARF Pseudo Instructions
1060//
1061
Evan Chengb783fa32007-07-19 01:14:50 +00001062def DWARF_LOC : Pseudo<(outs), (ins i32imm:$line, i32imm:$col, i32imm:$file),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 "${:comment} .loc $file, $line, $col",
1064 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1065 (i32 imm:$file))]>;
1066
1067//===----------------------------------------------------------------------===//
1068// PowerPC Instruction Patterns
1069//
1070
1071// Arbitrary immediate support. Implement in terms of LIS/ORI.
1072def : Pat<(i32 imm:$imm),
1073 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1074
1075// Implement the 'not' operation with the NOR instruction.
1076def NOT : Pat<(not GPRC:$in),
1077 (NOR GPRC:$in, GPRC:$in)>;
1078
1079// ADD an arbitrary immediate.
1080def : Pat<(add GPRC:$in, imm:$imm),
1081 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1082// OR an arbitrary immediate.
1083def : Pat<(or GPRC:$in, imm:$imm),
1084 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1085// XOR an arbitrary immediate.
1086def : Pat<(xor GPRC:$in, imm:$imm),
1087 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1088// SUBFIC
1089def : Pat<(sub immSExt16:$imm, GPRC:$in),
1090 (SUBFIC GPRC:$in, imm:$imm)>;
1091
1092// SHL/SRL
1093def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1094 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1095def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1096 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1097
1098// ROTL
1099def : Pat<(rotl GPRC:$in, GPRC:$sh),
1100 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1101def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1102 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1103
1104// RLWNM
1105def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1106 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1107
1108// Calls
1109def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1110 (BL_Macho tglobaladdr:$dst)>;
1111def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1112 (BL_Macho texternalsym:$dst)>;
1113def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1114 (BL_ELF tglobaladdr:$dst)>;
1115def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1116 (BL_ELF texternalsym:$dst)>;
1117
1118// Hi and Lo for Darwin Global Addresses.
1119def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1120def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1121def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1122def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1123def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1124def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1125def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1126 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1127def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1128 (ADDIS GPRC:$in, tconstpool:$g)>;
1129def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1130 (ADDIS GPRC:$in, tjumptable:$g)>;
1131
1132// Fused negative multiply subtract, alternate pattern
1133def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1134 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1135 Requires<[FPContractions]>;
1136def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1137 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1138 Requires<[FPContractions]>;
1139
1140// Standard shifts. These are represented separately from the real shifts above
1141// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1142// amounts.
1143def : Pat<(sra GPRC:$rS, GPRC:$rB),
1144 (SRAW GPRC:$rS, GPRC:$rB)>;
1145def : Pat<(srl GPRC:$rS, GPRC:$rB),
1146 (SRW GPRC:$rS, GPRC:$rB)>;
1147def : Pat<(shl GPRC:$rS, GPRC:$rB),
1148 (SLW GPRC:$rS, GPRC:$rB)>;
1149
1150def : Pat<(zextloadi1 iaddr:$src),
1151 (LBZ iaddr:$src)>;
1152def : Pat<(zextloadi1 xaddr:$src),
1153 (LBZX xaddr:$src)>;
1154def : Pat<(extloadi1 iaddr:$src),
1155 (LBZ iaddr:$src)>;
1156def : Pat<(extloadi1 xaddr:$src),
1157 (LBZX xaddr:$src)>;
1158def : Pat<(extloadi8 iaddr:$src),
1159 (LBZ iaddr:$src)>;
1160def : Pat<(extloadi8 xaddr:$src),
1161 (LBZX xaddr:$src)>;
1162def : Pat<(extloadi16 iaddr:$src),
1163 (LHZ iaddr:$src)>;
1164def : Pat<(extloadi16 xaddr:$src),
1165 (LHZX xaddr:$src)>;
1166def : Pat<(extloadf32 iaddr:$src),
1167 (FMRSD (LFS iaddr:$src))>;
1168def : Pat<(extloadf32 xaddr:$src),
1169 (FMRSD (LFSX xaddr:$src))>;
1170
1171include "PPCInstrAltivec.td"
1172include "PPCInstr64Bit.td"