blob: 33a5a0e0891f6407a5be65e60c3332c902959b59 [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 Weigand5e220752013-05-03 19:49:39 +0000437 let ParserMatchClass = PPCS16ImmAsmOperand;
438}
439def PPCU16ImmAsmOperand : AsmOperandClass {
440 let Name = "U16Imm"; let PredicateMethod = "isU16Imm";
441 let RenderMethod = "addImmOperands";
Nate Begemaned428532004-09-04 05:00:00 +0000442}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000443def u16imm : Operand<i32> {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000444 let PrintMethod = "printU16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000445 let ParserMatchClass = PPCU16ImmAsmOperand;
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000446}
Chris Lattner8d704112010-11-15 06:09:35 +0000447def directbrtarget : Operand<OtherVT> {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000448 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000449 let EncoderMethod = "getDirectBrEncoding";
450}
451def condbrtarget : Operand<OtherVT> {
Chris Lattnerb8efa6b2010-11-16 01:45:05 +0000452 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000453 let EncoderMethod = "getCondBrEncoding";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000454}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000455def calltarget : Operand<iPTR> {
Chris Lattner8d704112010-11-15 06:09:35 +0000456 let EncoderMethod = "getDirectBrEncoding";
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000457}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000458def aaddr : Operand<iPTR> {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000459 let PrintMethod = "printAbsAddrOperand";
460}
Nate Begemaned428532004-09-04 05:00:00 +0000461def symbolHi: Operand<i32> {
462 let PrintMethod = "printSymbolHi";
Ulrich Weigand4456a8e2013-05-17 14:14:12 +0000463 let EncoderMethod = "getS16ImmEncoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000464 let ParserMatchClass = PPCS16ImmAsmOperand;
Nate Begemaned428532004-09-04 05:00:00 +0000465}
466def symbolLo: Operand<i32> {
467 let PrintMethod = "printSymbolLo";
Ulrich Weigand4456a8e2013-05-17 14:14:12 +0000468 let EncoderMethod = "getS16ImmEncoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000469 let ParserMatchClass = PPCS16ImmAsmOperand;
470}
471def PPCCRBitMaskOperand : AsmOperandClass {
472 let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask";
Nate Begemaned428532004-09-04 05:00:00 +0000473}
Nate Begemanadeb43d2005-07-20 22:42:00 +0000474def crbitm: Operand<i8> {
475 let PrintMethod = "printcrbitm";
Chris Lattner7192eb82010-11-15 05:19:25 +0000476 let EncoderMethod = "get_crbitm_encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000477 let ParserMatchClass = PPCCRBitMaskOperand;
Nate Begemanadeb43d2005-07-20 22:42:00 +0000478}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000479// Address operands
Hal Finkela548afc2013-03-19 18:51:05 +0000480// A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
Ulrich Weigand5e220752013-05-03 19:49:39 +0000481def PPCRegGxRCNoR0Operand : AsmOperandClass {
482 let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber";
483}
484def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> {
485 let ParserMatchClass = PPCRegGxRCNoR0Operand;
486}
487// A version of ptr_rc usable with the asm parser.
488def PPCRegGxRCOperand : AsmOperandClass {
489 let Name = "RegGxRC"; let PredicateMethod = "isRegNumber";
490}
491def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> {
492 let ParserMatchClass = PPCRegGxRCOperand;
493}
Hal Finkela548afc2013-03-19 18:51:05 +0000494
Ulrich Weigand5e220752013-05-03 19:49:39 +0000495def PPCDispRIOperand : AsmOperandClass {
496 let Name = "DispRI"; let PredicateMethod = "isS16Imm";
Ulrich Weigand347a5072013-05-16 17:58:02 +0000497 let RenderMethod = "addImmOperands";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000498}
499def dispRI : Operand<iPTR> {
500 let ParserMatchClass = PPCDispRIOperand;
501}
502def PPCDispRIXOperand : AsmOperandClass {
503 let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4";
Ulrich Weigand347a5072013-05-16 17:58:02 +0000504 let RenderMethod = "addImmOperands";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000505}
506def dispRIX : Operand<iPTR> {
507 let ParserMatchClass = PPCDispRIXOperand;
508}
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000509
Chris Lattner059ca0f2006-06-16 21:01:35 +0000510def memri : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000511 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000512 let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
Chris Lattnerb7035d02010-11-15 08:22:03 +0000513 let EncoderMethod = "getMemRIEncoding";
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000514}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000515def memrr : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000516 let PrintMethod = "printMemRegReg";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000517 let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000518}
Ulrich Weigand347a5072013-05-16 17:58:02 +0000519def memrix : Operand<iPTR> { // memri where the imm is 4-aligned.
520 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000521 let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
Chris Lattner17e2c182010-11-15 08:02:41 +0000522 let EncoderMethod = "getMemRIXEncoding";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000523}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000524
Hal Finkel7ee74a62013-03-21 21:37:52 +0000525// A single-register address. This is used with the SjLj
526// pseudo-instructions.
527def memr : Operand<iPTR> {
528 let MIOperandInfo = (ops ptr_rc:$ptrreg);
529}
530
Ulrich Weigand3b255292013-03-26 10:53:27 +0000531// PowerPC Predicate operand.
532def pred : Operand<OtherVT> {
Chris Lattneraf53a872006-11-04 05:27:39 +0000533 let PrintMethod = "printPredicateOperand";
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000534 let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
Chris Lattneraf53a872006-11-04 05:27:39 +0000535}
Chris Lattner0638b262006-11-03 23:53:25 +0000536
Chris Lattnera613d262006-01-12 02:05:36 +0000537// Define PowerPC specific addressing mode.
Evan Chengaf9db752006-10-11 21:03:53 +0000538def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
539def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
540def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
Ulrich Weigand347a5072013-05-16 17:58:02 +0000541def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmX4", [], []>; // "std"
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000542
Hal Finkel7ee74a62013-03-21 21:37:52 +0000543// The address in a single register. This is used with the SjLj
544// pseudo-instructions.
545def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
546
Chris Lattner74531e42006-11-16 00:41:37 +0000547/// This is just the offset part of iaddr, used for preinc.
548def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +0000549
Evan Cheng8c75ef92005-12-14 22:07:12 +0000550//===----------------------------------------------------------------------===//
551// PowerPC Instruction Predicate Definitions.
Evan Cheng152b7e12007-10-23 06:42:42 +0000552def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
553def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Hal Finkelc6d08f12011-10-17 04:03:49 +0000554def IsBookE : Predicate<"PPCSubTarget.isBookE()">;
Chris Lattner6a5339b2006-11-14 18:44:47 +0000555
Chris Lattner47f01f12005-09-08 19:50:41 +0000556//===----------------------------------------------------------------------===//
Hal Finkel171a8ad2013-04-12 02:18:09 +0000557// PowerPC Multiclass Definitions.
558
559multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
560 string asmbase, string asmstr, InstrItinClass itin,
561 list<dag> pattern> {
562 let BaseName = asmbase in {
563 def NAME : XForm_6<opcode, xo, OOL, IOL,
564 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
565 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000566 let Defs = [CR0] in
567 def o : XForm_6<opcode, xo, OOL, IOL,
568 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
569 []>, isDOT, RecFormRel;
570 }
571}
572
573multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
574 string asmbase, string asmstr, InstrItinClass itin,
575 list<dag> pattern> {
576 let BaseName = asmbase in {
577 let Defs = [CARRY] in
578 def NAME : XForm_6<opcode, xo, OOL, IOL,
579 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
580 pattern>, RecFormRel;
581 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000582 def o : XForm_6<opcode, xo, OOL, IOL,
583 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
584 []>, isDOT, RecFormRel;
585 }
586}
587
588multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
589 string asmbase, string asmstr, InstrItinClass itin,
590 list<dag> pattern> {
591 let BaseName = asmbase in {
592 def NAME : XForm_10<opcode, xo, OOL, IOL,
593 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
594 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000595 let Defs = [CR0] in
596 def o : XForm_10<opcode, xo, OOL, IOL,
597 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
598 []>, isDOT, RecFormRel;
599 }
600}
601
602multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
603 string asmbase, string asmstr, InstrItinClass itin,
604 list<dag> pattern> {
605 let BaseName = asmbase in {
606 let Defs = [CARRY] in
607 def NAME : XForm_10<opcode, xo, OOL, IOL,
608 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
609 pattern>, RecFormRel;
610 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000611 def o : XForm_10<opcode, xo, OOL, IOL,
612 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
613 []>, isDOT, RecFormRel;
614 }
615}
616
617multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
618 string asmbase, string asmstr, InstrItinClass itin,
619 list<dag> pattern> {
620 let BaseName = asmbase in {
621 def NAME : XForm_11<opcode, xo, OOL, IOL,
622 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
623 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000624 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000625 def o : XForm_11<opcode, xo, OOL, IOL,
626 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
627 []>, isDOT, RecFormRel;
628 }
629}
630
631multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
632 string asmbase, string asmstr, InstrItinClass itin,
633 list<dag> pattern> {
634 let BaseName = asmbase in {
635 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
636 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
637 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000638 let Defs = [CR0] in
639 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
640 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
641 []>, isDOT, RecFormRel;
642 }
643}
644
645multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
646 string asmbase, string asmstr, InstrItinClass itin,
647 list<dag> pattern> {
648 let BaseName = asmbase in {
649 let Defs = [CARRY] in
650 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
651 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
652 pattern>, RecFormRel;
653 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000654 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
655 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
656 []>, isDOT, RecFormRel;
657 }
658}
659
660multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
661 string asmbase, string asmstr, InstrItinClass itin,
662 list<dag> pattern> {
663 let BaseName = asmbase in {
664 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
665 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
666 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000667 let Defs = [CR0] in
668 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
669 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
670 []>, isDOT, RecFormRel;
671 }
672}
673
674multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
675 string asmbase, string asmstr, InstrItinClass itin,
676 list<dag> pattern> {
677 let BaseName = asmbase in {
678 let Defs = [CARRY] in
679 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
680 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
681 pattern>, RecFormRel;
682 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000683 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
684 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
685 []>, isDOT, RecFormRel;
686 }
687}
688
689multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
690 string asmbase, string asmstr, InstrItinClass itin,
691 list<dag> pattern> {
692 let BaseName = asmbase in {
693 def NAME : MForm_2<opcode, OOL, IOL,
694 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
695 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000696 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000697 def o : MForm_2<opcode, OOL, IOL,
698 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
699 []>, isDOT, RecFormRel;
700 }
701}
702
703multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
704 string asmbase, string asmstr, InstrItinClass itin,
705 list<dag> pattern> {
706 let BaseName = asmbase in {
707 def NAME : MDForm_1<opcode, xo, OOL, IOL,
708 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
709 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000710 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000711 def o : MDForm_1<opcode, xo, OOL, IOL,
712 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
713 []>, isDOT, RecFormRel;
714 }
715}
716
Ulrich Weigand1adc97c2013-04-26 15:39:12 +0000717multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
718 string asmbase, string asmstr, InstrItinClass itin,
719 list<dag> pattern> {
720 let BaseName = asmbase in {
721 def NAME : MDSForm_1<opcode, xo, OOL, IOL,
722 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
723 pattern>, RecFormRel;
724 let Defs = [CR0] in
725 def o : MDSForm_1<opcode, xo, OOL, IOL,
726 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
727 []>, isDOT, RecFormRel;
728 }
729}
730
Hal Finkel59857462013-04-12 18:17:57 +0000731multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
732 string asmbase, string asmstr, InstrItinClass itin,
733 list<dag> pattern> {
Hal Finkel171a8ad2013-04-12 02:18:09 +0000734 let BaseName = asmbase in {
Hal Finkel59857462013-04-12 18:17:57 +0000735 let Defs = [CARRY] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000736 def NAME : XSForm_1<opcode, xo, OOL, IOL,
737 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
738 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000739 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000740 def o : XSForm_1<opcode, xo, OOL, IOL,
741 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
742 []>, isDOT, RecFormRel;
743 }
744}
745
746multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
747 string asmbase, string asmstr, InstrItinClass itin,
748 list<dag> pattern> {
749 let BaseName = asmbase in {
750 def NAME : XForm_26<opcode, xo, OOL, IOL,
751 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
752 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000753 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000754 def o : XForm_26<opcode, xo, OOL, IOL,
755 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000756 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000757 }
758}
759
760multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
761 string asmbase, string asmstr, InstrItinClass itin,
762 list<dag> pattern> {
763 let BaseName = asmbase in {
764 def NAME : AForm_1<opcode, xo, OOL, IOL,
765 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
766 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000767 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000768 def o : AForm_1<opcode, xo, OOL, IOL,
769 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000770 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000771 }
772}
773
774multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
775 string asmbase, string asmstr, InstrItinClass itin,
776 list<dag> pattern> {
777 let BaseName = asmbase in {
778 def NAME : AForm_2<opcode, xo, OOL, IOL,
779 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
780 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000781 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000782 def o : AForm_2<opcode, xo, OOL, IOL,
783 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000784 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000785 }
786}
787
788multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
789 string asmbase, string asmstr, InstrItinClass itin,
790 list<dag> pattern> {
791 let BaseName = asmbase in {
792 def NAME : AForm_3<opcode, xo, OOL, IOL,
793 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
794 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000795 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000796 def o : AForm_3<opcode, xo, OOL, IOL,
797 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000798 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000799 }
800}
801
802//===----------------------------------------------------------------------===//
Chris Lattner47f01f12005-09-08 19:50:41 +0000803// PowerPC Instruction Definitions.
804
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000805// Pseudo-instructions:
Chris Lattner47f01f12005-09-08 19:50:41 +0000806
Chris Lattner88d211f2006-03-12 09:13:49 +0000807let hasCtrlDep = 1 in {
Evan Cheng071a2792007-09-11 19:55:27 +0000808let Defs = [R1], Uses = [R1] in {
Will Schmidt91638152012-10-04 18:14:28 +0000809def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000810 [(callseq_start timm:$amt)]>;
Will Schmidt91638152012-10-04 18:14:28 +0000811def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000812 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000813}
Chris Lattner1877ec92006-03-13 21:52:10 +0000814
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000815def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +0000816 "UPDATE_VRSAVE $rD, $rS", []>;
Nate Begemanb816f022004-10-07 22:30:03 +0000817}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000818
Evan Cheng071a2792007-09-11 19:55:27 +0000819let Defs = [R1], Uses = [R1] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000820def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000821 [(set i32:$result,
822 (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
Jim Laskey2f616bf2006-11-16 22:43:37 +0000823
Dan Gohman533297b2009-10-29 18:10:34 +0000824// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
825// instruction selection into a branch sequence.
826let usesCustomInserter = 1, // Expanded after instruction selection.
Chris Lattner88d211f2006-03-12 09:13:49 +0000827 PPC970_Single = 1 in {
Hal Finkelab42ec22013-03-27 05:57:58 +0000828 // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
829 // because either operand might become the first operand in an isel, and
830 // that operand cannot be r0.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000831 def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
832 gprc_nor0:$T, gprc_nor0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000833 i32imm:$BROPC), "#SELECT_CC_I4",
Chris Lattner54689662006-09-27 02:55:21 +0000834 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000835 def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
836 g8rc_nox0:$T, g8rc_nox0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000837 i32imm:$BROPC), "#SELECT_CC_I8",
Chris Lattner54689662006-09-27 02:55:21 +0000838 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000839 def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000840 i32imm:$BROPC), "#SELECT_CC_F4",
Chris Lattner54689662006-09-27 02:55:21 +0000841 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000842 def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000843 i32imm:$BROPC), "#SELECT_CC_F8",
Chris Lattner54689662006-09-27 02:55:21 +0000844 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000845 def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000846 i32imm:$BROPC), "#SELECT_CC_VRRC",
Chris Lattner54689662006-09-27 02:55:21 +0000847 []>;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000848}
849
Bill Wendling7194aaf2008-03-03 22:19:16 +0000850// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
851// scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000852let mayStore = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000853def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000854 "#SPILL_CR", []>;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000855
Hal Finkeld21e9302011-12-06 20:55:36 +0000856// RESTORE_CR - Indicate that we're restoring the CR register (previously
857// spilled), so we'll need to scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000858let mayLoad = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000859def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000860 "#RESTORE_CR", []>;
Hal Finkeld21e9302011-12-06 20:55:36 +0000861
Evan Chengffbacca2007-07-21 00:34:19 +0000862let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Ulrich Weigand3b255292013-03-26 10:53:27 +0000863 let isReturn = 1, Uses = [LR, RM] in
864 def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", BrB,
865 [(retflag)]>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000866 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
Owen Anderson20ab2902007-11-12 07:39:39 +0000867 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000868
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000869 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000870 def BCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
871 "b${cond:cc}ctr ${cond:reg}", BrB, []>;
872 }
Chris Lattner47f01f12005-09-08 19:50:41 +0000873}
874
Chris Lattner7a823bd2005-02-15 20:26:49 +0000875let Defs = [LR] in
Will Schmidt91638152012-10-04 18:14:28 +0000876 def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
Chris Lattner88d211f2006-03-12 09:13:49 +0000877 PPC970_Unit_BRU;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000878
Evan Chengffbacca2007-07-21 00:34:19 +0000879let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Chris Lattner594f4c62006-10-13 19:10:34 +0000880 let isBarrier = 1 in {
Chris Lattner8d704112010-11-15 06:09:35 +0000881 def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
Chris Lattner1e484782005-12-04 18:42:54 +0000882 "b $dst", BrB,
883 [(br bb:$dst)]>;
Chris Lattner594f4c62006-10-13 19:10:34 +0000884 }
Chris Lattnerdd998852004-11-22 23:07:01 +0000885
Chris Lattner18258c62006-11-17 22:37:34 +0000886 // BCC represents an arbitrary conditional branch on a predicate.
887 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
Will Schmidtd8755332012-10-05 15:16:11 +0000888 // a two-value operand where a dag node expects two operands. :(
Hal Finkel5ee67e82013-04-08 16:24:03 +0000889 let isCodeGenOnly = 1 in {
Will Schmidtd8755332012-10-05 15:16:11 +0000890 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
891 "b${cond:cc} ${cond:reg}, $dst"
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000892 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
Hal Finkel5ee67e82013-04-08 16:24:03 +0000893 let isReturn = 1, Uses = [LR, RM] in
894 def BCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
895 "b${cond:cc}lr ${cond:reg}", BrB, []>;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000896
897 let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
898 def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
899 "bdzlr", BrB, []>;
900 def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
901 "bdnzlr", BrB, []>;
902 }
Hal Finkel5ee67e82013-04-08 16:24:03 +0000903 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000904
905 let Defs = [CTR], Uses = [CTR] in {
Ulrich Weigand18430432012-11-13 19:15:52 +0000906 def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
907 "bdz $dst">;
908 def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
909 "bdnz $dst">;
Hal Finkel99f823f2012-06-08 15:38:21 +0000910 }
Misha Brukmanb2edb442004-06-28 18:23:35 +0000911}
912
Hal Finkelcaeeb182013-04-04 22:55:54 +0000913// The unconditional BCL used by the SjLj setjmp code.
Ulrich Weigand3d386422013-03-26 10:57:16 +0000914let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000915 let Defs = [LR], Uses = [RM] in {
Hal Finkelcaeeb182013-04-04 22:55:54 +0000916 def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
917 "bcl 20, 31, $dst">;
Hal Finkel7ee74a62013-03-21 21:37:52 +0000918 }
919}
920
Roman Divackye46137f2012-03-06 16:41:49 +0000921let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
Misha Brukmanc661c302004-06-30 22:00:45 +0000922 // Convenient aliases for call instructions
Dale Johannesenb384ab92008-10-29 18:26:45 +0000923 let Uses = [RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000924 def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func),
925 "bl $func", BrB, []>; // See Pat patterns below.
926 def BLA : IForm<18, 1, 1, (outs), (ins aaddr:$func),
927 "bla $func", BrB, [(PPCcall (i32 imm:$func))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +0000928 }
929 let Uses = [CTR, RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000930 def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
931 "bctrl", BrB, [(PPCbctrl)]>,
932 Requires<[In32BitMode]>;
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000933
934 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000935 def BCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
936 "b${cond:cc}ctrl ${cond:reg}", BrB, []>;
Dale Johannesen639076f2008-10-23 20:41:28 +0000937 }
Chris Lattner9f0bc652007-02-25 05:34:32 +0000938}
939
Dale Johannesenb384ab92008-10-29 18:26:45 +0000940let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000941def TCRETURNdi :Pseudo< (outs),
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000942 (ins calltarget:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000943 "#TC_RETURNd $dst $offset",
944 []>;
945
946
Dale Johannesenb384ab92008-10-29 18:26:45 +0000947let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000948def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000949 "#TC_RETURNa $func $offset",
950 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
951
Dale Johannesenb384ab92008-10-29 18:26:45 +0000952let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000953def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000954 "#TC_RETURNr $dst $offset",
955 []>;
956
957
Ulrich Weigand3d386422013-03-26 10:57:16 +0000958let isCodeGenOnly = 1 in {
959
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000960let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000961 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000962def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
963 Requires<[In32BitMode]>;
964
965
966
967let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000968 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000969def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
970 "b $dst", BrB,
971 []>;
972
Ulrich Weigand3d386422013-03-26 10:57:16 +0000973}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000974
975let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000976 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000977def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
978 "ba $dst", BrB,
979 []>;
980
Ulrich Weigand3d386422013-03-26 10:57:16 +0000981let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000982 def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf),
Hal Finkel7ee74a62013-03-21 21:37:52 +0000983 "#EH_SJLJ_SETJMP32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000984 [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
Hal Finkel7ee74a62013-03-21 21:37:52 +0000985 Requires<[In32BitMode]>;
986 let isTerminator = 1 in
987 def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
988 "#EH_SJLJ_LONGJMP32",
989 [(PPCeh_sjlj_longjmp addr:$buf)]>,
990 Requires<[In32BitMode]>;
991}
992
Ulrich Weigand3d386422013-03-26 10:57:16 +0000993let isBranch = 1, isTerminator = 1 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000994 def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
995 "#EH_SjLj_Setup\t$dst", []>;
996}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000997
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000998// System call.
999let PPC970_Unit = 7 in {
1000 def SC : SCForm<17, 1, (outs), (ins i32imm:$lev),
1001 "sc $lev", BrB, [(PPCsc (i32 imm:$lev))]>;
1002}
1003
Chris Lattner001db452006-06-06 21:29:23 +00001004// DCB* instructions.
Evan Cheng64d80e32007-07-19 01:14:50 +00001005def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001006 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
1007 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001008def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001009 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
1010 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001011def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001012 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
1013 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001014def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001015 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
1016 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001017def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001018 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
1019 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001020def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001021 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
1022 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001023def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001024 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
1025 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001026def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001027 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
1028 PPC970_DGroup_Single;
Chris Lattner26e552b2006-11-14 19:19:53 +00001029
Hal Finkel19aa2b52012-04-01 20:08:17 +00001030def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
1031 (DCBT xoaddr:$dst)>;
1032
Evan Cheng53301922008-07-12 02:23:19 +00001033// Atomic operations
Dan Gohman533297b2009-10-29 18:10:34 +00001034let usesCustomInserter = 1 in {
Jakob Stoklund Olesencf3a7482011-04-04 17:07:09 +00001035 let Defs = [CR0] in {
Dale Johannesen97efa362008-08-28 17:53:09 +00001036 def ATOMIC_LOAD_ADD_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001037 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001038 [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001039 def ATOMIC_LOAD_SUB_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001040 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001041 [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001042 def ATOMIC_LOAD_AND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001043 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001044 [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001045 def ATOMIC_LOAD_OR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001046 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001047 [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001048 def ATOMIC_LOAD_XOR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001049 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001050 [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001051 def ATOMIC_LOAD_NAND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001052 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001053 [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001054 def ATOMIC_LOAD_ADD_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001055 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001056 [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001057 def ATOMIC_LOAD_SUB_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001058 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001059 [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001060 def ATOMIC_LOAD_AND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001061 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001062 [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001063 def ATOMIC_LOAD_OR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001064 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001065 [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001066 def ATOMIC_LOAD_XOR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001067 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001068 [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001069 def ATOMIC_LOAD_NAND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001070 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001071 [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001072 def ATOMIC_LOAD_ADD_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001073 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001074 [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001075 def ATOMIC_LOAD_SUB_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001076 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001077 [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001078 def ATOMIC_LOAD_AND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001079 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001080 [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001081 def ATOMIC_LOAD_OR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001082 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001083 [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001084 def ATOMIC_LOAD_XOR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001085 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001086 [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001087 def ATOMIC_LOAD_NAND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001088 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001089 [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001090
Dale Johannesen97efa362008-08-28 17:53:09 +00001091 def ATOMIC_CMP_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001092 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001093 [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001094 def ATOMIC_CMP_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001095 (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 +00001096 [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001097 def ATOMIC_CMP_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001098 (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 +00001099 [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001100
Dale Johannesen97efa362008-08-28 17:53:09 +00001101 def ATOMIC_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001102 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001103 [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001104 def ATOMIC_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001105 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001106 [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen140a8bb2008-08-25 21:09:52 +00001107 def ATOMIC_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001108 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001109 [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001110 }
Evan Cheng54fc97d2008-04-19 01:30:48 +00001111}
1112
Evan Cheng53301922008-07-12 02:23:19 +00001113// Instructions to support atomic operations
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001114def LWARX : XForm_1<31, 20, (outs gprc:$rD), (ins memrr:$src),
Evan Cheng53301922008-07-12 02:23:19 +00001115 "lwarx $rD, $src", LdStLWARX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001116 [(set i32:$rD, (PPClarx xoaddr:$src))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001117
1118let Defs = [CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001119def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
Evan Cheng53301922008-07-12 02:23:19 +00001120 "stwcx. $rS, $dst", LdStSTWCX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001121 [(PPCstcx i32:$rS, xoaddr:$dst)]>,
Evan Cheng53301922008-07-12 02:23:19 +00001122 isDOT;
1123
Dan Gohmaneffc8c52010-05-14 16:46:02 +00001124let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
Hal Finkel20b529b2012-04-01 04:44:16 +00001125def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStLoad, [(trap)]>;
Nate Begeman1db3c922008-08-11 17:36:31 +00001126
Chris Lattner26e552b2006-11-14 19:19:53 +00001127//===----------------------------------------------------------------------===//
1128// PPC32 Load Instructions.
Nate Begeman07aada82004-08-30 02:28:06 +00001129//
Chris Lattner26e552b2006-11-14 19:19:53 +00001130
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001131// Unindexed (r+i) Loads.
Dan Gohman15511cf2008-12-03 18:15:48 +00001132let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001133def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001134 "lbz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001135 [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001136def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001137 "lha $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001138 [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
Chris Lattnerfd977342006-03-13 05:15:10 +00001139 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001140def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001141 "lhz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001142 [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001143def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001144 "lwz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001145 [(set i32:$rD, (load iaddr:$src))]>;
Chris Lattner302bf9c2006-11-08 02:13:12 +00001146
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001147def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001148 "lfs $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001149 [(set f32:$rD, (load iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001150def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
Chris Lattner4eab7142006-11-10 02:08:47 +00001151 "lfd $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001152 [(set f64:$rD, (load iaddr:$src))]>;
Chris Lattner4eab7142006-11-10 02:08:47 +00001153
Chris Lattner4eab7142006-11-10 02:08:47 +00001154
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001155// Unindexed (r+i) Loads with Update (preinc).
Hal Finkelfa1d1022013-04-07 05:46:58 +00001156let mayLoad = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001157def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001158 "lbzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001159 []>, RegConstraint<"$addr.reg = $ea_result">,
1160 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001161
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001162def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001163 "lhau $rD, $addr", LdStLHAU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001164 []>, RegConstraint<"$addr.reg = $ea_result">,
1165 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001166
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001167def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001168 "lhzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001169 []>, RegConstraint<"$addr.reg = $ea_result">,
1170 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001171
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001172def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001173 "lwzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001174 []>, RegConstraint<"$addr.reg = $ea_result">,
1175 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001176
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001177def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001178 "lfsu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001179 []>, RegConstraint<"$addr.reg = $ea_result">,
1180 NoEncode<"$ea_result">;
1181
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001182def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001183 "lfdu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001184 []>, RegConstraint<"$addr.reg = $ea_result">,
1185 NoEncode<"$ea_result">;
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001186
1187
1188// Indexed (r+r) Loads with Update (preinc).
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001189def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001190 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001191 "lbzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001192 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001193 NoEncode<"$ea_result">;
1194
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001195def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001196 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001197 "lhaux $rD, $addr", LdStLHAU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001198 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001199 NoEncode<"$ea_result">;
1200
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001201def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001202 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001203 "lhzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001204 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001205 NoEncode<"$ea_result">;
1206
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001207def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001208 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001209 "lwzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001210 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001211 NoEncode<"$ea_result">;
1212
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001213def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001214 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001215 "lfsux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001216 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001217 NoEncode<"$ea_result">;
1218
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001219def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001220 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001221 "lfdux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001222 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001223 NoEncode<"$ea_result">;
Nate Begemanb816f022004-10-07 22:30:03 +00001224}
Dan Gohman41474ba2008-12-03 02:30:17 +00001225}
Chris Lattner302bf9c2006-11-08 02:13:12 +00001226
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001227// Indexed (r+r) Loads.
Chris Lattner26e552b2006-11-14 19:19:53 +00001228//
Dan Gohman15511cf2008-12-03 18:15:48 +00001229let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001230def LBZX : XForm_1<31, 87, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001231 "lbzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001232 [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001233def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
Chris Lattner26e552b2006-11-14 19:19:53 +00001234 "lhax $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001235 [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001236 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001237def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001238 "lhzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001239 [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001240def LWZX : XForm_1<31, 23, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001241 "lwzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001242 [(set i32:$rD, (load xaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001243
1244
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001245def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001246 "lhbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001247 [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001248def LWBRX : XForm_1<31, 534, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001249 "lwbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001250 [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001251
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001252def LFSX : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001253 "lfsx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001254 [(set f32:$frD, (load xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001255def LFDX : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001256 "lfdx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001257 [(set f64:$frD, (load xaddr:$src))]>;
Hal Finkel8049ab12013-03-31 10:12:51 +00001258
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001259def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8049ab12013-03-31 10:12:51 +00001260 "lfiwax $frD, $src", LdStLFD,
1261 [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001262def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel46479192013-04-01 17:52:07 +00001263 "lfiwzx $frD, $src", LdStLFD,
1264 [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001265}
1266
1267//===----------------------------------------------------------------------===//
1268// PPC32 Store Instructions.
1269//
1270
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001271// Unindexed (r+i) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001272let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001273def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001274 "stb $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001275 [(truncstorei8 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001276def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001277 "sth $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001278 [(truncstorei16 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001279def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001280 "stw $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001281 [(store i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001282def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001283 "stfs $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001284 [(store f32:$rS, iaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001285def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001286 "stfd $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001287 [(store f64:$rS, iaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001288}
1289
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001290// Unindexed (r+i) Stores with Update (preinc).
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001291let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001292def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001293 "stbu $rS, $dst", LdStStoreUpd, []>,
1294 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001295def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001296 "sthu $rS, $dst", LdStStoreUpd, []>,
1297 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001298def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001299 "stwu $rS, $dst", LdStStoreUpd, []>,
1300 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001301def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001302 "stfsu $rS, $dst", LdStSTFDU, []>,
1303 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001304def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001305 "stfdu $rS, $dst", LdStSTFDU, []>,
1306 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001307}
1308
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001309// Patterns to match the pre-inc stores. We can't put the patterns on
1310// the instruction definitions directly as ISel wants the address base
1311// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001312def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1313 (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1314def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1315 (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1316def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1317 (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1318def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1319 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1320def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1321 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001322
Chris Lattner26e552b2006-11-14 19:19:53 +00001323// Indexed (r+r) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001324let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001325def STBX : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001326 "stbx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001327 [(truncstorei8 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001328 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001329def STHX : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001330 "sthx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001331 [(truncstorei16 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001332 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001333def STWX : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001334 "stwx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001335 [(store i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001336 PPC970_DGroup_Cracked;
Hal Finkelac81cc32012-06-19 02:34:32 +00001337
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001338def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001339 "sthbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001340 [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001341 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001342def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001343 "stwbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001344 [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001345 PPC970_DGroup_Cracked;
1346
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001347def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001348 "stfiwx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001349 [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001350
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001351def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001352 "stfsx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001353 [(store f32:$frS, xaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001354def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001355 "stfdx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001356 [(store f64:$frS, xaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001357}
1358
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001359// Indexed (r+r) Stores with Update (preinc).
1360let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001361def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001362 "stbux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001363 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001364 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001365def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001366 "sthux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001367 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001368 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001369def STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001370 "stwux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001371 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001372 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001373def STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001374 "stfsux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001375 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001376 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001377def STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001378 "stfdux $rS, $dst", LdStSTFDU, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001379 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001380 PPC970_DGroup_Cracked;
1381}
1382
1383// Patterns to match the pre-inc stores. We can't put the patterns on
1384// the instruction definitions directly as ISel wants the address base
1385// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001386def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1387 (STBUX $rS, $ptrreg, $ptroff)>;
1388def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1389 (STHUX $rS, $ptrreg, $ptroff)>;
1390def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1391 (STWUX $rS, $ptrreg, $ptroff)>;
1392def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1393 (STFSUX $rS, $ptrreg, $ptroff)>;
1394def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1395 (STFDUX $rS, $ptrreg, $ptroff)>;
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001396
Dale Johannesenf87d6c02008-08-22 17:20:54 +00001397def SYNC : XForm_24_sync<31, 598, (outs), (ins),
1398 "sync", LdStSync,
1399 [(int_ppc_sync)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001400
1401//===----------------------------------------------------------------------===//
1402// PPC32 Arithmetic Instructions.
1403//
Chris Lattner302bf9c2006-11-08 02:13:12 +00001404
Chris Lattner88d211f2006-03-12 09:13:49 +00001405let PPC970_Unit = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001406def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001407 "addi $rD, $rA, $imm", IntSimple,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001408 [(set i32:$rD, (add i32:$rA, imm32SExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001409let BaseName = "addic" in {
1410let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001411def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001412 "addic $rD, $rA, $imm", IntGeneral,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001413 [(set i32:$rD, (addc i32:$rA, imm32SExt16:$imm))]>,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001414 RecFormRel, PPC970_DGroup_Cracked;
Hal Finkel59857462013-04-12 18:17:57 +00001415let Defs = [CARRY, CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001416def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001417 "addic. $rD, $rA, $imm", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001418 []>, isDOT, RecFormRel;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001419}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001420def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001421 "addis $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001422 [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
Ulrich Weigand3d386422013-03-26 10:57:16 +00001423let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001424def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$sym),
Jim Laskey53842142005-10-19 19:51:16 +00001425 "la $rD, $sym($rA)", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001426 [(set i32:$rD, (add i32:$rA,
Chris Lattner490ad082005-11-17 17:52:01 +00001427 (PPClo tglobaladdr:$sym, 0)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001428def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001429 "mulli $rD, $rA, $imm", IntMulLI,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001430 [(set i32:$rD, (mul i32:$rA, imm32SExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001431let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001432def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001433 "subfic $rD, $rA, $imm", IntGeneral,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001434 [(set i32:$rD, (subc imm32SExt16:$imm, i32:$rA))]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001435
Hal Finkelf3c38282012-08-28 02:10:33 +00001436let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001437 def LI : DForm_2_r0<14, (outs gprc:$rD), (ins symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001438 "li $rD, $imm", IntSimple,
Bill Schmidt5cd01f72013-05-22 20:09:24 +00001439 [(set i32:$rD, imm32SExt16:$imm)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001440 def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001441 "lis $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001442 [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001443}
Chris Lattner88d211f2006-03-12 09:13:49 +00001444}
Chris Lattner26e552b2006-11-14 19:19:53 +00001445
Chris Lattner88d211f2006-03-12 09:13:49 +00001446let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel59857462013-04-12 18:17:57 +00001447let Defs = [CR0] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001448def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001449 "andi. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001450 [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001451 isDOT;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001452def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001453 "andis. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001454 [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001455 isDOT;
Hal Finkel59857462013-04-12 18:17:57 +00001456}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001457def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001458 "ori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001459 [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001460def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001461 "oris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001462 [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001463def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001464 "xori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001465 [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001466def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001467 "xoris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001468 [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
Hal Finkel16803092012-06-12 19:01:24 +00001469def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntSimple,
Nate Begeman09761222005-12-09 23:54:18 +00001470 []>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001471let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001472 def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001473 "cmpwi $crD, $rA, $imm", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001474 def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001475 "cmplwi $dst, $src1, $src2", IntCompare>;
1476}
Chris Lattner88d211f2006-03-12 09:13:49 +00001477}
Nate Begemaned428532004-09-04 05:00:00 +00001478
Hal Finkel171a8ad2013-04-12 02:18:09 +00001479let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001480defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001481 "nand", "$rA, $rS, $rB", IntSimple,
1482 [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001483defm AND : XForm_6r<31, 28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001484 "and", "$rA, $rS, $rB", IntSimple,
1485 [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001486defm ANDC : XForm_6r<31, 60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001487 "andc", "$rA, $rS, $rB", IntSimple,
1488 [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001489defm OR : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001490 "or", "$rA, $rS, $rB", IntSimple,
1491 [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001492defm NOR : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001493 "nor", "$rA, $rS, $rB", IntSimple,
1494 [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001495defm ORC : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001496 "orc", "$rA, $rS, $rB", IntSimple,
1497 [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001498defm EQV : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001499 "eqv", "$rA, $rS, $rB", IntSimple,
1500 [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001501defm XOR : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001502 "xor", "$rA, $rS, $rB", IntSimple,
1503 [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001504defm SLW : XForm_6r<31, 24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001505 "slw", "$rA, $rS, $rB", IntGeneral,
1506 [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001507defm SRW : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001508 "srw", "$rA, $rS, $rB", IntGeneral,
1509 [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001510defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001511 "sraw", "$rA, $rS, $rB", IntShift,
1512 [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001513}
Chris Lattner26e552b2006-11-14 19:19:53 +00001514
Chris Lattner88d211f2006-03-12 09:13:49 +00001515let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001516let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001517defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
Hal Finkel59857462013-04-12 18:17:57 +00001518 "srawi", "$rA, $rS, $SH", IntShift,
1519 [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001520defm CNTLZW : XForm_11r<31, 26, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001521 "cntlzw", "$rA, $rS", IntGeneral,
1522 [(set i32:$rA, (ctlz i32:$rS))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001523defm EXTSB : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001524 "extsb", "$rA, $rS", IntSimple,
1525 [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001526defm EXTSH : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001527 "extsh", "$rA, $rS", IntSimple,
1528 [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1529}
Hal Finkel00e86ad2013-04-15 02:37:46 +00001530let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001531 def CMPW : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001532 "cmpw $crD, $rA, $rB", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001533 def CMPLW : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001534 "cmplw $crD, $rA, $rB", IntCompare>;
1535}
Chris Lattner88d211f2006-03-12 09:13:49 +00001536}
1537let PPC970_Unit = 3 in { // FPU Operations.
Evan Cheng64d80e32007-07-19 01:14:50 +00001538//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Jim Laskey53842142005-10-19 19:51:16 +00001539// "fcmpo $crD, $fA, $fB", FPCompare>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001540let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001541 def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001542 "fcmpu $crD, $fA, $fB", FPCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001543 def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001544 "fcmpu $crD, $fA, $fB", FPCompare>;
1545}
Chris Lattner26e552b2006-11-14 19:19:53 +00001546
Dale Johannesenb384ab92008-10-29 18:26:45 +00001547let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001548 let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001549 defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001550 "fctiwz", "$frD, $frB", FPGeneral,
1551 [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001552
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001553 defm FRSP : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001554 "frsp", "$frD, $frB", FPGeneral,
1555 [(set f32:$frD, (fround f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001556
1557 // The frin -> nearbyint mapping is valid only in fast-math mode.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001558 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001559 defm FRIND : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001560 "frin", "$frD, $frB", FPGeneral,
1561 [(set f64:$frD, (fnearbyint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001562 defm FRINS : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001563 "frin", "$frD, $frB", FPGeneral,
1564 [(set f32:$frD, (fnearbyint f32:$frB))]>;
1565 }
Hal Finkelf5d5c432013-03-29 08:57:48 +00001566
Hal Finkel0882fd62013-03-29 19:41:55 +00001567 // These pseudos expand to rint but also set FE_INEXACT when the result does
1568 // not equal the argument.
1569 let usesCustomInserter = 1, Defs = [RM] in { // FIXME: Model FPSCR!
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001570 def FRINDrint : Pseudo<(outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001571 "#FRINDrint", [(set f64:$frD, (frint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001572 def FRINSrint : Pseudo<(outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001573 "#FRINSrint", [(set f32:$frD, (frint f32:$frB))]>;
1574 }
1575
Hal Finkel171a8ad2013-04-12 02:18:09 +00001576 let neverHasSideEffects = 1 in {
1577 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001578 defm FRIPD : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001579 "frip", "$frD, $frB", FPGeneral,
1580 [(set f64:$frD, (fceil f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001581 defm FRIPS : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001582 "frip", "$frD, $frB", FPGeneral,
1583 [(set f32:$frD, (fceil f32:$frB))]>;
1584 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001585 defm FRIZD : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001586 "friz", "$frD, $frB", FPGeneral,
1587 [(set f64:$frD, (ftrunc f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001588 defm FRIZS : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001589 "friz", "$frD, $frB", FPGeneral,
1590 [(set f32:$frD, (ftrunc f32:$frB))]>;
1591 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001592 defm FRIMD : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001593 "frim", "$frD, $frB", FPGeneral,
1594 [(set f64:$frD, (ffloor f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001595 defm FRIMS : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001596 "frim", "$frD, $frB", FPGeneral,
1597 [(set f32:$frD, (ffloor f32:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001598
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001599 defm FSQRT : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001600 "fsqrt", "$frD, $frB", FPSqrt,
1601 [(set f64:$frD, (fsqrt f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001602 defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001603 "fsqrts", "$frD, $frB", FPSqrt,
1604 [(set f32:$frD, (fsqrt f32:$frB))]>;
1605 }
Dale Johannesenb384ab92008-10-29 18:26:45 +00001606 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001607}
Chris Lattner919c0322005-10-01 01:35:02 +00001608
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001609/// Note that FMR is defined as pseudo-ops on the PPC970 because they are
Chris Lattner9d5da1d2006-03-24 07:12:19 +00001610/// often coalesced away and we don't want the dispatch group builder to think
Chris Lattner88d211f2006-03-12 09:13:49 +00001611/// that they will fill slots (which could cause the load of a LSU reject to
1612/// sneak into a d-group with a store).
Hal Finkelfa1cac22013-04-07 04:56:16 +00001613let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001614defm FMR : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001615 "fmr", "$frD, $frB", FPGeneral,
1616 []>, // (set f32:$frD, f32:$frB)
1617 PPC970_Unit_Pseudo;
Chris Lattner919c0322005-10-01 01:35:02 +00001618
Hal Finkel171a8ad2013-04-12 02:18:09 +00001619let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Chris Lattner919c0322005-10-01 01:35:02 +00001620// These are artificially split into two different forms, for 4/8 byte FP.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001621defm FABSS : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001622 "fabs", "$frD, $frB", FPGeneral,
1623 [(set f32:$frD, (fabs f32:$frB))]>;
1624let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001625defm FABSD : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001626 "fabs", "$frD, $frB", FPGeneral,
1627 [(set f64:$frD, (fabs f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001628defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001629 "fnabs", "$frD, $frB", FPGeneral,
1630 [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
1631let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001632defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001633 "fnabs", "$frD, $frB", FPGeneral,
1634 [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001635defm FNEGS : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001636 "fneg", "$frD, $frB", FPGeneral,
1637 [(set f32:$frD, (fneg f32:$frB))]>;
1638let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001639defm FNEGD : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001640 "fneg", "$frD, $frB", FPGeneral,
1641 [(set f64:$frD, (fneg f64:$frB))]>;
Hal Finkel827307b2013-04-03 04:01:11 +00001642
1643// Reciprocal estimates.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001644defm FRE : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001645 "fre", "$frD, $frB", FPGeneral,
1646 [(set f64:$frD, (PPCfre f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001647defm FRES : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001648 "fres", "$frD, $frB", FPGeneral,
1649 [(set f32:$frD, (PPCfre f32:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001650defm FRSQRTE : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001651 "frsqrte", "$frD, $frB", FPGeneral,
1652 [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001653defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001654 "frsqrtes", "$frD, $frB", FPGeneral,
1655 [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001656}
Nate Begeman6b3dc552004-08-29 22:45:13 +00001657
Nate Begeman07aada82004-08-30 02:28:06 +00001658// XL-Form instructions. condition register logical ops.
1659//
Hal Finkelaecbe242013-04-07 05:16:57 +00001660let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001661def MCRF : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
Chris Lattner88d211f2006-03-12 09:13:49 +00001662 "mcrf $BF, $BFA", BrMCR>,
1663 PPC970_DGroup_First, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001664
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001665def CREQV : XLForm_1<19, 289, (outs crbitrc:$CRD),
1666 (ins crbitrc:$CRA, crbitrc:$CRB),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001667 "creqv $CRD, $CRA, $CRB", BrCR,
1668 []>;
1669
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001670def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
1671 (ins crbitrc:$CRA, crbitrc:$CRB),
Nicolas Geoffray0404cd92008-03-10 14:12:10 +00001672 "cror $CRD, $CRA, $CRB", BrCR,
1673 []>;
1674
Ulrich Weigand3d386422013-03-26 10:57:16 +00001675let isCodeGenOnly = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001676def CRSET : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001677 "creqv $dst, $dst, $dst", BrCR,
1678 []>;
1679
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001680def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
Roman Divacky0aaa9192011-08-30 17:04:16 +00001681 "crxor $dst, $dst, $dst", BrCR,
1682 []>;
1683
Hal Finkel82b38212012-08-28 02:10:27 +00001684let Defs = [CR1EQ], CRD = 6 in {
1685def CR6SET : XLForm_1_ext<19, 289, (outs), (ins),
1686 "creqv 6, 6, 6", BrCR,
1687 [(PPCcr6set)]>;
1688
1689def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
1690 "crxor 6, 6, 6", BrCR,
1691 [(PPCcr6unset)]>;
1692}
Ulrich Weigand3d386422013-03-26 10:57:16 +00001693}
Hal Finkel82b38212012-08-28 02:10:27 +00001694
Chris Lattner88d211f2006-03-12 09:13:49 +00001695// XFX-Form instructions. Instructions that deal with SPRs.
Nate Begeman07aada82004-08-30 02:28:06 +00001696//
Dale Johannesen639076f2008-10-23 20:41:28 +00001697let Uses = [CTR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001698def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001699 "mfctr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001700 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001701}
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001702let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001703def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001704 "mtctr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001705 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001706}
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00001707let hasSideEffects = 1, isCodeGenOnly = 1, Defs = [CTR] in {
1708let Pattern = [(int_ppc_mtctr i32:$rS)] in
Hal Finkel85c08b02013-05-20 16:08:37 +00001709def MTCTRloop : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
1710 "mtctr $rS", SprMTSPR>,
1711 PPC970_DGroup_First, PPC970_Unit_FXU;
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00001712}
Chris Lattner1877ec92006-03-13 21:52:10 +00001713
Dale Johannesen639076f2008-10-23 20:41:28 +00001714let Defs = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001715def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001716 "mtlr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001717 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001718}
1719let Uses = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001720def MFLR : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001721 "mflr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001722 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001723}
Chris Lattner1877ec92006-03-13 21:52:10 +00001724
1725// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1726// a GPR on the PPC970. As such, copies in and out have the same performance
1727// characteristics as an OR instruction.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001728def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +00001729 "mtspr 256, $rS", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001730 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001731def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
Chris Lattner1877ec92006-03-13 21:52:10 +00001732 "mfspr $rT, 256", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001733 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattner1877ec92006-03-13 21:52:10 +00001734
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001735let isCodeGenOnly = 1 in {
1736 def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001737 (outs VRSAVERC:$reg), (ins gprc:$rS),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001738 "mtspr 256, $rS", IntGeneral>,
1739 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001740 def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001741 (ins VRSAVERC:$reg),
1742 "mfspr $rT, 256", IntGeneral>,
1743 PPC970_DGroup_First, PPC970_Unit_FXU;
1744}
1745
1746// SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
1747// so we'll need to scavenge a register for it.
1748let mayStore = 1 in
1749def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
1750 "#SPILL_VRSAVE", []>;
1751
1752// RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
1753// spilled), so we'll need to scavenge a register for it.
1754let mayLoad = 1 in
1755def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
1756 "#RESTORE_VRSAVE", []>;
1757
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001758let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001759def MTCRF : XFXForm_5<31, 144, (outs crbitm:$FXM), (ins gprc:$rS),
Chris Lattner88d211f2006-03-12 09:13:49 +00001760 "mtcrf $FXM, $rS", BrMCRX>,
1761 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen5f07d522010-05-20 17:48:26 +00001762
1763// This is a pseudo for MFCR, which implicitly uses all 8 of its subregisters;
1764// declaring that here gives the local register allocator problems with this:
Dale Johannesenb384ab92008-10-29 18:26:45 +00001765// vreg = MCRF CR0
1766// MFCR <kill of whatever preg got assigned to vreg>
Dale Johannesen5f07d522010-05-20 17:48:26 +00001767// while not declaring it breaks DeadMachineInstructionElimination.
1768// As it turns out, in all cases where we currently use this,
1769// we're only interested in one subregister of it. Represent this in the
1770// instruction to keep the register allocator from becoming confused.
Chris Lattner2ead4582010-11-14 22:03:15 +00001771//
1772// FIXME: Make this a real Pseudo instruction when the JIT switches to MC.
Ulrich Weigand3d386422013-03-26 10:57:16 +00001773let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001774def MFCRpseud: XFXForm_3<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Will Schmidt91638152012-10-04 18:14:28 +00001775 "#MFCRpseud", SprMFCR>,
Chris Lattner6d92cad2006-03-26 10:06:40 +00001776 PPC970_MicroCode, PPC970_Unit_CRU;
Chris Lattner2ead4582010-11-14 22:03:15 +00001777
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001778def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Hal Finkel0a1852b2012-06-11 15:43:15 +00001779 "mfocrf $rT, $FXM", SprMFCR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001780 PPC970_DGroup_First, PPC970_Unit_CRU;
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001781} // neverHasSideEffects = 1
1782
Hal Finkel63496f62013-04-13 23:06:15 +00001783let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001784def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001785 "mfcr $rT", SprMFCR>,
1786 PPC970_MicroCode, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001787
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001788// Pseudo instruction to perform FADD in round-to-zero mode.
1789let usesCustomInserter = 1, Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001790 def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001791 [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
1792}
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001793
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001794// The above pseudo gets expanded to make use of the following instructions
1795// to manipulate FPSCR. Note that FPSCR is not modeled at the DAG level.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001796let Uses = [RM], Defs = [RM] in {
1797 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001798 "mtfsb0 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001799 PPC970_DGroup_Single, PPC970_Unit_FPU;
1800 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001801 "mtfsb1 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001802 PPC970_DGroup_Single, PPC970_Unit_FPU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001803 def MTFSF : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001804 "mtfsf $FM, $rT", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001805 PPC970_DGroup_Single, PPC970_Unit_FPU;
1806}
1807let Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001808 def MFFS : XForm_42<63, 583, (outs f8rc:$rT), (ins),
Dale Johannesenb384ab92008-10-29 18:26:45 +00001809 "mffs $rT", IntMFFS,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001810 [(set f64:$rT, (PPCmffs))]>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001811 PPC970_DGroup_Single, PPC970_Unit_FPU;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001812}
1813
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001814
Hal Finkel171a8ad2013-04-12 02:18:09 +00001815let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Nate Begeman07aada82004-08-30 02:28:06 +00001816// XO-Form instructions. Arithmetic instructions that can set overflow bit
1817//
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001818defm ADD4 : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001819 "add", "$rT, $rA, $rB", IntSimple,
1820 [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001821defm ADDC : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001822 "addc", "$rT, $rA, $rB", IntGeneral,
1823 [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
1824 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001825defm DIVW : XOForm_1r<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001826 "divw", "$rT, $rA, $rB", IntDivW,
1827 [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>,
1828 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001829defm DIVWU : XOForm_1r<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001830 "divwu", "$rT, $rA, $rB", IntDivW,
1831 [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>,
1832 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001833defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001834 "mulhw", "$rT, $rA, $rB", IntMulHW,
1835 [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001836defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001837 "mulhwu", "$rT, $rA, $rB", IntMulHWU,
1838 [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001839defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001840 "mullw", "$rT, $rA, $rB", IntMulHW,
1841 [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001842defm SUBF : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001843 "subf", "$rT, $rA, $rB", IntGeneral,
1844 [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001845defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001846 "subfc", "$rT, $rA, $rB", IntGeneral,
1847 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
1848 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001849defm NEG : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001850 "neg", "$rT, $rA", IntSimple,
1851 [(set i32:$rT, (ineg i32:$rA))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001852let Uses = [CARRY] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001853defm ADDE : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001854 "adde", "$rT, $rA, $rB", IntGeneral,
1855 [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001856defm ADDME : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001857 "addme", "$rT, $rA", IntGeneral,
1858 [(set i32:$rT, (adde i32:$rA, -1))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001859defm ADDZE : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001860 "addze", "$rT, $rA", IntGeneral,
1861 [(set i32:$rT, (adde i32:$rA, 0))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001862defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001863 "subfe", "$rT, $rA, $rB", IntGeneral,
1864 [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001865defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001866 "subfme", "$rT, $rA", IntGeneral,
1867 [(set i32:$rT, (sube -1, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001868defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001869 "subfze", "$rT, $rA", IntGeneral,
1870 [(set i32:$rT, (sube 0, i32:$rA))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001871}
Dale Johannesen8dffc812009-09-18 20:15:22 +00001872}
Nate Begeman07aada82004-08-30 02:28:06 +00001873
1874// A-Form instructions. Most of the instructions executed in the FPU are of
1875// this type.
1876//
Hal Finkel171a8ad2013-04-12 02:18:09 +00001877let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001878let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001879 defm FMADD : AForm_1r<63, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001880 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001881 "fmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001882 [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001883 defm FMADDS : AForm_1r<59, 29,
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 "fmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001886 [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001887 defm FMSUB : AForm_1r<63, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001888 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001889 "fmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001890 [(set f64:$FRT,
1891 (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001892 defm FMSUBS : AForm_1r<59, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001893 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001894 "fmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001895 [(set f32:$FRT,
1896 (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001897 defm FNMADD : AForm_1r<63, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001898 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001899 "fnmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001900 [(set f64:$FRT,
1901 (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001902 defm FNMADDS : AForm_1r<59, 31,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001903 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001904 "fnmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001905 [(set f32:$FRT,
1906 (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001907 defm FNMSUB : AForm_1r<63, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001908 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001909 "fnmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001910 [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
1911 (fneg f64:$FRB))))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001912 defm FNMSUBS : AForm_1r<59, 30,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001913 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001914 "fnmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001915 [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
1916 (fneg f32:$FRB))))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001917}
Chris Lattner43f07a42005-10-02 07:07:49 +00001918// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1919// having 4 of these, force the comparison to always be an 8-byte double (code
1920// should use an FMRSD if the input comparison value really wants to be a float)
Chris Lattner867940d2005-10-02 06:58:23 +00001921// and 4/8 byte forms for the result and operand type..
Hal Finkel171a8ad2013-04-12 02:18:09 +00001922let Interpretation64Bit = 1 in
1923defm FSELD : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001924 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001925 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1926 [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
1927defm FSELS : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001928 (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001929 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1930 [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001931let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001932 defm FADD : AForm_2r<63, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001933 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001934 "fadd", "$FRT, $FRA, $FRB", FPAddSub,
1935 [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
1936 defm FADDS : AForm_2r<59, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001937 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001938 "fadds", "$FRT, $FRA, $FRB", FPGeneral,
1939 [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
1940 defm FDIV : AForm_2r<63, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001941 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001942 "fdiv", "$FRT, $FRA, $FRB", FPDivD,
1943 [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
1944 defm FDIVS : AForm_2r<59, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001945 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001946 "fdivs", "$FRT, $FRA, $FRB", FPDivS,
1947 [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
1948 defm FMUL : AForm_3r<63, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001949 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001950 "fmul", "$FRT, $FRA, $FRC", FPFused,
1951 [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
1952 defm FMULS : AForm_3r<59, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001953 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001954 "fmuls", "$FRT, $FRA, $FRC", FPGeneral,
1955 [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
1956 defm FSUB : AForm_2r<63, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001957 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001958 "fsub", "$FRT, $FRA, $FRB", FPAddSub,
1959 [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
1960 defm FSUBS : AForm_2r<59, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001961 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001962 "fsubs", "$FRT, $FRA, $FRB", FPGeneral,
1963 [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001964 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001965}
Nate Begeman07aada82004-08-30 02:28:06 +00001966
Hal Finkel946a8112013-04-07 15:06:53 +00001967let neverHasSideEffects = 1 in {
Chris Lattner88d211f2006-03-12 09:13:49 +00001968let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel946a8112013-04-07 15:06:53 +00001969 let isSelect = 1 in
Ulrich Weigandbc40df32012-11-13 19:14:19 +00001970 def ISEL : AForm_4<31, 15,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001971 (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
Hal Finkel009f7af2012-06-22 23:10:08 +00001972 "isel $rT, $rA, $rB, $cond", IntGeneral,
1973 []>;
1974}
1975
1976let PPC970_Unit = 1 in { // FXU Operations.
Nate Begemancc8bd9c2004-08-31 02:28:08 +00001977// M-Form instructions. rotate and mask instructions.
1978//
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001979let isCommutable = 1 in {
Chris Lattner043870d2005-09-09 18:17:41 +00001980// RLWIMI can be commuted if the rotate amount is zero.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001981defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
1982 (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001983 u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME", IntRotate,
1984 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1985 NoEncode<"$rSi">;
Nate Begeman2d4c98d2004-10-16 20:43:38 +00001986}
Hal Finkel171a8ad2013-04-12 02:18:09 +00001987let BaseName = "rlwinm" in {
Chris Lattner14522e32005-04-19 05:21:30 +00001988def RLWINM : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001989 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Jim Laskey53842142005-10-19 19:51:16 +00001990 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001991 []>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +00001992let Defs = [CR0] in
Chris Lattner14522e32005-04-19 05:21:30 +00001993def RLWINMo : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001994 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001995 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1996 []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
1997}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001998defm RLWNM : MForm_2r<23, (outs gprc:$rA),
1999 (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00002000 "rlwnm", "$rA, $rS, $rB, $MB, $ME", IntGeneral,
2001 []>;
Chris Lattner88d211f2006-03-12 09:13:49 +00002002}
Hal Finkel946a8112013-04-07 15:06:53 +00002003} // neverHasSideEffects = 1
Chris Lattner3c0f9cc2006-03-20 06:15:45 +00002004
Chris Lattner2eb25172005-09-09 00:39:56 +00002005//===----------------------------------------------------------------------===//
2006// PowerPC Instruction Patterns
2007//
2008
Chris Lattner30e21a42005-09-26 22:20:16 +00002009// Arbitrary immediate support. Implement in terms of LIS/ORI.
2010def : Pat<(i32 imm:$imm),
2011 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
Chris Lattner91da8622005-09-28 17:13:15 +00002012
2013// Implement the 'not' operation with the NOR instruction.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002014def NOT : Pat<(not i32:$in),
2015 (NOR $in, $in)>;
Chris Lattner91da8622005-09-28 17:13:15 +00002016
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002017// ADD an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002018def : Pat<(add i32:$in, imm:$imm),
2019 (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002020// OR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002021def : Pat<(or i32:$in, imm:$imm),
2022 (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002023// XOR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002024def : Pat<(xor i32:$in, imm:$imm),
2025 (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002026// SUBFIC
Bill Schmidt5cd01f72013-05-22 20:09:24 +00002027def : Pat<(sub imm32SExt16:$imm, i32:$in),
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002028 (SUBFIC $in, imm:$imm)>;
Chris Lattner8be1fa52005-10-19 01:38:02 +00002029
Chris Lattner956f43c2006-06-16 20:22:01 +00002030// SHL/SRL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002031def : Pat<(shl i32:$in, (i32 imm:$imm)),
2032 (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
2033def : Pat<(srl i32:$in, (i32 imm:$imm)),
2034 (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
Nate Begeman2d5aff72005-10-19 18:42:01 +00002035
Nate Begeman35ef9132006-01-11 21:21:00 +00002036// ROTL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002037def : Pat<(rotl i32:$in, i32:$sh),
2038 (RLWNM $in, $sh, 0, 31)>;
2039def : Pat<(rotl i32:$in, (i32 imm:$imm)),
2040 (RLWINM $in, imm:$imm, 0, 31)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002041
Nate Begemanf42f1332006-09-22 05:01:56 +00002042// RLWNM
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002043def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
2044 (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
Nate Begemanf42f1332006-09-22 05:01:56 +00002045
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002046// Calls
Ulrich Weigand86765fb2013-03-22 15:24:13 +00002047def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
2048 (BL tglobaladdr:$dst)>;
2049def : Pat<(PPCcall (i32 texternalsym:$dst)),
2050 (BL texternalsym:$dst)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002051
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002052
2053def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
2054 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
2055
2056def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
2057 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
2058
2059def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
2060 (TCRETURNri CTRRC:$dst, imm:$imm)>;
2061
2062
2063
Chris Lattner860e8862005-11-17 07:30:41 +00002064// Hi and Lo for Darwin Global Addresses.
Chris Lattnerd717b192005-12-11 07:45:47 +00002065def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
2066def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
2067def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
2068def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
Nate Begeman37efe672006-04-22 18:53:45 +00002069def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
2070def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilson3d90dbe2009-11-04 21:31:18 +00002071def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
2072def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002073def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
2074 (ADDIS $in, tglobaltlsaddr:$g)>;
2075def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
Ulrich Weigand2b0850b2013-03-26 10:55:20 +00002076 (ADDI $in, tglobaltlsaddr:$g)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002077def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
2078 (ADDIS $in, tglobaladdr:$g)>;
2079def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
2080 (ADDIS $in, tconstpool:$g)>;
2081def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
2082 (ADDIS $in, tjumptable:$g)>;
2083def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
2084 (ADDIS $in, tblockaddress:$g)>;
Chris Lattner860e8862005-11-17 07:30:41 +00002085
Chris Lattner4172b102005-12-06 02:10:38 +00002086// Standard shifts. These are represented separately from the real shifts above
2087// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
2088// amounts.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002089def : Pat<(sra i32:$rS, i32:$rB),
2090 (SRAW $rS, $rB)>;
2091def : Pat<(srl i32:$rS, i32:$rB),
2092 (SRW $rS, $rB)>;
2093def : Pat<(shl i32:$rS, i32:$rB),
2094 (SLW $rS, $rB)>;
Chris Lattner4172b102005-12-06 02:10:38 +00002095
Evan Cheng466685d2006-10-09 20:57:25 +00002096def : Pat<(zextloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002097 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002098def : Pat<(zextloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002099 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002100def : Pat<(extloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002101 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002102def : Pat<(extloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002103 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002104def : Pat<(extloadi8 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002105 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002106def : Pat<(extloadi8 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002107 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002108def : Pat<(extloadi16 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002109 (LHZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002110def : Pat<(extloadi16 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002111 (LHZX xaddr:$src)>;
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00002112def : Pat<(f64 (extloadf32 iaddr:$src)),
2113 (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
2114def : Pat<(f64 (extloadf32 xaddr:$src)),
2115 (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
2116
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002117def : Pat<(f64 (fextend f32:$src)),
2118 (COPY_TO_REGCLASS $src, F8RC)>;
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002119
Eli Friedman14648462011-07-27 22:21:52 +00002120def : Pat<(atomic_fence (imm), (imm)), (SYNC)>;
2121
Hal Finkel827307b2013-04-03 04:01:11 +00002122// Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2123def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2124 (FNMSUB $A, $C, $B)>;
2125def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2126 (FNMSUB $A, $C, $B)>;
2127def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2128 (FNMSUBS $A, $C, $B)>;
2129def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2130 (FNMSUBS $A, $C, $B)>;
2131
Chris Lattnerb22a04d2006-03-25 07:51:43 +00002132include "PPCInstrAltivec.td"
Chris Lattner956f43c2006-06-16 20:22:01 +00002133include "PPCInstr64Bit.td"
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002134
Ulrich Weigand8e4ba8f2013-05-03 19:51:09 +00002135
2136//===----------------------------------------------------------------------===//
2137// PowerPC Instructions used for assembler/disassembler only
2138//
2139
2140def ISYNC : XLForm_2_ext<19, 150, 0, 0, 0, (outs), (ins),
2141 "isync", SprISYNC, []>;
2142
2143def ICBI : XForm_1a<31, 982, (outs), (ins memrr:$src),
2144 "icbi $src", LdStICBI, []>;
2145
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002146//===----------------------------------------------------------------------===//
2147// PowerPC Assembler Instruction Aliases
2148//
2149
2150// Pseudo-instructions for alternate assembly syntax (never used by codegen).
2151// These are aliases that require C++ handling to convert to the target
2152// instruction, while InstAliases can be handled directly by tblgen.
2153class PPCAsmPseudo<string asm, dag iops>
2154 : Instruction {
2155 let Namespace = "PPC";
2156 bit PPC64 = 0; // Default value, override with isPPC64
2157
2158 let OutOperandList = (outs);
2159 let InOperandList = iops;
2160 let Pattern = [];
2161 let AsmString = asm;
2162 let isAsmParserOnly = 1;
2163 let isPseudo = 1;
2164}
2165
2166def : InstAlias<"mr $rA, $rB", (OR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
2167
2168def SLWI : PPCAsmPseudo<"slwi $rA, $rS, $n",
2169 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2170def SRWI : PPCAsmPseudo<"srwi $rA, $rS, $n",
2171 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2172def SLDI : PPCAsmPseudo<"sldi $rA, $rS, $n",
2173 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2174def SRDI : PPCAsmPseudo<"srdi $rA, $rS, $n",
2175 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2176
2177def : InstAlias<"blt $cc, $dst", (BCC 12, crrc:$cc, condbrtarget:$dst)>;
2178def : InstAlias<"bgt $cc, $dst", (BCC 44, crrc:$cc, condbrtarget:$dst)>;
2179def : InstAlias<"beq $cc, $dst", (BCC 76, crrc:$cc, condbrtarget:$dst)>;
2180def : InstAlias<"bun $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2181def : InstAlias<"bso $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2182def : InstAlias<"bge $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2183def : InstAlias<"bnl $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2184def : InstAlias<"ble $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2185def : InstAlias<"bng $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2186def : InstAlias<"bne $cc, $dst", (BCC 68, crrc:$cc, condbrtarget:$dst)>;
2187def : InstAlias<"bnu $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2188def : InstAlias<"bns $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2189
2190def : InstAlias<"bltlr $cc", (BCLR 12, crrc:$cc)>;
2191def : InstAlias<"bgtlr $cc", (BCLR 44, crrc:$cc)>;
2192def : InstAlias<"beqlr $cc", (BCLR 76, crrc:$cc)>;
2193def : InstAlias<"bunlr $cc", (BCLR 108, crrc:$cc)>;
2194def : InstAlias<"bsolr $cc", (BCLR 108, crrc:$cc)>;
2195def : InstAlias<"bgelr $cc", (BCLR 4, crrc:$cc)>;
2196def : InstAlias<"bnllr $cc", (BCLR 4, crrc:$cc)>;
2197def : InstAlias<"blelr $cc", (BCLR 36, crrc:$cc)>;
2198def : InstAlias<"bnglr $cc", (BCLR 36, crrc:$cc)>;
2199def : InstAlias<"bnelr $cc", (BCLR 68, crrc:$cc)>;
2200def : InstAlias<"bnulr $cc", (BCLR 100, crrc:$cc)>;
2201def : InstAlias<"bnslr $cc", (BCLR 100, crrc:$cc)>;
2202
2203def : InstAlias<"bltctr $cc", (BCCTR 12, crrc:$cc)>;
2204def : InstAlias<"bgtctr $cc", (BCCTR 44, crrc:$cc)>;
2205def : InstAlias<"beqctr $cc", (BCCTR 76, crrc:$cc)>;
2206def : InstAlias<"bunctr $cc", (BCCTR 108, crrc:$cc)>;
2207def : InstAlias<"bsoctr $cc", (BCCTR 108, crrc:$cc)>;
2208def : InstAlias<"bgectr $cc", (BCCTR 4, crrc:$cc)>;
2209def : InstAlias<"bnlctr $cc", (BCCTR 4, crrc:$cc)>;
2210def : InstAlias<"blectr $cc", (BCCTR 36, crrc:$cc)>;
2211def : InstAlias<"bngctr $cc", (BCCTR 36, crrc:$cc)>;
2212def : InstAlias<"bnectr $cc", (BCCTR 68, crrc:$cc)>;
2213def : InstAlias<"bnuctr $cc", (BCCTR 100, crrc:$cc)>;
2214def : InstAlias<"bnsctr $cc", (BCCTR 100, crrc:$cc)>;
2215
2216def : InstAlias<"bltctrl $cc", (BCCTRL 12, crrc:$cc)>;
2217def : InstAlias<"bgtctrl $cc", (BCCTRL 44, crrc:$cc)>;
2218def : InstAlias<"beqctrl $cc", (BCCTRL 76, crrc:$cc)>;
2219def : InstAlias<"bunctrl $cc", (BCCTRL 108, crrc:$cc)>;
2220def : InstAlias<"bsoctrl $cc", (BCCTRL 108, crrc:$cc)>;
2221def : InstAlias<"bgectrl $cc", (BCCTRL 4, crrc:$cc)>;
2222def : InstAlias<"bnlctrl $cc", (BCCTRL 4, crrc:$cc)>;
2223def : InstAlias<"blectrl $cc", (BCCTRL 36, crrc:$cc)>;
2224def : InstAlias<"bngctrl $cc", (BCCTRL 36, crrc:$cc)>;
2225def : InstAlias<"bnectrl $cc", (BCCTRL 68, crrc:$cc)>;
2226def : InstAlias<"bnuctrl $cc", (BCCTRL 100, crrc:$cc)>;
2227def : InstAlias<"bnsctrl $cc", (BCCTRL 100, crrc:$cc)>;
2228