blob: 9c39b34ab079f91f2d4e948a277b2d5a0b9c3b2e [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
Chris Lattner3e63ead2005-09-08 17:33:10 +0000253def immSExt16 : PatLeaf<(imm), [{
254 // immSExt16 predicate - True if the immediate fits in a 16-bit sign extended
255 // field. Used by instructions like 'addi'.
Owen Anderson825b72b2009-08-11 20:47:22 +0000256 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000257 return (int32_t)N->getZExtValue() == (short)N->getZExtValue();
Chris Lattner7f7b346e2006-06-20 23:21:20 +0000258 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000259 return (int64_t)N->getZExtValue() == (short)N->getZExtValue();
Chris Lattner3e63ead2005-09-08 17:33:10 +0000260}]>;
Chris Lattnerbfde0802005-09-08 17:40:49 +0000261def immZExt16 : PatLeaf<(imm), [{
262 // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
263 // field. Used by instructions like 'ori'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000264 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000265}], LO16>;
266
Chris Lattner0ea70b22006-06-20 22:34:10 +0000267// imm16Shifted* - These match immediates where the low 16-bits are zero. There
268// are two forms: imm16ShiftedSExt and imm16ShiftedZExt. These two forms are
269// identical in 32-bit mode, but in 64-bit mode, they return true if the
270// immediate fits into a sign/zero extended 32-bit immediate (with the low bits
271// clear).
272def imm16ShiftedZExt : PatLeaf<(imm), [{
273 // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
274 // immediate are set. Used by instructions like 'xoris'.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000275 return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;
Chris Lattner0ea70b22006-06-20 22:34:10 +0000276}], HI16>;
277
278def imm16ShiftedSExt : PatLeaf<(imm), [{
279 // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
280 // immediate are set. Used by instructions like 'addis'. Identical to
281 // imm16ShiftedZExt in 32-bit mode.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000282 if (N->getZExtValue() & 0xFFFF) return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 if (N->getValueType(0) == MVT::i32)
Chris Lattnerdd583432006-06-20 21:39:30 +0000284 return true;
285 // For 64-bit, make sure it is sext right.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000286 return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();
Chris Lattner2eb25172005-09-09 00:39:56 +0000287}], HI16>;
Chris Lattner3e63ead2005-09-08 17:33:10 +0000288
Hal Finkel08a215c2013-03-18 23:00:58 +0000289// Some r+i load/store instructions (such as LD, STD, LDU, etc.) that require
290// restricted memrix (offset/4) constants are alignment sensitive. If these
291// offsets are hidden behind TOC entries than the values of the lower-order
292// bits cannot be checked directly. As a result, we need to also incorporate
293// an alignment check into the relevant patterns.
294
295def aligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
296 return cast<LoadSDNode>(N)->getAlignment() >= 4;
297}]>;
298def aligned4store : PatFrag<(ops node:$val, node:$ptr),
299 (store node:$val, node:$ptr), [{
300 return cast<StoreSDNode>(N)->getAlignment() >= 4;
301}]>;
302def aligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
303 return cast<LoadSDNode>(N)->getAlignment() >= 4;
304}]>;
305def aligned4pre_store : PatFrag<
306 (ops node:$val, node:$base, node:$offset),
307 (pre_store node:$val, node:$base, node:$offset), [{
308 return cast<StoreSDNode>(N)->getAlignment() >= 4;
309}]>;
310
311def unaligned4load : PatFrag<(ops node:$ptr), (load node:$ptr), [{
312 return cast<LoadSDNode>(N)->getAlignment() < 4;
313}]>;
314def unaligned4store : PatFrag<(ops node:$val, node:$ptr),
315 (store node:$val, node:$ptr), [{
316 return cast<StoreSDNode>(N)->getAlignment() < 4;
317}]>;
318def unaligned4sextloadi32 : PatFrag<(ops node:$ptr), (sextloadi32 node:$ptr), [{
319 return cast<LoadSDNode>(N)->getAlignment() < 4;
320}]>;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000321
Chris Lattner47f01f12005-09-08 19:50:41 +0000322//===----------------------------------------------------------------------===//
323// PowerPC Flag Definitions.
324
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000325class isPPC64 { bit PPC64 = 1; }
Hal Finkel59857462013-04-12 18:17:57 +0000326class isDOT { bit RC = 1; }
Chris Lattner0bdc6f12005-04-19 04:32:54 +0000327
Chris Lattner302bf9c2006-11-08 02:13:12 +0000328class RegConstraint<string C> {
329 string Constraints = C;
330}
Chris Lattner8e28b5c2006-11-15 23:24:18 +0000331class NoEncode<string E> {
332 string DisableEncoding = E;
333}
Chris Lattner47f01f12005-09-08 19:50:41 +0000334
335
336//===----------------------------------------------------------------------===//
337// PowerPC Operand Definitions.
Chris Lattner7bb424f2004-08-14 23:27:29 +0000338
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000339// In the default PowerPC assembler syntax, registers are specified simply
340// by number, so they cannot be distinguished from immediate values (without
341// looking at the opcode). This means that the default operand matching logic
342// for the asm parser does not work, and we need to specify custom matchers.
343// Since those can only be specified with RegisterOperand classes and not
344// directly on the RegisterClass, all instructions patterns used by the asm
345// parser need to use a RegisterOperand (instead of a RegisterClass) for
346// all their register operands.
347// For this purpose, we define one RegisterOperand for each RegisterClass,
348// using the same name as the class, just in lower case.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000349
Ulrich Weigand5e220752013-05-03 19:49:39 +0000350def PPCRegGPRCAsmOperand : AsmOperandClass {
351 let Name = "RegGPRC"; let PredicateMethod = "isRegNumber";
352}
353def gprc : RegisterOperand<GPRC> {
354 let ParserMatchClass = PPCRegGPRCAsmOperand;
355}
356def PPCRegG8RCAsmOperand : AsmOperandClass {
357 let Name = "RegG8RC"; let PredicateMethod = "isRegNumber";
358}
359def g8rc : RegisterOperand<G8RC> {
360 let ParserMatchClass = PPCRegG8RCAsmOperand;
361}
362def PPCRegGPRCNoR0AsmOperand : AsmOperandClass {
363 let Name = "RegGPRCNoR0"; let PredicateMethod = "isRegNumber";
364}
365def gprc_nor0 : RegisterOperand<GPRC_NOR0> {
366 let ParserMatchClass = PPCRegGPRCNoR0AsmOperand;
367}
368def PPCRegG8RCNoX0AsmOperand : AsmOperandClass {
369 let Name = "RegG8RCNoX0"; let PredicateMethod = "isRegNumber";
370}
371def g8rc_nox0 : RegisterOperand<G8RC_NOX0> {
372 let ParserMatchClass = PPCRegG8RCNoX0AsmOperand;
373}
374def PPCRegF8RCAsmOperand : AsmOperandClass {
375 let Name = "RegF8RC"; let PredicateMethod = "isRegNumber";
376}
377def f8rc : RegisterOperand<F8RC> {
378 let ParserMatchClass = PPCRegF8RCAsmOperand;
379}
380def PPCRegF4RCAsmOperand : AsmOperandClass {
381 let Name = "RegF4RC"; let PredicateMethod = "isRegNumber";
382}
383def f4rc : RegisterOperand<F4RC> {
384 let ParserMatchClass = PPCRegF4RCAsmOperand;
385}
386def PPCRegVRRCAsmOperand : AsmOperandClass {
387 let Name = "RegVRRC"; let PredicateMethod = "isRegNumber";
388}
389def vrrc : RegisterOperand<VRRC> {
390 let ParserMatchClass = PPCRegVRRCAsmOperand;
391}
392def PPCRegCRBITRCAsmOperand : AsmOperandClass {
393 let Name = "RegCRBITRC"; let PredicateMethod = "isRegNumber";
394}
395def crbitrc : RegisterOperand<CRBITRC> {
396 let ParserMatchClass = PPCRegCRBITRCAsmOperand;
397}
398def PPCRegCRRCAsmOperand : AsmOperandClass {
399 let Name = "RegCRRC"; let PredicateMethod = "isCCRegNumber";
400}
401def crrc : RegisterOperand<CRRC> {
402 let ParserMatchClass = PPCRegCRRCAsmOperand;
403}
404
405def PPCS5ImmAsmOperand : AsmOperandClass {
406 let Name = "S5Imm"; let PredicateMethod = "isS5Imm";
407 let RenderMethod = "addImmOperands";
408}
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000409def s5imm : Operand<i32> {
410 let PrintMethod = "printS5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000411 let ParserMatchClass = PPCS5ImmAsmOperand;
412}
413def PPCU5ImmAsmOperand : AsmOperandClass {
414 let Name = "U5Imm"; let PredicateMethod = "isU5Imm";
415 let RenderMethod = "addImmOperands";
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000416}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000417def u5imm : Operand<i32> {
Nate Begemanc3306122004-08-21 05:56:39 +0000418 let PrintMethod = "printU5ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000419 let ParserMatchClass = PPCU5ImmAsmOperand;
420}
421def PPCU6ImmAsmOperand : AsmOperandClass {
422 let Name = "U6Imm"; let PredicateMethod = "isU6Imm";
423 let RenderMethod = "addImmOperands";
Nate Begemanc3306122004-08-21 05:56:39 +0000424}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000425def u6imm : Operand<i32> {
Nate Begeman07aada82004-08-30 02:28:06 +0000426 let PrintMethod = "printU6ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000427 let ParserMatchClass = PPCU6ImmAsmOperand;
428}
429def PPCS16ImmAsmOperand : AsmOperandClass {
430 let Name = "S16Imm"; let PredicateMethod = "isS16Imm";
431 let RenderMethod = "addImmOperands";
Nate Begeman07aada82004-08-30 02:28:06 +0000432}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000433def s16imm : Operand<i32> {
Nate Begemaned428532004-09-04 05:00:00 +0000434 let PrintMethod = "printS16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000435 let ParserMatchClass = PPCS16ImmAsmOperand;
436}
437def PPCU16ImmAsmOperand : AsmOperandClass {
438 let Name = "U16Imm"; let PredicateMethod = "isU16Imm";
439 let RenderMethod = "addImmOperands";
Nate Begemaned428532004-09-04 05:00:00 +0000440}
Chris Lattner4345a4a2005-09-14 20:53:05 +0000441def u16imm : Operand<i32> {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000442 let PrintMethod = "printU16ImmOperand";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000443 let ParserMatchClass = PPCU16ImmAsmOperand;
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000444}
Chris Lattner8d704112010-11-15 06:09:35 +0000445def directbrtarget : Operand<OtherVT> {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000446 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000447 let EncoderMethod = "getDirectBrEncoding";
448}
449def condbrtarget : Operand<OtherVT> {
Chris Lattnerb8efa6b2010-11-16 01:45:05 +0000450 let PrintMethod = "printBranchOperand";
Chris Lattner8d704112010-11-15 06:09:35 +0000451 let EncoderMethod = "getCondBrEncoding";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000452}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000453def calltarget : Operand<iPTR> {
Chris Lattner8d704112010-11-15 06:09:35 +0000454 let EncoderMethod = "getDirectBrEncoding";
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000455}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000456def aaddr : Operand<iPTR> {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000457 let PrintMethod = "printAbsAddrOperand";
458}
Nate Begemaned428532004-09-04 05:00:00 +0000459def symbolHi: Operand<i32> {
460 let PrintMethod = "printSymbolHi";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000461 let EncoderMethod = "getHA16Encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000462 let ParserMatchClass = PPCS16ImmAsmOperand;
Nate Begemaned428532004-09-04 05:00:00 +0000463}
464def symbolLo: Operand<i32> {
465 let PrintMethod = "printSymbolLo";
Chris Lattner85cf7d72010-11-15 06:33:39 +0000466 let EncoderMethod = "getLO16Encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000467 let ParserMatchClass = PPCS16ImmAsmOperand;
468}
469def PPCCRBitMaskOperand : AsmOperandClass {
470 let Name = "CRBitMask"; let PredicateMethod = "isCRBitMask";
Nate Begemaned428532004-09-04 05:00:00 +0000471}
Nate Begemanadeb43d2005-07-20 22:42:00 +0000472def crbitm: Operand<i8> {
473 let PrintMethod = "printcrbitm";
Chris Lattner7192eb82010-11-15 05:19:25 +0000474 let EncoderMethod = "get_crbitm_encoding";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000475 let ParserMatchClass = PPCCRBitMaskOperand;
Nate Begemanadeb43d2005-07-20 22:42:00 +0000476}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000477// Address operands
Hal Finkela548afc2013-03-19 18:51:05 +0000478// A version of ptr_rc which excludes R0 (or X0 in 64-bit mode).
Ulrich Weigand5e220752013-05-03 19:49:39 +0000479def PPCRegGxRCNoR0Operand : AsmOperandClass {
480 let Name = "RegGxRCNoR0"; let PredicateMethod = "isRegNumber";
481}
482def ptr_rc_nor0 : Operand<iPTR>, PointerLikeRegClass<1> {
483 let ParserMatchClass = PPCRegGxRCNoR0Operand;
484}
485// A version of ptr_rc usable with the asm parser.
486def PPCRegGxRCOperand : AsmOperandClass {
487 let Name = "RegGxRC"; let PredicateMethod = "isRegNumber";
488}
489def ptr_rc_idx : Operand<iPTR>, PointerLikeRegClass<0> {
490 let ParserMatchClass = PPCRegGxRCOperand;
491}
Hal Finkela548afc2013-03-19 18:51:05 +0000492
Ulrich Weigand5e220752013-05-03 19:49:39 +0000493def PPCDispRIOperand : AsmOperandClass {
494 let Name = "DispRI"; let PredicateMethod = "isS16Imm";
495}
496def dispRI : Operand<iPTR> {
497 let ParserMatchClass = PPCDispRIOperand;
498}
499def PPCDispRIXOperand : AsmOperandClass {
500 let Name = "DispRIX"; let PredicateMethod = "isS16ImmX4";
501}
502def dispRIX : Operand<iPTR> {
503 let ParserMatchClass = PPCDispRIXOperand;
504}
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000505
Chris Lattner059ca0f2006-06-16 21:01:35 +0000506def memri : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000507 let PrintMethod = "printMemRegImm";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000508 let MIOperandInfo = (ops dispRI:$imm, ptr_rc_nor0:$reg);
Chris Lattnerb7035d02010-11-15 08:22:03 +0000509 let EncoderMethod = "getMemRIEncoding";
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000510}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000511def memrr : Operand<iPTR> {
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000512 let PrintMethod = "printMemRegReg";
Ulrich Weigand5e220752013-05-03 19:49:39 +0000513 let MIOperandInfo = (ops ptr_rc_nor0:$ptrreg, ptr_rc_idx:$offreg);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000514}
Chris Lattner059ca0f2006-06-16 21:01:35 +0000515def memrix : Operand<iPTR> { // memri where the imm is shifted 2 bits.
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000516 let PrintMethod = "printMemRegImmShifted";
Ulrich Weigandd67768d2013-03-26 10:55:45 +0000517 let MIOperandInfo = (ops dispRIX:$imm, ptr_rc_nor0:$reg);
Chris Lattner17e2c182010-11-15 08:02:41 +0000518 let EncoderMethod = "getMemRIXEncoding";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000519}
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000520
Hal Finkel7ee74a62013-03-21 21:37:52 +0000521// A single-register address. This is used with the SjLj
522// pseudo-instructions.
523def memr : Operand<iPTR> {
524 let MIOperandInfo = (ops ptr_rc:$ptrreg);
525}
526
Ulrich Weigand3b255292013-03-26 10:53:27 +0000527// PowerPC Predicate operand.
528def pred : Operand<OtherVT> {
Chris Lattneraf53a872006-11-04 05:27:39 +0000529 let PrintMethod = "printPredicateOperand";
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000530 let MIOperandInfo = (ops i32imm:$bibo, crrc:$reg);
Chris Lattneraf53a872006-11-04 05:27:39 +0000531}
Chris Lattner0638b262006-11-03 23:53:25 +0000532
Chris Lattnera613d262006-01-12 02:05:36 +0000533// Define PowerPC specific addressing mode.
Evan Chengaf9db752006-10-11 21:03:53 +0000534def iaddr : ComplexPattern<iPTR, 2, "SelectAddrImm", [], []>;
535def xaddr : ComplexPattern<iPTR, 2, "SelectAddrIdx", [], []>;
536def xoaddr : ComplexPattern<iPTR, 2, "SelectAddrIdxOnly",[], []>;
537def ixaddr : ComplexPattern<iPTR, 2, "SelectAddrImmShift", [], []>; // "std"
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000538
Hal Finkel7ee74a62013-03-21 21:37:52 +0000539// The address in a single register. This is used with the SjLj
540// pseudo-instructions.
541def addr : ComplexPattern<iPTR, 1, "SelectAddr",[], []>;
542
Chris Lattner74531e42006-11-16 00:41:37 +0000543/// This is just the offset part of iaddr, used for preinc.
544def iaddroff : ComplexPattern<iPTR, 1, "SelectAddrImmOffs", [], []>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +0000545
Evan Cheng8c75ef92005-12-14 22:07:12 +0000546//===----------------------------------------------------------------------===//
547// PowerPC Instruction Predicate Definitions.
Evan Cheng152b7e12007-10-23 06:42:42 +0000548def In32BitMode : Predicate<"!PPCSubTarget.isPPC64()">;
549def In64BitMode : Predicate<"PPCSubTarget.isPPC64()">;
Hal Finkelc6d08f12011-10-17 04:03:49 +0000550def IsBookE : Predicate<"PPCSubTarget.isBookE()">;
Chris Lattner6a5339b2006-11-14 18:44:47 +0000551
Chris Lattner47f01f12005-09-08 19:50:41 +0000552//===----------------------------------------------------------------------===//
Hal Finkel171a8ad2013-04-12 02:18:09 +0000553// PowerPC Multiclass Definitions.
554
555multiclass XForm_6r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
556 string asmbase, string asmstr, InstrItinClass itin,
557 list<dag> pattern> {
558 let BaseName = asmbase in {
559 def NAME : XForm_6<opcode, xo, OOL, IOL,
560 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
561 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000562 let Defs = [CR0] in
563 def o : XForm_6<opcode, xo, OOL, IOL,
564 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
565 []>, isDOT, RecFormRel;
566 }
567}
568
569multiclass XForm_6rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
570 string asmbase, string asmstr, InstrItinClass itin,
571 list<dag> pattern> {
572 let BaseName = asmbase in {
573 let Defs = [CARRY] in
574 def NAME : XForm_6<opcode, xo, OOL, IOL,
575 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
576 pattern>, RecFormRel;
577 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000578 def o : XForm_6<opcode, xo, OOL, IOL,
579 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
580 []>, isDOT, RecFormRel;
581 }
582}
583
584multiclass XForm_10r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
585 string asmbase, string asmstr, InstrItinClass itin,
586 list<dag> pattern> {
587 let BaseName = asmbase in {
588 def NAME : XForm_10<opcode, xo, OOL, IOL,
589 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
590 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000591 let Defs = [CR0] in
592 def o : XForm_10<opcode, xo, OOL, IOL,
593 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
594 []>, isDOT, RecFormRel;
595 }
596}
597
598multiclass XForm_10rc<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
599 string asmbase, string asmstr, InstrItinClass itin,
600 list<dag> pattern> {
601 let BaseName = asmbase in {
602 let Defs = [CARRY] in
603 def NAME : XForm_10<opcode, xo, OOL, IOL,
604 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
605 pattern>, RecFormRel;
606 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000607 def o : XForm_10<opcode, xo, OOL, IOL,
608 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
609 []>, isDOT, RecFormRel;
610 }
611}
612
613multiclass XForm_11r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
614 string asmbase, string asmstr, InstrItinClass itin,
615 list<dag> pattern> {
616 let BaseName = asmbase in {
617 def NAME : XForm_11<opcode, xo, OOL, IOL,
618 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
619 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000620 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000621 def o : XForm_11<opcode, xo, OOL, IOL,
622 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
623 []>, isDOT, RecFormRel;
624 }
625}
626
627multiclass XOForm_1r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
628 string asmbase, string asmstr, InstrItinClass itin,
629 list<dag> pattern> {
630 let BaseName = asmbase in {
631 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
632 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
633 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000634 let Defs = [CR0] in
635 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
636 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
637 []>, isDOT, RecFormRel;
638 }
639}
640
641multiclass XOForm_1rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
642 string asmbase, string asmstr, InstrItinClass itin,
643 list<dag> pattern> {
644 let BaseName = asmbase in {
645 let Defs = [CARRY] in
646 def NAME : XOForm_1<opcode, xo, oe, OOL, IOL,
647 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
648 pattern>, RecFormRel;
649 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000650 def o : XOForm_1<opcode, xo, oe, OOL, IOL,
651 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
652 []>, isDOT, RecFormRel;
653 }
654}
655
656multiclass XOForm_3r<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
657 string asmbase, string asmstr, InstrItinClass itin,
658 list<dag> pattern> {
659 let BaseName = asmbase in {
660 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
661 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
662 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000663 let Defs = [CR0] in
664 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
665 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
666 []>, isDOT, RecFormRel;
667 }
668}
669
670multiclass XOForm_3rc<bits<6> opcode, bits<9> xo, bit oe, dag OOL, dag IOL,
671 string asmbase, string asmstr, InstrItinClass itin,
672 list<dag> pattern> {
673 let BaseName = asmbase in {
674 let Defs = [CARRY] in
675 def NAME : XOForm_3<opcode, xo, oe, OOL, IOL,
676 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
677 pattern>, RecFormRel;
678 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000679 def o : XOForm_3<opcode, xo, oe, OOL, IOL,
680 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
681 []>, isDOT, RecFormRel;
682 }
683}
684
685multiclass MForm_2r<bits<6> opcode, dag OOL, dag IOL,
686 string asmbase, string asmstr, InstrItinClass itin,
687 list<dag> pattern> {
688 let BaseName = asmbase in {
689 def NAME : MForm_2<opcode, OOL, IOL,
690 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
691 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000692 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000693 def o : MForm_2<opcode, OOL, IOL,
694 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
695 []>, isDOT, RecFormRel;
696 }
697}
698
699multiclass MDForm_1r<bits<6> opcode, bits<3> xo, dag OOL, dag IOL,
700 string asmbase, string asmstr, InstrItinClass itin,
701 list<dag> pattern> {
702 let BaseName = asmbase in {
703 def NAME : MDForm_1<opcode, xo, OOL, IOL,
704 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
705 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000706 let Defs = [CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000707 def o : MDForm_1<opcode, xo, OOL, IOL,
708 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
709 []>, isDOT, RecFormRel;
710 }
711}
712
Ulrich Weigand1adc97c2013-04-26 15:39:12 +0000713multiclass MDSForm_1r<bits<6> opcode, bits<4> xo, dag OOL, dag IOL,
714 string asmbase, string asmstr, InstrItinClass itin,
715 list<dag> pattern> {
716 let BaseName = asmbase in {
717 def NAME : MDSForm_1<opcode, xo, OOL, IOL,
718 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
719 pattern>, RecFormRel;
720 let Defs = [CR0] in
721 def o : MDSForm_1<opcode, xo, OOL, IOL,
722 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
723 []>, isDOT, RecFormRel;
724 }
725}
726
Hal Finkel59857462013-04-12 18:17:57 +0000727multiclass XSForm_1rc<bits<6> opcode, bits<9> xo, dag OOL, dag IOL,
728 string asmbase, string asmstr, InstrItinClass itin,
729 list<dag> pattern> {
Hal Finkel171a8ad2013-04-12 02:18:09 +0000730 let BaseName = asmbase in {
Hal Finkel59857462013-04-12 18:17:57 +0000731 let Defs = [CARRY] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000732 def NAME : XSForm_1<opcode, xo, OOL, IOL,
733 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
734 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000735 let Defs = [CARRY, CR0] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000736 def o : XSForm_1<opcode, xo, OOL, IOL,
737 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
738 []>, isDOT, RecFormRel;
739 }
740}
741
742multiclass XForm_26r<bits<6> opcode, bits<10> xo, dag OOL, dag IOL,
743 string asmbase, string asmstr, InstrItinClass itin,
744 list<dag> pattern> {
745 let BaseName = asmbase in {
746 def NAME : XForm_26<opcode, xo, OOL, IOL,
747 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
748 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000749 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000750 def o : XForm_26<opcode, xo, OOL, IOL,
751 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000752 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000753 }
754}
755
756multiclass AForm_1r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
757 string asmbase, string asmstr, InstrItinClass itin,
758 list<dag> pattern> {
759 let BaseName = asmbase in {
760 def NAME : AForm_1<opcode, xo, OOL, IOL,
761 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
762 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000763 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000764 def o : AForm_1<opcode, xo, OOL, IOL,
765 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000766 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000767 }
768}
769
770multiclass AForm_2r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
771 string asmbase, string asmstr, InstrItinClass itin,
772 list<dag> pattern> {
773 let BaseName = asmbase in {
774 def NAME : AForm_2<opcode, xo, OOL, IOL,
775 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
776 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000777 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000778 def o : AForm_2<opcode, xo, OOL, IOL,
779 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000780 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000781 }
782}
783
784multiclass AForm_3r<bits<6> opcode, bits<5> xo, dag OOL, dag IOL,
785 string asmbase, string asmstr, InstrItinClass itin,
786 list<dag> pattern> {
787 let BaseName = asmbase in {
788 def NAME : AForm_3<opcode, xo, OOL, IOL,
789 !strconcat(asmbase, !strconcat(" ", asmstr)), itin,
790 pattern>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +0000791 let Defs = [CR1] in
Hal Finkel171a8ad2013-04-12 02:18:09 +0000792 def o : AForm_3<opcode, xo, OOL, IOL,
793 !strconcat(asmbase, !strconcat(". ", asmstr)), itin,
Hal Finkel59857462013-04-12 18:17:57 +0000794 []>, isDOT, RecFormRel;
Hal Finkel171a8ad2013-04-12 02:18:09 +0000795 }
796}
797
798//===----------------------------------------------------------------------===//
Chris Lattner47f01f12005-09-08 19:50:41 +0000799// PowerPC Instruction Definitions.
800
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000801// Pseudo-instructions:
Chris Lattner47f01f12005-09-08 19:50:41 +0000802
Chris Lattner88d211f2006-03-12 09:13:49 +0000803let hasCtrlDep = 1 in {
Evan Cheng071a2792007-09-11 19:55:27 +0000804let Defs = [R1], Uses = [R1] in {
Will Schmidt91638152012-10-04 18:14:28 +0000805def ADJCALLSTACKDOWN : Pseudo<(outs), (ins u16imm:$amt), "#ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000806 [(callseq_start timm:$amt)]>;
Will Schmidt91638152012-10-04 18:14:28 +0000807def ADJCALLSTACKUP : Pseudo<(outs), (ins u16imm:$amt1, u16imm:$amt2), "#ADJCALLSTACKUP $amt1 $amt2",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000808 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000809}
Chris Lattner1877ec92006-03-13 21:52:10 +0000810
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000811def UPDATE_VRSAVE : Pseudo<(outs gprc:$rD), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +0000812 "UPDATE_VRSAVE $rD, $rS", []>;
Nate Begemanb816f022004-10-07 22:30:03 +0000813}
Jim Laskey2f616bf2006-11-16 22:43:37 +0000814
Evan Cheng071a2792007-09-11 19:55:27 +0000815let Defs = [R1], Uses = [R1] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000816def DYNALLOC : Pseudo<(outs gprc:$result), (ins gprc:$negsize, memri:$fpsi), "#DYNALLOC",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000817 [(set i32:$result,
818 (PPCdynalloc i32:$negsize, iaddr:$fpsi))]>;
Jim Laskey2f616bf2006-11-16 22:43:37 +0000819
Dan Gohman533297b2009-10-29 18:10:34 +0000820// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded after
821// instruction selection into a branch sequence.
822let usesCustomInserter = 1, // Expanded after instruction selection.
Chris Lattner88d211f2006-03-12 09:13:49 +0000823 PPC970_Single = 1 in {
Hal Finkelab42ec22013-03-27 05:57:58 +0000824 // Note that SELECT_CC_I4 and SELECT_CC_I8 use the no-r0 register classes
825 // because either operand might become the first operand in an isel, and
826 // that operand cannot be r0.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000827 def SELECT_CC_I4 : Pseudo<(outs gprc:$dst), (ins crrc:$cond,
828 gprc_nor0:$T, gprc_nor0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000829 i32imm:$BROPC), "#SELECT_CC_I4",
Chris Lattner54689662006-09-27 02:55:21 +0000830 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000831 def SELECT_CC_I8 : Pseudo<(outs g8rc:$dst), (ins crrc:$cond,
832 g8rc_nox0:$T, g8rc_nox0:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000833 i32imm:$BROPC), "#SELECT_CC_I8",
Chris Lattner54689662006-09-27 02:55:21 +0000834 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000835 def SELECT_CC_F4 : Pseudo<(outs f4rc:$dst), (ins crrc:$cond, f4rc:$T, f4rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000836 i32imm:$BROPC), "#SELECT_CC_F4",
Chris Lattner54689662006-09-27 02:55:21 +0000837 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000838 def SELECT_CC_F8 : Pseudo<(outs f8rc:$dst), (ins crrc:$cond, f8rc:$T, f8rc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000839 i32imm:$BROPC), "#SELECT_CC_F8",
Chris Lattner54689662006-09-27 02:55:21 +0000840 []>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000841 def SELECT_CC_VRRC: Pseudo<(outs vrrc:$dst), (ins crrc:$cond, vrrc:$T, vrrc:$F,
Will Schmidt91638152012-10-04 18:14:28 +0000842 i32imm:$BROPC), "#SELECT_CC_VRRC",
Chris Lattner54689662006-09-27 02:55:21 +0000843 []>;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +0000844}
845
Bill Wendling7194aaf2008-03-03 22:19:16 +0000846// SPILL_CR - Indicate that we're dumping the CR register, so we'll need to
847// scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000848let mayStore = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000849def SPILL_CR : Pseudo<(outs), (ins crrc:$cond, memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000850 "#SPILL_CR", []>;
Bill Wendling7194aaf2008-03-03 22:19:16 +0000851
Hal Finkeld21e9302011-12-06 20:55:36 +0000852// RESTORE_CR - Indicate that we're restoring the CR register (previously
853// spilled), so we'll need to scavenge a register for it.
Hal Finkelae37cd02011-12-07 06:33:57 +0000854let mayLoad = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000855def RESTORE_CR : Pseudo<(outs crrc:$cond), (ins memri:$F),
Will Schmidt91638152012-10-04 18:14:28 +0000856 "#RESTORE_CR", []>;
Hal Finkeld21e9302011-12-06 20:55:36 +0000857
Evan Chengffbacca2007-07-21 00:34:19 +0000858let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7 in {
Ulrich Weigand3b255292013-03-26 10:53:27 +0000859 let isReturn = 1, Uses = [LR, RM] in
860 def BLR : XLForm_2_ext<19, 16, 20, 0, 0, (outs), (ins), "blr", BrB,
861 [(retflag)]>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000862 let isBranch = 1, isIndirectBranch = 1, Uses = [CTR] in {
Owen Anderson20ab2902007-11-12 07:39:39 +0000863 def BCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>;
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000864
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000865 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000866 def BCCTR : XLForm_2_br<19, 528, 0, (outs), (ins pred:$cond),
867 "b${cond:cc}ctr ${cond:reg}", BrB, []>;
868 }
Chris Lattner47f01f12005-09-08 19:50:41 +0000869}
870
Chris Lattner7a823bd2005-02-15 20:26:49 +0000871let Defs = [LR] in
Will Schmidt91638152012-10-04 18:14:28 +0000872 def MovePCtoLR : Pseudo<(outs), (ins), "#MovePCtoLR", []>,
Chris Lattner88d211f2006-03-12 09:13:49 +0000873 PPC970_Unit_BRU;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000874
Evan Chengffbacca2007-07-21 00:34:19 +0000875let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7 in {
Chris Lattner594f4c62006-10-13 19:10:34 +0000876 let isBarrier = 1 in {
Chris Lattner8d704112010-11-15 06:09:35 +0000877 def B : IForm<18, 0, 0, (outs), (ins directbrtarget:$dst),
Chris Lattner1e484782005-12-04 18:42:54 +0000878 "b $dst", BrB,
879 [(br bb:$dst)]>;
Chris Lattner594f4c62006-10-13 19:10:34 +0000880 }
Chris Lattnerdd998852004-11-22 23:07:01 +0000881
Chris Lattner18258c62006-11-17 22:37:34 +0000882 // BCC represents an arbitrary conditional branch on a predicate.
883 // FIXME: should be able to write a pattern for PPCcondbranch, but can't use
Will Schmidtd8755332012-10-05 15:16:11 +0000884 // a two-value operand where a dag node expects two operands. :(
Hal Finkel5ee67e82013-04-08 16:24:03 +0000885 let isCodeGenOnly = 1 in {
Will Schmidtd8755332012-10-05 15:16:11 +0000886 def BCC : BForm<16, 0, 0, (outs), (ins pred:$cond, condbrtarget:$dst),
887 "b${cond:cc} ${cond:reg}, $dst"
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000888 /*[(PPCcondbranch crrc:$crS, imm:$opc, bb:$dst)]*/>;
Hal Finkel5ee67e82013-04-08 16:24:03 +0000889 let isReturn = 1, Uses = [LR, RM] in
890 def BCLR : XLForm_2_br<19, 16, 0, (outs), (ins pred:$cond),
891 "b${cond:cc}lr ${cond:reg}", BrB, []>;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000892
893 let isReturn = 1, Defs = [CTR], Uses = [CTR, LR, RM] in {
894 def BDZLR : XLForm_2_ext<19, 16, 18, 0, 0, (outs), (ins),
895 "bdzlr", BrB, []>;
896 def BDNZLR : XLForm_2_ext<19, 16, 16, 0, 0, (outs), (ins),
897 "bdnzlr", BrB, []>;
898 }
Hal Finkel5ee67e82013-04-08 16:24:03 +0000899 }
Hal Finkel99f823f2012-06-08 15:38:21 +0000900
901 let Defs = [CTR], Uses = [CTR] in {
Ulrich Weigand18430432012-11-13 19:15:52 +0000902 def BDZ : BForm_1<16, 18, 0, 0, (outs), (ins condbrtarget:$dst),
903 "bdz $dst">;
904 def BDNZ : BForm_1<16, 16, 0, 0, (outs), (ins condbrtarget:$dst),
905 "bdnz $dst">;
Hal Finkel99f823f2012-06-08 15:38:21 +0000906 }
Misha Brukmanb2edb442004-06-28 18:23:35 +0000907}
908
Hal Finkelcaeeb182013-04-04 22:55:54 +0000909// The unconditional BCL used by the SjLj setjmp code.
Ulrich Weigand3d386422013-03-26 10:57:16 +0000910let isCall = 1, hasCtrlDep = 1, isCodeGenOnly = 1, PPC970_Unit = 7 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000911 let Defs = [LR], Uses = [RM] in {
Hal Finkelcaeeb182013-04-04 22:55:54 +0000912 def BCLalways : BForm_2<16, 20, 31, 0, 1, (outs), (ins condbrtarget:$dst),
913 "bcl 20, 31, $dst">;
Hal Finkel7ee74a62013-03-21 21:37:52 +0000914 }
915}
916
Roman Divackye46137f2012-03-06 16:41:49 +0000917let isCall = 1, PPC970_Unit = 7, Defs = [LR] in {
Misha Brukmanc661c302004-06-30 22:00:45 +0000918 // Convenient aliases for call instructions
Dale Johannesenb384ab92008-10-29 18:26:45 +0000919 let Uses = [RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000920 def BL : IForm<18, 0, 1, (outs), (ins calltarget:$func),
921 "bl $func", BrB, []>; // See Pat patterns below.
922 def BLA : IForm<18, 1, 1, (outs), (ins aaddr:$func),
923 "bla $func", BrB, [(PPCcall (i32 imm:$func))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +0000924 }
925 let Uses = [CTR, RM] in {
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000926 def BCTRL : XLForm_2_ext<19, 528, 20, 0, 1, (outs), (ins),
927 "bctrl", BrB, [(PPCbctrl)]>,
928 Requires<[In32BitMode]>;
Ulrich Weigand1fb54cf2013-04-17 17:19:05 +0000929
930 let isCodeGenOnly = 1 in
Hal Finkel90dd7fd2013-04-10 06:42:34 +0000931 def BCCTRL : XLForm_2_br<19, 528, 1, (outs), (ins pred:$cond),
932 "b${cond:cc}ctrl ${cond:reg}", BrB, []>;
Dale Johannesen639076f2008-10-23 20:41:28 +0000933 }
Chris Lattner9f0bc652007-02-25 05:34:32 +0000934}
935
Dale Johannesenb384ab92008-10-29 18:26:45 +0000936let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000937def TCRETURNdi :Pseudo< (outs),
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000938 (ins calltarget:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000939 "#TC_RETURNd $dst $offset",
940 []>;
941
942
Dale Johannesenb384ab92008-10-29 18:26:45 +0000943let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000944def TCRETURNai :Pseudo<(outs), (ins aaddr:$func, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000945 "#TC_RETURNa $func $offset",
946 [(PPCtc_return (i32 imm:$func), imm:$offset)]>;
947
Dale Johannesenb384ab92008-10-29 18:26:45 +0000948let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, Uses = [RM] in
Jakob Stoklund Olesen68c10a22012-07-13 20:44:29 +0000949def TCRETURNri : Pseudo<(outs), (ins CTRRC:$dst, i32imm:$offset),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000950 "#TC_RETURNr $dst $offset",
951 []>;
952
953
Ulrich Weigand3d386422013-03-26 10:57:16 +0000954let isCodeGenOnly = 1 in {
955
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000956let isTerminator = 1, isBarrier = 1, PPC970_Unit = 7, isBranch = 1,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000957 isIndirectBranch = 1, isCall = 1, isReturn = 1, Uses = [CTR, RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000958def TAILBCTR : XLForm_2_ext<19, 528, 20, 0, 0, (outs), (ins), "bctr", BrB, []>,
959 Requires<[In32BitMode]>;
960
961
962
963let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000964 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000965def TAILB : IForm<18, 0, 0, (outs), (ins calltarget:$dst),
966 "b $dst", BrB,
967 []>;
968
Ulrich Weigand3d386422013-03-26 10:57:16 +0000969}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000970
971let isBranch = 1, isTerminator = 1, hasCtrlDep = 1, PPC970_Unit = 7,
Dale Johannesenb384ab92008-10-29 18:26:45 +0000972 isBarrier = 1, isCall = 1, isReturn = 1, Uses = [RM] in
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000973def TAILBA : IForm<18, 0, 0, (outs), (ins aaddr:$dst),
974 "ba $dst", BrB,
975 []>;
976
Ulrich Weigand3d386422013-03-26 10:57:16 +0000977let hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +0000978 def EH_SjLj_SetJmp32 : Pseudo<(outs gprc:$dst), (ins memr:$buf),
Hal Finkel7ee74a62013-03-21 21:37:52 +0000979 "#EH_SJLJ_SETJMP32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +0000980 [(set i32:$dst, (PPCeh_sjlj_setjmp addr:$buf))]>,
Hal Finkel7ee74a62013-03-21 21:37:52 +0000981 Requires<[In32BitMode]>;
982 let isTerminator = 1 in
983 def EH_SjLj_LongJmp32 : Pseudo<(outs), (ins memr:$buf),
984 "#EH_SJLJ_LONGJMP32",
985 [(PPCeh_sjlj_longjmp addr:$buf)]>,
986 Requires<[In32BitMode]>;
987}
988
Ulrich Weigand3d386422013-03-26 10:57:16 +0000989let isBranch = 1, isTerminator = 1 in {
Hal Finkel7ee74a62013-03-21 21:37:52 +0000990 def EH_SjLj_Setup : Pseudo<(outs), (ins directbrtarget:$dst),
991 "#EH_SjLj_Setup\t$dst", []>;
992}
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000993
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000994// System call.
995let PPC970_Unit = 7 in {
996 def SC : SCForm<17, 1, (outs), (ins i32imm:$lev),
997 "sc $lev", BrB, [(PPCsc (i32 imm:$lev))]>;
998}
999
Chris Lattner001db452006-06-06 21:29:23 +00001000// DCB* instructions.
Evan Cheng64d80e32007-07-19 01:14:50 +00001001def DCBA : DCB_Form<758, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001002 "dcba $dst", LdStDCBF, [(int_ppc_dcba xoaddr:$dst)]>,
1003 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001004def DCBF : DCB_Form<86, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001005 "dcbf $dst", LdStDCBF, [(int_ppc_dcbf xoaddr:$dst)]>,
1006 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001007def DCBI : DCB_Form<470, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001008 "dcbi $dst", LdStDCBF, [(int_ppc_dcbi xoaddr:$dst)]>,
1009 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001010def DCBST : DCB_Form<54, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001011 "dcbst $dst", LdStDCBF, [(int_ppc_dcbst xoaddr:$dst)]>,
1012 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001013def DCBT : DCB_Form<278, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001014 "dcbt $dst", LdStDCBF, [(int_ppc_dcbt xoaddr:$dst)]>,
1015 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001016def DCBTST : DCB_Form<246, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001017 "dcbtst $dst", LdStDCBF, [(int_ppc_dcbtst xoaddr:$dst)]>,
1018 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001019def DCBZ : DCB_Form<1014, 0, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001020 "dcbz $dst", LdStDCBF, [(int_ppc_dcbz xoaddr:$dst)]>,
1021 PPC970_DGroup_Single;
Evan Cheng64d80e32007-07-19 01:14:50 +00001022def DCBZL : DCB_Form<1014, 1, (outs), (ins memrr:$dst),
Chris Lattnere90c5372006-10-24 01:08:42 +00001023 "dcbzl $dst", LdStDCBF, [(int_ppc_dcbzl xoaddr:$dst)]>,
1024 PPC970_DGroup_Single;
Chris Lattner26e552b2006-11-14 19:19:53 +00001025
Hal Finkel19aa2b52012-04-01 20:08:17 +00001026def : Pat<(prefetch xoaddr:$dst, (i32 0), imm, (i32 1)),
1027 (DCBT xoaddr:$dst)>;
1028
Evan Cheng53301922008-07-12 02:23:19 +00001029// Atomic operations
Dan Gohman533297b2009-10-29 18:10:34 +00001030let usesCustomInserter = 1 in {
Jakob Stoklund Olesencf3a7482011-04-04 17:07:09 +00001031 let Defs = [CR0] in {
Dale Johannesen97efa362008-08-28 17:53:09 +00001032 def ATOMIC_LOAD_ADD_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001033 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001034 [(set i32:$dst, (atomic_load_add_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001035 def ATOMIC_LOAD_SUB_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001036 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001037 [(set i32:$dst, (atomic_load_sub_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001038 def ATOMIC_LOAD_AND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001039 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001040 [(set i32:$dst, (atomic_load_and_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001041 def ATOMIC_LOAD_OR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001042 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001043 [(set i32:$dst, (atomic_load_or_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001044 def ATOMIC_LOAD_XOR_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001045 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "ATOMIC_LOAD_XOR_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001046 [(set i32:$dst, (atomic_load_xor_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001047 def ATOMIC_LOAD_NAND_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001048 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001049 [(set i32:$dst, (atomic_load_nand_8 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001050 def ATOMIC_LOAD_ADD_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001051 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001052 [(set i32:$dst, (atomic_load_add_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001053 def ATOMIC_LOAD_SUB_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001054 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001055 [(set i32:$dst, (atomic_load_sub_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001056 def ATOMIC_LOAD_AND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001057 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001058 [(set i32:$dst, (atomic_load_and_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001059 def ATOMIC_LOAD_OR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001060 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001061 [(set i32:$dst, (atomic_load_or_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001062 def ATOMIC_LOAD_XOR_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001063 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001064 [(set i32:$dst, (atomic_load_xor_16 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001065 def ATOMIC_LOAD_NAND_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001066 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001067 [(set i32:$dst, (atomic_load_nand_16 xoaddr:$ptr, i32:$incr))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001068 def ATOMIC_LOAD_ADD_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001069 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_ADD_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001070 [(set i32:$dst, (atomic_load_add_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001071 def ATOMIC_LOAD_SUB_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001072 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_SUB_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001073 [(set i32:$dst, (atomic_load_sub_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001074 def ATOMIC_LOAD_AND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001075 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_AND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001076 [(set i32:$dst, (atomic_load_and_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001077 def ATOMIC_LOAD_OR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001078 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_OR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001079 [(set i32:$dst, (atomic_load_or_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001080 def ATOMIC_LOAD_XOR_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001081 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_XOR_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001082 [(set i32:$dst, (atomic_load_xor_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001083 def ATOMIC_LOAD_NAND_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001084 (outs gprc:$dst), (ins memrr:$ptr, gprc:$incr), "#ATOMIC_LOAD_NAND_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001085 [(set i32:$dst, (atomic_load_nand_32 xoaddr:$ptr, i32:$incr))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001086
Dale Johannesen97efa362008-08-28 17:53:09 +00001087 def ATOMIC_CMP_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001088 (outs gprc:$dst), (ins memrr:$ptr, gprc:$old, gprc:$new), "#ATOMIC_CMP_SWAP_I8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001089 [(set i32:$dst, (atomic_cmp_swap_8 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001090 def ATOMIC_CMP_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001091 (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 +00001092 [(set i32:$dst, (atomic_cmp_swap_16 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001093 def ATOMIC_CMP_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001094 (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 +00001095 [(set i32:$dst, (atomic_cmp_swap_32 xoaddr:$ptr, i32:$old, i32:$new))]>;
Dale Johannesenbdab93a2008-08-25 22:34:37 +00001096
Dale Johannesen97efa362008-08-28 17:53:09 +00001097 def ATOMIC_SWAP_I8 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001098 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_i8",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001099 [(set i32:$dst, (atomic_swap_8 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen97efa362008-08-28 17:53:09 +00001100 def ATOMIC_SWAP_I16 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001101 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I16",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001102 [(set i32:$dst, (atomic_swap_16 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen140a8bb2008-08-25 21:09:52 +00001103 def ATOMIC_SWAP_I32 : Pseudo<
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001104 (outs gprc:$dst), (ins memrr:$ptr, gprc:$new), "#ATOMIC_SWAP_I32",
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001105 [(set i32:$dst, (atomic_swap_32 xoaddr:$ptr, i32:$new))]>;
Dale Johannesen5f0cfa22008-08-22 03:49:10 +00001106 }
Evan Cheng54fc97d2008-04-19 01:30:48 +00001107}
1108
Evan Cheng53301922008-07-12 02:23:19 +00001109// Instructions to support atomic operations
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001110def LWARX : XForm_1<31, 20, (outs gprc:$rD), (ins memrr:$src),
Evan Cheng53301922008-07-12 02:23:19 +00001111 "lwarx $rD, $src", LdStLWARX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001112 [(set i32:$rD, (PPClarx xoaddr:$src))]>;
Evan Cheng53301922008-07-12 02:23:19 +00001113
1114let Defs = [CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001115def STWCX : XForm_1<31, 150, (outs), (ins gprc:$rS, memrr:$dst),
Evan Cheng53301922008-07-12 02:23:19 +00001116 "stwcx. $rS, $dst", LdStSTWCX,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001117 [(PPCstcx i32:$rS, xoaddr:$dst)]>,
Evan Cheng53301922008-07-12 02:23:19 +00001118 isDOT;
1119
Dan Gohmaneffc8c52010-05-14 16:46:02 +00001120let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in
Hal Finkel20b529b2012-04-01 04:44:16 +00001121def TRAP : XForm_24<31, 4, (outs), (ins), "trap", LdStLoad, [(trap)]>;
Nate Begeman1db3c922008-08-11 17:36:31 +00001122
Chris Lattner26e552b2006-11-14 19:19:53 +00001123//===----------------------------------------------------------------------===//
1124// PPC32 Load Instructions.
Nate Begeman07aada82004-08-30 02:28:06 +00001125//
Chris Lattner26e552b2006-11-14 19:19:53 +00001126
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001127// Unindexed (r+i) Loads.
Dan Gohman15511cf2008-12-03 18:15:48 +00001128let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001129def LBZ : DForm_1<34, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001130 "lbz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001131 [(set i32:$rD, (zextloadi8 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001132def LHA : DForm_1<42, (outs gprc:$rD), (ins memri:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00001133 "lha $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001134 [(set i32:$rD, (sextloadi16 iaddr:$src))]>,
Chris Lattnerfd977342006-03-13 05:15:10 +00001135 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001136def LHZ : DForm_1<40, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001137 "lhz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001138 [(set i32:$rD, (zextloadi16 iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001139def LWZ : DForm_1<32, (outs gprc:$rD), (ins memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001140 "lwz $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001141 [(set i32:$rD, (load iaddr:$src))]>;
Chris Lattner302bf9c2006-11-08 02:13:12 +00001142
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001143def LFS : DForm_1<48, (outs f4rc:$rD), (ins memri:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001144 "lfs $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001145 [(set f32:$rD, (load iaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001146def LFD : DForm_1<50, (outs f8rc:$rD), (ins memri:$src),
Chris Lattner4eab7142006-11-10 02:08:47 +00001147 "lfd $rD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001148 [(set f64:$rD, (load iaddr:$src))]>;
Chris Lattner4eab7142006-11-10 02:08:47 +00001149
Chris Lattner4eab7142006-11-10 02:08:47 +00001150
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001151// Unindexed (r+i) Loads with Update (preinc).
Hal Finkelfa1d1022013-04-07 05:46:58 +00001152let mayLoad = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001153def LBZU : DForm_1<35, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001154 "lbzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001155 []>, RegConstraint<"$addr.reg = $ea_result">,
1156 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001157
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001158def LHAU : DForm_1<43, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001159 "lhau $rD, $addr", LdStLHAU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001160 []>, RegConstraint<"$addr.reg = $ea_result">,
1161 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001162
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001163def LHZU : DForm_1<41, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001164 "lhzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001165 []>, RegConstraint<"$addr.reg = $ea_result">,
1166 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001167
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001168def LWZU : DForm_1<33, (outs gprc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001169 "lwzu $rD, $addr", LdStLoadUpd,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001170 []>, RegConstraint<"$addr.reg = $ea_result">,
1171 NoEncode<"$ea_result">;
Chris Lattner4eab7142006-11-10 02:08:47 +00001172
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001173def LFSU : DForm_1<49, (outs f4rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001174 "lfsu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001175 []>, RegConstraint<"$addr.reg = $ea_result">,
1176 NoEncode<"$ea_result">;
1177
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001178def LFDU : DForm_1<51, (outs f8rc:$rD, ptr_rc_nor0:$ea_result), (ins memri:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001179 "lfdu $rD, $addr", LdStLFDU,
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001180 []>, RegConstraint<"$addr.reg = $ea_result">,
1181 NoEncode<"$ea_result">;
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001182
1183
1184// Indexed (r+r) Loads with Update (preinc).
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001185def LBZUX : XForm_1<31, 119, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001186 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001187 "lbzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001188 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001189 NoEncode<"$ea_result">;
1190
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001191def LHAUX : XForm_1<31, 375, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001192 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001193 "lhaux $rD, $addr", LdStLHAU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001194 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001195 NoEncode<"$ea_result">;
1196
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001197def LHZUX : XForm_1<31, 311, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001198 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001199 "lhzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001200 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001201 NoEncode<"$ea_result">;
1202
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001203def LWZUX : XForm_1<31, 55, (outs gprc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001204 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001205 "lwzux $rD, $addr", LdStLoadUpd,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001206 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001207 NoEncode<"$ea_result">;
1208
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001209def LFSUX : XForm_1<31, 567, (outs f4rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001210 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001211 "lfsux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001212 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001213 NoEncode<"$ea_result">;
1214
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001215def LFDUX : XForm_1<31, 631, (outs f8rc:$rD, ptr_rc_nor0:$ea_result),
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001216 (ins memrr:$addr),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001217 "lfdux $rD, $addr", LdStLFDU,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001218 []>, RegConstraint<"$addr.ptrreg = $ea_result">,
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001219 NoEncode<"$ea_result">;
Nate Begemanb816f022004-10-07 22:30:03 +00001220}
Dan Gohman41474ba2008-12-03 02:30:17 +00001221}
Chris Lattner302bf9c2006-11-08 02:13:12 +00001222
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001223// Indexed (r+r) Loads.
Chris Lattner26e552b2006-11-14 19:19:53 +00001224//
Dan Gohman15511cf2008-12-03 18:15:48 +00001225let canFoldAsLoad = 1, PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001226def LBZX : XForm_1<31, 87, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001227 "lbzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001228 [(set i32:$rD, (zextloadi8 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001229def LHAX : XForm_1<31, 343, (outs gprc:$rD), (ins memrr:$src),
Chris Lattner26e552b2006-11-14 19:19:53 +00001230 "lhax $rD, $src", LdStLHA,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001231 [(set i32:$rD, (sextloadi16 xaddr:$src))]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001232 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001233def LHZX : XForm_1<31, 279, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001234 "lhzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001235 [(set i32:$rD, (zextloadi16 xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001236def LWZX : XForm_1<31, 23, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001237 "lwzx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001238 [(set i32:$rD, (load xaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001239
1240
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001241def LHBRX : XForm_1<31, 790, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001242 "lhbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001243 [(set i32:$rD, (PPClbrx xoaddr:$src, i16))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001244def LWBRX : XForm_1<31, 534, (outs gprc:$rD), (ins memrr:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001245 "lwbrx $rD, $src", LdStLoad,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001246 [(set i32:$rD, (PPClbrx xoaddr:$src, i32))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001247
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001248def LFSX : XForm_25<31, 535, (outs f4rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001249 "lfsx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001250 [(set f32:$frD, (load xaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001251def LFDX : XForm_25<31, 599, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001252 "lfdx $frD, $src", LdStLFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001253 [(set f64:$frD, (load xaddr:$src))]>;
Hal Finkel8049ab12013-03-31 10:12:51 +00001254
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001255def LFIWAX : XForm_25<31, 855, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel8049ab12013-03-31 10:12:51 +00001256 "lfiwax $frD, $src", LdStLFD,
1257 [(set f64:$frD, (PPClfiwax xoaddr:$src))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001258def LFIWZX : XForm_25<31, 887, (outs f8rc:$frD), (ins memrr:$src),
Hal Finkel46479192013-04-01 17:52:07 +00001259 "lfiwzx $frD, $src", LdStLFD,
1260 [(set f64:$frD, (PPClfiwzx xoaddr:$src))]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001261}
1262
1263//===----------------------------------------------------------------------===//
1264// PPC32 Store Instructions.
1265//
1266
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001267// Unindexed (r+i) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001268let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001269def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001270 "stb $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001271 [(truncstorei8 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001272def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001273 "sth $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001274 [(truncstorei16 i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001275def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
Hal Finkel20b529b2012-04-01 04:44:16 +00001276 "stw $rS, $src", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001277 [(store i32:$rS, iaddr:$src)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001278def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001279 "stfs $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001280 [(store f32:$rS, iaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001281def STFD : DForm_1<54, (outs), (ins f8rc:$rS, memri:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001282 "stfd $rS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001283 [(store f64:$rS, iaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001284}
1285
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001286// Unindexed (r+i) Stores with Update (preinc).
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001287let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001288def STBU : DForm_1<39, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001289 "stbu $rS, $dst", LdStStoreUpd, []>,
1290 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001291def STHU : DForm_1<45, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001292 "sthu $rS, $dst", LdStStoreUpd, []>,
1293 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001294def STWU : DForm_1<37, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001295 "stwu $rS, $dst", LdStStoreUpd, []>,
1296 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001297def STFSU : DForm_1<53, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001298 "stfsu $rS, $dst", LdStSTFDU, []>,
1299 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001300def STFDU : DForm_1<55, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memri:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001301 "stfdu $rS, $dst", LdStSTFDU, []>,
1302 RegConstraint<"$dst.reg = $ea_res">, NoEncode<"$ea_res">;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001303}
1304
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001305// Patterns to match the pre-inc stores. We can't put the patterns on
1306// the instruction definitions directly as ISel wants the address base
1307// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001308def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1309 (STBU $rS, iaddroff:$ptroff, $ptrreg)>;
1310def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1311 (STHU $rS, iaddroff:$ptroff, $ptrreg)>;
1312def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1313 (STWU $rS, iaddroff:$ptroff, $ptrreg)>;
1314def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1315 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>;
1316def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff),
1317 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>;
Chris Lattnerf8e07f42006-11-15 02:43:19 +00001318
Chris Lattner26e552b2006-11-14 19:19:53 +00001319// Indexed (r+r) Stores.
Chris Lattner9c9fbf82008-01-06 05:53:26 +00001320let PPC970_Unit = 2 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001321def STBX : XForm_8<31, 215, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001322 "stbx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001323 [(truncstorei8 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001324 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001325def STHX : XForm_8<31, 407, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001326 "sthx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001327 [(truncstorei16 i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001328 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001329def STWX : XForm_8<31, 151, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001330 "stwx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001331 [(store i32:$rS, xaddr:$dst)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001332 PPC970_DGroup_Cracked;
Hal Finkelac81cc32012-06-19 02:34:32 +00001333
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001334def STHBRX: XForm_8<31, 918, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001335 "sthbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001336 [(PPCstbrx i32:$rS, xoaddr:$dst, i16)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001337 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001338def STWBRX: XForm_8<31, 662, (outs), (ins gprc:$rS, memrr:$dst),
Hal Finkel20b529b2012-04-01 04:44:16 +00001339 "stwbrx $rS, $dst", LdStStore,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001340 [(PPCstbrx i32:$rS, xoaddr:$dst, i32)]>,
Chris Lattner26e552b2006-11-14 19:19:53 +00001341 PPC970_DGroup_Cracked;
1342
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001343def STFIWX: XForm_28<31, 983, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001344 "stfiwx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001345 [(PPCstfiwx f64:$frS, xoaddr:$dst)]>;
Chris Lattnerc8478d82008-01-06 06:44:58 +00001346
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001347def STFSX : XForm_28<31, 663, (outs), (ins f4rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001348 "stfsx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001349 [(store f32:$frS, xaddr:$dst)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001350def STFDX : XForm_28<31, 727, (outs), (ins f8rc:$frS, memrr:$dst),
Hal Finkel8dc440a2012-08-28 02:49:14 +00001351 "stfdx $frS, $dst", LdStSTFD,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001352 [(store f64:$frS, xaddr:$dst)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001353}
1354
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001355// Indexed (r+r) Stores with Update (preinc).
1356let PPC970_Unit = 2, mayStore = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001357def STBUX : XForm_8<31, 247, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001358 "stbux $rS, $dst", LdStStoreUpd, []>,
Ulrich Weigand89ec8472013-03-22 14:59:13 +00001359 RegConstraint<"$dst.ptrreg = $ea_res">, NoEncode<"$ea_res">,
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001360 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001361def STHUX : XForm_8<31, 439, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001362 "sthux $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 STWUX : XForm_8<31, 183, (outs ptr_rc_nor0:$ea_res), (ins gprc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001366 "stwux $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 STFSUX: XForm_8<31, 695, (outs ptr_rc_nor0:$ea_res), (ins f4rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001370 "stfsux $rS, $dst", LdStSTFDU, []>,
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 STFDUX: XForm_8<31, 759, (outs ptr_rc_nor0:$ea_res), (ins f8rc:$rS, memrr:$dst),
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001374 "stfdux $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;
1377}
1378
1379// Patterns to match the pre-inc stores. We can't put the patterns on
1380// the instruction definitions directly as ISel wants the address base
1381// and offset to be separate operands, not a single complex operand.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00001382def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1383 (STBUX $rS, $ptrreg, $ptroff)>;
1384def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1385 (STHUX $rS, $ptrreg, $ptroff)>;
1386def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1387 (STWUX $rS, $ptrreg, $ptroff)>;
1388def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1389 (STFSUX $rS, $ptrreg, $ptroff)>;
1390def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iPTR:$ptroff),
1391 (STFDUX $rS, $ptrreg, $ptroff)>;
Ulrich Weigand5882e3d2013-03-19 19:52:04 +00001392
Dale Johannesenf87d6c02008-08-22 17:20:54 +00001393def SYNC : XForm_24_sync<31, 598, (outs), (ins),
1394 "sync", LdStSync,
1395 [(int_ppc_sync)]>;
Chris Lattner26e552b2006-11-14 19:19:53 +00001396
1397//===----------------------------------------------------------------------===//
1398// PPC32 Arithmetic Instructions.
1399//
Chris Lattner302bf9c2006-11-08 02:13:12 +00001400
Chris Lattner88d211f2006-03-12 09:13:49 +00001401let PPC970_Unit = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001402def ADDI : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001403 "addi $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001404 [(set i32:$rD, (add i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001405let BaseName = "addic" in {
1406let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001407def ADDIC : DForm_2<12, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001408 "addic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001409 [(set i32:$rD, (addc i32:$rA, immSExt16:$imm))]>,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001410 RecFormRel, PPC970_DGroup_Cracked;
Hal Finkel59857462013-04-12 18:17:57 +00001411let Defs = [CARRY, CR0] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001412def ADDICo : DForm_2<13, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001413 "addic. $rD, $rA, $imm", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001414 []>, isDOT, RecFormRel;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001415}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001416def ADDIS : DForm_2<15, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001417 "addis $rD, $rA, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001418 [(set i32:$rD, (add i32:$rA, imm16ShiftedSExt:$imm))]>;
Ulrich Weigand3d386422013-03-26 10:57:16 +00001419let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001420def LA : DForm_2<14, (outs gprc:$rD), (ins gprc_nor0:$rA, symbolLo:$sym),
Jim Laskey53842142005-10-19 19:51:16 +00001421 "la $rD, $sym($rA)", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001422 [(set i32:$rD, (add i32:$rA,
Chris Lattner490ad082005-11-17 17:52:01 +00001423 (PPClo tglobaladdr:$sym, 0)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001424def MULLI : DForm_2< 7, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001425 "mulli $rD, $rA, $imm", IntMulLI,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001426 [(set i32:$rD, (mul i32:$rA, immSExt16:$imm))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001427let Defs = [CARRY] in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001428def SUBFIC : DForm_2< 8, (outs gprc:$rD), (ins gprc:$rA, s16imm:$imm),
Jim Laskey53842142005-10-19 19:51:16 +00001429 "subfic $rD, $rA, $imm", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001430 [(set i32:$rD, (subc immSExt16:$imm, i32:$rA))]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001431
Hal Finkelf3c38282012-08-28 02:10:33 +00001432let isReMaterializable = 1, isAsCheapAsAMove = 1, isMoveImm = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001433 def LI : DForm_2_r0<14, (outs gprc:$rD), (ins symbolLo:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001434 "li $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001435 [(set i32:$rD, immSExt16:$imm)]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001436 def LIS : DForm_2_r0<15, (outs gprc:$rD), (ins symbolHi:$imm),
Hal Finkel16803092012-06-12 19:01:24 +00001437 "lis $rD, $imm", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001438 [(set i32:$rD, imm16ShiftedSExt:$imm)]>;
Bill Wendling0f940c92007-12-07 21:42:31 +00001439}
Chris Lattner88d211f2006-03-12 09:13:49 +00001440}
Chris Lattner26e552b2006-11-14 19:19:53 +00001441
Chris Lattner88d211f2006-03-12 09:13:49 +00001442let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel59857462013-04-12 18:17:57 +00001443let Defs = [CR0] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001444def ANDIo : DForm_4<28, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001445 "andi. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001446 [(set i32:$dst, (and i32:$src1, immZExt16:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001447 isDOT;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001448def ANDISo : DForm_4<29, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Jim Laskey53842142005-10-19 19:51:16 +00001449 "andis. $dst, $src1, $src2", IntGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001450 [(set i32:$dst, (and i32:$src1, imm16ShiftedZExt:$src2))]>,
Nate Begeman789fd422006-02-12 09:09:52 +00001451 isDOT;
Hal Finkel59857462013-04-12 18:17:57 +00001452}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001453def ORI : DForm_4<24, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001454 "ori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001455 [(set i32:$dst, (or i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001456def ORIS : DForm_4<25, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001457 "oris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001458 [(set i32:$dst, (or i32:$src1, imm16ShiftedZExt:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001459def XORI : DForm_4<26, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001460 "xori $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001461 [(set i32:$dst, (xor i32:$src1, immZExt16:$src2))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001462def XORIS : DForm_4<27, (outs gprc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel16803092012-06-12 19:01:24 +00001463 "xoris $dst, $src1, $src2", IntSimple,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001464 [(set i32:$dst, (xor i32:$src1, imm16ShiftedZExt:$src2))]>;
Hal Finkel16803092012-06-12 19:01:24 +00001465def NOP : DForm_4_zero<24, (outs), (ins), "nop", IntSimple,
Nate Begeman09761222005-12-09 23:54:18 +00001466 []>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001467let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001468 def CMPWI : DForm_5_ext<11, (outs crrc:$crD), (ins gprc:$rA, s16imm:$imm),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001469 "cmpwi $crD, $rA, $imm", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001470 def CMPLWI : DForm_6_ext<10, (outs crrc:$dst), (ins gprc:$src1, u16imm:$src2),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001471 "cmplwi $dst, $src1, $src2", IntCompare>;
1472}
Chris Lattner88d211f2006-03-12 09:13:49 +00001473}
Nate Begemaned428532004-09-04 05:00:00 +00001474
Hal Finkel171a8ad2013-04-12 02:18:09 +00001475let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001476defm NAND : XForm_6r<31, 476, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001477 "nand", "$rA, $rS, $rB", IntSimple,
1478 [(set i32:$rA, (not (and i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001479defm AND : XForm_6r<31, 28, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001480 "and", "$rA, $rS, $rB", IntSimple,
1481 [(set i32:$rA, (and i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001482defm ANDC : XForm_6r<31, 60, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001483 "andc", "$rA, $rS, $rB", IntSimple,
1484 [(set i32:$rA, (and i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001485defm OR : XForm_6r<31, 444, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001486 "or", "$rA, $rS, $rB", IntSimple,
1487 [(set i32:$rA, (or i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001488defm NOR : XForm_6r<31, 124, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001489 "nor", "$rA, $rS, $rB", IntSimple,
1490 [(set i32:$rA, (not (or i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001491defm ORC : XForm_6r<31, 412, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001492 "orc", "$rA, $rS, $rB", IntSimple,
1493 [(set i32:$rA, (or i32:$rS, (not i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001494defm EQV : XForm_6r<31, 284, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001495 "eqv", "$rA, $rS, $rB", IntSimple,
1496 [(set i32:$rA, (not (xor i32:$rS, i32:$rB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001497defm XOR : XForm_6r<31, 316, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001498 "xor", "$rA, $rS, $rB", IntSimple,
1499 [(set i32:$rA, (xor i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001500defm SLW : XForm_6r<31, 24, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001501 "slw", "$rA, $rS, $rB", IntGeneral,
1502 [(set i32:$rA, (PPCshl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001503defm SRW : XForm_6r<31, 536, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001504 "srw", "$rA, $rS, $rB", IntGeneral,
1505 [(set i32:$rA, (PPCsrl i32:$rS, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001506defm SRAW : XForm_6rc<31, 792, (outs gprc:$rA), (ins gprc:$rS, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001507 "sraw", "$rA, $rS, $rB", IntShift,
1508 [(set i32:$rA, (PPCsra i32:$rS, i32:$rB))]>;
Dale Johannesen8dffc812009-09-18 20:15:22 +00001509}
Chris Lattner26e552b2006-11-14 19:19:53 +00001510
Chris Lattner88d211f2006-03-12 09:13:49 +00001511let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001512let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001513defm SRAWI : XForm_10rc<31, 824, (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH),
Hal Finkel59857462013-04-12 18:17:57 +00001514 "srawi", "$rA, $rS, $SH", IntShift,
1515 [(set i32:$rA, (sra i32:$rS, (i32 imm:$SH)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001516defm CNTLZW : XForm_11r<31, 26, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001517 "cntlzw", "$rA, $rS", IntGeneral,
1518 [(set i32:$rA, (ctlz i32:$rS))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001519defm EXTSB : XForm_11r<31, 954, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001520 "extsb", "$rA, $rS", IntSimple,
1521 [(set i32:$rA, (sext_inreg i32:$rS, i8))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001522defm EXTSH : XForm_11r<31, 922, (outs gprc:$rA), (ins gprc:$rS),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001523 "extsh", "$rA, $rS", IntSimple,
1524 [(set i32:$rA, (sext_inreg i32:$rS, i16))]>;
1525}
Hal Finkel00e86ad2013-04-15 02:37:46 +00001526let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001527 def CMPW : XForm_16_ext<31, 0, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001528 "cmpw $crD, $rA, $rB", IntCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001529 def CMPLW : XForm_16_ext<31, 32, (outs crrc:$crD), (ins gprc:$rA, gprc:$rB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001530 "cmplw $crD, $rA, $rB", IntCompare>;
1531}
Chris Lattner88d211f2006-03-12 09:13:49 +00001532}
1533let PPC970_Unit = 3 in { // FPU Operations.
Evan Cheng64d80e32007-07-19 01:14:50 +00001534//def FCMPO : XForm_17<63, 32, (outs CRRC:$crD), (ins FPRC:$fA, FPRC:$fB),
Jim Laskey53842142005-10-19 19:51:16 +00001535// "fcmpo $crD, $fA, $fB", FPCompare>;
Hal Finkel00e86ad2013-04-15 02:37:46 +00001536let isCompare = 1, neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001537 def FCMPUS : XForm_17<63, 0, (outs crrc:$crD), (ins f4rc:$fA, f4rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001538 "fcmpu $crD, $fA, $fB", FPCompare>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001539 def FCMPUD : XForm_17<63, 0, (outs crrc:$crD), (ins f8rc:$fA, f8rc:$fB),
Hal Finkel00e86ad2013-04-15 02:37:46 +00001540 "fcmpu $crD, $fA, $fB", FPCompare>;
1541}
Chris Lattner26e552b2006-11-14 19:19:53 +00001542
Dale Johannesenb384ab92008-10-29 18:26:45 +00001543let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001544 let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001545 defm FCTIWZ : XForm_26r<63, 15, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001546 "fctiwz", "$frD, $frB", FPGeneral,
1547 [(set f64:$frD, (PPCfctiwz f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001548
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001549 defm FRSP : XForm_26r<63, 12, (outs f4rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001550 "frsp", "$frD, $frB", FPGeneral,
1551 [(set f32:$frD, (fround f64:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001552
1553 // The frin -> nearbyint mapping is valid only in fast-math mode.
Hal Finkel171a8ad2013-04-12 02:18:09 +00001554 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001555 defm FRIND : XForm_26r<63, 392, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001556 "frin", "$frD, $frB", FPGeneral,
1557 [(set f64:$frD, (fnearbyint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001558 defm FRINS : XForm_26r<63, 392, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001559 "frin", "$frD, $frB", FPGeneral,
1560 [(set f32:$frD, (fnearbyint f32:$frB))]>;
1561 }
Hal Finkelf5d5c432013-03-29 08:57:48 +00001562
Hal Finkel0882fd62013-03-29 19:41:55 +00001563 // These pseudos expand to rint but also set FE_INEXACT when the result does
1564 // not equal the argument.
1565 let usesCustomInserter = 1, Defs = [RM] in { // FIXME: Model FPSCR!
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001566 def FRINDrint : Pseudo<(outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001567 "#FRINDrint", [(set f64:$frD, (frint f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001568 def FRINSrint : Pseudo<(outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel0882fd62013-03-29 19:41:55 +00001569 "#FRINSrint", [(set f32:$frD, (frint f32:$frB))]>;
1570 }
1571
Hal Finkel171a8ad2013-04-12 02:18:09 +00001572 let neverHasSideEffects = 1 in {
1573 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001574 defm FRIPD : XForm_26r<63, 456, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001575 "frip", "$frD, $frB", FPGeneral,
1576 [(set f64:$frD, (fceil f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001577 defm FRIPS : XForm_26r<63, 456, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001578 "frip", "$frD, $frB", FPGeneral,
1579 [(set f32:$frD, (fceil f32:$frB))]>;
1580 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001581 defm FRIZD : XForm_26r<63, 424, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001582 "friz", "$frD, $frB", FPGeneral,
1583 [(set f64:$frD, (ftrunc f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001584 defm FRIZS : XForm_26r<63, 424, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001585 "friz", "$frD, $frB", FPGeneral,
1586 [(set f32:$frD, (ftrunc f32:$frB))]>;
1587 let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001588 defm FRIMD : XForm_26r<63, 488, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001589 "frim", "$frD, $frB", FPGeneral,
1590 [(set f64:$frD, (ffloor f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001591 defm FRIMS : XForm_26r<63, 488, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001592 "frim", "$frD, $frB", FPGeneral,
1593 [(set f32:$frD, (ffloor f32:$frB))]>;
Hal Finkelf5d5c432013-03-29 08:57:48 +00001594
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001595 defm FSQRT : XForm_26r<63, 22, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001596 "fsqrt", "$frD, $frB", FPSqrt,
1597 [(set f64:$frD, (fsqrt f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001598 defm FSQRTS : XForm_26r<59, 22, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001599 "fsqrts", "$frD, $frB", FPSqrt,
1600 [(set f32:$frD, (fsqrt f32:$frB))]>;
1601 }
Dale Johannesenb384ab92008-10-29 18:26:45 +00001602 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001603}
Chris Lattner919c0322005-10-01 01:35:02 +00001604
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00001605/// Note that FMR is defined as pseudo-ops on the PPC970 because they are
Chris Lattner9d5da1d2006-03-24 07:12:19 +00001606/// often coalesced away and we don't want the dispatch group builder to think
Chris Lattner88d211f2006-03-12 09:13:49 +00001607/// that they will fill slots (which could cause the load of a LSU reject to
1608/// sneak into a d-group with a store).
Hal Finkelfa1cac22013-04-07 04:56:16 +00001609let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001610defm FMR : XForm_26r<63, 72, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001611 "fmr", "$frD, $frB", FPGeneral,
1612 []>, // (set f32:$frD, f32:$frB)
1613 PPC970_Unit_Pseudo;
Chris Lattner919c0322005-10-01 01:35:02 +00001614
Hal Finkel171a8ad2013-04-12 02:18:09 +00001615let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Chris Lattner919c0322005-10-01 01:35:02 +00001616// These are artificially split into two different forms, for 4/8 byte FP.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001617defm FABSS : XForm_26r<63, 264, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001618 "fabs", "$frD, $frB", FPGeneral,
1619 [(set f32:$frD, (fabs f32:$frB))]>;
1620let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001621defm FABSD : XForm_26r<63, 264, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001622 "fabs", "$frD, $frB", FPGeneral,
1623 [(set f64:$frD, (fabs f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001624defm FNABSS : XForm_26r<63, 136, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001625 "fnabs", "$frD, $frB", FPGeneral,
1626 [(set f32:$frD, (fneg (fabs f32:$frB)))]>;
1627let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001628defm FNABSD : XForm_26r<63, 136, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001629 "fnabs", "$frD, $frB", FPGeneral,
1630 [(set f64:$frD, (fneg (fabs f64:$frB)))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001631defm FNEGS : XForm_26r<63, 40, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001632 "fneg", "$frD, $frB", FPGeneral,
1633 [(set f32:$frD, (fneg f32:$frB))]>;
1634let Interpretation64Bit = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001635defm FNEGD : XForm_26r<63, 40, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001636 "fneg", "$frD, $frB", FPGeneral,
1637 [(set f64:$frD, (fneg f64:$frB))]>;
Hal Finkel827307b2013-04-03 04:01:11 +00001638
1639// Reciprocal estimates.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001640defm FRE : XForm_26r<63, 24, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001641 "fre", "$frD, $frB", FPGeneral,
1642 [(set f64:$frD, (PPCfre f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001643defm FRES : XForm_26r<59, 24, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001644 "fres", "$frD, $frB", FPGeneral,
1645 [(set f32:$frD, (PPCfre f32:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001646defm FRSQRTE : XForm_26r<63, 26, (outs f8rc:$frD), (ins f8rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001647 "frsqrte", "$frD, $frB", FPGeneral,
1648 [(set f64:$frD, (PPCfrsqrte f64:$frB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001649defm FRSQRTES : XForm_26r<59, 26, (outs f4rc:$frD), (ins f4rc:$frB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001650 "frsqrtes", "$frD, $frB", FPGeneral,
1651 [(set f32:$frD, (PPCfrsqrte f32:$frB))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001652}
Nate Begeman6b3dc552004-08-29 22:45:13 +00001653
Nate Begeman07aada82004-08-30 02:28:06 +00001654// XL-Form instructions. condition register logical ops.
1655//
Hal Finkelaecbe242013-04-07 05:16:57 +00001656let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001657def MCRF : XLForm_3<19, 0, (outs crrc:$BF), (ins crrc:$BFA),
Chris Lattner88d211f2006-03-12 09:13:49 +00001658 "mcrf $BF, $BFA", BrMCR>,
1659 PPC970_DGroup_First, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001660
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001661def CREQV : XLForm_1<19, 289, (outs crbitrc:$CRD),
1662 (ins crbitrc:$CRA, crbitrc:$CRB),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001663 "creqv $CRD, $CRA, $CRB", BrCR,
1664 []>;
1665
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001666def CROR : XLForm_1<19, 449, (outs crbitrc:$CRD),
1667 (ins crbitrc:$CRA, crbitrc:$CRB),
Nicolas Geoffray0404cd92008-03-10 14:12:10 +00001668 "cror $CRD, $CRA, $CRB", BrCR,
1669 []>;
1670
Ulrich Weigand3d386422013-03-26 10:57:16 +00001671let isCodeGenOnly = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001672def CRSET : XLForm_1_ext<19, 289, (outs crbitrc:$dst), (ins),
Chris Lattner9f0bc652007-02-25 05:34:32 +00001673 "creqv $dst, $dst, $dst", BrCR,
1674 []>;
1675
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001676def CRUNSET: XLForm_1_ext<19, 193, (outs crbitrc:$dst), (ins),
Roman Divacky0aaa9192011-08-30 17:04:16 +00001677 "crxor $dst, $dst, $dst", BrCR,
1678 []>;
1679
Hal Finkel82b38212012-08-28 02:10:27 +00001680let Defs = [CR1EQ], CRD = 6 in {
1681def CR6SET : XLForm_1_ext<19, 289, (outs), (ins),
1682 "creqv 6, 6, 6", BrCR,
1683 [(PPCcr6set)]>;
1684
1685def CR6UNSET: XLForm_1_ext<19, 193, (outs), (ins),
1686 "crxor 6, 6, 6", BrCR,
1687 [(PPCcr6unset)]>;
1688}
Ulrich Weigand3d386422013-03-26 10:57:16 +00001689}
Hal Finkel82b38212012-08-28 02:10:27 +00001690
Chris Lattner88d211f2006-03-12 09:13:49 +00001691// XFX-Form instructions. Instructions that deal with SPRs.
Nate Begeman07aada82004-08-30 02:28:06 +00001692//
Dale Johannesen639076f2008-10-23 20:41:28 +00001693let Uses = [CTR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001694def MFCTR : XFXForm_1_ext<31, 339, 9, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001695 "mfctr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001696 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001697}
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001698let Defs = [CTR], Pattern = [(PPCmtctr i32:$rS)] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001699def MTCTR : XFXForm_7_ext<31, 467, 9, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001700 "mtctr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001701 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001702}
Chris Lattner1877ec92006-03-13 21:52:10 +00001703
Dale Johannesen639076f2008-10-23 20:41:28 +00001704let Defs = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001705def MTLR : XFXForm_7_ext<31, 467, 8, (outs), (ins gprc:$rS),
Evan Cheng64d80e32007-07-19 01:14:50 +00001706 "mtlr $rS", SprMTSPR>,
Chris Lattner1877ec92006-03-13 21:52:10 +00001707 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001708}
1709let Uses = [LR] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001710def MFLR : XFXForm_1_ext<31, 339, 8, (outs gprc:$rT), (ins),
Evan Cheng64d80e32007-07-19 01:14:50 +00001711 "mflr $rT", SprMFSPR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001712 PPC970_DGroup_First, PPC970_Unit_FXU;
Dale Johannesen639076f2008-10-23 20:41:28 +00001713}
Chris Lattner1877ec92006-03-13 21:52:10 +00001714
1715// Move to/from VRSAVE: despite being a SPR, the VRSAVE register is renamed like
1716// a GPR on the PPC970. As such, copies in and out have the same performance
1717// characteristics as an OR instruction.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001718def MTVRSAVE : XFXForm_7_ext<31, 467, 256, (outs), (ins gprc:$rS),
Chris Lattner1877ec92006-03-13 21:52:10 +00001719 "mtspr 256, $rS", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001720 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001721def MFVRSAVE : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT), (ins),
Chris Lattner1877ec92006-03-13 21:52:10 +00001722 "mfspr $rT, 256", IntGeneral>,
Nate Begeman133decd2006-03-15 05:25:05 +00001723 PPC970_DGroup_First, PPC970_Unit_FXU;
Chris Lattner1877ec92006-03-13 21:52:10 +00001724
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001725let isCodeGenOnly = 1 in {
1726 def MTVRSAVEv : XFXForm_7_ext<31, 467, 256,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001727 (outs VRSAVERC:$reg), (ins gprc:$rS),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001728 "mtspr 256, $rS", IntGeneral>,
1729 PPC970_DGroup_Single, PPC970_Unit_FXU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001730 def MFVRSAVEv : XFXForm_1_ext<31, 339, 256, (outs gprc:$rT),
Hal Finkel10f7f2a2013-03-21 19:03:21 +00001731 (ins VRSAVERC:$reg),
1732 "mfspr $rT, 256", IntGeneral>,
1733 PPC970_DGroup_First, PPC970_Unit_FXU;
1734}
1735
1736// SPILL_VRSAVE - Indicate that we're dumping the VRSAVE register,
1737// so we'll need to scavenge a register for it.
1738let mayStore = 1 in
1739def SPILL_VRSAVE : Pseudo<(outs), (ins VRSAVERC:$vrsave, memri:$F),
1740 "#SPILL_VRSAVE", []>;
1741
1742// RESTORE_VRSAVE - Indicate that we're restoring the VRSAVE register (previously
1743// spilled), so we'll need to scavenge a register for it.
1744let mayLoad = 1 in
1745def RESTORE_VRSAVE : Pseudo<(outs VRSAVERC:$vrsave), (ins memri:$F),
1746 "#RESTORE_VRSAVE", []>;
1747
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001748let neverHasSideEffects = 1 in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001749def MTCRF : XFXForm_5<31, 144, (outs crbitm:$FXM), (ins gprc:$rS),
Chris Lattner88d211f2006-03-12 09:13:49 +00001750 "mtcrf $FXM, $rS", BrMCRX>,
1751 PPC970_MicroCode, PPC970_Unit_CRU;
Dale Johannesen5f07d522010-05-20 17:48:26 +00001752
1753// This is a pseudo for MFCR, which implicitly uses all 8 of its subregisters;
1754// declaring that here gives the local register allocator problems with this:
Dale Johannesenb384ab92008-10-29 18:26:45 +00001755// vreg = MCRF CR0
1756// MFCR <kill of whatever preg got assigned to vreg>
Dale Johannesen5f07d522010-05-20 17:48:26 +00001757// while not declaring it breaks DeadMachineInstructionElimination.
1758// As it turns out, in all cases where we currently use this,
1759// we're only interested in one subregister of it. Represent this in the
1760// instruction to keep the register allocator from becoming confused.
Chris Lattner2ead4582010-11-14 22:03:15 +00001761//
1762// FIXME: Make this a real Pseudo instruction when the JIT switches to MC.
Ulrich Weigand3d386422013-03-26 10:57:16 +00001763let isCodeGenOnly = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001764def MFCRpseud: XFXForm_3<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Will Schmidt91638152012-10-04 18:14:28 +00001765 "#MFCRpseud", SprMFCR>,
Chris Lattner6d92cad2006-03-26 10:06:40 +00001766 PPC970_MicroCode, PPC970_Unit_CRU;
Chris Lattner2ead4582010-11-14 22:03:15 +00001767
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001768def MFOCRF: XFXForm_5a<31, 19, (outs gprc:$rT), (ins crbitm:$FXM),
Hal Finkel0a1852b2012-06-11 15:43:15 +00001769 "mfocrf $rT, $FXM", SprMFCR>,
Chris Lattner88d211f2006-03-12 09:13:49 +00001770 PPC970_DGroup_First, PPC970_Unit_CRU;
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001771} // neverHasSideEffects = 1
1772
Hal Finkel63496f62013-04-13 23:06:15 +00001773let neverHasSideEffects = 1 in
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001774def MFCR : XFXForm_3<31, 19, (outs gprc:$rT), (ins),
Hal Finkelf0e3ca02013-04-07 14:33:13 +00001775 "mfcr $rT", SprMFCR>,
1776 PPC970_MicroCode, PPC970_Unit_CRU;
Nate Begeman07aada82004-08-30 02:28:06 +00001777
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001778// Pseudo instruction to perform FADD in round-to-zero mode.
1779let usesCustomInserter = 1, Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001780 def FADDrtz: Pseudo<(outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB), "",
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001781 [(set f64:$FRT, (PPCfaddrtz f64:$FRA, f64:$FRB))]>;
1782}
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001783
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001784// The above pseudo gets expanded to make use of the following instructions
1785// to manipulate FPSCR. Note that FPSCR is not modeled at the DAG level.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001786let Uses = [RM], Defs = [RM] in {
1787 def MTFSB0 : XForm_43<63, 70, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001788 "mtfsb0 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001789 PPC970_DGroup_Single, PPC970_Unit_FPU;
1790 def MTFSB1 : XForm_43<63, 38, (outs), (ins u5imm:$FM),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001791 "mtfsb1 $FM", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001792 PPC970_DGroup_Single, PPC970_Unit_FPU;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001793 def MTFSF : XFLForm<63, 711, (outs), (ins i32imm:$FM, f8rc:$rT),
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00001794 "mtfsf $FM, $rT", IntMTFSB0, []>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001795 PPC970_DGroup_Single, PPC970_Unit_FPU;
1796}
1797let Uses = [RM] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001798 def MFFS : XForm_42<63, 583, (outs f8rc:$rT), (ins),
Dale Johannesenb384ab92008-10-29 18:26:45 +00001799 "mffs $rT", IntMFFS,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001800 [(set f64:$rT, (PPCmffs))]>,
Dale Johannesenb384ab92008-10-29 18:26:45 +00001801 PPC970_DGroup_Single, PPC970_Unit_FPU;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001802}
1803
Dale Johannesen6eaeff22007-10-10 01:01:31 +00001804
Hal Finkel171a8ad2013-04-12 02:18:09 +00001805let PPC970_Unit = 1, neverHasSideEffects = 1 in { // FXU Operations.
Nate Begeman07aada82004-08-30 02:28:06 +00001806// XO-Form instructions. Arithmetic instructions that can set overflow bit
1807//
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001808defm ADD4 : XOForm_1r<31, 266, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001809 "add", "$rT, $rA, $rB", IntSimple,
1810 [(set i32:$rT, (add i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001811defm ADDC : XOForm_1rc<31, 10, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001812 "addc", "$rT, $rA, $rB", IntGeneral,
1813 [(set i32:$rT, (addc i32:$rA, i32:$rB))]>,
1814 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001815defm DIVW : XOForm_1r<31, 491, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001816 "divw", "$rT, $rA, $rB", IntDivW,
1817 [(set i32:$rT, (sdiv i32:$rA, i32:$rB))]>,
1818 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001819defm DIVWU : XOForm_1r<31, 459, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001820 "divwu", "$rT, $rA, $rB", IntDivW,
1821 [(set i32:$rT, (udiv i32:$rA, i32:$rB))]>,
1822 PPC970_DGroup_First, PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001823defm MULHW : XOForm_1r<31, 75, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001824 "mulhw", "$rT, $rA, $rB", IntMulHW,
1825 [(set i32:$rT, (mulhs i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001826defm MULHWU : XOForm_1r<31, 11, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001827 "mulhwu", "$rT, $rA, $rB", IntMulHWU,
1828 [(set i32:$rT, (mulhu i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001829defm MULLW : XOForm_1r<31, 235, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001830 "mullw", "$rT, $rA, $rB", IntMulHW,
1831 [(set i32:$rT, (mul i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001832defm SUBF : XOForm_1r<31, 40, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001833 "subf", "$rT, $rA, $rB", IntGeneral,
1834 [(set i32:$rT, (sub i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001835defm SUBFC : XOForm_1rc<31, 8, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001836 "subfc", "$rT, $rA, $rB", IntGeneral,
1837 [(set i32:$rT, (subc i32:$rB, i32:$rA))]>,
1838 PPC970_DGroup_Cracked;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001839defm NEG : XOForm_3r<31, 104, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001840 "neg", "$rT, $rA", IntSimple,
1841 [(set i32:$rT, (ineg i32:$rA))]>;
Hal Finkel59857462013-04-12 18:17:57 +00001842let Uses = [CARRY] in {
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001843defm ADDE : XOForm_1rc<31, 138, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001844 "adde", "$rT, $rA, $rB", IntGeneral,
1845 [(set i32:$rT, (adde i32:$rA, i32:$rB))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001846defm ADDME : XOForm_3rc<31, 234, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001847 "addme", "$rT, $rA", IntGeneral,
1848 [(set i32:$rT, (adde i32:$rA, -1))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001849defm ADDZE : XOForm_3rc<31, 202, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001850 "addze", "$rT, $rA", IntGeneral,
1851 [(set i32:$rT, (adde i32:$rA, 0))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001852defm SUBFE : XOForm_1rc<31, 136, 0, (outs gprc:$rT), (ins gprc:$rA, gprc:$rB),
Hal Finkel59857462013-04-12 18:17:57 +00001853 "subfe", "$rT, $rA, $rB", IntGeneral,
1854 [(set i32:$rT, (sube i32:$rB, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001855defm SUBFME : XOForm_3rc<31, 232, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001856 "subfme", "$rT, $rA", IntGeneral,
1857 [(set i32:$rT, (sube -1, i32:$rA))]>;
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001858defm SUBFZE : XOForm_3rc<31, 200, 0, (outs gprc:$rT), (ins gprc:$rA),
Hal Finkel59857462013-04-12 18:17:57 +00001859 "subfze", "$rT, $rA", IntGeneral,
1860 [(set i32:$rT, (sube 0, i32:$rA))]>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001861}
Dale Johannesen8dffc812009-09-18 20:15:22 +00001862}
Nate Begeman07aada82004-08-30 02:28:06 +00001863
1864// A-Form instructions. Most of the instructions executed in the FPU are of
1865// this type.
1866//
Hal Finkel171a8ad2013-04-12 02:18:09 +00001867let PPC970_Unit = 3, neverHasSideEffects = 1 in { // FPU Operations.
Dale Johannesenb384ab92008-10-29 18:26:45 +00001868let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001869 defm FMADD : AForm_1r<63, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001870 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001871 "fmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001872 [(set f64:$FRT, (fma f64:$FRA, f64:$FRC, f64:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001873 defm FMADDS : AForm_1r<59, 29,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001874 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001875 "fmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001876 [(set f32:$FRT, (fma f32:$FRA, f32:$FRC, f32:$FRB))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001877 defm FMSUB : AForm_1r<63, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001878 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001879 "fmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001880 [(set f64:$FRT,
1881 (fma f64:$FRA, f64:$FRC, (fneg f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001882 defm FMSUBS : AForm_1r<59, 28,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001883 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001884 "fmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001885 [(set f32:$FRT,
1886 (fma f32:$FRA, f32:$FRC, (fneg f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001887 defm FNMADD : AForm_1r<63, 31,
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 "fnmadd", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001890 [(set f64:$FRT,
1891 (fneg (fma f64:$FRA, f64:$FRC, f64:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001892 defm FNMADDS : AForm_1r<59, 31,
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 "fnmadds", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001895 [(set f32:$FRT,
1896 (fneg (fma f32:$FRA, f32:$FRC, f32:$FRB)))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001897 defm FNMSUB : AForm_1r<63, 30,
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 "fnmsub", "$FRT, $FRA, $FRC, $FRB", FPFused,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001900 [(set f64:$FRT, (fneg (fma f64:$FRA, f64:$FRC,
1901 (fneg f64:$FRB))))]>;
Hal Finkel171a8ad2013-04-12 02:18:09 +00001902 defm FNMSUBS : AForm_1r<59, 30,
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 "fnmsubs", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
Ulrich Weigand5b390e42013-03-25 19:05:30 +00001905 [(set f32:$FRT, (fneg (fma f32:$FRA, f32:$FRC,
1906 (fneg f32:$FRB))))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001907}
Chris Lattner43f07a42005-10-02 07:07:49 +00001908// FSEL is artificially split into 4 and 8-byte forms for the result. To avoid
1909// having 4 of these, force the comparison to always be an 8-byte double (code
1910// should use an FMRSD if the input comparison value really wants to be a float)
Chris Lattner867940d2005-10-02 06:58:23 +00001911// and 4/8 byte forms for the result and operand type..
Hal Finkel171a8ad2013-04-12 02:18:09 +00001912let Interpretation64Bit = 1 in
1913defm FSELD : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001914 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001915 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1916 [(set f64:$FRT, (PPCfsel f64:$FRA, f64:$FRC, f64:$FRB))]>;
1917defm FSELS : AForm_1r<63, 23,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001918 (outs f4rc:$FRT), (ins f8rc:$FRA, f4rc:$FRC, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001919 "fsel", "$FRT, $FRA, $FRC, $FRB", FPGeneral,
1920 [(set f32:$FRT, (PPCfsel f64:$FRA, f32:$FRC, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001921let Uses = [RM] in {
Hal Finkel171a8ad2013-04-12 02:18:09 +00001922 defm FADD : AForm_2r<63, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001923 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001924 "fadd", "$FRT, $FRA, $FRB", FPAddSub,
1925 [(set f64:$FRT, (fadd f64:$FRA, f64:$FRB))]>;
1926 defm FADDS : AForm_2r<59, 21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001927 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001928 "fadds", "$FRT, $FRA, $FRB", FPGeneral,
1929 [(set f32:$FRT, (fadd f32:$FRA, f32:$FRB))]>;
1930 defm FDIV : AForm_2r<63, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001931 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001932 "fdiv", "$FRT, $FRA, $FRB", FPDivD,
1933 [(set f64:$FRT, (fdiv f64:$FRA, f64:$FRB))]>;
1934 defm FDIVS : AForm_2r<59, 18,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001935 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001936 "fdivs", "$FRT, $FRA, $FRB", FPDivS,
1937 [(set f32:$FRT, (fdiv f32:$FRA, f32:$FRB))]>;
1938 defm FMUL : AForm_3r<63, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001939 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001940 "fmul", "$FRT, $FRA, $FRC", FPFused,
1941 [(set f64:$FRT, (fmul f64:$FRA, f64:$FRC))]>;
1942 defm FMULS : AForm_3r<59, 25,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001943 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRC),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001944 "fmuls", "$FRT, $FRA, $FRC", FPGeneral,
1945 [(set f32:$FRT, (fmul f32:$FRA, f32:$FRC))]>;
1946 defm FSUB : AForm_2r<63, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001947 (outs f8rc:$FRT), (ins f8rc:$FRA, f8rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001948 "fsub", "$FRT, $FRA, $FRB", FPAddSub,
1949 [(set f64:$FRT, (fsub f64:$FRA, f64:$FRB))]>;
1950 defm FSUBS : AForm_2r<59, 20,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001951 (outs f4rc:$FRT), (ins f4rc:$FRA, f4rc:$FRB),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001952 "fsubs", "$FRT, $FRA, $FRB", FPGeneral,
1953 [(set f32:$FRT, (fsub f32:$FRA, f32:$FRB))]>;
Dale Johannesenb384ab92008-10-29 18:26:45 +00001954 }
Chris Lattner88d211f2006-03-12 09:13:49 +00001955}
Nate Begeman07aada82004-08-30 02:28:06 +00001956
Hal Finkel946a8112013-04-07 15:06:53 +00001957let neverHasSideEffects = 1 in {
Chris Lattner88d211f2006-03-12 09:13:49 +00001958let PPC970_Unit = 1 in { // FXU Operations.
Hal Finkel946a8112013-04-07 15:06:53 +00001959 let isSelect = 1 in
Ulrich Weigandbc40df32012-11-13 19:14:19 +00001960 def ISEL : AForm_4<31, 15,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001961 (outs gprc:$rT), (ins gprc_nor0:$rA, gprc:$rB, crbitrc:$cond),
Hal Finkel009f7af2012-06-22 23:10:08 +00001962 "isel $rT, $rA, $rB, $cond", IntGeneral,
1963 []>;
1964}
1965
1966let PPC970_Unit = 1 in { // FXU Operations.
Nate Begemancc8bd9c2004-08-31 02:28:08 +00001967// M-Form instructions. rotate and mask instructions.
1968//
Chris Lattner8e28b5c2006-11-15 23:24:18 +00001969let isCommutable = 1 in {
Chris Lattner043870d2005-09-09 18:17:41 +00001970// RLWIMI can be commuted if the rotate amount is zero.
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001971defm RLWIMI : MForm_2r<20, (outs gprc:$rA),
1972 (ins gprc:$rSi, gprc:$rS, u5imm:$SH, u5imm:$MB,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001973 u5imm:$ME), "rlwimi", "$rA, $rS, $SH, $MB, $ME", IntRotate,
1974 []>, PPC970_DGroup_Cracked, RegConstraint<"$rSi = $rA">,
1975 NoEncode<"$rSi">;
Nate Begeman2d4c98d2004-10-16 20:43:38 +00001976}
Hal Finkel171a8ad2013-04-12 02:18:09 +00001977let BaseName = "rlwinm" in {
Chris Lattner14522e32005-04-19 05:21:30 +00001978def RLWINM : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001979 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Jim Laskey53842142005-10-19 19:51:16 +00001980 "rlwinm $rA, $rS, $SH, $MB, $ME", IntGeneral,
Hal Finkel171a8ad2013-04-12 02:18:09 +00001981 []>, RecFormRel;
Hal Finkel59857462013-04-12 18:17:57 +00001982let Defs = [CR0] in
Chris Lattner14522e32005-04-19 05:21:30 +00001983def RLWINMo : MForm_2<21,
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001984 (outs gprc:$rA), (ins gprc:$rS, u5imm:$SH, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001985 "rlwinm. $rA, $rS, $SH, $MB, $ME", IntGeneral,
1986 []>, isDOT, RecFormRel, PPC970_DGroup_Cracked;
1987}
Ulrich Weiganda3acc2b2013-04-26 16:53:15 +00001988defm RLWNM : MForm_2r<23, (outs gprc:$rA),
1989 (ins gprc:$rS, gprc:$rB, u5imm:$MB, u5imm:$ME),
Hal Finkel171a8ad2013-04-12 02:18:09 +00001990 "rlwnm", "$rA, $rS, $rB, $MB, $ME", IntGeneral,
1991 []>;
Chris Lattner88d211f2006-03-12 09:13:49 +00001992}
Hal Finkel946a8112013-04-07 15:06:53 +00001993} // neverHasSideEffects = 1
Chris Lattner3c0f9cc2006-03-20 06:15:45 +00001994
Chris Lattner2eb25172005-09-09 00:39:56 +00001995//===----------------------------------------------------------------------===//
1996// PowerPC Instruction Patterns
1997//
1998
Chris Lattner30e21a42005-09-26 22:20:16 +00001999// Arbitrary immediate support. Implement in terms of LIS/ORI.
2000def : Pat<(i32 imm:$imm),
2001 (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
Chris Lattner91da8622005-09-28 17:13:15 +00002002
2003// Implement the 'not' operation with the NOR instruction.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002004def NOT : Pat<(not i32:$in),
2005 (NOR $in, $in)>;
Chris Lattner91da8622005-09-28 17:13:15 +00002006
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002007// ADD an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002008def : Pat<(add i32:$in, imm:$imm),
2009 (ADDIS (ADDI $in, (LO16 imm:$imm)), (HA16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002010// OR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002011def : Pat<(or i32:$in, imm:$imm),
2012 (ORIS (ORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Chris Lattner79d0e9f2005-09-28 23:07:13 +00002013// XOR an arbitrary immediate.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002014def : Pat<(xor i32:$in, imm:$imm),
2015 (XORIS (XORI $in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002016// SUBFIC
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002017def : Pat<(sub immSExt16:$imm, i32:$in),
2018 (SUBFIC $in, imm:$imm)>;
Chris Lattner8be1fa52005-10-19 01:38:02 +00002019
Chris Lattner956f43c2006-06-16 20:22:01 +00002020// SHL/SRL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002021def : Pat<(shl i32:$in, (i32 imm:$imm)),
2022 (RLWINM $in, imm:$imm, 0, (SHL32 imm:$imm))>;
2023def : Pat<(srl i32:$in, (i32 imm:$imm)),
2024 (RLWINM $in, (SRL32 imm:$imm), imm:$imm, 31)>;
Nate Begeman2d5aff72005-10-19 18:42:01 +00002025
Nate Begeman35ef9132006-01-11 21:21:00 +00002026// ROTL
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002027def : Pat<(rotl i32:$in, i32:$sh),
2028 (RLWNM $in, $sh, 0, 31)>;
2029def : Pat<(rotl i32:$in, (i32 imm:$imm)),
2030 (RLWINM $in, imm:$imm, 0, 31)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002031
Nate Begemanf42f1332006-09-22 05:01:56 +00002032// RLWNM
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002033def : Pat<(and (rotl i32:$in, i32:$sh), maskimm32:$imm),
2034 (RLWNM $in, $sh, (MB maskimm32:$imm), (ME maskimm32:$imm))>;
Nate Begemanf42f1332006-09-22 05:01:56 +00002035
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002036// Calls
Ulrich Weigand86765fb2013-03-22 15:24:13 +00002037def : Pat<(PPCcall (i32 tglobaladdr:$dst)),
2038 (BL tglobaladdr:$dst)>;
2039def : Pat<(PPCcall (i32 texternalsym:$dst)),
2040 (BL texternalsym:$dst)>;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002041
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002042
2043def : Pat<(PPCtc_return (i32 tglobaladdr:$dst), imm:$imm),
2044 (TCRETURNdi tglobaladdr:$dst, imm:$imm)>;
2045
2046def : Pat<(PPCtc_return (i32 texternalsym:$dst), imm:$imm),
2047 (TCRETURNdi texternalsym:$dst, imm:$imm)>;
2048
2049def : Pat<(PPCtc_return CTRRC:$dst, imm:$imm),
2050 (TCRETURNri CTRRC:$dst, imm:$imm)>;
2051
2052
2053
Chris Lattner860e8862005-11-17 07:30:41 +00002054// Hi and Lo for Darwin Global Addresses.
Chris Lattnerd717b192005-12-11 07:45:47 +00002055def : Pat<(PPChi tglobaladdr:$in, 0), (LIS tglobaladdr:$in)>;
2056def : Pat<(PPClo tglobaladdr:$in, 0), (LI tglobaladdr:$in)>;
2057def : Pat<(PPChi tconstpool:$in, 0), (LIS tconstpool:$in)>;
2058def : Pat<(PPClo tconstpool:$in, 0), (LI tconstpool:$in)>;
Nate Begeman37efe672006-04-22 18:53:45 +00002059def : Pat<(PPChi tjumptable:$in, 0), (LIS tjumptable:$in)>;
2060def : Pat<(PPClo tjumptable:$in, 0), (LI tjumptable:$in)>;
Bob Wilson3d90dbe2009-11-04 21:31:18 +00002061def : Pat<(PPChi tblockaddress:$in, 0), (LIS tblockaddress:$in)>;
2062def : Pat<(PPClo tblockaddress:$in, 0), (LI tblockaddress:$in)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002063def : Pat<(PPChi tglobaltlsaddr:$g, i32:$in),
2064 (ADDIS $in, tglobaltlsaddr:$g)>;
2065def : Pat<(PPClo tglobaltlsaddr:$g, i32:$in),
Ulrich Weigand2b0850b2013-03-26 10:55:20 +00002066 (ADDI $in, tglobaltlsaddr:$g)>;
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002067def : Pat<(add i32:$in, (PPChi tglobaladdr:$g, 0)),
2068 (ADDIS $in, tglobaladdr:$g)>;
2069def : Pat<(add i32:$in, (PPChi tconstpool:$g, 0)),
2070 (ADDIS $in, tconstpool:$g)>;
2071def : Pat<(add i32:$in, (PPChi tjumptable:$g, 0)),
2072 (ADDIS $in, tjumptable:$g)>;
2073def : Pat<(add i32:$in, (PPChi tblockaddress:$g, 0)),
2074 (ADDIS $in, tblockaddress:$g)>;
Chris Lattner860e8862005-11-17 07:30:41 +00002075
Chris Lattner4172b102005-12-06 02:10:38 +00002076// Standard shifts. These are represented separately from the real shifts above
2077// so that we can distinguish between shifts that allow 5-bit and 6-bit shift
2078// amounts.
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002079def : Pat<(sra i32:$rS, i32:$rB),
2080 (SRAW $rS, $rB)>;
2081def : Pat<(srl i32:$rS, i32:$rB),
2082 (SRW $rS, $rB)>;
2083def : Pat<(shl i32:$rS, i32:$rB),
2084 (SLW $rS, $rB)>;
Chris Lattner4172b102005-12-06 02:10:38 +00002085
Evan Cheng466685d2006-10-09 20:57:25 +00002086def : Pat<(zextloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002087 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002088def : Pat<(zextloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002089 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002090def : Pat<(extloadi1 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002091 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002092def : Pat<(extloadi1 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002093 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002094def : Pat<(extloadi8 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002095 (LBZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002096def : Pat<(extloadi8 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002097 (LBZX xaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002098def : Pat<(extloadi16 iaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002099 (LHZ iaddr:$src)>;
Evan Cheng466685d2006-10-09 20:57:25 +00002100def : Pat<(extloadi16 xaddr:$src),
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002101 (LHZX xaddr:$src)>;
Jakob Stoklund Olesena90c3f62010-07-16 21:03:52 +00002102def : Pat<(f64 (extloadf32 iaddr:$src)),
2103 (COPY_TO_REGCLASS (LFS iaddr:$src), F8RC)>;
2104def : Pat<(f64 (extloadf32 xaddr:$src)),
2105 (COPY_TO_REGCLASS (LFSX xaddr:$src), F8RC)>;
2106
Ulrich Weigand1492a4e2013-03-25 19:04:58 +00002107def : Pat<(f64 (fextend f32:$src)),
2108 (COPY_TO_REGCLASS $src, F8RC)>;
Nate Begeman7fd1edd2005-12-19 23:25:09 +00002109
Eli Friedman14648462011-07-27 22:21:52 +00002110def : Pat<(atomic_fence (imm), (imm)), (SYNC)>;
2111
Hal Finkel827307b2013-04-03 04:01:11 +00002112// Additional FNMSUB patterns: -a*c + b == -(a*c - b)
2113def : Pat<(fma (fneg f64:$A), f64:$C, f64:$B),
2114 (FNMSUB $A, $C, $B)>;
2115def : Pat<(fma f64:$A, (fneg f64:$C), f64:$B),
2116 (FNMSUB $A, $C, $B)>;
2117def : Pat<(fma (fneg f32:$A), f32:$C, f32:$B),
2118 (FNMSUBS $A, $C, $B)>;
2119def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
2120 (FNMSUBS $A, $C, $B)>;
2121
Chris Lattnerb22a04d2006-03-25 07:51:43 +00002122include "PPCInstrAltivec.td"
Chris Lattner956f43c2006-06-16 20:22:01 +00002123include "PPCInstr64Bit.td"
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002124
Ulrich Weigand8e4ba8f2013-05-03 19:51:09 +00002125
2126//===----------------------------------------------------------------------===//
2127// PowerPC Instructions used for assembler/disassembler only
2128//
2129
2130def ISYNC : XLForm_2_ext<19, 150, 0, 0, 0, (outs), (ins),
2131 "isync", SprISYNC, []>;
2132
2133def ICBI : XForm_1a<31, 982, (outs), (ins memrr:$src),
2134 "icbi $src", LdStICBI, []>;
2135
Ulrich Weigand16adfdb2013-05-03 19:50:27 +00002136//===----------------------------------------------------------------------===//
2137// PowerPC Assembler Instruction Aliases
2138//
2139
2140// Pseudo-instructions for alternate assembly syntax (never used by codegen).
2141// These are aliases that require C++ handling to convert to the target
2142// instruction, while InstAliases can be handled directly by tblgen.
2143class PPCAsmPseudo<string asm, dag iops>
2144 : Instruction {
2145 let Namespace = "PPC";
2146 bit PPC64 = 0; // Default value, override with isPPC64
2147
2148 let OutOperandList = (outs);
2149 let InOperandList = iops;
2150 let Pattern = [];
2151 let AsmString = asm;
2152 let isAsmParserOnly = 1;
2153 let isPseudo = 1;
2154}
2155
2156def : InstAlias<"mr $rA, $rB", (OR8 g8rc:$rA, g8rc:$rB, g8rc:$rB)>;
2157
2158def SLWI : PPCAsmPseudo<"slwi $rA, $rS, $n",
2159 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2160def SRWI : PPCAsmPseudo<"srwi $rA, $rS, $n",
2161 (ins gprc:$rA, gprc:$rS, u5imm:$n)>;
2162def SLDI : PPCAsmPseudo<"sldi $rA, $rS, $n",
2163 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2164def SRDI : PPCAsmPseudo<"srdi $rA, $rS, $n",
2165 (ins g8rc:$rA, g8rc:$rS, u6imm:$n)>;
2166
2167def : InstAlias<"blt $cc, $dst", (BCC 12, crrc:$cc, condbrtarget:$dst)>;
2168def : InstAlias<"bgt $cc, $dst", (BCC 44, crrc:$cc, condbrtarget:$dst)>;
2169def : InstAlias<"beq $cc, $dst", (BCC 76, crrc:$cc, condbrtarget:$dst)>;
2170def : InstAlias<"bun $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2171def : InstAlias<"bso $cc, $dst", (BCC 108, crrc:$cc, condbrtarget:$dst)>;
2172def : InstAlias<"bge $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2173def : InstAlias<"bnl $cc, $dst", (BCC 4, crrc:$cc, condbrtarget:$dst)>;
2174def : InstAlias<"ble $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2175def : InstAlias<"bng $cc, $dst", (BCC 36, crrc:$cc, condbrtarget:$dst)>;
2176def : InstAlias<"bne $cc, $dst", (BCC 68, crrc:$cc, condbrtarget:$dst)>;
2177def : InstAlias<"bnu $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2178def : InstAlias<"bns $cc, $dst", (BCC 100, crrc:$cc, condbrtarget:$dst)>;
2179
2180def : InstAlias<"bltlr $cc", (BCLR 12, crrc:$cc)>;
2181def : InstAlias<"bgtlr $cc", (BCLR 44, crrc:$cc)>;
2182def : InstAlias<"beqlr $cc", (BCLR 76, crrc:$cc)>;
2183def : InstAlias<"bunlr $cc", (BCLR 108, crrc:$cc)>;
2184def : InstAlias<"bsolr $cc", (BCLR 108, crrc:$cc)>;
2185def : InstAlias<"bgelr $cc", (BCLR 4, crrc:$cc)>;
2186def : InstAlias<"bnllr $cc", (BCLR 4, crrc:$cc)>;
2187def : InstAlias<"blelr $cc", (BCLR 36, crrc:$cc)>;
2188def : InstAlias<"bnglr $cc", (BCLR 36, crrc:$cc)>;
2189def : InstAlias<"bnelr $cc", (BCLR 68, crrc:$cc)>;
2190def : InstAlias<"bnulr $cc", (BCLR 100, crrc:$cc)>;
2191def : InstAlias<"bnslr $cc", (BCLR 100, crrc:$cc)>;
2192
2193def : InstAlias<"bltctr $cc", (BCCTR 12, crrc:$cc)>;
2194def : InstAlias<"bgtctr $cc", (BCCTR 44, crrc:$cc)>;
2195def : InstAlias<"beqctr $cc", (BCCTR 76, crrc:$cc)>;
2196def : InstAlias<"bunctr $cc", (BCCTR 108, crrc:$cc)>;
2197def : InstAlias<"bsoctr $cc", (BCCTR 108, crrc:$cc)>;
2198def : InstAlias<"bgectr $cc", (BCCTR 4, crrc:$cc)>;
2199def : InstAlias<"bnlctr $cc", (BCCTR 4, crrc:$cc)>;
2200def : InstAlias<"blectr $cc", (BCCTR 36, crrc:$cc)>;
2201def : InstAlias<"bngctr $cc", (BCCTR 36, crrc:$cc)>;
2202def : InstAlias<"bnectr $cc", (BCCTR 68, crrc:$cc)>;
2203def : InstAlias<"bnuctr $cc", (BCCTR 100, crrc:$cc)>;
2204def : InstAlias<"bnsctr $cc", (BCCTR 100, crrc:$cc)>;
2205
2206def : InstAlias<"bltctrl $cc", (BCCTRL 12, crrc:$cc)>;
2207def : InstAlias<"bgtctrl $cc", (BCCTRL 44, crrc:$cc)>;
2208def : InstAlias<"beqctrl $cc", (BCCTRL 76, crrc:$cc)>;
2209def : InstAlias<"bunctrl $cc", (BCCTRL 108, crrc:$cc)>;
2210def : InstAlias<"bsoctrl $cc", (BCCTRL 108, crrc:$cc)>;
2211def : InstAlias<"bgectrl $cc", (BCCTRL 4, crrc:$cc)>;
2212def : InstAlias<"bnlctrl $cc", (BCCTRL 4, crrc:$cc)>;
2213def : InstAlias<"blectrl $cc", (BCCTRL 36, crrc:$cc)>;
2214def : InstAlias<"bngctrl $cc", (BCCTRL 36, crrc:$cc)>;
2215def : InstAlias<"bnectrl $cc", (BCCTRL 68, crrc:$cc)>;
2216def : InstAlias<"bnuctrl $cc", (BCCTRL 100, crrc:$cc)>;
2217def : InstAlias<"bnsctrl $cc", (BCCTRL 100, crrc:$cc)>;
2218