blob: 1b414c1f34e2052b3d335bb09503a182c92a4eef [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
Alex Bradbury5518cbf2017-09-28 09:31:46 +000070static bool isAsmComment(const char *Str, const MCAsmInfo &MAI) {
71 return strncmp(Str, MAI.getCommentString().data(),
72 MAI.getCommentString().size()) == 0;
73}
74
Chris Lattnere98a3c32009-08-02 05:20:37 +000075/// Measure the specified inline asm to determine an approximation of its
76/// length.
Jim Grosbacha3df87f2011-03-24 18:46:34 +000077/// Comments (which run till the next SeparatorString or newline) do not
Chris Lattnere98a3c32009-08-02 05:20:37 +000078/// count as an instruction.
79/// Any other non-whitespace text is considered an instruction, with
Jim Grosbacha3df87f2011-03-24 18:46:34 +000080/// multiple instructions separated by SeparatorString or newlines.
Chris Lattnere98a3c32009-08-02 05:20:37 +000081/// Variable-length instructions are not handled here; this function
82/// may be overloaded in the target code to do that.
Alex Bradbury5518cbf2017-09-28 09:31:46 +000083/// We implement a special case of the .space directive which takes only a
84/// single integer argument in base 10 that is the size in bytes. This is a
85/// restricted form of the GAS directive in that we only interpret
86/// simple--i.e. not a logical or arithmetic expression--size values without
87/// the optional fill value. This is primarily used for creating arbitrary
88/// sized inline asm blocks for testing purposes.
Chris Lattnere98a3c32009-08-02 05:20:37 +000089unsigned TargetInstrInfo::getInlineAsmLength(const char *Str,
Chris Lattnere9a75a62009-08-22 21:43:10 +000090 const MCAsmInfo &MAI) const {
Chris Lattnere98a3c32009-08-02 05:20:37 +000091 // Count the number of instructions in the asm.
Alex Bradbury5518cbf2017-09-28 09:31:46 +000092 bool AtInsnStart = true;
93 unsigned Length = 0;
Chris Lattnere98a3c32009-08-02 05:20:37 +000094 for (; *Str; ++Str) {
Jim Grosbacha3df87f2011-03-24 18:46:34 +000095 if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(),
Matt Arsenaultaccddac2016-07-01 23:26:50 +000096 strlen(MAI.getSeparatorString())) == 0) {
Alex Bradbury5518cbf2017-09-28 09:31:46 +000097 AtInsnStart = true;
98 } else if (isAsmComment(Str, MAI)) {
Matt Arsenaultaccddac2016-07-01 23:26:50 +000099 // Stop counting as an instruction after a comment until the next
100 // separator.
Alex Bradbury5518cbf2017-09-28 09:31:46 +0000101 AtInsnStart = false;
Chris Lattnere98a3c32009-08-02 05:20:37 +0000102 }
Matt Arsenaultaccddac2016-07-01 23:26:50 +0000103
Alex Bradbury5518cbf2017-09-28 09:31:46 +0000104 if (AtInsnStart && !std::isspace(static_cast<unsigned char>(*Str))) {
105 unsigned AddLength = MAI.getMaxInstLength();
106 if (strncmp(Str, ".space", 6) == 0) {
107 char *EStr;
108 int SpaceSize;
109 SpaceSize = strtol(Str + 6, &EStr, 10);
110 SpaceSize = SpaceSize < 0 ? 0 : SpaceSize;
111 while (*EStr != '\n' && std::isspace(static_cast<unsigned char>(*EStr)))
112 ++EStr;
113 if (*EStr == '\0' || *EStr == '\n' ||
114 isAsmComment(EStr, MAI)) // Successfully parsed .space argument
115 AddLength = SpaceSize;
116 }
117 Length += AddLength;
118 AtInsnStart = false;
Matt Arsenaultaccddac2016-07-01 23:26:50 +0000119 }
Chris Lattnere98a3c32009-08-02 05:20:37 +0000120 }
Andrew Trickc416ba62010-12-24 04:28:06 +0000121
Alex Bradbury5518cbf2017-09-28 09:31:46 +0000122 return Length;
Chris Lattnere98a3c32009-08-02 05:20:37 +0000123}
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000124
125/// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
126/// after it, replacing it with an unconditional branch to NewDest.
127void
128TargetInstrInfo::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail,
129 MachineBasicBlock *NewDest) const {
130 MachineBasicBlock *MBB = Tail->getParent();
131
132 // Remove all the old successors of MBB from the CFG.
133 while (!MBB->succ_empty())
134 MBB->removeSuccessor(MBB->succ_begin());
135
Justin Bognerec5ea362016-03-25 18:38:48 +0000136 // Save off the debug loc before erasing the instruction.
137 DebugLoc DL = Tail->getDebugLoc();
138
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000139 // Remove all the dead instructions from the end of MBB.
140 MBB->erase(Tail, MBB->end());
141
142 // If MBB isn't immediately before MBB, insert a branch to it.
143 if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest))
Matt Arsenaulte8e0f5c2016-09-14 17:24:15 +0000144 insertBranch(*MBB, NewDest, nullptr, SmallVector<MachineOperand, 0>(), DL);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000145 MBB->addSuccessor(NewDest);
146}
147
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000148MachineInstr *TargetInstrInfo::commuteInstructionImpl(MachineInstr &MI,
149 bool NewMI, unsigned Idx1,
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000150 unsigned Idx2) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000151 const MCInstrDesc &MCID = MI.getDesc();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000152 bool HasDef = MCID.getNumDefs();
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000153 if (HasDef && !MI.getOperand(0).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000154 // No idea how to commute this instruction. Target should implement its own.
Craig Topperc0196b12014-04-14 00:51:57 +0000155 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000156
Richard Trieue778e872015-09-28 22:54:43 +0000157 unsigned CommutableOpIdx1 = Idx1; (void)CommutableOpIdx1;
158 unsigned CommutableOpIdx2 = Idx2; (void)CommutableOpIdx2;
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000159 assert(findCommutedOpIndices(MI, CommutableOpIdx1, CommutableOpIdx2) &&
160 CommutableOpIdx1 == Idx1 && CommutableOpIdx2 == Idx2 &&
161 "TargetInstrInfo::CommuteInstructionImpl(): not commutable operands.");
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000162 assert(MI.getOperand(Idx1).isReg() && MI.getOperand(Idx2).isReg() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000163 "This only knows how to commute register operands so far");
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000164
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000165 unsigned Reg0 = HasDef ? MI.getOperand(0).getReg() : 0;
166 unsigned Reg1 = MI.getOperand(Idx1).getReg();
167 unsigned Reg2 = MI.getOperand(Idx2).getReg();
168 unsigned SubReg0 = HasDef ? MI.getOperand(0).getSubReg() : 0;
169 unsigned SubReg1 = MI.getOperand(Idx1).getSubReg();
170 unsigned SubReg2 = MI.getOperand(Idx2).getSubReg();
171 bool Reg1IsKill = MI.getOperand(Idx1).isKill();
172 bool Reg2IsKill = MI.getOperand(Idx2).isKill();
173 bool Reg1IsUndef = MI.getOperand(Idx1).isUndef();
174 bool Reg2IsUndef = MI.getOperand(Idx2).isUndef();
175 bool Reg1IsInternal = MI.getOperand(Idx1).isInternalRead();
176 bool Reg2IsInternal = MI.getOperand(Idx2).isInternalRead();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000177 // If destination is tied to either of the commuted source register, then
178 // it must be updated.
179 if (HasDef && Reg0 == Reg1 &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000180 MI.getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000181 Reg2IsKill = false;
182 Reg0 = Reg2;
183 SubReg0 = SubReg2;
184 } else if (HasDef && Reg0 == Reg2 &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000185 MI.getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000186 Reg1IsKill = false;
187 Reg0 = Reg1;
188 SubReg0 = SubReg1;
189 }
190
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000191 MachineInstr *CommutedMI = nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000192 if (NewMI) {
193 // Create a new instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000194 MachineFunction &MF = *MI.getParent()->getParent();
195 CommutedMI = MF.CloneMachineInstr(&MI);
196 } else {
197 CommutedMI = &MI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000198 }
199
200 if (HasDef) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000201 CommutedMI->getOperand(0).setReg(Reg0);
202 CommutedMI->getOperand(0).setSubReg(SubReg0);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000203 }
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000204 CommutedMI->getOperand(Idx2).setReg(Reg1);
205 CommutedMI->getOperand(Idx1).setReg(Reg2);
206 CommutedMI->getOperand(Idx2).setSubReg(SubReg1);
207 CommutedMI->getOperand(Idx1).setSubReg(SubReg2);
208 CommutedMI->getOperand(Idx2).setIsKill(Reg1IsKill);
209 CommutedMI->getOperand(Idx1).setIsKill(Reg2IsKill);
210 CommutedMI->getOperand(Idx2).setIsUndef(Reg1IsUndef);
211 CommutedMI->getOperand(Idx1).setIsUndef(Reg2IsUndef);
212 CommutedMI->getOperand(Idx2).setIsInternalRead(Reg1IsInternal);
213 CommutedMI->getOperand(Idx1).setIsInternalRead(Reg2IsInternal);
214 return CommutedMI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000215}
216
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000217MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr &MI, bool NewMI,
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000218 unsigned OpIdx1,
219 unsigned OpIdx2) const {
220 // If OpIdx1 or OpIdx2 is not specified, then this method is free to choose
221 // any commutable operand, which is done in findCommutedOpIndices() method
222 // called below.
223 if ((OpIdx1 == CommuteAnyOperandIndex || OpIdx2 == CommuteAnyOperandIndex) &&
224 !findCommutedOpIndices(MI, OpIdx1, OpIdx2)) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000225 assert(MI.isCommutable() &&
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000226 "Precondition violation: MI must be commutable.");
227 return nullptr;
228 }
229 return commuteInstructionImpl(MI, NewMI, OpIdx1, OpIdx2);
230}
231
232bool TargetInstrInfo::fixCommutedOpIndices(unsigned &ResultIdx1,
233 unsigned &ResultIdx2,
234 unsigned CommutableOpIdx1,
235 unsigned CommutableOpIdx2) {
236 if (ResultIdx1 == CommuteAnyOperandIndex &&
237 ResultIdx2 == CommuteAnyOperandIndex) {
238 ResultIdx1 = CommutableOpIdx1;
239 ResultIdx2 = CommutableOpIdx2;
240 } else if (ResultIdx1 == CommuteAnyOperandIndex) {
241 if (ResultIdx2 == CommutableOpIdx1)
242 ResultIdx1 = CommutableOpIdx2;
243 else if (ResultIdx2 == CommutableOpIdx2)
244 ResultIdx1 = CommutableOpIdx1;
245 else
246 return false;
247 } else if (ResultIdx2 == CommuteAnyOperandIndex) {
248 if (ResultIdx1 == CommutableOpIdx1)
249 ResultIdx2 = CommutableOpIdx2;
250 else if (ResultIdx1 == CommutableOpIdx2)
251 ResultIdx2 = CommutableOpIdx1;
252 else
253 return false;
254 } else
255 // Check that the result operand indices match the given commutable
256 // operand indices.
257 return (ResultIdx1 == CommutableOpIdx1 && ResultIdx2 == CommutableOpIdx2) ||
258 (ResultIdx1 == CommutableOpIdx2 && ResultIdx2 == CommutableOpIdx1);
259
260 return true;
261}
262
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000263bool TargetInstrInfo::findCommutedOpIndices(MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000264 unsigned &SrcOpIdx1,
265 unsigned &SrcOpIdx2) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000266 assert(!MI.isBundle() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000267 "TargetInstrInfo::findCommutedOpIndices() can't handle bundles");
268
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000269 const MCInstrDesc &MCID = MI.getDesc();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000270 if (!MCID.isCommutable())
271 return false;
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000272
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000273 // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this
274 // is not true, then the target must implement this.
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000275 unsigned CommutableOpIdx1 = MCID.getNumDefs();
276 unsigned CommutableOpIdx2 = CommutableOpIdx1 + 1;
277 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2,
278 CommutableOpIdx1, CommutableOpIdx2))
279 return false;
280
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000281 if (!MI.getOperand(SrcOpIdx1).isReg() || !MI.getOperand(SrcOpIdx2).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000282 // No idea.
283 return false;
284 return true;
285}
286
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000287bool TargetInstrInfo::isUnpredicatedTerminator(const MachineInstr &MI) const {
288 if (!MI.isTerminator()) return false;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000289
290 // Conditional branch is a special case.
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000291 if (MI.isBranch() && !MI.isBarrier())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000292 return true;
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000293 if (!MI.isPredicable())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000294 return true;
295 return !isPredicated(MI);
296}
297
Ahmed Bougachac88bf542015-06-11 19:30:37 +0000298bool TargetInstrInfo::PredicateInstruction(
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000299 MachineInstr &MI, ArrayRef<MachineOperand> Pred) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000300 bool MadeChange = false;
301
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000302 assert(!MI.isBundle() &&
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000303 "TargetInstrInfo::PredicateInstruction() can't handle bundles");
304
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000305 const MCInstrDesc &MCID = MI.getDesc();
306 if (!MI.isPredicable())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000307 return false;
308
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000309 for (unsigned j = 0, i = 0, e = MI.getNumOperands(); i != e; ++i) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000310 if (MCID.OpInfo[i].isPredicate()) {
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +0000311 MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000312 if (MO.isReg()) {
313 MO.setReg(Pred[j].getReg());
314 MadeChange = true;
315 } else if (MO.isImm()) {
316 MO.setImm(Pred[j].getImm());
317 MadeChange = true;
318 } else if (MO.isMBB()) {
319 MO.setMBB(Pred[j].getMBB());
320 MadeChange = true;
321 }
322 ++j;
323 }
324 }
325 return MadeChange;
326}
327
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000328bool TargetInstrInfo::hasLoadFromStackSlot(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000329 const MachineMemOperand *&MMO,
330 int &FrameIndex) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000331 for (MachineInstr::mmo_iterator o = MI.memoperands_begin(),
332 oe = MI.memoperands_end();
333 o != oe; ++o) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000334 if ((*o)->isLoad()) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000335 if (const FixedStackPseudoSourceValue *Value =
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000336 dyn_cast_or_null<FixedStackPseudoSourceValue>(
337 (*o)->getPseudoValue())) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000338 FrameIndex = Value->getFrameIndex();
339 MMO = *o;
340 return true;
341 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000342 }
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000343 }
344 return false;
345}
346
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000347bool TargetInstrInfo::hasStoreToStackSlot(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000348 const MachineMemOperand *&MMO,
349 int &FrameIndex) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000350 for (MachineInstr::mmo_iterator o = MI.memoperands_begin(),
351 oe = MI.memoperands_end();
352 o != oe; ++o) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000353 if ((*o)->isStore()) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000354 if (const FixedStackPseudoSourceValue *Value =
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000355 dyn_cast_or_null<FixedStackPseudoSourceValue>(
356 (*o)->getPseudoValue())) {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000357 FrameIndex = Value->getFrameIndex();
358 MMO = *o;
359 return true;
360 }
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000361 }
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000362 }
363 return false;
364}
365
Andrew Trick10d5be42013-11-17 01:36:23 +0000366bool TargetInstrInfo::getStackSlotRange(const TargetRegisterClass *RC,
367 unsigned SubIdx, unsigned &Size,
368 unsigned &Offset,
Eric Christopher7585fb22015-03-19 23:06:21 +0000369 const MachineFunction &MF) const {
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000370 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Andrew Trick10d5be42013-11-17 01:36:23 +0000371 if (!SubIdx) {
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000372 Size = TRI->getSpillSize(*RC);
Andrew Trick10d5be42013-11-17 01:36:23 +0000373 Offset = 0;
374 return true;
375 }
Eric Christopher7585fb22015-03-19 23:06:21 +0000376 unsigned BitSize = TRI->getSubRegIdxSize(SubIdx);
Andrew Trick10d5be42013-11-17 01:36:23 +0000377 // Convert bit size to byte size to be consistent with
378 // MCRegisterClass::getSize().
379 if (BitSize % 8)
380 return false;
381
Eric Christopher7585fb22015-03-19 23:06:21 +0000382 int BitOffset = TRI->getSubRegIdxOffset(SubIdx);
Andrew Trick10d5be42013-11-17 01:36:23 +0000383 if (BitOffset < 0 || BitOffset % 8)
384 return false;
385
386 Size = BitSize /= 8;
387 Offset = (unsigned)BitOffset / 8;
388
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000389 assert(TRI->getSpillSize(*RC) >= (Offset + Size) && "bad subregister range");
Andrew Trick10d5be42013-11-17 01:36:23 +0000390
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000391 if (!MF.getDataLayout().isLittleEndian()) {
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +0000392 Offset = TRI->getSpillSize(*RC) - (Offset + Size);
Andrew Trick10d5be42013-11-17 01:36:23 +0000393 }
394 return true;
395}
396
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000397void TargetInstrInfo::reMaterialize(MachineBasicBlock &MBB,
398 MachineBasicBlock::iterator I,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000399 unsigned DestReg, unsigned SubIdx,
400 const MachineInstr &Orig,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000401 const TargetRegisterInfo &TRI) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000402 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(&Orig);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000403 MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI);
404 MBB.insert(I, MI);
405}
406
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000407bool TargetInstrInfo::produceSameValue(const MachineInstr &MI0,
408 const MachineInstr &MI1,
409 const MachineRegisterInfo *MRI) const {
410 return MI0.isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000411}
412
Matthias Braun55bc9b32017-08-22 23:56:30 +0000413MachineInstr &TargetInstrInfo::duplicate(MachineBasicBlock &MBB,
414 MachineBasicBlock::iterator InsertBefore, const MachineInstr &Orig) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000415 assert(!Orig.isNotDuplicable() && "Instruction cannot be duplicated");
Matthias Braun55bc9b32017-08-22 23:56:30 +0000416 MachineFunction &MF = *MBB.getParent();
417 return MF.CloneMachineInstrBundle(MBB, InsertBefore, Orig);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000418}
419
420// If the COPY instruction in MI can be folded to a stack operation, return
421// the register class to use.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000422static const TargetRegisterClass *canFoldCopy(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000423 unsigned FoldIdx) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000424 assert(MI.isCopy() && "MI must be a COPY instruction");
425 if (MI.getNumOperands() != 2)
Craig Topperc0196b12014-04-14 00:51:57 +0000426 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000427 assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand");
428
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000429 const MachineOperand &FoldOp = MI.getOperand(FoldIdx);
430 const MachineOperand &LiveOp = MI.getOperand(1 - FoldIdx);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000431
432 if (FoldOp.getSubReg() || LiveOp.getSubReg())
Craig Topperc0196b12014-04-14 00:51:57 +0000433 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000434
435 unsigned FoldReg = FoldOp.getReg();
436 unsigned LiveReg = LiveOp.getReg();
437
438 assert(TargetRegisterInfo::isVirtualRegister(FoldReg) &&
439 "Cannot fold physregs");
440
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000441 const MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000442 const TargetRegisterClass *RC = MRI.getRegClass(FoldReg);
443
444 if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg()))
Craig Topperc0196b12014-04-14 00:51:57 +0000445 return RC->contains(LiveOp.getReg()) ? RC : nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000446
447 if (RC->hasSubClassEq(MRI.getRegClass(LiveReg)))
448 return RC;
449
450 // FIXME: Allow folding when register classes are memory compatible.
Craig Topperc0196b12014-04-14 00:51:57 +0000451 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000452}
453
Hans Wennborg9b9a5352017-04-21 21:48:41 +0000454void TargetInstrInfo::getNoop(MCInst &NopInst) const {
455 llvm_unreachable("Not implemented");
Rafael Espindola6865d6f2014-09-15 18:32:58 +0000456}
457
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000458static MachineInstr *foldPatchpoint(MachineFunction &MF, MachineInstr &MI,
Benjamin Kramerf1362f62015-02-28 12:04:00 +0000459 ArrayRef<unsigned> Ops, int FrameIndex,
Lang Hames39609992013-11-29 03:07:54 +0000460 const TargetInstrInfo &TII) {
461 unsigned StartIdx = 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000462 switch (MI.getOpcode()) {
Philip Reames570dd002016-08-23 21:21:43 +0000463 case TargetOpcode::STACKMAP: {
464 // StackMapLiveValues are foldable
Sanjoy Das6d3c9132016-08-30 01:38:59 +0000465 StartIdx = StackMapOpers(&MI).getVarIdx();
Lang Hames39609992013-11-29 03:07:54 +0000466 break;
Philip Reames570dd002016-08-23 21:21:43 +0000467 }
Lang Hames39609992013-11-29 03:07:54 +0000468 case TargetOpcode::PATCHPOINT: {
Philip Reames570dd002016-08-23 21:21:43 +0000469 // For PatchPoint, the call args are not foldable (even if reported in the
470 // stackmap e.g. via anyregcc).
Sanjoy Das6d3c9132016-08-30 01:38:59 +0000471 StartIdx = PatchPointOpers(&MI).getVarIdx();
Lang Hames39609992013-11-29 03:07:54 +0000472 break;
473 }
Philip Reames2b1084a2016-08-31 15:12:17 +0000474 case TargetOpcode::STATEPOINT: {
475 // For statepoints, fold deopt and gc arguments, but not call arguments.
476 StartIdx = StatepointOpers(&MI).getVarIdx();
477 break;
478 }
Lang Hames39609992013-11-29 03:07:54 +0000479 default:
480 llvm_unreachable("unexpected stackmap opcode");
481 }
482
483 // Return false if any operands requested for folding are not foldable (not
484 // part of the stackmap's live values).
Benjamin Kramerf1362f62015-02-28 12:04:00 +0000485 for (unsigned Op : Ops) {
486 if (Op < StartIdx)
Craig Topperc0196b12014-04-14 00:51:57 +0000487 return nullptr;
Lang Hames39609992013-11-29 03:07:54 +0000488 }
489
490 MachineInstr *NewMI =
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000491 MF.CreateMachineInstr(TII.get(MI.getOpcode()), MI.getDebugLoc(), true);
Lang Hames39609992013-11-29 03:07:54 +0000492 MachineInstrBuilder MIB(MF, NewMI);
493
494 // No need to fold return, the meta data, and function arguments
495 for (unsigned i = 0; i < StartIdx; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000496 MIB.add(MI.getOperand(i));
Lang Hames39609992013-11-29 03:07:54 +0000497
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000498 for (unsigned i = StartIdx; i < MI.getNumOperands(); ++i) {
499 MachineOperand &MO = MI.getOperand(i);
David Majnemer0d955d02016-08-11 22:21:41 +0000500 if (is_contained(Ops, i)) {
Lang Hames39609992013-11-29 03:07:54 +0000501 unsigned SpillSize;
502 unsigned SpillOffset;
503 // Compute the spill slot size and offset.
504 const TargetRegisterClass *RC =
505 MF.getRegInfo().getRegClass(MO.getReg());
Eric Christopher7585fb22015-03-19 23:06:21 +0000506 bool Valid =
507 TII.getStackSlotRange(RC, MO.getSubReg(), SpillSize, SpillOffset, MF);
Lang Hames39609992013-11-29 03:07:54 +0000508 if (!Valid)
509 report_fatal_error("cannot spill patchpoint subregister operand");
510 MIB.addImm(StackMaps::IndirectMemRefOp);
511 MIB.addImm(SpillSize);
512 MIB.addFrameIndex(FrameIndex);
Lang Hames2ce64a72013-12-07 03:30:59 +0000513 MIB.addImm(SpillOffset);
Lang Hames39609992013-11-29 03:07:54 +0000514 }
515 else
Diana Picus116bbab2017-01-13 09:58:52 +0000516 MIB.add(MO);
Lang Hames39609992013-11-29 03:07:54 +0000517 }
518 return NewMI;
519}
520
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000521MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI,
522 ArrayRef<unsigned> Ops, int FI,
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000523 LiveIntervals *LIS) const {
Justin Lebar0af80cd2016-07-15 18:26:59 +0000524 auto Flags = MachineMemOperand::MONone;
Sanjay Patel232669d2017-10-02 15:02:06 +0000525 for (unsigned OpIdx : Ops)
526 Flags |= MI.getOperand(OpIdx).isDef() ? MachineMemOperand::MOStore
527 : MachineMemOperand::MOLoad;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000528
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000529 MachineBasicBlock *MBB = MI.getParent();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000530 assert(MBB && "foldMemoryOperand needs an inserted instruction");
531 MachineFunction &MF = *MBB->getParent();
532
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000533 // If we're not folding a load into a subreg, the size of the load is the
534 // size of the spill slot. But if we are, we need to figure out what the
535 // actual load size is.
536 int64_t MemSize = 0;
537 const MachineFrameInfo &MFI = MF.getFrameInfo();
538 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
539
540 if (Flags & MachineMemOperand::MOStore) {
541 MemSize = MFI.getObjectSize(FI);
542 } else {
Sanjay Patel232669d2017-10-02 15:02:06 +0000543 for (unsigned OpIdx : Ops) {
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000544 int64_t OpSize = MFI.getObjectSize(FI);
545
Sanjay Patel232669d2017-10-02 15:02:06 +0000546 if (auto SubReg = MI.getOperand(OpIdx).getSubReg()) {
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000547 unsigned SubRegSize = TRI->getSubRegIdxSize(SubReg);
548 if (SubRegSize > 0 && !(SubRegSize % 8))
549 OpSize = SubRegSize / 8;
550 }
551
552 MemSize = std::max(MemSize, OpSize);
553 }
554 }
555
556 assert(MemSize && "Did not expect a zero-sized stack slot");
557
Craig Topperc0196b12014-04-14 00:51:57 +0000558 MachineInstr *NewMI = nullptr;
Lang Hames39609992013-11-29 03:07:54 +0000559
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000560 if (MI.getOpcode() == TargetOpcode::STACKMAP ||
Philip Reames2b1084a2016-08-31 15:12:17 +0000561 MI.getOpcode() == TargetOpcode::PATCHPOINT ||
562 MI.getOpcode() == TargetOpcode::STATEPOINT) {
Lang Hames39609992013-11-29 03:07:54 +0000563 // Fold stackmap/patchpoint.
564 NewMI = foldPatchpoint(MF, MI, Ops, FI, *this);
Keno Fischere70b31f2015-06-08 20:09:58 +0000565 if (NewMI)
566 MBB->insert(MI, NewMI);
Lang Hames39609992013-11-29 03:07:54 +0000567 } else {
568 // Ask the target to do the actual folding.
Jonas Paulsson8e5b0c62016-05-10 08:09:37 +0000569 NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, FI, LIS);
Lang Hames39609992013-11-29 03:07:54 +0000570 }
Keno Fischere70b31f2015-06-08 20:09:58 +0000571
Lang Hames39609992013-11-29 03:07:54 +0000572 if (NewMI) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000573 NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000574 // Add a memory operand, foldMemoryOperandImpl doesn't do that.
575 assert((!(Flags & MachineMemOperand::MOStore) ||
576 NewMI->mayStore()) &&
577 "Folded a def to a non-store!");
578 assert((!(Flags & MachineMemOperand::MOLoad) ||
579 NewMI->mayLoad()) &&
580 "Folded a use to a non-load!");
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000581 assert(MFI.getObjectOffset(FI) != -1);
Alex Lorenze40c8a22015-08-11 23:09:45 +0000582 MachineMemOperand *MMO = MF.getMachineMemOperand(
Michael Kuperstein47eb85a2016-11-23 18:33:49 +0000583 MachinePointerInfo::getFixedStack(MF, FI), Flags, MemSize,
Alex Lorenze40c8a22015-08-11 23:09:45 +0000584 MFI.getObjectAlignment(FI));
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000585 NewMI->addMemOperand(MF, MMO);
586
Keno Fischere70b31f2015-06-08 20:09:58 +0000587 return NewMI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000588 }
589
590 // Straight COPY may fold as load/store.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000591 if (!MI.isCopy() || Ops.size() != 1)
Craig Topperc0196b12014-04-14 00:51:57 +0000592 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000593
594 const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]);
595 if (!RC)
Craig Topperc0196b12014-04-14 00:51:57 +0000596 return nullptr;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000597
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000598 const MachineOperand &MO = MI.getOperand(1 - Ops[0]);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000599 MachineBasicBlock::iterator Pos = MI;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000600
601 if (Flags == MachineMemOperand::MOStore)
602 storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
603 else
604 loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
Duncan P. N. Exon Smithaae6f3c2016-07-01 16:38:28 +0000605 return &*--Pos;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000606}
607
Sanjay Patel7998d372017-10-02 14:03:17 +0000608MachineInstr *TargetInstrInfo::foldMemoryOperand(MachineInstr &MI,
609 ArrayRef<unsigned> Ops,
610 MachineInstr &LoadMI,
611 LiveIntervals *LIS) const {
612 assert(LoadMI.canFoldAsLoad() && "LoadMI isn't foldable!");
613#ifndef NDEBUG
Sanjay Patel232669d2017-10-02 15:02:06 +0000614 for (unsigned OpIdx : Ops)
615 assert(MI.getOperand(OpIdx).isUse() && "Folding load into def!");
Sanjay Patel7998d372017-10-02 14:03:17 +0000616#endif
Sanjay Patel232669d2017-10-02 15:02:06 +0000617
Sanjay Patel7998d372017-10-02 14:03:17 +0000618 MachineBasicBlock &MBB = *MI.getParent();
619 MachineFunction &MF = *MBB.getParent();
620
621 // Ask the target to do the actual folding.
622 MachineInstr *NewMI = nullptr;
623 int FrameIndex = 0;
624
625 if ((MI.getOpcode() == TargetOpcode::STACKMAP ||
626 MI.getOpcode() == TargetOpcode::PATCHPOINT ||
627 MI.getOpcode() == TargetOpcode::STATEPOINT) &&
628 isLoadFromStackSlot(LoadMI, FrameIndex)) {
629 // Fold stackmap/patchpoint.
630 NewMI = foldPatchpoint(MF, MI, Ops, FrameIndex, *this);
631 if (NewMI)
632 NewMI = &*MBB.insert(MI, NewMI);
633 } else {
634 // Ask the target to do the actual folding.
635 NewMI = foldMemoryOperandImpl(MF, MI, Ops, MI, LoadMI, LIS);
636 }
637
638 if (!NewMI)
639 return nullptr;
640
641 // Copy the memoperands from the load to the folded instruction.
642 if (MI.memoperands_empty()) {
643 NewMI->setMemRefs(LoadMI.memoperands_begin(), LoadMI.memoperands_end());
644 } else {
645 // Handle the rare case of folding multiple loads.
646 NewMI->setMemRefs(MI.memoperands_begin(), MI.memoperands_end());
647 for (MachineInstr::mmo_iterator I = LoadMI.memoperands_begin(),
648 E = LoadMI.memoperands_end();
649 I != E; ++I) {
650 NewMI->addMemOperand(MF, *I);
651 }
652 }
653 return NewMI;
654}
655
Chad Rosier03a47302015-09-21 15:09:11 +0000656bool TargetInstrInfo::hasReassociableOperands(
657 const MachineInstr &Inst, const MachineBasicBlock *MBB) const {
658 const MachineOperand &Op1 = Inst.getOperand(1);
659 const MachineOperand &Op2 = Inst.getOperand(2);
660 const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
661
662 // We need virtual register definitions for the operands that we will
663 // reassociate.
664 MachineInstr *MI1 = nullptr;
665 MachineInstr *MI2 = nullptr;
666 if (Op1.isReg() && TargetRegisterInfo::isVirtualRegister(Op1.getReg()))
667 MI1 = MRI.getUniqueVRegDef(Op1.getReg());
668 if (Op2.isReg() && TargetRegisterInfo::isVirtualRegister(Op2.getReg()))
669 MI2 = MRI.getUniqueVRegDef(Op2.getReg());
670
671 // And they need to be in the trace (otherwise, they won't have a depth).
Rafael Espindola84921b92015-10-24 23:11:13 +0000672 return MI1 && MI2 && MI1->getParent() == MBB && MI2->getParent() == MBB;
Chad Rosier03a47302015-09-21 15:09:11 +0000673}
674
675bool TargetInstrInfo::hasReassociableSibling(const MachineInstr &Inst,
676 bool &Commuted) const {
677 const MachineBasicBlock *MBB = Inst.getParent();
678 const MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
679 MachineInstr *MI1 = MRI.getUniqueVRegDef(Inst.getOperand(1).getReg());
680 MachineInstr *MI2 = MRI.getUniqueVRegDef(Inst.getOperand(2).getReg());
681 unsigned AssocOpcode = Inst.getOpcode();
682
683 // If only one operand has the same opcode and it's the second source operand,
684 // the operands must be commuted.
685 Commuted = MI1->getOpcode() != AssocOpcode && MI2->getOpcode() == AssocOpcode;
686 if (Commuted)
687 std::swap(MI1, MI2);
688
689 // 1. The previous instruction must be the same type as Inst.
690 // 2. The previous instruction must have virtual register definitions for its
691 // operands in the same basic block as Inst.
692 // 3. The previous instruction's result must only be used by Inst.
Rafael Espindola84921b92015-10-24 23:11:13 +0000693 return MI1->getOpcode() == AssocOpcode &&
694 hasReassociableOperands(*MI1, MBB) &&
695 MRI.hasOneNonDBGUse(MI1->getOperand(0).getReg());
Chad Rosier03a47302015-09-21 15:09:11 +0000696}
697
698// 1. The operation must be associative and commutative.
699// 2. The instruction must have virtual register definitions for its
700// operands in the same basic block.
701// 3. The instruction must have a reassociable sibling.
702bool TargetInstrInfo::isReassociationCandidate(const MachineInstr &Inst,
703 bool &Commuted) const {
Rafael Espindola84921b92015-10-24 23:11:13 +0000704 return isAssociativeAndCommutative(Inst) &&
705 hasReassociableOperands(Inst, Inst.getParent()) &&
706 hasReassociableSibling(Inst, Commuted);
Chad Rosier03a47302015-09-21 15:09:11 +0000707}
708
709// The concept of the reassociation pass is that these operations can benefit
710// from this kind of transformation:
711//
712// A = ? op ?
713// B = A op X (Prev)
714// C = B op Y (Root)
715// -->
716// A = ? op ?
717// B = X op Y
718// C = A op B
719//
720// breaking the dependency between A and B, allowing them to be executed in
721// parallel (or back-to-back in a pipeline) instead of depending on each other.
722
723// FIXME: This has the potential to be expensive (compile time) while not
724// improving the code at all. Some ways to limit the overhead:
725// 1. Track successful transforms; bail out if hit rate gets too low.
726// 2. Only enable at -O3 or some other non-default optimization level.
727// 3. Pre-screen pattern candidates here: if an operand of the previous
728// instruction is known to not increase the critical path, then don't match
729// that pattern.
730bool TargetInstrInfo::getMachineCombinerPatterns(
731 MachineInstr &Root,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000732 SmallVectorImpl<MachineCombinerPattern> &Patterns) const {
Chad Rosier03a47302015-09-21 15:09:11 +0000733 bool Commute;
734 if (isReassociationCandidate(Root, Commute)) {
735 // We found a sequence of instructions that may be suitable for a
736 // reassociation of operands to increase ILP. Specify each commutation
737 // possibility for the Prev instruction in the sequence and let the
738 // machine combiner decide if changing the operands is worthwhile.
739 if (Commute) {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000740 Patterns.push_back(MachineCombinerPattern::REASSOC_AX_YB);
741 Patterns.push_back(MachineCombinerPattern::REASSOC_XA_YB);
Chad Rosier03a47302015-09-21 15:09:11 +0000742 } else {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000743 Patterns.push_back(MachineCombinerPattern::REASSOC_AX_BY);
744 Patterns.push_back(MachineCombinerPattern::REASSOC_XA_BY);
Chad Rosier03a47302015-09-21 15:09:11 +0000745 }
746 return true;
747 }
748
749 return false;
750}
Sanjay Patel7998d372017-10-02 14:03:17 +0000751
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000752/// Return true when a code sequence can improve loop throughput.
753bool
754TargetInstrInfo::isThroughputPattern(MachineCombinerPattern Pattern) const {
755 return false;
756}
Sanjay Patel7998d372017-10-02 14:03:17 +0000757
Chad Rosier03a47302015-09-21 15:09:11 +0000758/// Attempt the reassociation transformation to reduce critical path length.
759/// See the above comments before getMachineCombinerPatterns().
760void TargetInstrInfo::reassociateOps(
761 MachineInstr &Root, MachineInstr &Prev,
Sanjay Patel387e66e2015-11-05 19:34:57 +0000762 MachineCombinerPattern Pattern,
Chad Rosier03a47302015-09-21 15:09:11 +0000763 SmallVectorImpl<MachineInstr *> &InsInstrs,
764 SmallVectorImpl<MachineInstr *> &DelInstrs,
765 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg) const {
766 MachineFunction *MF = Root.getParent()->getParent();
767 MachineRegisterInfo &MRI = MF->getRegInfo();
768 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
769 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
770 const TargetRegisterClass *RC = Root.getRegClassConstraint(0, TII, TRI);
771
772 // This array encodes the operand index for each parameter because the
773 // operands may be commuted. Each row corresponds to a pattern value,
774 // and each column specifies the index of A, B, X, Y.
775 unsigned OpIdx[4][4] = {
776 { 1, 1, 2, 2 },
777 { 1, 2, 2, 1 },
778 { 2, 1, 1, 2 },
779 { 2, 2, 1, 1 }
780 };
781
Sanjay Patel387e66e2015-11-05 19:34:57 +0000782 int Row;
783 switch (Pattern) {
784 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break;
785 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break;
786 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break;
787 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break;
788 default: llvm_unreachable("unexpected MachineCombinerPattern");
789 }
790
791 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]);
792 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]);
793 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]);
794 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]);
Chad Rosier03a47302015-09-21 15:09:11 +0000795 MachineOperand &OpC = Root.getOperand(0);
796
797 unsigned RegA = OpA.getReg();
798 unsigned RegB = OpB.getReg();
799 unsigned RegX = OpX.getReg();
800 unsigned RegY = OpY.getReg();
801 unsigned RegC = OpC.getReg();
802
803 if (TargetRegisterInfo::isVirtualRegister(RegA))
804 MRI.constrainRegClass(RegA, RC);
805 if (TargetRegisterInfo::isVirtualRegister(RegB))
806 MRI.constrainRegClass(RegB, RC);
807 if (TargetRegisterInfo::isVirtualRegister(RegX))
808 MRI.constrainRegClass(RegX, RC);
809 if (TargetRegisterInfo::isVirtualRegister(RegY))
810 MRI.constrainRegClass(RegY, RC);
811 if (TargetRegisterInfo::isVirtualRegister(RegC))
812 MRI.constrainRegClass(RegC, RC);
813
814 // Create a new virtual register for the result of (X op Y) instead of
815 // recycling RegB because the MachineCombiner's computation of the critical
816 // path requires a new register definition rather than an existing one.
817 unsigned NewVR = MRI.createVirtualRegister(RC);
818 InstrIdxForVirtReg.insert(std::make_pair(NewVR, 0));
819
820 unsigned Opcode = Root.getOpcode();
821 bool KillA = OpA.isKill();
822 bool KillX = OpX.isKill();
823 bool KillY = OpY.isKill();
824
825 // Create new instructions for insertion.
826 MachineInstrBuilder MIB1 =
827 BuildMI(*MF, Prev.getDebugLoc(), TII->get(Opcode), NewVR)
828 .addReg(RegX, getKillRegState(KillX))
829 .addReg(RegY, getKillRegState(KillY));
830 MachineInstrBuilder MIB2 =
831 BuildMI(*MF, Root.getDebugLoc(), TII->get(Opcode), RegC)
832 .addReg(RegA, getKillRegState(KillA))
833 .addReg(NewVR, getKillRegState(true));
834
835 setSpecialOperandAttr(Root, Prev, *MIB1, *MIB2);
836
837 // Record new instructions for insertion and old instructions for deletion.
838 InsInstrs.push_back(MIB1);
839 InsInstrs.push_back(MIB2);
840 DelInstrs.push_back(&Prev);
841 DelInstrs.push_back(&Root);
842}
843
844void TargetInstrInfo::genAlternativeCodeSequence(
Sanjay Patel387e66e2015-11-05 19:34:57 +0000845 MachineInstr &Root, MachineCombinerPattern Pattern,
Chad Rosier03a47302015-09-21 15:09:11 +0000846 SmallVectorImpl<MachineInstr *> &InsInstrs,
847 SmallVectorImpl<MachineInstr *> &DelInstrs,
848 DenseMap<unsigned, unsigned> &InstIdxForVirtReg) const {
849 MachineRegisterInfo &MRI = Root.getParent()->getParent()->getRegInfo();
850
851 // Select the previous instruction in the sequence based on the input pattern.
852 MachineInstr *Prev = nullptr;
853 switch (Pattern) {
Sanjay Patel387e66e2015-11-05 19:34:57 +0000854 case MachineCombinerPattern::REASSOC_AX_BY:
855 case MachineCombinerPattern::REASSOC_XA_BY:
Chad Rosier03a47302015-09-21 15:09:11 +0000856 Prev = MRI.getUniqueVRegDef(Root.getOperand(1).getReg());
857 break;
Sanjay Patel387e66e2015-11-05 19:34:57 +0000858 case MachineCombinerPattern::REASSOC_AX_YB:
859 case MachineCombinerPattern::REASSOC_XA_YB:
Chad Rosier03a47302015-09-21 15:09:11 +0000860 Prev = MRI.getUniqueVRegDef(Root.getOperand(2).getReg());
861 break;
862 default:
863 break;
864 }
865
866 assert(Prev && "Unknown pattern for machine combiner");
867
868 reassociateOps(Root, *Prev, Pattern, InsInstrs, DelInstrs, InstIdxForVirtReg);
Chad Rosier03a47302015-09-21 15:09:11 +0000869}
870
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000871bool TargetInstrInfo::isReallyTriviallyReMaterializableGeneric(
872 const MachineInstr &MI, AliasAnalysis *AA) const {
873 const MachineFunction &MF = *MI.getParent()->getParent();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000874 const MachineRegisterInfo &MRI = MF.getRegInfo();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000875
876 // Remat clients assume operand 0 is the defined register.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000877 if (!MI.getNumOperands() || !MI.getOperand(0).isReg())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000878 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000879 unsigned DefReg = MI.getOperand(0).getReg();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000880
881 // A sub-register definition can only be rematerialized if the instruction
882 // doesn't read the other parts of the register. Otherwise it is really a
883 // read-modify-write operation on the full virtual register which cannot be
884 // moved safely.
885 if (TargetRegisterInfo::isVirtualRegister(DefReg) &&
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000886 MI.getOperand(0).getSubReg() && MI.readsVirtualRegister(DefReg))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000887 return false;
888
889 // A load from a fixed stack slot can be rematerialized. This may be
890 // redundant with subsequent checks, but it's target-independent,
891 // simple, and a common case.
892 int FrameIdx = 0;
Eric Christopher9d916792014-07-23 22:12:03 +0000893 if (isLoadFromStackSlot(MI, FrameIdx) &&
Matthias Braun941a7052016-07-28 18:40:00 +0000894 MF.getFrameInfo().isImmutableObjectIndex(FrameIdx))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000895 return true;
896
897 // Avoid instructions obviously unsafe for remat.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000898 if (MI.isNotDuplicable() || MI.mayStore() || MI.hasUnmodeledSideEffects())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000899 return false;
900
901 // Don't remat inline asm. We have no idea how expensive it is
902 // even if it's side effect free.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000903 if (MI.isInlineAsm())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000904 return false;
905
906 // Avoid instructions which load from potentially varying memory.
Justin Lebard98cf002016-09-10 01:03:20 +0000907 if (MI.mayLoad() && !MI.isDereferenceableInvariantLoad(AA))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000908 return false;
909
910 // If any of the registers accessed are non-constant, conservatively assume
911 // the instruction is not rematerializable.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000912 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
913 const MachineOperand &MO = MI.getOperand(i);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000914 if (!MO.isReg()) continue;
915 unsigned Reg = MO.getReg();
916 if (Reg == 0)
917 continue;
918
919 // Check for a well-behaved physical register.
920 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
921 if (MO.isUse()) {
922 // If the physreg has no defs anywhere, it's just an ambient register
923 // and we can freely move its uses. Alternatively, if it's allocatable,
924 // it could get allocated to something with a def during allocation.
Matthias Braunde8c1b32016-10-28 18:05:09 +0000925 if (!MRI.isConstantPhysReg(Reg))
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000926 return false;
927 } else {
928 // A physreg def. We can't remat it.
929 return false;
930 }
931 continue;
932 }
933
934 // Only allow one virtual-register def. There may be multiple defs of the
935 // same virtual register, though.
936 if (MO.isDef() && Reg != DefReg)
937 return false;
938
939 // Don't allow any virtual-register uses. Rematting an instruction with
940 // virtual register uses would length the live ranges of the uses, which
941 // is not necessarily a good idea, certainly not "trivial".
942 if (MO.isUse())
943 return false;
944 }
945
946 // Everything checked out.
947 return true;
948}
949
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000950int TargetInstrInfo::getSPAdjust(const MachineInstr &MI) const {
951 const MachineFunction *MF = MI.getParent()->getParent();
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000952 const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering();
953 bool StackGrowsDown =
954 TFI->getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
955
Matthias Braunfa3872e2015-05-18 20:27:55 +0000956 unsigned FrameSetupOpcode = getCallFrameSetupOpcode();
957 unsigned FrameDestroyOpcode = getCallFrameDestroyOpcode();
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000958
Serge Pavlov49acf9c2017-04-13 14:10:52 +0000959 if (!isFrameInstr(MI))
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000960 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000961
Serge Pavlov49acf9c2017-04-13 14:10:52 +0000962 int SPAdj = TFI->alignSPAdjust(getFrameSize(MI));
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000963
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000964 if ((!StackGrowsDown && MI.getOpcode() == FrameSetupOpcode) ||
965 (StackGrowsDown && MI.getOpcode() == FrameDestroyOpcode))
Michael Kuperstein8c65e312015-01-08 11:04:38 +0000966 SPAdj = -SPAdj;
967
968 return SPAdj;
969}
970
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000971/// isSchedulingBoundary - Test if the given instruction should be
972/// considered a scheduling boundary. This primarily includes labels
973/// and terminators.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000974bool TargetInstrInfo::isSchedulingBoundary(const MachineInstr &MI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000975 const MachineBasicBlock *MBB,
976 const MachineFunction &MF) const {
977 // Terminators and labels can't be scheduled around.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000978 if (MI.isTerminator() || MI.isPosition())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000979 return true;
980
981 // Don't attempt to schedule around any instruction that defines
982 // a stack-oriented pointer, as it's unlikely to be profitable. This
983 // saves compile time, because it doesn't require every single
984 // stack slot reference to depend on the instruction that does the
985 // modification.
Eric Christopherfc6de422014-08-05 02:39:49 +0000986 const TargetLowering &TLI = *MF.getSubtarget().getTargetLowering();
987 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000988 return MI.modifiesRegister(TLI.getStackPointerRegisterToSaveRestore(), TRI);
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +0000989}
990
991// Provide a global flag for disabling the PreRA hazard recognizer that targets
992// may choose to honor.
993bool TargetInstrInfo::usePreRAHazardRecognizer() const {
994 return !DisableHazardRecognizer;
995}
996
997// Default implementation of CreateTargetRAHazardRecognizer.
998ScheduleHazardRecognizer *TargetInstrInfo::
Eric Christopherf047bfd2014-06-13 22:38:52 +0000999CreateTargetHazardRecognizer(const TargetSubtargetInfo *STI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001000 const ScheduleDAG *DAG) const {
1001 // Dummy hazard recognizer allows all instructions to issue.
1002 return new ScheduleHazardRecognizer();
1003}
1004
1005// Default implementation of CreateTargetMIHazardRecognizer.
1006ScheduleHazardRecognizer *TargetInstrInfo::
1007CreateTargetMIHazardRecognizer(const InstrItineraryData *II,
1008 const ScheduleDAG *DAG) const {
1009 return (ScheduleHazardRecognizer *)
1010 new ScoreboardHazardRecognizer(II, DAG, "misched");
1011}
1012
1013// Default implementation of CreateTargetPostRAHazardRecognizer.
1014ScheduleHazardRecognizer *TargetInstrInfo::
1015CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
1016 const ScheduleDAG *DAG) const {
1017 return (ScheduleHazardRecognizer *)
1018 new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched");
1019}
1020
1021//===----------------------------------------------------------------------===//
1022// SelectionDAG latency interface.
1023//===----------------------------------------------------------------------===//
1024
1025int
1026TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
1027 SDNode *DefNode, unsigned DefIdx,
1028 SDNode *UseNode, unsigned UseIdx) const {
1029 if (!ItinData || ItinData->isEmpty())
1030 return -1;
1031
1032 if (!DefNode->isMachineOpcode())
1033 return -1;
1034
1035 unsigned DefClass = get(DefNode->getMachineOpcode()).getSchedClass();
1036 if (!UseNode->isMachineOpcode())
1037 return ItinData->getOperandCycle(DefClass, DefIdx);
1038 unsigned UseClass = get(UseNode->getMachineOpcode()).getSchedClass();
1039 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
1040}
1041
1042int TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
1043 SDNode *N) const {
1044 if (!ItinData || ItinData->isEmpty())
1045 return 1;
1046
1047 if (!N->isMachineOpcode())
1048 return 1;
1049
1050 return ItinData->getStageLatency(get(N->getMachineOpcode()).getSchedClass());
1051}
1052
1053//===----------------------------------------------------------------------===//
1054// MachineInstr latency interface.
1055//===----------------------------------------------------------------------===//
1056
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001057unsigned TargetInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
1058 const MachineInstr &MI) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001059 if (!ItinData || ItinData->isEmpty())
1060 return 1;
1061
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001062 unsigned Class = MI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001063 int UOps = ItinData->Itineraries[Class].NumMicroOps;
1064 if (UOps >= 0)
1065 return UOps;
1066
1067 // The # of u-ops is dynamically determined. The specific target should
1068 // override this function to return the right number.
1069 return 1;
1070}
1071
1072/// Return the default expected latency for a def based on it's opcode.
Pete Cooper11759452014-09-02 17:43:54 +00001073unsigned TargetInstrInfo::defaultDefLatency(const MCSchedModel &SchedModel,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001074 const MachineInstr &DefMI) const {
1075 if (DefMI.isTransient())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001076 return 0;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001077 if (DefMI.mayLoad())
Pete Cooper11759452014-09-02 17:43:54 +00001078 return SchedModel.LoadLatency;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001079 if (isHighLatencyDef(DefMI.getOpcode()))
Pete Cooper11759452014-09-02 17:43:54 +00001080 return SchedModel.HighLatency;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001081 return 1;
1082}
1083
Duncan P. N. Exon Smith6307eb52016-02-23 02:46:52 +00001084unsigned TargetInstrInfo::getPredicationCost(const MachineInstr &) const {
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +00001085 return 0;
1086}
1087
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001088unsigned TargetInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
1089 const MachineInstr &MI,
1090 unsigned *PredCost) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001091 // Default to one cycle for no itinerary. However, an "empty" itinerary may
1092 // still have a MinLatency property, which getStageLatency checks.
1093 if (!ItinData)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001094 return MI.mayLoad() ? 2 : 1;
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001095
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001096 return ItinData->getStageLatency(MI.getDesc().getSchedClass());
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001097}
1098
Matthias Braun88e21312015-06-13 03:42:11 +00001099bool TargetInstrInfo::hasLowDefLatency(const TargetSchedModel &SchedModel,
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001100 const MachineInstr &DefMI,
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001101 unsigned DefIdx) const {
Matthias Braun88e21312015-06-13 03:42:11 +00001102 const InstrItineraryData *ItinData = SchedModel.getInstrItineraries();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001103 if (!ItinData || ItinData->isEmpty())
1104 return false;
1105
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001106 unsigned DefClass = DefMI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001107 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
1108 return (DefCycle != -1 && DefCycle <= 1);
1109}
1110
1111/// Both DefMI and UseMI must be valid. By default, call directly to the
1112/// itinerary. This may be overriden by the target.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001113int TargetInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
1114 const MachineInstr &DefMI,
1115 unsigned DefIdx,
1116 const MachineInstr &UseMI,
1117 unsigned UseIdx) const {
1118 unsigned DefClass = DefMI.getDesc().getSchedClass();
1119 unsigned UseClass = UseMI.getDesc().getSchedClass();
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001120 return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
1121}
1122
1123/// If we can determine the operand latency from the def only, without itinerary
1124/// lookup, do so. Otherwise return -1.
1125int TargetInstrInfo::computeDefOperandLatency(
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001126 const InstrItineraryData *ItinData, const MachineInstr &DefMI) const {
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001127
1128 // Let the target hook getInstrLatency handle missing itineraries.
1129 if (!ItinData)
1130 return getInstrLatency(ItinData, DefMI);
1131
Andrew Trickde2109e2013-06-15 04:49:57 +00001132 if(ItinData->isEmpty())
Jakob Stoklund Olesenc351aed2012-11-28 02:35:13 +00001133 return defaultDefLatency(ItinData->SchedModel, DefMI);
1134
1135 // ...operand lookup required
1136 return -1;
1137}
1138
Quentin Colombetd533cdf2014-08-11 22:17:14 +00001139bool TargetInstrInfo::getRegSequenceInputs(
1140 const MachineInstr &MI, unsigned DefIdx,
1141 SmallVectorImpl<RegSubRegPairAndIdx> &InputRegs) const {
Quentin Colombet8427df92014-08-12 17:11:26 +00001142 assert((MI.isRegSequence() ||
1143 MI.isRegSequenceLike()) && "Instruction do not have the proper type");
Quentin Colombetd533cdf2014-08-11 22:17:14 +00001144
1145 if (!MI.isRegSequence())
1146 return getRegSequenceLikeInputs(MI, DefIdx, InputRegs);
1147
1148 // We are looking at:
1149 // Def = REG_SEQUENCE v0, sub0, v1, sub1, ...
1150 assert(DefIdx == 0 && "REG_SEQUENCE only has one def");
1151 for (unsigned OpIdx = 1, EndOpIdx = MI.getNumOperands(); OpIdx != EndOpIdx;
1152 OpIdx += 2) {
1153 const MachineOperand &MOReg = MI.getOperand(OpIdx);
1154 const MachineOperand &MOSubIdx = MI.getOperand(OpIdx + 1);
1155 assert(MOSubIdx.isImm() &&
1156 "One of the subindex of the reg_sequence is not an immediate");
1157 // Record Reg:SubReg, SubIdx.
1158 InputRegs.push_back(RegSubRegPairAndIdx(MOReg.getReg(), MOReg.getSubReg(),
1159 (unsigned)MOSubIdx.getImm()));
1160 }
1161 return true;
1162}
Quentin Colombet7e75cba2014-08-20 21:51:26 +00001163
1164bool TargetInstrInfo::getExtractSubregInputs(
1165 const MachineInstr &MI, unsigned DefIdx,
1166 RegSubRegPairAndIdx &InputReg) const {
1167 assert((MI.isExtractSubreg() ||
1168 MI.isExtractSubregLike()) && "Instruction do not have the proper type");
1169
1170 if (!MI.isExtractSubreg())
1171 return getExtractSubregLikeInputs(MI, DefIdx, InputReg);
1172
1173 // We are looking at:
1174 // Def = EXTRACT_SUBREG v0.sub1, sub0.
1175 assert(DefIdx == 0 && "EXTRACT_SUBREG only has one def");
1176 const MachineOperand &MOReg = MI.getOperand(1);
1177 const MachineOperand &MOSubIdx = MI.getOperand(2);
1178 assert(MOSubIdx.isImm() &&
1179 "The subindex of the extract_subreg is not an immediate");
1180
1181 InputReg.Reg = MOReg.getReg();
1182 InputReg.SubReg = MOReg.getSubReg();
1183 InputReg.SubIdx = (unsigned)MOSubIdx.getImm();
1184 return true;
1185}
Quentin Colombet7e3da662014-08-20 23:49:36 +00001186
1187bool TargetInstrInfo::getInsertSubregInputs(
1188 const MachineInstr &MI, unsigned DefIdx,
1189 RegSubRegPair &BaseReg, RegSubRegPairAndIdx &InsertedReg) const {
1190 assert((MI.isInsertSubreg() ||
1191 MI.isInsertSubregLike()) && "Instruction do not have the proper type");
1192
1193 if (!MI.isInsertSubreg())
1194 return getInsertSubregLikeInputs(MI, DefIdx, BaseReg, InsertedReg);
1195
1196 // We are looking at:
1197 // Def = INSERT_SEQUENCE v0, v1, sub0.
1198 assert(DefIdx == 0 && "INSERT_SUBREG only has one def");
1199 const MachineOperand &MOBaseReg = MI.getOperand(1);
1200 const MachineOperand &MOInsertedReg = MI.getOperand(2);
1201 const MachineOperand &MOSubIdx = MI.getOperand(3);
1202 assert(MOSubIdx.isImm() &&
1203 "One of the subindex of the reg_sequence is not an immediate");
1204 BaseReg.Reg = MOBaseReg.getReg();
1205 BaseReg.SubReg = MOBaseReg.getSubReg();
1206
1207 InsertedReg.Reg = MOInsertedReg.getReg();
1208 InsertedReg.SubReg = MOInsertedReg.getSubReg();
1209 InsertedReg.SubIdx = (unsigned)MOSubIdx.getImm();
1210 return true;
1211}