Chris Lattner | 0d5644b | 2003-01-13 00:26:36 +0000 | [diff] [blame] | 1 | //===-- TargetInstrInfo.cpp - Target Instruction Information --------------===// |
Misha Brukman | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +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 | 10468d8 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | f6932b7 | 2005-01-19 06:53:34 +0000 | [diff] [blame] | 10 | // This file implements the TargetInstrInfo class. |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Eric Christopher | 4fdc765 | 2014-06-11 16:59:33 +0000 | [diff] [blame] | 14 | #include "llvm/Target/TargetInstrInfo.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineMemOperand.h" |
| 18 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 19 | #include "llvm/CodeGen/PseudoSourceValue.h" |
| 20 | #include "llvm/CodeGen/ScoreboardHazardRecognizer.h" |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/StackMaps.h" |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 22 | #include "llvm/IR/DataLayout.h" |
Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCAsmInfo.h" |
Evan Cheng | 8264e27 | 2011-06-29 01:14:12 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCInstrItineraries.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Michael Kuperstein | 698ea3b | 2015-01-08 11:59:43 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetFrameLowering.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetLowering.h" |
| 30 | #include "llvm/Target/TargetMachine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetRegisterInfo.h" |
Nick Lewycky | 0de20af | 2010-12-19 20:43:38 +0000 | [diff] [blame] | 32 | #include <cctype> |
Chris Lattner | f6932b7 | 2005-01-19 06:53:34 +0000 | [diff] [blame] | 33 | using namespace llvm; |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 34 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 35 | static cl::opt<bool> DisableHazardRecognizer( |
| 36 | "disable-sched-hazard", cl::Hidden, cl::init(false), |
| 37 | cl::desc("Disable hazard detection during preRA scheduling")); |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 0d5644b | 2003-01-13 00:26:36 +0000 | [diff] [blame] | 39 | TargetInstrInfo::~TargetInstrInfo() { |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 40 | } |
| 41 | |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 42 | const TargetRegisterClass* |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 43 | TargetInstrInfo::getRegClass(const MCInstrDesc &MCID, unsigned OpNum, |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 44 | const TargetRegisterInfo *TRI, |
| 45 | const MachineFunction &MF) const { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 46 | if (OpNum >= MCID.getNumOperands()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 47 | return nullptr; |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 48 | |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 49 | short RegClass = MCID.OpInfo[OpNum].RegClass; |
| 50 | if (MCID.OpInfo[OpNum].isLookupPtrRegClass()) |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 51 | return TRI->getPointerRegClass(MF, RegClass); |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 52 | |
| 53 | // Instructions like INSERT_SUBREG do not have fixed register classes. |
| 54 | if (RegClass < 0) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 55 | return nullptr; |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 56 | |
| 57 | // Otherwise just look it up normally. |
| 58 | return TRI->getRegClass(RegClass); |
| 59 | } |
| 60 | |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 61 | /// insertNoop - Insert a noop into the instruction stream at the specified |
| 62 | /// point. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 63 | void TargetInstrInfo::insertNoop(MachineBasicBlock &MBB, |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 64 | MachineBasicBlock::iterator MI) const { |
| 65 | llvm_unreachable("Target didn't implement insertNoop!"); |
| 66 | } |
| 67 | |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 68 | /// Measure the specified inline asm to determine an approximation of its |
| 69 | /// length. |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 70 | /// Comments (which run till the next SeparatorString or newline) do not |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 71 | /// count as an instruction. |
| 72 | /// Any other non-whitespace text is considered an instruction, with |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 73 | /// multiple instructions separated by SeparatorString or newlines. |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 74 | /// Variable-length instructions are not handled here; this function |
| 75 | /// may be overloaded in the target code to do that. |
| 76 | unsigned TargetInstrInfo::getInlineAsmLength(const char *Str, |
Chris Lattner | e9a75a6 | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 77 | const MCAsmInfo &MAI) const { |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 78 | |
| 79 | |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 80 | // Count the number of instructions in the asm. |
| 81 | bool atInsnStart = true; |
| 82 | unsigned Length = 0; |
| 83 | for (; *Str; ++Str) { |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 84 | if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(), |
| 85 | strlen(MAI.getSeparatorString())) == 0) |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 86 | atInsnStart = true; |
Guy Benyei | 83c74e9 | 2013-02-12 21:21:59 +0000 | [diff] [blame] | 87 | if (atInsnStart && !std::isspace(static_cast<unsigned char>(*Str))) { |
Chris Lattner | e9a75a6 | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 88 | Length += MAI.getMaxInstLength(); |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 89 | atInsnStart = false; |
| 90 | } |
Chris Lattner | e9a75a6 | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 91 | if (atInsnStart && strncmp(Str, MAI.getCommentString(), |
| 92 | strlen(MAI.getCommentString())) == 0) |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 93 | atInsnStart = false; |
| 94 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 95 | |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 96 | return Length; |
| 97 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 98 | |
| 99 | /// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything |
| 100 | /// after it, replacing it with an unconditional branch to NewDest. |
| 101 | void |
| 102 | TargetInstrInfo::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, |
| 103 | MachineBasicBlock *NewDest) const { |
| 104 | MachineBasicBlock *MBB = Tail->getParent(); |
| 105 | |
| 106 | // Remove all the old successors of MBB from the CFG. |
| 107 | while (!MBB->succ_empty()) |
| 108 | MBB->removeSuccessor(MBB->succ_begin()); |
| 109 | |
| 110 | // Remove all the dead instructions from the end of MBB. |
| 111 | MBB->erase(Tail, MBB->end()); |
| 112 | |
| 113 | // If MBB isn't immediately before MBB, insert a branch to it. |
| 114 | if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest)) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 115 | InsertBranch(*MBB, NewDest, nullptr, SmallVector<MachineOperand, 0>(), |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 116 | Tail->getDebugLoc()); |
| 117 | MBB->addSuccessor(NewDest); |
| 118 | } |
| 119 | |
| 120 | // commuteInstruction - The default implementation of this method just exchanges |
| 121 | // the two operands returned by findCommutedOpIndices. |
| 122 | MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr *MI, |
| 123 | bool NewMI) const { |
| 124 | const MCInstrDesc &MCID = MI->getDesc(); |
| 125 | bool HasDef = MCID.getNumDefs(); |
| 126 | if (HasDef && !MI->getOperand(0).isReg()) |
| 127 | // No idea how to commute this instruction. Target should implement its own. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 128 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 129 | unsigned Idx1, Idx2; |
| 130 | if (!findCommutedOpIndices(MI, Idx1, Idx2)) { |
Quentin Colombet | 2eb151e | 2014-05-08 23:12:27 +0000 | [diff] [blame] | 131 | assert(MI->isCommutable() && "Precondition violation: MI must be commutable."); |
| 132 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() && |
| 136 | "This only knows how to commute register operands so far"); |
| 137 | unsigned Reg0 = HasDef ? MI->getOperand(0).getReg() : 0; |
| 138 | unsigned Reg1 = MI->getOperand(Idx1).getReg(); |
| 139 | unsigned Reg2 = MI->getOperand(Idx2).getReg(); |
| 140 | unsigned SubReg0 = HasDef ? MI->getOperand(0).getSubReg() : 0; |
| 141 | unsigned SubReg1 = MI->getOperand(Idx1).getSubReg(); |
| 142 | unsigned SubReg2 = MI->getOperand(Idx2).getSubReg(); |
| 143 | bool Reg1IsKill = MI->getOperand(Idx1).isKill(); |
| 144 | bool Reg2IsKill = MI->getOperand(Idx2).isKill(); |
Andrea Di Biagio | c84b5bd | 2015-04-30 21:03:29 +0000 | [diff] [blame] | 145 | bool Reg1IsUndef = MI->getOperand(Idx1).isUndef(); |
| 146 | bool Reg2IsUndef = MI->getOperand(Idx2).isUndef(); |
Pete Cooper | 451755d | 2015-04-30 23:14:14 +0000 | [diff] [blame] | 147 | bool Reg1IsInternal = MI->getOperand(Idx1).isInternalRead(); |
| 148 | bool Reg2IsInternal = MI->getOperand(Idx2).isInternalRead(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 149 | // If destination is tied to either of the commuted source register, then |
| 150 | // it must be updated. |
| 151 | if (HasDef && Reg0 == Reg1 && |
| 152 | MI->getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) { |
| 153 | Reg2IsKill = false; |
| 154 | Reg0 = Reg2; |
| 155 | SubReg0 = SubReg2; |
| 156 | } else if (HasDef && Reg0 == Reg2 && |
| 157 | MI->getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) { |
| 158 | Reg1IsKill = false; |
| 159 | Reg0 = Reg1; |
| 160 | SubReg0 = SubReg1; |
| 161 | } |
| 162 | |
| 163 | if (NewMI) { |
| 164 | // Create a new instruction. |
| 165 | MachineFunction &MF = *MI->getParent()->getParent(); |
| 166 | MI = MF.CloneMachineInstr(MI); |
| 167 | } |
| 168 | |
| 169 | if (HasDef) { |
| 170 | MI->getOperand(0).setReg(Reg0); |
| 171 | MI->getOperand(0).setSubReg(SubReg0); |
| 172 | } |
| 173 | MI->getOperand(Idx2).setReg(Reg1); |
| 174 | MI->getOperand(Idx1).setReg(Reg2); |
| 175 | MI->getOperand(Idx2).setSubReg(SubReg1); |
| 176 | MI->getOperand(Idx1).setSubReg(SubReg2); |
| 177 | MI->getOperand(Idx2).setIsKill(Reg1IsKill); |
| 178 | MI->getOperand(Idx1).setIsKill(Reg2IsKill); |
Andrea Di Biagio | c84b5bd | 2015-04-30 21:03:29 +0000 | [diff] [blame] | 179 | MI->getOperand(Idx2).setIsUndef(Reg1IsUndef); |
| 180 | MI->getOperand(Idx1).setIsUndef(Reg2IsUndef); |
Pete Cooper | 451755d | 2015-04-30 23:14:14 +0000 | [diff] [blame] | 181 | MI->getOperand(Idx2).setIsInternalRead(Reg1IsInternal); |
| 182 | MI->getOperand(Idx1).setIsInternalRead(Reg2IsInternal); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 183 | return MI; |
| 184 | } |
| 185 | |
| 186 | /// findCommutedOpIndices - If specified MI is commutable, return the two |
| 187 | /// operand indices that would swap value. Return true if the instruction |
| 188 | /// is not in a form which this routine understands. |
| 189 | bool TargetInstrInfo::findCommutedOpIndices(MachineInstr *MI, |
| 190 | unsigned &SrcOpIdx1, |
| 191 | unsigned &SrcOpIdx2) const { |
| 192 | assert(!MI->isBundle() && |
| 193 | "TargetInstrInfo::findCommutedOpIndices() can't handle bundles"); |
| 194 | |
| 195 | const MCInstrDesc &MCID = MI->getDesc(); |
| 196 | if (!MCID.isCommutable()) |
| 197 | return false; |
| 198 | // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this |
| 199 | // is not true, then the target must implement this. |
| 200 | SrcOpIdx1 = MCID.getNumDefs(); |
| 201 | SrcOpIdx2 = SrcOpIdx1 + 1; |
| 202 | if (!MI->getOperand(SrcOpIdx1).isReg() || |
| 203 | !MI->getOperand(SrcOpIdx2).isReg()) |
| 204 | // No idea. |
| 205 | return false; |
| 206 | return true; |
| 207 | } |
| 208 | |
| 209 | |
| 210 | bool |
| 211 | TargetInstrInfo::isUnpredicatedTerminator(const MachineInstr *MI) const { |
| 212 | if (!MI->isTerminator()) return false; |
| 213 | |
| 214 | // Conditional branch is a special case. |
| 215 | if (MI->isBranch() && !MI->isBarrier()) |
| 216 | return true; |
| 217 | if (!MI->isPredicable()) |
| 218 | return true; |
| 219 | return !isPredicated(MI); |
| 220 | } |
| 221 | |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 222 | bool TargetInstrInfo::PredicateInstruction( |
| 223 | MachineInstr *MI, ArrayRef<MachineOperand> Pred) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 224 | bool MadeChange = false; |
| 225 | |
| 226 | assert(!MI->isBundle() && |
| 227 | "TargetInstrInfo::PredicateInstruction() can't handle bundles"); |
| 228 | |
| 229 | const MCInstrDesc &MCID = MI->getDesc(); |
| 230 | if (!MI->isPredicable()) |
| 231 | return false; |
| 232 | |
| 233 | for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 234 | if (MCID.OpInfo[i].isPredicate()) { |
| 235 | MachineOperand &MO = MI->getOperand(i); |
| 236 | if (MO.isReg()) { |
| 237 | MO.setReg(Pred[j].getReg()); |
| 238 | MadeChange = true; |
| 239 | } else if (MO.isImm()) { |
| 240 | MO.setImm(Pred[j].getImm()); |
| 241 | MadeChange = true; |
| 242 | } else if (MO.isMBB()) { |
| 243 | MO.setMBB(Pred[j].getMBB()); |
| 244 | MadeChange = true; |
| 245 | } |
| 246 | ++j; |
| 247 | } |
| 248 | } |
| 249 | return MadeChange; |
| 250 | } |
| 251 | |
| 252 | bool TargetInstrInfo::hasLoadFromStackSlot(const MachineInstr *MI, |
| 253 | const MachineMemOperand *&MMO, |
| 254 | int &FrameIndex) const { |
| 255 | for (MachineInstr::mmo_iterator o = MI->memoperands_begin(), |
| 256 | oe = MI->memoperands_end(); |
| 257 | o != oe; |
| 258 | ++o) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 259 | if ((*o)->isLoad()) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 260 | if (const FixedStackPseudoSourceValue *Value = |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 261 | dyn_cast_or_null<FixedStackPseudoSourceValue>( |
| 262 | (*o)->getPseudoValue())) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 263 | FrameIndex = Value->getFrameIndex(); |
| 264 | MMO = *o; |
| 265 | return true; |
| 266 | } |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 267 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 268 | } |
| 269 | return false; |
| 270 | } |
| 271 | |
| 272 | bool TargetInstrInfo::hasStoreToStackSlot(const MachineInstr *MI, |
| 273 | const MachineMemOperand *&MMO, |
| 274 | int &FrameIndex) const { |
| 275 | for (MachineInstr::mmo_iterator o = MI->memoperands_begin(), |
| 276 | oe = MI->memoperands_end(); |
| 277 | o != oe; |
| 278 | ++o) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 279 | if ((*o)->isStore()) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 280 | if (const FixedStackPseudoSourceValue *Value = |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 281 | dyn_cast_or_null<FixedStackPseudoSourceValue>( |
| 282 | (*o)->getPseudoValue())) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 283 | FrameIndex = Value->getFrameIndex(); |
| 284 | MMO = *o; |
| 285 | return true; |
| 286 | } |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 287 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 288 | } |
| 289 | return false; |
| 290 | } |
| 291 | |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 292 | bool TargetInstrInfo::getStackSlotRange(const TargetRegisterClass *RC, |
| 293 | unsigned SubIdx, unsigned &Size, |
| 294 | unsigned &Offset, |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 295 | const MachineFunction &MF) const { |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 296 | if (!SubIdx) { |
| 297 | Size = RC->getSize(); |
| 298 | Offset = 0; |
| 299 | return true; |
| 300 | } |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 301 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
| 302 | unsigned BitSize = TRI->getSubRegIdxSize(SubIdx); |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 303 | // Convert bit size to byte size to be consistent with |
| 304 | // MCRegisterClass::getSize(). |
| 305 | if (BitSize % 8) |
| 306 | return false; |
| 307 | |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 308 | int BitOffset = TRI->getSubRegIdxOffset(SubIdx); |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 309 | if (BitOffset < 0 || BitOffset % 8) |
| 310 | return false; |
| 311 | |
| 312 | Size = BitSize /= 8; |
| 313 | Offset = (unsigned)BitOffset / 8; |
| 314 | |
| 315 | assert(RC->getSize() >= (Offset + Size) && "bad subregister range"); |
| 316 | |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 317 | if (!MF.getTarget().getDataLayout()->isLittleEndian()) { |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 318 | Offset = RC->getSize() - (Offset + Size); |
| 319 | } |
| 320 | return true; |
| 321 | } |
| 322 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 323 | void TargetInstrInfo::reMaterialize(MachineBasicBlock &MBB, |
| 324 | MachineBasicBlock::iterator I, |
| 325 | unsigned DestReg, |
| 326 | unsigned SubIdx, |
| 327 | const MachineInstr *Orig, |
| 328 | const TargetRegisterInfo &TRI) const { |
| 329 | MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig); |
| 330 | MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI); |
| 331 | MBB.insert(I, MI); |
| 332 | } |
| 333 | |
| 334 | bool |
| 335 | TargetInstrInfo::produceSameValue(const MachineInstr *MI0, |
| 336 | const MachineInstr *MI1, |
| 337 | const MachineRegisterInfo *MRI) const { |
| 338 | return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs); |
| 339 | } |
| 340 | |
| 341 | MachineInstr *TargetInstrInfo::duplicate(MachineInstr *Orig, |
| 342 | MachineFunction &MF) const { |
| 343 | assert(!Orig->isNotDuplicable() && |
| 344 | "Instruction cannot be duplicated"); |
| 345 | return MF.CloneMachineInstr(Orig); |
| 346 | } |
| 347 | |
| 348 | // If the COPY instruction in MI can be folded to a stack operation, return |
| 349 | // the register class to use. |
| 350 | static const TargetRegisterClass *canFoldCopy(const MachineInstr *MI, |
| 351 | unsigned FoldIdx) { |
| 352 | assert(MI->isCopy() && "MI must be a COPY instruction"); |
| 353 | if (MI->getNumOperands() != 2) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 354 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 355 | assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand"); |
| 356 | |
| 357 | const MachineOperand &FoldOp = MI->getOperand(FoldIdx); |
| 358 | const MachineOperand &LiveOp = MI->getOperand(1-FoldIdx); |
| 359 | |
| 360 | if (FoldOp.getSubReg() || LiveOp.getSubReg()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 361 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 362 | |
| 363 | unsigned FoldReg = FoldOp.getReg(); |
| 364 | unsigned LiveReg = LiveOp.getReg(); |
| 365 | |
| 366 | assert(TargetRegisterInfo::isVirtualRegister(FoldReg) && |
| 367 | "Cannot fold physregs"); |
| 368 | |
| 369 | const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo(); |
| 370 | const TargetRegisterClass *RC = MRI.getRegClass(FoldReg); |
| 371 | |
| 372 | if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg())) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 373 | return RC->contains(LiveOp.getReg()) ? RC : nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 374 | |
| 375 | if (RC->hasSubClassEq(MRI.getRegClass(LiveReg))) |
| 376 | return RC; |
| 377 | |
| 378 | // FIXME: Allow folding when register classes are memory compatible. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 379 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Rafael Espindola | 6865d6f | 2014-09-15 18:32:58 +0000 | [diff] [blame] | 382 | void TargetInstrInfo::getNoopForMachoTarget(MCInst &NopInst) const { |
| 383 | llvm_unreachable("Not a MachO target"); |
| 384 | } |
| 385 | |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 386 | bool TargetInstrInfo::canFoldMemoryOperand(const MachineInstr *MI, |
| 387 | ArrayRef<unsigned> Ops) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 388 | return MI->isCopy() && Ops.size() == 1 && canFoldCopy(MI, Ops[0]); |
| 389 | } |
| 390 | |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 391 | static MachineInstr *foldPatchpoint(MachineFunction &MF, MachineInstr *MI, |
| 392 | ArrayRef<unsigned> Ops, int FrameIndex, |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 393 | const TargetInstrInfo &TII) { |
| 394 | unsigned StartIdx = 0; |
| 395 | switch (MI->getOpcode()) { |
| 396 | case TargetOpcode::STACKMAP: |
| 397 | StartIdx = 2; // Skip ID, nShadowBytes. |
| 398 | break; |
| 399 | case TargetOpcode::PATCHPOINT: { |
| 400 | // For PatchPoint, the call args are not foldable. |
| 401 | PatchPointOpers opers(MI); |
| 402 | StartIdx = opers.getVarIdx(); |
| 403 | break; |
| 404 | } |
| 405 | default: |
| 406 | llvm_unreachable("unexpected stackmap opcode"); |
| 407 | } |
| 408 | |
| 409 | // Return false if any operands requested for folding are not foldable (not |
| 410 | // part of the stackmap's live values). |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 411 | for (unsigned Op : Ops) { |
| 412 | if (Op < StartIdx) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 413 | return nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | MachineInstr *NewMI = |
| 417 | MF.CreateMachineInstr(TII.get(MI->getOpcode()), MI->getDebugLoc(), true); |
| 418 | MachineInstrBuilder MIB(MF, NewMI); |
| 419 | |
| 420 | // No need to fold return, the meta data, and function arguments |
| 421 | for (unsigned i = 0; i < StartIdx; ++i) |
| 422 | MIB.addOperand(MI->getOperand(i)); |
| 423 | |
| 424 | for (unsigned i = StartIdx; i < MI->getNumOperands(); ++i) { |
| 425 | MachineOperand &MO = MI->getOperand(i); |
| 426 | if (std::find(Ops.begin(), Ops.end(), i) != Ops.end()) { |
| 427 | unsigned SpillSize; |
| 428 | unsigned SpillOffset; |
| 429 | // Compute the spill slot size and offset. |
| 430 | const TargetRegisterClass *RC = |
| 431 | MF.getRegInfo().getRegClass(MO.getReg()); |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 432 | bool Valid = |
| 433 | TII.getStackSlotRange(RC, MO.getSubReg(), SpillSize, SpillOffset, MF); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 434 | if (!Valid) |
| 435 | report_fatal_error("cannot spill patchpoint subregister operand"); |
| 436 | MIB.addImm(StackMaps::IndirectMemRefOp); |
| 437 | MIB.addImm(SpillSize); |
| 438 | MIB.addFrameIndex(FrameIndex); |
Lang Hames | 2ce64a7 | 2013-12-07 03:30:59 +0000 | [diff] [blame] | 439 | MIB.addImm(SpillOffset); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 440 | } |
| 441 | else |
| 442 | MIB.addOperand(MO); |
| 443 | } |
| 444 | return NewMI; |
| 445 | } |
| 446 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 447 | /// foldMemoryOperand - Attempt to fold a load or store of the specified stack |
| 448 | /// slot into the specified machine instruction for the specified operand(s). |
| 449 | /// If this is possible, a new instruction is returned with the specified |
| 450 | /// operand folded, otherwise NULL is returned. The client is responsible for |
| 451 | /// removing the old instruction and adding the new one in the instruction |
| 452 | /// stream. |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 453 | MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI, |
| 454 | ArrayRef<unsigned> Ops, |
| 455 | int FI) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 456 | unsigned Flags = 0; |
| 457 | for (unsigned i = 0, e = Ops.size(); i != e; ++i) |
| 458 | if (MI->getOperand(Ops[i]).isDef()) |
| 459 | Flags |= MachineMemOperand::MOStore; |
| 460 | else |
| 461 | Flags |= MachineMemOperand::MOLoad; |
| 462 | |
| 463 | MachineBasicBlock *MBB = MI->getParent(); |
| 464 | assert(MBB && "foldMemoryOperand needs an inserted instruction"); |
| 465 | MachineFunction &MF = *MBB->getParent(); |
| 466 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 467 | MachineInstr *NewMI = nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 468 | |
| 469 | if (MI->getOpcode() == TargetOpcode::STACKMAP || |
| 470 | MI->getOpcode() == TargetOpcode::PATCHPOINT) { |
| 471 | // Fold stackmap/patchpoint. |
| 472 | NewMI = foldPatchpoint(MF, MI, Ops, FI, *this); |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 473 | if (NewMI) |
| 474 | MBB->insert(MI, NewMI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 475 | } else { |
| 476 | // Ask the target to do the actual folding. |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 477 | NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, FI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 478 | } |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 479 | |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 480 | if (NewMI) { |
Andrew Trick | a9f4d92 | 2013-11-14 23:45:04 +0000 | [diff] [blame] | 481 | NewMI->setMemRefs(MI->memoperands_begin(), MI->memoperands_end()); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 482 | // Add a memory operand, foldMemoryOperandImpl doesn't do that. |
| 483 | assert((!(Flags & MachineMemOperand::MOStore) || |
| 484 | NewMI->mayStore()) && |
| 485 | "Folded a def to a non-store!"); |
| 486 | assert((!(Flags & MachineMemOperand::MOLoad) || |
| 487 | NewMI->mayLoad()) && |
| 488 | "Folded a use to a non-load!"); |
| 489 | const MachineFrameInfo &MFI = *MF.getFrameInfo(); |
| 490 | assert(MFI.getObjectOffset(FI) != -1); |
| 491 | MachineMemOperand *MMO = |
| 492 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), |
| 493 | Flags, MFI.getObjectSize(FI), |
| 494 | MFI.getObjectAlignment(FI)); |
| 495 | NewMI->addMemOperand(MF, MMO); |
| 496 | |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 497 | return NewMI; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | // Straight COPY may fold as load/store. |
| 501 | if (!MI->isCopy() || Ops.size() != 1) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 502 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 503 | |
| 504 | const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]); |
| 505 | if (!RC) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 506 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 507 | |
| 508 | const MachineOperand &MO = MI->getOperand(1-Ops[0]); |
| 509 | MachineBasicBlock::iterator Pos = MI; |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 510 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 511 | |
| 512 | if (Flags == MachineMemOperand::MOStore) |
| 513 | storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI); |
| 514 | else |
| 515 | loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI); |
| 516 | return --Pos; |
| 517 | } |
| 518 | |
| 519 | /// foldMemoryOperand - Same as the previous version except it allows folding |
| 520 | /// of any load and store from / to any address, not just from a specific |
| 521 | /// stack slot. |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 522 | MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI, |
| 523 | ArrayRef<unsigned> Ops, |
| 524 | MachineInstr *LoadMI) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 525 | assert(LoadMI->canFoldAsLoad() && "LoadMI isn't foldable!"); |
| 526 | #ifndef NDEBUG |
| 527 | for (unsigned i = 0, e = Ops.size(); i != e; ++i) |
| 528 | assert(MI->getOperand(Ops[i]).isUse() && "Folding load into def!"); |
| 529 | #endif |
| 530 | MachineBasicBlock &MBB = *MI->getParent(); |
| 531 | MachineFunction &MF = *MBB.getParent(); |
| 532 | |
| 533 | // Ask the target to do the actual folding. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 534 | MachineInstr *NewMI = nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 535 | int FrameIndex = 0; |
| 536 | |
| 537 | if ((MI->getOpcode() == TargetOpcode::STACKMAP || |
| 538 | MI->getOpcode() == TargetOpcode::PATCHPOINT) && |
| 539 | isLoadFromStackSlot(LoadMI, FrameIndex)) { |
| 540 | // Fold stackmap/patchpoint. |
| 541 | NewMI = foldPatchpoint(MF, MI, Ops, FrameIndex, *this); |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 542 | if (NewMI) |
| 543 | NewMI = MBB.insert(MI, NewMI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 544 | } else { |
| 545 | // Ask the target to do the actual folding. |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 546 | NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, LoadMI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 547 | } |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 548 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 549 | if (!NewMI) return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 550 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 551 | // Copy the memoperands from the load to the folded instruction. |
Andrew Trick | a9f4d92 | 2013-11-14 23:45:04 +0000 | [diff] [blame] | 552 | if (MI->memoperands_empty()) { |
| 553 | NewMI->setMemRefs(LoadMI->memoperands_begin(), |
| 554 | LoadMI->memoperands_end()); |
| 555 | } |
| 556 | else { |
| 557 | // Handle the rare case of folding multiple loads. |
| 558 | NewMI->setMemRefs(MI->memoperands_begin(), |
| 559 | MI->memoperands_end()); |
| 560 | for (MachineInstr::mmo_iterator I = LoadMI->memoperands_begin(), |
| 561 | E = LoadMI->memoperands_end(); I != E; ++I) { |
| 562 | NewMI->addMemOperand(MF, *I); |
| 563 | } |
| 564 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 565 | return NewMI; |
| 566 | } |
| 567 | |
| 568 | bool TargetInstrInfo:: |
| 569 | isReallyTriviallyReMaterializableGeneric(const MachineInstr *MI, |
| 570 | AliasAnalysis *AA) const { |
| 571 | const MachineFunction &MF = *MI->getParent()->getParent(); |
| 572 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 573 | |
| 574 | // Remat clients assume operand 0 is the defined register. |
| 575 | if (!MI->getNumOperands() || !MI->getOperand(0).isReg()) |
| 576 | return false; |
| 577 | unsigned DefReg = MI->getOperand(0).getReg(); |
| 578 | |
| 579 | // A sub-register definition can only be rematerialized if the instruction |
| 580 | // doesn't read the other parts of the register. Otherwise it is really a |
| 581 | // read-modify-write operation on the full virtual register which cannot be |
| 582 | // moved safely. |
| 583 | if (TargetRegisterInfo::isVirtualRegister(DefReg) && |
| 584 | MI->getOperand(0).getSubReg() && MI->readsVirtualRegister(DefReg)) |
| 585 | return false; |
| 586 | |
| 587 | // A load from a fixed stack slot can be rematerialized. This may be |
| 588 | // redundant with subsequent checks, but it's target-independent, |
| 589 | // simple, and a common case. |
| 590 | int FrameIdx = 0; |
Eric Christopher | 9d91679 | 2014-07-23 22:12:03 +0000 | [diff] [blame] | 591 | if (isLoadFromStackSlot(MI, FrameIdx) && |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 592 | MF.getFrameInfo()->isImmutableObjectIndex(FrameIdx)) |
| 593 | return true; |
| 594 | |
| 595 | // Avoid instructions obviously unsafe for remat. |
| 596 | if (MI->isNotDuplicable() || MI->mayStore() || |
| 597 | MI->hasUnmodeledSideEffects()) |
| 598 | return false; |
| 599 | |
| 600 | // Don't remat inline asm. We have no idea how expensive it is |
| 601 | // even if it's side effect free. |
| 602 | if (MI->isInlineAsm()) |
| 603 | return false; |
| 604 | |
| 605 | // Avoid instructions which load from potentially varying memory. |
| 606 | if (MI->mayLoad() && !MI->isInvariantLoad(AA)) |
| 607 | return false; |
| 608 | |
| 609 | // If any of the registers accessed are non-constant, conservatively assume |
| 610 | // the instruction is not rematerializable. |
| 611 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 612 | const MachineOperand &MO = MI->getOperand(i); |
| 613 | if (!MO.isReg()) continue; |
| 614 | unsigned Reg = MO.getReg(); |
| 615 | if (Reg == 0) |
| 616 | continue; |
| 617 | |
| 618 | // Check for a well-behaved physical register. |
| 619 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 620 | if (MO.isUse()) { |
| 621 | // If the physreg has no defs anywhere, it's just an ambient register |
| 622 | // and we can freely move its uses. Alternatively, if it's allocatable, |
| 623 | // it could get allocated to something with a def during allocation. |
| 624 | if (!MRI.isConstantPhysReg(Reg, MF)) |
| 625 | return false; |
| 626 | } else { |
| 627 | // A physreg def. We can't remat it. |
| 628 | return false; |
| 629 | } |
| 630 | continue; |
| 631 | } |
| 632 | |
| 633 | // Only allow one virtual-register def. There may be multiple defs of the |
| 634 | // same virtual register, though. |
| 635 | if (MO.isDef() && Reg != DefReg) |
| 636 | return false; |
| 637 | |
| 638 | // Don't allow any virtual-register uses. Rematting an instruction with |
| 639 | // virtual register uses would length the live ranges of the uses, which |
| 640 | // is not necessarily a good idea, certainly not "trivial". |
| 641 | if (MO.isUse()) |
| 642 | return false; |
| 643 | } |
| 644 | |
| 645 | // Everything checked out. |
| 646 | return true; |
| 647 | } |
| 648 | |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 649 | int TargetInstrInfo::getSPAdjust(const MachineInstr *MI) const { |
| 650 | const MachineFunction *MF = MI->getParent()->getParent(); |
| 651 | const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering(); |
| 652 | bool StackGrowsDown = |
| 653 | TFI->getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown; |
| 654 | |
Matthias Braun | fa3872e | 2015-05-18 20:27:55 +0000 | [diff] [blame] | 655 | unsigned FrameSetupOpcode = getCallFrameSetupOpcode(); |
| 656 | unsigned FrameDestroyOpcode = getCallFrameDestroyOpcode(); |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 657 | |
| 658 | if (MI->getOpcode() != FrameSetupOpcode && |
| 659 | MI->getOpcode() != FrameDestroyOpcode) |
| 660 | return 0; |
| 661 | |
| 662 | int SPAdj = MI->getOperand(0).getImm(); |
| 663 | |
| 664 | if ((!StackGrowsDown && MI->getOpcode() == FrameSetupOpcode) || |
| 665 | (StackGrowsDown && MI->getOpcode() == FrameDestroyOpcode)) |
| 666 | SPAdj = -SPAdj; |
| 667 | |
| 668 | return SPAdj; |
| 669 | } |
| 670 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 671 | /// isSchedulingBoundary - Test if the given instruction should be |
| 672 | /// considered a scheduling boundary. This primarily includes labels |
| 673 | /// and terminators. |
| 674 | bool TargetInstrInfo::isSchedulingBoundary(const MachineInstr *MI, |
| 675 | const MachineBasicBlock *MBB, |
| 676 | const MachineFunction &MF) const { |
| 677 | // Terminators and labels can't be scheduled around. |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 678 | if (MI->isTerminator() || MI->isPosition()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 679 | return true; |
| 680 | |
| 681 | // Don't attempt to schedule around any instruction that defines |
| 682 | // a stack-oriented pointer, as it's unlikely to be profitable. This |
| 683 | // saves compile time, because it doesn't require every single |
| 684 | // stack slot reference to depend on the instruction that does the |
| 685 | // modification. |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 686 | const TargetLowering &TLI = *MF.getSubtarget().getTargetLowering(); |
| 687 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 688 | if (MI->modifiesRegister(TLI.getStackPointerRegisterToSaveRestore(), TRI)) |
| 689 | return true; |
| 690 | |
| 691 | return false; |
| 692 | } |
| 693 | |
| 694 | // Provide a global flag for disabling the PreRA hazard recognizer that targets |
| 695 | // may choose to honor. |
| 696 | bool TargetInstrInfo::usePreRAHazardRecognizer() const { |
| 697 | return !DisableHazardRecognizer; |
| 698 | } |
| 699 | |
| 700 | // Default implementation of CreateTargetRAHazardRecognizer. |
| 701 | ScheduleHazardRecognizer *TargetInstrInfo:: |
Eric Christopher | f047bfd | 2014-06-13 22:38:52 +0000 | [diff] [blame] | 702 | CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 703 | const ScheduleDAG *DAG) const { |
| 704 | // Dummy hazard recognizer allows all instructions to issue. |
| 705 | return new ScheduleHazardRecognizer(); |
| 706 | } |
| 707 | |
| 708 | // Default implementation of CreateTargetMIHazardRecognizer. |
| 709 | ScheduleHazardRecognizer *TargetInstrInfo:: |
| 710 | CreateTargetMIHazardRecognizer(const InstrItineraryData *II, |
| 711 | const ScheduleDAG *DAG) const { |
| 712 | return (ScheduleHazardRecognizer *) |
| 713 | new ScoreboardHazardRecognizer(II, DAG, "misched"); |
| 714 | } |
| 715 | |
| 716 | // Default implementation of CreateTargetPostRAHazardRecognizer. |
| 717 | ScheduleHazardRecognizer *TargetInstrInfo:: |
| 718 | CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, |
| 719 | const ScheduleDAG *DAG) const { |
| 720 | return (ScheduleHazardRecognizer *) |
| 721 | new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched"); |
| 722 | } |
| 723 | |
| 724 | //===----------------------------------------------------------------------===// |
| 725 | // SelectionDAG latency interface. |
| 726 | //===----------------------------------------------------------------------===// |
| 727 | |
| 728 | int |
| 729 | TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData, |
| 730 | SDNode *DefNode, unsigned DefIdx, |
| 731 | SDNode *UseNode, unsigned UseIdx) const { |
| 732 | if (!ItinData || ItinData->isEmpty()) |
| 733 | return -1; |
| 734 | |
| 735 | if (!DefNode->isMachineOpcode()) |
| 736 | return -1; |
| 737 | |
| 738 | unsigned DefClass = get(DefNode->getMachineOpcode()).getSchedClass(); |
| 739 | if (!UseNode->isMachineOpcode()) |
| 740 | return ItinData->getOperandCycle(DefClass, DefIdx); |
| 741 | unsigned UseClass = get(UseNode->getMachineOpcode()).getSchedClass(); |
| 742 | return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx); |
| 743 | } |
| 744 | |
| 745 | int TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData, |
| 746 | SDNode *N) const { |
| 747 | if (!ItinData || ItinData->isEmpty()) |
| 748 | return 1; |
| 749 | |
| 750 | if (!N->isMachineOpcode()) |
| 751 | return 1; |
| 752 | |
| 753 | return ItinData->getStageLatency(get(N->getMachineOpcode()).getSchedClass()); |
| 754 | } |
| 755 | |
| 756 | //===----------------------------------------------------------------------===// |
| 757 | // MachineInstr latency interface. |
| 758 | //===----------------------------------------------------------------------===// |
| 759 | |
| 760 | unsigned |
| 761 | TargetInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData, |
| 762 | const MachineInstr *MI) const { |
| 763 | if (!ItinData || ItinData->isEmpty()) |
| 764 | return 1; |
| 765 | |
| 766 | unsigned Class = MI->getDesc().getSchedClass(); |
| 767 | int UOps = ItinData->Itineraries[Class].NumMicroOps; |
| 768 | if (UOps >= 0) |
| 769 | return UOps; |
| 770 | |
| 771 | // The # of u-ops is dynamically determined. The specific target should |
| 772 | // override this function to return the right number. |
| 773 | return 1; |
| 774 | } |
| 775 | |
| 776 | /// Return the default expected latency for a def based on it's opcode. |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 777 | unsigned TargetInstrInfo::defaultDefLatency(const MCSchedModel &SchedModel, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 778 | const MachineInstr *DefMI) const { |
| 779 | if (DefMI->isTransient()) |
| 780 | return 0; |
| 781 | if (DefMI->mayLoad()) |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 782 | return SchedModel.LoadLatency; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 783 | if (isHighLatencyDef(DefMI->getOpcode())) |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 784 | return SchedModel.HighLatency; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 785 | return 1; |
| 786 | } |
| 787 | |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 788 | unsigned TargetInstrInfo::getPredicationCost(const MachineInstr *) const { |
| 789 | return 0; |
| 790 | } |
| 791 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 792 | unsigned TargetInstrInfo:: |
| 793 | getInstrLatency(const InstrItineraryData *ItinData, |
| 794 | const MachineInstr *MI, |
| 795 | unsigned *PredCost) const { |
| 796 | // Default to one cycle for no itinerary. However, an "empty" itinerary may |
| 797 | // still have a MinLatency property, which getStageLatency checks. |
| 798 | if (!ItinData) |
| 799 | return MI->mayLoad() ? 2 : 1; |
| 800 | |
| 801 | return ItinData->getStageLatency(MI->getDesc().getSchedClass()); |
| 802 | } |
| 803 | |
| 804 | bool TargetInstrInfo::hasLowDefLatency(const InstrItineraryData *ItinData, |
| 805 | const MachineInstr *DefMI, |
| 806 | unsigned DefIdx) const { |
| 807 | if (!ItinData || ItinData->isEmpty()) |
| 808 | return false; |
| 809 | |
| 810 | unsigned DefClass = DefMI->getDesc().getSchedClass(); |
| 811 | int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx); |
| 812 | return (DefCycle != -1 && DefCycle <= 1); |
| 813 | } |
| 814 | |
| 815 | /// Both DefMI and UseMI must be valid. By default, call directly to the |
| 816 | /// itinerary. This may be overriden by the target. |
| 817 | int TargetInstrInfo:: |
| 818 | getOperandLatency(const InstrItineraryData *ItinData, |
| 819 | const MachineInstr *DefMI, unsigned DefIdx, |
| 820 | const MachineInstr *UseMI, unsigned UseIdx) const { |
| 821 | unsigned DefClass = DefMI->getDesc().getSchedClass(); |
| 822 | unsigned UseClass = UseMI->getDesc().getSchedClass(); |
| 823 | return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx); |
| 824 | } |
| 825 | |
| 826 | /// If we can determine the operand latency from the def only, without itinerary |
| 827 | /// lookup, do so. Otherwise return -1. |
| 828 | int TargetInstrInfo::computeDefOperandLatency( |
| 829 | const InstrItineraryData *ItinData, |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 830 | const MachineInstr *DefMI) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 831 | |
| 832 | // Let the target hook getInstrLatency handle missing itineraries. |
| 833 | if (!ItinData) |
| 834 | return getInstrLatency(ItinData, DefMI); |
| 835 | |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 836 | if(ItinData->isEmpty()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 837 | return defaultDefLatency(ItinData->SchedModel, DefMI); |
| 838 | |
| 839 | // ...operand lookup required |
| 840 | return -1; |
| 841 | } |
| 842 | |
| 843 | /// computeOperandLatency - Compute and return the latency of the given data |
| 844 | /// dependent def and use when the operand indices are already known. UseMI may |
| 845 | /// be NULL for an unknown use. |
| 846 | /// |
| 847 | /// FindMin may be set to get the minimum vs. expected latency. Minimum |
| 848 | /// latency is used for scheduling groups, while expected latency is for |
| 849 | /// instruction cost and critical path. |
| 850 | /// |
| 851 | /// Depending on the subtarget's itinerary properties, this may or may not need |
| 852 | /// to call getOperandLatency(). For most subtargets, we don't need DefIdx or |
| 853 | /// UseIdx to compute min latency. |
| 854 | unsigned TargetInstrInfo:: |
| 855 | computeOperandLatency(const InstrItineraryData *ItinData, |
| 856 | const MachineInstr *DefMI, unsigned DefIdx, |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 857 | const MachineInstr *UseMI, unsigned UseIdx) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 858 | |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 859 | int DefLatency = computeDefOperandLatency(ItinData, DefMI); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 860 | if (DefLatency >= 0) |
| 861 | return DefLatency; |
| 862 | |
| 863 | assert(ItinData && !ItinData->isEmpty() && "computeDefOperandLatency fail"); |
| 864 | |
| 865 | int OperLatency = 0; |
| 866 | if (UseMI) |
| 867 | OperLatency = getOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx); |
| 868 | else { |
| 869 | unsigned DefClass = DefMI->getDesc().getSchedClass(); |
| 870 | OperLatency = ItinData->getOperandCycle(DefClass, DefIdx); |
| 871 | } |
| 872 | if (OperLatency >= 0) |
| 873 | return OperLatency; |
| 874 | |
| 875 | // No operand latency was found. |
| 876 | unsigned InstrLatency = getInstrLatency(ItinData, DefMI); |
| 877 | |
| 878 | // Expected latency is the max of the stage latency and itinerary props. |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 879 | InstrLatency = std::max(InstrLatency, |
| 880 | defaultDefLatency(ItinData->SchedModel, DefMI)); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 881 | return InstrLatency; |
| 882 | } |
Quentin Colombet | d533cdf | 2014-08-11 22:17:14 +0000 | [diff] [blame] | 883 | |
| 884 | bool TargetInstrInfo::getRegSequenceInputs( |
| 885 | const MachineInstr &MI, unsigned DefIdx, |
| 886 | SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const { |
Quentin Colombet | 8427df9 | 2014-08-12 17:11:26 +0000 | [diff] [blame] | 887 | assert((MI.isRegSequence() || |
| 888 | MI.isRegSequenceLike()) && "Instruction do not have the proper type"); |
Quentin Colombet | d533cdf | 2014-08-11 22:17:14 +0000 | [diff] [blame] | 889 | |
| 890 | if (!MI.isRegSequence()) |
| 891 | return getRegSequenceLikeInputs(MI, DefIdx, InputRegs); |
| 892 | |
| 893 | // We are looking at: |
| 894 | // Def = REG_SEQUENCE v0, sub0, v1, sub1, ... |
| 895 | assert(DefIdx == 0 && "REG_SEQUENCE only has one def"); |
| 896 | for (unsigned OpIdx = 1, EndOpIdx = MI.getNumOperands(); OpIdx != EndOpIdx; |
| 897 | OpIdx += 2) { |
| 898 | const MachineOperand &MOReg = MI.getOperand(OpIdx); |
| 899 | const MachineOperand &MOSubIdx = MI.getOperand(OpIdx + 1); |
| 900 | assert(MOSubIdx.isImm() && |
| 901 | "One of the subindex of the reg_sequence is not an immediate"); |
| 902 | // Record Reg:SubReg, SubIdx. |
| 903 | InputRegs.push_back(RegSubRegPairAndIdx(MOReg.getReg(), MOReg.getSubReg(), |
| 904 | (unsigned)MOSubIdx.getImm())); |
| 905 | } |
| 906 | return true; |
| 907 | } |
Quentin Colombet | 7e75cba | 2014-08-20 21:51:26 +0000 | [diff] [blame] | 908 | |
| 909 | bool TargetInstrInfo::getExtractSubregInputs( |
| 910 | const MachineInstr &MI, unsigned DefIdx, |
| 911 | RegSubRegPairAndIdx &InputReg) const { |
| 912 | assert((MI.isExtractSubreg() || |
| 913 | MI.isExtractSubregLike()) && "Instruction do not have the proper type"); |
| 914 | |
| 915 | if (!MI.isExtractSubreg()) |
| 916 | return getExtractSubregLikeInputs(MI, DefIdx, InputReg); |
| 917 | |
| 918 | // We are looking at: |
| 919 | // Def = EXTRACT_SUBREG v0.sub1, sub0. |
| 920 | assert(DefIdx == 0 && "EXTRACT_SUBREG only has one def"); |
| 921 | const MachineOperand &MOReg = MI.getOperand(1); |
| 922 | const MachineOperand &MOSubIdx = MI.getOperand(2); |
| 923 | assert(MOSubIdx.isImm() && |
| 924 | "The subindex of the extract_subreg is not an immediate"); |
| 925 | |
| 926 | InputReg.Reg = MOReg.getReg(); |
| 927 | InputReg.SubReg = MOReg.getSubReg(); |
| 928 | InputReg.SubIdx = (unsigned)MOSubIdx.getImm(); |
| 929 | return true; |
| 930 | } |
Quentin Colombet | 7e3da66 | 2014-08-20 23:49:36 +0000 | [diff] [blame] | 931 | |
| 932 | bool TargetInstrInfo::getInsertSubregInputs( |
| 933 | const MachineInstr &MI, unsigned DefIdx, |
| 934 | RegSubRegPair &BaseReg, RegSubRegPairAndIdx &InsertedReg) const { |
| 935 | assert((MI.isInsertSubreg() || |
| 936 | MI.isInsertSubregLike()) && "Instruction do not have the proper type"); |
| 937 | |
| 938 | if (!MI.isInsertSubreg()) |
| 939 | return getInsertSubregLikeInputs(MI, DefIdx, BaseReg, InsertedReg); |
| 940 | |
| 941 | // We are looking at: |
| 942 | // Def = INSERT_SEQUENCE v0, v1, sub0. |
| 943 | assert(DefIdx == 0 && "INSERT_SUBREG only has one def"); |
| 944 | const MachineOperand &MOBaseReg = MI.getOperand(1); |
| 945 | const MachineOperand &MOInsertedReg = MI.getOperand(2); |
| 946 | const MachineOperand &MOSubIdx = MI.getOperand(3); |
| 947 | assert(MOSubIdx.isImm() && |
| 948 | "One of the subindex of the reg_sequence is not an immediate"); |
| 949 | BaseReg.Reg = MOBaseReg.getReg(); |
| 950 | BaseReg.SubReg = MOBaseReg.getSubReg(); |
| 951 | |
| 952 | InsertedReg.Reg = MOInsertedReg.getReg(); |
| 953 | InsertedReg.SubReg = MOInsertedReg.getSubReg(); |
| 954 | InsertedReg.SubIdx = (unsigned)MOSubIdx.getImm(); |
| 955 | return true; |
| 956 | } |