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" |
Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/TargetSchedule.h" |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 23 | #include "llvm/IR/DataLayout.h" |
Evan Cheng | 49d4c0b | 2010-10-06 06:27:31 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCAsmInfo.h" |
Evan Cheng | 8264e27 | 2011-06-29 01:14:12 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCInstrItineraries.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 26 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 27 | #include "llvm/Support/ErrorHandling.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 28 | #include "llvm/Support/raw_ostream.h" |
Michael Kuperstein | 698ea3b | 2015-01-08 11:59:43 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetFrameLowering.h" |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetLowering.h" |
| 31 | #include "llvm/Target/TargetMachine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetRegisterInfo.h" |
Nick Lewycky | 0de20af | 2010-12-19 20:43:38 +0000 | [diff] [blame] | 33 | #include <cctype> |
Eugene Zelenko | ecefe5a | 2016-02-02 18:20:45 +0000 | [diff] [blame] | 34 | |
Chris Lattner | f6932b7 | 2005-01-19 06:53:34 +0000 | [diff] [blame] | 35 | using namespace llvm; |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 36 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 37 | static cl::opt<bool> DisableHazardRecognizer( |
| 38 | "disable-sched-hazard", cl::Hidden, cl::init(false), |
| 39 | cl::desc("Disable hazard detection during preRA scheduling")); |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 0d5644b | 2003-01-13 00:26:36 +0000 | [diff] [blame] | 41 | TargetInstrInfo::~TargetInstrInfo() { |
Chris Lattner | 910b82f | 2002-10-28 23:55:33 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 44 | const TargetRegisterClass* |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 45 | TargetInstrInfo::getRegClass(const MCInstrDesc &MCID, unsigned OpNum, |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 46 | const TargetRegisterInfo *TRI, |
| 47 | const MachineFunction &MF) const { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 48 | if (OpNum >= MCID.getNumOperands()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 49 | return nullptr; |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 50 | |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 51 | short RegClass = MCID.OpInfo[OpNum].RegClass; |
| 52 | if (MCID.OpInfo[OpNum].isLookupPtrRegClass()) |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 53 | return TRI->getPointerRegClass(MF, RegClass); |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 54 | |
| 55 | // Instructions like INSERT_SUBREG do not have fixed register classes. |
| 56 | if (RegClass < 0) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 57 | return nullptr; |
Evan Cheng | 8d71a75 | 2011-06-27 21:26:13 +0000 | [diff] [blame] | 58 | |
| 59 | // Otherwise just look it up normally. |
| 60 | return TRI->getRegClass(RegClass); |
| 61 | } |
| 62 | |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 63 | /// insertNoop - Insert a noop into the instruction stream at the specified |
| 64 | /// point. |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 65 | void TargetInstrInfo::insertNoop(MachineBasicBlock &MBB, |
Chris Lattner | 0161419 | 2009-08-02 04:58:19 +0000 | [diff] [blame] | 66 | MachineBasicBlock::iterator MI) const { |
| 67 | llvm_unreachable("Target didn't implement insertNoop!"); |
| 68 | } |
| 69 | |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 70 | /// Measure the specified inline asm to determine an approximation of its |
| 71 | /// length. |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 72 | /// Comments (which run till the next SeparatorString or newline) do not |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 73 | /// count as an instruction. |
| 74 | /// Any other non-whitespace text is considered an instruction, with |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 75 | /// multiple instructions separated by SeparatorString or newlines. |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 76 | /// Variable-length instructions are not handled here; this function |
| 77 | /// may be overloaded in the target code to do that. |
| 78 | unsigned TargetInstrInfo::getInlineAsmLength(const char *Str, |
Chris Lattner | e9a75a6 | 2009-08-22 21:43:10 +0000 | [diff] [blame] | 79 | const MCAsmInfo &MAI) const { |
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; |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 82 | unsigned InstCount = 0; |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 83 | for (; *Str; ++Str) { |
Jim Grosbach | a3df87f | 2011-03-24 18:46:34 +0000 | [diff] [blame] | 84 | if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(), |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 85 | strlen(MAI.getSeparatorString())) == 0) { |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 86 | atInsnStart = true; |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 87 | } else if (strncmp(Str, MAI.getCommentString(), |
| 88 | strlen(MAI.getCommentString())) == 0) { |
| 89 | // Stop counting as an instruction after a comment until the next |
| 90 | // separator. |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 91 | atInsnStart = false; |
| 92 | } |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 93 | |
| 94 | if (atInsnStart && !std::isspace(static_cast<unsigned char>(*Str))) { |
| 95 | ++InstCount; |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 96 | atInsnStart = false; |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 97 | } |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 98 | } |
Andrew Trick | c416ba6 | 2010-12-24 04:28:06 +0000 | [diff] [blame] | 99 | |
Matt Arsenault | accddac | 2016-07-01 23:26:50 +0000 | [diff] [blame] | 100 | return InstCount * MAI.getMaxInstLength(); |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 101 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 102 | |
| 103 | /// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything |
| 104 | /// after it, replacing it with an unconditional branch to NewDest. |
| 105 | void |
| 106 | TargetInstrInfo::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, |
| 107 | MachineBasicBlock *NewDest) const { |
| 108 | MachineBasicBlock *MBB = Tail->getParent(); |
| 109 | |
| 110 | // Remove all the old successors of MBB from the CFG. |
| 111 | while (!MBB->succ_empty()) |
| 112 | MBB->removeSuccessor(MBB->succ_begin()); |
| 113 | |
Justin Bogner | ec5ea36 | 2016-03-25 18:38:48 +0000 | [diff] [blame] | 114 | // Save off the debug loc before erasing the instruction. |
| 115 | DebugLoc DL = Tail->getDebugLoc(); |
| 116 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 117 | // Remove all the dead instructions from the end of MBB. |
| 118 | MBB->erase(Tail, MBB->end()); |
| 119 | |
| 120 | // If MBB isn't immediately before MBB, insert a branch to it. |
| 121 | if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest)) |
Justin Bogner | ec5ea36 | 2016-03-25 18:38:48 +0000 | [diff] [blame] | 122 | InsertBranch(*MBB, NewDest, nullptr, SmallVector<MachineOperand, 0>(), DL); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 123 | MBB->addSuccessor(NewDest); |
| 124 | } |
| 125 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 126 | MachineInstr *TargetInstrInfo::commuteInstructionImpl(MachineInstr &MI, |
| 127 | bool NewMI, unsigned Idx1, |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 128 | unsigned Idx2) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 129 | const MCInstrDesc &MCID = MI.getDesc(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 130 | bool HasDef = MCID.getNumDefs(); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 131 | if (HasDef && !MI.getOperand(0).isReg()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 132 | // No idea how to commute this instruction. Target should implement its own. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 133 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 134 | |
Richard Trieu | e778e87 | 2015-09-28 22:54:43 +0000 | [diff] [blame] | 135 | unsigned CommutableOpIdx1 = Idx1; (void)CommutableOpIdx1; |
| 136 | unsigned CommutableOpIdx2 = Idx2; (void)CommutableOpIdx2; |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 137 | assert(findCommutedOpIndices(MI, CommutableOpIdx1, CommutableOpIdx2) && |
| 138 | CommutableOpIdx1 == Idx1 && CommutableOpIdx2 == Idx2 && |
| 139 | "TargetInstrInfo::CommuteInstructionImpl(): not commutable operands."); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 140 | assert(MI.getOperand(Idx1).isReg() && MI.getOperand(Idx2).isReg() && |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 141 | "This only knows how to commute register operands so far"); |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 142 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 143 | unsigned Reg0 = HasDef ? MI.getOperand(0).getReg() : 0; |
| 144 | unsigned Reg1 = MI.getOperand(Idx1).getReg(); |
| 145 | unsigned Reg2 = MI.getOperand(Idx2).getReg(); |
| 146 | unsigned SubReg0 = HasDef ? MI.getOperand(0).getSubReg() : 0; |
| 147 | unsigned SubReg1 = MI.getOperand(Idx1).getSubReg(); |
| 148 | unsigned SubReg2 = MI.getOperand(Idx2).getSubReg(); |
| 149 | bool Reg1IsKill = MI.getOperand(Idx1).isKill(); |
| 150 | bool Reg2IsKill = MI.getOperand(Idx2).isKill(); |
| 151 | bool Reg1IsUndef = MI.getOperand(Idx1).isUndef(); |
| 152 | bool Reg2IsUndef = MI.getOperand(Idx2).isUndef(); |
| 153 | bool Reg1IsInternal = MI.getOperand(Idx1).isInternalRead(); |
| 154 | bool Reg2IsInternal = MI.getOperand(Idx2).isInternalRead(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 155 | // If destination is tied to either of the commuted source register, then |
| 156 | // it must be updated. |
| 157 | if (HasDef && Reg0 == Reg1 && |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 158 | MI.getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 159 | Reg2IsKill = false; |
| 160 | Reg0 = Reg2; |
| 161 | SubReg0 = SubReg2; |
| 162 | } else if (HasDef && Reg0 == Reg2 && |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 163 | MI.getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 164 | Reg1IsKill = false; |
| 165 | Reg0 = Reg1; |
| 166 | SubReg0 = SubReg1; |
| 167 | } |
| 168 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 169 | MachineInstr *CommutedMI = nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 170 | if (NewMI) { |
| 171 | // Create a new instruction. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 172 | MachineFunction &MF = *MI.getParent()->getParent(); |
| 173 | CommutedMI = MF.CloneMachineInstr(&MI); |
| 174 | } else { |
| 175 | CommutedMI = &MI; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | if (HasDef) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 179 | CommutedMI->getOperand(0).setReg(Reg0); |
| 180 | CommutedMI->getOperand(0).setSubReg(SubReg0); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 181 | } |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 182 | CommutedMI->getOperand(Idx2).setReg(Reg1); |
| 183 | CommutedMI->getOperand(Idx1).setReg(Reg2); |
| 184 | CommutedMI->getOperand(Idx2).setSubReg(SubReg1); |
| 185 | CommutedMI->getOperand(Idx1).setSubReg(SubReg2); |
| 186 | CommutedMI->getOperand(Idx2).setIsKill(Reg1IsKill); |
| 187 | CommutedMI->getOperand(Idx1).setIsKill(Reg2IsKill); |
| 188 | CommutedMI->getOperand(Idx2).setIsUndef(Reg1IsUndef); |
| 189 | CommutedMI->getOperand(Idx1).setIsUndef(Reg2IsUndef); |
| 190 | CommutedMI->getOperand(Idx2).setIsInternalRead(Reg1IsInternal); |
| 191 | CommutedMI->getOperand(Idx1).setIsInternalRead(Reg2IsInternal); |
| 192 | return CommutedMI; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 195 | MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr &MI, bool NewMI, |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 196 | unsigned OpIdx1, |
| 197 | unsigned OpIdx2) const { |
| 198 | // If OpIdx1 or OpIdx2 is not specified, then this method is free to choose |
| 199 | // any commutable operand, which is done in findCommutedOpIndices() method |
| 200 | // called below. |
| 201 | if ((OpIdx1 == CommuteAnyOperandIndex || OpIdx2 == CommuteAnyOperandIndex) && |
| 202 | !findCommutedOpIndices(MI, OpIdx1, OpIdx2)) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 203 | assert(MI.isCommutable() && |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 204 | "Precondition violation: MI must be commutable."); |
| 205 | return nullptr; |
| 206 | } |
| 207 | return commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2); |
| 208 | } |
| 209 | |
| 210 | bool TargetInstrInfo::fixCommutedOpIndices(unsigned &ResultIdx1, |
| 211 | unsigned &ResultIdx2, |
| 212 | unsigned CommutableOpIdx1, |
| 213 | unsigned CommutableOpIdx2) { |
| 214 | if (ResultIdx1 == CommuteAnyOperandIndex && |
| 215 | ResultIdx2 == CommuteAnyOperandIndex) { |
| 216 | ResultIdx1 = CommutableOpIdx1; |
| 217 | ResultIdx2 = CommutableOpIdx2; |
| 218 | } else if (ResultIdx1 == CommuteAnyOperandIndex) { |
| 219 | if (ResultIdx2 == CommutableOpIdx1) |
| 220 | ResultIdx1 = CommutableOpIdx2; |
| 221 | else if (ResultIdx2 == CommutableOpIdx2) |
| 222 | ResultIdx1 = CommutableOpIdx1; |
| 223 | else |
| 224 | return false; |
| 225 | } else if (ResultIdx2 == CommuteAnyOperandIndex) { |
| 226 | if (ResultIdx1 == CommutableOpIdx1) |
| 227 | ResultIdx2 = CommutableOpIdx2; |
| 228 | else if (ResultIdx1 == CommutableOpIdx2) |
| 229 | ResultIdx2 = CommutableOpIdx1; |
| 230 | else |
| 231 | return false; |
| 232 | } else |
| 233 | // Check that the result operand indices match the given commutable |
| 234 | // operand indices. |
| 235 | return (ResultIdx1 == CommutableOpIdx1 && ResultIdx2 == CommutableOpIdx2) || |
| 236 | (ResultIdx1 == CommutableOpIdx2 && ResultIdx2 == CommutableOpIdx1); |
| 237 | |
| 238 | return true; |
| 239 | } |
| 240 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 241 | bool TargetInstrInfo::findCommutedOpIndices(MachineInstr &MI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 242 | unsigned &SrcOpIdx1, |
| 243 | unsigned &SrcOpIdx2) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 244 | assert(!MI.isBundle() && |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 245 | "TargetInstrInfo::findCommutedOpIndices() can't handle bundles"); |
| 246 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 247 | const MCInstrDesc &MCID = MI.getDesc(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 248 | if (!MCID.isCommutable()) |
| 249 | return false; |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 250 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 251 | // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this |
| 252 | // is not true, then the target must implement this. |
Andrew Kaylor | 16c4da0 | 2015-09-28 20:33:22 +0000 | [diff] [blame] | 253 | unsigned CommutableOpIdx1 = MCID.getNumDefs(); |
| 254 | unsigned CommutableOpIdx2 = CommutableOpIdx1 + 1; |
| 255 | if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, |
| 256 | CommutableOpIdx1, CommutableOpIdx2)) |
| 257 | return false; |
| 258 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 259 | if (!MI.getOperand(SrcOpIdx1).isReg() || !MI.getOperand(SrcOpIdx2).isReg()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 260 | // No idea. |
| 261 | return false; |
| 262 | return true; |
| 263 | } |
| 264 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 265 | bool TargetInstrInfo::isUnpredicatedTerminator(const MachineInstr &MI) const { |
| 266 | if (!MI.isTerminator()) return false; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 267 | |
| 268 | // Conditional branch is a special case. |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 269 | if (MI.isBranch() && !MI.isBarrier()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 270 | return true; |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 271 | if (!MI.isPredicable()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 272 | return true; |
| 273 | return !isPredicated(MI); |
| 274 | } |
| 275 | |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 276 | bool TargetInstrInfo::PredicateInstruction( |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 277 | MachineInstr &MI, ArrayRef<MachineOperand> Pred) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 278 | bool MadeChange = false; |
| 279 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 280 | assert(!MI.isBundle() && |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 281 | "TargetInstrInfo::PredicateInstruction() can't handle bundles"); |
| 282 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 283 | const MCInstrDesc &MCID = MI.getDesc(); |
| 284 | if (!MI.isPredicable()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 285 | return false; |
| 286 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 287 | for (unsigned j = 0, i = 0, e = MI.getNumOperands(); i != e; ++i) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 288 | if (MCID.OpInfo[i].isPredicate()) { |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 289 | MachineOperand &MO = MI.getOperand(i); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 290 | if (MO.isReg()) { |
| 291 | MO.setReg(Pred[j].getReg()); |
| 292 | MadeChange = true; |
| 293 | } else if (MO.isImm()) { |
| 294 | MO.setImm(Pred[j].getImm()); |
| 295 | MadeChange = true; |
| 296 | } else if (MO.isMBB()) { |
| 297 | MO.setMBB(Pred[j].getMBB()); |
| 298 | MadeChange = true; |
| 299 | } |
| 300 | ++j; |
| 301 | } |
| 302 | } |
| 303 | return MadeChange; |
| 304 | } |
| 305 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 306 | bool TargetInstrInfo::hasLoadFromStackSlot(const MachineInstr &MI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 307 | const MachineMemOperand *&MMO, |
| 308 | int &FrameIndex) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 309 | for (MachineInstr::mmo_iterator o = MI.memoperands_begin(), |
| 310 | oe = MI.memoperands_end(); |
| 311 | o != oe; ++o) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 312 | if ((*o)->isLoad()) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 313 | if (const FixedStackPseudoSourceValue *Value = |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 314 | dyn_cast_or_null<FixedStackPseudoSourceValue>( |
| 315 | (*o)->getPseudoValue())) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 316 | FrameIndex = Value->getFrameIndex(); |
| 317 | MMO = *o; |
| 318 | return true; |
| 319 | } |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 320 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 321 | } |
| 322 | return false; |
| 323 | } |
| 324 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 325 | bool TargetInstrInfo::hasStoreToStackSlot(const MachineInstr &MI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 326 | const MachineMemOperand *&MMO, |
| 327 | int &FrameIndex) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 328 | for (MachineInstr::mmo_iterator o = MI.memoperands_begin(), |
| 329 | oe = MI.memoperands_end(); |
| 330 | o != oe; ++o) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 331 | if ((*o)->isStore()) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 332 | if (const FixedStackPseudoSourceValue *Value = |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 333 | dyn_cast_or_null<FixedStackPseudoSourceValue>( |
| 334 | (*o)->getPseudoValue())) { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 335 | FrameIndex = Value->getFrameIndex(); |
| 336 | MMO = *o; |
| 337 | return true; |
| 338 | } |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 339 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 340 | } |
| 341 | return false; |
| 342 | } |
| 343 | |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 344 | bool TargetInstrInfo::getStackSlotRange(const TargetRegisterClass *RC, |
| 345 | unsigned SubIdx, unsigned &Size, |
| 346 | unsigned &Offset, |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 347 | const MachineFunction &MF) const { |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 348 | if (!SubIdx) { |
| 349 | Size = RC->getSize(); |
| 350 | Offset = 0; |
| 351 | return true; |
| 352 | } |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 353 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
| 354 | unsigned BitSize = TRI->getSubRegIdxSize(SubIdx); |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 355 | // Convert bit size to byte size to be consistent with |
| 356 | // MCRegisterClass::getSize(). |
| 357 | if (BitSize % 8) |
| 358 | return false; |
| 359 | |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 360 | int BitOffset = TRI->getSubRegIdxOffset(SubIdx); |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 361 | if (BitOffset < 0 || BitOffset % 8) |
| 362 | return false; |
| 363 | |
| 364 | Size = BitSize /= 8; |
| 365 | Offset = (unsigned)BitOffset / 8; |
| 366 | |
| 367 | assert(RC->getSize() >= (Offset + Size) && "bad subregister range"); |
| 368 | |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 369 | if (!MF.getDataLayout().isLittleEndian()) { |
Andrew Trick | 10d5be4 | 2013-11-17 01:36:23 +0000 | [diff] [blame] | 370 | Offset = RC->getSize() - (Offset + Size); |
| 371 | } |
| 372 | return true; |
| 373 | } |
| 374 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 375 | void TargetInstrInfo::reMaterialize(MachineBasicBlock &MBB, |
| 376 | MachineBasicBlock::iterator I, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 377 | unsigned DestReg, unsigned SubIdx, |
| 378 | const MachineInstr &Orig, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 379 | const TargetRegisterInfo &TRI) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 380 | MachineInstr *MI = MBB.getParent()->CloneMachineInstr(&Orig); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 381 | MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI); |
| 382 | MBB.insert(I, MI); |
| 383 | } |
| 384 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 385 | bool TargetInstrInfo::produceSameValue(const MachineInstr &MI0, |
| 386 | const MachineInstr &MI1, |
| 387 | const MachineRegisterInfo *MRI) const { |
| 388 | return MI0.isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 391 | MachineInstr *TargetInstrInfo::duplicate(MachineInstr &Orig, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 392 | MachineFunction &MF) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 393 | assert(!Orig.isNotDuplicable() && "Instruction cannot be duplicated"); |
| 394 | return MF.CloneMachineInstr(&Orig); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | // If the COPY instruction in MI can be folded to a stack operation, return |
| 398 | // the register class to use. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 399 | static const TargetRegisterClass *canFoldCopy(const MachineInstr &MI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 400 | unsigned FoldIdx) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 401 | assert(MI.isCopy() && "MI must be a COPY instruction"); |
| 402 | if (MI.getNumOperands() != 2) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 403 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 404 | assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand"); |
| 405 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 406 | const MachineOperand &FoldOp = MI.getOperand(FoldIdx); |
| 407 | const MachineOperand &LiveOp = MI.getOperand(1 - FoldIdx); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 408 | |
| 409 | if (FoldOp.getSubReg() || LiveOp.getSubReg()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 410 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 411 | |
| 412 | unsigned FoldReg = FoldOp.getReg(); |
| 413 | unsigned LiveReg = LiveOp.getReg(); |
| 414 | |
| 415 | assert(TargetRegisterInfo::isVirtualRegister(FoldReg) && |
| 416 | "Cannot fold physregs"); |
| 417 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 418 | const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 419 | const TargetRegisterClass *RC = MRI.getRegClass(FoldReg); |
| 420 | |
| 421 | if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg())) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 422 | return RC->contains(LiveOp.getReg()) ? RC : nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 423 | |
| 424 | if (RC->hasSubClassEq(MRI.getRegClass(LiveReg))) |
| 425 | return RC; |
| 426 | |
| 427 | // FIXME: Allow folding when register classes are memory compatible. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 428 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 429 | } |
| 430 | |
Rafael Espindola | 6865d6f | 2014-09-15 18:32:58 +0000 | [diff] [blame] | 431 | void TargetInstrInfo::getNoopForMachoTarget(MCInst &NopInst) const { |
| 432 | llvm_unreachable("Not a MachO target"); |
| 433 | } |
| 434 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 435 | static MachineInstr *foldPatchpoint(MachineFunction &MF, MachineInstr &MI, |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 436 | ArrayRef<unsigned> Ops, int FrameIndex, |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 437 | const TargetInstrInfo &TII) { |
| 438 | unsigned StartIdx = 0; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 439 | switch (MI.getOpcode()) { |
Philip Reames | 570dd00 | 2016-08-23 21:21:43 +0000 | [diff] [blame] | 440 | case TargetOpcode::STACKMAP: { |
| 441 | // StackMapLiveValues are foldable |
Sanjoy Das | 6d3c913 | 2016-08-30 01:38:59 +0000 | [diff] [blame] | 442 | StartIdx = StackMapOpers(&MI).getVarIdx(); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 443 | break; |
Philip Reames | 570dd00 | 2016-08-23 21:21:43 +0000 | [diff] [blame] | 444 | } |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 445 | case TargetOpcode::PATCHPOINT: { |
Philip Reames | 570dd00 | 2016-08-23 21:21:43 +0000 | [diff] [blame] | 446 | // For PatchPoint, the call args are not foldable (even if reported in the |
| 447 | // stackmap e.g. via anyregcc). |
Sanjoy Das | 6d3c913 | 2016-08-30 01:38:59 +0000 | [diff] [blame] | 448 | StartIdx = PatchPointOpers(&MI).getVarIdx(); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 449 | break; |
| 450 | } |
| 451 | default: |
| 452 | llvm_unreachable("unexpected stackmap opcode"); |
| 453 | } |
| 454 | |
| 455 | // Return false if any operands requested for folding are not foldable (not |
| 456 | // part of the stackmap's live values). |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 457 | for (unsigned Op : Ops) { |
| 458 | if (Op < StartIdx) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 459 | return nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | MachineInstr *NewMI = |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 463 | MF.CreateMachineInstr(TII.get(MI.getOpcode()), MI.getDebugLoc(), true); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 464 | MachineInstrBuilder MIB(MF, NewMI); |
| 465 | |
| 466 | // No need to fold return, the meta data, and function arguments |
| 467 | for (unsigned i = 0; i < StartIdx; ++i) |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 468 | MIB.addOperand(MI.getOperand(i)); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 469 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 470 | for (unsigned i = StartIdx; i < MI.getNumOperands(); ++i) { |
| 471 | MachineOperand &MO = MI.getOperand(i); |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 472 | if (is_contained(Ops, i)) { |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 473 | unsigned SpillSize; |
| 474 | unsigned SpillOffset; |
| 475 | // Compute the spill slot size and offset. |
| 476 | const TargetRegisterClass *RC = |
| 477 | MF.getRegInfo().getRegClass(MO.getReg()); |
Eric Christopher | 7585fb2 | 2015-03-19 23:06:21 +0000 | [diff] [blame] | 478 | bool Valid = |
| 479 | TII.getStackSlotRange(RC, MO.getSubReg(), SpillSize, SpillOffset, MF); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 480 | if (!Valid) |
| 481 | report_fatal_error("cannot spill patchpoint subregister operand"); |
| 482 | MIB.addImm(StackMaps::IndirectMemRefOp); |
| 483 | MIB.addImm(SpillSize); |
| 484 | MIB.addFrameIndex(FrameIndex); |
Lang Hames | 2ce64a7 | 2013-12-07 03:30:59 +0000 | [diff] [blame] | 485 | MIB.addImm(SpillOffset); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 486 | } |
| 487 | else |
| 488 | MIB.addOperand(MO); |
| 489 | } |
| 490 | return NewMI; |
| 491 | } |
| 492 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 493 | /// foldMemoryOperand - Attempt to fold a load or store of the specified stack |
| 494 | /// slot into the specified machine instruction for the specified operand(s). |
| 495 | /// If this is possible, a new instruction is returned with the specified |
| 496 | /// operand folded, otherwise NULL is returned. The client is responsible for |
| 497 | /// removing the old instruction and adding the new one in the instruction |
| 498 | /// stream. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 499 | MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI, |
| 500 | ArrayRef<unsigned> Ops, int FI, |
Jonas Paulsson | 8e5b0c6 | 2016-05-10 08:09:37 +0000 | [diff] [blame] | 501 | LiveIntervals *LIS) const { |
Justin Lebar | 0af80cd | 2016-07-15 18:26:59 +0000 | [diff] [blame] | 502 | auto Flags = MachineMemOperand::MONone; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 503 | for (unsigned i = 0, e = Ops.size(); i != e; ++i) |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 504 | if (MI.getOperand(Ops[i]).isDef()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 505 | Flags |= MachineMemOperand::MOStore; |
| 506 | else |
| 507 | Flags |= MachineMemOperand::MOLoad; |
| 508 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 509 | MachineBasicBlock *MBB = MI.getParent(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 510 | assert(MBB && "foldMemoryOperand needs an inserted instruction"); |
| 511 | MachineFunction &MF = *MBB->getParent(); |
| 512 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 513 | MachineInstr *NewMI = nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 514 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 515 | if (MI.getOpcode() == TargetOpcode::STACKMAP || |
| 516 | MI.getOpcode() == TargetOpcode::PATCHPOINT) { |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 517 | // Fold stackmap/patchpoint. |
| 518 | NewMI = foldPatchpoint(MF, MI, Ops, FI, *this); |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 519 | if (NewMI) |
| 520 | MBB->insert(MI, NewMI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 521 | } else { |
| 522 | // Ask the target to do the actual folding. |
Jonas Paulsson | 8e5b0c6 | 2016-05-10 08:09:37 +0000 | [diff] [blame] | 523 | NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, FI, LIS); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 524 | } |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 525 | |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 526 | if (NewMI) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 527 | NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end()); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 528 | // Add a memory operand, foldMemoryOperandImpl doesn't do that. |
| 529 | assert((!(Flags & MachineMemOperand::MOStore) || |
| 530 | NewMI->mayStore()) && |
| 531 | "Folded a def to a non-store!"); |
| 532 | assert((!(Flags & MachineMemOperand::MOLoad) || |
| 533 | NewMI->mayLoad()) && |
| 534 | "Folded a use to a non-load!"); |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 535 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 536 | assert(MFI.getObjectOffset(FI) != -1); |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 537 | MachineMemOperand *MMO = MF.getMachineMemOperand( |
| 538 | MachinePointerInfo::getFixedStack(MF, FI), Flags, MFI.getObjectSize(FI), |
| 539 | MFI.getObjectAlignment(FI)); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 540 | NewMI->addMemOperand(MF, MMO); |
| 541 | |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 542 | return NewMI; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | // Straight COPY may fold as load/store. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 546 | if (!MI.isCopy() || Ops.size() != 1) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 547 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 548 | |
| 549 | const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]); |
| 550 | if (!RC) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 551 | return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 552 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 553 | const MachineOperand &MO = MI.getOperand(1 - Ops[0]); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 554 | MachineBasicBlock::iterator Pos = MI; |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 555 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 556 | |
| 557 | if (Flags == MachineMemOperand::MOStore) |
| 558 | storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI); |
| 559 | else |
| 560 | loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI); |
Duncan P. N. Exon Smith | aae6f3c | 2016-07-01 16:38:28 +0000 | [diff] [blame] | 561 | return &*--Pos; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 564 | bool TargetInstrInfo::hasReassociableOperands( |
| 565 | const MachineInstr &Inst, const MachineBasicBlock *MBB) const { |
| 566 | const MachineOperand &Op1 = Inst.getOperand(1); |
| 567 | const MachineOperand &Op2 = Inst.getOperand(2); |
| 568 | const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); |
| 569 | |
| 570 | // We need virtual register definitions for the operands that we will |
| 571 | // reassociate. |
| 572 | MachineInstr *MI1 = nullptr; |
| 573 | MachineInstr *MI2 = nullptr; |
| 574 | if (Op1.isReg() && TargetRegisterInfo::isVirtualRegister(Op1.getReg())) |
| 575 | MI1 = MRI.getUniqueVRegDef(Op1.getReg()); |
| 576 | if (Op2.isReg() && TargetRegisterInfo::isVirtualRegister(Op2.getReg())) |
| 577 | MI2 = MRI.getUniqueVRegDef(Op2.getReg()); |
| 578 | |
| 579 | // And they need to be in the trace (otherwise, they won't have a depth). |
Rafael Espindola | 84921b9 | 2015-10-24 23:11:13 +0000 | [diff] [blame] | 580 | return MI1 && MI2 && MI1->getParent() == MBB && MI2->getParent() == MBB; |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | bool TargetInstrInfo::hasReassociableSibling(const MachineInstr &Inst, |
| 584 | bool &Commuted) const { |
| 585 | const MachineBasicBlock *MBB = Inst.getParent(); |
| 586 | const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); |
| 587 | MachineInstr *MI1 = MRI.getUniqueVRegDef(Inst.getOperand(1).getReg()); |
| 588 | MachineInstr *MI2 = MRI.getUniqueVRegDef(Inst.getOperand(2).getReg()); |
| 589 | unsigned AssocOpcode = Inst.getOpcode(); |
| 590 | |
| 591 | // If only one operand has the same opcode and it's the second source operand, |
| 592 | // the operands must be commuted. |
| 593 | Commuted = MI1->getOpcode() != AssocOpcode && MI2->getOpcode() == AssocOpcode; |
| 594 | if (Commuted) |
| 595 | std::swap(MI1, MI2); |
| 596 | |
| 597 | // 1. The previous instruction must be the same type as Inst. |
| 598 | // 2. The previous instruction must have virtual register definitions for its |
| 599 | // operands in the same basic block as Inst. |
| 600 | // 3. The previous instruction's result must only be used by Inst. |
Rafael Espindola | 84921b9 | 2015-10-24 23:11:13 +0000 | [diff] [blame] | 601 | return MI1->getOpcode() == AssocOpcode && |
| 602 | hasReassociableOperands(*MI1, MBB) && |
| 603 | MRI.hasOneNonDBGUse(MI1->getOperand(0).getReg()); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | // 1. The operation must be associative and commutative. |
| 607 | // 2. The instruction must have virtual register definitions for its |
| 608 | // operands in the same basic block. |
| 609 | // 3. The instruction must have a reassociable sibling. |
| 610 | bool TargetInstrInfo::isReassociationCandidate(const MachineInstr &Inst, |
| 611 | bool &Commuted) const { |
Rafael Espindola | 84921b9 | 2015-10-24 23:11:13 +0000 | [diff] [blame] | 612 | return isAssociativeAndCommutative(Inst) && |
| 613 | hasReassociableOperands(Inst, Inst.getParent()) && |
| 614 | hasReassociableSibling(Inst, Commuted); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | // The concept of the reassociation pass is that these operations can benefit |
| 618 | // from this kind of transformation: |
| 619 | // |
| 620 | // A = ? op ? |
| 621 | // B = A op X (Prev) |
| 622 | // C = B op Y (Root) |
| 623 | // --> |
| 624 | // A = ? op ? |
| 625 | // B = X op Y |
| 626 | // C = A op B |
| 627 | // |
| 628 | // breaking the dependency between A and B, allowing them to be executed in |
| 629 | // parallel (or back-to-back in a pipeline) instead of depending on each other. |
| 630 | |
| 631 | // FIXME: This has the potential to be expensive (compile time) while not |
| 632 | // improving the code at all. Some ways to limit the overhead: |
| 633 | // 1. Track successful transforms; bail out if hit rate gets too low. |
| 634 | // 2. Only enable at -O3 or some other non-default optimization level. |
| 635 | // 3. Pre-screen pattern candidates here: if an operand of the previous |
| 636 | // instruction is known to not increase the critical path, then don't match |
| 637 | // that pattern. |
| 638 | bool TargetInstrInfo::getMachineCombinerPatterns( |
| 639 | MachineInstr &Root, |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 640 | SmallVectorImpl<MachineCombinerPattern> &Patterns) const { |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 641 | bool Commute; |
| 642 | if (isReassociationCandidate(Root, Commute)) { |
| 643 | // We found a sequence of instructions that may be suitable for a |
| 644 | // reassociation of operands to increase ILP. Specify each commutation |
| 645 | // possibility for the Prev instruction in the sequence and let the |
| 646 | // machine combiner decide if changing the operands is worthwhile. |
| 647 | if (Commute) { |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 648 | Patterns.push_back(MachineCombinerPattern::REASSOC_AX_YB); |
| 649 | Patterns.push_back(MachineCombinerPattern::REASSOC_XA_YB); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 650 | } else { |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 651 | Patterns.push_back(MachineCombinerPattern::REASSOC_AX_BY); |
| 652 | Patterns.push_back(MachineCombinerPattern::REASSOC_XA_BY); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 653 | } |
| 654 | return true; |
| 655 | } |
| 656 | |
| 657 | return false; |
| 658 | } |
Gerolf Hoflehner | 01b3a618 | 2016-04-24 05:14:01 +0000 | [diff] [blame] | 659 | /// Return true when a code sequence can improve loop throughput. |
| 660 | bool |
| 661 | TargetInstrInfo::isThroughputPattern(MachineCombinerPattern Pattern) const { |
| 662 | return false; |
| 663 | } |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 664 | /// Attempt the reassociation transformation to reduce critical path length. |
| 665 | /// See the above comments before getMachineCombinerPatterns(). |
| 666 | void TargetInstrInfo::reassociateOps( |
| 667 | MachineInstr &Root, MachineInstr &Prev, |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 668 | MachineCombinerPattern Pattern, |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 669 | SmallVectorImpl<MachineInstr *> &InsInstrs, |
| 670 | SmallVectorImpl<MachineInstr *> &DelInstrs, |
| 671 | DenseMap<unsigned, unsigned> &InstrIdxForVirtReg) const { |
| 672 | MachineFunction *MF = Root.getParent()->getParent(); |
| 673 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 674 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
| 675 | const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); |
| 676 | const TargetRegisterClass *RC = Root.getRegClassConstraint(0, TII, TRI); |
| 677 | |
| 678 | // This array encodes the operand index for each parameter because the |
| 679 | // operands may be commuted. Each row corresponds to a pattern value, |
| 680 | // and each column specifies the index of A, B, X, Y. |
| 681 | unsigned OpIdx[4][4] = { |
| 682 | { 1, 1, 2, 2 }, |
| 683 | { 1, 2, 2, 1 }, |
| 684 | { 2, 1, 1, 2 }, |
| 685 | { 2, 2, 1, 1 } |
| 686 | }; |
| 687 | |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 688 | int Row; |
| 689 | switch (Pattern) { |
| 690 | case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break; |
| 691 | case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break; |
| 692 | case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break; |
| 693 | case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break; |
| 694 | default: llvm_unreachable("unexpected MachineCombinerPattern"); |
| 695 | } |
| 696 | |
| 697 | MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]); |
| 698 | MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]); |
| 699 | MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]); |
| 700 | MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 701 | MachineOperand &OpC = Root.getOperand(0); |
| 702 | |
| 703 | unsigned RegA = OpA.getReg(); |
| 704 | unsigned RegB = OpB.getReg(); |
| 705 | unsigned RegX = OpX.getReg(); |
| 706 | unsigned RegY = OpY.getReg(); |
| 707 | unsigned RegC = OpC.getReg(); |
| 708 | |
| 709 | if (TargetRegisterInfo::isVirtualRegister(RegA)) |
| 710 | MRI.constrainRegClass(RegA, RC); |
| 711 | if (TargetRegisterInfo::isVirtualRegister(RegB)) |
| 712 | MRI.constrainRegClass(RegB, RC); |
| 713 | if (TargetRegisterInfo::isVirtualRegister(RegX)) |
| 714 | MRI.constrainRegClass(RegX, RC); |
| 715 | if (TargetRegisterInfo::isVirtualRegister(RegY)) |
| 716 | MRI.constrainRegClass(RegY, RC); |
| 717 | if (TargetRegisterInfo::isVirtualRegister(RegC)) |
| 718 | MRI.constrainRegClass(RegC, RC); |
| 719 | |
| 720 | // Create a new virtual register for the result of (X op Y) instead of |
| 721 | // recycling RegB because the MachineCombiner's computation of the critical |
| 722 | // path requires a new register definition rather than an existing one. |
| 723 | unsigned NewVR = MRI.createVirtualRegister(RC); |
| 724 | InstrIdxForVirtReg.insert(std::make_pair(NewVR, 0)); |
| 725 | |
| 726 | unsigned Opcode = Root.getOpcode(); |
| 727 | bool KillA = OpA.isKill(); |
| 728 | bool KillX = OpX.isKill(); |
| 729 | bool KillY = OpY.isKill(); |
| 730 | |
| 731 | // Create new instructions for insertion. |
| 732 | MachineInstrBuilder MIB1 = |
| 733 | BuildMI(*MF, Prev.getDebugLoc(), TII->get(Opcode), NewVR) |
| 734 | .addReg(RegX, getKillRegState(KillX)) |
| 735 | .addReg(RegY, getKillRegState(KillY)); |
| 736 | MachineInstrBuilder MIB2 = |
| 737 | BuildMI(*MF, Root.getDebugLoc(), TII->get(Opcode), RegC) |
| 738 | .addReg(RegA, getKillRegState(KillA)) |
| 739 | .addReg(NewVR, getKillRegState(true)); |
| 740 | |
| 741 | setSpecialOperandAttr(Root, Prev, *MIB1, *MIB2); |
| 742 | |
| 743 | // Record new instructions for insertion and old instructions for deletion. |
| 744 | InsInstrs.push_back(MIB1); |
| 745 | InsInstrs.push_back(MIB2); |
| 746 | DelInstrs.push_back(&Prev); |
| 747 | DelInstrs.push_back(&Root); |
| 748 | } |
| 749 | |
| 750 | void TargetInstrInfo::genAlternativeCodeSequence( |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 751 | MachineInstr &Root, MachineCombinerPattern Pattern, |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 752 | SmallVectorImpl<MachineInstr *> &InsInstrs, |
| 753 | SmallVectorImpl<MachineInstr *> &DelInstrs, |
| 754 | DenseMap<unsigned, unsigned> &InstIdxForVirtReg) const { |
| 755 | MachineRegisterInfo &MRI = Root.getParent()->getParent()->getRegInfo(); |
| 756 | |
| 757 | // Select the previous instruction in the sequence based on the input pattern. |
| 758 | MachineInstr *Prev = nullptr; |
| 759 | switch (Pattern) { |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 760 | case MachineCombinerPattern::REASSOC_AX_BY: |
| 761 | case MachineCombinerPattern::REASSOC_XA_BY: |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 762 | Prev = MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); |
| 763 | break; |
Sanjay Patel | 387e66e | 2015-11-05 19:34:57 +0000 | [diff] [blame] | 764 | case MachineCombinerPattern::REASSOC_AX_YB: |
| 765 | case MachineCombinerPattern::REASSOC_XA_YB: |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 766 | Prev = MRI.getUniqueVRegDef(Root.getOperand(2).getReg()); |
| 767 | break; |
| 768 | default: |
| 769 | break; |
| 770 | } |
| 771 | |
| 772 | assert(Prev && "Unknown pattern for machine combiner"); |
| 773 | |
| 774 | reassociateOps(Root, *Prev, Pattern, InsInstrs, DelInstrs, InstIdxForVirtReg); |
Chad Rosier | 03a4730 | 2015-09-21 15:09:11 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 777 | /// foldMemoryOperand - Same as the previous version except it allows folding |
| 778 | /// of any load and store from / to any address, not just from a specific |
| 779 | /// stack slot. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 780 | MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI, |
Benjamin Kramer | f1362f6 | 2015-02-28 12:04:00 +0000 | [diff] [blame] | 781 | ArrayRef<unsigned> Ops, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 782 | MachineInstr &LoadMI, |
Jonas Paulsson | 8e5b0c6 | 2016-05-10 08:09:37 +0000 | [diff] [blame] | 783 | LiveIntervals *LIS) const { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 784 | assert(LoadMI.canFoldAsLoad() && "LoadMI isn't foldable!"); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 785 | #ifndef NDEBUG |
| 786 | for (unsigned i = 0, e = Ops.size(); i != e; ++i) |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 787 | assert(MI.getOperand(Ops[i]).isUse() && "Folding load into def!"); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 788 | #endif |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 789 | MachineBasicBlock &MBB = *MI.getParent(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 790 | MachineFunction &MF = *MBB.getParent(); |
| 791 | |
| 792 | // Ask the target to do the actual folding. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 793 | MachineInstr *NewMI = nullptr; |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 794 | int FrameIndex = 0; |
| 795 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 796 | if ((MI.getOpcode() == TargetOpcode::STACKMAP || |
| 797 | MI.getOpcode() == TargetOpcode::PATCHPOINT) && |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 798 | isLoadFromStackSlot(LoadMI, FrameIndex)) { |
| 799 | // Fold stackmap/patchpoint. |
| 800 | NewMI = foldPatchpoint(MF, MI, Ops, FrameIndex, *this); |
Keno Fischer | e70b31f | 2015-06-08 20:09:58 +0000 | [diff] [blame] | 801 | if (NewMI) |
Duncan P. N. Exon Smith | aae6f3c | 2016-07-01 16:38:28 +0000 | [diff] [blame] | 802 | NewMI = &*MBB.insert(MI, NewMI); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 803 | } else { |
| 804 | // Ask the target to do the actual folding. |
Jonas Paulsson | 8e5b0c6 | 2016-05-10 08:09:37 +0000 | [diff] [blame] | 805 | NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, LoadMI, LIS); |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 806 | } |
Lang Hames | 3960999 | 2013-11-29 03:07:54 +0000 | [diff] [blame] | 807 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 808 | if (!NewMI) return nullptr; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 809 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 810 | // Copy the memoperands from the load to the folded instruction. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 811 | if (MI.memoperands_empty()) { |
| 812 | NewMI->setMemRefs(LoadMI.memoperands_begin(), LoadMI.memoperands_end()); |
Andrew Trick | a9f4d92 | 2013-11-14 23:45:04 +0000 | [diff] [blame] | 813 | } |
| 814 | else { |
| 815 | // Handle the rare case of folding multiple loads. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 816 | NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end()); |
| 817 | for (MachineInstr::mmo_iterator I = LoadMI.memoperands_begin(), |
| 818 | E = LoadMI.memoperands_end(); |
| 819 | I != E; ++I) { |
Andrew Trick | a9f4d92 | 2013-11-14 23:45:04 +0000 | [diff] [blame] | 820 | NewMI->addMemOperand(MF, *I); |
| 821 | } |
| 822 | } |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 823 | return NewMI; |
| 824 | } |
| 825 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 826 | bool TargetInstrInfo::isReallyTriviallyReMaterializableGeneric( |
| 827 | const MachineInstr &MI, AliasAnalysis *AA) const { |
| 828 | const MachineFunction &MF = *MI.getParent()->getParent(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 829 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 830 | |
| 831 | // Remat clients assume operand 0 is the defined register. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 832 | if (!MI.getNumOperands() || !MI.getOperand(0).isReg()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 833 | return false; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 834 | unsigned DefReg = MI.getOperand(0).getReg(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 835 | |
| 836 | // A sub-register definition can only be rematerialized if the instruction |
| 837 | // doesn't read the other parts of the register. Otherwise it is really a |
| 838 | // read-modify-write operation on the full virtual register which cannot be |
| 839 | // moved safely. |
| 840 | if (TargetRegisterInfo::isVirtualRegister(DefReg) && |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 841 | MI.getOperand(0).getSubReg() && MI.readsVirtualRegister(DefReg)) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 842 | return false; |
| 843 | |
| 844 | // A load from a fixed stack slot can be rematerialized. This may be |
| 845 | // redundant with subsequent checks, but it's target-independent, |
| 846 | // simple, and a common case. |
| 847 | int FrameIdx = 0; |
Eric Christopher | 9d91679 | 2014-07-23 22:12:03 +0000 | [diff] [blame] | 848 | if (isLoadFromStackSlot(MI, FrameIdx) && |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 849 | MF.getFrameInfo().isImmutableObjectIndex(FrameIdx)) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 850 | return true; |
| 851 | |
| 852 | // Avoid instructions obviously unsafe for remat. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 853 | if (MI.isNotDuplicable() || MI.mayStore() || MI.hasUnmodeledSideEffects()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 854 | return false; |
| 855 | |
| 856 | // Don't remat inline asm. We have no idea how expensive it is |
| 857 | // even if it's side effect free. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 858 | if (MI.isInlineAsm()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 859 | return false; |
| 860 | |
| 861 | // Avoid instructions which load from potentially varying memory. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 862 | if (MI.mayLoad() && !MI.isInvariantLoad(AA)) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 863 | return false; |
| 864 | |
| 865 | // If any of the registers accessed are non-constant, conservatively assume |
| 866 | // the instruction is not rematerializable. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 867 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 868 | const MachineOperand &MO = MI.getOperand(i); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 869 | if (!MO.isReg()) continue; |
| 870 | unsigned Reg = MO.getReg(); |
| 871 | if (Reg == 0) |
| 872 | continue; |
| 873 | |
| 874 | // Check for a well-behaved physical register. |
| 875 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 876 | if (MO.isUse()) { |
| 877 | // If the physreg has no defs anywhere, it's just an ambient register |
| 878 | // and we can freely move its uses. Alternatively, if it's allocatable, |
| 879 | // it could get allocated to something with a def during allocation. |
| 880 | if (!MRI.isConstantPhysReg(Reg, MF)) |
| 881 | return false; |
| 882 | } else { |
| 883 | // A physreg def. We can't remat it. |
| 884 | return false; |
| 885 | } |
| 886 | continue; |
| 887 | } |
| 888 | |
| 889 | // Only allow one virtual-register def. There may be multiple defs of the |
| 890 | // same virtual register, though. |
| 891 | if (MO.isDef() && Reg != DefReg) |
| 892 | return false; |
| 893 | |
| 894 | // Don't allow any virtual-register uses. Rematting an instruction with |
| 895 | // virtual register uses would length the live ranges of the uses, which |
| 896 | // is not necessarily a good idea, certainly not "trivial". |
| 897 | if (MO.isUse()) |
| 898 | return false; |
| 899 | } |
| 900 | |
| 901 | // Everything checked out. |
| 902 | return true; |
| 903 | } |
| 904 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 905 | int TargetInstrInfo::getSPAdjust(const MachineInstr &MI) const { |
| 906 | const MachineFunction *MF = MI.getParent()->getParent(); |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 907 | const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering(); |
| 908 | bool StackGrowsDown = |
| 909 | TFI->getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown; |
| 910 | |
Matthias Braun | fa3872e | 2015-05-18 20:27:55 +0000 | [diff] [blame] | 911 | unsigned FrameSetupOpcode = getCallFrameSetupOpcode(); |
| 912 | unsigned FrameDestroyOpcode = getCallFrameDestroyOpcode(); |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 913 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 914 | if (MI.getOpcode() != FrameSetupOpcode && |
| 915 | MI.getOpcode() != FrameDestroyOpcode) |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 916 | return 0; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 917 | |
| 918 | int SPAdj = MI.getOperand(0).getImm(); |
Guozhi Wei | f66d384 | 2015-08-17 22:36:27 +0000 | [diff] [blame] | 919 | SPAdj = TFI->alignSPAdjust(SPAdj); |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 920 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 921 | if ((!StackGrowsDown && MI.getOpcode() == FrameSetupOpcode) || |
| 922 | (StackGrowsDown && MI.getOpcode() == FrameDestroyOpcode)) |
Michael Kuperstein | 8c65e31 | 2015-01-08 11:04:38 +0000 | [diff] [blame] | 923 | SPAdj = -SPAdj; |
| 924 | |
| 925 | return SPAdj; |
| 926 | } |
| 927 | |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 928 | /// isSchedulingBoundary - Test if the given instruction should be |
| 929 | /// considered a scheduling boundary. This primarily includes labels |
| 930 | /// and terminators. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 931 | bool TargetInstrInfo::isSchedulingBoundary(const MachineInstr &MI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 932 | const MachineBasicBlock *MBB, |
| 933 | const MachineFunction &MF) const { |
| 934 | // Terminators and labels can't be scheduled around. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 935 | if (MI.isTerminator() || MI.isPosition()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 936 | return true; |
| 937 | |
| 938 | // Don't attempt to schedule around any instruction that defines |
| 939 | // a stack-oriented pointer, as it's unlikely to be profitable. This |
| 940 | // saves compile time, because it doesn't require every single |
| 941 | // stack slot reference to depend on the instruction that does the |
| 942 | // modification. |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 943 | const TargetLowering &TLI = *MF.getSubtarget().getTargetLowering(); |
| 944 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 945 | return MI.modifiesRegister(TLI.getStackPointerRegisterToSaveRestore(), TRI); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | // Provide a global flag for disabling the PreRA hazard recognizer that targets |
| 949 | // may choose to honor. |
| 950 | bool TargetInstrInfo::usePreRAHazardRecognizer() const { |
| 951 | return !DisableHazardRecognizer; |
| 952 | } |
| 953 | |
| 954 | // Default implementation of CreateTargetRAHazardRecognizer. |
| 955 | ScheduleHazardRecognizer *TargetInstrInfo:: |
Eric Christopher | f047bfd | 2014-06-13 22:38:52 +0000 | [diff] [blame] | 956 | CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 957 | const ScheduleDAG *DAG) const { |
| 958 | // Dummy hazard recognizer allows all instructions to issue. |
| 959 | return new ScheduleHazardRecognizer(); |
| 960 | } |
| 961 | |
| 962 | // Default implementation of CreateTargetMIHazardRecognizer. |
| 963 | ScheduleHazardRecognizer *TargetInstrInfo:: |
| 964 | CreateTargetMIHazardRecognizer(const InstrItineraryData *II, |
| 965 | const ScheduleDAG *DAG) const { |
| 966 | return (ScheduleHazardRecognizer *) |
| 967 | new ScoreboardHazardRecognizer(II, DAG, "misched"); |
| 968 | } |
| 969 | |
| 970 | // Default implementation of CreateTargetPostRAHazardRecognizer. |
| 971 | ScheduleHazardRecognizer *TargetInstrInfo:: |
| 972 | CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II, |
| 973 | const ScheduleDAG *DAG) const { |
| 974 | return (ScheduleHazardRecognizer *) |
| 975 | new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched"); |
| 976 | } |
| 977 | |
| 978 | //===----------------------------------------------------------------------===// |
| 979 | // SelectionDAG latency interface. |
| 980 | //===----------------------------------------------------------------------===// |
| 981 | |
| 982 | int |
| 983 | TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData, |
| 984 | SDNode *DefNode, unsigned DefIdx, |
| 985 | SDNode *UseNode, unsigned UseIdx) const { |
| 986 | if (!ItinData || ItinData->isEmpty()) |
| 987 | return -1; |
| 988 | |
| 989 | if (!DefNode->isMachineOpcode()) |
| 990 | return -1; |
| 991 | |
| 992 | unsigned DefClass = get(DefNode->getMachineOpcode()).getSchedClass(); |
| 993 | if (!UseNode->isMachineOpcode()) |
| 994 | return ItinData->getOperandCycle(DefClass, DefIdx); |
| 995 | unsigned UseClass = get(UseNode->getMachineOpcode()).getSchedClass(); |
| 996 | return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx); |
| 997 | } |
| 998 | |
| 999 | int TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData, |
| 1000 | SDNode *N) const { |
| 1001 | if (!ItinData || ItinData->isEmpty()) |
| 1002 | return 1; |
| 1003 | |
| 1004 | if (!N->isMachineOpcode()) |
| 1005 | return 1; |
| 1006 | |
| 1007 | return ItinData->getStageLatency(get(N->getMachineOpcode()).getSchedClass()); |
| 1008 | } |
| 1009 | |
| 1010 | //===----------------------------------------------------------------------===// |
| 1011 | // MachineInstr latency interface. |
| 1012 | //===----------------------------------------------------------------------===// |
| 1013 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1014 | unsigned TargetInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData, |
| 1015 | const MachineInstr &MI) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1016 | if (!ItinData || ItinData->isEmpty()) |
| 1017 | return 1; |
| 1018 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1019 | unsigned Class = MI.getDesc().getSchedClass(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1020 | int UOps = ItinData->Itineraries[Class].NumMicroOps; |
| 1021 | if (UOps >= 0) |
| 1022 | return UOps; |
| 1023 | |
| 1024 | // The # of u-ops is dynamically determined. The specific target should |
| 1025 | // override this function to return the right number. |
| 1026 | return 1; |
| 1027 | } |
| 1028 | |
| 1029 | /// 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] | 1030 | unsigned TargetInstrInfo::defaultDefLatency(const MCSchedModel &SchedModel, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1031 | const MachineInstr &DefMI) const { |
| 1032 | if (DefMI.isTransient()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1033 | return 0; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1034 | if (DefMI.mayLoad()) |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 1035 | return SchedModel.LoadLatency; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1036 | if (isHighLatencyDef(DefMI.getOpcode())) |
Pete Cooper | 1175945 | 2014-09-02 17:43:54 +0000 | [diff] [blame] | 1037 | return SchedModel.HighLatency; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1038 | return 1; |
| 1039 | } |
| 1040 | |
Duncan P. N. Exon Smith | 6307eb5 | 2016-02-23 02:46:52 +0000 | [diff] [blame] | 1041 | unsigned TargetInstrInfo::getPredicationCost(const MachineInstr &) const { |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 1042 | return 0; |
| 1043 | } |
| 1044 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1045 | unsigned TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData, |
| 1046 | const MachineInstr &MI, |
| 1047 | unsigned *PredCost) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1048 | // Default to one cycle for no itinerary. However, an "empty" itinerary may |
| 1049 | // still have a MinLatency property, which getStageLatency checks. |
| 1050 | if (!ItinData) |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1051 | return MI.mayLoad() ? 2 : 1; |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1052 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1053 | return ItinData->getStageLatency(MI.getDesc().getSchedClass()); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 1056 | bool TargetInstrInfo::hasLowDefLatency(const TargetSchedModel &SchedModel, |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1057 | const MachineInstr &DefMI, |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1058 | unsigned DefIdx) const { |
Matthias Braun | 88e2131 | 2015-06-13 03:42:11 +0000 | [diff] [blame] | 1059 | const InstrItineraryData *ItinData = SchedModel.getInstrItineraries(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1060 | if (!ItinData || ItinData->isEmpty()) |
| 1061 | return false; |
| 1062 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1063 | unsigned DefClass = DefMI.getDesc().getSchedClass(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1064 | int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx); |
| 1065 | return (DefCycle != -1 && DefCycle <= 1); |
| 1066 | } |
| 1067 | |
| 1068 | /// Both DefMI and UseMI must be valid. By default, call directly to the |
| 1069 | /// itinerary. This may be overriden by the target. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1070 | int TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData, |
| 1071 | const MachineInstr &DefMI, |
| 1072 | unsigned DefIdx, |
| 1073 | const MachineInstr &UseMI, |
| 1074 | unsigned UseIdx) const { |
| 1075 | unsigned DefClass = DefMI.getDesc().getSchedClass(); |
| 1076 | unsigned UseClass = UseMI.getDesc().getSchedClass(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1077 | return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx); |
| 1078 | } |
| 1079 | |
| 1080 | /// If we can determine the operand latency from the def only, without itinerary |
| 1081 | /// lookup, do so. Otherwise return -1. |
| 1082 | int TargetInstrInfo::computeDefOperandLatency( |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1083 | const InstrItineraryData *ItinData, const MachineInstr &DefMI) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1084 | |
| 1085 | // Let the target hook getInstrLatency handle missing itineraries. |
| 1086 | if (!ItinData) |
| 1087 | return getInstrLatency(ItinData, DefMI); |
| 1088 | |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 1089 | if(ItinData->isEmpty()) |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1090 | return defaultDefLatency(ItinData->SchedModel, DefMI); |
| 1091 | |
| 1092 | // ...operand lookup required |
| 1093 | return -1; |
| 1094 | } |
| 1095 | |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1096 | unsigned TargetInstrInfo::computeOperandLatency( |
| 1097 | const InstrItineraryData *ItinData, const MachineInstr &DefMI, |
| 1098 | unsigned DefIdx, const MachineInstr *UseMI, unsigned UseIdx) const { |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1099 | |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 1100 | int DefLatency = computeDefOperandLatency(ItinData, DefMI); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1101 | if (DefLatency >= 0) |
| 1102 | return DefLatency; |
| 1103 | |
| 1104 | assert(ItinData && !ItinData->isEmpty() && "computeDefOperandLatency fail"); |
| 1105 | |
| 1106 | int OperLatency = 0; |
| 1107 | if (UseMI) |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1108 | OperLatency = getOperandLatency(ItinData, DefMI, DefIdx, *UseMI, UseIdx); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1109 | else { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 1110 | unsigned DefClass = DefMI.getDesc().getSchedClass(); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1111 | OperLatency = ItinData->getOperandCycle(DefClass, DefIdx); |
| 1112 | } |
| 1113 | if (OperLatency >= 0) |
| 1114 | return OperLatency; |
| 1115 | |
| 1116 | // No operand latency was found. |
| 1117 | unsigned InstrLatency = getInstrLatency(ItinData, DefMI); |
| 1118 | |
| 1119 | // Expected latency is the max of the stage latency and itinerary props. |
Andrew Trick | de2109e | 2013-06-15 04:49:57 +0000 | [diff] [blame] | 1120 | InstrLatency = std::max(InstrLatency, |
| 1121 | defaultDefLatency(ItinData->SchedModel, DefMI)); |
Jakob Stoklund Olesen | c351aed | 2012-11-28 02:35:13 +0000 | [diff] [blame] | 1122 | return InstrLatency; |
| 1123 | } |
Quentin Colombet | d533cdf | 2014-08-11 22:17:14 +0000 | [diff] [blame] | 1124 | |
| 1125 | bool TargetInstrInfo::getRegSequenceInputs( |
| 1126 | const MachineInstr &MI, unsigned DefIdx, |
| 1127 | SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const { |
Quentin Colombet | 8427df9 | 2014-08-12 17:11:26 +0000 | [diff] [blame] | 1128 | assert((MI.isRegSequence() || |
| 1129 | MI.isRegSequenceLike()) && "Instruction do not have the proper type"); |
Quentin Colombet | d533cdf | 2014-08-11 22:17:14 +0000 | [diff] [blame] | 1130 | |
| 1131 | if (!MI.isRegSequence()) |
| 1132 | return getRegSequenceLikeInputs(MI, DefIdx, InputRegs); |
| 1133 | |
| 1134 | // We are looking at: |
| 1135 | // Def = REG_SEQUENCE v0, sub0, v1, sub1, ... |
| 1136 | assert(DefIdx == 0 && "REG_SEQUENCE only has one def"); |
| 1137 | for (unsigned OpIdx = 1, EndOpIdx = MI.getNumOperands(); OpIdx != EndOpIdx; |
| 1138 | OpIdx += 2) { |
| 1139 | const MachineOperand &MOReg = MI.getOperand(OpIdx); |
| 1140 | const MachineOperand &MOSubIdx = MI.getOperand(OpIdx + 1); |
| 1141 | assert(MOSubIdx.isImm() && |
| 1142 | "One of the subindex of the reg_sequence is not an immediate"); |
| 1143 | // Record Reg:SubReg, SubIdx. |
| 1144 | InputRegs.push_back(RegSubRegPairAndIdx(MOReg.getReg(), MOReg.getSubReg(), |
| 1145 | (unsigned)MOSubIdx.getImm())); |
| 1146 | } |
| 1147 | return true; |
| 1148 | } |
Quentin Colombet | 7e75cba | 2014-08-20 21:51:26 +0000 | [diff] [blame] | 1149 | |
| 1150 | bool TargetInstrInfo::getExtractSubregInputs( |
| 1151 | const MachineInstr &MI, unsigned DefIdx, |
| 1152 | RegSubRegPairAndIdx &InputReg) const { |
| 1153 | assert((MI.isExtractSubreg() || |
| 1154 | MI.isExtractSubregLike()) && "Instruction do not have the proper type"); |
| 1155 | |
| 1156 | if (!MI.isExtractSubreg()) |
| 1157 | return getExtractSubregLikeInputs(MI, DefIdx, InputReg); |
| 1158 | |
| 1159 | // We are looking at: |
| 1160 | // Def = EXTRACT_SUBREG v0.sub1, sub0. |
| 1161 | assert(DefIdx == 0 && "EXTRACT_SUBREG only has one def"); |
| 1162 | const MachineOperand &MOReg = MI.getOperand(1); |
| 1163 | const MachineOperand &MOSubIdx = MI.getOperand(2); |
| 1164 | assert(MOSubIdx.isImm() && |
| 1165 | "The subindex of the extract_subreg is not an immediate"); |
| 1166 | |
| 1167 | InputReg.Reg = MOReg.getReg(); |
| 1168 | InputReg.SubReg = MOReg.getSubReg(); |
| 1169 | InputReg.SubIdx = (unsigned)MOSubIdx.getImm(); |
| 1170 | return true; |
| 1171 | } |
Quentin Colombet | 7e3da66 | 2014-08-20 23:49:36 +0000 | [diff] [blame] | 1172 | |
| 1173 | bool TargetInstrInfo::getInsertSubregInputs( |
| 1174 | const MachineInstr &MI, unsigned DefIdx, |
| 1175 | RegSubRegPair &BaseReg, RegSubRegPairAndIdx &InsertedReg) const { |
| 1176 | assert((MI.isInsertSubreg() || |
| 1177 | MI.isInsertSubregLike()) && "Instruction do not have the proper type"); |
| 1178 | |
| 1179 | if (!MI.isInsertSubreg()) |
| 1180 | return getInsertSubregLikeInputs(MI, DefIdx, BaseReg, InsertedReg); |
| 1181 | |
| 1182 | // We are looking at: |
| 1183 | // Def = INSERT_SEQUENCE v0, v1, sub0. |
| 1184 | assert(DefIdx == 0 && "INSERT_SUBREG only has one def"); |
| 1185 | const MachineOperand &MOBaseReg = MI.getOperand(1); |
| 1186 | const MachineOperand &MOInsertedReg = MI.getOperand(2); |
| 1187 | const MachineOperand &MOSubIdx = MI.getOperand(3); |
| 1188 | assert(MOSubIdx.isImm() && |
| 1189 | "One of the subindex of the reg_sequence is not an immediate"); |
| 1190 | BaseReg.Reg = MOBaseReg.getReg(); |
| 1191 | BaseReg.SubReg = MOBaseReg.getSubReg(); |
| 1192 | |
| 1193 | InsertedReg.Reg = MOInsertedReg.getReg(); |
| 1194 | InsertedReg.SubReg = MOInsertedReg.getSubReg(); |
| 1195 | InsertedReg.SubIdx = (unsigned)MOSubIdx.getImm(); |
| 1196 | return true; |
| 1197 | } |