blob: f7077996aa49f3eb9f61fa61283338da09c96882 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- PPCInstrInfo.h - PowerPC Instruction Information --------*- C++ -*-===//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Misha Brukman116f9272004-08-17 04:55:41 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb4402432005-04-21 23:30:14 +00007//
Misha Brukman116f9272004-08-17 04:55:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H
15#define LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H
Misha Brukman116f9272004-08-17 04:55:41 +000016
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000017#include "PPC.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000018#include "PPCRegisterInfo.h"
Craig Topperb25fda92012-03-17 18:46:09 +000019#include "llvm/Target/TargetInstrInfo.h"
Misha Brukman116f9272004-08-17 04:55:41 +000020
Evan Cheng703a0fb2011-07-01 17:57:27 +000021#define GET_INSTRINFO_HEADER
22#include "PPCGenInstrInfo.inc"
23
Misha Brukman116f9272004-08-17 04:55:41 +000024namespace llvm {
Chris Lattner51348c52006-03-12 09:13:49 +000025
26/// PPCII - This namespace holds all of the PowerPC target-specific
27/// per-instruction flags. These must match the corresponding definitions in
28/// PPC.td and PPCInstrFormats.td.
29namespace PPCII {
30enum {
31 // PPC970 Instruction Flags. These flags describe the characteristics of the
32 // PowerPC 970 (aka G5) dispatch groups and how they are formed out of
33 // raw machine instructions.
34
35 /// PPC970_First - This instruction starts a new dispatch group, so it will
36 /// always be the first one in the group.
37 PPC970_First = 0x1,
Andrew Trickc416ba62010-12-24 04:28:06 +000038
Chris Lattner51348c52006-03-12 09:13:49 +000039 /// PPC970_Single - This instruction starts a new dispatch group and
40 /// terminates it, so it will be the sole instruction in the group.
41 PPC970_Single = 0x2,
42
Chris Lattner7579cfb2006-03-13 05:15:10 +000043 /// PPC970_Cracked - This instruction is cracked into two pieces, requiring
44 /// two dispatch pipes to be available to issue.
45 PPC970_Cracked = 0x4,
Andrew Trickc416ba62010-12-24 04:28:06 +000046
Chris Lattner51348c52006-03-12 09:13:49 +000047 /// PPC970_Mask/Shift - This is a bitmask that selects the pipeline type that
48 /// an instruction is issued to.
Chris Lattner7579cfb2006-03-13 05:15:10 +000049 PPC970_Shift = 3,
Chris Lattneraa2372562006-05-24 17:04:05 +000050 PPC970_Mask = 0x07 << PPC970_Shift
Chris Lattner51348c52006-03-12 09:13:49 +000051};
52enum PPC970_Unit {
53 /// These are the various PPC970 execution unit pipelines. Each instruction
54 /// is one of these.
55 PPC970_Pseudo = 0 << PPC970_Shift, // Pseudo instruction
56 PPC970_FXU = 1 << PPC970_Shift, // Fixed Point (aka Integer/ALU) Unit
57 PPC970_LSU = 2 << PPC970_Shift, // Load Store Unit
58 PPC970_FPU = 3 << PPC970_Shift, // Floating Point Unit
59 PPC970_CRU = 4 << PPC970_Shift, // Control Register Unit
60 PPC970_VALU = 5 << PPC970_Shift, // Vector ALU
61 PPC970_VPERM = 6 << PPC970_Shift, // Vector Permute Unit
Chris Lattneraa2372562006-05-24 17:04:05 +000062 PPC970_BRU = 7 << PPC970_Shift // Branch Unit
Chris Lattner51348c52006-03-12 09:13:49 +000063};
Chris Lattnerdf8e17d2010-11-14 23:42:06 +000064} // end namespace PPCII
Andrew Trickc416ba62010-12-24 04:28:06 +000065
Eric Christopher234a1ec2015-03-12 06:07:16 +000066class PPCSubtarget;
Evan Cheng703a0fb2011-07-01 17:57:27 +000067class PPCInstrInfo : public PPCGenInstrInfo {
Eric Christopher1dcea732014-06-12 21:48:52 +000068 PPCSubtarget &Subtarget;
Nate Begeman6cca84e2005-10-16 05:39:50 +000069 const PPCRegisterInfo RI;
Bill Wendlingc6c48fc2008-03-10 22:49:16 +000070
Dan Gohman3b460302008-07-07 23:14:23 +000071 bool StoreRegToStackSlot(MachineFunction &MF,
72 unsigned SrcReg, bool isKill, int FrameIdx,
Bill Wendlingc6c48fc2008-03-10 22:49:16 +000073 const TargetRegisterClass *RC,
Hal Finkelfcc51d42013-03-17 04:43:44 +000074 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkelcc1eeda2013-03-23 22:06:03 +000075 bool &NonRI, bool &SpillsVRS) const;
Benjamin Kramerbdc49562016-06-12 15:39:02 +000076 bool LoadRegFromStackSlot(MachineFunction &MF, const DebugLoc &DL,
Dan Gohman3b460302008-07-07 23:14:23 +000077 unsigned DestReg, int FrameIdx,
Bill Wendlingc6c48fc2008-03-10 22:49:16 +000078 const TargetRegisterClass *RC,
Benjamin Kramerbdc49562016-06-12 15:39:02 +000079 SmallVectorImpl<MachineInstr *> &NewMIs,
Hal Finkelcc1eeda2013-03-23 22:06:03 +000080 bool &NonRI, bool &SpillsVRS) const;
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000081 virtual void anchor();
Andrew Kaylor16c4da02015-09-28 20:33:22 +000082
83protected:
84 /// Commutes the operands in the given instruction.
85 /// The commutable operands are specified by their indices OpIdx1 and OpIdx2.
86 ///
87 /// Do not call this method for a non-commutable instruction or for
88 /// non-commutable pair of operand indices OpIdx1 and OpIdx2.
89 /// Even though the instruction is commutable, the method may still
90 /// fail to commute the operands, null pointer is returned in such cases.
91 ///
92 /// For example, we can commute rlwimi instructions, but only if the
93 /// rotate amt is zero. We also have to munge the immediates a bit.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +000094 MachineInstr *commuteInstructionImpl(MachineInstr &MI, bool NewMI,
Andrew Kaylor16c4da02015-09-28 20:33:22 +000095 unsigned OpIdx1,
96 unsigned OpIdx2) const override;
97
Misha Brukman116f9272004-08-17 04:55:41 +000098public:
Eric Christopher1dcea732014-06-12 21:48:52 +000099 explicit PPCInstrInfo(PPCSubtarget &STI);
Misha Brukman116f9272004-08-17 04:55:41 +0000100
101 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
102 /// such, whenever a client has an instance of instruction info, it should
103 /// always be able to get register info as well (through this method).
104 ///
Craig Topper0d3fa922014-04-29 07:57:37 +0000105 const PPCRegisterInfo &getRegisterInfo() const { return RI; }
Misha Brukman116f9272004-08-17 04:55:41 +0000106
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000107 ScheduleHazardRecognizer *
Eric Christopherf047bfd2014-06-13 22:38:52 +0000108 CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI,
Craig Topper0d3fa922014-04-29 07:57:37 +0000109 const ScheduleDAG *DAG) const override;
Hal Finkel58ca3602011-12-02 04:58:02 +0000110 ScheduleHazardRecognizer *
111 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
Craig Topper0d3fa922014-04-29 07:57:37 +0000112 const ScheduleDAG *DAG) const override;
Andrew Trick10ffc2b2010-12-24 05:03:26 +0000113
Hal Finkel8acae522015-07-14 20:02:02 +0000114 unsigned getInstrLatency(const InstrItineraryData *ItinData,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000115 const MachineInstr &MI,
Hal Finkel8acae522015-07-14 20:02:02 +0000116 unsigned *PredCost = nullptr) const override;
117
Hal Finkelceb1f122013-12-12 00:19:11 +0000118 int getOperandLatency(const InstrItineraryData *ItinData,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000119 const MachineInstr &DefMI, unsigned DefIdx,
120 const MachineInstr &UseMI,
Craig Topper0d3fa922014-04-29 07:57:37 +0000121 unsigned UseIdx) const override;
Hal Finkelceb1f122013-12-12 00:19:11 +0000122 int getOperandLatency(const InstrItineraryData *ItinData,
123 SDNode *DefNode, unsigned DefIdx,
Craig Topper0d3fa922014-04-29 07:57:37 +0000124 SDNode *UseNode, unsigned UseIdx) const override {
Hal Finkelceb1f122013-12-12 00:19:11 +0000125 return PPCGenInstrInfo::getOperandLatency(ItinData, DefNode, DefIdx,
126 UseNode, UseIdx);
127 }
128
Matthias Braun88e21312015-06-13 03:42:11 +0000129 bool hasLowDefLatency(const TargetSchedModel &SchedModel,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000130 const MachineInstr &DefMI,
Hal Finkel3c0952b02015-01-08 22:11:49 +0000131 unsigned DefIdx) const override {
132 // Machine LICM should hoist all instructions in low-register-pressure
133 // situations; none are sufficiently free to justify leaving in a loop
134 // body.
135 return false;
136 }
137
Hal Finkel5d36b232015-07-15 08:23:05 +0000138 bool useMachineCombiner() const override {
139 return true;
140 }
Chad Rosier03a47302015-09-21 15:09:11 +0000141
Hal Finkel5d36b232015-07-15 08:23:05 +0000142 /// Return true when there is potentially a faster code sequence
143 /// for an instruction chain ending in <Root>. All potential patterns are
144 /// output in the <Pattern> array.
145 bool getMachineCombinerPatterns(
146 MachineInstr &Root,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000147 SmallVectorImpl<MachineCombinerPattern> &P) const override;
Chad Rosier03a47302015-09-21 15:09:11 +0000148
149 bool isAssociativeAndCommutative(const MachineInstr &Inst) const override;
Hal Finkel5d36b232015-07-15 08:23:05 +0000150
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000151 bool isCoalescableExtInstr(const MachineInstr &MI,
152 unsigned &SrcReg, unsigned &DstReg,
Craig Topper0d3fa922014-04-29 07:57:37 +0000153 unsigned &SubIdx) const override;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000154 unsigned isLoadFromStackSlot(const MachineInstr &MI,
Craig Topper0d3fa922014-04-29 07:57:37 +0000155 int &FrameIndex) const override;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000156 unsigned isStoreToStackSlot(const MachineInstr &MI,
Craig Topper0d3fa922014-04-29 07:57:37 +0000157 int &FrameIndex) const override;
Chris Lattnerbb53acd2006-02-02 20:12:32 +0000158
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000159 bool findCommutedOpIndices(MachineInstr &MI, unsigned &SrcOpIdx1,
Craig Topper0d3fa922014-04-29 07:57:37 +0000160 unsigned &SrcOpIdx2) const override;
Hal Finkel6c32ff32014-03-25 19:26:43 +0000161
Craig Topper0d3fa922014-04-29 07:57:37 +0000162 void insertNoop(MachineBasicBlock &MBB,
163 MachineBasicBlock::iterator MI) const override;
Chris Lattnerea79d9fd732006-03-05 23:49:55 +0000164
Chris Lattnera47294ed2006-10-13 21:21:17 +0000165
166 // Branch analysis.
Jacques Pienaar71c30a12016-07-15 14:41:04 +0000167 bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
Craig Topper0d3fa922014-04-29 07:57:37 +0000168 MachineBasicBlock *&FBB,
169 SmallVectorImpl<MachineOperand> &Cond,
170 bool AllowModify) const override;
171 unsigned RemoveBranch(MachineBasicBlock &MBB) const override;
172 unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000173 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000174 const DebugLoc &DL) const override;
Hal Finkeled6a2852013-04-05 23:29:01 +0000175
176 // Select analysis.
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000177 bool canInsertSelect(const MachineBasicBlock &, ArrayRef<MachineOperand> Cond,
178 unsigned, unsigned, int &, int &, int &) const override;
179 void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000180 const DebugLoc &DL, unsigned DstReg,
181 ArrayRef<MachineOperand> Cond, unsigned TrueReg,
182 unsigned FalseReg) const override;
Hal Finkeled6a2852013-04-05 23:29:01 +0000183
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000184 void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
185 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
Craig Topper0d3fa922014-04-29 07:57:37 +0000186 bool KillSrc) const override;
Andrew Trickc416ba62010-12-24 04:28:06 +0000187
Craig Topper0d3fa922014-04-29 07:57:37 +0000188 void storeRegToStackSlot(MachineBasicBlock &MBB,
189 MachineBasicBlock::iterator MBBI,
190 unsigned SrcReg, bool isKill, int FrameIndex,
191 const TargetRegisterClass *RC,
192 const TargetRegisterInfo *TRI) const override;
Owen Andersoneee14602008-01-01 21:11:32 +0000193
Craig Topper0d3fa922014-04-29 07:57:37 +0000194 void loadRegFromStackSlot(MachineBasicBlock &MBB,
195 MachineBasicBlock::iterator MBBI,
196 unsigned DestReg, int FrameIndex,
197 const TargetRegisterClass *RC,
198 const TargetRegisterInfo *TRI) const override;
Andrew Trickc416ba62010-12-24 04:28:06 +0000199
Craig Topper0d3fa922014-04-29 07:57:37 +0000200 bool
201 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
Andrew Trickc416ba62010-12-24 04:28:06 +0000202
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000203 bool FoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, unsigned Reg,
204 MachineRegisterInfo *MRI) const override;
Hal Finkeld61d4f82013-04-06 19:30:30 +0000205
Hal Finkel5711eca2013-04-09 22:58:37 +0000206 // If conversion by predication (only supported by some branch instructions).
207 // All of the profitability checks always return true; it is always
208 // profitable to use the predicated branches.
Craig Topper0d3fa922014-04-29 07:57:37 +0000209 bool isProfitableToIfCvt(MachineBasicBlock &MBB,
210 unsigned NumCycles, unsigned ExtraPredCycles,
Cong Houc536bd92015-09-10 23:10:42 +0000211 BranchProbability Probability) const override {
Hal Finkel5711eca2013-04-09 22:58:37 +0000212 return true;
213 }
214
Craig Topper0d3fa922014-04-29 07:57:37 +0000215 bool isProfitableToIfCvt(MachineBasicBlock &TMBB,
216 unsigned NumT, unsigned ExtraT,
217 MachineBasicBlock &FMBB,
218 unsigned NumF, unsigned ExtraF,
Cong Houc536bd92015-09-10 23:10:42 +0000219 BranchProbability Probability) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000220
Cong Houc536bd92015-09-10 23:10:42 +0000221 bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles,
222 BranchProbability Probability) const override {
Hal Finkel5711eca2013-04-09 22:58:37 +0000223 return true;
224 }
225
Craig Topper0d3fa922014-04-29 07:57:37 +0000226 bool isProfitableToUnpredicate(MachineBasicBlock &TMBB,
227 MachineBasicBlock &FMBB) const override {
Hal Finkel5711eca2013-04-09 22:58:37 +0000228 return false;
229 }
230
231 // Predication support.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000232 bool isPredicated(const MachineInstr &MI) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000233
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000234 bool isUnpredicatedTerminator(const MachineInstr &MI) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000235
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000236 bool PredicateInstruction(MachineInstr &MI,
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000237 ArrayRef<MachineOperand> Pred) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000238
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000239 bool SubsumesPredicate(ArrayRef<MachineOperand> Pred1,
240 ArrayRef<MachineOperand> Pred2) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000241
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000242 bool DefinesPredicate(MachineInstr &MI,
Craig Topper0d3fa922014-04-29 07:57:37 +0000243 std::vector<MachineOperand> &Pred) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000244
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000245 bool isPredicable(MachineInstr &MI) const override;
Hal Finkel5711eca2013-04-09 22:58:37 +0000246
Hal Finkel82656cb2013-04-18 22:15:08 +0000247 // Comparison optimization.
248
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000249 bool analyzeCompare(const MachineInstr &MI, unsigned &SrcReg,
250 unsigned &SrcReg2, int &Mask, int &Value) const override;
Hal Finkel82656cb2013-04-18 22:15:08 +0000251
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000252 bool optimizeCompareInstr(MachineInstr &CmpInstr, unsigned SrcReg,
253 unsigned SrcReg2, int Mask, int Value,
Craig Topper0d3fa922014-04-29 07:57:37 +0000254 const MachineRegisterInfo *MRI) const override;
Hal Finkel82656cb2013-04-18 22:15:08 +0000255
Nicolas Geoffrayae84bbd2008-04-16 20:10:13 +0000256 /// GetInstSize - Return the number of bytes of code the specified
257 /// instruction may be. This returns the maximum number of bytes.
258 ///
Sjoerd Meijer0eb96ed2016-07-29 08:16:16 +0000259 unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
Joerg Sonnenberger7ee0f312014-08-08 19:13:23 +0000260
261 void getNoopForMachoTarget(MCInst &NopInst) const override;
Hal Finkel2d556982015-08-30 07:50:35 +0000262
263 std::pair<unsigned, unsigned>
264 decomposeMachineOperandsTargetFlags(unsigned TF) const override;
265
266 ArrayRef<std::pair<unsigned, const char *>>
267 getSerializableDirectMachineOperandTargetFlags() const override;
268
269 ArrayRef<std::pair<unsigned, const char *>>
270 getSerializableBitmaskMachineOperandTargetFlags() const override;
Tim Shena1d8bc52016-04-19 20:14:52 +0000271
272 // Lower pseudo instructions after register allocation.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000273 bool expandPostRAPseudo(MachineInstr &MI) const override;
Misha Brukman116f9272004-08-17 04:55:41 +0000274};
275
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000276}
Misha Brukman116f9272004-08-17 04:55:41 +0000277
278#endif