Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- PPCInstrInfo.h - PowerPC Instruction Information --------*- C++ -*-===// |
Misha Brukman | b440243 | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b440243 | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the PowerPC implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H |
| 15 | #define LLVM_LIB_TARGET_POWERPC_PPCINSTRINFO_H |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 16 | |
Chris Lattner | bfca1ab | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 17 | #include "PPC.h" |
Chris Lattner | 6f3b954 | 2005-10-14 23:59:06 +0000 | [diff] [blame] | 18 | #include "PPCRegisterInfo.h" |
Craig Topper | b25fda9 | 2012-03-17 18:46:09 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetInstrInfo.h" |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 20 | |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 21 | #define GET_INSTRINFO_HEADER |
| 22 | #include "PPCGenInstrInfo.inc" |
| 23 | |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 24 | namespace llvm { |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 25 | |
| 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. |
| 29 | namespace PPCII { |
| 30 | enum { |
| 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 Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 39 | /// 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 Lattner | 7579cfb | 2006-03-13 05:15:10 +0000 | [diff] [blame] | 43 | /// PPC970_Cracked - This instruction is cracked into two pieces, requiring |
| 44 | /// two dispatch pipes to be available to issue. |
| 45 | PPC970_Cracked = 0x4, |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 47 | /// PPC970_Mask/Shift - This is a bitmask that selects the pipeline type that |
| 48 | /// an instruction is issued to. |
Chris Lattner | 7579cfb | 2006-03-13 05:15:10 +0000 | [diff] [blame] | 49 | PPC970_Shift = 3, |
Chris Lattner | aa237256 | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 50 | PPC970_Mask = 0x07 << PPC970_Shift |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 51 | }; |
| 52 | enum 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 Lattner | aa237256 | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 62 | PPC970_BRU = 7 << PPC970_Shift // Branch Unit |
Chris Lattner | 51348c5 | 2006-03-12 09:13:49 +0000 | [diff] [blame] | 63 | }; |
Nemanja Ivanovic | 11049f8 | 2016-10-04 06:59:23 +0000 | [diff] [blame] | 64 | |
| 65 | enum { |
| 66 | /// Shift count to bypass PPC970 flags |
| 67 | NewDef_Shift = 6, |
| 68 | |
| 69 | /// The VSX instruction that uses VSX register (vs0-vs63), instead of VMX |
| 70 | /// register (v0-v31). |
| 71 | UseVSXReg = 0x1 << NewDef_Shift |
| 72 | }; |
Chris Lattner | df8e17d | 2010-11-14 23:42:06 +0000 | [diff] [blame] | 73 | } // end namespace PPCII |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 74 | |
Eric Christopher | 234a1ec | 2015-03-12 06:07:16 +0000 | [diff] [blame] | 75 | class PPCSubtarget; |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 76 | class PPCInstrInfo : public PPCGenInstrInfo { |
Eric Christopher | 1dcea73 | 2014-06-12 21:48:52 +0000 | [diff] [blame] | 77 | PPCSubtarget &Subtarget; |
Nate Begeman | 6cca84e | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 78 | const PPCRegisterInfo RI; |
Bill Wendling | c6c48fc | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 79 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 80 | bool StoreRegToStackSlot(MachineFunction &MF, |
| 81 | unsigned SrcReg, bool isKill, int FrameIdx, |
Bill Wendling | c6c48fc | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 82 | const TargetRegisterClass *RC, |
Hal Finkel | fcc51d4 | 2013-03-17 04:43:44 +0000 | [diff] [blame] | 83 | SmallVectorImpl<MachineInstr*> &NewMIs, |
Hal Finkel | cc1eeda | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 84 | bool &NonRI, bool &SpillsVRS) const; |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 85 | bool LoadRegFromStackSlot(MachineFunction &MF, const DebugLoc &DL, |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 86 | unsigned DestReg, int FrameIdx, |
Bill Wendling | c6c48fc | 2008-03-10 22:49:16 +0000 | [diff] [blame] | 87 | const TargetRegisterClass *RC, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 88 | SmallVectorImpl<MachineInstr *> &NewMIs, |
Hal Finkel | cc1eeda | 2013-03-23 22:06:03 +0000 | [diff] [blame] | 89 | bool &NonRI, bool &SpillsVRS) const; |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 90 | virtual void anchor(); |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 91 | |
| 92 | protected: |
| 93 | /// Commutes the operands in the given instruction. |
| 94 | /// The commutable operands are specified by their indices OpIdx1 and OpIdx2. |
| 95 | /// |
| 96 | /// Do not call this method for a non-commutable instruction or for |
| 97 | /// non-commutable pair of operand indices OpIdx1 and OpIdx2. |
| 98 | /// Even though the instruction is commutable, the method may still |
| 99 | /// fail to commute the operands, null pointer is returned in such cases. |
| 100 | /// |
| 101 | /// For example, we can commute rlwimi instructions, but only if the |
| 102 | /// rotate amt is zero. We also have to munge the immediates a bit. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 103 | MachineInstr *commuteInstructionImpl(MachineInstr &MI, bool NewMI, |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 104 | unsigned OpIdx1, |
| 105 | unsigned OpIdx2) const override; |
| 106 | |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 107 | public: |
Eric Christopher | 1dcea73 | 2014-06-12 21:48:52 +0000 | [diff] [blame] | 108 | explicit PPCInstrInfo(PPCSubtarget &STI); |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 109 | |
| 110 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 111 | /// such, whenever a client has an instance of instruction info, it should |
| 112 | /// always be able to get register info as well (through this method). |
| 113 | /// |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 114 | const PPCRegisterInfo &getRegisterInfo() const { return RI; } |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 115 | |
Andrew Trick | 10ffc2b | 2010-12-24 05:03:26 +0000 | [diff] [blame] | 116 | ScheduleHazardRecognizer * |
Eric Christopher | f047bfd | 2014-06-13 22:38:52 +0000 | [diff] [blame] | 117 | CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 118 | const ScheduleDAG *DAG) const override; |
Hal Finkel | 58ca360 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 119 | ScheduleHazardRecognizer * |
| 120 | CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 121 | const ScheduleDAG *DAG) const override; |
Andrew Trick | 10ffc2b | 2010-12-24 05:03:26 +0000 | [diff] [blame] | 122 | |
Hal Finkel | 8acae52 | 2015-07-14 20:02:02 +0000 | [diff] [blame] | 123 | unsigned getInstrLatency(const InstrItineraryData *ItinData, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 124 | const MachineInstr &MI, |
Hal Finkel | 8acae52 | 2015-07-14 20:02:02 +0000 | [diff] [blame] | 125 | unsigned *PredCost = nullptr) const override; |
| 126 | |
Hal Finkel | ceb1f12 | 2013-12-12 00:19:11 +0000 | [diff] [blame] | 127 | int getOperandLatency(const InstrItineraryData *ItinData, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 128 | const MachineInstr &DefMI, unsigned DefIdx, |
| 129 | const MachineInstr &UseMI, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 130 | unsigned UseIdx) const override; |
Hal Finkel | ceb1f12 | 2013-12-12 00:19:11 +0000 | [diff] [blame] | 131 | int getOperandLatency(const InstrItineraryData *ItinData, |
| 132 | SDNode *DefNode, unsigned DefIdx, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 133 | SDNode *UseNode, unsigned UseIdx) const override { |
Hal Finkel | ceb1f12 | 2013-12-12 00:19:11 +0000 | [diff] [blame] | 134 | return PPCGenInstrInfo::getOperandLatency(ItinData, DefNode, DefIdx, |
| 135 | UseNode, UseIdx); |
| 136 | } |
| 137 | |
Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 138 | bool hasLowDefLatency(const TargetSchedModel &SchedModel, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 139 | const MachineInstr &DefMI, |
Hal Finkel | 3c0952b0 | 2015-01-08 22:11:49 +0000 | [diff] [blame] | 140 | unsigned DefIdx) const override { |
| 141 | // Machine LICM should hoist all instructions in low-register-pressure |
| 142 | // situations; none are sufficiently free to justify leaving in a loop |
| 143 | // body. |
| 144 | return false; |
| 145 | } |
| 146 | |
Hal Finkel | 5d36b23 | 2015-07-15 08:23:05 +0000 | [diff] [blame] | 147 | bool useMachineCombiner() const override { |
| 148 | return true; |
| 149 | } |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 150 | |
Hal Finkel | 5d36b23 | 2015-07-15 08:23:05 +0000 | [diff] [blame] | 151 | /// Return true when there is potentially a faster code sequence |
| 152 | /// for an instruction chain ending in <Root>. All potential patterns are |
| 153 | /// output in the <Pattern> array. |
| 154 | bool getMachineCombinerPatterns( |
| 155 | MachineInstr &Root, |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 156 | SmallVectorImpl<MachineCombinerPattern> &P) const override; |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 157 | |
| 158 | bool isAssociativeAndCommutative(const MachineInstr &Inst) const override; |
Hal Finkel | 5d36b23 | 2015-07-15 08:23:05 +0000 | [diff] [blame] | 159 | |
Jakob Stoklund Olesen | 0f855e4 | 2012-06-19 21:14:34 +0000 | [diff] [blame] | 160 | bool isCoalescableExtInstr(const MachineInstr &MI, |
| 161 | unsigned &SrcReg, unsigned &DstReg, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 162 | unsigned &SubIdx) const override; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 163 | unsigned isLoadFromStackSlot(const MachineInstr &MI, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 164 | int &FrameIndex) const override; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 165 | unsigned isStoreToStackSlot(const MachineInstr &MI, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 166 | int &FrameIndex) const override; |
Chris Lattner | bb53acd | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 167 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 168 | bool findCommutedOpIndices(MachineInstr &MI, unsigned &SrcOpIdx1, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 169 | unsigned &SrcOpIdx2) const override; |
Hal Finkel | 6c32ff3 | 2014-03-25 19:26:43 +0000 | [diff] [blame] | 170 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 171 | void insertNoop(MachineBasicBlock &MBB, |
| 172 | MachineBasicBlock::iterator MI) const override; |
Chris Lattner | ea79d9fd73 | 2006-03-05 23:49:55 +0000 | [diff] [blame] | 173 | |
Chris Lattner | a47294ed | 2006-10-13 21:21:17 +0000 | [diff] [blame] | 174 | |
| 175 | // Branch analysis. |
Jacques Pienaar | 71c30a1 | 2016-07-15 14:41:04 +0000 | [diff] [blame] | 176 | bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 177 | MachineBasicBlock *&FBB, |
| 178 | SmallVectorImpl<MachineOperand> &Cond, |
| 179 | bool AllowModify) const override; |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 180 | unsigned removeBranch(MachineBasicBlock &MBB, |
Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 181 | int *BytesRemoved = nullptr) const override; |
Matt Arsenault | e8e0f5c | 2016-09-14 17:24:15 +0000 | [diff] [blame] | 182 | unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 183 | MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond, |
Matt Arsenault | a2b036e | 2016-09-14 17:23:48 +0000 | [diff] [blame] | 184 | const DebugLoc &DL, |
| 185 | int *BytesAdded = nullptr) const override; |
Hal Finkel | ed6a285 | 2013-04-05 23:29:01 +0000 | [diff] [blame] | 186 | |
| 187 | // Select analysis. |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 188 | bool canInsertSelect(const MachineBasicBlock &, ArrayRef<MachineOperand> Cond, |
| 189 | unsigned, unsigned, int &, int &, int &) const override; |
| 190 | void insertSelect(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 191 | const DebugLoc &DL, unsigned DstReg, |
| 192 | ArrayRef<MachineOperand> Cond, unsigned TrueReg, |
| 193 | unsigned FalseReg) const override; |
Hal Finkel | ed6a285 | 2013-04-05 23:29:01 +0000 | [diff] [blame] | 194 | |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 195 | void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 196 | const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 197 | bool KillSrc) const override; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 198 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 199 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 200 | MachineBasicBlock::iterator MBBI, |
| 201 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 202 | const TargetRegisterClass *RC, |
| 203 | const TargetRegisterInfo *TRI) const override; |
Owen Anderson | eee1460 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 204 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 205 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 206 | MachineBasicBlock::iterator MBBI, |
| 207 | unsigned DestReg, int FrameIndex, |
| 208 | const TargetRegisterClass *RC, |
| 209 | const TargetRegisterInfo *TRI) const override; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 210 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 211 | bool |
Matt Arsenault | 1b9fc8e | 2016-09-14 20:43:16 +0000 | [diff] [blame] | 212 | reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override; |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 213 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 214 | bool FoldImmediate(MachineInstr &UseMI, MachineInstr &DefMI, unsigned Reg, |
| 215 | MachineRegisterInfo *MRI) const override; |
Hal Finkel | d61d4f8 | 2013-04-06 19:30:30 +0000 | [diff] [blame] | 216 | |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 217 | // If conversion by predication (only supported by some branch instructions). |
| 218 | // All of the profitability checks always return true; it is always |
| 219 | // profitable to use the predicated branches. |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 220 | bool isProfitableToIfCvt(MachineBasicBlock &MBB, |
| 221 | unsigned NumCycles, unsigned ExtraPredCycles, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 222 | BranchProbability Probability) const override { |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 223 | return true; |
| 224 | } |
| 225 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 226 | bool isProfitableToIfCvt(MachineBasicBlock &TMBB, |
| 227 | unsigned NumT, unsigned ExtraT, |
| 228 | MachineBasicBlock &FMBB, |
| 229 | unsigned NumF, unsigned ExtraF, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 230 | BranchProbability Probability) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 231 | |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 232 | bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, |
| 233 | BranchProbability Probability) const override { |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 234 | return true; |
| 235 | } |
| 236 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 237 | bool isProfitableToUnpredicate(MachineBasicBlock &TMBB, |
| 238 | MachineBasicBlock &FMBB) const override { |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 239 | return false; |
| 240 | } |
| 241 | |
| 242 | // Predication support. |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 243 | bool isPredicated(const MachineInstr &MI) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 244 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 245 | bool isUnpredicatedTerminator(const MachineInstr &MI) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 246 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 247 | bool PredicateInstruction(MachineInstr &MI, |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 248 | ArrayRef<MachineOperand> Pred) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 249 | |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 250 | bool SubsumesPredicate(ArrayRef<MachineOperand> Pred1, |
| 251 | ArrayRef<MachineOperand> Pred2) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 252 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 253 | bool DefinesPredicate(MachineInstr &MI, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 254 | std::vector<MachineOperand> &Pred) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 255 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 256 | bool isPredicable(MachineInstr &MI) const override; |
Hal Finkel | 5711eca | 2013-04-09 22:58:37 +0000 | [diff] [blame] | 257 | |
Hal Finkel | 82656cb | 2013-04-18 22:15:08 +0000 | [diff] [blame] | 258 | // Comparison optimization. |
| 259 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 260 | bool analyzeCompare(const MachineInstr &MI, unsigned &SrcReg, |
| 261 | unsigned &SrcReg2, int &Mask, int &Value) const override; |
Hal Finkel | 82656cb | 2013-04-18 22:15:08 +0000 | [diff] [blame] | 262 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 263 | bool optimizeCompareInstr(MachineInstr &CmpInstr, unsigned SrcReg, |
| 264 | unsigned SrcReg2, int Mask, int Value, |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 265 | const MachineRegisterInfo *MRI) const override; |
Hal Finkel | 82656cb | 2013-04-18 22:15:08 +0000 | [diff] [blame] | 266 | |
Nicolas Geoffray | ae84bbd | 2008-04-16 20:10:13 +0000 | [diff] [blame] | 267 | /// GetInstSize - Return the number of bytes of code the specified |
| 268 | /// instruction may be. This returns the maximum number of bytes. |
| 269 | /// |
Sjoerd Meijer | 0eb96ed | 2016-07-29 08:16:16 +0000 | [diff] [blame] | 270 | unsigned getInstSizeInBytes(const MachineInstr &MI) const override; |
Joerg Sonnenberger | 7ee0f31 | 2014-08-08 19:13:23 +0000 | [diff] [blame] | 271 | |
| 272 | void getNoopForMachoTarget(MCInst &NopInst) const override; |
Hal Finkel | 2d55698 | 2015-08-30 07:50:35 +0000 | [diff] [blame] | 273 | |
| 274 | std::pair<unsigned, unsigned> |
| 275 | decomposeMachineOperandsTargetFlags(unsigned TF) const override; |
| 276 | |
| 277 | ArrayRef<std::pair<unsigned, const char *>> |
| 278 | getSerializableDirectMachineOperandTargetFlags() const override; |
| 279 | |
| 280 | ArrayRef<std::pair<unsigned, const char *>> |
| 281 | getSerializableBitmaskMachineOperandTargetFlags() const override; |
Tim Shen | a1d8bc5 | 2016-04-19 20:14:52 +0000 | [diff] [blame] | 282 | |
| 283 | // Lower pseudo instructions after register allocation. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 284 | bool expandPostRAPseudo(MachineInstr &MI) const override; |
Nemanja Ivanovic | 11049f8 | 2016-10-04 06:59:23 +0000 | [diff] [blame] | 285 | |
| 286 | static bool isVFRegister(unsigned Reg) { |
| 287 | return Reg >= PPC::VF0 && Reg <= PPC::VF31; |
| 288 | } |
| 289 | static bool isVRRegister(unsigned Reg) { |
| 290 | return Reg >= PPC::V0 && Reg <= PPC::V31; |
| 291 | } |
| 292 | const TargetRegisterClass *updatedRC(const TargetRegisterClass *RC) const; |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 293 | }; |
| 294 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 295 | } |
Misha Brukman | 116f927 | 2004-08-17 04:55:41 +0000 | [diff] [blame] | 296 | |
| 297 | #endif |