blob: a7e050d779161b353d50bfae744d7a2b6a6d83e9 [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
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000165def SDT_PPCsc : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
166def PPCsc : SDNode<"PPCISD::SC", SDT_PPCsc,
167 [SDNPHasChain, SDNPSideEffect]>;
168
Chris Lattnera17b1552006-03-31 05:13:27 +0000169def PPCvcmp : SDNode<"PPCISD::VCMP" , SDT_PPCvcmp, []>;
Chris Lattner036609b2010-12-23 18:28:41 +0000170def PPCvcmp_o : SDNode<"PPCISD::VCMPo", SDT_PPCvcmp, [SDNPOutGlue]>;
Chris Lattner6d92cad2006-03-26 10:06:40 +0000171
Chris Lattner90564f22006-04-18 17:59:36 +0000172def PPCcondbranch : SDNode<"PPCISD::COND_BRANCH", SDT_PPCcondbr,
Chris Lattner036609b2010-12-23 18:28:41 +0000173 [SDNPHasChain, SDNPOptInGlue]>;
Chris Lattner90564f22006-04-18 17:59:36 +0000174
Chris Lattner9b37aaf2008-01-10 05:12:37 +0000175def PPClbrx : SDNode<"PPCISD::LBRX", SDT_PPClbrx,
176 [SDNPHasChain, SDNPMayLoad]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +0000177def PPCstbrx : SDNode<"PPCISD::STBRX", SDT_PPCstbrx,
178 [SDNPHasChain, SDNPMayStore]>;
Chris Lattnerd9989382006-07-10 20:56:58 +0000179
Hal Finkel82b38212012-08-28 02:10:27 +0000180// Instructions to set/unset CR bit 6 for SVR4 vararg calls
181def PPCcr6set : SDNode<"PPCISD::CR6SET", SDTNone,
182 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
183def PPCcr6unset : SDNode<"PPCISD::CR6UNSET", SDTNone,
184 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
185
Evan Cheng53301922008-07-12 02:23:19 +0000186// Instructions to support atomic operations
Evan Cheng8608f2e2008-04-19 02:30:38 +0000187def PPClarx : SDNode<"PPCISD::LARX", SDT_PPClarx,
188 [SDNPHasChain, SDNPMayLoad]>;
189def PPCstcx : SDNode<"PPCISD::STCX", SDT_PPCstcx,
190 [SDNPHasChain, SDNPMayStore]>;
Evan Cheng54fc97d2008-04-19 01:30:48 +0000191
Bill Schmidt53b0b0e2013-02-21 17:12:27 +0000192// Instructions to support medium and large code model
Bill Schmidt34a9d4b2012-11-27 17:35:46 +0000193def PPCaddisTocHA : SDNode<"PPCISD::ADDIS_TOC_HA", SDTIntBinOp, []>;
194def PPCldTocL : SDNode<"PPCISD::LD_TOC_L", SDTIntBinOp, [SDNPMayLoad]>;
195def PPCaddiTocL : SDNode<"PPCISD::ADDI_TOC_L", SDTIntBinOp, []>;
196
197
Jim Laskey2f616bf2006-11-16 22:43:37 +0000198// Instructions to support dynamic alloca.
199def SDTDynOp : SDTypeProfile<1, 2, []>;
200def PPCdynalloc : SDNode<"PPCISD::DYNALLOC", SDTDynOp, [SDNPHasChain]>;
201
Chris Lattner47f01f12005-09-08 19:50:41 +0000202//===----------------------------------------------------------------------===//
Chris Lattner2eb25172005-09-09 00:39:56 +0000203// PowerPC specific transformation functions and pattern fragments.
204//
Nate Begeman8d948322005-10-19 01:12:32 +0000205
Nate Begeman2d5aff72005-10-19 18:42:01 +0000206def SHL32 : SDNodeXForm<imm, [{
207 // Transformation function: 31 - imm
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000208 return getI32Imm(31 - N->getZExtValue());
Nate Begeman2d5aff72005-10-19 18:42:01 +0000209}]>;
210
Nate Begeman2d5aff72005-10-19 18:42:01 +0000211def SRL32 : SDNodeXForm<imm, [{
212 // Transformation function: 32 - imm
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000213 return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue()) : getI32Imm(0);
Nate Begeman2d5aff72005-10-19 18:42:01 +0000214}]>;
215
Chris Lattner2eb25172005-09-09 00:39:56 +0000216def LO16 : SDNodeXForm<imm, [{
217 // Transformation function: get the low 16 bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000218 return getI32Imm((unsigned short)N->getZExtValue());
Chris Lattner2eb25172005-09-09 00:39:56 +0000219}]>;
220
221def HI16 : SDNodeXForm<imm, [{
222 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000223 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Chris Lattner2eb25172005-09-09 00:39:56 +0000224}]>;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000225
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000226def HA16 : SDNodeXForm<imm, [{
227 // Transformation function: shift the immediate value down into the low bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000228 signed int Val = N->getZExtValue();
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000229 return getI32Imm((Val - (signed short)Val) >> 16);
230}]>;
Nate Begemanf42f1332006-09-22 05:01:56 +0000231def MB : SDNodeXForm<imm, [{
232 // Transformation function: get the start bit of a mask
Duncan Sandse79f5ef2008-10-16 13:02:33 +0000233 unsigned mb = 0, me;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000234 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000235 return getI32Imm(mb);
236}]>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000237
Nate Begemanf42f1332006-09-22 05:01:56 +0000238def ME : SDNodeXForm<imm, [{
239 // Transformation function: get the end bit of a mask
Duncan Sandse79f5ef2008-10-16 13:02:33 +0000240 unsigned mb, me = 0;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000241 (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000242 return getI32Imm(me);
243}]>;
244def maskimm32 : PatLeaf<(imm), [{
245 // maskImm predicate - True if immediate is a run of ones.
246 unsigned mb, me;
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000248 return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
Nate Begemanf42f1332006-09-22 05:01:56 +0000249 else
250 return false;
251}]>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +0000252
Bill Schmidt5cd01f72013-05-22 20:09:24 +0000253def imm32SExt16 : Operand<i32>, ImmLeaf<i32, [{
254 // imm32SExt16 predicate - True if the i32 immediate fits in a 16-bit
255 // sign extended field. Used by instructions like 'addi'.
256 return (int32_t)Imm == (short)Imm;
257}]>;
258def imm64SExt16 : Operand<i64>, ImmLeaf<i64, [{
259 // imm64SExt16 predicate - True if the i64 immediate fits in a 16-bit
260 // sign extended field. Used by instructions like 'addi'.
261 return (int64_t)Imm == (short)Imm;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000262}]>;
Chris Lattnerbfde0802005-09-08 17:40:49 +0000263def immZExt16 : PatLeaf<(imm), [{
264 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
265 // field. Used by instructions like 'ori'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000266 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000267}], LO16>;
268
Chris Lattner0ea70b22006-06-20 22:34:10 +0000269// imm16Shifted* - These match immediates where the low 16-bits are zero. There
270// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
271// identical in 32-bit mode, but in 64-bit mode, they return true if the
272// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
273// clear).
274def imm16ShiftedZExt : PatLeaf<(imm), [{
275 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
276 // immediate are set. Used by instructions like 'xoris'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000277 return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
Chris Lattner0ea70b22006-06-20 22:34:10 +0000278}], HI16>;
279
280def imm16ShiftedSExt : PatLeaf<(imm), [{
281 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
282 // immediate are set. Used by instructions like 'addis'. Identical to
283 // imm16ShiftedZExt in 32-bit mode.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000284 if (N->getZExtValue() & 0xFFFF) return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 if (N->getValueType(0) == MVT::i32)
Chris Lattnerdd583432006-06-20 21:39:30 +0000286 return true;
287 // For 64-bit, make sure it is sext right.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000288 return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000289}], HI16>;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000290
Hal Finkel08a215c2013-03-18 23:00:58 +0000291// Some r+i load/store instructions (such as LD, STD, LDU, etc.) that require
Ulrich Weigand347a5072013-05-16 17:58:02 +0000292// restricted memrix (4-aligned) constants are alignment sensitive. If these
Hal Finkel08a215c2013-03-18 23:00:58 +0000293// offsets are hidden behind TOC entries than the values of the lower-order
294// bits cannot be checked directly. As a result, we need to also incorporate
295// an alignment check into the relevant patterns.
296
297def aligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
298 return cast<LoadSDNode>(N)->getAlignment() >= 4;
299}]>;
300def aligned4store : PatFrag<(ops node:$val, node:$ptr),
301 (store node:$val, node:$ptr), [{
302 return cast<StoreSDNode>(N)->getAlignment() >= 4;
303}]>;
304def aligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
305 return cast<LoadSDNode>(N)->getAlignment() >= 4;
306}]>;
307def aligned4pre_store : PatFrag<
308 (ops node:$val, node:$base, node:$offset),
309 (pre_store node:$val, node:$base, node:$offset), [{
310 return cast<StoreSDNode>(N)->getAlignment() >= 4;
311}]>;
312
313def unaligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
314 return cast<LoadSDNode>(N)->getAlignment() < 4;
315}]>;
316def unaligned4store : PatFrag<(ops node:$val, node:$ptr),
317 (store node:$val, node:$ptr), [{
318 return cast<StoreSDNode>(N)->getAlignment() < 4;
319}]>;
320def unaligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
321 return cast<LoadSDNode>(N)->getAlignment() < 4;
322}]>;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000323
Chris Lattner47f01f12005-09-08 19:50:41 +0000324//===----------------------------------------------------------------------===//
325// PowerPC Flag Definitions.
326
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000327class isPPC64 { bit PPC64 = 1; }
Hal Finkel59857462013-04-12 18:17:57 +0000328class isDOT { bit RC = 1; }
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000329
Chris Lattner302bf9c2006-11-08 02:13:12 +0000330class RegConstraint<string C> {
331 string Constraints = C;
332}
Chris Lattner8e28b5c2006-11-15 23:24:18 +0000333class NoEncode<string E> {
334 string DisableEncoding = E;
335}
Chris Lattner47f01f12005-09-08 19:50:41 +0000336
337
338//===----------------------------------------------------------------------===//
339// PowerPC Operand Definitions.
Chris Lattner7bb424f2004-08-14 23:27:29 +0000340
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000341// In the default PowerPC assembler syntax, registers are specified simply
342// by number, so they cannot be distinguished from immediate values (without
343// looking at the opcode). This means that the default operand matching logic
344// for the asm parser does not work, and we need to specify custom matchers.
345// Since those can only be specified with RegisterOperand classes and not
346// directly on the RegisterClass, all instructions patterns used by the asm
347// parser need to use a RegisterOperand (instead of a RegisterClass) for
348// all their register operands.
349// For this purpose, we define one RegisterOperand for each RegisterClass,
350// using the same name as the class, just in lower case.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000351
Ulrich Weigand5e220752013-05-03 19:49:39 +0000352def PPCRegGPRCAsmOperand : AsmOperandClass {
353 let Name = "RegGPRC"; let PredicateMethod = "isRegNumber";
354}
355def gprc : RegisterOperand<GPRC> {
356 let ParserMatchClass = PPCRegGPRCAsmOperand;
357}
358def PPCRegG8RCAsmOperand : AsmOperandClass {
359 let Name = "RegG8RC"; let PredicateMethod = "isRegNumber";
360}
361def g8rc : RegisterOperand<G8RC> {
362 let ParserMatchClass = PPCRegG8RCAsmOperand;
363}
364def PPCRegGPRCNoR0AsmOperand : AsmOperandClass {
365 let Name = "RegGPRCNoR0"; let PredicateMethod = "isRegNumber";
366}
367def gprc_nor0 : RegisterOperand<GPRC_NOR0> {
368 let ParserMatchClass = PPCRegGPRCNoR0AsmOperand;
369}
370def PPCRegG8RCNoX0AsmOperand : AsmOperandClass {
371 let Name = "RegG8RCNoX0"; let PredicateMethod = "isRegNumber";
372}
373def g8rc_nox0 : RegisterOperand<G8RC_NOX0> {
374 let ParserMatchClass = PPCRegG8RCNoX0AsmOperand;
375}
376def PPCRegF8RCAsmOperand : AsmOperandClass {
377 let Name = "RegF8RC"; let PredicateMethod = "isRegNumber";
378}
379def f8rc : RegisterOperand<F8RC> {
380 let ParserMatchClass = PPCRegF8RCAsmOperand;
381}
382def PPCRegF4RCAsmOperand : AsmOperandClass {
383 let Name = "RegF4RC"; let PredicateMethod = "isRegNumber";
384}
385def f4rc : RegisterOperand<F4RC> {
386 let ParserMatchClass = PPCRegF4RCAsmOperand;
387}
388def PPCRegVRRCAsmOperand : AsmOperandClass {
389 let Name = "RegVRRC"; let PredicateMethod = "isRegNumber";
390}
391def vrrc : RegisterOperand<VRRC> {
392 let ParserMatchClass = PPCRegVRRCAsmOperand;
393}
394def PPCRegCRBITRCAsmOperand : AsmOperandClass {
395 let Name = "RegCRBITRC"; let PredicateMethod = "isRegNumber";
396}
397def crbitrc : RegisterOperand<CRBITRC> {
398 let ParserMatchClass = PPCRegCRBITRCAsmOperand;
399}
400def PPCRegCRRCAsmOperand : AsmOperandClass {
401 let Name = "RegCRRC"; let PredicateMethod = "isCCRegNumber";
402}
403def crrc : RegisterOperand<CRRC> {
404 let ParserMatchClass = PPCRegCRRCAsmOperand;
405}
406
407def PPCS5ImmAsmOperand : AsmOperandClass {
408 let Name = "S5Imm"; let PredicateMethod = "isS5Imm";
409 let RenderMethod = "addImmOperands";
410}
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000411def s5imm : Operand<i32> {
412 let PrintMethod = "printS5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000413 let ParserMatchClass = PPCS5ImmAsmOperand;
414}
415def PPCU5ImmAsmOperand : AsmOperandClass {
416 let Name = "U5Imm"; let PredicateMethod = "isU5Imm";
417 let RenderMethod = "addImmOperands";
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000418}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000419def u5imm : Operand<i32> {
Nate Begemanc3306122004-08-21 05:56:39 +0000420 let PrintMethod = "printU5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000421 let ParserMatchClass = PPCU5ImmAsmOperand;
422}
423def PPCU6ImmAsmOperand : AsmOperandClass {
424 let Name = "U6Imm"; let PredicateMethod = "isU6Imm";
425 let RenderMethod = "addImmOperands";
Nate Begemanc3306122004-08-21 05:56:39 +0000426}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000427def u6imm : Operand<i32> {
Nate Begeman07aada82004-08-30 02:28:06 +0000428 let PrintMethod = "printU6ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000429 let ParserMatchClass = PPCU6ImmAsmOperand;
430}
431def PPCS16ImmAsmOperand : AsmOperandClass {
432 let Name = "S16Imm"; let PredicateMethod = "isS16Imm";
433 let RenderMethod = "addImmOperands";
Nate Begeman07aada82004-08-30 02:28:06 +0000434}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000435def s16imm : Operand<i32> {
Nate Begemaned428532004-09-04 05:00:00 +0000436 let PrintMethod = "printS16ImmOperand";
Ulrich Weigand586f6d02013-05-23 22:48:06 +0000437 let EncoderMethod = "getS16ImmEncoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000438 let ParserMatchClass = PPCS16ImmAsmOperand;
439}
440def PPCU16ImmAsmOperand : AsmOperandClass {
441 let Name = "U16Imm"; let PredicateMethod = "isU16Imm";
442 let RenderMethod = "addImmOperands";
Nate Begemaned428532004-09-04 05:00:00 +0000443}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000444def u16imm : Operand<i32> {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000445 let PrintMethod = "printU16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000446 let ParserMatchClass = PPCU16ImmAsmOperand;
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000447}
Chris Lattner8d704112010-11-15 06:09:35 +0000448def directbrtarget : Operand<OtherVT> {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000449 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000450 let EncoderMethod = "getDirectBrEncoding";
451}
452def condbrtarget : Operand<OtherVT> {
Chris Lattnerb8efa6b2010-11-16 01:45:05 +0000453 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000454 let EncoderMethod = "getCondBrEncoding";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000455}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000456def calltarget : Operand<iPTR> {
Chris Lattner8d704112010-11-15 06:09:35 +0000457 let EncoderMethod = "getDirectBrEncoding";
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000458}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000459def aaddr : Operand<iPTR> {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000460 let PrintMethod = "printAbsAddrOperand";
461}
Ulrich Weigand5e220752013-05-03 19:49:39 +0000462def PPCCRBitMaskOperand : AsmOperandClass {
463 let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask";
Nate Begemaned428532004-09-04 05:00:00 +0000464}
Nate Begemanadeb43d2005-07-20 22:42:00 +0000465def crbitm: Operand<i8> {
466 let PrintMethod = "printcrbitm";
Chris Lattner7192eb82010-11-15 05:19:25 +0000467 let EncoderMethod = "get_crbitm_encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000468 let ParserMatchClass = PPCCRBitMaskOperand;
Nate Begemanadeb43d2005-07-20 22:42:00 +0000469}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000470// Address operands
Hal Finkela548afc2013-03-19 18:51:05 +0000471// A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
Ulrich Weigand5e220752013-05-03 19:49:39 +0000472def PPCRegGxRCNoR0Operand : AsmOperandClass {
473 let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber";
474}
475def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> {
476 let ParserMatchClass = PPCRegGxRCNoR0Operand;
477}
478// A version of ptr_rc usable with the asm parser.
479def PPCRegGxRCOperand : AsmOperandClass {
480 let Name = "RegGxRC"; let PredicateMethod = "isRegNumber";
481}
482def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> {
483 let ParserMatchClass = PPCRegGxRCOperand;
484}
Hal Finkela548afc2013-03-19 18:51:05 +0000485
Ulrich Weigand5e220752013-05-03 19:49:39 +0000486def PPCDispRIOperand : AsmOperandClass {
487 let Name = "DispRI"; let PredicateMethod = "isS16Imm";
Ulrich Weigand347a5072013-05-16 17:58:02 +0000488 let RenderMethod = "addImmOperands";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000489}
490def dispRI : Operand<iPTR> {
491 let ParserMatchClass = PPCDispRIOperand;
492}
493def PPCDispRIXOperand : AsmOperandClass {
494 let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4";
Ulrich Weigand347a5072013-05-16 17:58:02 +0000495 let RenderMethod = "addImmOperands";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000496}
497def dispRIX : Operand<iPTR> {
498 let ParserMatchClass = PPCDispRIXOperand;
499}
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000500
Chris Lattner059ca0f2006-06-16 21:01:35 +0000501def memri : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000502 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000503 let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
Chris Lattnerb7035d02010-11-15 08:22:03 +0000504 let EncoderMethod = "getMemRIEncoding";
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000505}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000506def memrr : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000507 let PrintMethod = "printMemRegReg";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000508 let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000509}
Ulrich Weigand347a5072013-05-16 17:58:02 +0000510def memrix : Operand<iPTR> { // memri where the imm is 4-aligned.
511 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000512 let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
Chris Lattner17e2c182010-11-15 08:02:41 +0000513 let EncoderMethod = "getMemRIXEncoding";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000514}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000515
Hal Finkel7ee74a62013-03-21 21:37:52 +0000516// A single-register address. This is used with the SjLj
517// pseudo-instructions.
518def memr : Operand<iPTR> {
519 let MIOperandInfo = (ops ptr_rc:$ptrreg);
520}
521
Ulrich Weigand3b255292013-03-26 10:53:27 +0000522// PowerPC Predicate operand.
523def pred : Operand<OtherVT> {
Chris Lattneraf53a872006-11-04 05:27:39 +0000524 let PrintMethod = "printPredicateOperand";
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000525 let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
Chris Lattneraf53a872006-11-04 05:27:39 +0000526}
Chris Lattner0638b262006-11-03 23:53:25 +0000527
Chris Lattnera613d262006-01-12 02:05:36 +0000528// Define PowerPC specific addressing mode.
Evan Chengaf9db752006-10-11 21:03:53 +0000529def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
530def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
531def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
Ulrich Weigand347a5072013-05-16 17:58:02 +0000532def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmX4", [], []>; // "std"
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000533
Hal Finkel7ee74a62013-03-21 21:37:52 +0000534// The address in a single register. This is used with the SjLj
535// pseudo-instructions.
536def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
537
Chris Lattner74531e42006-11-16 00:41:37 +0000538/// This is just the offset part of iaddr, used for preinc.
539def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +0000540
Evan Cheng8c75ef92005-12-14 22:07:12 +0000541//===----------------------------------------------------------------------===//
542// PowerPC Instruction Predicate Definitions.
Evan Cheng152b7e12007-10-23 06:42:42 +0000543def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
544def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Hal Finkelc6d08f12011-10-17 04:03:49 +0000545def IsBookE : Predicate<"PPCSubTarget.isBookE()">;
Chris Lattner6a5339b2006-11-14 18:44:47 +0000546
Chris Lattner47f01f12005-09-08 19:50:41 +0000547//===----------------------------------------------------------------------===//
Hal Finkel171a8ad2013-04-12 02:18:09 +0000548// PowerPC Multiclass Definitions.
549
550multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
551 string asmbase, string asmstr, InstrItinClass itin,
552 list<dag> pattern> {
553 let BaseName = asmbase in {
554 def NAME : XForm_6<opcode, xo, OOL, IOL,
555 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
556 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000557 let Defs = [CR0] in
558 def o : XForm_6<opcode, xo, OOL, IOL,
559 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
560 []>, isDOT, RecFormRel;
561 }
562}
563
564multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
565 string asmbase, string asmstr, InstrItinClass itin,
566 list<dag> pattern> {
567 let BaseName = asmbase in {
568 let Defs = [CARRY] in
569 def NAME : XForm_6<opcode, xo, OOL, IOL,
570 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
571 pattern>, RecFormRel;
572 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000573 def o : XForm_6<opcode, xo, OOL, IOL,
574 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
575 []>, isDOT, RecFormRel;
576 }
577}
578
579multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
580 string asmbase, string asmstr, InstrItinClass itin,
581 list<dag> pattern> {
582 let BaseName = asmbase in {
583 def NAME : XForm_10<opcode, xo, OOL, IOL,
584 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
585 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000586 let Defs = [CR0] in
587 def o : XForm_10<opcode, xo, OOL, IOL,
588 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
589 []>, isDOT, RecFormRel;
590 }
591}
592
593multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
594 string asmbase, string asmstr, InstrItinClass itin,
595 list<dag> pattern> {
596 let BaseName = asmbase in {
597 let Defs = [CARRY] in
598 def NAME : XForm_10<opcode, xo, OOL, IOL,
599 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
600 pattern>, RecFormRel;
601 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000602 def o : XForm_10<opcode, xo, OOL, IOL,
603 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
604 []>, isDOT, RecFormRel;
605 }
606}
607
608multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
609 string asmbase, string asmstr, InstrItinClass itin,
610 list<dag> pattern> {
611 let BaseName = asmbase in {
612 def NAME : XForm_11<opcode, xo, OOL, IOL,
613 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
614 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000615 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000616 def o : XForm_11<opcode, xo, OOL, IOL,
617 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
618 []>, isDOT, RecFormRel;
619 }
620}
621
622multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
623 string asmbase, string asmstr, InstrItinClass itin,
624 list<dag> pattern> {
625 let BaseName = asmbase in {
626 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
627 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
628 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000629 let Defs = [CR0] in
630 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
631 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
632 []>, isDOT, RecFormRel;
633 }
634}
635
636multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
637 string asmbase, string asmstr, InstrItinClass itin,
638 list<dag> pattern> {
639 let BaseName = asmbase in {
640 let Defs = [CARRY] in
641 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
642 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
643 pattern>, RecFormRel;
644 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000645 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
646 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
647 []>, isDOT, RecFormRel;
648 }
649}
650
651multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
652 string asmbase, string asmstr, InstrItinClass itin,
653 list<dag> pattern> {
654 let BaseName = asmbase in {
655 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
656 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
657 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000658 let Defs = [CR0] in
659 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
660 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
661 []>, isDOT, RecFormRel;
662 }
663}
664
665multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
666 string asmbase, string asmstr, InstrItinClass itin,
667 list<dag> pattern> {
668 let BaseName = asmbase in {
669 let Defs = [CARRY] in
670 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
671 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
672 pattern>, RecFormRel;
673 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000674 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
675 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
676 []>, isDOT, RecFormRel;
677 }
678}
679
680multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
681 string asmbase, string asmstr, InstrItinClass itin,
682 list<dag> pattern> {
683 let BaseName = asmbase in {
684 def NAME : MForm_2<opcode, OOL, IOL,
685 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
686 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000687 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000688 def o : MForm_2<opcode, OOL, IOL,
689 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
690 []>, isDOT, RecFormRel;
691 }
692}
693
694multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
695 string asmbase, string asmstr, InstrItinClass itin,
696 list<dag> pattern> {
697 let BaseName = asmbase in {
698 def NAME : MDForm_1<opcode, xo, OOL, IOL,
699 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
700 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000701 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000702 def o : MDForm_1<opcode, xo, OOL, IOL,
703 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
704 []>, isDOT, RecFormRel;
705 }
706}
707
Ulrich Weigand1adc97c2013-04-26 15:39:12 +0000708multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
709 string asmbase, string asmstr, InstrItinClass itin,
710 list<dag> pattern> {
711 let BaseName = asmbase in {
712 def NAME : MDSForm_1<opcode, xo, OOL, IOL,
713 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
714 pattern>, RecFormRel;
715 let Defs = [CR0] in
716 def o : MDSForm_1<opcode, xo, OOL, IOL,
717 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
718 []>, isDOT, RecFormRel;
719 }
720}
721
Hal Finkel59857462013-04-12 18:17:57 +0000722multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
723 string asmbase, string asmstr, InstrItinClass itin,
724 list<dag> pattern> {
Hal Finkel171a8ad2013-04-12 02:18:09 +0000725 let BaseName = asmbase in {
Hal Finkel59857462013-04-12 18:17:57 +0000726 let Defs = [CARRY] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000727 def NAME : XSForm_1<opcode, xo, OOL, IOL,
728 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
729 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000730 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000731 def o : XSForm_1<opcode, xo, OOL, IOL,
732 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
733 []>, isDOT, RecFormRel;
734 }
735}
736
737multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
738 string asmbase, string asmstr, InstrItinClass itin,
739 list<dag> pattern> {
740 let BaseName = asmbase in {
741 def NAME : XForm_26<opcode, xo, OOL, IOL,
742 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
743 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000744 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000745 def o : XForm_26<opcode, xo, OOL, IOL,
746 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000747 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000748 }
749}
750
751multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
752 string asmbase, string asmstr, InstrItinClass itin,
753 list<dag> pattern> {
754 let BaseName = asmbase in {
755 def NAME : AForm_1<opcode, xo, OOL, IOL,
756 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
757 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000758 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000759 def o : AForm_1<opcode, xo, OOL, IOL,
760 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000761 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000762 }
763}
764
765multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
766 string asmbase, string asmstr, InstrItinClass itin,
767 list<dag> pattern> {
768 let BaseName = asmbase in {
769 def NAME : AForm_2<opcode, xo, OOL, IOL,
770 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
771 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000772 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000773 def o : AForm_2<opcode, xo, OOL, IOL,
774 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000775 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000776 }
777}
778
779multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
780 string asmbase, string asmstr, InstrItinClass itin,
781 list<dag> pattern> {
782 let BaseName = asmbase in {
783 def NAME : AForm_3<opcode, xo, OOL, IOL,
784 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
785 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000786 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000787 def o : AForm_3<opcode, xo, OOL, IOL,
788 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000789 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000790 }
791}
792
793//===----------------------------------------------------------------------===//
Chris Lattner47f01f12005-09-08 19:50:41 +0000794// PowerPC Instruction Definitions.
795
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000796// Pseudo-instructions:
Chris Lattner47f01f12005-09-08 19:50:41 +0000797
Chris Lattner88d211f2006-03-12 09:13:49 +0000798let hasCtrlDep = 1 in {
Evan Cheng071a2792007-09-11 19:55:27 +0000799let Defs = [R1], Uses = [R1] in {
Will Schmidt91638152012-10-04 18:14:28 +0000800def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000801 [(callseq_start timm:$amt)]>;
Will Schmidt91638152012-10-04 18:14:28 +0000802def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000803 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000804}
Chris Lattner1877ec92006-03-13 21:52:10 +0000805
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000806def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +0000807 "UPDATE_VRSAVE $rD, $rS", []>;
Nate Begemanb816f022004-10-07 22:30:03 +0000808}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000809
Evan Cheng071a2792007-09-11 19:55:27 +0000810let Defs = [R1], Uses = [R1] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000811def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000812 [(set i32:$result,
813 (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
Jim Laskey2f616bf2006-11-16 22:43:37 +0000814
Dan Gohman533297b2009-10-29 18:10:34 +0000815// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
816// instruction selection into a branch sequence.
817let usesCustomInserter = 1, // Expanded after instruction selection.
Chris Lattner88d211f2006-03-12 09:13:49 +0000818 PPC970_Single = 1 in {
Hal Finkelab42ec22013-03-27 05:57:58 +0000819 // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
820 // because either operand might become the first operand in an isel, and
821 // that operand cannot be r0.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000822 def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
823 gprc_nor0:$T, gprc_nor0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000824 i32imm:$BROPC), "#SELECT_CC_I4",
Chris Lattner54689662006-09-27 02:55:21 +0000825 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000826 def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
827 g8rc_nox0:$T, g8rc_nox0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000828 i32imm:$BROPC), "#SELECT_CC_I8",
Chris Lattner54689662006-09-27 02:55:21 +0000829 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000830 def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000831 i32imm:$BROPC), "#SELECT_CC_F4",
Chris Lattner54689662006-09-27 02:55:21 +0000832 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000833 def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000834 i32imm:$BROPC), "#SELECT_CC_F8",
Chris Lattner54689662006-09-27 02:55:21 +0000835 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000836 def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000837 i32imm:$BROPC), "#SELECT_CC_VRRC",
Chris Lattner54689662006-09-27 02:55:21 +0000838 []>;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000839}
840
Bill Wendling7194aaf2008-03-03 22:19:16 +0000841// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
842// scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000843let mayStore = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000844def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000845 "#SPILL_CR", []>;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000846
Hal Finkeld21e9302011-12-06 20:55:36 +0000847// RESTORE_CR - Indicate that we're restoring the CR register (previously
848// spilled), so we'll need to scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000849let mayLoad = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000850def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000851 "#RESTORE_CR", []>;
Hal Finkeld21e9302011-12-06 20:55:36 +0000852
Evan Chengffbacca2007-07-21 00:34:19 +0000853let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Ulrich Weigand3b255292013-03-26 10:53:27 +0000854 let isReturn = 1, Uses = [LR, RM] in
855 def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", BrB,
856 [(retflag)]>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000857 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
Owen Anderson20ab2902007-11-12 07:39:39 +0000858 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000859
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000860 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000861 def BCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
862 "b${cond:cc}ctr ${cond:reg}", BrB, []>;
863 }
Chris Lattner47f01f12005-09-08 19:50:41 +0000864}
865
Chris Lattner7a823bd2005-02-15 20:26:49 +0000866let Defs = [LR] in
Will Schmidt91638152012-10-04 18:14:28 +0000867 def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
Chris Lattner88d211f2006-03-12 09:13:49 +0000868 PPC970_Unit_BRU;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000869
Evan Chengffbacca2007-07-21 00:34:19 +0000870let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Chris Lattner594f4c62006-10-13 19:10:34 +0000871 let isBarrier = 1 in {
Chris Lattner8d704112010-11-15 06:09:35 +0000872 def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
Chris Lattner1e484782005-12-04 18:42:54 +0000873 "b $dst", BrB,
874 [(br bb:$dst)]>;
Chris Lattner594f4c62006-10-13 19:10:34 +0000875 }
Chris Lattnerdd998852004-11-22 23:07:01 +0000876
Chris Lattner18258c62006-11-17 22:37:34 +0000877 // BCC represents an arbitrary conditional branch on a predicate.
878 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
Will Schmidtd8755332012-10-05 15:16:11 +0000879 // a two-value operand where a dag node expects two operands. :(
Hal Finkel5ee67e82013-04-08 16:24:03 +0000880 let isCodeGenOnly = 1 in {
Will Schmidtd8755332012-10-05 15:16:11 +0000881 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
882 "b${cond:cc} ${cond:reg}, $dst"
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000883 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
Hal Finkel5ee67e82013-04-08 16:24:03 +0000884 let isReturn = 1, Uses = [LR, RM] in
885 def BCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
886 "b${cond:cc}lr ${cond:reg}", BrB, []>;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000887
888 let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
889 def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
890 "bdzlr", BrB, []>;
891 def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
892 "bdnzlr", BrB, []>;
893 }
Hal Finkel5ee67e82013-04-08 16:24:03 +0000894 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000895
896 let Defs = [CTR], Uses = [CTR] in {
Ulrich Weigand18430432012-11-13 19:15:52 +0000897 def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
898 "bdz $dst">;
899 def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
900 "bdnz $dst">;
Hal Finkel99f823f2012-06-08 15:38:21 +0000901 }
Misha Brukmanb2edb442004-06-28 18:23:35 +0000902}
903
Hal Finkelcaeeb182013-04-04 22:55:54 +0000904// The unconditional BCL used by the SjLj setjmp code.
Ulrich Weigand3d386422013-03-26 10:57:16 +0000905let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000906 let Defs = [LR], Uses = [RM] in {
Hal Finkelcaeeb182013-04-04 22:55:54 +0000907 def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
908 "bcl 20, 31, $dst">;
Hal Finkel7ee74a62013-03-21 21:37:52 +0000909 }
910}
911
Roman Divackye46137f2012-03-06 16:41:49 +0000912let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
Misha Brukmanc661c302004-06-30 22:00:45 +0000913 // Convenient aliases for call instructions
Dale Johannesenb384ab92008-10-29 18:26:45 +0000914 let Uses = [RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000915 def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func),
916 "bl $func", BrB, []>; // See Pat patterns below.
917 def BLA : IForm<18, 1, 1, (outs), (ins aaddr:$func),
918 "bla $func", BrB, [(PPCcall (i32 imm:$func))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +0000919 }
920 let Uses = [CTR, RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000921 def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
922 "bctrl", BrB, [(PPCbctrl)]>,
923 Requires<[In32BitMode]>;
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000924
925 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000926 def BCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
927 "b${cond:cc}ctrl ${cond:reg}", BrB, []>;
Dale Johannesen639076f2008-10-23 20:41:28 +0000928 }
Chris Lattner9f0bc652007-02-25 05:34:32 +0000929}
930
Dale Johannesenb384ab92008-10-29 18:26:45 +0000931let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000932def TCRETURNdi :Pseudo< (outs),
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000933 (ins calltarget:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000934 "#TC_RETURNd $dst $offset",
935 []>;
936
937
Dale Johannesenb384ab92008-10-29 18:26:45 +0000938let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000939def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000940 "#TC_RETURNa $func $offset",
941 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
942
Dale Johannesenb384ab92008-10-29 18:26:45 +0000943let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000944def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000945 "#TC_RETURNr $dst $offset",
946 []>;
947
948
Ulrich Weigand3d386422013-03-26 10:57:16 +0000949let isCodeGenOnly = 1 in {
950
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000951let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000952 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000953def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
954 Requires<[In32BitMode]>;
955
956
957
958let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000959 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000960def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
961 "b $dst", BrB,
962 []>;
963
Ulrich Weigand3d386422013-03-26 10:57:16 +0000964}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000965
966let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000967 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000968def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
969 "ba $dst", BrB,
970 []>;
971
Ulrich Weigand3d386422013-03-26 10:57:16 +0000972let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000973 def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf),
Hal Finkel7ee74a62013-03-21 21:37:52 +0000974 "#EH_SJLJ_SETJMP32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000975 [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
Hal Finkel7ee74a62013-03-21 21:37:52 +0000976 Requires<[In32BitMode]>;
977 let isTerminator = 1 in
978 def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
979 "#EH_SJLJ_LONGJMP32",
980 [(PPCeh_sjlj_longjmp addr:$buf)]>,
981 Requires<[In32BitMode]>;
982}
983
Ulrich Weigand3d386422013-03-26 10:57:16 +0000984let isBranch = 1, isTerminator = 1 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000985 def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
986 "#EH_SjLj_Setup\t$dst", []>;
987}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000988
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000989// System call.
990let PPC970_Unit = 7 in {
991 def SC : SCForm<17, 1, (outs), (ins i32imm:$lev),
992 "sc $lev", BrB, [(PPCsc (i32 imm:$lev))]>;
993}
994
Chris Lattner001db452006-06-06 21:29:23 +0000995// DCB* instructions.
Evan Cheng64d80e32007-07-19 01:14:50 +0000996def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +0000997 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
998 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +0000999def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001000 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
1001 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001002def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001003 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
1004 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001005def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001006 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
1007 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001008def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001009 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
1010 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001011def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001012 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
1013 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001014def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001015 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
1016 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001017def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001018 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
1019 PPC970_DGroup_Single;
Chris Lattner26e552b2006-11-14 19:19:53 +00001020
Hal Finkel19aa2b52012-04-01 20:08:17 +00001021def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
1022 (DCBT xoaddr:$dst)>;
1023
Evan Cheng53301922008-07-12 02:23:19 +00001024// Atomic operations
Dan Gohman533297b2009-10-29 18:10:34 +00001025let usesCustomInserter = 1 in {
Jakob Stoklund Olesencf3a7482011-04-04 17:07:09 +00001026 let Defs = [CR0] in {
Dale Johannesen97efa362008-08-28 17:53:09 +00001027 def ATOMIC_LOAD_ADD_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001028 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001029 [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001030 def ATOMIC_LOAD_SUB_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001031 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001032 [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001033 def ATOMIC_LOAD_AND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001034 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001035 [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001036 def ATOMIC_LOAD_OR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001037 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001038 [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001039 def ATOMIC_LOAD_XOR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001040 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001041 [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001042 def ATOMIC_LOAD_NAND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001043 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001044 [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001045 def ATOMIC_LOAD_ADD_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001046 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001047 [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001048 def ATOMIC_LOAD_SUB_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001049 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001050 [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001051 def ATOMIC_LOAD_AND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001052 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001053 [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001054 def ATOMIC_LOAD_OR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001055 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001056 [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001057 def ATOMIC_LOAD_XOR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001058 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001059 [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001060 def ATOMIC_LOAD_NAND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001061 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001062 [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001063 def ATOMIC_LOAD_ADD_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001064 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001065 [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001066 def ATOMIC_LOAD_SUB_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001067 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001068 [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001069 def ATOMIC_LOAD_AND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001070 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001071 [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001072 def ATOMIC_LOAD_OR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001073 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001074 [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001075 def ATOMIC_LOAD_XOR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001076 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001077 [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001078 def ATOMIC_LOAD_NAND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001079 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001080 [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001081
Dale Johannesen97efa362008-08-28 17:53:09 +00001082 def ATOMIC_CMP_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001083 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001084 [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001085 def ATOMIC_CMP_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001086 (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 +00001087 [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001088 def ATOMIC_CMP_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001089 (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 +00001090 [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001091
Dale Johannesen97efa362008-08-28 17:53:09 +00001092 def ATOMIC_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001093 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001094 [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001095 def ATOMIC_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001096 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001097 [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen140a8bb2008-08-25 21:09:52 +00001098 def ATOMIC_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001099 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001100 [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001101 }
Evan Cheng54fc97d2008-04-19 01:30:48 +00001102}
1103
Evan Cheng53301922008-07-12 02:23:19 +00001104// Instructions to support atomic operations
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001105def LWARX : XForm_1<31, 20, (outs gprc:$rD), (ins memrr:$src),
Evan Cheng53301922008-07-12 02:23:19 +00001106 "lwarx $rD, $src", LdStLWARX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001107 [(set i32:$rD, (PPClarx xoaddr:$src))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001108
1109let Defs = [CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001110def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
Evan Cheng53301922008-07-12 02:23:19 +00001111 "stwcx. $rS, $dst", LdStSTWCX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001112 [(PPCstcx i32:$rS, xoaddr:$dst)]>,
Evan Cheng53301922008-07-12 02:23:19 +00001113 isDOT;
1114
Dan Gohmaneffc8c52010-05-14 16:46:02 +00001115let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
Hal Finkel20b529b2012-04-01 04:44:16 +00001116def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStLoad, [(trap)]>;
Nate Begeman1db3c922008-08-11 17:36:31 +00001117
Chris Lattner26e552b2006-11-14 19:19:53 +00001118//===----------------------------------------------------------------------===//
1119// PPC32 Load Instructions.
Nate Begeman07aada82004-08-30 02:28:06 +00001120//
Chris Lattner26e552b2006-11-14 19:19:53 +00001121
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001122// Unindexed (r+i) Loads.
Dan Gohman15511cf2008-12-03 18:15:48 +00001123let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001124def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001125 "lbz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001126 [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001127def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001128 "lha $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001129 [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
Chris Lattnerfd977342006-03-13 05:15:10 +00001130 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001131def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001132 "lhz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001133 [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001134def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001135 "lwz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001136 [(set i32:$rD, (load iaddr:$src))]>;
Chris Lattner302bf9c2006-11-08 02:13:12 +00001137
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001138def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001139 "lfs $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001140 [(set f32:$rD, (load iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001141def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
Chris Lattner4eab7142006-11-10 02:08:47 +00001142 "lfd $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001143 [(set f64:$rD, (load iaddr:$src))]>;
Chris Lattner4eab7142006-11-10 02:08:47 +00001144
Chris Lattner4eab7142006-11-10 02:08:47 +00001145
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001146// Unindexed (r+i) Loads with Update (preinc).
Hal Finkelfa1d1022013-04-07 05:46:58 +00001147let mayLoad = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001148def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001149 "lbzu $rD, $addr", LdStLoadUpd,
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 LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001154 "lhau $rD, $addr", LdStLHAU,
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 LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001159 "lhzu $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 LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001164 "lwzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001165 []>, RegConstraint<"$addr.reg = $ea_result">,
1166 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001167
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001168def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001169 "lfsu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001170 []>, RegConstraint<"$addr.reg = $ea_result">,
1171 NoEncode<"$ea_result">;
1172
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001173def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001174 "lfdu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001175 []>, RegConstraint<"$addr.reg = $ea_result">,
1176 NoEncode<"$ea_result">;
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001177
1178
1179// Indexed (r+r) Loads with Update (preinc).
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001180def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001181 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001182 "lbzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001183 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001184 NoEncode<"$ea_result">;
1185
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001186def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001187 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001188 "lhaux $rD, $addr", LdStLHAU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001189 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001190 NoEncode<"$ea_result">;
1191
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001192def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001193 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001194 "lhzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001195 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001196 NoEncode<"$ea_result">;
1197
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001198def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001199 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001200 "lwzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001201 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001202 NoEncode<"$ea_result">;
1203
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001204def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001205 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001206 "lfsux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001207 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001208 NoEncode<"$ea_result">;
1209
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001210def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001211 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001212 "lfdux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001213 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001214 NoEncode<"$ea_result">;
Nate Begemanb816f022004-10-07 22:30:03 +00001215}
Dan Gohman41474ba2008-12-03 02:30:17 +00001216}
Chris Lattner302bf9c2006-11-08 02:13:12 +00001217
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001218// Indexed (r+r) Loads.
Chris Lattner26e552b2006-11-14 19:19:53 +00001219//
Dan Gohman15511cf2008-12-03 18:15:48 +00001220let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001221def LBZX : XForm_1<31, 87, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001222 "lbzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001223 [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001224def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
Chris Lattner26e552b2006-11-14 19:19:53 +00001225 "lhax $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001226 [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001227 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001228def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001229 "lhzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001230 [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001231def LWZX : XForm_1<31, 23, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001232 "lwzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001233 [(set i32:$rD, (load xaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001234
1235
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001236def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001237 "lhbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001238 [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001239def LWBRX : XForm_1<31, 534, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001240 "lwbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001241 [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001242
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001243def LFSX : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001244 "lfsx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001245 [(set f32:$frD, (load xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001246def LFDX : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001247 "lfdx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001248 [(set f64:$frD, (load xaddr:$src))]>;
Hal Finkel8049ab12013-03-31 10:12:51 +00001249
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001250def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8049ab12013-03-31 10:12:51 +00001251 "lfiwax $frD, $src", LdStLFD,
1252 [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001253def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel46479192013-04-01 17:52:07 +00001254 "lfiwzx $frD, $src", LdStLFD,
1255 [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001256}
1257
1258//===----------------------------------------------------------------------===//
1259// PPC32 Store Instructions.
1260//
1261
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001262// Unindexed (r+i) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001263let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001264def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001265 "stb $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001266 [(truncstorei8 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001267def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001268 "sth $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001269 [(truncstorei16 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001270def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001271 "stw $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001272 [(store i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001273def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001274 "stfs $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001275 [(store f32:$rS, iaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001276def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001277 "stfd $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001278 [(store f64:$rS, iaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001279}
1280
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001281// Unindexed (r+i) Stores with Update (preinc).
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001282let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001283def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001284 "stbu $rS, $dst", LdStStoreUpd, []>,
1285 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001286def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001287 "sthu $rS, $dst", LdStStoreUpd, []>,
1288 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001289def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001290 "stwu $rS, $dst", LdStStoreUpd, []>,
1291 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001292def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001293 "stfsu $rS, $dst", LdStSTFDU, []>,
1294 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001295def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001296 "stfdu $rS, $dst", LdStSTFDU, []>,
1297 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001298}
1299
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001300// Patterns to match the pre-inc stores. We can't put the patterns on
1301// the instruction definitions directly as ISel wants the address base
1302// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001303def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1304 (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1305def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1306 (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1307def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1308 (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1309def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1310 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1311def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1312 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001313
Chris Lattner26e552b2006-11-14 19:19:53 +00001314// Indexed (r+r) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001315let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001316def STBX : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001317 "stbx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001318 [(truncstorei8 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001319 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001320def STHX : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001321 "sthx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001322 [(truncstorei16 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001323 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001324def STWX : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001325 "stwx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001326 [(store i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001327 PPC970_DGroup_Cracked;
Hal Finkelac81cc32012-06-19 02:34:32 +00001328
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001329def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001330 "sthbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001331 [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001332 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001333def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001334 "stwbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001335 [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001336 PPC970_DGroup_Cracked;
1337
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001338def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001339 "stfiwx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001340 [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001341
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001342def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001343 "stfsx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001344 [(store f32:$frS, xaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001345def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001346 "stfdx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001347 [(store f64:$frS, xaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001348}
1349
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001350// Indexed (r+r) Stores with Update (preinc).
1351let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001352def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001353 "stbux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001354 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001355 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001356def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001357 "sthux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001358 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001359 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001360def STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001361 "stwux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001362 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001363 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001364def STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001365 "stfsux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001366 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001367 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001368def STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001369 "stfdux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001370 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001371 PPC970_DGroup_Cracked;
1372}
1373
1374// Patterns to match the pre-inc stores. We can't put the patterns on
1375// the instruction definitions directly as ISel wants the address base
1376// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001377def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1378 (STBUX $rS, $ptrreg, $ptroff)>;
1379def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1380 (STHUX $rS, $ptrreg, $ptroff)>;
1381def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1382 (STWUX $rS, $ptrreg, $ptroff)>;
1383def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1384 (STFSUX $rS, $ptrreg, $ptroff)>;
1385def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1386 (STFDUX $rS, $ptrreg, $ptroff)>;
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001387
Dale Johannesenf87d6c02008-08-22 17:20:54 +00001388def SYNC : XForm_24_sync<31, 598, (outs), (ins),
1389 "sync", LdStSync,
1390 [(int_ppc_sync)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001391
1392//===----------------------------------------------------------------------===//
1393// PPC32 Arithmetic Instructions.
1394//
Chris Lattner302bf9c2006-11-08 02:13:12 +00001395
Chris Lattner88d211f2006-03-12 09:13:49 +00001396let PPC970_Unit = 1 in { // FXU Operations.
Ulrich Weigand586f6d02013-05-23 22:48:06 +00001397def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001398 "addi $rD, $rA, $imm", IntSimple,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001399 [(set i32:$rD, (add i32:$rA, imm32SExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001400let BaseName = "addic" in {
1401let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001402def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001403 "addic $rD, $rA, $imm", IntGeneral,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001404 [(set i32:$rD, (addc i32:$rA, imm32SExt16:$imm))]>,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001405 RecFormRel, PPC970_DGroup_Cracked;
Hal Finkel59857462013-04-12 18:17:57 +00001406let Defs = [CARRY, CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001407def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001408 "addic. $rD, $rA, $imm", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001409 []>, isDOT, RecFormRel;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001410}
Ulrich Weigand586f6d02013-05-23 22:48:06 +00001411def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001412 "addis $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001413 [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
Ulrich Weigand3d386422013-03-26 10:57:16 +00001414let isCodeGenOnly = 1 in
Ulrich Weigand586f6d02013-05-23 22:48:06 +00001415def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, s16imm:$sym),
Jim Laskey53842142005-10-19 19:51:16 +00001416 "la $rD, $sym($rA)", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001417 [(set i32:$rD, (add i32:$rA,
Chris Lattner490ad082005-11-17 17:52:01 +00001418 (PPClo tglobaladdr:$sym, 0)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001419def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001420 "mulli $rD, $rA, $imm", IntMulLI,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001421 [(set i32:$rD, (mul i32:$rA, imm32SExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001422let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001423def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001424 "subfic $rD, $rA, $imm", IntGeneral,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001425 [(set i32:$rD, (subc imm32SExt16:$imm, i32:$rA))]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001426
Hal Finkelf3c38282012-08-28 02:10:33 +00001427let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
Ulrich Weigand586f6d02013-05-23 22:48:06 +00001428 def LI : DForm_2_r0<14, (outs gprc:$rD), (ins s16imm:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001429 "li $rD, $imm", IntSimple,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001430 [(set i32:$rD, imm32SExt16:$imm)]>;
Ulrich Weigand586f6d02013-05-23 22:48:06 +00001431 def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins s16imm:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001432 "lis $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001433 [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001434}
Chris Lattner88d211f2006-03-12 09:13:49 +00001435}
Chris Lattner26e552b2006-11-14 19:19:53 +00001436
Chris Lattner88d211f2006-03-12 09:13:49 +00001437let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel59857462013-04-12 18:17:57 +00001438let Defs = [CR0] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001439def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001440 "andi. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001441 [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001442 isDOT;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001443def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001444 "andis. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001445 [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001446 isDOT;
Hal Finkel59857462013-04-12 18:17:57 +00001447}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001448def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001449 "ori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001450 [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001451def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001452 "oris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001453 [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001454def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001455 "xori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001456 [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001457def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001458 "xoris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001459 [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
Hal Finkel16803092012-06-12 19:01:24 +00001460def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntSimple,
Nate Begeman09761222005-12-09 23:54:18 +00001461 []>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001462let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001463 def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001464 "cmpwi $crD, $rA, $imm", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001465 def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001466 "cmplwi $dst, $src1, $src2", IntCompare>;
1467}
Chris Lattner88d211f2006-03-12 09:13:49 +00001468}
Nate Begemaned428532004-09-04 05:00:00 +00001469
Hal Finkel171a8ad2013-04-12 02:18:09 +00001470let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001471defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001472 "nand", "$rA, $rS, $rB", IntSimple,
1473 [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001474defm AND : XForm_6r<31, 28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001475 "and", "$rA, $rS, $rB", IntSimple,
1476 [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001477defm ANDC : XForm_6r<31, 60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001478 "andc", "$rA, $rS, $rB", IntSimple,
1479 [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001480defm OR : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001481 "or", "$rA, $rS, $rB", IntSimple,
1482 [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001483defm NOR : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001484 "nor", "$rA, $rS, $rB", IntSimple,
1485 [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001486defm ORC : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001487 "orc", "$rA, $rS, $rB", IntSimple,
1488 [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001489defm EQV : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001490 "eqv", "$rA, $rS, $rB", IntSimple,
1491 [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001492defm XOR : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001493 "xor", "$rA, $rS, $rB", IntSimple,
1494 [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001495defm SLW : XForm_6r<31, 24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001496 "slw", "$rA, $rS, $rB", IntGeneral,
1497 [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001498defm SRW : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001499 "srw", "$rA, $rS, $rB", IntGeneral,
1500 [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001501defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001502 "sraw", "$rA, $rS, $rB", IntShift,
1503 [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001504}
Chris Lattner26e552b2006-11-14 19:19:53 +00001505
Chris Lattner88d211f2006-03-12 09:13:49 +00001506let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001507let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001508defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
Hal Finkel59857462013-04-12 18:17:57 +00001509 "srawi", "$rA, $rS, $SH", IntShift,
1510 [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001511defm CNTLZW : XForm_11r<31, 26, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001512 "cntlzw", "$rA, $rS", IntGeneral,
1513 [(set i32:$rA, (ctlz i32:$rS))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001514defm EXTSB : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001515 "extsb", "$rA, $rS", IntSimple,
1516 [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001517defm EXTSH : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001518 "extsh", "$rA, $rS", IntSimple,
1519 [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1520}
Hal Finkel00e86ad2013-04-15 02:37:46 +00001521let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001522 def CMPW : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001523 "cmpw $crD, $rA, $rB", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001524 def CMPLW : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001525 "cmplw $crD, $rA, $rB", IntCompare>;
1526}
Chris Lattner88d211f2006-03-12 09:13:49 +00001527}
1528let PPC970_Unit = 3 in { // FPU Operations.
Evan Cheng64d80e32007-07-19 01:14:50 +00001529//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Jim Laskey53842142005-10-19 19:51:16 +00001530// "fcmpo $crD, $fA, $fB", FPCompare>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001531let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001532 def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001533 "fcmpu $crD, $fA, $fB", FPCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001534 def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001535 "fcmpu $crD, $fA, $fB", FPCompare>;
1536}
Chris Lattner26e552b2006-11-14 19:19:53 +00001537
Dale Johannesenb384ab92008-10-29 18:26:45 +00001538let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001539 let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001540 defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001541 "fctiwz", "$frD, $frB", FPGeneral,
1542 [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001543
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001544 defm FRSP : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001545 "frsp", "$frD, $frB", FPGeneral,
1546 [(set f32:$frD, (fround f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001547
1548 // The frin -> nearbyint mapping is valid only in fast-math mode.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001549 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001550 defm FRIND : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001551 "frin", "$frD, $frB", FPGeneral,
1552 [(set f64:$frD, (fnearbyint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001553 defm FRINS : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001554 "frin", "$frD, $frB", FPGeneral,
1555 [(set f32:$frD, (fnearbyint f32:$frB))]>;
1556 }
Hal Finkelf5d5c432013-03-29 08:57:48 +00001557
Hal Finkel0882fd62013-03-29 19:41:55 +00001558 // These pseudos expand to rint but also set FE_INEXACT when the result does
1559 // not equal the argument.
1560 let usesCustomInserter = 1, Defs = [RM] in { // FIXME: Model FPSCR!
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001561 def FRINDrint : Pseudo<(outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001562 "#FRINDrint", [(set f64:$frD, (frint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001563 def FRINSrint : Pseudo<(outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001564 "#FRINSrint", [(set f32:$frD, (frint f32:$frB))]>;
1565 }
1566
Hal Finkel171a8ad2013-04-12 02:18:09 +00001567 let neverHasSideEffects = 1 in {
1568 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001569 defm FRIPD : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001570 "frip", "$frD, $frB", FPGeneral,
1571 [(set f64:$frD, (fceil f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001572 defm FRIPS : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001573 "frip", "$frD, $frB", FPGeneral,
1574 [(set f32:$frD, (fceil f32:$frB))]>;
1575 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001576 defm FRIZD : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001577 "friz", "$frD, $frB", FPGeneral,
1578 [(set f64:$frD, (ftrunc f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001579 defm FRIZS : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001580 "friz", "$frD, $frB", FPGeneral,
1581 [(set f32:$frD, (ftrunc f32:$frB))]>;
1582 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001583 defm FRIMD : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001584 "frim", "$frD, $frB", FPGeneral,
1585 [(set f64:$frD, (ffloor f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001586 defm FRIMS : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001587 "frim", "$frD, $frB", FPGeneral,
1588 [(set f32:$frD, (ffloor f32:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001589
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001590 defm FSQRT : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001591 "fsqrt", "$frD, $frB", FPSqrt,
1592 [(set f64:$frD, (fsqrt f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001593 defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001594 "fsqrts", "$frD, $frB", FPSqrt,
1595 [(set f32:$frD, (fsqrt f32:$frB))]>;
1596 }
Dale Johannesenb384ab92008-10-29 18:26:45 +00001597 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001598}
Chris Lattner919c0322005-10-01 01:35:02 +00001599
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001600/// Note that FMR is defined as pseudo-ops on the PPC970 because they are
Chris Lattner9d5da1d2006-03-24 07:12:19 +00001601/// often coalesced away and we don't want the dispatch group builder to think
Chris Lattner88d211f2006-03-12 09:13:49 +00001602/// that they will fill slots (which could cause the load of a LSU reject to
1603/// sneak into a d-group with a store).
Hal Finkelfa1cac22013-04-07 04:56:16 +00001604let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001605defm FMR : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001606 "fmr", "$frD, $frB", FPGeneral,
1607 []>, // (set f32:$frD, f32:$frB)
1608 PPC970_Unit_Pseudo;
Chris Lattner919c0322005-10-01 01:35:02 +00001609
Hal Finkel171a8ad2013-04-12 02:18:09 +00001610let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Chris Lattner919c0322005-10-01 01:35:02 +00001611// These are artificially split into two different forms, for 4/8 byte FP.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001612defm FABSS : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001613 "fabs", "$frD, $frB", FPGeneral,
1614 [(set f32:$frD, (fabs f32:$frB))]>;
1615let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001616defm FABSD : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001617 "fabs", "$frD, $frB", FPGeneral,
1618 [(set f64:$frD, (fabs f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001619defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001620 "fnabs", "$frD, $frB", FPGeneral,
1621 [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
1622let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001623defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001624 "fnabs", "$frD, $frB", FPGeneral,
1625 [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001626defm FNEGS : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001627 "fneg", "$frD, $frB", FPGeneral,
1628 [(set f32:$frD, (fneg f32:$frB))]>;
1629let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001630defm FNEGD : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001631 "fneg", "$frD, $frB", FPGeneral,
1632 [(set f64:$frD, (fneg f64:$frB))]>;
Hal Finkel827307b2013-04-03 04:01:11 +00001633
1634// Reciprocal estimates.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001635defm FRE : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001636 "fre", "$frD, $frB", FPGeneral,
1637 [(set f64:$frD, (PPCfre f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001638defm FRES : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001639 "fres", "$frD, $frB", FPGeneral,
1640 [(set f32:$frD, (PPCfre f32:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001641defm FRSQRTE : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001642 "frsqrte", "$frD, $frB", FPGeneral,
1643 [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001644defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001645 "frsqrtes", "$frD, $frB", FPGeneral,
1646 [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001647}
Nate Begeman6b3dc552004-08-29 22:45:13 +00001648
Nate Begeman07aada82004-08-30 02:28:06 +00001649// XL-Form instructions. condition register logical ops.
1650//
Hal Finkelaecbe242013-04-07 05:16:57 +00001651let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001652def MCRF : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
Chris Lattner88d211f2006-03-12 09:13:49 +00001653 "mcrf $BF, $BFA", BrMCR>,
1654 PPC970_DGroup_First, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001655
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001656def CREQV : XLForm_1<19, 289, (outs crbitrc:$CRD),
1657 (ins crbitrc:$CRA, crbitrc:$CRB),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001658 "creqv $CRD, $CRA, $CRB", BrCR,
1659 []>;
1660
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001661def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
1662 (ins crbitrc:$CRA, crbitrc:$CRB),
Nicolas Geoffray0404cd92008-03-10 14:12:10 +00001663 "cror $CRD, $CRA, $CRB", BrCR,
1664 []>;
1665
Ulrich Weigand3d386422013-03-26 10:57:16 +00001666let isCodeGenOnly = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001667def CRSET : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001668 "creqv $dst, $dst, $dst", BrCR,
1669 []>;
1670
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001671def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
Roman Divacky0aaa9192011-08-30 17:04:16 +00001672 "crxor $dst, $dst, $dst", BrCR,
1673 []>;
1674
Hal Finkel82b38212012-08-28 02:10:27 +00001675let Defs = [CR1EQ], CRD = 6 in {
1676def CR6SET : XLForm_1_ext<19, 289, (outs), (ins),
1677 "creqv 6, 6, 6", BrCR,
1678 [(PPCcr6set)]>;
1679
1680def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
1681 "crxor 6, 6, 6", BrCR,
1682 [(PPCcr6unset)]>;
1683}
Ulrich Weigand3d386422013-03-26 10:57:16 +00001684}
Hal Finkel82b38212012-08-28 02:10:27 +00001685
Chris Lattner88d211f2006-03-12 09:13:49 +00001686// XFX-Form instructions. Instructions that deal with SPRs.
Nate Begeman07aada82004-08-30 02:28:06 +00001687//
Dale Johannesen639076f2008-10-23 20:41:28 +00001688let Uses = [CTR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001689def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001690 "mfctr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001691 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001692}
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001693let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001694def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001695 "mtctr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001696 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001697}
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00001698let hasSideEffects = 1, isCodeGenOnly = 1, Defs = [CTR] in {
1699let Pattern = [(int_ppc_mtctr i32:$rS)] in
Hal Finkel85c08b02013-05-20 16:08:37 +00001700def MTCTRloop : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
1701 "mtctr $rS", SprMTSPR>,
1702 PPC970_DGroup_First, PPC970_Unit_FXU;
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00001703}
Chris Lattner1877ec92006-03-13 21:52:10 +00001704
Dale Johannesen639076f2008-10-23 20:41:28 +00001705let Defs = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001706def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001707 "mtlr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001708 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001709}
1710let Uses = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001711def MFLR : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001712 "mflr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001713 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001714}
Chris Lattner1877ec92006-03-13 21:52:10 +00001715
1716// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1717// a GPR on the PPC970. As such, copies in and out have the same performance
1718// characteristics as an OR instruction.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001719def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +00001720 "mtspr 256, $rS", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001721 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001722def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
Chris Lattner1877ec92006-03-13 21:52:10 +00001723 "mfspr $rT, 256", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001724 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattner1877ec92006-03-13 21:52:10 +00001725
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001726let isCodeGenOnly = 1 in {
1727 def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001728 (outs VRSAVERC:$reg), (ins gprc:$rS),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001729 "mtspr 256, $rS", IntGeneral>,
1730 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001731 def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001732 (ins VRSAVERC:$reg),
1733 "mfspr $rT, 256", IntGeneral>,
1734 PPC970_DGroup_First, PPC970_Unit_FXU;
1735}
1736
1737// SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
1738// so we'll need to scavenge a register for it.
1739let mayStore = 1 in
1740def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
1741 "#SPILL_VRSAVE", []>;
1742
1743// RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
1744// spilled), so we'll need to scavenge a register for it.
1745let mayLoad = 1 in
1746def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
1747 "#RESTORE_VRSAVE", []>;
1748
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001749let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001750def MTCRF : XFXForm_5<31, 144, (outs crbitm:$FXM), (ins gprc:$rS),
Chris Lattner88d211f2006-03-12 09:13:49 +00001751 "mtcrf $FXM, $rS", BrMCRX>,
1752 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen5f07d522010-05-20 17:48:26 +00001753
1754// This is a pseudo for MFCR, which implicitly uses all 8 of its subregisters;
1755// declaring that here gives the local register allocator problems with this:
Dale Johannesenb384ab92008-10-29 18:26:45 +00001756// vreg = MCRF CR0
1757// MFCR <kill of whatever preg got assigned to vreg>
Dale Johannesen5f07d522010-05-20 17:48:26 +00001758// while not declaring it breaks DeadMachineInstructionElimination.
1759// As it turns out, in all cases where we currently use this,
1760// we're only interested in one subregister of it. Represent this in the
1761// instruction to keep the register allocator from becoming confused.
Chris Lattner2ead4582010-11-14 22:03:15 +00001762//
1763// FIXME: Make this a real Pseudo instruction when the JIT switches to MC.
Ulrich Weigand3d386422013-03-26 10:57:16 +00001764let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001765def MFCRpseud: XFXForm_3<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Will Schmidt91638152012-10-04 18:14:28 +00001766 "#MFCRpseud", SprMFCR>,
Chris Lattner6d92cad2006-03-26 10:06:40 +00001767 PPC970_MicroCode, PPC970_Unit_CRU;
Chris Lattner2ead4582010-11-14 22:03:15 +00001768
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001769def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Hal Finkel0a1852b2012-06-11 15:43:15 +00001770 "mfocrf $rT, $FXM", SprMFCR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001771 PPC970_DGroup_First, PPC970_Unit_CRU;
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001772} // neverHasSideEffects = 1
1773
Hal Finkel63496f62013-04-13 23:06:15 +00001774let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001775def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001776 "mfcr $rT", SprMFCR>,
1777 PPC970_MicroCode, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001778
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001779// Pseudo instruction to perform FADD in round-to-zero mode.
1780let usesCustomInserter = 1, Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001781 def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001782 [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
1783}
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001784
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001785// The above pseudo gets expanded to make use of the following instructions
1786// to manipulate FPSCR. Note that FPSCR is not modeled at the DAG level.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001787let Uses = [RM], Defs = [RM] in {
1788 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001789 "mtfsb0 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001790 PPC970_DGroup_Single, PPC970_Unit_FPU;
1791 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001792 "mtfsb1 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001793 PPC970_DGroup_Single, PPC970_Unit_FPU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001794 def MTFSF : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001795 "mtfsf $FM, $rT", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001796 PPC970_DGroup_Single, PPC970_Unit_FPU;
1797}
1798let Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001799 def MFFS : XForm_42<63, 583, (outs f8rc:$rT), (ins),
Dale Johannesenb384ab92008-10-29 18:26:45 +00001800 "mffs $rT", IntMFFS,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001801 [(set f64:$rT, (PPCmffs))]>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001802 PPC970_DGroup_Single, PPC970_Unit_FPU;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001803}
1804
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001805
Hal Finkel171a8ad2013-04-12 02:18:09 +00001806let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Nate Begeman07aada82004-08-30 02:28:06 +00001807// XO-Form instructions. Arithmetic instructions that can set overflow bit
1808//
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001809defm ADD4 : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001810 "add", "$rT, $rA, $rB", IntSimple,
1811 [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001812defm ADDC : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001813 "addc", "$rT, $rA, $rB", IntGeneral,
1814 [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
1815 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001816defm DIVW : XOForm_1r<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001817 "divw", "$rT, $rA, $rB", IntDivW,
1818 [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>,
1819 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001820defm DIVWU : XOForm_1r<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001821 "divwu", "$rT, $rA, $rB", IntDivW,
1822 [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>,
1823 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001824defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001825 "mulhw", "$rT, $rA, $rB", IntMulHW,
1826 [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001827defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001828 "mulhwu", "$rT, $rA, $rB", IntMulHWU,
1829 [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001830defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001831 "mullw", "$rT, $rA, $rB", IntMulHW,
1832 [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001833defm SUBF : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001834 "subf", "$rT, $rA, $rB", IntGeneral,
1835 [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001836defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001837 "subfc", "$rT, $rA, $rB", IntGeneral,
1838 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
1839 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001840defm NEG : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001841 "neg", "$rT, $rA", IntSimple,
1842 [(set i32:$rT, (ineg i32:$rA))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001843let Uses = [CARRY] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001844defm ADDE : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001845 "adde", "$rT, $rA, $rB", IntGeneral,
1846 [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001847defm ADDME : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001848 "addme", "$rT, $rA", IntGeneral,
1849 [(set i32:$rT, (adde i32:$rA, -1))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001850defm ADDZE : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001851 "addze", "$rT, $rA", IntGeneral,
1852 [(set i32:$rT, (adde i32:$rA, 0))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001853defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001854 "subfe", "$rT, $rA, $rB", IntGeneral,
1855 [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001856defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001857 "subfme", "$rT, $rA", IntGeneral,
1858 [(set i32:$rT, (sube -1, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001859defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001860 "subfze", "$rT, $rA", IntGeneral,
1861 [(set i32:$rT, (sube 0, i32:$rA))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001862}
Dale Johannesen8dffc812009-09-18 20:15:22 +00001863}
Nate Begeman07aada82004-08-30 02:28:06 +00001864
1865// A-Form instructions. Most of the instructions executed in the FPU are of
1866// this type.
1867//
Hal Finkel171a8ad2013-04-12 02:18:09 +00001868let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001869let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001870 defm FMADD : AForm_1r<63, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001871 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001872 "fmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001873 [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001874 defm FMADDS : AForm_1r<59, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001875 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001876 "fmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001877 [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001878 defm FMSUB : AForm_1r<63, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001879 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001880 "fmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001881 [(set f64:$FRT,
1882 (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001883 defm FMSUBS : AForm_1r<59, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001884 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001885 "fmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001886 [(set f32:$FRT,
1887 (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001888 defm FNMADD : AForm_1r<63, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001889 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001890 "fnmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001891 [(set f64:$FRT,
1892 (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001893 defm FNMADDS : AForm_1r<59, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001894 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001895 "fnmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001896 [(set f32:$FRT,
1897 (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001898 defm FNMSUB : AForm_1r<63, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001899 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001900 "fnmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001901 [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
1902 (fneg f64:$FRB))))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001903 defm FNMSUBS : AForm_1r<59, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001904 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001905 "fnmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001906 [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
1907 (fneg f32:$FRB))))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001908}
Chris Lattner43f07a42005-10-02 07:07:49 +00001909// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1910// having 4 of these, force the comparison to always be an 8-byte double (code
1911// should use an FMRSD if the input comparison value really wants to be a float)
Chris Lattner867940d2005-10-02 06:58:23 +00001912// and 4/8 byte forms for the result and operand type..
Hal Finkel171a8ad2013-04-12 02:18:09 +00001913let Interpretation64Bit = 1 in
1914defm FSELD : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001915 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001916 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1917 [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
1918defm FSELS : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001919 (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001920 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1921 [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001922let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001923 defm FADD : AForm_2r<63, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001924 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001925 "fadd", "$FRT, $FRA, $FRB", FPAddSub,
1926 [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
1927 defm FADDS : AForm_2r<59, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001928 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001929 "fadds", "$FRT, $FRA, $FRB", FPGeneral,
1930 [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
1931 defm FDIV : AForm_2r<63, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001932 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001933 "fdiv", "$FRT, $FRA, $FRB", FPDivD,
1934 [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
1935 defm FDIVS : AForm_2r<59, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001936 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001937 "fdivs", "$FRT, $FRA, $FRB", FPDivS,
1938 [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
1939 defm FMUL : AForm_3r<63, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001940 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001941 "fmul", "$FRT, $FRA, $FRC", FPFused,
1942 [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
1943 defm FMULS : AForm_3r<59, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001944 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001945 "fmuls", "$FRT, $FRA, $FRC", FPGeneral,
1946 [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
1947 defm FSUB : AForm_2r<63, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001948 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001949 "fsub", "$FRT, $FRA, $FRB", FPAddSub,
1950 [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
1951 defm FSUBS : AForm_2r<59, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001952 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001953 "fsubs", "$FRT, $FRA, $FRB", FPGeneral,
1954 [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001955 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001956}
Nate Begeman07aada82004-08-30 02:28:06 +00001957
Hal Finkel946a8112013-04-07 15:06:53 +00001958let neverHasSideEffects = 1 in {
Chris Lattner88d211f2006-03-12 09:13:49 +00001959let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel946a8112013-04-07 15:06:53 +00001960 let isSelect = 1 in
Ulrich Weigandbc40df32012-11-13 19:14:19 +00001961 def ISEL : AForm_4<31, 15,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001962 (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
Hal Finkel009f7af2012-06-22 23:10:08 +00001963 "isel $rT, $rA, $rB, $cond", IntGeneral,
1964 []>;
1965}
1966
1967let PPC970_Unit = 1 in { // FXU Operations.
Nate Begemancc8bd9c2004-08-31 02:28:08 +00001968// M-Form instructions. rotate and mask instructions.
1969//
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001970let isCommutable = 1 in {
Chris Lattner043870d2005-09-09 18:17:41 +00001971// RLWIMI can be commuted if the rotate amount is zero.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001972defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
1973 (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001974 u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME", IntRotate,
1975 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1976 NoEncode<"$rSi">;
Nate Begeman2d4c98d2004-10-16 20:43:38 +00001977}
Hal Finkel171a8ad2013-04-12 02:18:09 +00001978let BaseName = "rlwinm" in {
Chris Lattner14522e32005-04-19 05:21:30 +00001979def RLWINM : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001980 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Jim Laskey53842142005-10-19 19:51:16 +00001981 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001982 []>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +00001983let Defs = [CR0] in
Chris Lattner14522e32005-04-19 05:21:30 +00001984def RLWINMo : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001985 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001986 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1987 []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
1988}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001989defm RLWNM : MForm_2r<23, (outs gprc:$rA),
1990 (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001991 "rlwnm", "$rA, $rS, $rB, $MB, $ME", IntGeneral,
1992 []>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001993}
Hal Finkel946a8112013-04-07 15:06:53 +00001994} // neverHasSideEffects = 1
Chris Lattner3c0f9cc2006-03-20 06:15:45 +00001995
Chris Lattner2eb25172005-09-09 00:39:56 +00001996//===----------------------------------------------------------------------===//
1997// PowerPC Instruction Patterns
1998//
1999
Chris Lattner30e21a42005-09-26 22:20:16 +00002000// Arbitrary immediate support. Implement in terms of LIS/ORI.
2001def : Pat<(i32 imm:$imm),
2002 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
Chris Lattner91da8622005-09-28 17:13:15 +00002003
2004// Implement the 'not' operation with the NOR instruction.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002005def NOT : Pat<(not i32:$in),
2006 (NOR $in, $in)>;
Chris Lattner91da8622005-09-28 17:13:15 +00002007
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002008// ADD an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002009def : Pat<(add i32:$in, imm:$imm),
2010 (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002011// OR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002012def : Pat<(or i32:$in, imm:$imm),
2013 (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002014// XOR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002015def : Pat<(xor i32:$in, imm:$imm),
2016 (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002017// SUBFIC
Bill Schmidt5cd01f72013-05-22 20:09:24 +00002018def : Pat<(sub imm32SExt16:$imm, i32:$in),
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002019 (SUBFIC $in, imm:$imm)>;
Chris Lattner8be1fa52005-10-19 01:38:02 +00002020
Chris Lattner956f43c2006-06-16 20:22:01 +00002021// SHL/SRL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002022def : Pat<(shl i32:$in, (i32 imm:$imm)),
2023 (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
2024def : Pat<(srl i32:$in, (i32 imm:$imm)),
2025 (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
Nate Begeman2d5aff72005-10-19 18:42:01 +00002026
Nate Begeman35ef9132006-01-11 21:21:00 +00002027// ROTL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002028def : Pat<(rotl i32:$in, i32:$sh),
2029 (RLWNM $in, $sh, 0, 31)>;
2030def : Pat<(rotl i32:$in, (i32 imm:$imm)),
2031 (RLWINM $in, imm:$imm, 0, 31)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002032
Nate Begemanf42f1332006-09-22 05:01:56 +00002033// RLWNM
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002034def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
2035 (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
Nate Begemanf42f1332006-09-22 05:01:56 +00002036
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002037// Calls
Ulrich Weigand86765fb2013-03-22 15:24:13 +00002038def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
2039 (BL tglobaladdr:$dst)>;
2040def : Pat<(PPCcall (i32 texternalsym:$dst)),
2041 (BL texternalsym:$dst)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002042
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002043
2044def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
2045 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
2046
2047def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
2048 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
2049
2050def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
2051 (TCRETURNri CTRRC:$dst, imm:$imm)>;
2052
2053
2054
Chris Lattner860e8862005-11-17 07:30:41 +00002055// Hi and Lo for Darwin Global Addresses.
Chris Lattnerd717b192005-12-11 07:45:47 +00002056def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
2057def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
2058def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
2059def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
Nate Begeman37efe672006-04-22 18:53:45 +00002060def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
2061def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilson3d90dbe2009-11-04 21:31:18 +00002062def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
2063def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002064def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
2065 (ADDIS $in, tglobaltlsaddr:$g)>;
2066def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
Ulrich Weigand2b0850b2013-03-26 10:55:20 +00002067 (ADDI $in, tglobaltlsaddr:$g)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002068def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
2069 (ADDIS $in, tglobaladdr:$g)>;
2070def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
2071 (ADDIS $in, tconstpool:$g)>;
2072def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
2073 (ADDIS $in, tjumptable:$g)>;
2074def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
2075 (ADDIS $in, tblockaddress:$g)>;
Chris Lattner860e8862005-11-17 07:30:41 +00002076
Chris Lattner4172b102005-12-06 02:10:38 +00002077// Standard shifts. These are represented separately from the real shifts above
2078// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
2079// amounts.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002080def : Pat<(sra i32:$rS, i32:$rB),
2081 (SRAW $rS, $rB)>;
2082def : Pat<(srl i32:$rS, i32:$rB),
2083 (SRW $rS, $rB)>;
2084def : Pat<(shl i32:$rS, i32:$rB),
2085 (SLW $rS, $rB)>;
Chris Lattner4172b102005-12-06 02:10:38 +00002086
Evan Cheng466685d2006-10-09 20:57:25 +00002087def : Pat<(zextloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002088 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002089def : Pat<(zextloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002090 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002091def : Pat<(extloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002092 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002093def : Pat<(extloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002094 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002095def : Pat<(extloadi8 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002096 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002097def : Pat<(extloadi8 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002098 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002099def : Pat<(extloadi16 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002100 (LHZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002101def : Pat<(extloadi16 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002102 (LHZX xaddr:$src)>;
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00002103def : Pat<(f64 (extloadf32 iaddr:$src)),
2104 (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
2105def : Pat<(f64 (extloadf32 xaddr:$src)),
2106 (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
2107
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002108def : Pat<(f64 (fextend f32:$src)),
2109 (COPY_TO_REGCLASS $src, F8RC)>;
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002110
Eli Friedman14648462011-07-27 22:21:52 +00002111def : Pat<(atomic_fence (imm), (imm)), (SYNC)>;
2112
Hal Finkel827307b2013-04-03 04:01:11 +00002113// Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2114def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2115 (FNMSUB $A, $C, $B)>;
2116def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2117 (FNMSUB $A, $C, $B)>;
2118def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2119 (FNMSUBS $A, $C, $B)>;
2120def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2121 (FNMSUBS $A, $C, $B)>;
2122
Chris Lattnerb22a04d2006-03-25 07:51:43 +00002123include "PPCInstrAltivec.td"
Chris Lattner956f43c2006-06-16 20:22:01 +00002124include "PPCInstr64Bit.td"
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002125
Ulrich Weigand8e4ba8f2013-05-03 19:51:09 +00002126
2127//===----------------------------------------------------------------------===//
2128// PowerPC Instructions used for assembler/disassembler only
2129//
2130
2131def ISYNC : XLForm_2_ext<19, 150, 0, 0, 0, (outs), (ins),
2132 "isync", SprISYNC, []>;
2133
2134def ICBI : XForm_1a<31, 982, (outs), (ins memrr:$src),
2135 "icbi $src", LdStICBI, []>;
2136
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002137//===----------------------------------------------------------------------===//
2138// PowerPC Assembler Instruction Aliases
2139//
2140
2141// Pseudo-instructions for alternate assembly syntax (never used by codegen).
2142// These are aliases that require C++ handling to convert to the target
2143// instruction, while InstAliases can be handled directly by tblgen.
2144class PPCAsmPseudo<string asm, dag iops>
2145 : Instruction {
2146 let Namespace = "PPC";
2147 bit PPC64 = 0; // Default value, override with isPPC64
2148
2149 let OutOperandList = (outs);
2150 let InOperandList = iops;
2151 let Pattern = [];
2152 let AsmString = asm;
2153 let isAsmParserOnly = 1;
2154 let isPseudo = 1;
2155}
2156
2157def : InstAlias<"mr $rA, $rB", (OR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
2158
2159def SLWI : PPCAsmPseudo<"slwi $rA, $rS, $n",
2160 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2161def SRWI : PPCAsmPseudo<"srwi $rA, $rS, $n",
2162 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2163def SLDI : PPCAsmPseudo<"sldi $rA, $rS, $n",
2164 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2165def SRDI : PPCAsmPseudo<"srdi $rA, $rS, $n",
2166 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2167
2168def : InstAlias<"blt $cc, $dst", (BCC 12, crrc:$cc, condbrtarget:$dst)>;
2169def : InstAlias<"bgt $cc, $dst", (BCC 44, crrc:$cc, condbrtarget:$dst)>;
2170def : InstAlias<"beq $cc, $dst", (BCC 76, crrc:$cc, condbrtarget:$dst)>;
2171def : InstAlias<"bun $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2172def : InstAlias<"bso $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2173def : InstAlias<"bge $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2174def : InstAlias<"bnl $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2175def : InstAlias<"ble $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2176def : InstAlias<"bng $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2177def : InstAlias<"bne $cc, $dst", (BCC 68, crrc:$cc, condbrtarget:$dst)>;
2178def : InstAlias<"bnu $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2179def : InstAlias<"bns $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2180
2181def : InstAlias<"bltlr $cc", (BCLR 12, crrc:$cc)>;
2182def : InstAlias<"bgtlr $cc", (BCLR 44, crrc:$cc)>;
2183def : InstAlias<"beqlr $cc", (BCLR 76, crrc:$cc)>;
2184def : InstAlias<"bunlr $cc", (BCLR 108, crrc:$cc)>;
2185def : InstAlias<"bsolr $cc", (BCLR 108, crrc:$cc)>;
2186def : InstAlias<"bgelr $cc", (BCLR 4, crrc:$cc)>;
2187def : InstAlias<"bnllr $cc", (BCLR 4, crrc:$cc)>;
2188def : InstAlias<"blelr $cc", (BCLR 36, crrc:$cc)>;
2189def : InstAlias<"bnglr $cc", (BCLR 36, crrc:$cc)>;
2190def : InstAlias<"bnelr $cc", (BCLR 68, crrc:$cc)>;
2191def : InstAlias<"bnulr $cc", (BCLR 100, crrc:$cc)>;
2192def : InstAlias<"bnslr $cc", (BCLR 100, crrc:$cc)>;
2193
2194def : InstAlias<"bltctr $cc", (BCCTR 12, crrc:$cc)>;
2195def : InstAlias<"bgtctr $cc", (BCCTR 44, crrc:$cc)>;
2196def : InstAlias<"beqctr $cc", (BCCTR 76, crrc:$cc)>;
2197def : InstAlias<"bunctr $cc", (BCCTR 108, crrc:$cc)>;
2198def : InstAlias<"bsoctr $cc", (BCCTR 108, crrc:$cc)>;
2199def : InstAlias<"bgectr $cc", (BCCTR 4, crrc:$cc)>;
2200def : InstAlias<"bnlctr $cc", (BCCTR 4, crrc:$cc)>;
2201def : InstAlias<"blectr $cc", (BCCTR 36, crrc:$cc)>;
2202def : InstAlias<"bngctr $cc", (BCCTR 36, crrc:$cc)>;
2203def : InstAlias<"bnectr $cc", (BCCTR 68, crrc:$cc)>;
2204def : InstAlias<"bnuctr $cc", (BCCTR 100, crrc:$cc)>;
2205def : InstAlias<"bnsctr $cc", (BCCTR 100, crrc:$cc)>;
2206
2207def : InstAlias<"bltctrl $cc", (BCCTRL 12, crrc:$cc)>;
2208def : InstAlias<"bgtctrl $cc", (BCCTRL 44, crrc:$cc)>;
2209def : InstAlias<"beqctrl $cc", (BCCTRL 76, crrc:$cc)>;
2210def : InstAlias<"bunctrl $cc", (BCCTRL 108, crrc:$cc)>;
2211def : InstAlias<"bsoctrl $cc", (BCCTRL 108, crrc:$cc)>;
2212def : InstAlias<"bgectrl $cc", (BCCTRL 4, crrc:$cc)>;
2213def : InstAlias<"bnlctrl $cc", (BCCTRL 4, crrc:$cc)>;
2214def : InstAlias<"blectrl $cc", (BCCTRL 36, crrc:$cc)>;
2215def : InstAlias<"bngctrl $cc", (BCCTRL 36, crrc:$cc)>;
2216def : InstAlias<"bnectrl $cc", (BCCTRL 68, crrc:$cc)>;
2217def : InstAlias<"bnuctrl $cc", (BCCTRL 100, crrc:$cc)>;
2218def : InstAlias<"bnsctrl $cc", (BCCTRL 100, crrc:$cc)>;
2219