blob: 3c8117cb6398f3b06b4131fdfe596e596d4ba677 [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
Jia Liu31d157a2012-02-18 12:03:15 +000014#ifndef POWERPC_INSTRUCTIONINFO_H
15#define POWERPC_INSTRUCTIONINFO_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 {
Chris Lattnerb1d26f62006-06-17 00:01:04 +000068 PPCTargetMachine &TM;
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:
Dan Gohman950a4c42008-03-25 22:06:05 +000083 explicit PPCInstrInfo(PPCTargetMachine &TM);
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 ///
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000089 virtual const PPCRegisterInfo &getRegisterInfo() const { return RI; }
Misha Brukmanf2ccb772004-08-17 04:55:41 +000090
Andrew Trick2da8bc82010-12-24 05:03:26 +000091 ScheduleHazardRecognizer *
92 CreateTargetHazardRecognizer(const TargetMachine *TM,
93 const ScheduleDAG *DAG) const;
Hal Finkel64c34e22011-12-02 04:58:02 +000094 ScheduleHazardRecognizer *
95 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
96 const ScheduleDAG *DAG) const;
Andrew Trick2da8bc82010-12-24 05:03:26 +000097
Stephen Hines36b56882014-04-23 16:57:46 -070098 virtual
99 int getOperandLatency(const InstrItineraryData *ItinData,
100 const MachineInstr *DefMI, unsigned DefIdx,
101 const MachineInstr *UseMI, unsigned UseIdx) const;
102 virtual
103 int getOperandLatency(const InstrItineraryData *ItinData,
104 SDNode *DefNode, unsigned DefIdx,
105 SDNode *UseNode, unsigned UseIdx) const {
106 return PPCGenInstrInfo::getOperandLatency(ItinData, DefNode, DefIdx,
107 UseNode, UseIdx);
108 }
109
Jakob Stoklund Olesen71642882012-06-19 21:14:34 +0000110 bool isCoalescableExtInstr(const MachineInstr &MI,
111 unsigned &SrcReg, unsigned &DstReg,
112 unsigned &SubIdx) const;
Dan Gohmancbad42c2008-11-18 19:49:32 +0000113 unsigned isLoadFromStackSlot(const MachineInstr *MI,
114 int &FrameIndex) const;
115 unsigned isStoreToStackSlot(const MachineInstr *MI,
116 int &FrameIndex) const;
Chris Lattner40839602006-02-02 20:12:32 +0000117
Chris Lattner043870d2005-09-09 18:17:41 +0000118 // commuteInstruction - We can commute rlwimi instructions, but only if the
119 // rotate amt is zero. We also have to munge the immediates a bit.
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000120 virtual MachineInstr *commuteInstruction(MachineInstr *MI, bool NewMI) const;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000121
Stephen Hines36b56882014-04-23 16:57:46 -0700122 virtual bool findCommutedOpIndices(MachineInstr *MI, unsigned &SrcOpIdx1,
123 unsigned &SrcOpIdx2) const;
124
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000125 virtual void insertNoop(MachineBasicBlock &MBB,
Chris Lattnerbbf1c722006-03-05 23:49:55 +0000126 MachineBasicBlock::iterator MI) const;
127
Chris Lattnerc50e2bc2006-10-13 21:21:17 +0000128
129 // Branch analysis.
130 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
131 MachineBasicBlock *&FBB,
Evan Chengdc54d312009-02-09 07:14:22 +0000132 SmallVectorImpl<MachineOperand> &Cond,
133 bool AllowModify) const;
Evan Chengb5cdaa22007-05-18 00:05:48 +0000134 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
135 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
136 MachineBasicBlock *FBB,
Stuart Hastings3bf91252010-06-17 22:43:56 +0000137 const SmallVectorImpl<MachineOperand> &Cond,
138 DebugLoc DL) const;
Hal Finkelff56d1a2013-04-05 23:29:01 +0000139
140 // Select analysis.
141 virtual bool canInsertSelect(const MachineBasicBlock&,
142 const SmallVectorImpl<MachineOperand> &Cond,
143 unsigned, unsigned, int&, int&, int&) const;
144 virtual void insertSelect(MachineBasicBlock &MBB,
145 MachineBasicBlock::iterator MI, DebugLoc DL,
146 unsigned DstReg,
147 const SmallVectorImpl<MachineOperand> &Cond,
148 unsigned TrueReg, unsigned FalseReg) const;
149
Jakob Stoklund Olesen27689b02010-07-11 07:31:00 +0000150 virtual void copyPhysReg(MachineBasicBlock &MBB,
151 MachineBasicBlock::iterator I, DebugLoc DL,
152 unsigned DestReg, unsigned SrcReg,
153 bool KillSrc) const;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000154
Owen Andersonf6372aa2008-01-01 21:11:32 +0000155 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
156 MachineBasicBlock::iterator MBBI,
157 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +0000158 const TargetRegisterClass *RC,
159 const TargetRegisterInfo *TRI) const;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000160
Owen Andersonf6372aa2008-01-01 21:11:32 +0000161 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
162 MachineBasicBlock::iterator MBBI,
163 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +0000164 const TargetRegisterClass *RC,
165 const TargetRegisterInfo *TRI) const;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000166
Owen Anderson44eb65c2008-08-14 22:49:33 +0000167 virtual
168 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
Andrew Trick6e8f4c42010-12-24 04:28:06 +0000169
Hal Finkel839b9092013-04-06 19:30:30 +0000170 virtual bool FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
171 unsigned Reg, MachineRegisterInfo *MRI) const;
172
Hal Finkel7eb0d812013-04-09 22:58:37 +0000173 // If conversion by predication (only supported by some branch instructions).
174 // All of the profitability checks always return true; it is always
175 // profitable to use the predicated branches.
176 virtual bool isProfitableToIfCvt(MachineBasicBlock &MBB,
177 unsigned NumCycles, unsigned ExtraPredCycles,
178 const BranchProbability &Probability) const {
179 return true;
180 }
181
182 virtual bool isProfitableToIfCvt(MachineBasicBlock &TMBB,
183 unsigned NumT, unsigned ExtraT,
184 MachineBasicBlock &FMBB,
185 unsigned NumF, unsigned ExtraF,
Hal Finkelda47e172013-04-10 18:30:16 +0000186 const BranchProbability &Probability) const;
Hal Finkel7eb0d812013-04-09 22:58:37 +0000187
188 virtual bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB,
189 unsigned NumCycles,
190 const BranchProbability
191 &Probability) const {
192 return true;
193 }
194
195 virtual bool isProfitableToUnpredicate(MachineBasicBlock &TMBB,
196 MachineBasicBlock &FMBB) const {
197 return false;
198 }
199
200 // Predication support.
201 bool isPredicated(const MachineInstr *MI) const;
202
203 virtual bool isUnpredicatedTerminator(const MachineInstr *MI) const;
204
205 virtual
206 bool PredicateInstruction(MachineInstr *MI,
207 const SmallVectorImpl<MachineOperand> &Pred) const;
208
209 virtual
210 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
211 const SmallVectorImpl<MachineOperand> &Pred2) const;
212
213 virtual bool DefinesPredicate(MachineInstr *MI,
214 std::vector<MachineOperand> &Pred) const;
215
216 virtual bool isPredicable(MachineInstr *MI) const;
217
Hal Finkel860c08c2013-04-18 22:15:08 +0000218 // Comparison optimization.
219
220
221 virtual bool analyzeCompare(const MachineInstr *MI,
222 unsigned &SrcReg, unsigned &SrcReg2,
223 int &Mask, int &Value) const;
224
225 virtual bool optimizeCompareInstr(MachineInstr *CmpInstr,
226 unsigned SrcReg, unsigned SrcReg2,
227 int Mask, int Value,
228 const MachineRegisterInfo *MRI) const;
229
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000230 /// GetInstSize - Return the number of bytes of code the specified
231 /// instruction may be. This returns the maximum number of bytes.
232 ///
233 virtual unsigned GetInstSizeInBytes(const MachineInstr *MI) const;
Misha Brukmanf2ccb772004-08-17 04:55:41 +0000234};
235
236}
237
238#endif