blob: 4763069f25ab7edd7d07a1fcd99b15be508ed33d [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.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000345
Ulrich Weigand5e220752013-05-03 19:49:39 +0000346def PPCRegGPRCAsmOperand : AsmOperandClass {
347 let Name = "RegGPRC"; let PredicateMethod = "isRegNumber";
348}
349def gprc : RegisterOperand<GPRC> {
350 let ParserMatchClass = PPCRegGPRCAsmOperand;
351}
352def PPCRegG8RCAsmOperand : AsmOperandClass {
353 let Name = "RegG8RC"; let PredicateMethod = "isRegNumber";
354}
355def g8rc : RegisterOperand<G8RC> {
356 let ParserMatchClass = PPCRegG8RCAsmOperand;
357}
358def PPCRegGPRCNoR0AsmOperand : AsmOperandClass {
359 let Name = "RegGPRCNoR0"; let PredicateMethod = "isRegNumber";
360}
361def gprc_nor0 : RegisterOperand<GPRC_NOR0> {
362 let ParserMatchClass = PPCRegGPRCNoR0AsmOperand;
363}
364def PPCRegG8RCNoX0AsmOperand : AsmOperandClass {
365 let Name = "RegG8RCNoX0"; let PredicateMethod = "isRegNumber";
366}
367def g8rc_nox0 : RegisterOperand<G8RC_NOX0> {
368 let ParserMatchClass = PPCRegG8RCNoX0AsmOperand;
369}
370def PPCRegF8RCAsmOperand : AsmOperandClass {
371 let Name = "RegF8RC"; let PredicateMethod = "isRegNumber";
372}
373def f8rc : RegisterOperand<F8RC> {
374 let ParserMatchClass = PPCRegF8RCAsmOperand;
375}
376def PPCRegF4RCAsmOperand : AsmOperandClass {
377 let Name = "RegF4RC"; let PredicateMethod = "isRegNumber";
378}
379def f4rc : RegisterOperand<F4RC> {
380 let ParserMatchClass = PPCRegF4RCAsmOperand;
381}
382def PPCRegVRRCAsmOperand : AsmOperandClass {
383 let Name = "RegVRRC"; let PredicateMethod = "isRegNumber";
384}
385def vrrc : RegisterOperand<VRRC> {
386 let ParserMatchClass = PPCRegVRRCAsmOperand;
387}
388def PPCRegCRBITRCAsmOperand : AsmOperandClass {
389 let Name = "RegCRBITRC"; let PredicateMethod = "isRegNumber";
390}
391def crbitrc : RegisterOperand<CRBITRC> {
392 let ParserMatchClass = PPCRegCRBITRCAsmOperand;
393}
394def PPCRegCRRCAsmOperand : AsmOperandClass {
395 let Name = "RegCRRC"; let PredicateMethod = "isCCRegNumber";
396}
397def crrc : RegisterOperand<CRRC> {
398 let ParserMatchClass = PPCRegCRRCAsmOperand;
399}
400
401def PPCS5ImmAsmOperand : AsmOperandClass {
402 let Name = "S5Imm"; let PredicateMethod = "isS5Imm";
403 let RenderMethod = "addImmOperands";
404}
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000405def s5imm : Operand<i32> {
406 let PrintMethod = "printS5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000407 let ParserMatchClass = PPCS5ImmAsmOperand;
408}
409def PPCU5ImmAsmOperand : AsmOperandClass {
410 let Name = "U5Imm"; let PredicateMethod = "isU5Imm";
411 let RenderMethod = "addImmOperands";
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000412}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000413def u5imm : Operand<i32> {
Nate Begemanc3306122004-08-21 05:56:39 +0000414 let PrintMethod = "printU5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000415 let ParserMatchClass = PPCU5ImmAsmOperand;
416}
417def PPCU6ImmAsmOperand : AsmOperandClass {
418 let Name = "U6Imm"; let PredicateMethod = "isU6Imm";
419 let RenderMethod = "addImmOperands";
Nate Begemanc3306122004-08-21 05:56:39 +0000420}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000421def u6imm : Operand<i32> {
Nate Begeman07aada82004-08-30 02:28:06 +0000422 let PrintMethod = "printU6ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000423 let ParserMatchClass = PPCU6ImmAsmOperand;
424}
425def PPCS16ImmAsmOperand : AsmOperandClass {
426 let Name = "S16Imm"; let PredicateMethod = "isS16Imm";
427 let RenderMethod = "addImmOperands";
Nate Begeman07aada82004-08-30 02:28:06 +0000428}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000429def s16imm : Operand<i32> {
Nate Begemaned428532004-09-04 05:00:00 +0000430 let PrintMethod = "printS16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000431 let ParserMatchClass = PPCS16ImmAsmOperand;
432}
433def PPCU16ImmAsmOperand : AsmOperandClass {
434 let Name = "U16Imm"; let PredicateMethod = "isU16Imm";
435 let RenderMethod = "addImmOperands";
Nate Begemaned428532004-09-04 05:00:00 +0000436}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000437def u16imm : Operand<i32> {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000438 let PrintMethod = "printU16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000439 let ParserMatchClass = PPCU16ImmAsmOperand;
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000440}
Chris Lattner8d704112010-11-15 06:09:35 +0000441def directbrtarget : Operand<OtherVT> {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000442 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000443 let EncoderMethod = "getDirectBrEncoding";
444}
445def condbrtarget : Operand<OtherVT> {
Chris Lattnerb8efa6b2010-11-16 01:45:05 +0000446 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000447 let EncoderMethod = "getCondBrEncoding";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000448}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000449def calltarget : Operand<iPTR> {
Chris Lattner8d704112010-11-15 06:09:35 +0000450 let EncoderMethod = "getDirectBrEncoding";
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000451}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000452def aaddr : Operand<iPTR> {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000453 let PrintMethod = "printAbsAddrOperand";
454}
Nate Begemaned428532004-09-04 05:00:00 +0000455def symbolHi: Operand<i32> {
456 let PrintMethod = "printSymbolHi";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000457 let EncoderMethod = "getHA16Encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000458 let ParserMatchClass = PPCS16ImmAsmOperand;
Nate Begemaned428532004-09-04 05:00:00 +0000459}
460def symbolLo: Operand<i32> {
461 let PrintMethod = "printSymbolLo";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000462 let EncoderMethod = "getLO16Encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000463 let ParserMatchClass = PPCS16ImmAsmOperand;
464}
465def PPCCRBitMaskOperand : AsmOperandClass {
466 let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask";
Nate Begemaned428532004-09-04 05:00:00 +0000467}
Nate Begemanadeb43d2005-07-20 22:42:00 +0000468def crbitm: Operand<i8> {
469 let PrintMethod = "printcrbitm";
Chris Lattner7192eb82010-11-15 05:19:25 +0000470 let EncoderMethod = "get_crbitm_encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000471 let ParserMatchClass = PPCCRBitMaskOperand;
Nate Begemanadeb43d2005-07-20 22:42:00 +0000472}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000473// Address operands
Hal Finkela548afc2013-03-19 18:51:05 +0000474// A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
Ulrich Weigand5e220752013-05-03 19:49:39 +0000475def PPCRegGxRCNoR0Operand : AsmOperandClass {
476 let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber";
477}
478def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> {
479 let ParserMatchClass = PPCRegGxRCNoR0Operand;
480}
481// A version of ptr_rc usable with the asm parser.
482def PPCRegGxRCOperand : AsmOperandClass {
483 let Name = "RegGxRC"; let PredicateMethod = "isRegNumber";
484}
485def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> {
486 let ParserMatchClass = PPCRegGxRCOperand;
487}
Hal Finkela548afc2013-03-19 18:51:05 +0000488
Ulrich Weigand5e220752013-05-03 19:49:39 +0000489def PPCDispRIOperand : AsmOperandClass {
490 let Name = "DispRI"; let PredicateMethod = "isS16Imm";
491}
492def dispRI : Operand<iPTR> {
493 let ParserMatchClass = PPCDispRIOperand;
494}
495def PPCDispRIXOperand : AsmOperandClass {
496 let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4";
497}
498def dispRIX : Operand<iPTR> {
499 let ParserMatchClass = PPCDispRIXOperand;
500}
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000501
Chris Lattner059ca0f2006-06-16 21:01:35 +0000502def memri : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000503 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000504 let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
Chris Lattnerb7035d02010-11-15 08:22:03 +0000505 let EncoderMethod = "getMemRIEncoding";
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000506}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000507def memrr : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000508 let PrintMethod = "printMemRegReg";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000509 let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000510}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000511def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000512 let PrintMethod = "printMemRegImmShifted";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000513 let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
Chris Lattner17e2c182010-11-15 08:02:41 +0000514 let EncoderMethod = "getMemRIXEncoding";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000515}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000516
Hal Finkel7ee74a62013-03-21 21:37:52 +0000517// A single-register address. This is used with the SjLj
518// pseudo-instructions.
519def memr : Operand<iPTR> {
520 let MIOperandInfo = (ops ptr_rc:$ptrreg);
521}
522
Ulrich Weigand3b255292013-03-26 10:53:27 +0000523// PowerPC Predicate operand.
524def pred : Operand<OtherVT> {
Chris Lattneraf53a872006-11-04 05:27:39 +0000525 let PrintMethod = "printPredicateOperand";
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000526 let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
Chris Lattneraf53a872006-11-04 05:27:39 +0000527}
Chris Lattner0638b262006-11-03 23:53:25 +0000528
Chris Lattnera613d262006-01-12 02:05:36 +0000529// Define PowerPC specific addressing mode.
Evan Chengaf9db752006-10-11 21:03:53 +0000530def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
531def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
532def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
533def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000534
Hal Finkel7ee74a62013-03-21 21:37:52 +0000535// The address in a single register. This is used with the SjLj
536// pseudo-instructions.
537def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
538
Chris Lattner74531e42006-11-16 00:41:37 +0000539/// This is just the offset part of iaddr, used for preinc.
540def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +0000541
Evan Cheng8c75ef92005-12-14 22:07:12 +0000542//===----------------------------------------------------------------------===//
543// PowerPC Instruction Predicate Definitions.
Evan Cheng152b7e12007-10-23 06:42:42 +0000544def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
545def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Hal Finkelc6d08f12011-10-17 04:03:49 +0000546def IsBookE : Predicate<"PPCSubTarget.isBookE()">;
Chris Lattner6a5339b2006-11-14 18:44:47 +0000547
Chris Lattner47f01f12005-09-08 19:50:41 +0000548//===----------------------------------------------------------------------===//
Hal Finkel171a8ad2013-04-12 02:18:09 +0000549// PowerPC Multiclass Definitions.
550
551multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
552 string asmbase, string asmstr, InstrItinClass itin,
553 list<dag> pattern> {
554 let BaseName = asmbase in {
555 def NAME : XForm_6<opcode, xo, OOL, IOL,
556 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
557 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000558 let Defs = [CR0] in
559 def o : XForm_6<opcode, xo, OOL, IOL,
560 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
561 []>, isDOT, RecFormRel;
562 }
563}
564
565multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
566 string asmbase, string asmstr, InstrItinClass itin,
567 list<dag> pattern> {
568 let BaseName = asmbase in {
569 let Defs = [CARRY] in
570 def NAME : XForm_6<opcode, xo, OOL, IOL,
571 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
572 pattern>, RecFormRel;
573 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000574 def o : XForm_6<opcode, xo, OOL, IOL,
575 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
576 []>, isDOT, RecFormRel;
577 }
578}
579
580multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
581 string asmbase, string asmstr, InstrItinClass itin,
582 list<dag> pattern> {
583 let BaseName = asmbase in {
584 def NAME : XForm_10<opcode, xo, OOL, IOL,
585 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
586 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000587 let Defs = [CR0] in
588 def o : XForm_10<opcode, xo, OOL, IOL,
589 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
590 []>, isDOT, RecFormRel;
591 }
592}
593
594multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
595 string asmbase, string asmstr, InstrItinClass itin,
596 list<dag> pattern> {
597 let BaseName = asmbase in {
598 let Defs = [CARRY] in
599 def NAME : XForm_10<opcode, xo, OOL, IOL,
600 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
601 pattern>, RecFormRel;
602 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000603 def o : XForm_10<opcode, xo, OOL, IOL,
604 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
605 []>, isDOT, RecFormRel;
606 }
607}
608
609multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
610 string asmbase, string asmstr, InstrItinClass itin,
611 list<dag> pattern> {
612 let BaseName = asmbase in {
613 def NAME : XForm_11<opcode, xo, OOL, IOL,
614 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
615 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000616 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000617 def o : XForm_11<opcode, xo, OOL, IOL,
618 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
619 []>, isDOT, RecFormRel;
620 }
621}
622
623multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
624 string asmbase, string asmstr, InstrItinClass itin,
625 list<dag> pattern> {
626 let BaseName = asmbase in {
627 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
628 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
629 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000630 let Defs = [CR0] in
631 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
632 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
633 []>, isDOT, RecFormRel;
634 }
635}
636
637multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
638 string asmbase, string asmstr, InstrItinClass itin,
639 list<dag> pattern> {
640 let BaseName = asmbase in {
641 let Defs = [CARRY] in
642 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
643 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
644 pattern>, RecFormRel;
645 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000646 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
647 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
648 []>, isDOT, RecFormRel;
649 }
650}
651
652multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
653 string asmbase, string asmstr, InstrItinClass itin,
654 list<dag> pattern> {
655 let BaseName = asmbase in {
656 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
657 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
658 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000659 let Defs = [CR0] in
660 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
661 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
662 []>, isDOT, RecFormRel;
663 }
664}
665
666multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
667 string asmbase, string asmstr, InstrItinClass itin,
668 list<dag> pattern> {
669 let BaseName = asmbase in {
670 let Defs = [CARRY] in
671 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
672 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
673 pattern>, RecFormRel;
674 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000675 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
676 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
677 []>, isDOT, RecFormRel;
678 }
679}
680
681multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
682 string asmbase, string asmstr, InstrItinClass itin,
683 list<dag> pattern> {
684 let BaseName = asmbase in {
685 def NAME : MForm_2<opcode, OOL, IOL,
686 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
687 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000688 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000689 def o : MForm_2<opcode, OOL, IOL,
690 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
691 []>, isDOT, RecFormRel;
692 }
693}
694
695multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
696 string asmbase, string asmstr, InstrItinClass itin,
697 list<dag> pattern> {
698 let BaseName = asmbase in {
699 def NAME : MDForm_1<opcode, xo, OOL, IOL,
700 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
701 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000702 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000703 def o : MDForm_1<opcode, xo, OOL, IOL,
704 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
705 []>, isDOT, RecFormRel;
706 }
707}
708
Ulrich Weigand1adc97c2013-04-26 15:39:12 +0000709multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
710 string asmbase, string asmstr, InstrItinClass itin,
711 list<dag> pattern> {
712 let BaseName = asmbase in {
713 def NAME : MDSForm_1<opcode, xo, OOL, IOL,
714 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
715 pattern>, RecFormRel;
716 let Defs = [CR0] in
717 def o : MDSForm_1<opcode, xo, OOL, IOL,
718 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
719 []>, isDOT, RecFormRel;
720 }
721}
722
Hal Finkel59857462013-04-12 18:17:57 +0000723multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
724 string asmbase, string asmstr, InstrItinClass itin,
725 list<dag> pattern> {
Hal Finkel171a8ad2013-04-12 02:18:09 +0000726 let BaseName = asmbase in {
Hal Finkel59857462013-04-12 18:17:57 +0000727 let Defs = [CARRY] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000728 def NAME : XSForm_1<opcode, xo, OOL, IOL,
729 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
730 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000731 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000732 def o : XSForm_1<opcode, xo, OOL, IOL,
733 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
734 []>, isDOT, RecFormRel;
735 }
736}
737
738multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
739 string asmbase, string asmstr, InstrItinClass itin,
740 list<dag> pattern> {
741 let BaseName = asmbase in {
742 def NAME : XForm_26<opcode, xo, OOL, IOL,
743 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
744 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000745 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000746 def o : XForm_26<opcode, xo, OOL, IOL,
747 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000748 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000749 }
750}
751
752multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
753 string asmbase, string asmstr, InstrItinClass itin,
754 list<dag> pattern> {
755 let BaseName = asmbase in {
756 def NAME : AForm_1<opcode, xo, OOL, IOL,
757 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
758 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000759 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000760 def o : AForm_1<opcode, xo, OOL, IOL,
761 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000762 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000763 }
764}
765
766multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
767 string asmbase, string asmstr, InstrItinClass itin,
768 list<dag> pattern> {
769 let BaseName = asmbase in {
770 def NAME : AForm_2<opcode, xo, OOL, IOL,
771 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
772 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000773 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000774 def o : AForm_2<opcode, xo, OOL, IOL,
775 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000776 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000777 }
778}
779
780multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
781 string asmbase, string asmstr, InstrItinClass itin,
782 list<dag> pattern> {
783 let BaseName = asmbase in {
784 def NAME : AForm_3<opcode, xo, OOL, IOL,
785 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
786 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000787 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000788 def o : AForm_3<opcode, xo, OOL, IOL,
789 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000790 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000791 }
792}
793
794//===----------------------------------------------------------------------===//
Chris Lattner47f01f12005-09-08 19:50:41 +0000795// PowerPC Instruction Definitions.
796
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000797// Pseudo-instructions:
Chris Lattner47f01f12005-09-08 19:50:41 +0000798
Chris Lattner88d211f2006-03-12 09:13:49 +0000799let hasCtrlDep = 1 in {
Evan Cheng071a2792007-09-11 19:55:27 +0000800let Defs = [R1], Uses = [R1] in {
Will Schmidt91638152012-10-04 18:14:28 +0000801def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000802 [(callseq_start timm:$amt)]>;
Will Schmidt91638152012-10-04 18:14:28 +0000803def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000804 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000805}
Chris Lattner1877ec92006-03-13 21:52:10 +0000806
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000807def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +0000808 "UPDATE_VRSAVE $rD, $rS", []>;
Nate Begemanb816f022004-10-07 22:30:03 +0000809}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000810
Evan Cheng071a2792007-09-11 19:55:27 +0000811let Defs = [R1], Uses = [R1] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000812def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000813 [(set i32:$result,
814 (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
Jim Laskey2f616bf2006-11-16 22:43:37 +0000815
Dan Gohman533297b2009-10-29 18:10:34 +0000816// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
817// instruction selection into a branch sequence.
818let usesCustomInserter = 1, // Expanded after instruction selection.
Chris Lattner88d211f2006-03-12 09:13:49 +0000819 PPC970_Single = 1 in {
Hal Finkelab42ec22013-03-27 05:57:58 +0000820 // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
821 // because either operand might become the first operand in an isel, and
822 // that operand cannot be r0.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000823 def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
824 gprc_nor0:$T, gprc_nor0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000825 i32imm:$BROPC), "#SELECT_CC_I4",
Chris Lattner54689662006-09-27 02:55:21 +0000826 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000827 def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
828 g8rc_nox0:$T, g8rc_nox0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000829 i32imm:$BROPC), "#SELECT_CC_I8",
Chris Lattner54689662006-09-27 02:55:21 +0000830 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000831 def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000832 i32imm:$BROPC), "#SELECT_CC_F4",
Chris Lattner54689662006-09-27 02:55:21 +0000833 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000834 def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000835 i32imm:$BROPC), "#SELECT_CC_F8",
Chris Lattner54689662006-09-27 02:55:21 +0000836 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000837 def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000838 i32imm:$BROPC), "#SELECT_CC_VRRC",
Chris Lattner54689662006-09-27 02:55:21 +0000839 []>;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000840}
841
Bill Wendling7194aaf2008-03-03 22:19:16 +0000842// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
843// scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000844let mayStore = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000845def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000846 "#SPILL_CR", []>;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000847
Hal Finkeld21e9302011-12-06 20:55:36 +0000848// RESTORE_CR - Indicate that we're restoring the CR register (previously
849// spilled), so we'll need to scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000850let mayLoad = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000851def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000852 "#RESTORE_CR", []>;
Hal Finkeld21e9302011-12-06 20:55:36 +0000853
Evan Chengffbacca2007-07-21 00:34:19 +0000854let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Ulrich Weigand3b255292013-03-26 10:53:27 +0000855 let isReturn = 1, Uses = [LR, RM] in
856 def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", BrB,
857 [(retflag)]>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000858 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
Owen Anderson20ab2902007-11-12 07:39:39 +0000859 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000860
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000861 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000862 def BCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
863 "b${cond:cc}ctr ${cond:reg}", BrB, []>;
864 }
Chris Lattner47f01f12005-09-08 19:50:41 +0000865}
866
Chris Lattner7a823bd2005-02-15 20:26:49 +0000867let Defs = [LR] in
Will Schmidt91638152012-10-04 18:14:28 +0000868 def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
Chris Lattner88d211f2006-03-12 09:13:49 +0000869 PPC970_Unit_BRU;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000870
Evan Chengffbacca2007-07-21 00:34:19 +0000871let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Chris Lattner594f4c62006-10-13 19:10:34 +0000872 let isBarrier = 1 in {
Chris Lattner8d704112010-11-15 06:09:35 +0000873 def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
Chris Lattner1e484782005-12-04 18:42:54 +0000874 "b $dst", BrB,
875 [(br bb:$dst)]>;
Chris Lattner594f4c62006-10-13 19:10:34 +0000876 }
Chris Lattnerdd998852004-11-22 23:07:01 +0000877
Chris Lattner18258c62006-11-17 22:37:34 +0000878 // BCC represents an arbitrary conditional branch on a predicate.
879 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
Will Schmidtd8755332012-10-05 15:16:11 +0000880 // a two-value operand where a dag node expects two operands. :(
Hal Finkel5ee67e82013-04-08 16:24:03 +0000881 let isCodeGenOnly = 1 in {
Will Schmidtd8755332012-10-05 15:16:11 +0000882 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
883 "b${cond:cc} ${cond:reg}, $dst"
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000884 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
Hal Finkel5ee67e82013-04-08 16:24:03 +0000885 let isReturn = 1, Uses = [LR, RM] in
886 def BCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
887 "b${cond:cc}lr ${cond:reg}", BrB, []>;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000888
889 let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
890 def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
891 "bdzlr", BrB, []>;
892 def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
893 "bdnzlr", BrB, []>;
894 }
Hal Finkel5ee67e82013-04-08 16:24:03 +0000895 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000896
897 let Defs = [CTR], Uses = [CTR] in {
Ulrich Weigand18430432012-11-13 19:15:52 +0000898 def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
899 "bdz $dst">;
900 def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
901 "bdnz $dst">;
Hal Finkel99f823f2012-06-08 15:38:21 +0000902 }
Misha Brukmanb2edb442004-06-28 18:23:35 +0000903}
904
Hal Finkelcaeeb182013-04-04 22:55:54 +0000905// The unconditional BCL used by the SjLj setjmp code.
Ulrich Weigand3d386422013-03-26 10:57:16 +0000906let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000907 let Defs = [LR], Uses = [RM] in {
Hal Finkelcaeeb182013-04-04 22:55:54 +0000908 def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
909 "bcl 20, 31, $dst">;
Hal Finkel7ee74a62013-03-21 21:37:52 +0000910 }
911}
912
Roman Divackye46137f2012-03-06 16:41:49 +0000913let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
Misha Brukmanc661c302004-06-30 22:00:45 +0000914 // Convenient aliases for call instructions
Dale Johannesenb384ab92008-10-29 18:26:45 +0000915 let Uses = [RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000916 def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func),
917 "bl $func", BrB, []>; // See Pat patterns below.
918 def BLA : IForm<18, 1, 1, (outs), (ins aaddr:$func),
919 "bla $func", BrB, [(PPCcall (i32 imm:$func))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +0000920 }
921 let Uses = [CTR, RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000922 def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
923 "bctrl", BrB, [(PPCbctrl)]>,
924 Requires<[In32BitMode]>;
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000925
926 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000927 def BCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
928 "b${cond:cc}ctrl ${cond:reg}", BrB, []>;
Dale Johannesen639076f2008-10-23 20:41:28 +0000929 }
Chris Lattner9f0bc652007-02-25 05:34:32 +0000930}
931
Dale Johannesenb384ab92008-10-29 18:26:45 +0000932let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000933def TCRETURNdi :Pseudo< (outs),
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000934 (ins calltarget:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000935 "#TC_RETURNd $dst $offset",
936 []>;
937
938
Dale Johannesenb384ab92008-10-29 18:26:45 +0000939let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000940def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000941 "#TC_RETURNa $func $offset",
942 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
943
Dale Johannesenb384ab92008-10-29 18:26:45 +0000944let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000945def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000946 "#TC_RETURNr $dst $offset",
947 []>;
948
949
Ulrich Weigand3d386422013-03-26 10:57:16 +0000950let isCodeGenOnly = 1 in {
951
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000952let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000953 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000954def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
955 Requires<[In32BitMode]>;
956
957
958
959let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000960 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000961def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
962 "b $dst", BrB,
963 []>;
964
Ulrich Weigand3d386422013-03-26 10:57:16 +0000965}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000966
967let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000968 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000969def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
970 "ba $dst", BrB,
971 []>;
972
Ulrich Weigand3d386422013-03-26 10:57:16 +0000973let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000974 def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf),
Hal Finkel7ee74a62013-03-21 21:37:52 +0000975 "#EH_SJLJ_SETJMP32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000976 [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
Hal Finkel7ee74a62013-03-21 21:37:52 +0000977 Requires<[In32BitMode]>;
978 let isTerminator = 1 in
979 def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
980 "#EH_SJLJ_LONGJMP32",
981 [(PPCeh_sjlj_longjmp addr:$buf)]>,
982 Requires<[In32BitMode]>;
983}
984
Ulrich Weigand3d386422013-03-26 10:57:16 +0000985let isBranch = 1, isTerminator = 1 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000986 def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
987 "#EH_SjLj_Setup\t$dst", []>;
988}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000989
Chris Lattner001db452006-06-06 21:29:23 +0000990// DCB* instructions.
Evan Cheng64d80e32007-07-19 01:14:50 +0000991def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000992 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
993 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000994def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000995 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
996 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000997def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000998 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
999 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001000def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001001 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
1002 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001003def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001004 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
1005 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001006def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001007 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
1008 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001009def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001010 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
1011 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001012def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001013 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
1014 PPC970_DGroup_Single;
Chris Lattner26e552b2006-11-14 19:19:53 +00001015
Hal Finkel19aa2b52012-04-01 20:08:17 +00001016def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
1017 (DCBT xoaddr:$dst)>;
1018
Evan Cheng53301922008-07-12 02:23:19 +00001019// Atomic operations
Dan Gohman533297b2009-10-29 18:10:34 +00001020let usesCustomInserter = 1 in {
Jakob Stoklund Olesencf3a7482011-04-04 17:07:09 +00001021 let Defs = [CR0] in {
Dale Johannesen97efa362008-08-28 17:53:09 +00001022 def ATOMIC_LOAD_ADD_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001023 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001024 [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001025 def ATOMIC_LOAD_SUB_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001026 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001027 [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001028 def ATOMIC_LOAD_AND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001029 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001030 [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001031 def ATOMIC_LOAD_OR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001032 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001033 [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001034 def ATOMIC_LOAD_XOR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001035 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001036 [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001037 def ATOMIC_LOAD_NAND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001038 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001039 [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001040 def ATOMIC_LOAD_ADD_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001041 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001042 [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001043 def ATOMIC_LOAD_SUB_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001044 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001045 [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001046 def ATOMIC_LOAD_AND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001047 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001048 [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001049 def ATOMIC_LOAD_OR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001050 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001051 [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001052 def ATOMIC_LOAD_XOR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001053 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001054 [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001055 def ATOMIC_LOAD_NAND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001056 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001057 [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001058 def ATOMIC_LOAD_ADD_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001059 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001060 [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001061 def ATOMIC_LOAD_SUB_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001062 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001063 [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001064 def ATOMIC_LOAD_AND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001065 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001066 [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001067 def ATOMIC_LOAD_OR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001068 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001069 [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001070 def ATOMIC_LOAD_XOR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001071 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001072 [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001073 def ATOMIC_LOAD_NAND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001074 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001075 [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001076
Dale Johannesen97efa362008-08-28 17:53:09 +00001077 def ATOMIC_CMP_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001078 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001079 [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001080 def ATOMIC_CMP_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001081 (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 +00001082 [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001083 def ATOMIC_CMP_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001084 (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 +00001085 [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001086
Dale Johannesen97efa362008-08-28 17:53:09 +00001087 def ATOMIC_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001088 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001089 [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001090 def ATOMIC_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001091 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001092 [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen140a8bb2008-08-25 21:09:52 +00001093 def ATOMIC_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001094 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001095 [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001096 }
Evan Cheng54fc97d2008-04-19 01:30:48 +00001097}
1098
Evan Cheng53301922008-07-12 02:23:19 +00001099// Instructions to support atomic operations
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001100def LWARX : XForm_1<31, 20, (outs gprc:$rD), (ins memrr:$src),
Evan Cheng53301922008-07-12 02:23:19 +00001101 "lwarx $rD, $src", LdStLWARX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001102 [(set i32:$rD, (PPClarx xoaddr:$src))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001103
1104let Defs = [CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001105def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
Evan Cheng53301922008-07-12 02:23:19 +00001106 "stwcx. $rS, $dst", LdStSTWCX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001107 [(PPCstcx i32:$rS, xoaddr:$dst)]>,
Evan Cheng53301922008-07-12 02:23:19 +00001108 isDOT;
1109
Dan Gohmaneffc8c52010-05-14 16:46:02 +00001110let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
Hal Finkel20b529b2012-04-01 04:44:16 +00001111def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStLoad, [(trap)]>;
Nate Begeman1db3c922008-08-11 17:36:31 +00001112
Chris Lattner26e552b2006-11-14 19:19:53 +00001113//===----------------------------------------------------------------------===//
1114// PPC32 Load Instructions.
Nate Begeman07aada82004-08-30 02:28:06 +00001115//
Chris Lattner26e552b2006-11-14 19:19:53 +00001116
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001117// Unindexed (r+i) Loads.
Dan Gohman15511cf2008-12-03 18:15:48 +00001118let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001119def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001120 "lbz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001121 [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001122def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001123 "lha $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001124 [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
Chris Lattnerfd977342006-03-13 05:15:10 +00001125 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001126def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001127 "lhz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001128 [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001129def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001130 "lwz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001131 [(set i32:$rD, (load iaddr:$src))]>;
Chris Lattner302bf9c2006-11-08 02:13:12 +00001132
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001133def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001134 "lfs $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001135 [(set f32:$rD, (load iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001136def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
Chris Lattner4eab7142006-11-10 02:08:47 +00001137 "lfd $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001138 [(set f64:$rD, (load iaddr:$src))]>;
Chris Lattner4eab7142006-11-10 02:08:47 +00001139
Chris Lattner4eab7142006-11-10 02:08:47 +00001140
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001141// Unindexed (r+i) Loads with Update (preinc).
Hal Finkelfa1d1022013-04-07 05:46:58 +00001142let mayLoad = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001143def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001144 "lbzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001145 []>, RegConstraint<"$addr.reg = $ea_result">,
1146 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001147
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001148def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001149 "lhau $rD, $addr", LdStLHAU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001150 []>, RegConstraint<"$addr.reg = $ea_result">,
1151 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001152
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001153def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001154 "lhzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001155 []>, RegConstraint<"$addr.reg = $ea_result">,
1156 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001157
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001158def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001159 "lwzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001160 []>, RegConstraint<"$addr.reg = $ea_result">,
1161 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001162
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001163def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001164 "lfsu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001165 []>, RegConstraint<"$addr.reg = $ea_result">,
1166 NoEncode<"$ea_result">;
1167
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001168def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001169 "lfdu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001170 []>, RegConstraint<"$addr.reg = $ea_result">,
1171 NoEncode<"$ea_result">;
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001172
1173
1174// Indexed (r+r) Loads with Update (preinc).
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001175def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001176 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001177 "lbzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001178 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001179 NoEncode<"$ea_result">;
1180
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001181def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001182 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001183 "lhaux $rD, $addr", LdStLHAU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001184 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001185 NoEncode<"$ea_result">;
1186
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001187def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001188 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001189 "lhzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001190 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001191 NoEncode<"$ea_result">;
1192
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001193def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001194 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001195 "lwzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001196 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001197 NoEncode<"$ea_result">;
1198
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001199def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001200 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001201 "lfsux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001202 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001203 NoEncode<"$ea_result">;
1204
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001205def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001206 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001207 "lfdux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001208 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001209 NoEncode<"$ea_result">;
Nate Begemanb816f022004-10-07 22:30:03 +00001210}
Dan Gohman41474ba2008-12-03 02:30:17 +00001211}
Chris Lattner302bf9c2006-11-08 02:13:12 +00001212
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001213// Indexed (r+r) Loads.
Chris Lattner26e552b2006-11-14 19:19:53 +00001214//
Dan Gohman15511cf2008-12-03 18:15:48 +00001215let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001216def LBZX : XForm_1<31, 87, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001217 "lbzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001218 [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001219def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
Chris Lattner26e552b2006-11-14 19:19:53 +00001220 "lhax $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001221 [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001222 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001223def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001224 "lhzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001225 [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001226def LWZX : XForm_1<31, 23, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001227 "lwzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001228 [(set i32:$rD, (load xaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001229
1230
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001231def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001232 "lhbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001233 [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001234def LWBRX : XForm_1<31, 534, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001235 "lwbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001236 [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001237
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001238def LFSX : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001239 "lfsx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001240 [(set f32:$frD, (load xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001241def LFDX : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001242 "lfdx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001243 [(set f64:$frD, (load xaddr:$src))]>;
Hal Finkel8049ab12013-03-31 10:12:51 +00001244
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001245def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8049ab12013-03-31 10:12:51 +00001246 "lfiwax $frD, $src", LdStLFD,
1247 [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001248def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel46479192013-04-01 17:52:07 +00001249 "lfiwzx $frD, $src", LdStLFD,
1250 [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001251}
1252
1253//===----------------------------------------------------------------------===//
1254// PPC32 Store Instructions.
1255//
1256
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001257// Unindexed (r+i) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001258let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001259def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001260 "stb $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001261 [(truncstorei8 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001262def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001263 "sth $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001264 [(truncstorei16 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001265def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001266 "stw $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001267 [(store i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001268def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001269 "stfs $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001270 [(store f32:$rS, iaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001271def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001272 "stfd $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001273 [(store f64:$rS, iaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001274}
1275
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001276// Unindexed (r+i) Stores with Update (preinc).
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001277let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001278def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001279 "stbu $rS, $dst", LdStStoreUpd, []>,
1280 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001281def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001282 "sthu $rS, $dst", LdStStoreUpd, []>,
1283 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001284def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001285 "stwu $rS, $dst", LdStStoreUpd, []>,
1286 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001287def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001288 "stfsu $rS, $dst", LdStSTFDU, []>,
1289 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001290def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001291 "stfdu $rS, $dst", LdStSTFDU, []>,
1292 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001293}
1294
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001295// Patterns to match the pre-inc stores. We can't put the patterns on
1296// the instruction definitions directly as ISel wants the address base
1297// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001298def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1299 (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1300def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1301 (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1302def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1303 (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1304def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1305 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1306def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1307 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001308
Chris Lattner26e552b2006-11-14 19:19:53 +00001309// Indexed (r+r) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001310let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001311def STBX : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001312 "stbx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001313 [(truncstorei8 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001314 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001315def STHX : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001316 "sthx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001317 [(truncstorei16 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001318 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001319def STWX : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001320 "stwx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001321 [(store i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001322 PPC970_DGroup_Cracked;
Hal Finkelac81cc32012-06-19 02:34:32 +00001323
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001324def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001325 "sthbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001326 [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001327 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001328def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001329 "stwbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001330 [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001331 PPC970_DGroup_Cracked;
1332
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001333def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001334 "stfiwx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001335 [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001336
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001337def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001338 "stfsx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001339 [(store f32:$frS, xaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001340def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001341 "stfdx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001342 [(store f64:$frS, xaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001343}
1344
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001345// Indexed (r+r) Stores with Update (preinc).
1346let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001347def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001348 "stbux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001349 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001350 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001351def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001352 "sthux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001353 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001354 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001355def STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001356 "stwux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001357 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001358 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001359def STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001360 "stfsux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001361 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001362 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001363def STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001364 "stfdux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001365 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001366 PPC970_DGroup_Cracked;
1367}
1368
1369// Patterns to match the pre-inc stores. We can't put the patterns on
1370// the instruction definitions directly as ISel wants the address base
1371// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001372def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1373 (STBUX $rS, $ptrreg, $ptroff)>;
1374def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1375 (STHUX $rS, $ptrreg, $ptroff)>;
1376def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1377 (STWUX $rS, $ptrreg, $ptroff)>;
1378def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1379 (STFSUX $rS, $ptrreg, $ptroff)>;
1380def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1381 (STFDUX $rS, $ptrreg, $ptroff)>;
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001382
Dale Johannesenf87d6c02008-08-22 17:20:54 +00001383def SYNC : XForm_24_sync<31, 598, (outs), (ins),
1384 "sync", LdStSync,
1385 [(int_ppc_sync)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001386
1387//===----------------------------------------------------------------------===//
1388// PPC32 Arithmetic Instructions.
1389//
Chris Lattner302bf9c2006-11-08 02:13:12 +00001390
Chris Lattner88d211f2006-03-12 09:13:49 +00001391let PPC970_Unit = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001392def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001393 "addi $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001394 [(set i32:$rD, (add i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001395let BaseName = "addic" in {
1396let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001397def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001398 "addic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001399 [(set i32:$rD, (addc i32:$rA, immSExt16:$imm))]>,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001400 RecFormRel, PPC970_DGroup_Cracked;
Hal Finkel59857462013-04-12 18:17:57 +00001401let Defs = [CARRY, CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001402def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001403 "addic. $rD, $rA, $imm", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001404 []>, isDOT, RecFormRel;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001405}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001406def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001407 "addis $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001408 [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
Ulrich Weigand3d386422013-03-26 10:57:16 +00001409let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001410def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$sym),
Jim Laskey53842142005-10-19 19:51:16 +00001411 "la $rD, $sym($rA)", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001412 [(set i32:$rD, (add i32:$rA,
Chris Lattner490ad082005-11-17 17:52:01 +00001413 (PPClo tglobaladdr:$sym, 0)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001414def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001415 "mulli $rD, $rA, $imm", IntMulLI,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001416 [(set i32:$rD, (mul i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001417let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001418def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001419 "subfic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001420 [(set i32:$rD, (subc immSExt16:$imm, i32:$rA))]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001421
Hal Finkelf3c38282012-08-28 02:10:33 +00001422let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001423 def LI : DForm_2_r0<14, (outs gprc:$rD), (ins symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001424 "li $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001425 [(set i32:$rD, immSExt16:$imm)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001426 def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001427 "lis $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001428 [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001429}
Chris Lattner88d211f2006-03-12 09:13:49 +00001430}
Chris Lattner26e552b2006-11-14 19:19:53 +00001431
Chris Lattner88d211f2006-03-12 09:13:49 +00001432let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel59857462013-04-12 18:17:57 +00001433let Defs = [CR0] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001434def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001435 "andi. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001436 [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001437 isDOT;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001438def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001439 "andis. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001440 [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001441 isDOT;
Hal Finkel59857462013-04-12 18:17:57 +00001442}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001443def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001444 "ori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001445 [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001446def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001447 "oris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001448 [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001449def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001450 "xori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001451 [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001452def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001453 "xoris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001454 [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
Hal Finkel16803092012-06-12 19:01:24 +00001455def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntSimple,
Nate Begeman09761222005-12-09 23:54:18 +00001456 []>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001457let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001458 def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001459 "cmpwi $crD, $rA, $imm", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001460 def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001461 "cmplwi $dst, $src1, $src2", IntCompare>;
1462}
Chris Lattner88d211f2006-03-12 09:13:49 +00001463}
Nate Begemaned428532004-09-04 05:00:00 +00001464
Hal Finkel171a8ad2013-04-12 02:18:09 +00001465let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001466defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001467 "nand", "$rA, $rS, $rB", IntSimple,
1468 [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001469defm AND : XForm_6r<31, 28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001470 "and", "$rA, $rS, $rB", IntSimple,
1471 [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001472defm ANDC : XForm_6r<31, 60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001473 "andc", "$rA, $rS, $rB", IntSimple,
1474 [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001475defm OR : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001476 "or", "$rA, $rS, $rB", IntSimple,
1477 [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001478defm NOR : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001479 "nor", "$rA, $rS, $rB", IntSimple,
1480 [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001481defm ORC : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001482 "orc", "$rA, $rS, $rB", IntSimple,
1483 [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001484defm EQV : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001485 "eqv", "$rA, $rS, $rB", IntSimple,
1486 [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001487defm XOR : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001488 "xor", "$rA, $rS, $rB", IntSimple,
1489 [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001490defm SLW : XForm_6r<31, 24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001491 "slw", "$rA, $rS, $rB", IntGeneral,
1492 [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001493defm SRW : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001494 "srw", "$rA, $rS, $rB", IntGeneral,
1495 [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001496defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001497 "sraw", "$rA, $rS, $rB", IntShift,
1498 [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001499}
Chris Lattner26e552b2006-11-14 19:19:53 +00001500
Chris Lattner88d211f2006-03-12 09:13:49 +00001501let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001502let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001503defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
Hal Finkel59857462013-04-12 18:17:57 +00001504 "srawi", "$rA, $rS, $SH", IntShift,
1505 [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001506defm CNTLZW : XForm_11r<31, 26, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001507 "cntlzw", "$rA, $rS", IntGeneral,
1508 [(set i32:$rA, (ctlz i32:$rS))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001509defm EXTSB : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001510 "extsb", "$rA, $rS", IntSimple,
1511 [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001512defm EXTSH : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001513 "extsh", "$rA, $rS", IntSimple,
1514 [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1515}
Hal Finkel00e86ad2013-04-15 02:37:46 +00001516let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001517 def CMPW : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001518 "cmpw $crD, $rA, $rB", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001519 def CMPLW : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001520 "cmplw $crD, $rA, $rB", IntCompare>;
1521}
Chris Lattner88d211f2006-03-12 09:13:49 +00001522}
1523let PPC970_Unit = 3 in { // FPU Operations.
Evan Cheng64d80e32007-07-19 01:14:50 +00001524//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Jim Laskey53842142005-10-19 19:51:16 +00001525// "fcmpo $crD, $fA, $fB", FPCompare>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001526let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001527 def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001528 "fcmpu $crD, $fA, $fB", FPCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001529 def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001530 "fcmpu $crD, $fA, $fB", FPCompare>;
1531}
Chris Lattner26e552b2006-11-14 19:19:53 +00001532
Dale Johannesenb384ab92008-10-29 18:26:45 +00001533let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001534 let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001535 defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001536 "fctiwz", "$frD, $frB", FPGeneral,
1537 [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001538
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001539 defm FRSP : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001540 "frsp", "$frD, $frB", FPGeneral,
1541 [(set f32:$frD, (fround f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001542
1543 // The frin -> nearbyint mapping is valid only in fast-math mode.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001544 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001545 defm FRIND : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001546 "frin", "$frD, $frB", FPGeneral,
1547 [(set f64:$frD, (fnearbyint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001548 defm FRINS : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001549 "frin", "$frD, $frB", FPGeneral,
1550 [(set f32:$frD, (fnearbyint f32:$frB))]>;
1551 }
Hal Finkelf5d5c432013-03-29 08:57:48 +00001552
Hal Finkel0882fd62013-03-29 19:41:55 +00001553 // These pseudos expand to rint but also set FE_INEXACT when the result does
1554 // not equal the argument.
1555 let usesCustomInserter = 1, Defs = [RM] in { // FIXME: Model FPSCR!
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001556 def FRINDrint : Pseudo<(outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001557 "#FRINDrint", [(set f64:$frD, (frint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001558 def FRINSrint : Pseudo<(outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001559 "#FRINSrint", [(set f32:$frD, (frint f32:$frB))]>;
1560 }
1561
Hal Finkel171a8ad2013-04-12 02:18:09 +00001562 let neverHasSideEffects = 1 in {
1563 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001564 defm FRIPD : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001565 "frip", "$frD, $frB", FPGeneral,
1566 [(set f64:$frD, (fceil f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001567 defm FRIPS : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001568 "frip", "$frD, $frB", FPGeneral,
1569 [(set f32:$frD, (fceil f32:$frB))]>;
1570 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001571 defm FRIZD : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001572 "friz", "$frD, $frB", FPGeneral,
1573 [(set f64:$frD, (ftrunc f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001574 defm FRIZS : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001575 "friz", "$frD, $frB", FPGeneral,
1576 [(set f32:$frD, (ftrunc f32:$frB))]>;
1577 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001578 defm FRIMD : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001579 "frim", "$frD, $frB", FPGeneral,
1580 [(set f64:$frD, (ffloor f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001581 defm FRIMS : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001582 "frim", "$frD, $frB", FPGeneral,
1583 [(set f32:$frD, (ffloor f32:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001584
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001585 defm FSQRT : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001586 "fsqrt", "$frD, $frB", FPSqrt,
1587 [(set f64:$frD, (fsqrt f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001588 defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001589 "fsqrts", "$frD, $frB", FPSqrt,
1590 [(set f32:$frD, (fsqrt f32:$frB))]>;
1591 }
Dale Johannesenb384ab92008-10-29 18:26:45 +00001592 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001593}
Chris Lattner919c0322005-10-01 01:35:02 +00001594
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001595/// Note that FMR is defined as pseudo-ops on the PPC970 because they are
Chris Lattner9d5da1d2006-03-24 07:12:19 +00001596/// often coalesced away and we don't want the dispatch group builder to think
Chris Lattner88d211f2006-03-12 09:13:49 +00001597/// that they will fill slots (which could cause the load of a LSU reject to
1598/// sneak into a d-group with a store).
Hal Finkelfa1cac22013-04-07 04:56:16 +00001599let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001600defm FMR : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001601 "fmr", "$frD, $frB", FPGeneral,
1602 []>, // (set f32:$frD, f32:$frB)
1603 PPC970_Unit_Pseudo;
Chris Lattner919c0322005-10-01 01:35:02 +00001604
Hal Finkel171a8ad2013-04-12 02:18:09 +00001605let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Chris Lattner919c0322005-10-01 01:35:02 +00001606// These are artificially split into two different forms, for 4/8 byte FP.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001607defm FABSS : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001608 "fabs", "$frD, $frB", FPGeneral,
1609 [(set f32:$frD, (fabs f32:$frB))]>;
1610let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001611defm FABSD : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001612 "fabs", "$frD, $frB", FPGeneral,
1613 [(set f64:$frD, (fabs f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001614defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001615 "fnabs", "$frD, $frB", FPGeneral,
1616 [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
1617let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001618defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001619 "fnabs", "$frD, $frB", FPGeneral,
1620 [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001621defm FNEGS : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001622 "fneg", "$frD, $frB", FPGeneral,
1623 [(set f32:$frD, (fneg f32:$frB))]>;
1624let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001625defm FNEGD : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001626 "fneg", "$frD, $frB", FPGeneral,
1627 [(set f64:$frD, (fneg f64:$frB))]>;
Hal Finkel827307b2013-04-03 04:01:11 +00001628
1629// Reciprocal estimates.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001630defm FRE : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001631 "fre", "$frD, $frB", FPGeneral,
1632 [(set f64:$frD, (PPCfre f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001633defm FRES : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001634 "fres", "$frD, $frB", FPGeneral,
1635 [(set f32:$frD, (PPCfre f32:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001636defm FRSQRTE : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001637 "frsqrte", "$frD, $frB", FPGeneral,
1638 [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001639defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001640 "frsqrtes", "$frD, $frB", FPGeneral,
1641 [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001642}
Nate Begeman6b3dc552004-08-29 22:45:13 +00001643
Nate Begeman07aada82004-08-30 02:28:06 +00001644// XL-Form instructions. condition register logical ops.
1645//
Hal Finkelaecbe242013-04-07 05:16:57 +00001646let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001647def MCRF : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
Chris Lattner88d211f2006-03-12 09:13:49 +00001648 "mcrf $BF, $BFA", BrMCR>,
1649 PPC970_DGroup_First, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001650
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001651def CREQV : XLForm_1<19, 289, (outs crbitrc:$CRD),
1652 (ins crbitrc:$CRA, crbitrc:$CRB),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001653 "creqv $CRD, $CRA, $CRB", BrCR,
1654 []>;
1655
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001656def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
1657 (ins crbitrc:$CRA, crbitrc:$CRB),
Nicolas Geoffray0404cd92008-03-10 14:12:10 +00001658 "cror $CRD, $CRA, $CRB", BrCR,
1659 []>;
1660
Ulrich Weigand3d386422013-03-26 10:57:16 +00001661let isCodeGenOnly = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001662def CRSET : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001663 "creqv $dst, $dst, $dst", BrCR,
1664 []>;
1665
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001666def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
Roman Divacky0aaa9192011-08-30 17:04:16 +00001667 "crxor $dst, $dst, $dst", BrCR,
1668 []>;
1669
Hal Finkel82b38212012-08-28 02:10:27 +00001670let Defs = [CR1EQ], CRD = 6 in {
1671def CR6SET : XLForm_1_ext<19, 289, (outs), (ins),
1672 "creqv 6, 6, 6", BrCR,
1673 [(PPCcr6set)]>;
1674
1675def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
1676 "crxor 6, 6, 6", BrCR,
1677 [(PPCcr6unset)]>;
1678}
Ulrich Weigand3d386422013-03-26 10:57:16 +00001679}
Hal Finkel82b38212012-08-28 02:10:27 +00001680
Chris Lattner88d211f2006-03-12 09:13:49 +00001681// XFX-Form instructions. Instructions that deal with SPRs.
Nate Begeman07aada82004-08-30 02:28:06 +00001682//
Dale Johannesen639076f2008-10-23 20:41:28 +00001683let Uses = [CTR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001684def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001685 "mfctr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001686 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001687}
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001688let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001689def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001690 "mtctr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001691 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001692}
Chris Lattner1877ec92006-03-13 21:52:10 +00001693
Dale Johannesen639076f2008-10-23 20:41:28 +00001694let Defs = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001695def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001696 "mtlr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001697 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001698}
1699let Uses = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001700def MFLR : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001701 "mflr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001702 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001703}
Chris Lattner1877ec92006-03-13 21:52:10 +00001704
1705// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1706// a GPR on the PPC970. As such, copies in and out have the same performance
1707// characteristics as an OR instruction.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001708def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +00001709 "mtspr 256, $rS", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001710 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001711def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
Chris Lattner1877ec92006-03-13 21:52:10 +00001712 "mfspr $rT, 256", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001713 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattner1877ec92006-03-13 21:52:10 +00001714
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001715let isCodeGenOnly = 1 in {
1716 def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001717 (outs VRSAVERC:$reg), (ins gprc:$rS),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001718 "mtspr 256, $rS", IntGeneral>,
1719 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001720 def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001721 (ins VRSAVERC:$reg),
1722 "mfspr $rT, 256", IntGeneral>,
1723 PPC970_DGroup_First, PPC970_Unit_FXU;
1724}
1725
1726// SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
1727// so we'll need to scavenge a register for it.
1728let mayStore = 1 in
1729def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
1730 "#SPILL_VRSAVE", []>;
1731
1732// RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
1733// spilled), so we'll need to scavenge a register for it.
1734let mayLoad = 1 in
1735def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
1736 "#RESTORE_VRSAVE", []>;
1737
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001738let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001739def MTCRF : XFXForm_5<31, 144, (outs crbitm:$FXM), (ins gprc:$rS),
Chris Lattner88d211f2006-03-12 09:13:49 +00001740 "mtcrf $FXM, $rS", BrMCRX>,
1741 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen5f07d522010-05-20 17:48:26 +00001742
1743// This is a pseudo for MFCR, which implicitly uses all 8 of its subregisters;
1744// declaring that here gives the local register allocator problems with this:
Dale Johannesenb384ab92008-10-29 18:26:45 +00001745// vreg = MCRF CR0
1746// MFCR <kill of whatever preg got assigned to vreg>
Dale Johannesen5f07d522010-05-20 17:48:26 +00001747// while not declaring it breaks DeadMachineInstructionElimination.
1748// As it turns out, in all cases where we currently use this,
1749// we're only interested in one subregister of it. Represent this in the
1750// instruction to keep the register allocator from becoming confused.
Chris Lattner2ead4582010-11-14 22:03:15 +00001751//
1752// FIXME: Make this a real Pseudo instruction when the JIT switches to MC.
Ulrich Weigand3d386422013-03-26 10:57:16 +00001753let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001754def MFCRpseud: XFXForm_3<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Will Schmidt91638152012-10-04 18:14:28 +00001755 "#MFCRpseud", SprMFCR>,
Chris Lattner6d92cad2006-03-26 10:06:40 +00001756 PPC970_MicroCode, PPC970_Unit_CRU;
Chris Lattner2ead4582010-11-14 22:03:15 +00001757
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001758def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Hal Finkel0a1852b2012-06-11 15:43:15 +00001759 "mfocrf $rT, $FXM", SprMFCR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001760 PPC970_DGroup_First, PPC970_Unit_CRU;
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001761} // neverHasSideEffects = 1
1762
Hal Finkel63496f62013-04-13 23:06:15 +00001763let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001764def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001765 "mfcr $rT", SprMFCR>,
1766 PPC970_MicroCode, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001767
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001768// Pseudo instruction to perform FADD in round-to-zero mode.
1769let usesCustomInserter = 1, Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001770 def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001771 [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
1772}
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001773
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001774// The above pseudo gets expanded to make use of the following instructions
1775// to manipulate FPSCR. Note that FPSCR is not modeled at the DAG level.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001776let Uses = [RM], Defs = [RM] in {
1777 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001778 "mtfsb0 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001779 PPC970_DGroup_Single, PPC970_Unit_FPU;
1780 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001781 "mtfsb1 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001782 PPC970_DGroup_Single, PPC970_Unit_FPU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001783 def MTFSF : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001784 "mtfsf $FM, $rT", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001785 PPC970_DGroup_Single, PPC970_Unit_FPU;
1786}
1787let Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001788 def MFFS : XForm_42<63, 583, (outs f8rc:$rT), (ins),
Dale Johannesenb384ab92008-10-29 18:26:45 +00001789 "mffs $rT", IntMFFS,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001790 [(set f64:$rT, (PPCmffs))]>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001791 PPC970_DGroup_Single, PPC970_Unit_FPU;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001792}
1793
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001794
Hal Finkel171a8ad2013-04-12 02:18:09 +00001795let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Nate Begeman07aada82004-08-30 02:28:06 +00001796// XO-Form instructions. Arithmetic instructions that can set overflow bit
1797//
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001798defm ADD4 : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001799 "add", "$rT, $rA, $rB", IntSimple,
1800 [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001801defm ADDC : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001802 "addc", "$rT, $rA, $rB", IntGeneral,
1803 [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
1804 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001805defm DIVW : XOForm_1r<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001806 "divw", "$rT, $rA, $rB", IntDivW,
1807 [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>,
1808 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001809defm DIVWU : XOForm_1r<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001810 "divwu", "$rT, $rA, $rB", IntDivW,
1811 [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>,
1812 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001813defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001814 "mulhw", "$rT, $rA, $rB", IntMulHW,
1815 [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001816defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001817 "mulhwu", "$rT, $rA, $rB", IntMulHWU,
1818 [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001819defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001820 "mullw", "$rT, $rA, $rB", IntMulHW,
1821 [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001822defm SUBF : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001823 "subf", "$rT, $rA, $rB", IntGeneral,
1824 [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001825defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001826 "subfc", "$rT, $rA, $rB", IntGeneral,
1827 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
1828 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001829defm NEG : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001830 "neg", "$rT, $rA", IntSimple,
1831 [(set i32:$rT, (ineg i32:$rA))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001832let Uses = [CARRY] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001833defm ADDE : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001834 "adde", "$rT, $rA, $rB", IntGeneral,
1835 [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001836defm ADDME : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001837 "addme", "$rT, $rA", IntGeneral,
1838 [(set i32:$rT, (adde i32:$rA, -1))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001839defm ADDZE : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001840 "addze", "$rT, $rA", IntGeneral,
1841 [(set i32:$rT, (adde i32:$rA, 0))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001842defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001843 "subfe", "$rT, $rA, $rB", IntGeneral,
1844 [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001845defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001846 "subfme", "$rT, $rA", IntGeneral,
1847 [(set i32:$rT, (sube -1, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001848defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001849 "subfze", "$rT, $rA", IntGeneral,
1850 [(set i32:$rT, (sube 0, i32:$rA))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001851}
Dale Johannesen8dffc812009-09-18 20:15:22 +00001852}
Nate Begeman07aada82004-08-30 02:28:06 +00001853
1854// A-Form instructions. Most of the instructions executed in the FPU are of
1855// this type.
1856//
Hal Finkel171a8ad2013-04-12 02:18:09 +00001857let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001858let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001859 defm FMADD : AForm_1r<63, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001860 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001861 "fmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001862 [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001863 defm FMADDS : AForm_1r<59, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001864 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001865 "fmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001866 [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001867 defm FMSUB : AForm_1r<63, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001868 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001869 "fmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001870 [(set f64:$FRT,
1871 (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001872 defm FMSUBS : AForm_1r<59, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001873 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001874 "fmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001875 [(set f32:$FRT,
1876 (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001877 defm FNMADD : AForm_1r<63, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001878 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001879 "fnmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001880 [(set f64:$FRT,
1881 (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001882 defm FNMADDS : AForm_1r<59, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001883 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001884 "fnmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001885 [(set f32:$FRT,
1886 (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001887 defm FNMSUB : AForm_1r<63, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001888 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001889 "fnmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001890 [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
1891 (fneg f64:$FRB))))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001892 defm FNMSUBS : AForm_1r<59, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001893 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001894 "fnmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001895 [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
1896 (fneg f32:$FRB))))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001897}
Chris Lattner43f07a42005-10-02 07:07:49 +00001898// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1899// having 4 of these, force the comparison to always be an 8-byte double (code
1900// should use an FMRSD if the input comparison value really wants to be a float)
Chris Lattner867940d2005-10-02 06:58:23 +00001901// and 4/8 byte forms for the result and operand type..
Hal Finkel171a8ad2013-04-12 02:18:09 +00001902let Interpretation64Bit = 1 in
1903defm FSELD : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001904 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001905 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1906 [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
1907defm FSELS : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001908 (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001909 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1910 [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001911let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001912 defm FADD : AForm_2r<63, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001913 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001914 "fadd", "$FRT, $FRA, $FRB", FPAddSub,
1915 [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
1916 defm FADDS : AForm_2r<59, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001917 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001918 "fadds", "$FRT, $FRA, $FRB", FPGeneral,
1919 [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
1920 defm FDIV : AForm_2r<63, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001921 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001922 "fdiv", "$FRT, $FRA, $FRB", FPDivD,
1923 [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
1924 defm FDIVS : AForm_2r<59, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001925 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001926 "fdivs", "$FRT, $FRA, $FRB", FPDivS,
1927 [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
1928 defm FMUL : AForm_3r<63, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001929 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001930 "fmul", "$FRT, $FRA, $FRC", FPFused,
1931 [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
1932 defm FMULS : AForm_3r<59, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001933 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001934 "fmuls", "$FRT, $FRA, $FRC", FPGeneral,
1935 [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
1936 defm FSUB : AForm_2r<63, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001937 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001938 "fsub", "$FRT, $FRA, $FRB", FPAddSub,
1939 [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
1940 defm FSUBS : AForm_2r<59, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001941 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001942 "fsubs", "$FRT, $FRA, $FRB", FPGeneral,
1943 [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001944 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001945}
Nate Begeman07aada82004-08-30 02:28:06 +00001946
Hal Finkel946a8112013-04-07 15:06:53 +00001947let neverHasSideEffects = 1 in {
Chris Lattner88d211f2006-03-12 09:13:49 +00001948let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel946a8112013-04-07 15:06:53 +00001949 let isSelect = 1 in
Ulrich Weigandbc40df32012-11-13 19:14:19 +00001950 def ISEL : AForm_4<31, 15,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001951 (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
Hal Finkel009f7af2012-06-22 23:10:08 +00001952 "isel $rT, $rA, $rB, $cond", IntGeneral,
1953 []>;
1954}
1955
1956let PPC970_Unit = 1 in { // FXU Operations.
Nate Begemancc8bd9c2004-08-31 02:28:08 +00001957// M-Form instructions. rotate and mask instructions.
1958//
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001959let isCommutable = 1 in {
Chris Lattner043870d2005-09-09 18:17:41 +00001960// RLWIMI can be commuted if the rotate amount is zero.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001961defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
1962 (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001963 u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME", IntRotate,
1964 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1965 NoEncode<"$rSi">;
Nate Begeman2d4c98d2004-10-16 20:43:38 +00001966}
Hal Finkel171a8ad2013-04-12 02:18:09 +00001967let BaseName = "rlwinm" in {
Chris Lattner14522e32005-04-19 05:21:30 +00001968def RLWINM : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001969 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Jim Laskey53842142005-10-19 19:51:16 +00001970 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001971 []>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +00001972let Defs = [CR0] in
Chris Lattner14522e32005-04-19 05:21:30 +00001973def RLWINMo : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001974 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001975 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1976 []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
1977}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001978defm RLWNM : MForm_2r<23, (outs gprc:$rA),
1979 (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001980 "rlwnm", "$rA, $rS, $rB, $MB, $ME", IntGeneral,
1981 []>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001982}
Hal Finkel946a8112013-04-07 15:06:53 +00001983} // neverHasSideEffects = 1
Chris Lattner3c0f9cc2006-03-20 06:15:45 +00001984
Chris Lattner2eb25172005-09-09 00:39:56 +00001985//===----------------------------------------------------------------------===//
1986// PowerPC Instruction Patterns
1987//
1988
Chris Lattner30e21a42005-09-26 22:20:16 +00001989// Arbitrary immediate support. Implement in terms of LIS/ORI.
1990def : Pat<(i32 imm:$imm),
1991 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
Chris Lattner91da8622005-09-28 17:13:15 +00001992
1993// Implement the 'not' operation with the NOR instruction.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001994def NOT : Pat<(not i32:$in),
1995 (NOR $in, $in)>;
Chris Lattner91da8622005-09-28 17:13:15 +00001996
Chris Lattner79d0e9f2005-09-28 23:07:13 +00001997// ADD an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001998def : Pat<(add i32:$in, imm:$imm),
1999 (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002000// OR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002001def : Pat<(or i32:$in, imm:$imm),
2002 (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002003// XOR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002004def : Pat<(xor i32:$in, imm:$imm),
2005 (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002006// SUBFIC
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002007def : Pat<(sub immSExt16:$imm, i32:$in),
2008 (SUBFIC $in, imm:$imm)>;
Chris Lattner8be1fa52005-10-19 01:38:02 +00002009
Chris Lattner956f43c2006-06-16 20:22:01 +00002010// SHL/SRL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002011def : Pat<(shl i32:$in, (i32 imm:$imm)),
2012 (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
2013def : Pat<(srl i32:$in, (i32 imm:$imm)),
2014 (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
Nate Begeman2d5aff72005-10-19 18:42:01 +00002015
Nate Begeman35ef9132006-01-11 21:21:00 +00002016// ROTL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002017def : Pat<(rotl i32:$in, i32:$sh),
2018 (RLWNM $in, $sh, 0, 31)>;
2019def : Pat<(rotl i32:$in, (i32 imm:$imm)),
2020 (RLWINM $in, imm:$imm, 0, 31)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002021
Nate Begemanf42f1332006-09-22 05:01:56 +00002022// RLWNM
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002023def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
2024 (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
Nate Begemanf42f1332006-09-22 05:01:56 +00002025
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002026// Calls
Ulrich Weigand86765fb2013-03-22 15:24:13 +00002027def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
2028 (BL tglobaladdr:$dst)>;
2029def : Pat<(PPCcall (i32 texternalsym:$dst)),
2030 (BL texternalsym:$dst)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002031
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002032
2033def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
2034 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
2035
2036def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
2037 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
2038
2039def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
2040 (TCRETURNri CTRRC:$dst, imm:$imm)>;
2041
2042
2043
Chris Lattner860e8862005-11-17 07:30:41 +00002044// Hi and Lo for Darwin Global Addresses.
Chris Lattnerd717b192005-12-11 07:45:47 +00002045def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
2046def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
2047def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
2048def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
Nate Begeman37efe672006-04-22 18:53:45 +00002049def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
2050def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilson3d90dbe2009-11-04 21:31:18 +00002051def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
2052def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002053def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
2054 (ADDIS $in, tglobaltlsaddr:$g)>;
2055def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
Ulrich Weigand2b0850b2013-03-26 10:55:20 +00002056 (ADDI $in, tglobaltlsaddr:$g)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002057def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
2058 (ADDIS $in, tglobaladdr:$g)>;
2059def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
2060 (ADDIS $in, tconstpool:$g)>;
2061def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
2062 (ADDIS $in, tjumptable:$g)>;
2063def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
2064 (ADDIS $in, tblockaddress:$g)>;
Chris Lattner860e8862005-11-17 07:30:41 +00002065
Chris Lattner4172b102005-12-06 02:10:38 +00002066// Standard shifts. These are represented separately from the real shifts above
2067// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
2068// amounts.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002069def : Pat<(sra i32:$rS, i32:$rB),
2070 (SRAW $rS, $rB)>;
2071def : Pat<(srl i32:$rS, i32:$rB),
2072 (SRW $rS, $rB)>;
2073def : Pat<(shl i32:$rS, i32:$rB),
2074 (SLW $rS, $rB)>;
Chris Lattner4172b102005-12-06 02:10:38 +00002075
Evan Cheng466685d2006-10-09 20:57:25 +00002076def : Pat<(zextloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002077 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002078def : Pat<(zextloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002079 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002080def : Pat<(extloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002081 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002082def : Pat<(extloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002083 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002084def : Pat<(extloadi8 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002085 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002086def : Pat<(extloadi8 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002087 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002088def : Pat<(extloadi16 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002089 (LHZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002090def : Pat<(extloadi16 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002091 (LHZX xaddr:$src)>;
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00002092def : Pat<(f64 (extloadf32 iaddr:$src)),
2093 (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
2094def : Pat<(f64 (extloadf32 xaddr:$src)),
2095 (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
2096
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002097def : Pat<(f64 (fextend f32:$src)),
2098 (COPY_TO_REGCLASS $src, F8RC)>;
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002099
Eli Friedman14648462011-07-27 22:21:52 +00002100def : Pat<(atomic_fence (imm), (imm)), (SYNC)>;
2101
Hal Finkel827307b2013-04-03 04:01:11 +00002102// Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2103def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2104 (FNMSUB $A, $C, $B)>;
2105def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2106 (FNMSUB $A, $C, $B)>;
2107def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2108 (FNMSUBS $A, $C, $B)>;
2109def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2110 (FNMSUBS $A, $C, $B)>;
2111
Chris Lattnerb22a04d2006-03-25 07:51:43 +00002112include "PPCInstrAltivec.td"
Chris Lattner956f43c2006-06-16 20:22:01 +00002113include "PPCInstr64Bit.td"
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002114
Ulrich Weigand8e4ba8f2013-05-03 19:51:09 +00002115
2116//===----------------------------------------------------------------------===//
2117// PowerPC Instructions used for assembler/disassembler only
2118//
2119
2120def ISYNC : XLForm_2_ext<19, 150, 0, 0, 0, (outs), (ins),
2121 "isync", SprISYNC, []>;
2122
2123def ICBI : XForm_1a<31, 982, (outs), (ins memrr:$src),
2124 "icbi $src", LdStICBI, []>;
2125
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002126//===----------------------------------------------------------------------===//
2127// PowerPC Assembler Instruction Aliases
2128//
2129
2130// Pseudo-instructions for alternate assembly syntax (never used by codegen).
2131// These are aliases that require C++ handling to convert to the target
2132// instruction, while InstAliases can be handled directly by tblgen.
2133class PPCAsmPseudo<string asm, dag iops>
2134 : Instruction {
2135 let Namespace = "PPC";
2136 bit PPC64 = 0; // Default value, override with isPPC64
2137
2138 let OutOperandList = (outs);
2139 let InOperandList = iops;
2140 let Pattern = [];
2141 let AsmString = asm;
2142 let isAsmParserOnly = 1;
2143 let isPseudo = 1;
2144}
2145
2146def : InstAlias<"mr $rA, $rB", (OR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
2147
2148def SLWI : PPCAsmPseudo<"slwi $rA, $rS, $n",
2149 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2150def SRWI : PPCAsmPseudo<"srwi $rA, $rS, $n",
2151 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2152def SLDI : PPCAsmPseudo<"sldi $rA, $rS, $n",
2153 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2154def SRDI : PPCAsmPseudo<"srdi $rA, $rS, $n",
2155 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2156
2157def : InstAlias<"blt $cc, $dst", (BCC 12, crrc:$cc, condbrtarget:$dst)>;
2158def : InstAlias<"bgt $cc, $dst", (BCC 44, crrc:$cc, condbrtarget:$dst)>;
2159def : InstAlias<"beq $cc, $dst", (BCC 76, crrc:$cc, condbrtarget:$dst)>;
2160def : InstAlias<"bun $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2161def : InstAlias<"bso $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2162def : InstAlias<"bge $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2163def : InstAlias<"bnl $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2164def : InstAlias<"ble $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2165def : InstAlias<"bng $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2166def : InstAlias<"bne $cc, $dst", (BCC 68, crrc:$cc, condbrtarget:$dst)>;
2167def : InstAlias<"bnu $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2168def : InstAlias<"bns $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2169
2170def : InstAlias<"bltlr $cc", (BCLR 12, crrc:$cc)>;
2171def : InstAlias<"bgtlr $cc", (BCLR 44, crrc:$cc)>;
2172def : InstAlias<"beqlr $cc", (BCLR 76, crrc:$cc)>;
2173def : InstAlias<"bunlr $cc", (BCLR 108, crrc:$cc)>;
2174def : InstAlias<"bsolr $cc", (BCLR 108, crrc:$cc)>;
2175def : InstAlias<"bgelr $cc", (BCLR 4, crrc:$cc)>;
2176def : InstAlias<"bnllr $cc", (BCLR 4, crrc:$cc)>;
2177def : InstAlias<"blelr $cc", (BCLR 36, crrc:$cc)>;
2178def : InstAlias<"bnglr $cc", (BCLR 36, crrc:$cc)>;
2179def : InstAlias<"bnelr $cc", (BCLR 68, crrc:$cc)>;
2180def : InstAlias<"bnulr $cc", (BCLR 100, crrc:$cc)>;
2181def : InstAlias<"bnslr $cc", (BCLR 100, crrc:$cc)>;
2182
2183def : InstAlias<"bltctr $cc", (BCCTR 12, crrc:$cc)>;
2184def : InstAlias<"bgtctr $cc", (BCCTR 44, crrc:$cc)>;
2185def : InstAlias<"beqctr $cc", (BCCTR 76, crrc:$cc)>;
2186def : InstAlias<"bunctr $cc", (BCCTR 108, crrc:$cc)>;
2187def : InstAlias<"bsoctr $cc", (BCCTR 108, crrc:$cc)>;
2188def : InstAlias<"bgectr $cc", (BCCTR 4, crrc:$cc)>;
2189def : InstAlias<"bnlctr $cc", (BCCTR 4, crrc:$cc)>;
2190def : InstAlias<"blectr $cc", (BCCTR 36, crrc:$cc)>;
2191def : InstAlias<"bngctr $cc", (BCCTR 36, crrc:$cc)>;
2192def : InstAlias<"bnectr $cc", (BCCTR 68, crrc:$cc)>;
2193def : InstAlias<"bnuctr $cc", (BCCTR 100, crrc:$cc)>;
2194def : InstAlias<"bnsctr $cc", (BCCTR 100, crrc:$cc)>;
2195
2196def : InstAlias<"bltctrl $cc", (BCCTRL 12, crrc:$cc)>;
2197def : InstAlias<"bgtctrl $cc", (BCCTRL 44, crrc:$cc)>;
2198def : InstAlias<"beqctrl $cc", (BCCTRL 76, crrc:$cc)>;
2199def : InstAlias<"bunctrl $cc", (BCCTRL 108, crrc:$cc)>;
2200def : InstAlias<"bsoctrl $cc", (BCCTRL 108, crrc:$cc)>;
2201def : InstAlias<"bgectrl $cc", (BCCTRL 4, crrc:$cc)>;
2202def : InstAlias<"bnlctrl $cc", (BCCTRL 4, crrc:$cc)>;
2203def : InstAlias<"blectrl $cc", (BCCTRL 36, crrc:$cc)>;
2204def : InstAlias<"bngctrl $cc", (BCCTRL 36, crrc:$cc)>;
2205def : InstAlias<"bnectrl $cc", (BCCTRL 68, crrc:$cc)>;
2206def : InstAlias<"bnuctrl $cc", (BCCTRL 100, crrc:$cc)>;
2207def : InstAlias<"bnsctrl $cc", (BCCTRL 100, crrc:$cc)>;
2208