blob: f221fa1ea5ed0e8fd72d4a63ab62270f661cce5d [file] [log] [blame]
Chris Lattner0d5644b2003-01-13 00:26:36 +00001//===-- TargetInstrInfo.cpp - Target Instruction Information --------------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner910b82f2002-10-28 23:55:33 +00009//
Chris Lattnerf6932b72005-01-19 06:53:34 +000010// This file implements the TargetInstrInfo class.
Chris Lattner910b82f2002-10-28 23:55:33 +000011//
12//===----------------------------------------------------------------------===//
13
Eric Christopher4fdc7652014-06-11 16:59:33 +000014#include "llvm/Target/TargetInstrInfo.h"
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000015#include "llvm/CodeGen/MachineFrameInfo.h"
Lang Hames39609992013-11-29 03:07:54 +000016#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000017#include "llvm/CodeGen/MachineMemOperand.h"
18#include "llvm/CodeGen/MachineRegisterInfo.h"
19#include "llvm/CodeGen/PseudoSourceValue.h"
20#include "llvm/CodeGen/ScoreboardHazardRecognizer.h"
Lang Hames39609992013-11-29 03:07:54 +000021#include "llvm/CodeGen/StackMaps.h"
Matthias Braun88e21312015-06-13 03:42:11 +000022#include "llvm/CodeGen/TargetSchedule.h"
Andrew Trick10d5be42013-11-17 01:36:23 +000023#include "llvm/IR/DataLayout.h"
Evan Cheng49d4c0b2010-10-06 06:27:31 +000024#include "llvm/MC/MCAsmInfo.h"
Evan Cheng8264e272011-06-29 01:14:12 +000025#include "llvm/MC/MCInstrItineraries.h"
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000026#include "llvm/Support/CommandLine.h"
Chris Lattner01614192009-08-02 04:58:19 +000027#include "llvm/Support/ErrorHandling.h"
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000028#include "llvm/Support/raw_ostream.h"
Michael Kuperstein698ea3b2015-01-08 11:59:43 +000029#include "llvm/Target/TargetFrameLowering.h"
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000030#include "llvm/Target/TargetLowering.h"
31#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Target/TargetRegisterInfo.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000033#include <cctype>
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000034
Chris Lattnerf6932b72005-01-19 06:53:34 +000035using namespace llvm;
Chris Lattner910b82f2002-10-28 23:55:33 +000036
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000037static cl::opt<bool> DisableHazardRecognizer(
38 "disable-sched-hazard", cl::Hidden, cl::init(false),
39 cl::desc("Disable hazard detection during preRA scheduling"));
Chris Lattnere98a3c32009-08-02 05:20:37 +000040
Chris Lattner0d5644b2003-01-13 00:26:36 +000041TargetInstrInfo::~TargetInstrInfo() {
Chris Lattner910b82f2002-10-28 23:55:33 +000042}
43
Evan Cheng8d71a752011-06-27 21:26:13 +000044const TargetRegisterClass*
Evan Cheng6cc775f2011-06-28 19:10:37 +000045TargetInstrInfo::getRegClass(const MCInstrDesc &MCID, unsigned OpNum,
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +000046 const TargetRegisterInfo *TRI,
47 const MachineFunction &MF) const {
Evan Cheng6cc775f2011-06-28 19:10:37 +000048 if (OpNum >= MCID.getNumOperands())
Craig Topperc0196b12014-04-14 00:51:57 +000049 return nullptr;
Evan Cheng8d71a752011-06-27 21:26:13 +000050
Evan Cheng6cc775f2011-06-28 19:10:37 +000051 short RegClass = MCID.OpInfo[OpNum].RegClass;
52 if (MCID.OpInfo[OpNum].isLookupPtrRegClass())
Jakob Stoklund Olesen3c52f022012-05-07 22:10:26 +000053 return TRI->getPointerRegClass(MF, RegClass);
Evan Cheng8d71a752011-06-27 21:26:13 +000054
55 // Instructions like INSERT_SUBREG do not have fixed register classes.
56 if (RegClass < 0)
Craig Topperc0196b12014-04-14 00:51:57 +000057 return nullptr;
Evan Cheng8d71a752011-06-27 21:26:13 +000058
59 // Otherwise just look it up normally.
60 return TRI->getRegClass(RegClass);
61}
62
Chris Lattner01614192009-08-02 04:58:19 +000063/// insertNoop - Insert a noop into the instruction stream at the specified
64/// point.
Andrew Trickc416ba62010-12-24 04:28:06 +000065void TargetInstrInfo::insertNoop(MachineBasicBlock &MBB,
Chris Lattner01614192009-08-02 04:58:19 +000066 MachineBasicBlock::iterator MI) const {
67 llvm_unreachable("Target didn't implement insertNoop!");
68}
69
Chris Lattnere98a3c32009-08-02 05:20:37 +000070/// Measure the specified inline asm to determine an approximation of its
71/// length.
Jim Grosbacha3df87f2011-03-24 18:46:34 +000072/// Comments (which run till the next SeparatorString or newline) do not
Chris Lattnere98a3c32009-08-02 05:20:37 +000073/// count as an instruction.
74/// Any other non-whitespace text is considered an instruction, with
Jim Grosbacha3df87f2011-03-24 18:46:34 +000075/// multiple instructions separated by SeparatorString or newlines.
Chris Lattnere98a3c32009-08-02 05:20:37 +000076/// Variable-length instructions are not handled here; this function
77/// may be overloaded in the target code to do that.
78unsigned TargetInstrInfo::getInlineAsmLength(const char *Str,
Chris Lattnere9a75a62009-08-22 21:43:10 +000079 const MCAsmInfo &MAI) const {
Chris Lattnere98a3c32009-08-02 05:20:37 +000080 // Count the number of instructions in the asm.
81 bool atInsnStart = true;
82 unsigned Length = 0;
83 for (; *Str; ++Str) {
Jim Grosbacha3df87f2011-03-24 18:46:34 +000084 if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(),
85 strlen(MAI.getSeparatorString())) == 0)
Chris Lattnere98a3c32009-08-02 05:20:37 +000086 atInsnStart = true;
Guy Benyei83c74e92013-02-12 21:21:59 +000087 if (atInsnStart && !std::isspace(static_cast<unsigned char>(*Str))) {
Chris Lattnere9a75a62009-08-22 21:43:10 +000088 Length += MAI.getMaxInstLength();
Chris Lattnere98a3c32009-08-02 05:20:37 +000089 atInsnStart = false;
90 }
Chris Lattnere9a75a62009-08-22 21:43:10 +000091 if (atInsnStart && strncmp(Str, MAI.getCommentString(),
92 strlen(MAI.getCommentString())) == 0)
Chris Lattnere98a3c32009-08-02 05:20:37 +000093 atInsnStart = false;
94 }
Andrew Trickc416ba62010-12-24 04:28:06 +000095
Chris Lattnere98a3c32009-08-02 05:20:37 +000096 return Length;
97}
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +000098
99/// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
100/// after it, replacing it with an unconditional branch to NewDest.
101void
102TargetInstrInfo::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
Justin Bognerec5ea362016-03-25 18:38:48 +0000110 // Save off the debug loc before erasing the instruction.
111 DebugLoc DL = Tail->getDebugLoc();
112
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000113 // Remove all the dead instructions from the end of MBB.
114 MBB->erase(Tail, MBB->end());
115
116 // If MBB isn't immediately before MBB, insert a branch to it.
117 if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest))
Justin Bognerec5ea362016-03-25 18:38:48 +0000118 InsertBranch(*MBB, NewDest, nullptr, SmallVector<MachineOperand, 0>(), DL);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000119 MBB->addSuccessor(NewDest);
120}
121
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000122MachineInstr *TargetInstrInfo::commuteInstructionImpl(MachineInstr &MI,
123 bool NewMI, unsigned Idx1,
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000124 unsigned Idx2) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000125 const MCInstrDesc &MCID = MI.getDesc();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000126 bool HasDef = MCID.getNumDefs();
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000127 if (HasDef && !MI.getOperand(0).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000128 // No idea how to commute this instruction. Target should implement its own.
Craig Topperc0196b12014-04-14 00:51:57 +0000129 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000130
Richard Trieue778e872015-09-28 22:54:43 +0000131 unsigned CommutableOpIdx1 = Idx1; (void)CommutableOpIdx1;
132 unsigned CommutableOpIdx2 = Idx2; (void)CommutableOpIdx2;
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000133 assert(findCommutedOpIndices(MI, CommutableOpIdx1, CommutableOpIdx2) &&
134 CommutableOpIdx1 == Idx1 && CommutableOpIdx2 == Idx2 &&
135 "TargetInstrInfo::CommuteInstructionImpl(): not commutable operands.");
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000136 assert(MI.getOperand(Idx1).isReg() && MI.getOperand(Idx2).isReg() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000137 "This only knows how to commute register operands so far");
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000138
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000139 unsigned Reg0 = HasDef ? MI.getOperand(0).getReg() : 0;
140 unsigned Reg1 = MI.getOperand(Idx1).getReg();
141 unsigned Reg2 = MI.getOperand(Idx2).getReg();
142 unsigned SubReg0 = HasDef ? MI.getOperand(0).getSubReg() : 0;
143 unsigned SubReg1 = MI.getOperand(Idx1).getSubReg();
144 unsigned SubReg2 = MI.getOperand(Idx2).getSubReg();
145 bool Reg1IsKill = MI.getOperand(Idx1).isKill();
146 bool Reg2IsKill = MI.getOperand(Idx2).isKill();
147 bool Reg1IsUndef = MI.getOperand(Idx1).isUndef();
148 bool Reg2IsUndef = MI.getOperand(Idx2).isUndef();
149 bool Reg1IsInternal = MI.getOperand(Idx1).isInternalRead();
150 bool Reg2IsInternal = MI.getOperand(Idx2).isInternalRead();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000151 // If destination is tied to either of the commuted source register, then
152 // it must be updated.
153 if (HasDef && Reg0 == Reg1 &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000154 MI.getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000155 Reg2IsKill = false;
156 Reg0 = Reg2;
157 SubReg0 = SubReg2;
158 } else if (HasDef && Reg0 == Reg2 &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000159 MI.getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000160 Reg1IsKill = false;
161 Reg0 = Reg1;
162 SubReg0 = SubReg1;
163 }
164
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000165 MachineInstr *CommutedMI = nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000166 if (NewMI) {
167 // Create a new instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000168 MachineFunction &MF = *MI.getParent()->getParent();
169 CommutedMI = MF.CloneMachineInstr(&MI);
170 } else {
171 CommutedMI = &MI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000172 }
173
174 if (HasDef) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000175 CommutedMI->getOperand(0).setReg(Reg0);
176 CommutedMI->getOperand(0).setSubReg(SubReg0);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000177 }
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000178 CommutedMI->getOperand(Idx2).setReg(Reg1);
179 CommutedMI->getOperand(Idx1).setReg(Reg2);
180 CommutedMI->getOperand(Idx2).setSubReg(SubReg1);
181 CommutedMI->getOperand(Idx1).setSubReg(SubReg2);
182 CommutedMI->getOperand(Idx2).setIsKill(Reg1IsKill);
183 CommutedMI->getOperand(Idx1).setIsKill(Reg2IsKill);
184 CommutedMI->getOperand(Idx2).setIsUndef(Reg1IsUndef);
185 CommutedMI->getOperand(Idx1).setIsUndef(Reg2IsUndef);
186 CommutedMI->getOperand(Idx2).setIsInternalRead(Reg1IsInternal);
187 CommutedMI->getOperand(Idx1).setIsInternalRead(Reg2IsInternal);
188 return CommutedMI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000189}
190
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000191MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr &MI, bool NewMI,
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000192 unsigned OpIdx1,
193 unsigned OpIdx2) const {
194 // If OpIdx1 or OpIdx2 is not specified, then this method is free to choose
195 // any commutable operand, which is done in findCommutedOpIndices() method
196 // called below.
197 if ((OpIdx1 == CommuteAnyOperandIndex || OpIdx2 == CommuteAnyOperandIndex) &&
198 !findCommutedOpIndices(MI, OpIdx1, OpIdx2)) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000199 assert(MI.isCommutable() &&
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000200 "Precondition violation: MI must be commutable.");
201 return nullptr;
202 }
203 return commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2);
204}
205
206bool TargetInstrInfo::fixCommutedOpIndices(unsigned &ResultIdx1,
207 unsigned &ResultIdx2,
208 unsigned CommutableOpIdx1,
209 unsigned CommutableOpIdx2) {
210 if (ResultIdx1 == CommuteAnyOperandIndex &&
211 ResultIdx2 == CommuteAnyOperandIndex) {
212 ResultIdx1 = CommutableOpIdx1;
213 ResultIdx2 = CommutableOpIdx2;
214 } else if (ResultIdx1 == CommuteAnyOperandIndex) {
215 if (ResultIdx2 == CommutableOpIdx1)
216 ResultIdx1 = CommutableOpIdx2;
217 else if (ResultIdx2 == CommutableOpIdx2)
218 ResultIdx1 = CommutableOpIdx1;
219 else
220 return false;
221 } else if (ResultIdx2 == CommuteAnyOperandIndex) {
222 if (ResultIdx1 == CommutableOpIdx1)
223 ResultIdx2 = CommutableOpIdx2;
224 else if (ResultIdx1 == CommutableOpIdx2)
225 ResultIdx2 = CommutableOpIdx1;
226 else
227 return false;
228 } else
229 // Check that the result operand indices match the given commutable
230 // operand indices.
231 return (ResultIdx1 == CommutableOpIdx1 && ResultIdx2 == CommutableOpIdx2) ||
232 (ResultIdx1 == CommutableOpIdx2 && ResultIdx2 == CommutableOpIdx1);
233
234 return true;
235}
236
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000237bool TargetInstrInfo::findCommutedOpIndices(MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000238 unsigned &SrcOpIdx1,
239 unsigned &SrcOpIdx2) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000240 assert(!MI.isBundle() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000241 "TargetInstrInfo::findCommutedOpIndices() can't handle bundles");
242
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000243 const MCInstrDesc &MCID = MI.getDesc();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000244 if (!MCID.isCommutable())
245 return false;
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000246
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000247 // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this
248 // is not true, then the target must implement this.
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000249 unsigned CommutableOpIdx1 = MCID.getNumDefs();
250 unsigned CommutableOpIdx2 = CommutableOpIdx1 + 1;
251 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2,
252 CommutableOpIdx1, CommutableOpIdx2))
253 return false;
254
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000255 if (!MI.getOperand(SrcOpIdx1).isReg() || !MI.getOperand(SrcOpIdx2).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000256 // No idea.
257 return false;
258 return true;
259}
260
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000261bool TargetInstrInfo::isUnpredicatedTerminator(const MachineInstr &MI) const {
262 if (!MI.isTerminator()) return false;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000263
264 // Conditional branch is a special case.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000265 if (MI.isBranch() && !MI.isBarrier())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000266 return true;
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000267 if (!MI.isPredicable())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000268 return true;
269 return !isPredicated(MI);
270}
271
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000272bool TargetInstrInfo::PredicateInstruction(
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000273 MachineInstr &MI, ArrayRef<MachineOperand> Pred) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000274 bool MadeChange = false;
275
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000276 assert(!MI.isBundle() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000277 "TargetInstrInfo::PredicateInstruction() can't handle bundles");
278
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000279 const MCInstrDesc &MCID = MI.getDesc();
280 if (!MI.isPredicable())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000281 return false;
282
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000283 for (unsigned j = 0, i = 0, e = MI.getNumOperands(); i != e; ++i) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000284 if (MCID.OpInfo[i].isPredicate()) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000285 MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000286 if (MO.isReg()) {
287 MO.setReg(Pred[j].getReg());
288 MadeChange = true;
289 } else if (MO.isImm()) {
290 MO.setImm(Pred[j].getImm());
291 MadeChange = true;
292 } else if (MO.isMBB()) {
293 MO.setMBB(Pred[j].getMBB());
294 MadeChange = true;
295 }
296 ++j;
297 }
298 }
299 return MadeChange;
300}
301
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000302bool TargetInstrInfo::hasLoadFromStackSlot(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000303 const MachineMemOperand *&MMO,
304 int &FrameIndex) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000305 for (MachineInstr::mmo_iterator o = MI.memoperands_begin(),
306 oe = MI.memoperands_end();
307 o != oe; ++o) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000308 if ((*o)->isLoad()) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000309 if (const FixedStackPseudoSourceValue *Value =
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000310 dyn_cast_or_null<FixedStackPseudoSourceValue>(
311 (*o)->getPseudoValue())) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000312 FrameIndex = Value->getFrameIndex();
313 MMO = *o;
314 return true;
315 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000316 }
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000317 }
318 return false;
319}
320
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000321bool TargetInstrInfo::hasStoreToStackSlot(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000322 const MachineMemOperand *&MMO,
323 int &FrameIndex) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000324 for (MachineInstr::mmo_iterator o = MI.memoperands_begin(),
325 oe = MI.memoperands_end();
326 o != oe; ++o) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000327 if ((*o)->isStore()) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000328 if (const FixedStackPseudoSourceValue *Value =
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000329 dyn_cast_or_null<FixedStackPseudoSourceValue>(
330 (*o)->getPseudoValue())) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000331 FrameIndex = Value->getFrameIndex();
332 MMO = *o;
333 return true;
334 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000335 }
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000336 }
337 return false;
338}
339
Andrew Trick10d5be42013-11-17 01:36:23 +0000340bool TargetInstrInfo::getStackSlotRange(const TargetRegisterClass *RC,
341 unsigned SubIdx, unsigned &Size,
342 unsigned &Offset,
Eric Christopher7585fb22015-03-19 23:06:21 +0000343 const MachineFunction &MF) const {
Andrew Trick10d5be42013-11-17 01:36:23 +0000344 if (!SubIdx) {
345 Size = RC->getSize();
346 Offset = 0;
347 return true;
348 }
Eric Christopher7585fb22015-03-19 23:06:21 +0000349 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
350 unsigned BitSize = TRI->getSubRegIdxSize(SubIdx);
Andrew Trick10d5be42013-11-17 01:36:23 +0000351 // Convert bit size to byte size to be consistent with
352 // MCRegisterClass::getSize().
353 if (BitSize % 8)
354 return false;
355
Eric Christopher7585fb22015-03-19 23:06:21 +0000356 int BitOffset = TRI->getSubRegIdxOffset(SubIdx);
Andrew Trick10d5be42013-11-17 01:36:23 +0000357 if (BitOffset < 0 || BitOffset % 8)
358 return false;
359
360 Size = BitSize /= 8;
361 Offset = (unsigned)BitOffset / 8;
362
363 assert(RC->getSize() >= (Offset + Size) && "bad subregister range");
364
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000365 if (!MF.getDataLayout().isLittleEndian()) {
Andrew Trick10d5be42013-11-17 01:36:23 +0000366 Offset = RC->getSize() - (Offset + Size);
367 }
368 return true;
369}
370
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000371void TargetInstrInfo::reMaterialize(MachineBasicBlock &MBB,
372 MachineBasicBlock::iterator I,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000373 unsigned DestReg, unsigned SubIdx,
374 const MachineInstr &Orig,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000375 const TargetRegisterInfo &TRI) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000376 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(&Orig);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000377 MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI);
378 MBB.insert(I, MI);
379}
380
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000381bool TargetInstrInfo::produceSameValue(const MachineInstr &MI0,
382 const MachineInstr &MI1,
383 const MachineRegisterInfo *MRI) const {
384 return MI0.isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000385}
386
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000387MachineInstr *TargetInstrInfo::duplicate(MachineInstr &Orig,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000388 MachineFunction &MF) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000389 assert(!Orig.isNotDuplicable() && "Instruction cannot be duplicated");
390 return MF.CloneMachineInstr(&Orig);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000391}
392
393// If the COPY instruction in MI can be folded to a stack operation, return
394// the register class to use.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000395static const TargetRegisterClass *canFoldCopy(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000396 unsigned FoldIdx) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000397 assert(MI.isCopy() && "MI must be a COPY instruction");
398 if (MI.getNumOperands() != 2)
Craig Topperc0196b12014-04-14 00:51:57 +0000399 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000400 assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand");
401
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000402 const MachineOperand &FoldOp = MI.getOperand(FoldIdx);
403 const MachineOperand &LiveOp = MI.getOperand(1 - FoldIdx);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000404
405 if (FoldOp.getSubReg() || LiveOp.getSubReg())
Craig Topperc0196b12014-04-14 00:51:57 +0000406 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000407
408 unsigned FoldReg = FoldOp.getReg();
409 unsigned LiveReg = LiveOp.getReg();
410
411 assert(TargetRegisterInfo::isVirtualRegister(FoldReg) &&
412 "Cannot fold physregs");
413
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000414 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000415 const TargetRegisterClass *RC = MRI.getRegClass(FoldReg);
416
417 if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg()))
Craig Topperc0196b12014-04-14 00:51:57 +0000418 return RC->contains(LiveOp.getReg()) ? RC : nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000419
420 if (RC->hasSubClassEq(MRI.getRegClass(LiveReg)))
421 return RC;
422
423 // FIXME: Allow folding when register classes are memory compatible.
Craig Topperc0196b12014-04-14 00:51:57 +0000424 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000425}
426
Rafael Espindola6865d6f2014-09-15 18:32:58 +0000427void TargetInstrInfo::getNoopForMachoTarget(MCInst &NopInst) const {
428 llvm_unreachable("Not a MachO target");
429}
430
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000431static MachineInstr *foldPatchpoint(MachineFunction &MF, MachineInstr &MI,
Benjamin Kramerf1362f62015-02-28 12:04:00 +0000432 ArrayRef<unsigned> Ops, int FrameIndex,
Lang Hames39609992013-11-29 03:07:54 +0000433 const TargetInstrInfo &TII) {
434 unsigned StartIdx = 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000435 switch (MI.getOpcode()) {
Lang Hames39609992013-11-29 03:07:54 +0000436 case TargetOpcode::STACKMAP:
437 StartIdx = 2; // Skip ID, nShadowBytes.
438 break;
439 case TargetOpcode::PATCHPOINT: {
440 // For PatchPoint, the call args are not foldable.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000441 PatchPointOpers opers(&MI);
Lang Hames39609992013-11-29 03:07:54 +0000442 StartIdx = opers.getVarIdx();
443 break;
444 }
445 default:
446 llvm_unreachable("unexpected stackmap opcode");
447 }
448
449 // Return false if any operands requested for folding are not foldable (not
450 // part of the stackmap's live values).
Benjamin Kramerf1362f62015-02-28 12:04:00 +0000451 for (unsigned Op : Ops) {
452 if (Op < StartIdx)
Craig Topperc0196b12014-04-14 00:51:57 +0000453 return nullptr;
Lang Hames39609992013-11-29 03:07:54 +0000454 }
455
456 MachineInstr *NewMI =
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000457 MF.CreateMachineInstr(TII.get(MI.getOpcode()), MI.getDebugLoc(), true);
Lang Hames39609992013-11-29 03:07:54 +0000458 MachineInstrBuilder MIB(MF, NewMI);
459
460 // No need to fold return, the meta data, and function arguments
461 for (unsigned i = 0; i < StartIdx; ++i)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000462 MIB.addOperand(MI.getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000463
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000464 for (unsigned i = StartIdx; i < MI.getNumOperands(); ++i) {
465 MachineOperand &MO = MI.getOperand(i);
Lang Hames39609992013-11-29 03:07:54 +0000466 if (std::find(Ops.begin(), Ops.end(), i) != Ops.end()) {
467 unsigned SpillSize;
468 unsigned SpillOffset;
469 // Compute the spill slot size and offset.
470 const TargetRegisterClass *RC =
471 MF.getRegInfo().getRegClass(MO.getReg());
Eric Christopher7585fb22015-03-19 23:06:21 +0000472 bool Valid =
473 TII.getStackSlotRange(RC, MO.getSubReg(), SpillSize, SpillOffset, MF);
Lang Hames39609992013-11-29 03:07:54 +0000474 if (!Valid)
475 report_fatal_error("cannot spill patchpoint subregister operand");
476 MIB.addImm(StackMaps::IndirectMemRefOp);
477 MIB.addImm(SpillSize);
478 MIB.addFrameIndex(FrameIndex);
Lang Hames2ce64a72013-12-07 03:30:59 +0000479 MIB.addImm(SpillOffset);
Lang Hames39609992013-11-29 03:07:54 +0000480 }
481 else
482 MIB.addOperand(MO);
483 }
484 return NewMI;
485}
486
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000487/// foldMemoryOperand - Attempt to fold a load or store of the specified stack
488/// slot into the specified machine instruction for the specified operand(s).
489/// If this is possible, a new instruction is returned with the specified
490/// operand folded, otherwise NULL is returned. The client is responsible for
491/// removing the old instruction and adding the new one in the instruction
492/// stream.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000493MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI,
494 ArrayRef<unsigned> Ops, int FI,
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000495 LiveIntervals *LIS) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000496 unsigned Flags = 0;
497 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000498 if (MI.getOperand(Ops[i]).isDef())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000499 Flags |= MachineMemOperand::MOStore;
500 else
501 Flags |= MachineMemOperand::MOLoad;
502
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000503 MachineBasicBlock *MBB = MI.getParent();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000504 assert(MBB && "foldMemoryOperand needs an inserted instruction");
505 MachineFunction &MF = *MBB->getParent();
506
Craig Topperc0196b12014-04-14 00:51:57 +0000507 MachineInstr *NewMI = nullptr;
Lang Hames39609992013-11-29 03:07:54 +0000508
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000509 if (MI.getOpcode() == TargetOpcode::STACKMAP ||
510 MI.getOpcode() == TargetOpcode::PATCHPOINT) {
Lang Hames39609992013-11-29 03:07:54 +0000511 // Fold stackmap/patchpoint.
512 NewMI = foldPatchpoint(MF, MI, Ops, FI, *this);
Keno Fischere70b31f2015-06-08 20:09:58 +0000513 if (NewMI)
514 MBB->insert(MI, NewMI);
Lang Hames39609992013-11-29 03:07:54 +0000515 } else {
516 // Ask the target to do the actual folding.
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000517 NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, FI, LIS);
Lang Hames39609992013-11-29 03:07:54 +0000518 }
Keno Fischere70b31f2015-06-08 20:09:58 +0000519
Lang Hames39609992013-11-29 03:07:54 +0000520 if (NewMI) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000521 NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000522 // Add a memory operand, foldMemoryOperandImpl doesn't do that.
523 assert((!(Flags & MachineMemOperand::MOStore) ||
524 NewMI->mayStore()) &&
525 "Folded a def to a non-store!");
526 assert((!(Flags & MachineMemOperand::MOLoad) ||
527 NewMI->mayLoad()) &&
528 "Folded a use to a non-load!");
529 const MachineFrameInfo &MFI = *MF.getFrameInfo();
530 assert(MFI.getObjectOffset(FI) != -1);
Alex Lorenze40c8a22015-08-11 23:09:45 +0000531 MachineMemOperand *MMO = MF.getMachineMemOperand(
532 MachinePointerInfo::getFixedStack(MF, FI), Flags, MFI.getObjectSize(FI),
533 MFI.getObjectAlignment(FI));
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000534 NewMI->addMemOperand(MF, MMO);
535
Keno Fischere70b31f2015-06-08 20:09:58 +0000536 return NewMI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000537 }
538
539 // Straight COPY may fold as load/store.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000540 if (!MI.isCopy() || Ops.size() != 1)
Craig Topperc0196b12014-04-14 00:51:57 +0000541 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000542
543 const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]);
544 if (!RC)
Craig Topperc0196b12014-04-14 00:51:57 +0000545 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000546
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000547 const MachineOperand &MO = MI.getOperand(1 - Ops[0]);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000548 MachineBasicBlock::iterator Pos = MI;
Eric Christopherfc6de422014-08-05 02:39:49 +0000549 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000550
551 if (Flags == MachineMemOperand::MOStore)
552 storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
553 else
554 loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
Duncan P. N. Exon Smithaae6f3c2016-07-01 16:38:28 +0000555 return &*--Pos;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000556}
557
Chad Rosier03a47302015-09-21 15:09:11 +0000558bool TargetInstrInfo::hasReassociableOperands(
559 const MachineInstr &Inst, const MachineBasicBlock *MBB) const {
560 const MachineOperand &Op1 = Inst.getOperand(1);
561 const MachineOperand &Op2 = Inst.getOperand(2);
562 const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
563
564 // We need virtual register definitions for the operands that we will
565 // reassociate.
566 MachineInstr *MI1 = nullptr;
567 MachineInstr *MI2 = nullptr;
568 if (Op1.isReg() && TargetRegisterInfo::isVirtualRegister(Op1.getReg()))
569 MI1 = MRI.getUniqueVRegDef(Op1.getReg());
570 if (Op2.isReg() && TargetRegisterInfo::isVirtualRegister(Op2.getReg()))
571 MI2 = MRI.getUniqueVRegDef(Op2.getReg());
572
573 // And they need to be in the trace (otherwise, they won't have a depth).
Rafael Espindola84921b92015-10-24 23:11:13 +0000574 return MI1 && MI2 && MI1->getParent() == MBB && MI2->getParent() == MBB;
Chad Rosier03a47302015-09-21 15:09:11 +0000575}
576
577bool TargetInstrInfo::hasReassociableSibling(const MachineInstr &Inst,
578 bool &Commuted) const {
579 const MachineBasicBlock *MBB = Inst.getParent();
580 const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
581 MachineInstr *MI1 = MRI.getUniqueVRegDef(Inst.getOperand(1).getReg());
582 MachineInstr *MI2 = MRI.getUniqueVRegDef(Inst.getOperand(2).getReg());
583 unsigned AssocOpcode = Inst.getOpcode();
584
585 // If only one operand has the same opcode and it's the second source operand,
586 // the operands must be commuted.
587 Commuted = MI1->getOpcode() != AssocOpcode && MI2->getOpcode() == AssocOpcode;
588 if (Commuted)
589 std::swap(MI1, MI2);
590
591 // 1. The previous instruction must be the same type as Inst.
592 // 2. The previous instruction must have virtual register definitions for its
593 // operands in the same basic block as Inst.
594 // 3. The previous instruction's result must only be used by Inst.
Rafael Espindola84921b92015-10-24 23:11:13 +0000595 return MI1->getOpcode() == AssocOpcode &&
596 hasReassociableOperands(*MI1, MBB) &&
597 MRI.hasOneNonDBGUse(MI1->getOperand(0).getReg());
Chad Rosier03a47302015-09-21 15:09:11 +0000598}
599
600// 1. The operation must be associative and commutative.
601// 2. The instruction must have virtual register definitions for its
602// operands in the same basic block.
603// 3. The instruction must have a reassociable sibling.
604bool TargetInstrInfo::isReassociationCandidate(const MachineInstr &Inst,
605 bool &Commuted) const {
Rafael Espindola84921b92015-10-24 23:11:13 +0000606 return isAssociativeAndCommutative(Inst) &&
607 hasReassociableOperands(Inst, Inst.getParent()) &&
608 hasReassociableSibling(Inst, Commuted);
Chad Rosier03a47302015-09-21 15:09:11 +0000609}
610
611// The concept of the reassociation pass is that these operations can benefit
612// from this kind of transformation:
613//
614// A = ? op ?
615// B = A op X (Prev)
616// C = B op Y (Root)
617// -->
618// A = ? op ?
619// B = X op Y
620// C = A op B
621//
622// breaking the dependency between A and B, allowing them to be executed in
623// parallel (or back-to-back in a pipeline) instead of depending on each other.
624
625// FIXME: This has the potential to be expensive (compile time) while not
626// improving the code at all. Some ways to limit the overhead:
627// 1. Track successful transforms; bail out if hit rate gets too low.
628// 2. Only enable at -O3 or some other non-default optimization level.
629// 3. Pre-screen pattern candidates here: if an operand of the previous
630// instruction is known to not increase the critical path, then don't match
631// that pattern.
632bool TargetInstrInfo::getMachineCombinerPatterns(
633 MachineInstr &Root,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000634 SmallVectorImpl<MachineCombinerPattern> &Patterns) const {
Chad Rosier03a47302015-09-21 15:09:11 +0000635 bool Commute;
636 if (isReassociationCandidate(Root, Commute)) {
637 // We found a sequence of instructions that may be suitable for a
638 // reassociation of operands to increase ILP. Specify each commutation
639 // possibility for the Prev instruction in the sequence and let the
640 // machine combiner decide if changing the operands is worthwhile.
641 if (Commute) {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000642 Patterns.push_back(MachineCombinerPattern::REASSOC_AX_YB);
643 Patterns.push_back(MachineCombinerPattern::REASSOC_XA_YB);
Chad Rosier03a47302015-09-21 15:09:11 +0000644 } else {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000645 Patterns.push_back(MachineCombinerPattern::REASSOC_AX_BY);
646 Patterns.push_back(MachineCombinerPattern::REASSOC_XA_BY);
Chad Rosier03a47302015-09-21 15:09:11 +0000647 }
648 return true;
649 }
650
651 return false;
652}
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000653/// Return true when a code sequence can improve loop throughput.
654bool
655TargetInstrInfo::isThroughputPattern(MachineCombinerPattern Pattern) const {
656 return false;
657}
Chad Rosier03a47302015-09-21 15:09:11 +0000658/// Attempt the reassociation transformation to reduce critical path length.
659/// See the above comments before getMachineCombinerPatterns().
660void TargetInstrInfo::reassociateOps(
661 MachineInstr &Root, MachineInstr &Prev,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000662 MachineCombinerPattern Pattern,
Chad Rosier03a47302015-09-21 15:09:11 +0000663 SmallVectorImpl<MachineInstr *> &InsInstrs,
664 SmallVectorImpl<MachineInstr *> &DelInstrs,
665 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg) const {
666 MachineFunction *MF = Root.getParent()->getParent();
667 MachineRegisterInfo &MRI = MF->getRegInfo();
668 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
669 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
670 const TargetRegisterClass *RC = Root.getRegClassConstraint(0, TII, TRI);
671
672 // This array encodes the operand index for each parameter because the
673 // operands may be commuted. Each row corresponds to a pattern value,
674 // and each column specifies the index of A, B, X, Y.
675 unsigned OpIdx[4][4] = {
676 { 1, 1, 2, 2 },
677 { 1, 2, 2, 1 },
678 { 2, 1, 1, 2 },
679 { 2, 2, 1, 1 }
680 };
681
Sanjay Patel387e66e2015-11-05 19:34:57 +0000682 int Row;
683 switch (Pattern) {
684 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break;
685 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break;
686 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break;
687 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break;
688 default: llvm_unreachable("unexpected MachineCombinerPattern");
689 }
690
691 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]);
692 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]);
693 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]);
694 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]);
Chad Rosier03a47302015-09-21 15:09:11 +0000695 MachineOperand &OpC = Root.getOperand(0);
696
697 unsigned RegA = OpA.getReg();
698 unsigned RegB = OpB.getReg();
699 unsigned RegX = OpX.getReg();
700 unsigned RegY = OpY.getReg();
701 unsigned RegC = OpC.getReg();
702
703 if (TargetRegisterInfo::isVirtualRegister(RegA))
704 MRI.constrainRegClass(RegA, RC);
705 if (TargetRegisterInfo::isVirtualRegister(RegB))
706 MRI.constrainRegClass(RegB, RC);
707 if (TargetRegisterInfo::isVirtualRegister(RegX))
708 MRI.constrainRegClass(RegX, RC);
709 if (TargetRegisterInfo::isVirtualRegister(RegY))
710 MRI.constrainRegClass(RegY, RC);
711 if (TargetRegisterInfo::isVirtualRegister(RegC))
712 MRI.constrainRegClass(RegC, RC);
713
714 // Create a new virtual register for the result of (X op Y) instead of
715 // recycling RegB because the MachineCombiner's computation of the critical
716 // path requires a new register definition rather than an existing one.
717 unsigned NewVR = MRI.createVirtualRegister(RC);
718 InstrIdxForVirtReg.insert(std::make_pair(NewVR, 0));
719
720 unsigned Opcode = Root.getOpcode();
721 bool KillA = OpA.isKill();
722 bool KillX = OpX.isKill();
723 bool KillY = OpY.isKill();
724
725 // Create new instructions for insertion.
726 MachineInstrBuilder MIB1 =
727 BuildMI(*MF, Prev.getDebugLoc(), TII->get(Opcode), NewVR)
728 .addReg(RegX, getKillRegState(KillX))
729 .addReg(RegY, getKillRegState(KillY));
730 MachineInstrBuilder MIB2 =
731 BuildMI(*MF, Root.getDebugLoc(), TII->get(Opcode), RegC)
732 .addReg(RegA, getKillRegState(KillA))
733 .addReg(NewVR, getKillRegState(true));
734
735 setSpecialOperandAttr(Root, Prev, *MIB1, *MIB2);
736
737 // Record new instructions for insertion and old instructions for deletion.
738 InsInstrs.push_back(MIB1);
739 InsInstrs.push_back(MIB2);
740 DelInstrs.push_back(&Prev);
741 DelInstrs.push_back(&Root);
742}
743
744void TargetInstrInfo::genAlternativeCodeSequence(
Sanjay Patel387e66e2015-11-05 19:34:57 +0000745 MachineInstr &Root, MachineCombinerPattern Pattern,
Chad Rosier03a47302015-09-21 15:09:11 +0000746 SmallVectorImpl<MachineInstr *> &InsInstrs,
747 SmallVectorImpl<MachineInstr *> &DelInstrs,
748 DenseMap<unsigned, unsigned> &InstIdxForVirtReg) const {
749 MachineRegisterInfo &MRI = Root.getParent()->getParent()->getRegInfo();
750
751 // Select the previous instruction in the sequence based on the input pattern.
752 MachineInstr *Prev = nullptr;
753 switch (Pattern) {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000754 case MachineCombinerPattern::REASSOC_AX_BY:
755 case MachineCombinerPattern::REASSOC_XA_BY:
Chad Rosier03a47302015-09-21 15:09:11 +0000756 Prev = MRI.getUniqueVRegDef(Root.getOperand(1).getReg());
757 break;
Sanjay Patel387e66e2015-11-05 19:34:57 +0000758 case MachineCombinerPattern::REASSOC_AX_YB:
759 case MachineCombinerPattern::REASSOC_XA_YB:
Chad Rosier03a47302015-09-21 15:09:11 +0000760 Prev = MRI.getUniqueVRegDef(Root.getOperand(2).getReg());
761 break;
762 default:
763 break;
764 }
765
766 assert(Prev && "Unknown pattern for machine combiner");
767
768 reassociateOps(Root, *Prev, Pattern, InsInstrs, DelInstrs, InstIdxForVirtReg);
Chad Rosier03a47302015-09-21 15:09:11 +0000769}
770
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000771/// foldMemoryOperand - Same as the previous version except it allows folding
772/// of any load and store from / to any address, not just from a specific
773/// stack slot.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000774MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI,
Benjamin Kramerf1362f62015-02-28 12:04:00 +0000775 ArrayRef<unsigned> Ops,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000776 MachineInstr &LoadMI,
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000777 LiveIntervals *LIS) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000778 assert(LoadMI.canFoldAsLoad() && "LoadMI isn't foldable!");
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000779#ifndef NDEBUG
780 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000781 assert(MI.getOperand(Ops[i]).isUse() && "Folding load into def!");
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000782#endif
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000783 MachineBasicBlock &MBB = *MI.getParent();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000784 MachineFunction &MF = *MBB.getParent();
785
786 // Ask the target to do the actual folding.
Craig Topperc0196b12014-04-14 00:51:57 +0000787 MachineInstr *NewMI = nullptr;
Lang Hames39609992013-11-29 03:07:54 +0000788 int FrameIndex = 0;
789
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000790 if ((MI.getOpcode() == TargetOpcode::STACKMAP ||
791 MI.getOpcode() == TargetOpcode::PATCHPOINT) &&
Lang Hames39609992013-11-29 03:07:54 +0000792 isLoadFromStackSlot(LoadMI, FrameIndex)) {
793 // Fold stackmap/patchpoint.
794 NewMI = foldPatchpoint(MF, MI, Ops, FrameIndex, *this);
Keno Fischere70b31f2015-06-08 20:09:58 +0000795 if (NewMI)
Duncan P. N. Exon Smithaae6f3c2016-07-01 16:38:28 +0000796 NewMI = &*MBB.insert(MI, NewMI);
Lang Hames39609992013-11-29 03:07:54 +0000797 } else {
798 // Ask the target to do the actual folding.
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000799 NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, LoadMI, LIS);
Lang Hames39609992013-11-29 03:07:54 +0000800 }
Lang Hames39609992013-11-29 03:07:54 +0000801
Craig Topperc0196b12014-04-14 00:51:57 +0000802 if (!NewMI) return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000803
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000804 // Copy the memoperands from the load to the folded instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000805 if (MI.memoperands_empty()) {
806 NewMI->setMemRefs(LoadMI.memoperands_begin(), LoadMI.memoperands_end());
Andrew Tricka9f4d922013-11-14 23:45:04 +0000807 }
808 else {
809 // Handle the rare case of folding multiple loads.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000810 NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
811 for (MachineInstr::mmo_iterator I = LoadMI.memoperands_begin(),
812 E = LoadMI.memoperands_end();
813 I != E; ++I) {
Andrew Tricka9f4d922013-11-14 23:45:04 +0000814 NewMI->addMemOperand(MF, *I);
815 }
816 }
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000817 return NewMI;
818}
819
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000820bool TargetInstrInfo::isReallyTriviallyReMaterializableGeneric(
821 const MachineInstr &MI, AliasAnalysis *AA) const {
822 const MachineFunction &MF = *MI.getParent()->getParent();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000823 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000824
825 // Remat clients assume operand 0 is the defined register.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000826 if (!MI.getNumOperands() || !MI.getOperand(0).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000827 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000828 unsigned DefReg = MI.getOperand(0).getReg();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000829
830 // A sub-register definition can only be rematerialized if the instruction
831 // doesn't read the other parts of the register. Otherwise it is really a
832 // read-modify-write operation on the full virtual register which cannot be
833 // moved safely.
834 if (TargetRegisterInfo::isVirtualRegister(DefReg) &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000835 MI.getOperand(0).getSubReg() && MI.readsVirtualRegister(DefReg))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000836 return false;
837
838 // A load from a fixed stack slot can be rematerialized. This may be
839 // redundant with subsequent checks, but it's target-independent,
840 // simple, and a common case.
841 int FrameIdx = 0;
Eric Christopher9d916792014-07-23 22:12:03 +0000842 if (isLoadFromStackSlot(MI, FrameIdx) &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000843 MF.getFrameInfo()->isImmutableObjectIndex(FrameIdx))
844 return true;
845
846 // Avoid instructions obviously unsafe for remat.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000847 if (MI.isNotDuplicable() || MI.mayStore() || MI.hasUnmodeledSideEffects())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000848 return false;
849
850 // Don't remat inline asm. We have no idea how expensive it is
851 // even if it's side effect free.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000852 if (MI.isInlineAsm())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000853 return false;
854
855 // Avoid instructions which load from potentially varying memory.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000856 if (MI.mayLoad() && !MI.isInvariantLoad(AA))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000857 return false;
858
859 // If any of the registers accessed are non-constant, conservatively assume
860 // the instruction is not rematerializable.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000861 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
862 const MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000863 if (!MO.isReg()) continue;
864 unsigned Reg = MO.getReg();
865 if (Reg == 0)
866 continue;
867
868 // Check for a well-behaved physical register.
869 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
870 if (MO.isUse()) {
871 // If the physreg has no defs anywhere, it's just an ambient register
872 // and we can freely move its uses. Alternatively, if it's allocatable,
873 // it could get allocated to something with a def during allocation.
874 if (!MRI.isConstantPhysReg(Reg, MF))
875 return false;
876 } else {
877 // A physreg def. We can't remat it.
878 return false;
879 }
880 continue;
881 }
882
883 // Only allow one virtual-register def. There may be multiple defs of the
884 // same virtual register, though.
885 if (MO.isDef() && Reg != DefReg)
886 return false;
887
888 // Don't allow any virtual-register uses. Rematting an instruction with
889 // virtual register uses would length the live ranges of the uses, which
890 // is not necessarily a good idea, certainly not "trivial".
891 if (MO.isUse())
892 return false;
893 }
894
895 // Everything checked out.
896 return true;
897}
898
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000899int TargetInstrInfo::getSPAdjust(const MachineInstr &MI) const {
900 const MachineFunction *MF = MI.getParent()->getParent();
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000901 const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering();
902 bool StackGrowsDown =
903 TFI->getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
904
Matthias Braunfa3872e2015-05-18 20:27:55 +0000905 unsigned FrameSetupOpcode = getCallFrameSetupOpcode();
906 unsigned FrameDestroyOpcode = getCallFrameDestroyOpcode();
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000907
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000908 if (MI.getOpcode() != FrameSetupOpcode &&
909 MI.getOpcode() != FrameDestroyOpcode)
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000910 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000911
912 int SPAdj = MI.getOperand(0).getImm();
Guozhi Weif66d3842015-08-17 22:36:27 +0000913 SPAdj = TFI->alignSPAdjust(SPAdj);
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000914
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000915 if ((!StackGrowsDown && MI.getOpcode() == FrameSetupOpcode) ||
916 (StackGrowsDown && MI.getOpcode() == FrameDestroyOpcode))
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000917 SPAdj = -SPAdj;
918
919 return SPAdj;
920}
921
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000922/// isSchedulingBoundary - Test if the given instruction should be
923/// considered a scheduling boundary. This primarily includes labels
924/// and terminators.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000925bool TargetInstrInfo::isSchedulingBoundary(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000926 const MachineBasicBlock *MBB,
927 const MachineFunction &MF) const {
928 // Terminators and labels can't be scheduled around.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000929 if (MI.isTerminator() || MI.isPosition())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000930 return true;
931
932 // Don't attempt to schedule around any instruction that defines
933 // a stack-oriented pointer, as it's unlikely to be profitable. This
934 // saves compile time, because it doesn't require every single
935 // stack slot reference to depend on the instruction that does the
936 // modification.
Eric Christopherfc6de422014-08-05 02:39:49 +0000937 const TargetLowering &TLI = *MF.getSubtarget().getTargetLowering();
938 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000939 return MI.modifiesRegister(TLI.getStackPointerRegisterToSaveRestore(), TRI);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000940}
941
942// Provide a global flag for disabling the PreRA hazard recognizer that targets
943// may choose to honor.
944bool TargetInstrInfo::usePreRAHazardRecognizer() const {
945 return !DisableHazardRecognizer;
946}
947
948// Default implementation of CreateTargetRAHazardRecognizer.
949ScheduleHazardRecognizer *TargetInstrInfo::
Eric Christopherf047bfd2014-06-13 22:38:52 +0000950CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000951 const ScheduleDAG *DAG) const {
952 // Dummy hazard recognizer allows all instructions to issue.
953 return new ScheduleHazardRecognizer();
954}
955
956// Default implementation of CreateTargetMIHazardRecognizer.
957ScheduleHazardRecognizer *TargetInstrInfo::
958CreateTargetMIHazardRecognizer(const InstrItineraryData *II,
959 const ScheduleDAG *DAG) const {
960 return (ScheduleHazardRecognizer *)
961 new ScoreboardHazardRecognizer(II, DAG, "misched");
962}
963
964// Default implementation of CreateTargetPostRAHazardRecognizer.
965ScheduleHazardRecognizer *TargetInstrInfo::
966CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
967 const ScheduleDAG *DAG) const {
968 return (ScheduleHazardRecognizer *)
969 new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched");
970}
971
972//===----------------------------------------------------------------------===//
973// SelectionDAG latency interface.
974//===----------------------------------------------------------------------===//
975
976int
977TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
978 SDNode *DefNode, unsigned DefIdx,
979 SDNode *UseNode, unsigned UseIdx) const {
980 if (!ItinData || ItinData->isEmpty())
981 return -1;
982
983 if (!DefNode->isMachineOpcode())
984 return -1;
985
986 unsigned DefClass = get(DefNode->getMachineOpcode()).getSchedClass();
987 if (!UseNode->isMachineOpcode())
988 return ItinData->getOperandCycle(DefClass, DefIdx);
989 unsigned UseClass = get(UseNode->getMachineOpcode()).getSchedClass();
990 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
991}
992
993int TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
994 SDNode *N) const {
995 if (!ItinData || ItinData->isEmpty())
996 return 1;
997
998 if (!N->isMachineOpcode())
999 return 1;
1000
1001 return ItinData->getStageLatency(get(N->getMachineOpcode()).getSchedClass());
1002}
1003
1004//===----------------------------------------------------------------------===//
1005// MachineInstr latency interface.
1006//===----------------------------------------------------------------------===//
1007
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001008unsigned TargetInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
1009 const MachineInstr &MI) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001010 if (!ItinData || ItinData->isEmpty())
1011 return 1;
1012
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001013 unsigned Class = MI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001014 int UOps = ItinData->Itineraries[Class].NumMicroOps;
1015 if (UOps >= 0)
1016 return UOps;
1017
1018 // The # of u-ops is dynamically determined. The specific target should
1019 // override this function to return the right number.
1020 return 1;
1021}
1022
1023/// Return the default expected latency for a def based on it's opcode.
Pete Cooper11759452014-09-02 17:43:54 +00001024unsigned TargetInstrInfo::defaultDefLatency(const MCSchedModel &SchedModel,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001025 const MachineInstr &DefMI) const {
1026 if (DefMI.isTransient())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001027 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001028 if (DefMI.mayLoad())
Pete Cooper11759452014-09-02 17:43:54 +00001029 return SchedModel.LoadLatency;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001030 if (isHighLatencyDef(DefMI.getOpcode()))
Pete Cooper11759452014-09-02 17:43:54 +00001031 return SchedModel.HighLatency;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001032 return 1;
1033}
1034
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001035unsigned TargetInstrInfo::getPredicationCost(const MachineInstr &) const {
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +00001036 return 0;
1037}
1038
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001039unsigned TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
1040 const MachineInstr &MI,
1041 unsigned *PredCost) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001042 // Default to one cycle for no itinerary. However, an "empty" itinerary may
1043 // still have a MinLatency property, which getStageLatency checks.
1044 if (!ItinData)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001045 return MI.mayLoad() ? 2 : 1;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001046
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001047 return ItinData->getStageLatency(MI.getDesc().getSchedClass());
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001048}
1049
Matthias Braun88e21312015-06-13 03:42:11 +00001050bool TargetInstrInfo::hasLowDefLatency(const TargetSchedModel &SchedModel,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001051 const MachineInstr &DefMI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001052 unsigned DefIdx) const {
Matthias Braun88e21312015-06-13 03:42:11 +00001053 const InstrItineraryData *ItinData = SchedModel.getInstrItineraries();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001054 if (!ItinData || ItinData->isEmpty())
1055 return false;
1056
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001057 unsigned DefClass = DefMI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001058 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
1059 return (DefCycle != -1 && DefCycle <= 1);
1060}
1061
1062/// Both DefMI and UseMI must be valid. By default, call directly to the
1063/// itinerary. This may be overriden by the target.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001064int TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
1065 const MachineInstr &DefMI,
1066 unsigned DefIdx,
1067 const MachineInstr &UseMI,
1068 unsigned UseIdx) const {
1069 unsigned DefClass = DefMI.getDesc().getSchedClass();
1070 unsigned UseClass = UseMI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001071 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
1072}
1073
1074/// If we can determine the operand latency from the def only, without itinerary
1075/// lookup, do so. Otherwise return -1.
1076int TargetInstrInfo::computeDefOperandLatency(
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001077 const InstrItineraryData *ItinData, const MachineInstr &DefMI) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001078
1079 // Let the target hook getInstrLatency handle missing itineraries.
1080 if (!ItinData)
1081 return getInstrLatency(ItinData, DefMI);
1082
Andrew Trickde2109e2013-06-15 04:49:57 +00001083 if(ItinData->isEmpty())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001084 return defaultDefLatency(ItinData->SchedModel, DefMI);
1085
1086 // ...operand lookup required
1087 return -1;
1088}
1089
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001090unsigned TargetInstrInfo::computeOperandLatency(
1091 const InstrItineraryData *ItinData, const MachineInstr &DefMI,
1092 unsigned DefIdx, const MachineInstr *UseMI, unsigned UseIdx) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001093
Andrew Trickde2109e2013-06-15 04:49:57 +00001094 int DefLatency = computeDefOperandLatency(ItinData, DefMI);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001095 if (DefLatency >= 0)
1096 return DefLatency;
1097
1098 assert(ItinData && !ItinData->isEmpty() && "computeDefOperandLatency fail");
1099
1100 int OperLatency = 0;
1101 if (UseMI)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001102 OperLatency = getOperandLatency(ItinData, DefMI, DefIdx, *UseMI, UseIdx);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001103 else {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001104 unsigned DefClass = DefMI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001105 OperLatency = ItinData->getOperandCycle(DefClass, DefIdx);
1106 }
1107 if (OperLatency >= 0)
1108 return OperLatency;
1109
1110 // No operand latency was found.
1111 unsigned InstrLatency = getInstrLatency(ItinData, DefMI);
1112
1113 // Expected latency is the max of the stage latency and itinerary props.
Andrew Trickde2109e2013-06-15 04:49:57 +00001114 InstrLatency = std::max(InstrLatency,
1115 defaultDefLatency(ItinData->SchedModel, DefMI));
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001116 return InstrLatency;
1117}
Quentin Colombetd533cdf2014-08-11 22:17:14 +00001118
1119bool TargetInstrInfo::getRegSequenceInputs(
1120 const MachineInstr &MI, unsigned DefIdx,
1121 SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const {
Quentin Colombet8427df92014-08-12 17:11:26 +00001122 assert((MI.isRegSequence() ||
1123 MI.isRegSequenceLike()) && "Instruction do not have the proper type");
Quentin Colombetd533cdf2014-08-11 22:17:14 +00001124
1125 if (!MI.isRegSequence())
1126 return getRegSequenceLikeInputs(MI, DefIdx, InputRegs);
1127
1128 // We are looking at:
1129 // Def = REG_SEQUENCE v0, sub0, v1, sub1, ...
1130 assert(DefIdx == 0 && "REG_SEQUENCE only has one def");
1131 for (unsigned OpIdx = 1, EndOpIdx = MI.getNumOperands(); OpIdx != EndOpIdx;
1132 OpIdx += 2) {
1133 const MachineOperand &MOReg = MI.getOperand(OpIdx);
1134 const MachineOperand &MOSubIdx = MI.getOperand(OpIdx + 1);
1135 assert(MOSubIdx.isImm() &&
1136 "One of the subindex of the reg_sequence is not an immediate");
1137 // Record Reg:SubReg, SubIdx.
1138 InputRegs.push_back(RegSubRegPairAndIdx(MOReg.getReg(), MOReg.getSubReg(),
1139 (unsigned)MOSubIdx.getImm()));
1140 }
1141 return true;
1142}
Quentin Colombet7e75cba2014-08-20 21:51:26 +00001143
1144bool TargetInstrInfo::getExtractSubregInputs(
1145 const MachineInstr &MI, unsigned DefIdx,
1146 RegSubRegPairAndIdx &InputReg) const {
1147 assert((MI.isExtractSubreg() ||
1148 MI.isExtractSubregLike()) && "Instruction do not have the proper type");
1149
1150 if (!MI.isExtractSubreg())
1151 return getExtractSubregLikeInputs(MI, DefIdx, InputReg);
1152
1153 // We are looking at:
1154 // Def = EXTRACT_SUBREG v0.sub1, sub0.
1155 assert(DefIdx == 0 && "EXTRACT_SUBREG only has one def");
1156 const MachineOperand &MOReg = MI.getOperand(1);
1157 const MachineOperand &MOSubIdx = MI.getOperand(2);
1158 assert(MOSubIdx.isImm() &&
1159 "The subindex of the extract_subreg is not an immediate");
1160
1161 InputReg.Reg = MOReg.getReg();
1162 InputReg.SubReg = MOReg.getSubReg();
1163 InputReg.SubIdx = (unsigned)MOSubIdx.getImm();
1164 return true;
1165}
Quentin Colombet7e3da662014-08-20 23:49:36 +00001166
1167bool TargetInstrInfo::getInsertSubregInputs(
1168 const MachineInstr &MI, unsigned DefIdx,
1169 RegSubRegPair &BaseReg, RegSubRegPairAndIdx &InsertedReg) const {
1170 assert((MI.isInsertSubreg() ||
1171 MI.isInsertSubregLike()) && "Instruction do not have the proper type");
1172
1173 if (!MI.isInsertSubreg())
1174 return getInsertSubregLikeInputs(MI, DefIdx, BaseReg, InsertedReg);
1175
1176 // We are looking at:
1177 // Def = INSERT_SEQUENCE v0, v1, sub0.
1178 assert(DefIdx == 0 && "INSERT_SUBREG only has one def");
1179 const MachineOperand &MOBaseReg = MI.getOperand(1);
1180 const MachineOperand &MOInsertedReg = MI.getOperand(2);
1181 const MachineOperand &MOSubIdx = MI.getOperand(3);
1182 assert(MOSubIdx.isImm() &&
1183 "One of the subindex of the reg_sequence is not an immediate");
1184 BaseReg.Reg = MOBaseReg.getReg();
1185 BaseReg.SubReg = MOBaseReg.getSubReg();
1186
1187 InsertedReg.Reg = MOInsertedReg.getReg();
1188 InsertedReg.SubReg = MOInsertedReg.getSubReg();
1189 InsertedReg.SubIdx = (unsigned)MOSubIdx.getImm();
1190 return true;
1191}