blob: 7d3540e1583daf36236fc7f5a25e9a1459f989c2 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- PPCInstrInfo.td - The PowerPC Instruction Set ------*- tablegen -*-===//
2//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jia Liu31d157a2012-02-18 12:03:15 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman4ad7d1b2004-08-09 17:24:04 +000010// This file describes the subset of the 32-bit PowerPC instruction set, as used
11// by the PowerPC instruction selector.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000012//
13//===----------------------------------------------------------------------===//
14
Chris Lattnerf3799972005-10-14 23:40:39 +000015include "PPCInstrFormats.td"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000016
Chris Lattnere6115b32005-10-25 20:41:46 +000017//===----------------------------------------------------------------------===//
Chris Lattner51269842006-03-01 05:50:56 +000018// PowerPC specific type constraints.
19//
20def SDT_PPCstfiwx : SDTypeProfile<0, 2, [ // stfiwx
21 SDTCisVT<0, f64>, SDTCisPtrTy<1>
22]>;
Hal Finkel46479192013-04-01 17:52:07 +000023def SDT_PPClfiwx : SDTypeProfile<1, 1, [ // lfiw[az]x
Hal Finkel8049ab12013-03-31 10:12:51 +000024 SDTCisVT<0, f64>, SDTCisPtrTy<1>
25]>;
26
Bill Wendlingc69107c2007-11-13 09:19:02 +000027def SDT_PPCCallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
28def SDT_PPCCallSeqEnd : SDCallSeqEnd<[ SDTCisVT<0, i32>,
29 SDTCisVT<1, i32> ]>;
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +000030def SDT_PPCvperm : SDTypeProfile<1, 3, [
31 SDTCisVT<3, v16i8>, SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>
32]>;
33
Chris Lattnera17b1552006-03-31 05:13:27 +000034def SDT_PPCvcmp : SDTypeProfile<1, 3, [
Chris Lattner6d92cad2006-03-26 10:06:40 +000035 SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>
36]>;
37
Chris Lattner90564f22006-04-18 17:59:36 +000038def SDT_PPCcondbr : SDTypeProfile<0, 3, [
Chris Lattner18258c62006-11-17 22:37:34 +000039 SDTCisVT<0, i32>, SDTCisVT<2, OtherVT>
Chris Lattner90564f22006-04-18 17:59:36 +000040]>;
41
Dan Gohmanc76909a2009-09-25 20:36:54 +000042def SDT_PPClbrx : SDTypeProfile<1, 2, [
Hal Finkelefdd4672013-03-28 19:25:55 +000043 SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
Chris Lattnerd9989382006-07-10 20:56:58 +000044]>;
Dan Gohmanc76909a2009-09-25 20:36:54 +000045def SDT_PPCstbrx : SDTypeProfile<0, 3, [
Hal Finkelefdd4672013-03-28 19:25:55 +000046 SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>
Chris Lattnerd9989382006-07-10 20:56:58 +000047]>;
48
Evan Cheng53301922008-07-12 02:23:19 +000049def SDT_PPClarx : SDTypeProfile<1, 1, [
50 SDTCisInt<0>, SDTCisPtrTy<1>
Evan Cheng54fc97d2008-04-19 01:30:48 +000051]>;
Evan Cheng53301922008-07-12 02:23:19 +000052def SDT_PPCstcx : SDTypeProfile<0, 2, [
53 SDTCisInt<0>, SDTCisPtrTy<1>
Evan Cheng54fc97d2008-04-19 01:30:48 +000054]>;
55
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000056def SDT_PPCTC_ret : SDTypeProfile<0, 2, [
57 SDTCisPtrTy<0>, SDTCisVT<1, i32>
58]>;
59
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000060
Chris Lattner51269842006-03-01 05:50:56 +000061//===----------------------------------------------------------------------===//
Chris Lattnere6115b32005-10-25 20:41:46 +000062// PowerPC specific DAG Nodes.
63//
64
Hal Finkel827307b2013-04-03 04:01:11 +000065def PPCfre : SDNode<"PPCISD::FRE", SDTFPUnaryOp, []>;
66def PPCfrsqrte: SDNode<"PPCISD::FRSQRTE", SDTFPUnaryOp, []>;
67
Hal Finkel46479192013-04-01 17:52:07 +000068def PPCfcfid : SDNode<"PPCISD::FCFID", SDTFPUnaryOp, []>;
69def PPCfcfidu : SDNode<"PPCISD::FCFIDU", SDTFPUnaryOp, []>;
70def PPCfcfids : SDNode<"PPCISD::FCFIDS", SDTFPRoundOp, []>;
71def PPCfcfidus: SDNode<"PPCISD::FCFIDUS", SDTFPRoundOp, []>;
Chris Lattnere6115b32005-10-25 20:41:46 +000072def PPCfctidz : SDNode<"PPCISD::FCTIDZ", SDTFPUnaryOp, []>;
73def PPCfctiwz : SDNode<"PPCISD::FCTIWZ", SDTFPUnaryOp, []>;
Hal Finkel46479192013-04-01 17:52:07 +000074def PPCfctiduz: SDNode<"PPCISD::FCTIDUZ",SDTFPUnaryOp, []>;
75def PPCfctiwuz: SDNode<"PPCISD::FCTIWUZ",SDTFPUnaryOp, []>;
Chris Lattnerc8478d82008-01-06 06:44:58 +000076def PPCstfiwx : SDNode<"PPCISD::STFIWX", SDT_PPCstfiwx,
77 [SDNPHasChain, SDNPMayStore]>;
Hal Finkel46479192013-04-01 17:52:07 +000078def PPClfiwax : SDNode<"PPCISD::LFIWAX", SDT_PPClfiwx,
79 [SDNPHasChain, SDNPMayLoad]>;
80def PPClfiwzx : SDNode<"PPCISD::LFIWZX", SDT_PPClfiwx,
Hal Finkel8049ab12013-03-31 10:12:51 +000081 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattnere6115b32005-10-25 20:41:46 +000082
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +000083// Extract FPSCR (not modeled at the DAG level).
84def PPCmffs : SDNode<"PPCISD::MFFS",
85 SDTypeProfile<1, 0, [SDTCisVT<0, f64>]>, []>;
86
87// Perform FADD in round-to-zero mode.
88def PPCfaddrtz: SDNode<"PPCISD::FADDRTZ", SDTFPBinOp, []>;
89
Dale Johannesen6eaeff22007-10-10 01:01:31 +000090
Chris Lattner9c73f092005-10-25 20:55:47 +000091def PPCfsel : SDNode<"PPCISD::FSEL",
92 // Type constraint for fsel.
93 SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>, SDTCisSameAs<0, 3>,
94 SDTCisFP<0>, SDTCisVT<1, f64>]>, []>;
Chris Lattner47f01f12005-09-08 19:50:41 +000095
Nate Begeman993aeb22005-12-13 22:55:22 +000096def PPChi : SDNode<"PPCISD::Hi", SDTIntBinOp, []>;
97def PPClo : SDNode<"PPCISD::Lo", SDTIntBinOp, []>;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000098def PPCtoc_entry: SDNode<"PPCISD::TOC_ENTRY", SDTIntBinOp, [SDNPMayLoad]>;
Nate Begeman993aeb22005-12-13 22:55:22 +000099def PPCvmaddfp : SDNode<"PPCISD::VMADDFP", SDTFPTernaryOp, []>;
100def PPCvnmsubfp : SDNode<"PPCISD::VNMSUBFP", SDTFPTernaryOp, []>;
Chris Lattner860e8862005-11-17 07:30:41 +0000101
Bill Schmidtb453e162012-12-14 17:02:38 +0000102def PPCaddisGotTprelHA : SDNode<"PPCISD::ADDIS_GOT_TPREL_HA", SDTIntBinOp>;
103def PPCldGotTprelL : SDNode<"PPCISD::LD_GOT_TPREL_L", SDTIntBinOp,
104 [SDNPMayLoad]>;
Bill Schmidtd7802bf2012-12-04 16:18:08 +0000105def PPCaddTls : SDNode<"PPCISD::ADD_TLS", SDTIntBinOp, []>;
Bill Schmidt57ac1f42012-12-11 20:30:11 +0000106def PPCaddisTlsgdHA : SDNode<"PPCISD::ADDIS_TLSGD_HA", SDTIntBinOp>;
107def PPCaddiTlsgdL : SDNode<"PPCISD::ADDI_TLSGD_L", SDTIntBinOp>;
108def PPCgetTlsAddr : SDNode<"PPCISD::GET_TLS_ADDR", SDTIntBinOp>;
Bill Schmidt349c2782012-12-12 19:29:35 +0000109def PPCaddisTlsldHA : SDNode<"PPCISD::ADDIS_TLSLD_HA", SDTIntBinOp>;
110def PPCaddiTlsldL : SDNode<"PPCISD::ADDI_TLSLD_L", SDTIntBinOp>;
111def PPCgetTlsldAddr : SDNode<"PPCISD::GET_TLSLD_ADDR", SDTIntBinOp>;
112def PPCaddisDtprelHA : SDNode<"PPCISD::ADDIS_DTPREL_HA", SDTIntBinOp,
113 [SDNPHasChain]>;
114def PPCaddiDtprelL : SDNode<"PPCISD::ADDI_DTPREL_L", SDTIntBinOp>;
Bill Schmidtd7802bf2012-12-04 16:18:08 +0000115
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +0000116def PPCvperm : SDNode<"PPCISD::VPERM", SDT_PPCvperm, []>;
Chris Lattnerb2177b92006-03-19 06:55:52 +0000117
Chris Lattner4172b102005-12-06 02:10:38 +0000118// These nodes represent the 32-bit PPC shifts that operate on 6-bit shift
119// amounts. These nodes are generated by the multi-precision shift code.
Chris Lattneraf8ee842008-03-07 20:18:24 +0000120def PPCsrl : SDNode<"PPCISD::SRL" , SDTIntShiftOp>;
121def PPCsra : SDNode<"PPCISD::SRA" , SDTIntShiftOp>;
122def PPCshl : SDNode<"PPCISD::SHL" , SDTIntShiftOp>;
Chris Lattner4172b102005-12-06 02:10:38 +0000123
Chris Lattner937a79d2005-12-04 19:01:59 +0000124// These are target-independent nodes, but have target-specific formats.
Bill Wendlingc69107c2007-11-13 09:19:02 +0000125def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_PPCCallSeqStart,
Chris Lattner036609b2010-12-23 18:28:41 +0000126 [SDNPHasChain, SDNPOutGlue]>;
Bill Wendlingc69107c2007-11-13 09:19:02 +0000127def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_PPCCallSeqEnd,
Chris Lattner036609b2010-12-23 18:28:41 +0000128 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Chris Lattner937a79d2005-12-04 19:01:59 +0000129
Chris Lattner2e6b77d2006-06-27 18:36:44 +0000130def SDT_PPCCall : SDTypeProfile<0, -1, [SDTCisInt<0>]>;
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000131def PPCcall : SDNode<"PPCISD::CALL", SDT_PPCCall,
132 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
133 SDNPVariadic]>;
134def PPCcall_nop : SDNode<"PPCISD::CALL_NOP", SDT_PPCCall,
135 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
136 SDNPVariadic]>;
Tilmann Scheller3a84dae2009-12-18 13:00:15 +0000137def PPCload : SDNode<"PPCISD::LOAD", SDTypeProfile<1, 1, []>,
Chris Lattner036609b2010-12-23 18:28:41 +0000138 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Tilmann Scheller3a84dae2009-12-18 13:00:15 +0000139def PPCload_toc : SDNode<"PPCISD::LOAD_TOC", SDTypeProfile<0, 1, []>,
Jakob Stoklund Olesenea476282012-08-24 14:43:27 +0000140 [SDNPHasChain, SDNPSideEffect,
141 SDNPInGlue, SDNPOutGlue]>;
Tilmann Scheller3a84dae2009-12-18 13:00:15 +0000142def PPCtoc_restore : SDNode<"PPCISD::TOC_RESTORE", SDTypeProfile<0, 0, []>,
Jakob Stoklund Olesenea476282012-08-24 14:43:27 +0000143 [SDNPHasChain, SDNPSideEffect,
144 SDNPInGlue, SDNPOutGlue]>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +0000145def PPCmtctr : SDNode<"PPCISD::MTCTR", SDT_PPCCall,
Chris Lattner036609b2010-12-23 18:28:41 +0000146 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000147def PPCbctrl : SDNode<"PPCISD::BCTRL", SDTNone,
148 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue,
149 SDNPVariadic]>;
Chris Lattner9a2a4972006-05-17 06:01:33 +0000150
Chris Lattner48be23c2008-01-15 22:02:54 +0000151def retflag : SDNode<"PPCISD::RET_FLAG", SDTNone,
Chris Lattner036609b2010-12-23 18:28:41 +0000152 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Nate Begeman9e4dd9d2005-12-20 00:26:01 +0000153
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000154def PPCtc_return : SDNode<"PPCISD::TC_RETURN", SDT_PPCTC_ret,
Chris Lattner036609b2010-12-23 18:28:41 +0000155 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000156
Hal Finkel7ee74a62013-03-21 21:37:52 +0000157def PPCeh_sjlj_setjmp : SDNode<"PPCISD::EH_SJLJ_SETJMP",
158 SDTypeProfile<1, 1, [SDTCisInt<0>,
159 SDTCisPtrTy<1>]>,
160 [SDNPHasChain, SDNPSideEffect]>;
161def PPCeh_sjlj_longjmp : SDNode<"PPCISD::EH_SJLJ_LONGJMP",
162 SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>,
163 [SDNPHasChain, SDNPSideEffect]>;
164
Chris Lattnera17b1552006-03-31 05:13:27 +0000165def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
Chris Lattner036609b2010-12-23 18:28:41 +0000166def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutGlue]>;
Chris Lattner6d92cad2006-03-26 10:06:40 +0000167
Chris Lattner90564f22006-04-18 17:59:36 +0000168def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
Chris Lattner036609b2010-12-23 18:28:41 +0000169 [SDNPHasChain, SDNPOptInGlue]>;
Chris Lattner90564f22006-04-18 17:59:36 +0000170
Chris Lattner9b37aaf2008-01-10 05:12:37 +0000171def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
172 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +0000173def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
174 [SDNPHasChain, SDNPMayStore]>;
Chris Lattnerd9989382006-07-10 20:56:58 +0000175
Hal Finkel82b38212012-08-28 02:10:27 +0000176// Instructions to set/unset CR bit 6 for SVR4 vararg calls
177def PPCcr6set : SDNode<"PPCISD::CR6SET", SDTNone,
178 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
179def PPCcr6unset : SDNode<"PPCISD::CR6UNSET", SDTNone,
180 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
181
Evan Cheng53301922008-07-12 02:23:19 +0000182// Instructions to support atomic operations
Evan Cheng8608f2e2008-04-19 02:30:38 +0000183def PPClarx : SDNode<"PPCISD::LARX", SDT_PPClarx,
184 [SDNPHasChain, SDNPMayLoad]>;
185def PPCstcx : SDNode<"PPCISD::STCX", SDT_PPCstcx,
186 [SDNPHasChain, SDNPMayStore]>;
Evan Cheng54fc97d2008-04-19 01:30:48 +0000187
Bill Schmidt53b0b0e2013-02-21 17:12:27 +0000188// Instructions to support medium and large code model
Bill Schmidt34a9d4b2012-11-27 17:35:46 +0000189def PPCaddisTocHA : SDNode<"PPCISD::ADDIS_TOC_HA", SDTIntBinOp, []>;
190def PPCldTocL : SDNode<"PPCISD::LD_TOC_L", SDTIntBinOp, [SDNPMayLoad]>;
191def PPCaddiTocL : SDNode<"PPCISD::ADDI_TOC_L", SDTIntBinOp, []>;
192
193
Jim Laskey2f616bf2006-11-16 22:43:37 +0000194// Instructions to support dynamic alloca.
195def SDTDynOp : SDTypeProfile<1, 2, []>;
196def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
197
Chris Lattner47f01f12005-09-08 19:50:41 +0000198//===----------------------------------------------------------------------===//
Chris Lattner2eb25172005-09-09 00:39:56 +0000199// PowerPC specific transformation functions and pattern fragments.
200//
Nate Begeman8d948322005-10-19 01:12:32 +0000201
Nate Begeman2d5aff72005-10-19 18:42:01 +0000202def SHL32 : SDNodeXForm<imm, [{
203 // Transformation function: 31 - imm
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000204 return getI32Imm(31 - N->getZExtValue());
Nate Begeman2d5aff72005-10-19 18:42:01 +0000205}]>;
206
Nate Begeman2d5aff72005-10-19 18:42:01 +0000207def SRL32 : SDNodeXForm<imm, [{
208 // Transformation function: 32 - imm
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000209 return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue()) : getI32Imm(0);
Nate Begeman2d5aff72005-10-19 18:42:01 +0000210}]>;
211
Chris Lattner2eb25172005-09-09 00:39:56 +0000212def LO16 : SDNodeXForm<imm, [{
213 // Transformation function: get the low 16 bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000214 return getI32Imm((unsigned short)N->getZExtValue());
Chris Lattner2eb25172005-09-09 00:39:56 +0000215}]>;
216
217def HI16 : SDNodeXForm<imm, [{
218 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000219 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Chris Lattner2eb25172005-09-09 00:39:56 +0000220}]>;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000221
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000222def HA16 : SDNodeXForm<imm, [{
223 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000224 signed int Val = N->getZExtValue();
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000225 return getI32Imm((Val - (signed short)Val) >> 16);
226}]>;
Nate Begemanf42f1332006-09-22 05:01:56 +0000227def MB : SDNodeXForm<imm, [{
228 // Transformation function: get the start bit of a mask
Duncan Sandse79f5ef2008-10-16 13:02:33 +0000229 unsigned mb = 0, me;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000230 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000231 return getI32Imm(mb);
232}]>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000233
Nate Begemanf42f1332006-09-22 05:01:56 +0000234def ME : SDNodeXForm<imm, [{
235 // Transformation function: get the end bit of a mask
Duncan Sandse79f5ef2008-10-16 13:02:33 +0000236 unsigned mb, me = 0;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000237 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000238 return getI32Imm(me);
239}]>;
240def maskimm32 : PatLeaf<(imm), [{
241 // maskImm predicate - True if immediate is a run of ones.
242 unsigned mb, me;
Owen Anderson825b72b2009-08-11 20:47:22 +0000243 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000244 return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000245 else
246 return false;
247}]>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000248
Chris Lattner3e63ead2005-09-08 17:33:10 +0000249def immSExt16 : PatLeaf<(imm), [{
250 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
251 // field. Used by instructions like 'addi'.
Owen Anderson825b72b2009-08-11 20:47:22 +0000252 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000253 return (int32_t)N->getZExtValue() == (short)N->getZExtValue();
Chris Lattner7f7b346e2006-06-20 23:21:20 +0000254 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000255 return (int64_t)N->getZExtValue() == (short)N->getZExtValue();
Chris Lattner3e63ead2005-09-08 17:33:10 +0000256}]>;
Chris Lattnerbfde0802005-09-08 17:40:49 +0000257def immZExt16 : PatLeaf<(imm), [{
258 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
259 // field. Used by instructions like 'ori'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000260 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000261}], LO16>;
262
Chris Lattner0ea70b22006-06-20 22:34:10 +0000263// imm16Shifted* - These match immediates where the low 16-bits are zero. There
264// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
265// identical in 32-bit mode, but in 64-bit mode, they return true if the
266// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
267// clear).
268def imm16ShiftedZExt : PatLeaf<(imm), [{
269 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
270 // immediate are set. Used by instructions like 'xoris'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000271 return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
Chris Lattner0ea70b22006-06-20 22:34:10 +0000272}], HI16>;
273
274def imm16ShiftedSExt : PatLeaf<(imm), [{
275 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
276 // immediate are set. Used by instructions like 'addis'. Identical to
277 // imm16ShiftedZExt in 32-bit mode.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000278 if (N->getZExtValue() & 0xFFFF) return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000279 if (N->getValueType(0) == MVT::i32)
Chris Lattnerdd583432006-06-20 21:39:30 +0000280 return true;
281 // For 64-bit, make sure it is sext right.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000282 return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000283}], HI16>;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000284
Hal Finkel08a215c2013-03-18 23:00:58 +0000285// Some r+i load/store instructions (such as LD, STD, LDU, etc.) that require
286// restricted memrix (offset/4) constants are alignment sensitive. If these
287// offsets are hidden behind TOC entries than the values of the lower-order
288// bits cannot be checked directly. As a result, we need to also incorporate
289// an alignment check into the relevant patterns.
290
291def aligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
292 return cast<LoadSDNode>(N)->getAlignment() >= 4;
293}]>;
294def aligned4store : PatFrag<(ops node:$val, node:$ptr),
295 (store node:$val, node:$ptr), [{
296 return cast<StoreSDNode>(N)->getAlignment() >= 4;
297}]>;
298def aligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
299 return cast<LoadSDNode>(N)->getAlignment() >= 4;
300}]>;
301def aligned4pre_store : PatFrag<
302 (ops node:$val, node:$base, node:$offset),
303 (pre_store node:$val, node:$base, node:$offset), [{
304 return cast<StoreSDNode>(N)->getAlignment() >= 4;
305}]>;
306
307def unaligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
308 return cast<LoadSDNode>(N)->getAlignment() < 4;
309}]>;
310def unaligned4store : PatFrag<(ops node:$val, node:$ptr),
311 (store node:$val, node:$ptr), [{
312 return cast<StoreSDNode>(N)->getAlignment() < 4;
313}]>;
314def unaligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
315 return cast<LoadSDNode>(N)->getAlignment() < 4;
316}]>;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000317
Chris Lattner47f01f12005-09-08 19:50:41 +0000318//===----------------------------------------------------------------------===//
319// PowerPC Flag Definitions.
320
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000321class isPPC64 { bit PPC64 = 1; }
Hal Finkel59857462013-04-12 18:17:57 +0000322class isDOT { bit RC = 1; }
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000323
Chris Lattner302bf9c2006-11-08 02:13:12 +0000324class RegConstraint<string C> {
325 string Constraints = C;
326}
Chris Lattner8e28b5c2006-11-15 23:24:18 +0000327class NoEncode<string E> {
328 string DisableEncoding = E;
329}
Chris Lattner47f01f12005-09-08 19:50:41 +0000330
331
332//===----------------------------------------------------------------------===//
333// PowerPC Operand Definitions.
Chris Lattner7bb424f2004-08-14 23:27:29 +0000334
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000335// In the default PowerPC assembler syntax, registers are specified simply
336// by number, so they cannot be distinguished from immediate values (without
337// looking at the opcode). This means that the default operand matching logic
338// for the asm parser does not work, and we need to specify custom matchers.
339// Since those can only be specified with RegisterOperand classes and not
340// directly on the RegisterClass, all instructions patterns used by the asm
341// parser need to use a RegisterOperand (instead of a RegisterClass) for
342// all their register operands.
343// For this purpose, we define one RegisterOperand for each RegisterClass,
344// using the same name as the class, just in lower case.
345def gprc : RegisterOperand<GPRC>;
346def g8rc : RegisterOperand<G8RC>;
347def gprc_nor0 : RegisterOperand<GPRC_NOR0>;
348def g8rc_nox0 : RegisterOperand<G8RC_NOX0>;
349def f8rc : RegisterOperand<F8RC>;
350def f4rc : RegisterOperand<F4RC>;
351def vrrc : RegisterOperand<VRRC>;
352def crbitrc : RegisterOperand<CRBITRC>;
353def crrc : RegisterOperand<CRRC>;
354
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000355def s5imm : Operand<i32> {
356 let PrintMethod = "printS5ImmOperand";
357}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000358def u5imm : Operand<i32> {
Nate Begemanc3306122004-08-21 05:56:39 +0000359 let PrintMethod = "printU5ImmOperand";
360}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000361def u6imm : Operand<i32> {
Nate Begeman07aada82004-08-30 02:28:06 +0000362 let PrintMethod = "printU6ImmOperand";
363}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000364def s16imm : Operand<i32> {
Nate Begemaned428532004-09-04 05:00:00 +0000365 let PrintMethod = "printS16ImmOperand";
366}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000367def u16imm : Operand<i32> {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000368 let PrintMethod = "printU16ImmOperand";
369}
Chris Lattner8d704112010-11-15 06:09:35 +0000370def directbrtarget : Operand<OtherVT> {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000371 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000372 let EncoderMethod = "getDirectBrEncoding";
373}
374def condbrtarget : Operand<OtherVT> {
Chris Lattnerb8efa6b2010-11-16 01:45:05 +0000375 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000376 let EncoderMethod = "getCondBrEncoding";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000377}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000378def calltarget : Operand<iPTR> {
Chris Lattner8d704112010-11-15 06:09:35 +0000379 let EncoderMethod = "getDirectBrEncoding";
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000380}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000381def aaddr : Operand<iPTR> {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000382 let PrintMethod = "printAbsAddrOperand";
383}
Nate Begemaned428532004-09-04 05:00:00 +0000384def symbolHi: Operand<i32> {
385 let PrintMethod = "printSymbolHi";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000386 let EncoderMethod = "getHA16Encoding";
Nate Begemaned428532004-09-04 05:00:00 +0000387}
388def symbolLo: Operand<i32> {
389 let PrintMethod = "printSymbolLo";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000390 let EncoderMethod = "getLO16Encoding";
Nate Begemaned428532004-09-04 05:00:00 +0000391}
Nate Begemanadeb43d2005-07-20 22:42:00 +0000392def crbitm: Operand<i8> {
393 let PrintMethod = "printcrbitm";
Chris Lattner7192eb82010-11-15 05:19:25 +0000394 let EncoderMethod = "get_crbitm_encoding";
Nate Begemanadeb43d2005-07-20 22:42:00 +0000395}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000396// Address operands
Hal Finkela548afc2013-03-19 18:51:05 +0000397// A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
398def ptr_rc_nor0 : PointerLikeRegClass<1>;
399
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000400def dispRI : Operand<iPTR>;
401def dispRIX : Operand<iPTR>;
402
Chris Lattner059ca0f2006-06-16 21:01:35 +0000403def memri : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000404 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000405 let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
Chris Lattnerb7035d02010-11-15 08:22:03 +0000406 let EncoderMethod = "getMemRIEncoding";
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000407}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000408def memrr : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000409 let PrintMethod = "printMemRegReg";
Ulrich Weigand89ec8472013-03-22 14:59:13 +0000410 let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc:$offreg);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000411}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000412def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000413 let PrintMethod = "printMemRegImmShifted";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000414 let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
Chris Lattner17e2c182010-11-15 08:02:41 +0000415 let EncoderMethod = "getMemRIXEncoding";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000416}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000417
Hal Finkel7ee74a62013-03-21 21:37:52 +0000418// A single-register address. This is used with the SjLj
419// pseudo-instructions.
420def memr : Operand<iPTR> {
421 let MIOperandInfo = (ops ptr_rc:$ptrreg);
422}
423
Ulrich Weigand3b255292013-03-26 10:53:27 +0000424// PowerPC Predicate operand.
425def pred : Operand<OtherVT> {
Chris Lattneraf53a872006-11-04 05:27:39 +0000426 let PrintMethod = "printPredicateOperand";
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000427 let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
Chris Lattneraf53a872006-11-04 05:27:39 +0000428}
Chris Lattner0638b262006-11-03 23:53:25 +0000429
Chris Lattnera613d262006-01-12 02:05:36 +0000430// Define PowerPC specific addressing mode.
Evan Chengaf9db752006-10-11 21:03:53 +0000431def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
432def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
433def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
434def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000435
Hal Finkel7ee74a62013-03-21 21:37:52 +0000436// The address in a single register. This is used with the SjLj
437// pseudo-instructions.
438def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
439
Chris Lattner74531e42006-11-16 00:41:37 +0000440/// This is just the offset part of iaddr, used for preinc.
441def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +0000442
Evan Cheng8c75ef92005-12-14 22:07:12 +0000443//===----------------------------------------------------------------------===//
444// PowerPC Instruction Predicate Definitions.
Evan Cheng152b7e12007-10-23 06:42:42 +0000445def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
446def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Hal Finkelc6d08f12011-10-17 04:03:49 +0000447def IsBookE : Predicate<"PPCSubTarget.isBookE()">;
Chris Lattner6a5339b2006-11-14 18:44:47 +0000448
Chris Lattner47f01f12005-09-08 19:50:41 +0000449//===----------------------------------------------------------------------===//
Hal Finkel171a8ad2013-04-12 02:18:09 +0000450// PowerPC Multiclass Definitions.
451
452multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
453 string asmbase, string asmstr, InstrItinClass itin,
454 list<dag> pattern> {
455 let BaseName = asmbase in {
456 def NAME : XForm_6<opcode, xo, OOL, IOL,
457 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
458 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000459 let Defs = [CR0] in
460 def o : XForm_6<opcode, xo, OOL, IOL,
461 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
462 []>, isDOT, RecFormRel;
463 }
464}
465
466multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
467 string asmbase, string asmstr, InstrItinClass itin,
468 list<dag> pattern> {
469 let BaseName = asmbase in {
470 let Defs = [CARRY] in
471 def NAME : XForm_6<opcode, xo, OOL, IOL,
472 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
473 pattern>, RecFormRel;
474 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000475 def o : XForm_6<opcode, xo, OOL, IOL,
476 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
477 []>, isDOT, RecFormRel;
478 }
479}
480
481multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
482 string asmbase, string asmstr, InstrItinClass itin,
483 list<dag> pattern> {
484 let BaseName = asmbase in {
485 def NAME : XForm_10<opcode, xo, OOL, IOL,
486 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
487 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000488 let Defs = [CR0] in
489 def o : XForm_10<opcode, xo, OOL, IOL,
490 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
491 []>, isDOT, RecFormRel;
492 }
493}
494
495multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
496 string asmbase, string asmstr, InstrItinClass itin,
497 list<dag> pattern> {
498 let BaseName = asmbase in {
499 let Defs = [CARRY] in
500 def NAME : XForm_10<opcode, xo, OOL, IOL,
501 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
502 pattern>, RecFormRel;
503 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000504 def o : XForm_10<opcode, xo, OOL, IOL,
505 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
506 []>, isDOT, RecFormRel;
507 }
508}
509
510multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
511 string asmbase, string asmstr, InstrItinClass itin,
512 list<dag> pattern> {
513 let BaseName = asmbase in {
514 def NAME : XForm_11<opcode, xo, OOL, IOL,
515 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
516 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000517 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000518 def o : XForm_11<opcode, xo, OOL, IOL,
519 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
520 []>, isDOT, RecFormRel;
521 }
522}
523
524multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
525 string asmbase, string asmstr, InstrItinClass itin,
526 list<dag> pattern> {
527 let BaseName = asmbase in {
528 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
529 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
530 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000531 let Defs = [CR0] in
532 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
533 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
534 []>, isDOT, RecFormRel;
535 }
536}
537
538multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
539 string asmbase, string asmstr, InstrItinClass itin,
540 list<dag> pattern> {
541 let BaseName = asmbase in {
542 let Defs = [CARRY] in
543 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
544 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
545 pattern>, RecFormRel;
546 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000547 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
548 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
549 []>, isDOT, RecFormRel;
550 }
551}
552
553multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
554 string asmbase, string asmstr, InstrItinClass itin,
555 list<dag> pattern> {
556 let BaseName = asmbase in {
557 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
558 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
559 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000560 let Defs = [CR0] in
561 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
562 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
563 []>, isDOT, RecFormRel;
564 }
565}
566
567multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
568 string asmbase, string asmstr, InstrItinClass itin,
569 list<dag> pattern> {
570 let BaseName = asmbase in {
571 let Defs = [CARRY] in
572 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
573 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
574 pattern>, RecFormRel;
575 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000576 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
577 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
578 []>, isDOT, RecFormRel;
579 }
580}
581
582multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
583 string asmbase, string asmstr, InstrItinClass itin,
584 list<dag> pattern> {
585 let BaseName = asmbase in {
586 def NAME : MForm_2<opcode, OOL, IOL,
587 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
588 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000589 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000590 def o : MForm_2<opcode, OOL, IOL,
591 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
592 []>, isDOT, RecFormRel;
593 }
594}
595
596multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
597 string asmbase, string asmstr, InstrItinClass itin,
598 list<dag> pattern> {
599 let BaseName = asmbase in {
600 def NAME : MDForm_1<opcode, xo, OOL, IOL,
601 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
602 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000603 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000604 def o : MDForm_1<opcode, xo, OOL, IOL,
605 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
606 []>, isDOT, RecFormRel;
607 }
608}
609
Ulrich Weigand1adc97c2013-04-26 15:39:12 +0000610multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
611 string asmbase, string asmstr, InstrItinClass itin,
612 list<dag> pattern> {
613 let BaseName = asmbase in {
614 def NAME : MDSForm_1<opcode, xo, OOL, IOL,
615 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
616 pattern>, RecFormRel;
617 let Defs = [CR0] in
618 def o : MDSForm_1<opcode, xo, OOL, IOL,
619 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
620 []>, isDOT, RecFormRel;
621 }
622}
623
Hal Finkel59857462013-04-12 18:17:57 +0000624multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
625 string asmbase, string asmstr, InstrItinClass itin,
626 list<dag> pattern> {
Hal Finkel171a8ad2013-04-12 02:18:09 +0000627 let BaseName = asmbase in {
Hal Finkel59857462013-04-12 18:17:57 +0000628 let Defs = [CARRY] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000629 def NAME : XSForm_1<opcode, xo, OOL, IOL,
630 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
631 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000632 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000633 def o : XSForm_1<opcode, xo, OOL, IOL,
634 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
635 []>, isDOT, RecFormRel;
636 }
637}
638
639multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
640 string asmbase, string asmstr, InstrItinClass itin,
641 list<dag> pattern> {
642 let BaseName = asmbase in {
643 def NAME : XForm_26<opcode, xo, OOL, IOL,
644 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
645 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000646 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000647 def o : XForm_26<opcode, xo, OOL, IOL,
648 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000649 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000650 }
651}
652
653multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
654 string asmbase, string asmstr, InstrItinClass itin,
655 list<dag> pattern> {
656 let BaseName = asmbase in {
657 def NAME : AForm_1<opcode, xo, OOL, IOL,
658 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
659 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000660 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000661 def o : AForm_1<opcode, xo, OOL, IOL,
662 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000663 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000664 }
665}
666
667multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
668 string asmbase, string asmstr, InstrItinClass itin,
669 list<dag> pattern> {
670 let BaseName = asmbase in {
671 def NAME : AForm_2<opcode, xo, OOL, IOL,
672 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
673 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000674 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000675 def o : AForm_2<opcode, xo, OOL, IOL,
676 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000677 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000678 }
679}
680
681multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
682 string asmbase, string asmstr, InstrItinClass itin,
683 list<dag> pattern> {
684 let BaseName = asmbase in {
685 def NAME : AForm_3<opcode, xo, OOL, IOL,
686 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
687 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000688 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000689 def o : AForm_3<opcode, xo, OOL, IOL,
690 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000691 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000692 }
693}
694
695//===----------------------------------------------------------------------===//
Chris Lattner47f01f12005-09-08 19:50:41 +0000696// PowerPC Instruction Definitions.
697
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000698// Pseudo-instructions:
Chris Lattner47f01f12005-09-08 19:50:41 +0000699
Chris Lattner88d211f2006-03-12 09:13:49 +0000700let hasCtrlDep = 1 in {
Evan Cheng071a2792007-09-11 19:55:27 +0000701let Defs = [R1], Uses = [R1] in {
Will Schmidt91638152012-10-04 18:14:28 +0000702def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000703 [(callseq_start timm:$amt)]>;
Will Schmidt91638152012-10-04 18:14:28 +0000704def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000705 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000706}
Chris Lattner1877ec92006-03-13 21:52:10 +0000707
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000708def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +0000709 "UPDATE_VRSAVE $rD, $rS", []>;
Nate Begemanb816f022004-10-07 22:30:03 +0000710}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000711
Evan Cheng071a2792007-09-11 19:55:27 +0000712let Defs = [R1], Uses = [R1] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000713def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000714 [(set i32:$result,
715 (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
Jim Laskey2f616bf2006-11-16 22:43:37 +0000716
Dan Gohman533297b2009-10-29 18:10:34 +0000717// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
718// instruction selection into a branch sequence.
719let usesCustomInserter = 1, // Expanded after instruction selection.
Chris Lattner88d211f2006-03-12 09:13:49 +0000720 PPC970_Single = 1 in {
Hal Finkelab42ec22013-03-27 05:57:58 +0000721 // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
722 // because either operand might become the first operand in an isel, and
723 // that operand cannot be r0.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000724 def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
725 gprc_nor0:$T, gprc_nor0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000726 i32imm:$BROPC), "#SELECT_CC_I4",
Chris Lattner54689662006-09-27 02:55:21 +0000727 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000728 def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
729 g8rc_nox0:$T, g8rc_nox0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000730 i32imm:$BROPC), "#SELECT_CC_I8",
Chris Lattner54689662006-09-27 02:55:21 +0000731 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000732 def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000733 i32imm:$BROPC), "#SELECT_CC_F4",
Chris Lattner54689662006-09-27 02:55:21 +0000734 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000735 def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000736 i32imm:$BROPC), "#SELECT_CC_F8",
Chris Lattner54689662006-09-27 02:55:21 +0000737 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000738 def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000739 i32imm:$BROPC), "#SELECT_CC_VRRC",
Chris Lattner54689662006-09-27 02:55:21 +0000740 []>;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000741}
742
Bill Wendling7194aaf2008-03-03 22:19:16 +0000743// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
744// scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000745let mayStore = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000746def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000747 "#SPILL_CR", []>;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000748
Hal Finkeld21e9302011-12-06 20:55:36 +0000749// RESTORE_CR - Indicate that we're restoring the CR register (previously
750// spilled), so we'll need to scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000751let mayLoad = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000752def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000753 "#RESTORE_CR", []>;
Hal Finkeld21e9302011-12-06 20:55:36 +0000754
Evan Chengffbacca2007-07-21 00:34:19 +0000755let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Ulrich Weigand3b255292013-03-26 10:53:27 +0000756 let isReturn = 1, Uses = [LR, RM] in
757 def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", BrB,
758 [(retflag)]>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000759 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
Owen Anderson20ab2902007-11-12 07:39:39 +0000760 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000761
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000762 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000763 def BCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
764 "b${cond:cc}ctr ${cond:reg}", BrB, []>;
765 }
Chris Lattner47f01f12005-09-08 19:50:41 +0000766}
767
Chris Lattner7a823bd2005-02-15 20:26:49 +0000768let Defs = [LR] in
Will Schmidt91638152012-10-04 18:14:28 +0000769 def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
Chris Lattner88d211f2006-03-12 09:13:49 +0000770 PPC970_Unit_BRU;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000771
Evan Chengffbacca2007-07-21 00:34:19 +0000772let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Chris Lattner594f4c62006-10-13 19:10:34 +0000773 let isBarrier = 1 in {
Chris Lattner8d704112010-11-15 06:09:35 +0000774 def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
Chris Lattner1e484782005-12-04 18:42:54 +0000775 "b $dst", BrB,
776 [(br bb:$dst)]>;
Chris Lattner594f4c62006-10-13 19:10:34 +0000777 }
Chris Lattnerdd998852004-11-22 23:07:01 +0000778
Chris Lattner18258c62006-11-17 22:37:34 +0000779 // BCC represents an arbitrary conditional branch on a predicate.
780 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
Will Schmidtd8755332012-10-05 15:16:11 +0000781 // a two-value operand where a dag node expects two operands. :(
Hal Finkel5ee67e82013-04-08 16:24:03 +0000782 let isCodeGenOnly = 1 in {
Will Schmidtd8755332012-10-05 15:16:11 +0000783 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
784 "b${cond:cc} ${cond:reg}, $dst"
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000785 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
Hal Finkel5ee67e82013-04-08 16:24:03 +0000786 let isReturn = 1, Uses = [LR, RM] in
787 def BCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
788 "b${cond:cc}lr ${cond:reg}", BrB, []>;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000789
790 let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
791 def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
792 "bdzlr", BrB, []>;
793 def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
794 "bdnzlr", BrB, []>;
795 }
Hal Finkel5ee67e82013-04-08 16:24:03 +0000796 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000797
798 let Defs = [CTR], Uses = [CTR] in {
Ulrich Weigand18430432012-11-13 19:15:52 +0000799 def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
800 "bdz $dst">;
801 def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
802 "bdnz $dst">;
Hal Finkel99f823f2012-06-08 15:38:21 +0000803 }
Misha Brukmanb2edb442004-06-28 18:23:35 +0000804}
805
Hal Finkelcaeeb182013-04-04 22:55:54 +0000806// The unconditional BCL used by the SjLj setjmp code.
Ulrich Weigand3d386422013-03-26 10:57:16 +0000807let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000808 let Defs = [LR], Uses = [RM] in {
Hal Finkelcaeeb182013-04-04 22:55:54 +0000809 def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
810 "bcl 20, 31, $dst">;
Hal Finkel7ee74a62013-03-21 21:37:52 +0000811 }
812}
813
Roman Divackye46137f2012-03-06 16:41:49 +0000814let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
Misha Brukmanc661c302004-06-30 22:00:45 +0000815 // Convenient aliases for call instructions
Dale Johannesenb384ab92008-10-29 18:26:45 +0000816 let Uses = [RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000817 def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func),
818 "bl $func", BrB, []>; // See Pat patterns below.
819 def BLA : IForm<18, 1, 1, (outs), (ins aaddr:$func),
820 "bla $func", BrB, [(PPCcall (i32 imm:$func))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +0000821 }
822 let Uses = [CTR, RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000823 def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
824 "bctrl", BrB, [(PPCbctrl)]>,
825 Requires<[In32BitMode]>;
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000826
827 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000828 def BCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
829 "b${cond:cc}ctrl ${cond:reg}", BrB, []>;
Dale Johannesen639076f2008-10-23 20:41:28 +0000830 }
Chris Lattner9f0bc652007-02-25 05:34:32 +0000831}
832
Dale Johannesenb384ab92008-10-29 18:26:45 +0000833let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000834def TCRETURNdi :Pseudo< (outs),
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000835 (ins calltarget:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000836 "#TC_RETURNd $dst $offset",
837 []>;
838
839
Dale Johannesenb384ab92008-10-29 18:26:45 +0000840let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000841def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000842 "#TC_RETURNa $func $offset",
843 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
844
Dale Johannesenb384ab92008-10-29 18:26:45 +0000845let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000846def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000847 "#TC_RETURNr $dst $offset",
848 []>;
849
850
Ulrich Weigand3d386422013-03-26 10:57:16 +0000851let isCodeGenOnly = 1 in {
852
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000853let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000854 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000855def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
856 Requires<[In32BitMode]>;
857
858
859
860let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000861 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000862def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
863 "b $dst", BrB,
864 []>;
865
Ulrich Weigand3d386422013-03-26 10:57:16 +0000866}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000867
868let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000869 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000870def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
871 "ba $dst", BrB,
872 []>;
873
Ulrich Weigand3d386422013-03-26 10:57:16 +0000874let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000875 def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf),
Hal Finkel7ee74a62013-03-21 21:37:52 +0000876 "#EH_SJLJ_SETJMP32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000877 [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
Hal Finkel7ee74a62013-03-21 21:37:52 +0000878 Requires<[In32BitMode]>;
879 let isTerminator = 1 in
880 def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
881 "#EH_SJLJ_LONGJMP32",
882 [(PPCeh_sjlj_longjmp addr:$buf)]>,
883 Requires<[In32BitMode]>;
884}
885
Ulrich Weigand3d386422013-03-26 10:57:16 +0000886let isBranch = 1, isTerminator = 1 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000887 def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
888 "#EH_SjLj_Setup\t$dst", []>;
889}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000890
Chris Lattner001db452006-06-06 21:29:23 +0000891// DCB* instructions.
Evan Cheng64d80e32007-07-19 01:14:50 +0000892def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000893 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
894 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000895def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000896 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
897 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000898def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000899 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
900 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000901def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000902 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
903 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000904def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000905 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
906 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000907def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000908 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
909 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000910def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000911 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
912 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000913def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000914 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
915 PPC970_DGroup_Single;
Chris Lattner26e552b2006-11-14 19:19:53 +0000916
Hal Finkel19aa2b52012-04-01 20:08:17 +0000917def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
918 (DCBT xoaddr:$dst)>;
919
Evan Cheng53301922008-07-12 02:23:19 +0000920// Atomic operations
Dan Gohman533297b2009-10-29 18:10:34 +0000921let usesCustomInserter = 1 in {
Jakob Stoklund Olesencf3a7482011-04-04 17:07:09 +0000922 let Defs = [CR0] in {
Dale Johannesen97efa362008-08-28 17:53:09 +0000923 def ATOMIC_LOAD_ADD_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000924 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000925 [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000926 def ATOMIC_LOAD_SUB_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000927 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000928 [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000929 def ATOMIC_LOAD_AND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000930 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000931 [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000932 def ATOMIC_LOAD_OR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000933 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000934 [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000935 def ATOMIC_LOAD_XOR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000936 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000937 [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000938 def ATOMIC_LOAD_NAND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000939 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000940 [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000941 def ATOMIC_LOAD_ADD_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000942 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000943 [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000944 def ATOMIC_LOAD_SUB_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000945 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000946 [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000947 def ATOMIC_LOAD_AND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000948 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000949 [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000950 def ATOMIC_LOAD_OR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000951 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000952 [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000953 def ATOMIC_LOAD_XOR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000954 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000955 [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000956 def ATOMIC_LOAD_NAND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000957 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000958 [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
Evan Cheng53301922008-07-12 02:23:19 +0000959 def ATOMIC_LOAD_ADD_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000960 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000961 [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000962 def ATOMIC_LOAD_SUB_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000963 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000964 [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000965 def ATOMIC_LOAD_AND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000966 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000967 [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000968 def ATOMIC_LOAD_OR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000969 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000970 [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000971 def ATOMIC_LOAD_XOR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000972 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000973 [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000974 def ATOMIC_LOAD_NAND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000975 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000976 [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000977
Dale Johannesen97efa362008-08-28 17:53:09 +0000978 def ATOMIC_CMP_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000979 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000980 [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000981 def ATOMIC_CMP_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000982 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I16 $dst $ptr $old $new",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000983 [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +0000984 def ATOMIC_CMP_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000985 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I32 $dst $ptr $old $new",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000986 [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +0000987
Dale Johannesen97efa362008-08-28 17:53:09 +0000988 def ATOMIC_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000989 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000990 [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +0000991 def ATOMIC_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000992 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000993 [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen140a8bb2008-08-25 21:09:52 +0000994 def ATOMIC_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000995 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000996 [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +0000997 }
Evan Cheng54fc97d2008-04-19 01:30:48 +0000998}
999
Evan Cheng53301922008-07-12 02:23:19 +00001000// Instructions to support atomic operations
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001001def LWARX : XForm_1<31, 20, (outs gprc:$rD), (ins memrr:$src),
Evan Cheng53301922008-07-12 02:23:19 +00001002 "lwarx $rD, $src", LdStLWARX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001003 [(set i32:$rD, (PPClarx xoaddr:$src))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001004
1005let Defs = [CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001006def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
Evan Cheng53301922008-07-12 02:23:19 +00001007 "stwcx. $rS, $dst", LdStSTWCX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001008 [(PPCstcx i32:$rS, xoaddr:$dst)]>,
Evan Cheng53301922008-07-12 02:23:19 +00001009 isDOT;
1010
Dan Gohmaneffc8c52010-05-14 16:46:02 +00001011let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
Hal Finkel20b529b2012-04-01 04:44:16 +00001012def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStLoad, [(trap)]>;
Nate Begeman1db3c922008-08-11 17:36:31 +00001013
Chris Lattner26e552b2006-11-14 19:19:53 +00001014//===----------------------------------------------------------------------===//
1015// PPC32 Load Instructions.
Nate Begeman07aada82004-08-30 02:28:06 +00001016//
Chris Lattner26e552b2006-11-14 19:19:53 +00001017
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001018// Unindexed (r+i) Loads.
Dan Gohman15511cf2008-12-03 18:15:48 +00001019let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001020def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001021 "lbz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001022 [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001023def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001024 "lha $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001025 [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
Chris Lattnerfd977342006-03-13 05:15:10 +00001026 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001027def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001028 "lhz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001029 [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001030def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001031 "lwz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001032 [(set i32:$rD, (load iaddr:$src))]>;
Chris Lattner302bf9c2006-11-08 02:13:12 +00001033
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001034def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001035 "lfs $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001036 [(set f32:$rD, (load iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001037def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
Chris Lattner4eab7142006-11-10 02:08:47 +00001038 "lfd $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001039 [(set f64:$rD, (load iaddr:$src))]>;
Chris Lattner4eab7142006-11-10 02:08:47 +00001040
Chris Lattner4eab7142006-11-10 02:08:47 +00001041
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001042// Unindexed (r+i) Loads with Update (preinc).
Hal Finkelfa1d1022013-04-07 05:46:58 +00001043let mayLoad = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001044def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001045 "lbzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001046 []>, RegConstraint<"$addr.reg = $ea_result">,
1047 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001048
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001049def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001050 "lhau $rD, $addr", LdStLHAU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001051 []>, RegConstraint<"$addr.reg = $ea_result">,
1052 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001053
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001054def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001055 "lhzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001056 []>, RegConstraint<"$addr.reg = $ea_result">,
1057 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001058
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001059def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001060 "lwzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001061 []>, RegConstraint<"$addr.reg = $ea_result">,
1062 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001063
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001064def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001065 "lfsu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001066 []>, RegConstraint<"$addr.reg = $ea_result">,
1067 NoEncode<"$ea_result">;
1068
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001069def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001070 "lfdu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001071 []>, RegConstraint<"$addr.reg = $ea_result">,
1072 NoEncode<"$ea_result">;
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001073
1074
1075// Indexed (r+r) Loads with Update (preinc).
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001076def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001077 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001078 "lbzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001079 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001080 NoEncode<"$ea_result">;
1081
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001082def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001083 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001084 "lhaux $rD, $addr", LdStLHAU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001085 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001086 NoEncode<"$ea_result">;
1087
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001088def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001089 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001090 "lhzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001091 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001092 NoEncode<"$ea_result">;
1093
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001094def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001095 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001096 "lwzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001097 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001098 NoEncode<"$ea_result">;
1099
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001100def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001101 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001102 "lfsux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001103 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001104 NoEncode<"$ea_result">;
1105
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001106def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001107 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001108 "lfdux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001109 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001110 NoEncode<"$ea_result">;
Nate Begemanb816f022004-10-07 22:30:03 +00001111}
Dan Gohman41474ba2008-12-03 02:30:17 +00001112}
Chris Lattner302bf9c2006-11-08 02:13:12 +00001113
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001114// Indexed (r+r) Loads.
Chris Lattner26e552b2006-11-14 19:19:53 +00001115//
Dan Gohman15511cf2008-12-03 18:15:48 +00001116let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001117def LBZX : XForm_1<31, 87, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001118 "lbzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001119 [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001120def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
Chris Lattner26e552b2006-11-14 19:19:53 +00001121 "lhax $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001122 [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001123 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001124def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001125 "lhzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001126 [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001127def LWZX : XForm_1<31, 23, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001128 "lwzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001129 [(set i32:$rD, (load xaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001130
1131
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001132def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001133 "lhbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001134 [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001135def LWBRX : XForm_1<31, 534, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001136 "lwbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001137 [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001138
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001139def LFSX : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001140 "lfsx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001141 [(set f32:$frD, (load xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001142def LFDX : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001143 "lfdx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001144 [(set f64:$frD, (load xaddr:$src))]>;
Hal Finkel8049ab12013-03-31 10:12:51 +00001145
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001146def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8049ab12013-03-31 10:12:51 +00001147 "lfiwax $frD, $src", LdStLFD,
1148 [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001149def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel46479192013-04-01 17:52:07 +00001150 "lfiwzx $frD, $src", LdStLFD,
1151 [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001152}
1153
1154//===----------------------------------------------------------------------===//
1155// PPC32 Store Instructions.
1156//
1157
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001158// Unindexed (r+i) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001159let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001160def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001161 "stb $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001162 [(truncstorei8 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001163def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001164 "sth $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001165 [(truncstorei16 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001166def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001167 "stw $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001168 [(store i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001169def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001170 "stfs $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001171 [(store f32:$rS, iaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001172def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001173 "stfd $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001174 [(store f64:$rS, iaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001175}
1176
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001177// Unindexed (r+i) Stores with Update (preinc).
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001178let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001179def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001180 "stbu $rS, $dst", LdStStoreUpd, []>,
1181 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001182def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001183 "sthu $rS, $dst", LdStStoreUpd, []>,
1184 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001185def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001186 "stwu $rS, $dst", LdStStoreUpd, []>,
1187 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001188def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001189 "stfsu $rS, $dst", LdStSTFDU, []>,
1190 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001191def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001192 "stfdu $rS, $dst", LdStSTFDU, []>,
1193 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001194}
1195
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001196// Patterns to match the pre-inc stores. We can't put the patterns on
1197// the instruction definitions directly as ISel wants the address base
1198// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001199def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1200 (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1201def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1202 (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1203def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1204 (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1205def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1206 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1207def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1208 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001209
Chris Lattner26e552b2006-11-14 19:19:53 +00001210// Indexed (r+r) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001211let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001212def STBX : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001213 "stbx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001214 [(truncstorei8 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001215 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001216def STHX : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001217 "sthx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001218 [(truncstorei16 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001219 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001220def STWX : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001221 "stwx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001222 [(store i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001223 PPC970_DGroup_Cracked;
Hal Finkelac81cc32012-06-19 02:34:32 +00001224
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001225def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001226 "sthbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001227 [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001228 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001229def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001230 "stwbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001231 [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001232 PPC970_DGroup_Cracked;
1233
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001234def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001235 "stfiwx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001236 [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001237
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001238def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001239 "stfsx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001240 [(store f32:$frS, xaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001241def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001242 "stfdx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001243 [(store f64:$frS, xaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001244}
1245
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001246// Indexed (r+r) Stores with Update (preinc).
1247let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001248def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001249 "stbux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001250 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001251 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001252def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001253 "sthux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001254 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001255 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001256def STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001257 "stwux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001258 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001259 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001260def STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001261 "stfsux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001262 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001263 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001264def STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001265 "stfdux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001266 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001267 PPC970_DGroup_Cracked;
1268}
1269
1270// Patterns to match the pre-inc stores. We can't put the patterns on
1271// the instruction definitions directly as ISel wants the address base
1272// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001273def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1274 (STBUX $rS, $ptrreg, $ptroff)>;
1275def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1276 (STHUX $rS, $ptrreg, $ptroff)>;
1277def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1278 (STWUX $rS, $ptrreg, $ptroff)>;
1279def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1280 (STFSUX $rS, $ptrreg, $ptroff)>;
1281def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1282 (STFDUX $rS, $ptrreg, $ptroff)>;
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001283
Dale Johannesenf87d6c02008-08-22 17:20:54 +00001284def SYNC : XForm_24_sync<31, 598, (outs), (ins),
1285 "sync", LdStSync,
1286 [(int_ppc_sync)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001287
1288//===----------------------------------------------------------------------===//
1289// PPC32 Arithmetic Instructions.
1290//
Chris Lattner302bf9c2006-11-08 02:13:12 +00001291
Chris Lattner88d211f2006-03-12 09:13:49 +00001292let PPC970_Unit = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001293def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001294 "addi $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001295 [(set i32:$rD, (add i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001296let BaseName = "addic" in {
1297let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001298def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001299 "addic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001300 [(set i32:$rD, (addc i32:$rA, immSExt16:$imm))]>,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001301 RecFormRel, PPC970_DGroup_Cracked;
Hal Finkel59857462013-04-12 18:17:57 +00001302let Defs = [CARRY, CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001303def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001304 "addic. $rD, $rA, $imm", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001305 []>, isDOT, RecFormRel;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001306}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001307def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001308 "addis $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001309 [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
Ulrich Weigand3d386422013-03-26 10:57:16 +00001310let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001311def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$sym),
Jim Laskey53842142005-10-19 19:51:16 +00001312 "la $rD, $sym($rA)", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001313 [(set i32:$rD, (add i32:$rA,
Chris Lattner490ad082005-11-17 17:52:01 +00001314 (PPClo tglobaladdr:$sym, 0)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001315def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001316 "mulli $rD, $rA, $imm", IntMulLI,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001317 [(set i32:$rD, (mul i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001318let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001319def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001320 "subfic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001321 [(set i32:$rD, (subc immSExt16:$imm, i32:$rA))]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001322
Hal Finkelf3c38282012-08-28 02:10:33 +00001323let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001324 def LI : DForm_2_r0<14, (outs gprc:$rD), (ins symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001325 "li $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001326 [(set i32:$rD, immSExt16:$imm)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001327 def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001328 "lis $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001329 [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001330}
Chris Lattner88d211f2006-03-12 09:13:49 +00001331}
Chris Lattner26e552b2006-11-14 19:19:53 +00001332
Chris Lattner88d211f2006-03-12 09:13:49 +00001333let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel59857462013-04-12 18:17:57 +00001334let Defs = [CR0] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001335def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001336 "andi. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001337 [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001338 isDOT;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001339def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001340 "andis. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001341 [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001342 isDOT;
Hal Finkel59857462013-04-12 18:17:57 +00001343}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001344def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001345 "ori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001346 [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001347def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001348 "oris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001349 [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001350def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001351 "xori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001352 [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001353def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001354 "xoris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001355 [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
Hal Finkel16803092012-06-12 19:01:24 +00001356def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntSimple,
Nate Begeman09761222005-12-09 23:54:18 +00001357 []>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001358let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001359 def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001360 "cmpwi $crD, $rA, $imm", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001361 def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001362 "cmplwi $dst, $src1, $src2", IntCompare>;
1363}
Chris Lattner88d211f2006-03-12 09:13:49 +00001364}
Nate Begemaned428532004-09-04 05:00:00 +00001365
Hal Finkel171a8ad2013-04-12 02:18:09 +00001366let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001367defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001368 "nand", "$rA, $rS, $rB", IntSimple,
1369 [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001370defm AND : XForm_6r<31, 28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001371 "and", "$rA, $rS, $rB", IntSimple,
1372 [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001373defm ANDC : XForm_6r<31, 60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001374 "andc", "$rA, $rS, $rB", IntSimple,
1375 [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001376defm OR : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001377 "or", "$rA, $rS, $rB", IntSimple,
1378 [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001379defm NOR : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001380 "nor", "$rA, $rS, $rB", IntSimple,
1381 [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001382defm ORC : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001383 "orc", "$rA, $rS, $rB", IntSimple,
1384 [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001385defm EQV : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001386 "eqv", "$rA, $rS, $rB", IntSimple,
1387 [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001388defm XOR : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001389 "xor", "$rA, $rS, $rB", IntSimple,
1390 [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001391defm SLW : XForm_6r<31, 24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001392 "slw", "$rA, $rS, $rB", IntGeneral,
1393 [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001394defm SRW : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001395 "srw", "$rA, $rS, $rB", IntGeneral,
1396 [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001397defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001398 "sraw", "$rA, $rS, $rB", IntShift,
1399 [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001400}
Chris Lattner26e552b2006-11-14 19:19:53 +00001401
Chris Lattner88d211f2006-03-12 09:13:49 +00001402let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001403let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001404defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
Hal Finkel59857462013-04-12 18:17:57 +00001405 "srawi", "$rA, $rS, $SH", IntShift,
1406 [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001407defm CNTLZW : XForm_11r<31, 26, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001408 "cntlzw", "$rA, $rS", IntGeneral,
1409 [(set i32:$rA, (ctlz i32:$rS))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001410defm EXTSB : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001411 "extsb", "$rA, $rS", IntSimple,
1412 [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001413defm EXTSH : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001414 "extsh", "$rA, $rS", IntSimple,
1415 [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1416}
Hal Finkel00e86ad2013-04-15 02:37:46 +00001417let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001418 def CMPW : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001419 "cmpw $crD, $rA, $rB", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001420 def CMPLW : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001421 "cmplw $crD, $rA, $rB", IntCompare>;
1422}
Chris Lattner88d211f2006-03-12 09:13:49 +00001423}
1424let PPC970_Unit = 3 in { // FPU Operations.
Evan Cheng64d80e32007-07-19 01:14:50 +00001425//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Jim Laskey53842142005-10-19 19:51:16 +00001426// "fcmpo $crD, $fA, $fB", FPCompare>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001427let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001428 def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001429 "fcmpu $crD, $fA, $fB", FPCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001430 def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001431 "fcmpu $crD, $fA, $fB", FPCompare>;
1432}
Chris Lattner26e552b2006-11-14 19:19:53 +00001433
Dale Johannesenb384ab92008-10-29 18:26:45 +00001434let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001435 let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001436 defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001437 "fctiwz", "$frD, $frB", FPGeneral,
1438 [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001439
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001440 defm FRSP : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001441 "frsp", "$frD, $frB", FPGeneral,
1442 [(set f32:$frD, (fround f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001443
1444 // The frin -> nearbyint mapping is valid only in fast-math mode.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001445 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001446 defm FRIND : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001447 "frin", "$frD, $frB", FPGeneral,
1448 [(set f64:$frD, (fnearbyint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001449 defm FRINS : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001450 "frin", "$frD, $frB", FPGeneral,
1451 [(set f32:$frD, (fnearbyint f32:$frB))]>;
1452 }
Hal Finkelf5d5c432013-03-29 08:57:48 +00001453
Hal Finkel0882fd62013-03-29 19:41:55 +00001454 // These pseudos expand to rint but also set FE_INEXACT when the result does
1455 // not equal the argument.
1456 let usesCustomInserter = 1, Defs = [RM] in { // FIXME: Model FPSCR!
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001457 def FRINDrint : Pseudo<(outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001458 "#FRINDrint", [(set f64:$frD, (frint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001459 def FRINSrint : Pseudo<(outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001460 "#FRINSrint", [(set f32:$frD, (frint f32:$frB))]>;
1461 }
1462
Hal Finkel171a8ad2013-04-12 02:18:09 +00001463 let neverHasSideEffects = 1 in {
1464 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001465 defm FRIPD : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001466 "frip", "$frD, $frB", FPGeneral,
1467 [(set f64:$frD, (fceil f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001468 defm FRIPS : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001469 "frip", "$frD, $frB", FPGeneral,
1470 [(set f32:$frD, (fceil f32:$frB))]>;
1471 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001472 defm FRIZD : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001473 "friz", "$frD, $frB", FPGeneral,
1474 [(set f64:$frD, (ftrunc f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001475 defm FRIZS : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001476 "friz", "$frD, $frB", FPGeneral,
1477 [(set f32:$frD, (ftrunc f32:$frB))]>;
1478 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001479 defm FRIMD : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001480 "frim", "$frD, $frB", FPGeneral,
1481 [(set f64:$frD, (ffloor f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001482 defm FRIMS : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001483 "frim", "$frD, $frB", FPGeneral,
1484 [(set f32:$frD, (ffloor f32:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001485
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001486 defm FSQRT : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001487 "fsqrt", "$frD, $frB", FPSqrt,
1488 [(set f64:$frD, (fsqrt f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001489 defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001490 "fsqrts", "$frD, $frB", FPSqrt,
1491 [(set f32:$frD, (fsqrt f32:$frB))]>;
1492 }
Dale Johannesenb384ab92008-10-29 18:26:45 +00001493 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001494}
Chris Lattner919c0322005-10-01 01:35:02 +00001495
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001496/// Note that FMR is defined as pseudo-ops on the PPC970 because they are
Chris Lattner9d5da1d2006-03-24 07:12:19 +00001497/// often coalesced away and we don't want the dispatch group builder to think
Chris Lattner88d211f2006-03-12 09:13:49 +00001498/// that they will fill slots (which could cause the load of a LSU reject to
1499/// sneak into a d-group with a store).
Hal Finkelfa1cac22013-04-07 04:56:16 +00001500let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001501defm FMR : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001502 "fmr", "$frD, $frB", FPGeneral,
1503 []>, // (set f32:$frD, f32:$frB)
1504 PPC970_Unit_Pseudo;
Chris Lattner919c0322005-10-01 01:35:02 +00001505
Hal Finkel171a8ad2013-04-12 02:18:09 +00001506let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Chris Lattner919c0322005-10-01 01:35:02 +00001507// These are artificially split into two different forms, for 4/8 byte FP.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001508defm FABSS : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001509 "fabs", "$frD, $frB", FPGeneral,
1510 [(set f32:$frD, (fabs f32:$frB))]>;
1511let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001512defm FABSD : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001513 "fabs", "$frD, $frB", FPGeneral,
1514 [(set f64:$frD, (fabs f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001515defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001516 "fnabs", "$frD, $frB", FPGeneral,
1517 [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
1518let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001519defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001520 "fnabs", "$frD, $frB", FPGeneral,
1521 [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001522defm FNEGS : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001523 "fneg", "$frD, $frB", FPGeneral,
1524 [(set f32:$frD, (fneg f32:$frB))]>;
1525let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001526defm FNEGD : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001527 "fneg", "$frD, $frB", FPGeneral,
1528 [(set f64:$frD, (fneg f64:$frB))]>;
Hal Finkel827307b2013-04-03 04:01:11 +00001529
1530// Reciprocal estimates.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001531defm FRE : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001532 "fre", "$frD, $frB", FPGeneral,
1533 [(set f64:$frD, (PPCfre f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001534defm FRES : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001535 "fres", "$frD, $frB", FPGeneral,
1536 [(set f32:$frD, (PPCfre f32:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001537defm FRSQRTE : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001538 "frsqrte", "$frD, $frB", FPGeneral,
1539 [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001540defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001541 "frsqrtes", "$frD, $frB", FPGeneral,
1542 [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001543}
Nate Begeman6b3dc552004-08-29 22:45:13 +00001544
Nate Begeman07aada82004-08-30 02:28:06 +00001545// XL-Form instructions. condition register logical ops.
1546//
Hal Finkelaecbe242013-04-07 05:16:57 +00001547let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001548def MCRF : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
Chris Lattner88d211f2006-03-12 09:13:49 +00001549 "mcrf $BF, $BFA", BrMCR>,
1550 PPC970_DGroup_First, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001551
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001552def CREQV : XLForm_1<19, 289, (outs crbitrc:$CRD),
1553 (ins crbitrc:$CRA, crbitrc:$CRB),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001554 "creqv $CRD, $CRA, $CRB", BrCR,
1555 []>;
1556
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001557def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
1558 (ins crbitrc:$CRA, crbitrc:$CRB),
Nicolas Geoffray0404cd92008-03-10 14:12:10 +00001559 "cror $CRD, $CRA, $CRB", BrCR,
1560 []>;
1561
Ulrich Weigand3d386422013-03-26 10:57:16 +00001562let isCodeGenOnly = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001563def CRSET : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001564 "creqv $dst, $dst, $dst", BrCR,
1565 []>;
1566
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001567def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
Roman Divacky0aaa9192011-08-30 17:04:16 +00001568 "crxor $dst, $dst, $dst", BrCR,
1569 []>;
1570
Hal Finkel82b38212012-08-28 02:10:27 +00001571let Defs = [CR1EQ], CRD = 6 in {
1572def CR6SET : XLForm_1_ext<19, 289, (outs), (ins),
1573 "creqv 6, 6, 6", BrCR,
1574 [(PPCcr6set)]>;
1575
1576def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
1577 "crxor 6, 6, 6", BrCR,
1578 [(PPCcr6unset)]>;
1579}
Ulrich Weigand3d386422013-03-26 10:57:16 +00001580}
Hal Finkel82b38212012-08-28 02:10:27 +00001581
Chris Lattner88d211f2006-03-12 09:13:49 +00001582// XFX-Form instructions. Instructions that deal with SPRs.
Nate Begeman07aada82004-08-30 02:28:06 +00001583//
Dale Johannesen639076f2008-10-23 20:41:28 +00001584let Uses = [CTR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001585def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001586 "mfctr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001587 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001588}
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001589let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001590def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001591 "mtctr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001592 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001593}
Chris Lattner1877ec92006-03-13 21:52:10 +00001594
Dale Johannesen639076f2008-10-23 20:41:28 +00001595let Defs = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001596def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001597 "mtlr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001598 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001599}
1600let Uses = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001601def MFLR : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001602 "mflr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001603 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001604}
Chris Lattner1877ec92006-03-13 21:52:10 +00001605
1606// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1607// a GPR on the PPC970. As such, copies in and out have the same performance
1608// characteristics as an OR instruction.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001609def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +00001610 "mtspr 256, $rS", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001611 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001612def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
Chris Lattner1877ec92006-03-13 21:52:10 +00001613 "mfspr $rT, 256", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001614 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattner1877ec92006-03-13 21:52:10 +00001615
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001616let isCodeGenOnly = 1 in {
1617 def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001618 (outs VRSAVERC:$reg), (ins gprc:$rS),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001619 "mtspr 256, $rS", IntGeneral>,
1620 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001621 def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001622 (ins VRSAVERC:$reg),
1623 "mfspr $rT, 256", IntGeneral>,
1624 PPC970_DGroup_First, PPC970_Unit_FXU;
1625}
1626
1627// SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
1628// so we'll need to scavenge a register for it.
1629let mayStore = 1 in
1630def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
1631 "#SPILL_VRSAVE", []>;
1632
1633// RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
1634// spilled), so we'll need to scavenge a register for it.
1635let mayLoad = 1 in
1636def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
1637 "#RESTORE_VRSAVE", []>;
1638
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001639let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001640def MTCRF : XFXForm_5<31, 144, (outs crbitm:$FXM), (ins gprc:$rS),
Chris Lattner88d211f2006-03-12 09:13:49 +00001641 "mtcrf $FXM, $rS", BrMCRX>,
1642 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen5f07d522010-05-20 17:48:26 +00001643
1644// This is a pseudo for MFCR, which implicitly uses all 8 of its subregisters;
1645// declaring that here gives the local register allocator problems with this:
Dale Johannesenb384ab92008-10-29 18:26:45 +00001646// vreg = MCRF CR0
1647// MFCR <kill of whatever preg got assigned to vreg>
Dale Johannesen5f07d522010-05-20 17:48:26 +00001648// while not declaring it breaks DeadMachineInstructionElimination.
1649// As it turns out, in all cases where we currently use this,
1650// we're only interested in one subregister of it. Represent this in the
1651// instruction to keep the register allocator from becoming confused.
Chris Lattner2ead4582010-11-14 22:03:15 +00001652//
1653// FIXME: Make this a real Pseudo instruction when the JIT switches to MC.
Ulrich Weigand3d386422013-03-26 10:57:16 +00001654let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001655def MFCRpseud: XFXForm_3<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Will Schmidt91638152012-10-04 18:14:28 +00001656 "#MFCRpseud", SprMFCR>,
Chris Lattner6d92cad2006-03-26 10:06:40 +00001657 PPC970_MicroCode, PPC970_Unit_CRU;
Chris Lattner2ead4582010-11-14 22:03:15 +00001658
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001659def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Hal Finkel0a1852b2012-06-11 15:43:15 +00001660 "mfocrf $rT, $FXM", SprMFCR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001661 PPC970_DGroup_First, PPC970_Unit_CRU;
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001662} // neverHasSideEffects = 1
1663
Hal Finkel63496f62013-04-13 23:06:15 +00001664let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001665def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001666 "mfcr $rT", SprMFCR>,
1667 PPC970_MicroCode, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001668
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001669// Pseudo instruction to perform FADD in round-to-zero mode.
1670let usesCustomInserter = 1, Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001671 def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001672 [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
1673}
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001674
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001675// The above pseudo gets expanded to make use of the following instructions
1676// to manipulate FPSCR. Note that FPSCR is not modeled at the DAG level.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001677let Uses = [RM], Defs = [RM] in {
1678 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001679 "mtfsb0 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001680 PPC970_DGroup_Single, PPC970_Unit_FPU;
1681 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001682 "mtfsb1 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001683 PPC970_DGroup_Single, PPC970_Unit_FPU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001684 def MTFSF : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001685 "mtfsf $FM, $rT", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001686 PPC970_DGroup_Single, PPC970_Unit_FPU;
1687}
1688let Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001689 def MFFS : XForm_42<63, 583, (outs f8rc:$rT), (ins),
Dale Johannesenb384ab92008-10-29 18:26:45 +00001690 "mffs $rT", IntMFFS,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001691 [(set f64:$rT, (PPCmffs))]>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001692 PPC970_DGroup_Single, PPC970_Unit_FPU;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001693}
1694
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001695
Hal Finkel171a8ad2013-04-12 02:18:09 +00001696let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Nate Begeman07aada82004-08-30 02:28:06 +00001697// XO-Form instructions. Arithmetic instructions that can set overflow bit
1698//
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001699defm ADD4 : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001700 "add", "$rT, $rA, $rB", IntSimple,
1701 [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001702defm ADDC : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001703 "addc", "$rT, $rA, $rB", IntGeneral,
1704 [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
1705 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001706defm DIVW : XOForm_1r<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001707 "divw", "$rT, $rA, $rB", IntDivW,
1708 [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>,
1709 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001710defm DIVWU : XOForm_1r<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001711 "divwu", "$rT, $rA, $rB", IntDivW,
1712 [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>,
1713 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001714defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001715 "mulhw", "$rT, $rA, $rB", IntMulHW,
1716 [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001717defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001718 "mulhwu", "$rT, $rA, $rB", IntMulHWU,
1719 [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001720defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001721 "mullw", "$rT, $rA, $rB", IntMulHW,
1722 [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001723defm SUBF : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001724 "subf", "$rT, $rA, $rB", IntGeneral,
1725 [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001726defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001727 "subfc", "$rT, $rA, $rB", IntGeneral,
1728 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
1729 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001730defm NEG : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001731 "neg", "$rT, $rA", IntSimple,
1732 [(set i32:$rT, (ineg i32:$rA))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001733let Uses = [CARRY] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001734defm ADDE : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001735 "adde", "$rT, $rA, $rB", IntGeneral,
1736 [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001737defm ADDME : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001738 "addme", "$rT, $rA", IntGeneral,
1739 [(set i32:$rT, (adde i32:$rA, -1))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001740defm ADDZE : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001741 "addze", "$rT, $rA", IntGeneral,
1742 [(set i32:$rT, (adde i32:$rA, 0))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001743defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001744 "subfe", "$rT, $rA, $rB", IntGeneral,
1745 [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001746defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001747 "subfme", "$rT, $rA", IntGeneral,
1748 [(set i32:$rT, (sube -1, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001749defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001750 "subfze", "$rT, $rA", IntGeneral,
1751 [(set i32:$rT, (sube 0, i32:$rA))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001752}
Dale Johannesen8dffc812009-09-18 20:15:22 +00001753}
Nate Begeman07aada82004-08-30 02:28:06 +00001754
1755// A-Form instructions. Most of the instructions executed in the FPU are of
1756// this type.
1757//
Hal Finkel171a8ad2013-04-12 02:18:09 +00001758let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001759let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001760 defm FMADD : AForm_1r<63, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001761 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001762 "fmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001763 [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001764 defm FMADDS : AForm_1r<59, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001765 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001766 "fmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001767 [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001768 defm FMSUB : AForm_1r<63, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001769 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001770 "fmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001771 [(set f64:$FRT,
1772 (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001773 defm FMSUBS : AForm_1r<59, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001774 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001775 "fmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001776 [(set f32:$FRT,
1777 (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001778 defm FNMADD : AForm_1r<63, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001779 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001780 "fnmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001781 [(set f64:$FRT,
1782 (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001783 defm FNMADDS : AForm_1r<59, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001784 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001785 "fnmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001786 [(set f32:$FRT,
1787 (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001788 defm FNMSUB : AForm_1r<63, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001789 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001790 "fnmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001791 [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
1792 (fneg f64:$FRB))))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001793 defm FNMSUBS : AForm_1r<59, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001794 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001795 "fnmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001796 [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
1797 (fneg f32:$FRB))))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001798}
Chris Lattner43f07a42005-10-02 07:07:49 +00001799// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1800// having 4 of these, force the comparison to always be an 8-byte double (code
1801// should use an FMRSD if the input comparison value really wants to be a float)
Chris Lattner867940d2005-10-02 06:58:23 +00001802// and 4/8 byte forms for the result and operand type..
Hal Finkel171a8ad2013-04-12 02:18:09 +00001803let Interpretation64Bit = 1 in
1804defm FSELD : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001805 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001806 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1807 [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
1808defm FSELS : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001809 (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001810 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1811 [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001812let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001813 defm FADD : AForm_2r<63, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001814 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001815 "fadd", "$FRT, $FRA, $FRB", FPAddSub,
1816 [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
1817 defm FADDS : AForm_2r<59, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001818 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001819 "fadds", "$FRT, $FRA, $FRB", FPGeneral,
1820 [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
1821 defm FDIV : AForm_2r<63, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001822 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001823 "fdiv", "$FRT, $FRA, $FRB", FPDivD,
1824 [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
1825 defm FDIVS : AForm_2r<59, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001826 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001827 "fdivs", "$FRT, $FRA, $FRB", FPDivS,
1828 [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
1829 defm FMUL : AForm_3r<63, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001830 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001831 "fmul", "$FRT, $FRA, $FRC", FPFused,
1832 [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
1833 defm FMULS : AForm_3r<59, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001834 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001835 "fmuls", "$FRT, $FRA, $FRC", FPGeneral,
1836 [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
1837 defm FSUB : AForm_2r<63, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001838 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001839 "fsub", "$FRT, $FRA, $FRB", FPAddSub,
1840 [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
1841 defm FSUBS : AForm_2r<59, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001842 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001843 "fsubs", "$FRT, $FRA, $FRB", FPGeneral,
1844 [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001845 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001846}
Nate Begeman07aada82004-08-30 02:28:06 +00001847
Hal Finkel946a8112013-04-07 15:06:53 +00001848let neverHasSideEffects = 1 in {
Chris Lattner88d211f2006-03-12 09:13:49 +00001849let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel946a8112013-04-07 15:06:53 +00001850 let isSelect = 1 in
Ulrich Weigandbc40df32012-11-13 19:14:19 +00001851 def ISEL : AForm_4<31, 15,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001852 (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
Hal Finkel009f7af2012-06-22 23:10:08 +00001853 "isel $rT, $rA, $rB, $cond", IntGeneral,
1854 []>;
1855}
1856
1857let PPC970_Unit = 1 in { // FXU Operations.
Nate Begemancc8bd9c2004-08-31 02:28:08 +00001858// M-Form instructions. rotate and mask instructions.
1859//
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001860let isCommutable = 1 in {
Chris Lattner043870d2005-09-09 18:17:41 +00001861// RLWIMI can be commuted if the rotate amount is zero.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001862defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
1863 (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001864 u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME", IntRotate,
1865 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1866 NoEncode<"$rSi">;
Nate Begeman2d4c98d2004-10-16 20:43:38 +00001867}
Hal Finkel171a8ad2013-04-12 02:18:09 +00001868let BaseName = "rlwinm" in {
Chris Lattner14522e32005-04-19 05:21:30 +00001869def RLWINM : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001870 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Jim Laskey53842142005-10-19 19:51:16 +00001871 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001872 []>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +00001873let Defs = [CR0] in
Chris Lattner14522e32005-04-19 05:21:30 +00001874def RLWINMo : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001875 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001876 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1877 []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
1878}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001879defm RLWNM : MForm_2r<23, (outs gprc:$rA),
1880 (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001881 "rlwnm", "$rA, $rS, $rB, $MB, $ME", IntGeneral,
1882 []>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001883}
Hal Finkel946a8112013-04-07 15:06:53 +00001884} // neverHasSideEffects = 1
Chris Lattner3c0f9cc2006-03-20 06:15:45 +00001885
Chris Lattner2eb25172005-09-09 00:39:56 +00001886//===----------------------------------------------------------------------===//
1887// PowerPC Instruction Patterns
1888//
1889
Chris Lattner30e21a42005-09-26 22:20:16 +00001890// Arbitrary immediate support. Implement in terms of LIS/ORI.
1891def : Pat<(i32 imm:$imm),
1892 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
Chris Lattner91da8622005-09-28 17:13:15 +00001893
1894// Implement the 'not' operation with the NOR instruction.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001895def NOT : Pat<(not i32:$in),
1896 (NOR $in, $in)>;
Chris Lattner91da8622005-09-28 17:13:15 +00001897
Chris Lattner79d0e9f2005-09-28 23:07:13 +00001898// ADD an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001899def : Pat<(add i32:$in, imm:$imm),
1900 (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00001901// OR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001902def : Pat<(or i32:$in, imm:$imm),
1903 (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00001904// XOR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001905def : Pat<(xor i32:$in, imm:$imm),
1906 (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Nate Begeman551bf3f2006-02-17 05:43:56 +00001907// SUBFIC
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001908def : Pat<(sub immSExt16:$imm, i32:$in),
1909 (SUBFIC $in, imm:$imm)>;
Chris Lattner8be1fa52005-10-19 01:38:02 +00001910
Chris Lattner956f43c2006-06-16 20:22:01 +00001911// SHL/SRL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001912def : Pat<(shl i32:$in, (i32 imm:$imm)),
1913 (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
1914def : Pat<(srl i32:$in, (i32 imm:$imm)),
1915 (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
Nate Begeman2d5aff72005-10-19 18:42:01 +00001916
Nate Begeman35ef9132006-01-11 21:21:00 +00001917// ROTL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001918def : Pat<(rotl i32:$in, i32:$sh),
1919 (RLWNM $in, $sh, 0, 31)>;
1920def : Pat<(rotl i32:$in, (i32 imm:$imm)),
1921 (RLWINM $in, imm:$imm, 0, 31)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001922
Nate Begemanf42f1332006-09-22 05:01:56 +00001923// RLWNM
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001924def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
1925 (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
Nate Begemanf42f1332006-09-22 05:01:56 +00001926
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001927// Calls
Ulrich Weigand86765fb2013-03-22 15:24:13 +00001928def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
1929 (BL tglobaladdr:$dst)>;
1930def : Pat<(PPCcall (i32 texternalsym:$dst)),
1931 (BL texternalsym:$dst)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001932
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001933
1934def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
1935 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
1936
1937def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
1938 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
1939
1940def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
1941 (TCRETURNri CTRRC:$dst, imm:$imm)>;
1942
1943
1944
Chris Lattner860e8862005-11-17 07:30:41 +00001945// Hi and Lo for Darwin Global Addresses.
Chris Lattnerd717b192005-12-11 07:45:47 +00001946def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
1947def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
1948def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
1949def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
Nate Begeman37efe672006-04-22 18:53:45 +00001950def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
1951def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001952def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
1953def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001954def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
1955 (ADDIS $in, tglobaltlsaddr:$g)>;
1956def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
Ulrich Weigand2b0850b2013-03-26 10:55:20 +00001957 (ADDI $in, tglobaltlsaddr:$g)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001958def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
1959 (ADDIS $in, tglobaladdr:$g)>;
1960def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
1961 (ADDIS $in, tconstpool:$g)>;
1962def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
1963 (ADDIS $in, tjumptable:$g)>;
1964def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
1965 (ADDIS $in, tblockaddress:$g)>;
Chris Lattner860e8862005-11-17 07:30:41 +00001966
Chris Lattner4172b102005-12-06 02:10:38 +00001967// Standard shifts. These are represented separately from the real shifts above
1968// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
1969// amounts.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001970def : Pat<(sra i32:$rS, i32:$rB),
1971 (SRAW $rS, $rB)>;
1972def : Pat<(srl i32:$rS, i32:$rB),
1973 (SRW $rS, $rB)>;
1974def : Pat<(shl i32:$rS, i32:$rB),
1975 (SLW $rS, $rB)>;
Chris Lattner4172b102005-12-06 02:10:38 +00001976
Evan Cheng466685d2006-10-09 20:57:25 +00001977def : Pat<(zextloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001978 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001979def : Pat<(zextloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001980 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001981def : Pat<(extloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001982 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001983def : Pat<(extloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001984 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001985def : Pat<(extloadi8 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001986 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001987def : Pat<(extloadi8 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001988 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001989def : Pat<(extloadi16 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001990 (LHZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00001991def : Pat<(extloadi16 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001992 (LHZX xaddr:$src)>;
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001993def : Pat<(f64 (extloadf32 iaddr:$src)),
1994 (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
1995def : Pat<(f64 (extloadf32 xaddr:$src)),
1996 (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
1997
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001998def : Pat<(f64 (fextend f32:$src)),
1999 (COPY_TO_REGCLASS $src, F8RC)>;
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002000
Eli Friedman14648462011-07-27 22:21:52 +00002001def : Pat<(atomic_fence (imm), (imm)), (SYNC)>;
2002
Hal Finkel827307b2013-04-03 04:01:11 +00002003// Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2004def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2005 (FNMSUB $A, $C, $B)>;
2006def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2007 (FNMSUB $A, $C, $B)>;
2008def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2009 (FNMSUBS $A, $C, $B)>;
2010def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2011 (FNMSUBS $A, $C, $B)>;
2012
Chris Lattnerb22a04d2006-03-25 07:51:43 +00002013include "PPCInstrAltivec.td"
Chris Lattner956f43c2006-06-16 20:22:01 +00002014include "PPCInstr64Bit.td"