blob: 4add6f9781e8f0f66d6cc10780e409c31a9b47fe [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- PPCInstrInfo.h - PowerPC Instruction Information --------*- C++ -*-===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukmanf2ccb772004-08-17 04:55:41 +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.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukmanf2ccb772004-08-17 04:55:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer00e08fc2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H
15#define LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H
Misha Brukmanf2ccb772004-08-17 04:55:41 +000016
Chris Lattner26689592005-10-14 23:51:18 +000017#include "PPC.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000018#include "PPCRegisterInfo.h"
Craig Topper79aa3412012-03-17 18:46:09 +000019#include "llvm/Target/TargetInstrInfo.h"
Misha Brukmanf2ccb772004-08-17 04:55:41 +000020
Evan Cheng4db3cff2011-07-01 17:57:27 +000021#define GET_INSTRINFO_HEADER
22#include "PPCGenInstrInfo.inc"
23
Misha Brukmanf2ccb772004-08-17 04:55:41 +000024namespace llvm {
Chris Lattner88d211f2006-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 Trick6e8f4c42010-12-24 04:28:06 +000038
Chris Lattner88d211f2006-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 Lattnerfd977342006-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 Trick6e8f4c42010-12-24 04:28:06 +000046
Chris Lattner88d211f2006-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 Lattnerfd977342006-03-13 05:15:10 +000049 PPC970_Shift = 3,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000050 PPC970_Mask = 0x07 << PPC970_Shift
Chris Lattner88d211f2006-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 Lattnerd74ea2b2006-05-24 17:04:05 +000062 PPC970_BRU = 7 << PPC970_Shift // Branch Unit
Chris Lattner88d211f2006-03-12 09:13:49 +000063};
Chris Lattnerb9082582010-11-14 23:42:06 +000064} // end namespace PPCII
Andrew Trick6e8f4c42010-12-24 04:28:06 +000065
66
Evan Cheng4db3cff2011-07-01 17:57:27 +000067class PPCInstrInfo : public PPCGenInstrInfo {
Eric Christopherf7ab98c2014-06-12 21:48:52 +000068 PPCSubtarget &Subtarget;
Nate Begeman21e463b2005-10-16 05:39:50 +000069 const PPCRegisterInfo RI;
Bill Wendling4a66e9a2008-03-10 22:49:16 +000070
Dan Gohman8e5f2c62008-07-07 23:14:23 +000071 bool StoreRegToStackSlot(MachineFunction &MF,
72 unsigned SrcReg, bool isKill, int FrameIdx,
Bill Wendling4a66e9a2008-03-10 22:49:16 +000073 const TargetRegisterClass *RC,
Hal Finkel32497292013-03-17 04:43:44 +000074 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkel3f2c0472013-03-23 22:06:03 +000075 bool &NonRI, bool &SpillsVRS) const;
Hal Finkeld21e9302011-12-06 20:55:36 +000076 bool LoadRegFromStackSlot(MachineFunction &MF, DebugLoc DL,
Dan Gohman8e5f2c62008-07-07 23:14:23 +000077 unsigned DestReg, int FrameIdx,
Bill Wendling4a66e9a2008-03-10 22:49:16 +000078 const TargetRegisterClass *RC,
Hal Finkel32497292013-03-17 04:43:44 +000079 SmallVectorImpl<MachineInstr*> &NewMIs,
Hal Finkel3f2c0472013-03-23 22:06:03 +000080 bool &NonRI, bool &SpillsVRS) const;
Juergen Ributzka35436252013-11-19 00:57:56 +000081 virtual void anchor();
Misha Brukmanf2ccb772004-08-17 04:55:41 +000082public:
Eric Christopherf7ab98c2014-06-12 21:48:52 +000083 explicit PPCInstrInfo(PPCSubtarget &STI);
Misha Brukmanf2ccb772004-08-17 04:55:41 +000084
85 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
86 /// such, whenever a client has an instance of instruction info, it should
87 /// always be able to get register info as well (through this method).
88 ///
Craig Toppere6519352014-04-29 07:57:37 +000089 const PPCRegisterInfo &getRegisterInfo() const { return RI; }
Misha Brukmanf2ccb772004-08-17 04:55:41 +000090
Andrew Trick2da8bc82010-12-24 05:03:26 +000091 ScheduleHazardRecognizer *
Eric Christopher7354a3f2014-06-13 22:38:52 +000092 CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI,
Craig Toppere6519352014-04-29 07:57:37 +000093 const ScheduleDAG *DAG) const override;
Hal Finkel64c34e22011-12-02 04:58:02 +000094 ScheduleHazardRecognizer *
95 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
Craig Toppere6519352014-04-29 07:57:37 +000096 const ScheduleDAG *DAG) const override;
Andrew Trick2da8bc82010-12-24 05:03:26 +000097
Hal Finkelf0c13882013-12-12 00:19:11 +000098 int getOperandLatency(const InstrItineraryData *ItinData,
99 const MachineInstr *DefMI, unsigned DefIdx,
Craig Toppere6519352014-04-29 07:57:37 +0000100 const MachineInstr *UseMI,
101 unsigned UseIdx) const override;
Hal Finkelf0c13882013-12-12 00:19:11 +0000102 int getOperandLatency(const InstrItineraryData *ItinData,
103 SDNode *DefNode, unsigned DefIdx,
Craig Toppere6519352014-04-29 07:57:37 +0000104 SDNode *UseNode, unsigned UseIdx) const override {
Hal Finkelf0c13882013-12-12 00:19:11 +0000105 return PPCGenInstrInfo::getOperandLatency(ItinData, DefNode, DefIdx,
106 UseNode, UseIdx);
107 }
108
Hal Finkelb7c01bf2015-01-08 22:11:49 +0000109 bool hasLowDefLatency(const InstrItineraryData *ItinData,
110 const MachineInstr *DefMI,
111 unsigned DefIdx) const override {
112 // Machine LICM should hoist all instructions in low-register-pressure
113 // situations; none are sufficiently free to justify leaving in a loop
114 // body.
115 return false;
116 }
117
Jakob Stoklund Olesen71642882012-06-19 21:14:34 +0000118 bool isCoalescableExtInstr(const MachineInstr &MI,
119 unsigned &SrcReg, unsigned &DstReg,
Craig Toppere6519352014-04-29 07:57:37 +0000120 unsigned &SubIdx) const override;
Dan Gohmancbad42c2008-11-18 19:49:32 +0000121 unsigned isLoadFromStackSlot(const MachineInstr *MI,
Craig Toppere6519352014-04-29 07:57:37 +0000122 int &FrameIndex) const override;
Dan Gohmancbad42c2008-11-18 19:49:32 +0000123 unsigned isStoreToStackSlot(const MachineInstr *MI,
Craig Toppere6519352014-04-29 07:57:37 +0000124 int &FrameIndex) const override;
Chris Lattner40839602006-02-02 20:12:32 +0000125
Chris Lattner043870d2005-09-09 18:17:41 +0000126 // commuteInstruction - We can commute rlwimi instructions, but only if the
127 // rotate amt is zero. We also have to munge the immediates a bit.
Craig Toppere6519352014-04-29 07:57:37 +0000128 MachineInstr *commuteInstruction(MachineInstr *MI, bool NewMI) const override;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000129
Craig Toppere6519352014-04-29 07:57:37 +0000130 bool findCommutedOpIndices(MachineInstr *MI, unsigned &SrcOpIdx1,
131 unsigned &SrcOpIdx2) const override;
Hal Finkel7e77dab2014-03-25 19:26:43 +0000132
Craig Toppere6519352014-04-29 07:57:37 +0000133 void insertNoop(MachineBasicBlock &MBB,
134 MachineBasicBlock::iterator MI) const override;
Chris Lattnerbbf1c722006-03-05 23:49:55 +0000135
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000136
137 // Branch analysis.
Craig Toppere6519352014-04-29 07:57:37 +0000138 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
139 MachineBasicBlock *&FBB,
140 SmallVectorImpl<MachineOperand> &Cond,
141 bool AllowModify) const override;
142 unsigned RemoveBranch(MachineBasicBlock &MBB) const override;
143 unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
144 MachineBasicBlock *FBB,
145 const SmallVectorImpl<MachineOperand> &Cond,
146 DebugLoc DL) const override;
Hal Finkelff56d1a2013-04-05 23:29:01 +0000147
148 // Select analysis.
Craig Toppere6519352014-04-29 07:57:37 +0000149 bool canInsertSelect(const MachineBasicBlock&,
150 const SmallVectorImpl<MachineOperand> &Cond,
151 unsigned, unsigned, int&, int&, int&) const override;
152 void insertSelect(MachineBasicBlock &MBB,
153 MachineBasicBlock::iterator MI, DebugLoc DL,
154 unsigned DstReg,
155 const SmallVectorImpl<MachineOperand> &Cond,
156 unsigned TrueReg, unsigned FalseReg) const override;
Hal Finkelff56d1a2013-04-05 23:29:01 +0000157
Craig Toppere6519352014-04-29 07:57:37 +0000158 void copyPhysReg(MachineBasicBlock &MBB,
159 MachineBasicBlock::iterator I, DebugLoc DL,
160 unsigned DestReg, unsigned SrcReg,
161 bool KillSrc) const override;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000162
Craig Toppere6519352014-04-29 07:57:37 +0000163 void storeRegToStackSlot(MachineBasicBlock &MBB,
164 MachineBasicBlock::iterator MBBI,
165 unsigned SrcReg, bool isKill, int FrameIndex,
166 const TargetRegisterClass *RC,
167 const TargetRegisterInfo *TRI) const override;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000168
Craig Toppere6519352014-04-29 07:57:37 +0000169 void loadRegFromStackSlot(MachineBasicBlock &MBB,
170 MachineBasicBlock::iterator MBBI,
171 unsigned DestReg, int FrameIndex,
172 const TargetRegisterClass *RC,
173 const TargetRegisterInfo *TRI) const override;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000174
Craig Toppere6519352014-04-29 07:57:37 +0000175 bool
176 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000177
Craig Toppere6519352014-04-29 07:57:37 +0000178 bool FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
179 unsigned Reg, MachineRegisterInfo *MRI) const override;
Hal Finkel839b9092013-04-06 19:30:30 +0000180
Hal Finkel7eb0d812013-04-09 22:58:37 +0000181 // If conversion by predication (only supported by some branch instructions).
182 // All of the profitability checks always return true; it is always
183 // profitable to use the predicated branches.
Craig Toppere6519352014-04-29 07:57:37 +0000184 bool isProfitableToIfCvt(MachineBasicBlock &MBB,
185 unsigned NumCycles, unsigned ExtraPredCycles,
186 const BranchProbability &Probability) const override {
Hal Finkel7eb0d812013-04-09 22:58:37 +0000187 return true;
188 }
189
Craig Toppere6519352014-04-29 07:57:37 +0000190 bool isProfitableToIfCvt(MachineBasicBlock &TMBB,
191 unsigned NumT, unsigned ExtraT,
192 MachineBasicBlock &FMBB,
193 unsigned NumF, unsigned ExtraF,
194 const BranchProbability &Probability) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000195
Craig Toppere6519352014-04-29 07:57:37 +0000196 bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB,
197 unsigned NumCycles,
198 const BranchProbability
199 &Probability) const override {
Hal Finkel7eb0d812013-04-09 22:58:37 +0000200 return true;
201 }
202
Craig Toppere6519352014-04-29 07:57:37 +0000203 bool isProfitableToUnpredicate(MachineBasicBlock &TMBB,
204 MachineBasicBlock &FMBB) const override {
Hal Finkel7eb0d812013-04-09 22:58:37 +0000205 return false;
206 }
207
208 // Predication support.
Craig Toppere6519352014-04-29 07:57:37 +0000209 bool isPredicated(const MachineInstr *MI) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000210
Craig Toppere6519352014-04-29 07:57:37 +0000211 bool isUnpredicatedTerminator(const MachineInstr *MI) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000212
Hal Finkel7eb0d812013-04-09 22:58:37 +0000213 bool PredicateInstruction(MachineInstr *MI,
Craig Toppere6519352014-04-29 07:57:37 +0000214 const SmallVectorImpl<MachineOperand> &Pred) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000215
Hal Finkel7eb0d812013-04-09 22:58:37 +0000216 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
Craig Toppere6519352014-04-29 07:57:37 +0000217 const SmallVectorImpl<MachineOperand> &Pred2) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000218
Craig Toppere6519352014-04-29 07:57:37 +0000219 bool DefinesPredicate(MachineInstr *MI,
220 std::vector<MachineOperand> &Pred) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000221
Craig Toppere6519352014-04-29 07:57:37 +0000222 bool isPredicable(MachineInstr *MI) const override;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000223
Hal Finkel860c08c2013-04-18 22:15:08 +0000224 // Comparison optimization.
225
226
Craig Toppere6519352014-04-29 07:57:37 +0000227 bool analyzeCompare(const MachineInstr *MI,
228 unsigned &SrcReg, unsigned &SrcReg2,
229 int &Mask, int &Value) const override;
Hal Finkel860c08c2013-04-18 22:15:08 +0000230
Craig Toppere6519352014-04-29 07:57:37 +0000231 bool optimizeCompareInstr(MachineInstr *CmpInstr,
232 unsigned SrcReg, unsigned SrcReg2,
233 int Mask, int Value,
234 const MachineRegisterInfo *MRI) const override;
Hal Finkel860c08c2013-04-18 22:15:08 +0000235
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000236 /// GetInstSize - Return the number of bytes of code the specified
237 /// instruction may be. This returns the maximum number of bytes.
238 ///
Craig Topperc6b06202014-04-30 05:53:27 +0000239 unsigned GetInstSizeInBytes(const MachineInstr *MI) const;
Joerg Sonnenbergerf0b70e22014-08-08 19:13:23 +0000240
241 void getNoopForMachoTarget(MCInst &NopInst) const override;
Misha Brukmanf2ccb772004-08-17 04:55:41 +0000242};
243
244}
245
246#endif