blob: fe189784009f66f78d372a2daba3ecce13171d96 [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 {
300def ADJCALLSTACKDOWN : Pseudo<(ops u16imm:$amt),
301 "${:comment} ADJCALLSTACKDOWN",
302 [(callseq_start imm:$amt)]>, Imp<[R1],[R1]>;
303def ADJCALLSTACKUP : Pseudo<(ops u16imm:$amt),
304 "${:comment} ADJCALLSTACKUP",
305 [(callseq_end imm:$amt)]>, Imp<[R1],[R1]>;
306
307def UPDATE_VRSAVE : Pseudo<(ops GPRC:$rD, GPRC:$rS),
308 "UPDATE_VRSAVE $rD, $rS", []>;
309}
310
311def DYNALLOC : Pseudo<(ops GPRC:$result, GPRC:$negsize, memri:$fpsi),
312 "${:comment} DYNALLOC $result, $negsize, $fpsi",
313 [(set GPRC:$result,
314 (PPCdynalloc GPRC:$negsize, iaddr:$fpsi))]>,
315 Imp<[R1],[R1]>;
316
317def IMPLICIT_DEF_GPRC: Pseudo<(ops GPRC:$rD),"${:comment}IMPLICIT_DEF_GPRC $rD",
318 [(set GPRC:$rD, (undef))]>;
319def IMPLICIT_DEF_F8 : Pseudo<(ops F8RC:$rD), "${:comment} IMPLICIT_DEF_F8 $rD",
320 [(set F8RC:$rD, (undef))]>;
321def IMPLICIT_DEF_F4 : Pseudo<(ops F4RC:$rD), "${:comment} IMPLICIT_DEF_F4 $rD",
322 [(set F4RC:$rD, (undef))]>;
323
324// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
325// scheduler into a branch sequence.
326let usesCustomDAGSchedInserter = 1, // Expanded by the scheduler.
327 PPC970_Single = 1 in {
328 def SELECT_CC_I4 : Pseudo<(ops GPRC:$dst, CRRC:$cond, GPRC:$T, GPRC:$F,
329 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
330 []>;
331 def SELECT_CC_I8 : Pseudo<(ops G8RC:$dst, CRRC:$cond, G8RC:$T, G8RC:$F,
332 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
333 []>;
334 def SELECT_CC_F4 : Pseudo<(ops F4RC:$dst, CRRC:$cond, F4RC:$T, F4RC:$F,
335 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
336 []>;
337 def SELECT_CC_F8 : Pseudo<(ops F8RC:$dst, CRRC:$cond, F8RC:$T, F8RC:$F,
338 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
339 []>;
340 def SELECT_CC_VRRC: Pseudo<(ops VRRC:$dst, CRRC:$cond, VRRC:$T, VRRC:$F,
341 i32imm:$BROPC), "${:comment} SELECT_CC PSEUDO!",
342 []>;
343}
344
345let isTerminator = 1, isBarrier = 1, noResults = 1, PPC970_Unit = 7 in {
346 let isReturn = 1 in
347 def BLR : XLForm_2_br<19, 16, 0, (ops pred:$p),
348 "b${p:cc}lr ${p:reg}", BrB,
349 [(retflag)]>;
350 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (ops), "bctr", BrB, []>;
351}
352
353
354
355let Defs = [LR] in
356 def MovePCtoLR : Pseudo<(ops piclabel:$label), "bl $label", []>,
357 PPC970_Unit_BRU;
358
359let isBranch = 1, isTerminator = 1, hasCtrlDep = 1,
360 noResults = 1, PPC970_Unit = 7 in {
361 let isBarrier = 1 in {
362 def B : IForm<18, 0, 0, (ops target:$dst),
363 "b $dst", BrB,
364 [(br bb:$dst)]>;
365 }
366
367 // BCC represents an arbitrary conditional branch on a predicate.
368 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
369 // a two-value operand where a dag node expects two operands. :(
370 def BCC : BForm<16, 0, 0, (ops pred:$cond, target:$dst),
371 "b${cond:cc} ${cond:reg}, $dst"
372 /*[(PPCcondbranch CRRC:$crS, imm:$opc, bb:$dst)]*/>;
373}
374
375// Macho ABI Calls.
376let isCall = 1, noResults = 1, PPC970_Unit = 7,
377 // All calls clobber the non-callee saved registers...
378 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
379 F0,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,F13,
380 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
381 LR,CTR,
382 CR0,CR1,CR5,CR6,CR7] in {
383 // Convenient aliases for call instructions
384 def BL_Macho : IForm<18, 0, 1,
385 (ops calltarget:$func, variable_ops),
386 "bl $func", BrB, []>; // See Pat patterns below.
387 def BLA_Macho : IForm<18, 1, 1,
388 (ops aaddr:$func, variable_ops),
389 "bla $func", BrB, [(PPCcall_Macho (i32 imm:$func))]>;
390 def BCTRL_Macho : XLForm_2_ext<19, 528, 20, 0, 1,
391 (ops variable_ops),
392 "bctrl", BrB,
393 [(PPCbctrl_Macho)]>;
394}
395
396// ELF ABI Calls.
397let isCall = 1, noResults = 1, PPC970_Unit = 7,
398 // All calls clobber the non-callee saved registers...
399 Defs = [R0,R2,R3,R4,R5,R6,R7,R8,R9,R10,R11,R12,
400 F0,F1,F2,F3,F4,F5,F6,F7,F8,
401 V0,V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,
402 LR,CTR,
403 CR0,CR1,CR5,CR6,CR7] in {
404 // Convenient aliases for call instructions
405 def BL_ELF : IForm<18, 0, 1,
406 (ops calltarget:$func, variable_ops),
407 "bl $func", BrB, []>; // See Pat patterns below.
408 def BLA_ELF : IForm<18, 1, 1,
409 (ops aaddr:$func, variable_ops),
410 "bla $func", BrB,
411 [(PPCcall_ELF (i32 imm:$func))]>;
412 def BCTRL_ELF : XLForm_2_ext<19, 528, 20, 0, 1,
413 (ops variable_ops),
414 "bctrl", BrB,
415 [(PPCbctrl_ELF)]>;
416}
417
418// DCB* instructions.
419def DCBA : DCB_Form<758, 0, (ops memrr:$dst),
420 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
421 PPC970_DGroup_Single;
422def DCBF : DCB_Form<86, 0, (ops memrr:$dst),
423 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
424 PPC970_DGroup_Single;
425def DCBI : DCB_Form<470, 0, (ops memrr:$dst),
426 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
427 PPC970_DGroup_Single;
428def DCBST : DCB_Form<54, 0, (ops memrr:$dst),
429 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
430 PPC970_DGroup_Single;
431def DCBT : DCB_Form<278, 0, (ops memrr:$dst),
432 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
433 PPC970_DGroup_Single;
434def DCBTST : DCB_Form<246, 0, (ops memrr:$dst),
435 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
436 PPC970_DGroup_Single;
437def DCBZ : DCB_Form<1014, 0, (ops memrr:$dst),
438 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
439 PPC970_DGroup_Single;
440def DCBZL : DCB_Form<1014, 1, (ops memrr:$dst),
441 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
442 PPC970_DGroup_Single;
443
444//===----------------------------------------------------------------------===//
445// PPC32 Load Instructions.
446//
447
448// Unindexed (r+i) Loads.
449let isLoad = 1, PPC970_Unit = 2 in {
450def LBZ : DForm_1<34, (ops GPRC:$rD, memri:$src),
451 "lbz $rD, $src", LdStGeneral,
452 [(set GPRC:$rD, (zextloadi8 iaddr:$src))]>;
453def LHA : DForm_1<42, (ops GPRC:$rD, memri:$src),
454 "lha $rD, $src", LdStLHA,
455 [(set GPRC:$rD, (sextloadi16 iaddr:$src))]>,
456 PPC970_DGroup_Cracked;
457def LHZ : DForm_1<40, (ops GPRC:$rD, memri:$src),
458 "lhz $rD, $src", LdStGeneral,
459 [(set GPRC:$rD, (zextloadi16 iaddr:$src))]>;
460def LWZ : DForm_1<32, (ops GPRC:$rD, memri:$src),
461 "lwz $rD, $src", LdStGeneral,
462 [(set GPRC:$rD, (load iaddr:$src))]>;
463
464def LFS : DForm_1<48, (ops F4RC:$rD, memri:$src),
465 "lfs $rD, $src", LdStLFDU,
466 [(set F4RC:$rD, (load iaddr:$src))]>;
467def LFD : DForm_1<50, (ops F8RC:$rD, memri:$src),
468 "lfd $rD, $src", LdStLFD,
469 [(set F8RC:$rD, (load iaddr:$src))]>;
470
471
472// Unindexed (r+i) Loads with Update (preinc).
473def LBZU : DForm_1<35, (ops GPRC:$rD, ptr_rc:$ea_result, memri:$addr),
474 "lbzu $rD, $addr", LdStGeneral,
475 []>, RegConstraint<"$addr.reg = $ea_result">,
476 NoEncode<"$ea_result">;
477
478def LHAU : DForm_1<43, (ops GPRC:$rD, ptr_rc:$ea_result, memri:$addr),
479 "lhau $rD, $addr", LdStGeneral,
480 []>, RegConstraint<"$addr.reg = $ea_result">,
481 NoEncode<"$ea_result">;
482
483def LHZU : DForm_1<41, (ops GPRC:$rD, ptr_rc:$ea_result, memri:$addr),
484 "lhzu $rD, $addr", LdStGeneral,
485 []>, RegConstraint<"$addr.reg = $ea_result">,
486 NoEncode<"$ea_result">;
487
488def LWZU : DForm_1<33, (ops GPRC:$rD, ptr_rc:$ea_result, memri:$addr),
489 "lwzu $rD, $addr", LdStGeneral,
490 []>, RegConstraint<"$addr.reg = $ea_result">,
491 NoEncode<"$ea_result">;
492
493def LFSU : DForm_1<49, (ops F4RC:$rD, ptr_rc:$ea_result, memri:$addr),
494 "lfs $rD, $addr", LdStLFDU,
495 []>, RegConstraint<"$addr.reg = $ea_result">,
496 NoEncode<"$ea_result">;
497
498def LFDU : DForm_1<51, (ops F8RC:$rD, ptr_rc:$ea_result, memri:$addr),
499 "lfd $rD, $addr", LdStLFD,
500 []>, RegConstraint<"$addr.reg = $ea_result">,
501 NoEncode<"$ea_result">;
502}
503
504// Indexed (r+r) Loads.
505//
506let isLoad = 1, PPC970_Unit = 2 in {
507def LBZX : XForm_1<31, 87, (ops GPRC:$rD, memrr:$src),
508 "lbzx $rD, $src", LdStGeneral,
509 [(set GPRC:$rD, (zextloadi8 xaddr:$src))]>;
510def LHAX : XForm_1<31, 343, (ops GPRC:$rD, memrr:$src),
511 "lhax $rD, $src", LdStLHA,
512 [(set GPRC:$rD, (sextloadi16 xaddr:$src))]>,
513 PPC970_DGroup_Cracked;
514def LHZX : XForm_1<31, 279, (ops GPRC:$rD, memrr:$src),
515 "lhzx $rD, $src", LdStGeneral,
516 [(set GPRC:$rD, (zextloadi16 xaddr:$src))]>;
517def LWZX : XForm_1<31, 23, (ops GPRC:$rD, memrr:$src),
518 "lwzx $rD, $src", LdStGeneral,
519 [(set GPRC:$rD, (load xaddr:$src))]>;
520
521
522def LHBRX : XForm_1<31, 790, (ops GPRC:$rD, memrr:$src),
523 "lhbrx $rD, $src", LdStGeneral,
524 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i16))]>;
525def LWBRX : XForm_1<31, 534, (ops GPRC:$rD, memrr:$src),
526 "lwbrx $rD, $src", LdStGeneral,
527 [(set GPRC:$rD, (PPClbrx xoaddr:$src, srcvalue:$sv, i32))]>;
528
529def LFSX : XForm_25<31, 535, (ops F4RC:$frD, memrr:$src),
530 "lfsx $frD, $src", LdStLFDU,
531 [(set F4RC:$frD, (load xaddr:$src))]>;
532def LFDX : XForm_25<31, 599, (ops F8RC:$frD, memrr:$src),
533 "lfdx $frD, $src", LdStLFDU,
534 [(set F8RC:$frD, (load xaddr:$src))]>;
535}
536
537//===----------------------------------------------------------------------===//
538// PPC32 Store Instructions.
539//
540
541// Unindexed (r+i) Stores.
542let isStore = 1, noResults = 1, PPC970_Unit = 2 in {
543def STB : DForm_1<38, (ops GPRC:$rS, memri:$src),
544 "stb $rS, $src", LdStGeneral,
545 [(truncstorei8 GPRC:$rS, iaddr:$src)]>;
546def STH : DForm_1<44, (ops GPRC:$rS, memri:$src),
547 "sth $rS, $src", LdStGeneral,
548 [(truncstorei16 GPRC:$rS, iaddr:$src)]>;
549def STW : DForm_1<36, (ops GPRC:$rS, memri:$src),
550 "stw $rS, $src", LdStGeneral,
551 [(store GPRC:$rS, iaddr:$src)]>;
552def STFS : DForm_1<52, (ops F4RC:$rS, memri:$dst),
553 "stfs $rS, $dst", LdStUX,
554 [(store F4RC:$rS, iaddr:$dst)]>;
555def STFD : DForm_1<54, (ops F8RC:$rS, memri:$dst),
556 "stfd $rS, $dst", LdStUX,
557 [(store F8RC:$rS, iaddr:$dst)]>;
558}
559
560// Unindexed (r+i) Stores with Update (preinc).
561let isStore = 1, PPC970_Unit = 2 in {
562def STBU : DForm_1<39, (ops ptr_rc:$ea_res, GPRC:$rS,
563 symbolLo:$ptroff, ptr_rc:$ptrreg),
564 "stbu $rS, $ptroff($ptrreg)", LdStGeneral,
565 [(set ptr_rc:$ea_res,
566 (pre_truncsti8 GPRC:$rS, ptr_rc:$ptrreg,
567 iaddroff:$ptroff))]>,
568 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
569def STHU : DForm_1<45, (ops ptr_rc:$ea_res, GPRC:$rS,
570 symbolLo:$ptroff, ptr_rc:$ptrreg),
571 "sthu $rS, $ptroff($ptrreg)", LdStGeneral,
572 [(set ptr_rc:$ea_res,
573 (pre_truncsti16 GPRC:$rS, ptr_rc:$ptrreg,
574 iaddroff:$ptroff))]>,
575 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
576def STWU : DForm_1<37, (ops ptr_rc:$ea_res, GPRC:$rS,
577 symbolLo:$ptroff, ptr_rc:$ptrreg),
578 "stwu $rS, $ptroff($ptrreg)", LdStGeneral,
579 [(set ptr_rc:$ea_res, (pre_store GPRC:$rS, ptr_rc:$ptrreg,
580 iaddroff:$ptroff))]>,
581 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
582def STFSU : DForm_1<37, (ops ptr_rc:$ea_res, F4RC:$rS,
583 symbolLo:$ptroff, ptr_rc:$ptrreg),
584 "stfsu $rS, $ptroff($ptrreg)", LdStGeneral,
585 [(set ptr_rc:$ea_res, (pre_store F4RC:$rS, ptr_rc:$ptrreg,
586 iaddroff:$ptroff))]>,
587 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
588def STFDU : DForm_1<37, (ops ptr_rc:$ea_res, F8RC:$rS,
589 symbolLo:$ptroff, ptr_rc:$ptrreg),
590 "stfdu $rS, $ptroff($ptrreg)", LdStGeneral,
591 [(set ptr_rc:$ea_res, (pre_store F8RC:$rS, ptr_rc:$ptrreg,
592 iaddroff:$ptroff))]>,
593 RegConstraint<"$ptrreg = $ea_res">, NoEncode<"$ea_res">;
594}
595
596
597// Indexed (r+r) Stores.
598//
599let isStore = 1, noResults = 1, PPC970_Unit = 2 in {
600def STBX : XForm_8<31, 215, (ops GPRC:$rS, memrr:$dst),
601 "stbx $rS, $dst", LdStGeneral,
602 [(truncstorei8 GPRC:$rS, xaddr:$dst)]>,
603 PPC970_DGroup_Cracked;
604def STHX : XForm_8<31, 407, (ops GPRC:$rS, memrr:$dst),
605 "sthx $rS, $dst", LdStGeneral,
606 [(truncstorei16 GPRC:$rS, xaddr:$dst)]>,
607 PPC970_DGroup_Cracked;
608def STWX : XForm_8<31, 151, (ops GPRC:$rS, memrr:$dst),
609 "stwx $rS, $dst", LdStGeneral,
610 [(store GPRC:$rS, xaddr:$dst)]>,
611 PPC970_DGroup_Cracked;
612def STWUX : XForm_8<31, 183, (ops GPRC:$rS, GPRC:$rA, GPRC:$rB),
613 "stwux $rS, $rA, $rB", LdStGeneral,
614 []>;
615def STHBRX: XForm_8<31, 918, (ops GPRC:$rS, memrr:$dst),
616 "sthbrx $rS, $dst", LdStGeneral,
617 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i16)]>,
618 PPC970_DGroup_Cracked;
619def STWBRX: XForm_8<31, 662, (ops GPRC:$rS, memrr:$dst),
620 "stwbrx $rS, $dst", LdStGeneral,
621 [(PPCstbrx GPRC:$rS, xoaddr:$dst, srcvalue:$dummy, i32)]>,
622 PPC970_DGroup_Cracked;
623
624def STFIWX: XForm_28<31, 983, (ops F8RC:$frS, memrr:$dst),
625 "stfiwx $frS, $dst", LdStUX,
626 [(PPCstfiwx F8RC:$frS, xoaddr:$dst)]>;
627def STFSX : XForm_28<31, 663, (ops F4RC:$frS, memrr:$dst),
628 "stfsx $frS, $dst", LdStUX,
629 [(store F4RC:$frS, xaddr:$dst)]>;
630def STFDX : XForm_28<31, 727, (ops F8RC:$frS, memrr:$dst),
631 "stfdx $frS, $dst", LdStUX,
632 [(store F8RC:$frS, xaddr:$dst)]>;
633}
634
635
636//===----------------------------------------------------------------------===//
637// PPC32 Arithmetic Instructions.
638//
639
640let PPC970_Unit = 1 in { // FXU Operations.
641def ADDI : DForm_2<14, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm),
642 "addi $rD, $rA, $imm", IntGeneral,
643 [(set GPRC:$rD, (add GPRC:$rA, immSExt16:$imm))]>;
644def ADDIC : DForm_2<12, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm),
645 "addic $rD, $rA, $imm", IntGeneral,
646 [(set GPRC:$rD, (addc GPRC:$rA, immSExt16:$imm))]>,
647 PPC970_DGroup_Cracked;
648def ADDICo : DForm_2<13, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm),
649 "addic. $rD, $rA, $imm", IntGeneral,
650 []>;
651def ADDIS : DForm_2<15, (ops GPRC:$rD, GPRC:$rA, symbolHi:$imm),
652 "addis $rD, $rA, $imm", IntGeneral,
653 [(set GPRC:$rD, (add GPRC:$rA, imm16ShiftedSExt:$imm))]>;
654def LA : DForm_2<14, (ops GPRC:$rD, GPRC:$rA, symbolLo:$sym),
655 "la $rD, $sym($rA)", IntGeneral,
656 [(set GPRC:$rD, (add GPRC:$rA,
657 (PPClo tglobaladdr:$sym, 0)))]>;
658def MULLI : DForm_2< 7, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm),
659 "mulli $rD, $rA, $imm", IntMulLI,
660 [(set GPRC:$rD, (mul GPRC:$rA, immSExt16:$imm))]>;
661def SUBFIC : DForm_2< 8, (ops GPRC:$rD, GPRC:$rA, s16imm:$imm),
662 "subfic $rD, $rA, $imm", IntGeneral,
663 [(set GPRC:$rD, (subc immSExt16:$imm, GPRC:$rA))]>;
664def LI : DForm_2_r0<14, (ops GPRC:$rD, symbolLo:$imm),
665 "li $rD, $imm", IntGeneral,
666 [(set GPRC:$rD, immSExt16:$imm)]>;
667def LIS : DForm_2_r0<15, (ops GPRC:$rD, symbolHi:$imm),
668 "lis $rD, $imm", IntGeneral,
669 [(set GPRC:$rD, imm16ShiftedSExt:$imm)]>;
670}
671
672let PPC970_Unit = 1 in { // FXU Operations.
673def ANDIo : DForm_4<28, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
674 "andi. $dst, $src1, $src2", IntGeneral,
675 [(set GPRC:$dst, (and GPRC:$src1, immZExt16:$src2))]>,
676 isDOT;
677def ANDISo : DForm_4<29, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
678 "andis. $dst, $src1, $src2", IntGeneral,
679 [(set GPRC:$dst, (and GPRC:$src1,imm16ShiftedZExt:$src2))]>,
680 isDOT;
681def ORI : DForm_4<24, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
682 "ori $dst, $src1, $src2", IntGeneral,
683 [(set GPRC:$dst, (or GPRC:$src1, immZExt16:$src2))]>;
684def ORIS : DForm_4<25, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
685 "oris $dst, $src1, $src2", IntGeneral,
686 [(set GPRC:$dst, (or GPRC:$src1, imm16ShiftedZExt:$src2))]>;
687def XORI : DForm_4<26, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
688 "xori $dst, $src1, $src2", IntGeneral,
689 [(set GPRC:$dst, (xor GPRC:$src1, immZExt16:$src2))]>;
690def XORIS : DForm_4<27, (ops GPRC:$dst, GPRC:$src1, u16imm:$src2),
691 "xoris $dst, $src1, $src2", IntGeneral,
692 [(set GPRC:$dst, (xor GPRC:$src1,imm16ShiftedZExt:$src2))]>;
693def NOP : DForm_4_zero<24, (ops), "nop", IntGeneral,
694 []>;
695def CMPWI : DForm_5_ext<11, (ops CRRC:$crD, GPRC:$rA, s16imm:$imm),
696 "cmpwi $crD, $rA, $imm", IntCompare>;
697def CMPLWI : DForm_6_ext<10, (ops CRRC:$dst, GPRC:$src1, u16imm:$src2),
698 "cmplwi $dst, $src1, $src2", IntCompare>;
699}
700
701
702let PPC970_Unit = 1 in { // FXU Operations.
703def NAND : XForm_6<31, 476, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
704 "nand $rA, $rS, $rB", IntGeneral,
705 [(set GPRC:$rA, (not (and GPRC:$rS, GPRC:$rB)))]>;
706def AND : XForm_6<31, 28, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
707 "and $rA, $rS, $rB", IntGeneral,
708 [(set GPRC:$rA, (and GPRC:$rS, GPRC:$rB))]>;
709def ANDC : XForm_6<31, 60, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
710 "andc $rA, $rS, $rB", IntGeneral,
711 [(set GPRC:$rA, (and GPRC:$rS, (not GPRC:$rB)))]>;
712def OR : XForm_6<31, 444, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
713 "or $rA, $rS, $rB", IntGeneral,
714 [(set GPRC:$rA, (or GPRC:$rS, GPRC:$rB))]>;
715def NOR : XForm_6<31, 124, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
716 "nor $rA, $rS, $rB", IntGeneral,
717 [(set GPRC:$rA, (not (or GPRC:$rS, GPRC:$rB)))]>;
718def ORC : XForm_6<31, 412, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
719 "orc $rA, $rS, $rB", IntGeneral,
720 [(set GPRC:$rA, (or GPRC:$rS, (not GPRC:$rB)))]>;
721def EQV : XForm_6<31, 284, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
722 "eqv $rA, $rS, $rB", IntGeneral,
723 [(set GPRC:$rA, (not (xor GPRC:$rS, GPRC:$rB)))]>;
724def XOR : XForm_6<31, 316, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
725 "xor $rA, $rS, $rB", IntGeneral,
726 [(set GPRC:$rA, (xor GPRC:$rS, GPRC:$rB))]>;
727def SLW : XForm_6<31, 24, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
728 "slw $rA, $rS, $rB", IntGeneral,
729 [(set GPRC:$rA, (PPCshl GPRC:$rS, GPRC:$rB))]>;
730def SRW : XForm_6<31, 536, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
731 "srw $rA, $rS, $rB", IntGeneral,
732 [(set GPRC:$rA, (PPCsrl GPRC:$rS, GPRC:$rB))]>;
733def SRAW : XForm_6<31, 792, (ops GPRC:$rA, GPRC:$rS, GPRC:$rB),
734 "sraw $rA, $rS, $rB", IntShift,
735 [(set GPRC:$rA, (PPCsra GPRC:$rS, GPRC:$rB))]>;
736}
737
738let PPC970_Unit = 1 in { // FXU Operations.
739def SRAWI : XForm_10<31, 824, (ops GPRC:$rA, GPRC:$rS, u5imm:$SH),
740 "srawi $rA, $rS, $SH", IntShift,
741 [(set GPRC:$rA, (sra GPRC:$rS, (i32 imm:$SH)))]>;
742def CNTLZW : XForm_11<31, 26, (ops GPRC:$rA, GPRC:$rS),
743 "cntlzw $rA, $rS", IntGeneral,
744 [(set GPRC:$rA, (ctlz GPRC:$rS))]>;
745def EXTSB : XForm_11<31, 954, (ops GPRC:$rA, GPRC:$rS),
746 "extsb $rA, $rS", IntGeneral,
747 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i8))]>;
748def EXTSH : XForm_11<31, 922, (ops GPRC:$rA, GPRC:$rS),
749 "extsh $rA, $rS", IntGeneral,
750 [(set GPRC:$rA, (sext_inreg GPRC:$rS, i16))]>;
751
752def CMPW : XForm_16_ext<31, 0, (ops CRRC:$crD, GPRC:$rA, GPRC:$rB),
753 "cmpw $crD, $rA, $rB", IntCompare>;
754def CMPLW : XForm_16_ext<31, 32, (ops CRRC:$crD, GPRC:$rA, GPRC:$rB),
755 "cmplw $crD, $rA, $rB", IntCompare>;
756}
757let PPC970_Unit = 3 in { // FPU Operations.
758//def FCMPO : XForm_17<63, 32, (ops CRRC:$crD, FPRC:$fA, FPRC:$fB),
759// "fcmpo $crD, $fA, $fB", FPCompare>;
760def FCMPUS : XForm_17<63, 0, (ops CRRC:$crD, F4RC:$fA, F4RC:$fB),
761 "fcmpu $crD, $fA, $fB", FPCompare>;
762def FCMPUD : XForm_17<63, 0, (ops CRRC:$crD, F8RC:$fA, F8RC:$fB),
763 "fcmpu $crD, $fA, $fB", FPCompare>;
764
765def FCTIWZ : XForm_26<63, 15, (ops F8RC:$frD, F8RC:$frB),
766 "fctiwz $frD, $frB", FPGeneral,
767 [(set F8RC:$frD, (PPCfctiwz F8RC:$frB))]>;
768def FRSP : XForm_26<63, 12, (ops F4RC:$frD, F8RC:$frB),
769 "frsp $frD, $frB", FPGeneral,
770 [(set F4RC:$frD, (fround F8RC:$frB))]>;
771def FSQRT : XForm_26<63, 22, (ops F8RC:$frD, F8RC:$frB),
772 "fsqrt $frD, $frB", FPSqrt,
773 [(set F8RC:$frD, (fsqrt F8RC:$frB))]>;
774def FSQRTS : XForm_26<59, 22, (ops F4RC:$frD, F4RC:$frB),
775 "fsqrts $frD, $frB", FPSqrt,
776 [(set F4RC:$frD, (fsqrt F4RC:$frB))]>;
777}
778
779/// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
780///
781/// Note that these are defined as pseudo-ops on the PPC970 because they are
782/// often coalesced away and we don't want the dispatch group builder to think
783/// that they will fill slots (which could cause the load of a LSU reject to
784/// sneak into a d-group with a store).
785def FMRS : XForm_26<63, 72, (ops F4RC:$frD, F4RC:$frB),
786 "fmr $frD, $frB", FPGeneral,
787 []>, // (set F4RC:$frD, F4RC:$frB)
788 PPC970_Unit_Pseudo;
789def FMRD : XForm_26<63, 72, (ops F8RC:$frD, F8RC:$frB),
790 "fmr $frD, $frB", FPGeneral,
791 []>, // (set F8RC:$frD, F8RC:$frB)
792 PPC970_Unit_Pseudo;
793def FMRSD : XForm_26<63, 72, (ops F8RC:$frD, F4RC:$frB),
794 "fmr $frD, $frB", FPGeneral,
795 [(set F8RC:$frD, (fextend F4RC:$frB))]>,
796 PPC970_Unit_Pseudo;
797
798let PPC970_Unit = 3 in { // FPU Operations.
799// These are artificially split into two different forms, for 4/8 byte FP.
800def FABSS : XForm_26<63, 264, (ops F4RC:$frD, F4RC:$frB),
801 "fabs $frD, $frB", FPGeneral,
802 [(set F4RC:$frD, (fabs F4RC:$frB))]>;
803def FABSD : XForm_26<63, 264, (ops F8RC:$frD, F8RC:$frB),
804 "fabs $frD, $frB", FPGeneral,
805 [(set F8RC:$frD, (fabs F8RC:$frB))]>;
806def FNABSS : XForm_26<63, 136, (ops F4RC:$frD, F4RC:$frB),
807 "fnabs $frD, $frB", FPGeneral,
808 [(set F4RC:$frD, (fneg (fabs F4RC:$frB)))]>;
809def FNABSD : XForm_26<63, 136, (ops F8RC:$frD, F8RC:$frB),
810 "fnabs $frD, $frB", FPGeneral,
811 [(set F8RC:$frD, (fneg (fabs F8RC:$frB)))]>;
812def FNEGS : XForm_26<63, 40, (ops F4RC:$frD, F4RC:$frB),
813 "fneg $frD, $frB", FPGeneral,
814 [(set F4RC:$frD, (fneg F4RC:$frB))]>;
815def FNEGD : XForm_26<63, 40, (ops F8RC:$frD, F8RC:$frB),
816 "fneg $frD, $frB", FPGeneral,
817 [(set F8RC:$frD, (fneg F8RC:$frB))]>;
818}
819
820
821// XL-Form instructions. condition register logical ops.
822//
823def MCRF : XLForm_3<19, 0, (ops CRRC:$BF, CRRC:$BFA),
824 "mcrf $BF, $BFA", BrMCR>,
825 PPC970_DGroup_First, PPC970_Unit_CRU;
826
827def CREQV : XLForm_1<19, 289, (ops CRRC:$CRD, CRRC:$CRA, CRRC:$CRB),
828 "creqv $CRD, $CRA, $CRB", BrCR,
829 []>;
830
831def SETCR : XLForm_1_ext<19, 289, (ops CRRC:$dst),
832 "creqv $dst, $dst, $dst", BrCR,
833 []>;
834
835// XFX-Form instructions. Instructions that deal with SPRs.
836//
837def MFCTR : XFXForm_1_ext<31, 339, 9, (ops GPRC:$rT), "mfctr $rT", SprMFSPR>,
838 PPC970_DGroup_First, PPC970_Unit_FXU;
839let Pattern = [(PPCmtctr GPRC:$rS)] in {
840def MTCTR : XFXForm_7_ext<31, 467, 9, (ops GPRC:$rS), "mtctr $rS", SprMTSPR>,
841 PPC970_DGroup_First, PPC970_Unit_FXU;
842}
843
844def MTLR : XFXForm_7_ext<31, 467, 8, (ops GPRC:$rS), "mtlr $rS", SprMTSPR>,
845 PPC970_DGroup_First, PPC970_Unit_FXU;
846def MFLR : XFXForm_1_ext<31, 339, 8, (ops GPRC:$rT), "mflr $rT", SprMFSPR>,
847 PPC970_DGroup_First, PPC970_Unit_FXU;
848
849// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
850// a GPR on the PPC970. As such, copies in and out have the same performance
851// characteristics as an OR instruction.
852def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (ops GPRC:$rS),
853 "mtspr 256, $rS", IntGeneral>,
854 PPC970_DGroup_Single, PPC970_Unit_FXU;
855def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (ops GPRC:$rT),
856 "mfspr $rT, 256", IntGeneral>,
857 PPC970_DGroup_First, PPC970_Unit_FXU;
858
859def MTCRF : XFXForm_5<31, 144, (ops crbitm:$FXM, GPRC:$rS),
860 "mtcrf $FXM, $rS", BrMCRX>,
861 PPC970_MicroCode, PPC970_Unit_CRU;
862def MFCR : XFXForm_3<31, 19, (ops GPRC:$rT), "mfcr $rT", SprMFCR>,
863 PPC970_MicroCode, PPC970_Unit_CRU;
864def MFOCRF: XFXForm_5a<31, 19, (ops GPRC:$rT, crbitm:$FXM),
865 "mfcr $rT, $FXM", SprMFCR>,
866 PPC970_DGroup_First, PPC970_Unit_CRU;
867
868let PPC970_Unit = 1 in { // FXU Operations.
869
870// XO-Form instructions. Arithmetic instructions that can set overflow bit
871//
872def ADD4 : XOForm_1<31, 266, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
873 "add $rT, $rA, $rB", IntGeneral,
874 [(set GPRC:$rT, (add GPRC:$rA, GPRC:$rB))]>;
875def ADDC : XOForm_1<31, 10, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
876 "addc $rT, $rA, $rB", IntGeneral,
877 [(set GPRC:$rT, (addc GPRC:$rA, GPRC:$rB))]>,
878 PPC970_DGroup_Cracked;
879def ADDE : XOForm_1<31, 138, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
880 "adde $rT, $rA, $rB", IntGeneral,
881 [(set GPRC:$rT, (adde GPRC:$rA, GPRC:$rB))]>;
882def DIVW : XOForm_1<31, 491, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
883 "divw $rT, $rA, $rB", IntDivW,
884 [(set GPRC:$rT, (sdiv GPRC:$rA, GPRC:$rB))]>,
885 PPC970_DGroup_First, PPC970_DGroup_Cracked;
886def DIVWU : XOForm_1<31, 459, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
887 "divwu $rT, $rA, $rB", IntDivW,
888 [(set GPRC:$rT, (udiv GPRC:$rA, GPRC:$rB))]>,
889 PPC970_DGroup_First, PPC970_DGroup_Cracked;
890def MULHW : XOForm_1<31, 75, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
891 "mulhw $rT, $rA, $rB", IntMulHW,
892 [(set GPRC:$rT, (mulhs GPRC:$rA, GPRC:$rB))]>;
893def MULHWU : XOForm_1<31, 11, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
894 "mulhwu $rT, $rA, $rB", IntMulHWU,
895 [(set GPRC:$rT, (mulhu GPRC:$rA, GPRC:$rB))]>;
896def MULLW : XOForm_1<31, 235, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
897 "mullw $rT, $rA, $rB", IntMulHW,
898 [(set GPRC:$rT, (mul GPRC:$rA, GPRC:$rB))]>;
899def SUBF : XOForm_1<31, 40, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
900 "subf $rT, $rA, $rB", IntGeneral,
901 [(set GPRC:$rT, (sub GPRC:$rB, GPRC:$rA))]>;
902def SUBFC : XOForm_1<31, 8, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
903 "subfc $rT, $rA, $rB", IntGeneral,
904 [(set GPRC:$rT, (subc GPRC:$rB, GPRC:$rA))]>,
905 PPC970_DGroup_Cracked;
906def SUBFE : XOForm_1<31, 136, 0, (ops GPRC:$rT, GPRC:$rA, GPRC:$rB),
907 "subfe $rT, $rA, $rB", IntGeneral,
908 [(set GPRC:$rT, (sube GPRC:$rB, GPRC:$rA))]>;
909def ADDME : XOForm_3<31, 234, 0, (ops GPRC:$rT, GPRC:$rA),
910 "addme $rT, $rA", IntGeneral,
911 [(set GPRC:$rT, (adde GPRC:$rA, immAllOnes))]>;
912def ADDZE : XOForm_3<31, 202, 0, (ops GPRC:$rT, GPRC:$rA),
913 "addze $rT, $rA", IntGeneral,
914 [(set GPRC:$rT, (adde GPRC:$rA, 0))]>;
915def NEG : XOForm_3<31, 104, 0, (ops GPRC:$rT, GPRC:$rA),
916 "neg $rT, $rA", IntGeneral,
917 [(set GPRC:$rT, (ineg GPRC:$rA))]>;
918def SUBFME : XOForm_3<31, 232, 0, (ops GPRC:$rT, GPRC:$rA),
919 "subfme $rT, $rA", IntGeneral,
920 [(set GPRC:$rT, (sube immAllOnes, GPRC:$rA))]>;
921def SUBFZE : XOForm_3<31, 200, 0, (ops GPRC:$rT, GPRC:$rA),
922 "subfze $rT, $rA", IntGeneral,
923 [(set GPRC:$rT, (sube 0, GPRC:$rA))]>;
924}
925
926// A-Form instructions. Most of the instructions executed in the FPU are of
927// this type.
928//
929let PPC970_Unit = 3 in { // FPU Operations.
930def FMADD : AForm_1<63, 29,
931 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
932 "fmadd $FRT, $FRA, $FRC, $FRB", FPFused,
933 [(set F8RC:$FRT, (fadd (fmul F8RC:$FRA, F8RC:$FRC),
934 F8RC:$FRB))]>,
935 Requires<[FPContractions]>;
936def FMADDS : AForm_1<59, 29,
937 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
938 "fmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
939 [(set F4RC:$FRT, (fadd (fmul F4RC:$FRA, F4RC:$FRC),
940 F4RC:$FRB))]>,
941 Requires<[FPContractions]>;
942def FMSUB : AForm_1<63, 28,
943 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
944 "fmsub $FRT, $FRA, $FRC, $FRB", FPFused,
945 [(set F8RC:$FRT, (fsub (fmul F8RC:$FRA, F8RC:$FRC),
946 F8RC:$FRB))]>,
947 Requires<[FPContractions]>;
948def FMSUBS : AForm_1<59, 28,
949 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
950 "fmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
951 [(set F4RC:$FRT, (fsub (fmul F4RC:$FRA, F4RC:$FRC),
952 F4RC:$FRB))]>,
953 Requires<[FPContractions]>;
954def FNMADD : AForm_1<63, 31,
955 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
956 "fnmadd $FRT, $FRA, $FRC, $FRB", FPFused,
957 [(set F8RC:$FRT, (fneg (fadd (fmul F8RC:$FRA, F8RC:$FRC),
958 F8RC:$FRB)))]>,
959 Requires<[FPContractions]>;
960def FNMADDS : AForm_1<59, 31,
961 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
962 "fnmadds $FRT, $FRA, $FRC, $FRB", FPGeneral,
963 [(set F4RC:$FRT, (fneg (fadd (fmul F4RC:$FRA, F4RC:$FRC),
964 F4RC:$FRB)))]>,
965 Requires<[FPContractions]>;
966def FNMSUB : AForm_1<63, 30,
967 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
968 "fnmsub $FRT, $FRA, $FRC, $FRB", FPFused,
969 [(set F8RC:$FRT, (fneg (fsub (fmul F8RC:$FRA, F8RC:$FRC),
970 F8RC:$FRB)))]>,
971 Requires<[FPContractions]>;
972def FNMSUBS : AForm_1<59, 30,
973 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRC, F4RC:$FRB),
974 "fnmsubs $FRT, $FRA, $FRC, $FRB", FPGeneral,
975 [(set F4RC:$FRT, (fneg (fsub (fmul F4RC:$FRA, F4RC:$FRC),
976 F4RC:$FRB)))]>,
977 Requires<[FPContractions]>;
978// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
979// having 4 of these, force the comparison to always be an 8-byte double (code
980// should use an FMRSD if the input comparison value really wants to be a float)
981// and 4/8 byte forms for the result and operand type..
982def FSELD : AForm_1<63, 23,
983 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRC, F8RC:$FRB),
984 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
985 [(set F8RC:$FRT, (PPCfsel F8RC:$FRA,F8RC:$FRC,F8RC:$FRB))]>;
986def FSELS : AForm_1<63, 23,
987 (ops F4RC:$FRT, F8RC:$FRA, F4RC:$FRC, F4RC:$FRB),
988 "fsel $FRT, $FRA, $FRC, $FRB", FPGeneral,
989 [(set F4RC:$FRT, (PPCfsel F8RC:$FRA,F4RC:$FRC,F4RC:$FRB))]>;
990def FADD : AForm_2<63, 21,
991 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRB),
992 "fadd $FRT, $FRA, $FRB", FPGeneral,
993 [(set F8RC:$FRT, (fadd F8RC:$FRA, F8RC:$FRB))]>;
994def FADDS : AForm_2<59, 21,
995 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRB),
996 "fadds $FRT, $FRA, $FRB", FPGeneral,
997 [(set F4RC:$FRT, (fadd F4RC:$FRA, F4RC:$FRB))]>;
998def FDIV : AForm_2<63, 18,
999 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRB),
1000 "fdiv $FRT, $FRA, $FRB", FPDivD,
1001 [(set F8RC:$FRT, (fdiv F8RC:$FRA, F8RC:$FRB))]>;
1002def FDIVS : AForm_2<59, 18,
1003 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRB),
1004 "fdivs $FRT, $FRA, $FRB", FPDivS,
1005 [(set F4RC:$FRT, (fdiv F4RC:$FRA, F4RC:$FRB))]>;
1006def FMUL : AForm_3<63, 25,
1007 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRB),
1008 "fmul $FRT, $FRA, $FRB", FPFused,
1009 [(set F8RC:$FRT, (fmul F8RC:$FRA, F8RC:$FRB))]>;
1010def FMULS : AForm_3<59, 25,
1011 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRB),
1012 "fmuls $FRT, $FRA, $FRB", FPGeneral,
1013 [(set F4RC:$FRT, (fmul F4RC:$FRA, F4RC:$FRB))]>;
1014def FSUB : AForm_2<63, 20,
1015 (ops F8RC:$FRT, F8RC:$FRA, F8RC:$FRB),
1016 "fsub $FRT, $FRA, $FRB", FPGeneral,
1017 [(set F8RC:$FRT, (fsub F8RC:$FRA, F8RC:$FRB))]>;
1018def FSUBS : AForm_2<59, 20,
1019 (ops F4RC:$FRT, F4RC:$FRA, F4RC:$FRB),
1020 "fsubs $FRT, $FRA, $FRB", FPGeneral,
1021 [(set F4RC:$FRT, (fsub F4RC:$FRA, F4RC:$FRB))]>;
1022}
1023
1024let PPC970_Unit = 1 in { // FXU Operations.
1025// M-Form instructions. rotate and mask instructions.
1026//
1027let isCommutable = 1 in {
1028// RLWIMI can be commuted if the rotate amount is zero.
1029def RLWIMI : MForm_2<20,
1030 (ops GPRC:$rA, GPRC:$rSi, GPRC:$rS, u5imm:$SH, u5imm:$MB,
1031 u5imm:$ME), "rlwimi $rA, $rS, $SH, $MB, $ME", IntRotate,
1032 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1033 NoEncode<"$rSi">;
1034}
1035def RLWINM : MForm_2<21,
1036 (ops GPRC:$rA, GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
1037 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
1038 []>;
1039def RLWINMo : MForm_2<21,
1040 (ops GPRC:$rA, GPRC:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
1041 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1042 []>, isDOT, PPC970_DGroup_Cracked;
1043def RLWNM : MForm_2<23,
1044 (ops GPRC:$rA, GPRC:$rS, GPRC:$rB, u5imm:$MB, u5imm:$ME),
1045 "rlwnm $rA, $rS, $rB, $MB, $ME", IntGeneral,
1046 []>;
1047}
1048
1049
1050//===----------------------------------------------------------------------===//
1051// DWARF Pseudo Instructions
1052//
1053
1054def DWARF_LOC : Pseudo<(ops i32imm:$line, i32imm:$col, i32imm:$file),
1055 "${:comment} .loc $file, $line, $col",
1056 [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
1057 (i32 imm:$file))]>;
1058
1059//===----------------------------------------------------------------------===//
1060// PowerPC Instruction Patterns
1061//
1062
1063// Arbitrary immediate support. Implement in terms of LIS/ORI.
1064def : Pat<(i32 imm:$imm),
1065 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
1066
1067// Implement the 'not' operation with the NOR instruction.
1068def NOT : Pat<(not GPRC:$in),
1069 (NOR GPRC:$in, GPRC:$in)>;
1070
1071// ADD an arbitrary immediate.
1072def : Pat<(add GPRC:$in, imm:$imm),
1073 (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
1074// OR an arbitrary immediate.
1075def : Pat<(or GPRC:$in, imm:$imm),
1076 (ORIS (ORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1077// XOR an arbitrary immediate.
1078def : Pat<(xor GPRC:$in, imm:$imm),
1079 (XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
1080// SUBFIC
1081def : Pat<(sub immSExt16:$imm, GPRC:$in),
1082 (SUBFIC GPRC:$in, imm:$imm)>;
1083
1084// SHL/SRL
1085def : Pat<(shl GPRC:$in, (i32 imm:$imm)),
1086 (RLWINM GPRC:$in, imm:$imm, 0, (SHL32 imm:$imm))>;
1087def : Pat<(srl GPRC:$in, (i32 imm:$imm)),
1088 (RLWINM GPRC:$in, (SRL32 imm:$imm), imm:$imm, 31)>;
1089
1090// ROTL
1091def : Pat<(rotl GPRC:$in, GPRC:$sh),
1092 (RLWNM GPRC:$in, GPRC:$sh, 0, 31)>;
1093def : Pat<(rotl GPRC:$in, (i32 imm:$imm)),
1094 (RLWINM GPRC:$in, imm:$imm, 0, 31)>;
1095
1096// RLWNM
1097def : Pat<(and (rotl GPRC:$in, GPRC:$sh), maskimm32:$imm),
1098 (RLWNM GPRC:$in, GPRC:$sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
1099
1100// Calls
1101def : Pat<(PPCcall_Macho (i32 tglobaladdr:$dst)),
1102 (BL_Macho tglobaladdr:$dst)>;
1103def : Pat<(PPCcall_Macho (i32 texternalsym:$dst)),
1104 (BL_Macho texternalsym:$dst)>;
1105def : Pat<(PPCcall_ELF (i32 tglobaladdr:$dst)),
1106 (BL_ELF tglobaladdr:$dst)>;
1107def : Pat<(PPCcall_ELF (i32 texternalsym:$dst)),
1108 (BL_ELF texternalsym:$dst)>;
1109
1110// Hi and Lo for Darwin Global Addresses.
1111def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1112def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1113def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1114def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
1115def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1116def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
1117def : Pat<(add GPRC:$in, (PPChi tglobaladdr:$g, 0)),
1118 (ADDIS GPRC:$in, tglobaladdr:$g)>;
1119def : Pat<(add GPRC:$in, (PPChi tconstpool:$g, 0)),
1120 (ADDIS GPRC:$in, tconstpool:$g)>;
1121def : Pat<(add GPRC:$in, (PPChi tjumptable:$g, 0)),
1122 (ADDIS GPRC:$in, tjumptable:$g)>;
1123
1124// Fused negative multiply subtract, alternate pattern
1125def : Pat<(fsub F8RC:$B, (fmul F8RC:$A, F8RC:$C)),
1126 (FNMSUB F8RC:$A, F8RC:$C, F8RC:$B)>,
1127 Requires<[FPContractions]>;
1128def : Pat<(fsub F4RC:$B, (fmul F4RC:$A, F4RC:$C)),
1129 (FNMSUBS F4RC:$A, F4RC:$C, F4RC:$B)>,
1130 Requires<[FPContractions]>;
1131
1132// Standard shifts. These are represented separately from the real shifts above
1133// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1134// amounts.
1135def : Pat<(sra GPRC:$rS, GPRC:$rB),
1136 (SRAW GPRC:$rS, GPRC:$rB)>;
1137def : Pat<(srl GPRC:$rS, GPRC:$rB),
1138 (SRW GPRC:$rS, GPRC:$rB)>;
1139def : Pat<(shl GPRC:$rS, GPRC:$rB),
1140 (SLW GPRC:$rS, GPRC:$rB)>;
1141
1142def : Pat<(zextloadi1 iaddr:$src),
1143 (LBZ iaddr:$src)>;
1144def : Pat<(zextloadi1 xaddr:$src),
1145 (LBZX xaddr:$src)>;
1146def : Pat<(extloadi1 iaddr:$src),
1147 (LBZ iaddr:$src)>;
1148def : Pat<(extloadi1 xaddr:$src),
1149 (LBZX xaddr:$src)>;
1150def : Pat<(extloadi8 iaddr:$src),
1151 (LBZ iaddr:$src)>;
1152def : Pat<(extloadi8 xaddr:$src),
1153 (LBZX xaddr:$src)>;
1154def : Pat<(extloadi16 iaddr:$src),
1155 (LHZ iaddr:$src)>;
1156def : Pat<(extloadi16 xaddr:$src),
1157 (LHZX xaddr:$src)>;
1158def : Pat<(extloadf32 iaddr:$src),
1159 (FMRSD (LFS iaddr:$src))>;
1160def : Pat<(extloadf32 xaddr:$src),
1161 (FMRSD (LFSX xaddr:$src))>;
1162
1163include "PPCInstrAltivec.td"
1164include "PPCInstr64Bit.td"