Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 1 | //===- lib/CodeGen/MachineInstr.cpp ---------------------------------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Brian Gaeke | 21326fc | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 9 | // |
| 10 | // Methods common to all machine instructions. |
| 11 | // |
Chris Lattner | 035dfbe | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Vikram S. Adve | 70bc4b5 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 13 | |
Chandler Carruth | e3e43d9 | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MachineInstr.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/APFloat.h" |
| 16 | #include "llvm/ADT/ArrayRef.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/FoldingSet.h" |
| 18 | #include "llvm/ADT/Hashing.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/None.h" |
Chandler Carruth | e3e43d9 | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/STLExtras.h" |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallBitVector.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallString.h" |
| 23 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/AliasAnalysis.h" |
Hiroshi Inoue | 059bd0e | 2017-06-24 15:17:38 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/Loads.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/MemoryLocation.h" |
| 27 | #include "llvm/CodeGen/GlobalISel/RegisterBank.h" |
| 28 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Chris Lattner | 8517e1f | 2004-02-19 16:17:08 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFunction.h" |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineInstrBundle.h" |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineMemOperand.h" |
Jakob Stoklund Olesen | d519de0 | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineOperand.h" |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/PseudoSourceValue.h" |
David Blaikie | 4831923 | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 39 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Nico Weber | 0f38c60 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 40 | #include "llvm/Config/llvm-config.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 41 | #include "llvm/IR/Constants.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 42 | #include "llvm/IR/DebugInfoMetadata.h" |
| 43 | #include "llvm/IR/DebugLoc.h" |
| 44 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 45 | #include "llvm/IR/Function.h" |
| 46 | #include "llvm/IR/InlineAsm.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 47 | #include "llvm/IR/InstrTypes.h" |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Intrinsics.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 49 | #include "llvm/IR/LLVMContext.h" |
| 50 | #include "llvm/IR/Metadata.h" |
| 51 | #include "llvm/IR/Module.h" |
Duncan P. N. Exon Smith | a08efbf | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 52 | #include "llvm/IR/ModuleSlotTracker.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 53 | #include "llvm/IR/Type.h" |
| 54 | #include "llvm/IR/Value.h" |
Michael Berg | 9de32f7 | 2018-09-19 18:52:08 +0000 | [diff] [blame] | 55 | #include "llvm/IR/Operator.h" |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 56 | #include "llvm/MC/MCInstrDesc.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 57 | #include "llvm/MC/MCRegisterInfo.h" |
Chandler Carruth | e3e43d9 | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 58 | #include "llvm/MC/MCSymbol.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 59 | #include "llvm/Support/Casting.h" |
Daniel Sanders | c457f1e | 2015-08-19 12:03:04 +0000 | [diff] [blame] | 60 | #include "llvm/Support/CommandLine.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 61 | #include "llvm/Support/Compiler.h" |
David Greene | 3b32533 | 2010-01-04 23:48:20 +0000 | [diff] [blame] | 62 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 63 | #include "llvm/Support/ErrorHandling.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 64 | #include "llvm/Support/LowLevelTypeImpl.h" |
Dan Gohman | ce42e40 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 65 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | edfb72c | 2008-08-24 20:37:32 +0000 | [diff] [blame] | 66 | #include "llvm/Support/raw_ostream.h" |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 67 | #include "llvm/Target/TargetIntrinsicInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 68 | #include "llvm/Target/TargetMachine.h" |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 69 | #include <algorithm> |
| 70 | #include <cassert> |
| 71 | #include <cstddef> |
| 72 | #include <cstdint> |
| 73 | #include <cstring> |
| 74 | #include <iterator> |
| 75 | #include <utility> |
| 76 | |
Chris Lattner | 0742b59 | 2004-02-23 18:38:20 +0000 | [diff] [blame] | 77 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 78 | |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 79 | static const MachineFunction *getMFIfAvailable(const MachineInstr &MI) { |
| 80 | if (const MachineBasicBlock *MBB = MI.getParent()) |
| 81 | if (const MachineFunction *MF = MBB->getParent()) |
| 82 | return MF; |
| 83 | return nullptr; |
| 84 | } |
| 85 | |
| 86 | // Try to crawl up to the machine function and get TRI and IntrinsicInfo from |
| 87 | // it. |
| 88 | static void tryToGetTargetInfo(const MachineInstr &MI, |
| 89 | const TargetRegisterInfo *&TRI, |
| 90 | const MachineRegisterInfo *&MRI, |
| 91 | const TargetIntrinsicInfo *&IntrinsicInfo, |
| 92 | const TargetInstrInfo *&TII) { |
| 93 | |
| 94 | if (const MachineFunction *MF = getMFIfAvailable(MI)) { |
| 95 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 96 | MRI = &MF->getRegInfo(); |
| 97 | IntrinsicInfo = MF->getTarget().getIntrinsicInfo(); |
| 98 | TII = MF->getSubtarget().getInstrInfo(); |
| 99 | } |
| 100 | } |
| 101 | |
Jakob Stoklund Olesen | 9500e5d | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 102 | void MachineInstr::addImplicitDefUseOperands(MachineFunction &MF) { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 103 | if (MCID->ImplicitDefs) |
Craig Topper | 79402ee | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 104 | for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; |
| 105 | ++ImpDefs) |
Jakob Stoklund Olesen | 9500e5d | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 106 | addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 107 | if (MCID->ImplicitUses) |
Craig Topper | 79402ee | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 108 | for (const MCPhysReg *ImpUses = MCID->getImplicitUses(); *ImpUses; |
| 109 | ++ImpUses) |
Jakob Stoklund Olesen | 9500e5d | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 110 | addOperand(MF, MachineOperand::CreateReg(*ImpUses, false, true)); |
Evan Cheng | d7de496 | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Bob Wilson | 0855cad | 2010-04-09 04:34:03 +0000 | [diff] [blame] | 113 | /// MachineInstr ctor - This constructor creates a MachineInstr and adds the |
| 114 | /// implicit operands. It reserves space for the number of operands specified by |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 115 | /// the MCInstrDesc. |
Jakob Stoklund Olesen | 9500e5d | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 116 | MachineInstr::MachineInstr(MachineFunction &MF, const MCInstrDesc &tid, |
Benjamin Kramer | 74cdff8 | 2015-02-07 12:28:15 +0000 | [diff] [blame] | 117 | DebugLoc dl, bool NoImp) |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 118 | : MCID(&tid), debugLoc(std::move(dl)) { |
Duncan P. N. Exon Smith | dad20b2 | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 119 | assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); |
| 120 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 121 | // Reserve space for the expected number of operands. |
| 122 | if (unsigned NumOps = MCID->getNumOperands() + |
| 123 | MCID->getNumImplicitDefs() + MCID->getNumImplicitUses()) { |
| 124 | CapOperands = OperandCapacity::get(NumOps); |
| 125 | Operands = MF.allocateOperandArray(CapOperands); |
| 126 | } |
| 127 | |
Dale Johannesen | 06efc02 | 2009-01-27 23:20:29 +0000 | [diff] [blame] | 128 | if (!NoImp) |
Jakob Stoklund Olesen | 9500e5d | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 129 | addImplicitDefUseOperands(MF); |
Dale Johannesen | 06efc02 | 2009-01-27 23:20:29 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Misha Brukman | ce22e76 | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 132 | /// MachineInstr ctor - Copies MachineInstr arg exactly |
| 133 | /// |
Evan Cheng | 1ed9922 | 2008-07-19 00:37:25 +0000 | [diff] [blame] | 134 | MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 135 | : MCID(&MI.getDesc()), Info(MI.Info), debugLoc(MI.getDebugLoc()) { |
Duncan P. N. Exon Smith | dad20b2 | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 136 | assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); |
| 137 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 138 | CapOperands = OperandCapacity::get(MI.getNumOperands()); |
| 139 | Operands = MF.allocateOperandArray(CapOperands); |
Tanya Lattner | b5159ed | 2004-05-23 20:58:02 +0000 | [diff] [blame] | 140 | |
Jakob Stoklund Olesen | 84be3d5 | 2013-01-05 05:05:51 +0000 | [diff] [blame] | 141 | // Copy operands. |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 142 | for (const MachineOperand &MO : MI.operands()) |
| 143 | addOperand(MF, MO); |
Tanya Lattner | 0c63e03 | 2004-05-24 03:14:18 +0000 | [diff] [blame] | 144 | |
Jakob Stoklund Olesen | bd7b36e | 2012-12-18 21:36:05 +0000 | [diff] [blame] | 145 | // Copy all the sensible flags. |
| 146 | setFlags(MI.Flags); |
Alkis Evlogimenos | aad5c05 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 149 | /// getRegInfo - If this instruction is embedded into a MachineFunction, |
| 150 | /// return the MachineRegisterInfo object for the current function, otherwise |
| 151 | /// return null. |
| 152 | MachineRegisterInfo *MachineInstr::getRegInfo() { |
| 153 | if (MachineBasicBlock *MBB = getParent()) |
Dan Gohman | 4e526b9 | 2008-07-08 23:59:09 +0000 | [diff] [blame] | 154 | return &MBB->getParent()->getRegInfo(); |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 155 | return nullptr; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in |
| 159 | /// this instruction from their respective use lists. This requires that the |
| 160 | /// operands already be on their use lists. |
Jakob Stoklund Olesen | ff2b99a | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 161 | void MachineInstr::RemoveRegOperandsFromUseLists(MachineRegisterInfo &MRI) { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 162 | for (MachineOperand &MO : operands()) |
| 163 | if (MO.isReg()) |
| 164 | MRI.removeRegOperandFromUseList(&MO); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | /// AddRegOperandsToUseLists - Add all of the register operands in |
| 168 | /// this instruction from their respective use lists. This requires that the |
| 169 | /// operands not be on their use lists yet. |
Jakob Stoklund Olesen | ff2b99a | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 170 | void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &MRI) { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 171 | for (MachineOperand &MO : operands()) |
| 172 | if (MO.isReg()) |
| 173 | MRI.addRegOperandToUseList(&MO); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Jakob Stoklund Olesen | 56706db | 2012-12-20 22:54:05 +0000 | [diff] [blame] | 176 | void MachineInstr::addOperand(const MachineOperand &Op) { |
| 177 | MachineBasicBlock *MBB = getParent(); |
| 178 | assert(MBB && "Use MachineInstrBuilder to add operands to dangling instrs"); |
| 179 | MachineFunction *MF = MBB->getParent(); |
| 180 | assert(MF && "Use MachineInstrBuilder to add operands to dangling instrs"); |
| 181 | addOperand(*MF, Op); |
| 182 | } |
| 183 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 184 | /// Move NumOps MachineOperands from Src to Dst, with support for overlapping |
| 185 | /// ranges. If MRI is non-null also update use-def chains. |
| 186 | static void moveOperands(MachineOperand *Dst, MachineOperand *Src, |
| 187 | unsigned NumOps, MachineRegisterInfo *MRI) { |
| 188 | if (MRI) |
| 189 | return MRI->moveOperands(Dst, Src, NumOps); |
| 190 | |
JF Bastien | 2b9ff6b | 2016-03-26 18:20:02 +0000 | [diff] [blame] | 191 | // MachineOperand is a trivially copyable type so we can just use memmove. |
Benjamin Kramer | 7efcb33 | 2015-02-21 16:22:48 +0000 | [diff] [blame] | 192 | std::memmove(Dst, Src, NumOps * sizeof(MachineOperand)); |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 195 | /// addOperand - Add the specified operand to the instruction. If it is an |
| 196 | /// implicit operand, it is added to the end of the operand list. If it is |
| 197 | /// an explicit operand it is added at the end of the explicit operand list |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 198 | /// (before the first implicit operand). |
Jakob Stoklund Olesen | 56706db | 2012-12-20 22:54:05 +0000 | [diff] [blame] | 199 | void MachineInstr::addOperand(MachineFunction &MF, const MachineOperand &Op) { |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 200 | assert(MCID && "Cannot add operands before providing an instr descriptor"); |
Dan Gohman | bcf28c0 | 2008-12-09 22:45:08 +0000 | [diff] [blame] | 201 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 202 | // Check if we're adding one of our existing operands. |
| 203 | if (&Op >= Operands && &Op < Operands + NumOperands) { |
| 204 | // This is unusual: MI->addOperand(MI->getOperand(i)). |
| 205 | // If adding Op requires reallocating or moving existing operands around, |
| 206 | // the Op reference could go stale. Support it by copying Op. |
| 207 | MachineOperand CopyOp(Op); |
| 208 | return addOperand(MF, CopyOp); |
| 209 | } |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 210 | |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 211 | // Find the insert location for the new operand. Implicit registers go at |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 212 | // the end, everything else goes before the implicit regs. |
| 213 | // |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 214 | // FIXME: Allow mixed explicit and implicit operands on inline asm. |
| 215 | // InstrEmitter::EmitSpecialNode() is marking inline asm clobbers as |
| 216 | // implicit-defs, but they must not be moved around. See the FIXME in |
| 217 | // InstrEmitter.cpp. |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 218 | unsigned OpNo = getNumOperands(); |
| 219 | bool isImpReg = Op.isReg() && Op.isImplicit(); |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 220 | if (!isImpReg && !isInlineAsm()) { |
| 221 | while (OpNo && Operands[OpNo-1].isReg() && Operands[OpNo-1].isImplicit()) { |
| 222 | --OpNo; |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 223 | assert(!Operands[OpNo].isTied() && "Cannot move tied operands"); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 224 | } |
| 225 | } |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 226 | |
Pekka Jaaskelainen | d54946a | 2013-10-15 14:40:46 +0000 | [diff] [blame] | 227 | #ifndef NDEBUG |
Hans Wennborg | 3292b91 | 2019-01-25 00:12:01 +0000 | [diff] [blame] | 228 | bool isDebugOp = Op.getType() == MachineOperand::MO_Metadata || |
| 229 | Op.getType() == MachineOperand::MO_MCSymbol; |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 230 | // OpNo now points as the desired insertion point. Unless this is a variadic |
| 231 | // instruction, only implicit regs are allowed beyond MCID->getNumOperands(). |
Jakob Stoklund Olesen | 33a537a | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 232 | // RegMask operands go between the explicit and implicit operands. |
| 233 | assert((isImpReg || Op.isRegMask() || MCID->isVariadic() || |
Hans Wennborg | 3292b91 | 2019-01-25 00:12:01 +0000 | [diff] [blame] | 234 | OpNo < MCID->getNumOperands() || isDebugOp) && |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 235 | "Trying to add an operand to a machine instr that is already done!"); |
Pekka Jaaskelainen | d54946a | 2013-10-15 14:40:46 +0000 | [diff] [blame] | 236 | #endif |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 237 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 238 | MachineRegisterInfo *MRI = getRegInfo(); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 239 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 240 | // Determine if the Operands array needs to be reallocated. |
| 241 | // Save the old capacity and operand array. |
| 242 | OperandCapacity OldCap = CapOperands; |
| 243 | MachineOperand *OldOperands = Operands; |
| 244 | if (!OldOperands || OldCap.getSize() == getNumOperands()) { |
| 245 | CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); |
| 246 | Operands = MF.allocateOperandArray(CapOperands); |
| 247 | // Move the operands before the insertion point. |
| 248 | if (OpNo) |
| 249 | moveOperands(Operands, OldOperands, OpNo, MRI); |
| 250 | } |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 251 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 252 | // Move the operands following the insertion point. |
| 253 | if (OpNo != NumOperands) |
| 254 | moveOperands(Operands + OpNo + 1, OldOperands + OpNo, NumOperands - OpNo, |
| 255 | MRI); |
| 256 | ++NumOperands; |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 257 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 258 | // Deallocate the old operand array. |
| 259 | if (OldOperands != Operands && OldOperands) |
| 260 | MF.deallocateOperandArray(OldCap, OldOperands); |
| 261 | |
| 262 | // Copy Op into place. It still needs to be inserted into the MRI use lists. |
| 263 | MachineOperand *NewMO = new (Operands + OpNo) MachineOperand(Op); |
| 264 | NewMO->ParentMI = this; |
| 265 | |
| 266 | // When adding a register operand, tell MRI about it. |
| 267 | if (NewMO->isReg()) { |
Jakob Stoklund Olesen | ff2b99a | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 268 | // Ensure isOnRegUseList() returns false, regardless of Op's status. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 269 | NewMO->Contents.Reg.Prev = nullptr; |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 270 | // Ignore existing ties. This is not a property that can be copied. |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 271 | NewMO->TiedTo = 0; |
| 272 | // Add the new operand to MRI, but only for instructions in an MBB. |
| 273 | if (MRI) |
| 274 | MRI->addRegOperandToUseList(NewMO); |
Jakob Stoklund Olesen | e941df5 | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 275 | // The MCID operand information isn't accurate until we start adding |
| 276 | // explicit operands. The implicit operands are added first, then the |
| 277 | // explicits are inserted before them. |
| 278 | if (!isImpReg) { |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 279 | // Tie uses to defs as indicated in MCInstrDesc. |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 280 | if (NewMO->isUse()) { |
Jakob Stoklund Olesen | e941df5 | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 281 | int DefIdx = MCID->getOperandConstraint(OpNo, MCOI::TIED_TO); |
Jakob Stoklund Olesen | 9408314 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 282 | if (DefIdx != -1) |
| 283 | tieOperands(DefIdx, OpNo); |
Jakob Stoklund Olesen | 4ba6916 | 2012-08-28 18:34:41 +0000 | [diff] [blame] | 284 | } |
Jakob Stoklund Olesen | e941df5 | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 285 | // If the register operand is flagged as early, mark the operand as such. |
| 286 | if (MCID->getOperandConstraint(OpNo, MCOI::EARLY_CLOBBER) != -1) |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 287 | NewMO->setIsEarlyClobber(true); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 288 | } |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | |
| 292 | /// RemoveOperand - Erase an operand from an instruction, leaving it with one |
| 293 | /// fewer operand than it started with. |
| 294 | /// |
| 295 | void MachineInstr::RemoveOperand(unsigned OpNo) { |
Jakob Stoklund Olesen | 021e3b6 | 2012-12-22 17:13:06 +0000 | [diff] [blame] | 296 | assert(OpNo < getNumOperands() && "Invalid operand number"); |
Jakob Stoklund Olesen | 699ac04 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 297 | untieRegOperand(OpNo); |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 298 | |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 299 | #ifndef NDEBUG |
| 300 | // Moving tied operands would break the ties. |
Jakob Stoklund Olesen | 021e3b6 | 2012-12-22 17:13:06 +0000 | [diff] [blame] | 301 | for (unsigned i = OpNo + 1, e = getNumOperands(); i != e; ++i) |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 302 | if (Operands[i].isReg()) |
| 303 | assert(!Operands[i].isTied() && "Cannot move tied operands"); |
| 304 | #endif |
| 305 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 306 | MachineRegisterInfo *MRI = getRegInfo(); |
| 307 | if (MRI && Operands[OpNo].isReg()) |
| 308 | MRI->removeRegOperandFromUseList(Operands + OpNo); |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 309 | |
Jakob Stoklund Olesen | f1d015f | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 310 | // Don't call the MachineOperand destructor. A lot of this code depends on |
| 311 | // MachineOperand having a trivial destructor anyway, and adding a call here |
| 312 | // wouldn't make it 'destructor-correct'. |
| 313 | |
| 314 | if (unsigned N = NumOperands - 1 - OpNo) |
| 315 | moveOperands(Operands + OpNo, Operands + OpNo + 1, N, MRI); |
| 316 | --NumOperands; |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 319 | void MachineInstr::dropMemRefs(MachineFunction &MF) { |
| 320 | if (memoperands_empty()) |
| 321 | return; |
| 322 | |
| 323 | // See if we can just drop all of our extra info. |
| 324 | if (!getPreInstrSymbol() && !getPostInstrSymbol()) { |
| 325 | Info.clear(); |
| 326 | return; |
| 327 | } |
| 328 | if (!getPostInstrSymbol()) { |
| 329 | Info.set<EIIK_PreInstrSymbol>(getPreInstrSymbol()); |
| 330 | return; |
| 331 | } |
| 332 | if (!getPreInstrSymbol()) { |
| 333 | Info.set<EIIK_PostInstrSymbol>(getPostInstrSymbol()); |
| 334 | return; |
| 335 | } |
| 336 | |
| 337 | // Otherwise allocate a fresh extra info with just these symbols. |
| 338 | Info.set<EIIK_OutOfLine>( |
| 339 | MF.createMIExtraInfo({}, getPreInstrSymbol(), getPostInstrSymbol())); |
| 340 | } |
| 341 | |
| 342 | void MachineInstr::setMemRefs(MachineFunction &MF, |
| 343 | ArrayRef<MachineMemOperand *> MMOs) { |
| 344 | if (MMOs.empty()) { |
| 345 | dropMemRefs(MF); |
| 346 | return; |
| 347 | } |
| 348 | |
| 349 | // Try to store a single MMO inline. |
| 350 | if (MMOs.size() == 1 && !getPreInstrSymbol() && !getPostInstrSymbol()) { |
| 351 | Info.set<EIIK_MMO>(MMOs[0]); |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | // Otherwise create an extra info struct with all of our info. |
| 356 | Info.set<EIIK_OutOfLine>( |
| 357 | MF.createMIExtraInfo(MMOs, getPreInstrSymbol(), getPostInstrSymbol())); |
| 358 | } |
| 359 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 360 | void MachineInstr::addMemOperand(MachineFunction &MF, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 361 | MachineMemOperand *MO) { |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 362 | SmallVector<MachineMemOperand *, 2> MMOs; |
| 363 | MMOs.append(memoperands_begin(), memoperands_end()); |
| 364 | MMOs.push_back(MO); |
| 365 | setMemRefs(MF, MMOs); |
| 366 | } |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 367 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 368 | void MachineInstr::cloneMemRefs(MachineFunction &MF, const MachineInstr &MI) { |
| 369 | if (this == &MI) |
| 370 | // Nothing to do for a self-clone! |
| 371 | return; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 372 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 373 | assert(&MF == MI.getMF() && |
| 374 | "Invalid machine functions when cloning memory refrences!"); |
| 375 | // See if we can just steal the extra info already allocated for the |
| 376 | // instruction. We can do this whenever the pre- and post-instruction symbols |
| 377 | // are the same (including null). |
| 378 | if (getPreInstrSymbol() == MI.getPreInstrSymbol() && |
| 379 | getPostInstrSymbol() == MI.getPostInstrSymbol()) { |
| 380 | Info = MI.Info; |
| 381 | return; |
| 382 | } |
| 383 | |
| 384 | // Otherwise, fall back on a copy-based clone. |
| 385 | setMemRefs(MF, MI.memoperands()); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 386 | } |
Chris Lattner | 62ed6b9 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 387 | |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 388 | /// Check to see if the MMOs pointed to by the two MemRefs arrays are |
Junmo Park | 6473927 | 2016-02-26 02:07:36 +0000 | [diff] [blame] | 389 | /// identical. |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 390 | static bool hasIdenticalMMOs(ArrayRef<MachineMemOperand *> LHS, |
| 391 | ArrayRef<MachineMemOperand *> RHS) { |
| 392 | if (LHS.size() != RHS.size()) |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 393 | return false; |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 394 | |
| 395 | auto LHSPointees = make_pointee_range(LHS); |
| 396 | auto RHSPointees = make_pointee_range(RHS); |
| 397 | return std::equal(LHSPointees.begin(), LHSPointees.end(), |
| 398 | RHSPointees.begin()); |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 399 | } |
| 400 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 401 | void MachineInstr::cloneMergedMemRefs(MachineFunction &MF, |
| 402 | ArrayRef<const MachineInstr *> MIs) { |
| 403 | // Try handling easy numbers of MIs with simpler mechanisms. |
| 404 | if (MIs.empty()) { |
| 405 | dropMemRefs(MF); |
| 406 | return; |
| 407 | } |
| 408 | if (MIs.size() == 1) { |
| 409 | cloneMemRefs(MF, *MIs[0]); |
| 410 | return; |
| 411 | } |
| 412 | // Because an empty memoperands list provides *no* information and must be |
| 413 | // handled conservatively (assuming the instruction can do anything), the only |
| 414 | // way to merge with it is to drop all other memoperands. |
| 415 | if (MIs[0]->memoperands_empty()) { |
| 416 | dropMemRefs(MF); |
| 417 | return; |
| 418 | } |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 419 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 420 | // Handle the general case. |
| 421 | SmallVector<MachineMemOperand *, 2> MergedMMOs; |
| 422 | // Start with the first instruction. |
| 423 | assert(&MF == MIs[0]->getMF() && |
| 424 | "Invalid machine functions when cloning memory references!"); |
| 425 | MergedMMOs.append(MIs[0]->memoperands_begin(), MIs[0]->memoperands_end()); |
| 426 | // Now walk all the other instructions and accumulate any different MMOs. |
| 427 | for (const MachineInstr &MI : make_pointee_range(MIs.slice(1))) { |
| 428 | assert(&MF == MI.getMF() && |
| 429 | "Invalid machine functions when cloning memory references!"); |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 430 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 431 | // Skip MIs with identical operands to the first. This is a somewhat |
| 432 | // arbitrary hack but will catch common cases without being quadratic. |
| 433 | // TODO: We could fully implement merge semantics here if needed. |
| 434 | if (hasIdenticalMMOs(MIs[0]->memoperands(), MI.memoperands())) |
| 435 | continue; |
Junmo Park | 6473927 | 2016-02-26 02:07:36 +0000 | [diff] [blame] | 436 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 437 | // Because an empty memoperands list provides *no* information and must be |
| 438 | // handled conservatively (assuming the instruction can do anything), the |
| 439 | // only way to merge with it is to drop all other memoperands. |
| 440 | if (MI.memoperands_empty()) { |
| 441 | dropMemRefs(MF); |
| 442 | return; |
| 443 | } |
Philip Reames | 0c16176 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 444 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 445 | // Otherwise accumulate these into our temporary buffer of the merged state. |
| 446 | MergedMMOs.append(MI.memoperands_begin(), MI.memoperands_end()); |
| 447 | } |
Philip Reames | f5d4675 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 448 | |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 449 | setMemRefs(MF, MergedMMOs); |
| 450 | } |
Junmo Park | 6473927 | 2016-02-26 02:07:36 +0000 | [diff] [blame] | 451 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 452 | void MachineInstr::setPreInstrSymbol(MachineFunction &MF, MCSymbol *Symbol) { |
| 453 | MCSymbol *OldSymbol = getPreInstrSymbol(); |
| 454 | if (OldSymbol == Symbol) |
| 455 | return; |
| 456 | if (OldSymbol && !Symbol) { |
| 457 | // We're removing a symbol rather than adding one. Try to clean up any |
| 458 | // extra info carried around. |
| 459 | if (Info.is<EIIK_PreInstrSymbol>()) { |
| 460 | Info.clear(); |
| 461 | return; |
| 462 | } |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 463 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 464 | if (memoperands_empty()) { |
| 465 | assert(getPostInstrSymbol() && |
| 466 | "Should never have only a single symbol allocated out-of-line!"); |
| 467 | Info.set<EIIK_PostInstrSymbol>(getPostInstrSymbol()); |
| 468 | return; |
| 469 | } |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 470 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 471 | // Otherwise fallback on the generic update. |
| 472 | } else if (!Info || Info.is<EIIK_PreInstrSymbol>()) { |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 473 | // If we don't have any other extra info, we can store this inline. |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 474 | Info.set<EIIK_PreInstrSymbol>(Symbol); |
| 475 | return; |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 478 | // Otherwise, allocate a full new set of extra info. |
| 479 | // FIXME: Maybe we should make the symbols in the extra info mutable? |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 480 | Info.set<EIIK_OutOfLine>( |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 481 | MF.createMIExtraInfo(memoperands(), Symbol, getPostInstrSymbol())); |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 484 | void MachineInstr::setPostInstrSymbol(MachineFunction &MF, MCSymbol *Symbol) { |
| 485 | MCSymbol *OldSymbol = getPostInstrSymbol(); |
| 486 | if (OldSymbol == Symbol) |
| 487 | return; |
| 488 | if (OldSymbol && !Symbol) { |
| 489 | // We're removing a symbol rather than adding one. Try to clean up any |
| 490 | // extra info carried around. |
| 491 | if (Info.is<EIIK_PostInstrSymbol>()) { |
| 492 | Info.clear(); |
| 493 | return; |
| 494 | } |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 495 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 496 | if (memoperands_empty()) { |
| 497 | assert(getPreInstrSymbol() && |
| 498 | "Should never have only a single symbol allocated out-of-line!"); |
| 499 | Info.set<EIIK_PreInstrSymbol>(getPreInstrSymbol()); |
| 500 | return; |
| 501 | } |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 502 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 503 | // Otherwise fallback on the generic update. |
| 504 | } else if (!Info || Info.is<EIIK_PostInstrSymbol>()) { |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 505 | // If we don't have any other extra info, we can store this inline. |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 506 | Info.set<EIIK_PostInstrSymbol>(Symbol); |
| 507 | return; |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 510 | // Otherwise, allocate a full new set of extra info. |
| 511 | // FIXME: Maybe we should make the symbols in the extra info mutable? |
Chandler Carruth | 2a752bf | 2018-08-16 21:30:05 +0000 | [diff] [blame] | 512 | Info.set<EIIK_OutOfLine>( |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 513 | MF.createMIExtraInfo(memoperands(), getPreInstrSymbol(), Symbol)); |
Philip Reames | f5d4675 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Michael Berg | 6f176b7 | 2018-06-18 18:37:48 +0000 | [diff] [blame] | 516 | uint16_t MachineInstr::mergeFlagsWith(const MachineInstr &Other) const { |
Francis Visoiu Mistrih | b34a8c9 | 2018-03-14 17:10:58 +0000 | [diff] [blame] | 517 | // For now, the just return the union of the flags. If the flags get more |
| 518 | // complicated over time, we might need more logic here. |
| 519 | return getFlags() | Other.getFlags(); |
| 520 | } |
| 521 | |
Michael Berg | 9de32f7 | 2018-09-19 18:52:08 +0000 | [diff] [blame] | 522 | void MachineInstr::copyIRFlags(const Instruction &I) { |
| 523 | // Copy the wrapping flags. |
| 524 | if (const OverflowingBinaryOperator *OB = |
| 525 | dyn_cast<OverflowingBinaryOperator>(&I)) { |
| 526 | if (OB->hasNoSignedWrap()) |
| 527 | setFlag(MachineInstr::MIFlag::NoSWrap); |
| 528 | if (OB->hasNoUnsignedWrap()) |
| 529 | setFlag(MachineInstr::MIFlag::NoUWrap); |
| 530 | } |
| 531 | |
| 532 | // Copy the exact flag. |
| 533 | if (const PossiblyExactOperator *PE = dyn_cast<PossiblyExactOperator>(&I)) |
| 534 | if (PE->isExact()) |
| 535 | setFlag(MachineInstr::MIFlag::IsExact); |
| 536 | |
| 537 | // Copy the fast-math flags. |
| 538 | if (const FPMathOperator *FP = dyn_cast<FPMathOperator>(&I)) { |
| 539 | const FastMathFlags Flags = FP->getFastMathFlags(); |
| 540 | if (Flags.noNaNs()) |
| 541 | setFlag(MachineInstr::MIFlag::FmNoNans); |
| 542 | if (Flags.noInfs()) |
| 543 | setFlag(MachineInstr::MIFlag::FmNoInfs); |
| 544 | if (Flags.noSignedZeros()) |
| 545 | setFlag(MachineInstr::MIFlag::FmNsz); |
| 546 | if (Flags.allowReciprocal()) |
| 547 | setFlag(MachineInstr::MIFlag::FmArcp); |
| 548 | if (Flags.allowContract()) |
| 549 | setFlag(MachineInstr::MIFlag::FmContract); |
| 550 | if (Flags.approxFunc()) |
| 551 | setFlag(MachineInstr::MIFlag::FmAfn); |
| 552 | if (Flags.allowReassoc()) |
| 553 | setFlag(MachineInstr::MIFlag::FmReassoc); |
| 554 | } |
| 555 | } |
| 556 | |
Sven van Haastregt | b219bbc | 2018-09-06 10:25:59 +0000 | [diff] [blame] | 557 | bool MachineInstr::hasPropertyInBundle(uint64_t Mask, QueryType Type) const { |
Jakob Stoklund Olesen | 4aebce8 | 2013-01-10 18:42:44 +0000 | [diff] [blame] | 558 | assert(!isBundledWithPred() && "Must be called on bundle header"); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 559 | for (MachineBasicBlock::const_instr_iterator MII = getIterator();; ++MII) { |
Benjamin Kramer | 85f9cef | 2012-03-17 17:03:45 +0000 | [diff] [blame] | 560 | if (MII->getDesc().getFlags() & Mask) { |
Evan Cheng | 43d5d4c | 2011-12-08 19:23:10 +0000 | [diff] [blame] | 561 | if (Type == AnyInBundle) |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 562 | return true; |
| 563 | } else { |
Jakob Stoklund Olesen | b11f050 | 2013-01-10 01:29:42 +0000 | [diff] [blame] | 564 | if (Type == AllInBundle && !MII->isBundle()) |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 565 | return false; |
| 566 | } |
Jakob Stoklund Olesen | b11f050 | 2013-01-10 01:29:42 +0000 | [diff] [blame] | 567 | // This was the last instruction in the bundle. |
| 568 | if (!MII->isBundledWithSucc()) |
| 569 | return Type == AllInBundle; |
Evan Cheng | 7c2a4a3 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 570 | } |
Evan Cheng | 7c2a4a3 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 573 | bool MachineInstr::isIdenticalTo(const MachineInstr &Other, |
Evan Cheng | 506049f | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 574 | MICheckType Check) const { |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 575 | // If opcodes or number of operands are not the same then the two |
| 576 | // instructions are obviously not identical. |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 577 | if (Other.getOpcode() != getOpcode() || |
| 578 | Other.getNumOperands() != getNumOperands()) |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 579 | return false; |
| 580 | |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 581 | if (isBundle()) { |
Bjorn Pettersson | 0fd1a2c | 2016-12-19 11:20:57 +0000 | [diff] [blame] | 582 | // We have passed the test above that both instructions have the same |
| 583 | // opcode, so we know that both instructions are bundles here. Let's compare |
| 584 | // MIs inside the bundle. |
| 585 | assert(Other.isBundle() && "Expected that both instructions are bundles."); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 586 | MachineBasicBlock::const_instr_iterator I1 = getIterator(); |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 587 | MachineBasicBlock::const_instr_iterator I2 = Other.getIterator(); |
Bjorn Pettersson | 0fd1a2c | 2016-12-19 11:20:57 +0000 | [diff] [blame] | 588 | // Loop until we analysed the last intruction inside at least one of the |
| 589 | // bundles. |
| 590 | while (I1->isBundledWithSucc() && I2->isBundledWithSucc()) { |
| 591 | ++I1; |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 592 | ++I2; |
Bjorn Pettersson | 0fd1a2c | 2016-12-19 11:20:57 +0000 | [diff] [blame] | 593 | if (!I1->isIdenticalTo(*I2, Check)) |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 594 | return false; |
| 595 | } |
Bjorn Pettersson | 0fd1a2c | 2016-12-19 11:20:57 +0000 | [diff] [blame] | 596 | // If we've reached the end of just one of the two bundles, but not both, |
| 597 | // the instructions are not identical. |
| 598 | if (I1->isBundledWithSucc() || I2->isBundledWithSucc()) |
| 599 | return false; |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 602 | // Check operands to make sure they match. |
| 603 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 604 | const MachineOperand &MO = getOperand(i); |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 605 | const MachineOperand &OMO = Other.getOperand(i); |
Evan Cheng | cbc988b | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 606 | if (!MO.isReg()) { |
| 607 | if (!MO.isIdenticalTo(OMO)) |
| 608 | return false; |
| 609 | continue; |
| 610 | } |
| 611 | |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 612 | // Clients may or may not want to ignore defs when testing for equality. |
| 613 | // For example, machine CSE pass only cares about finding common |
| 614 | // subexpressions, so it's safe to ignore virtual register defs. |
Evan Cheng | cbc988b | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 615 | if (MO.isDef()) { |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 616 | if (Check == IgnoreDefs) |
| 617 | continue; |
Evan Cheng | cbc988b | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 618 | else if (Check == IgnoreVRegDefs) { |
Diana Picus | 109da1d | 2017-10-12 13:59:51 +0000 | [diff] [blame] | 619 | if (!TargetRegisterInfo::isVirtualRegister(MO.getReg()) || |
| 620 | !TargetRegisterInfo::isVirtualRegister(OMO.getReg())) |
| 621 | if (!MO.isIdenticalTo(OMO)) |
Evan Cheng | cbc988b | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 622 | return false; |
| 623 | } else { |
| 624 | if (!MO.isIdenticalTo(OMO)) |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 625 | return false; |
Evan Cheng | cbc988b | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 626 | if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) |
| 627 | return false; |
| 628 | } |
| 629 | } else { |
| 630 | if (!MO.isIdenticalTo(OMO)) |
| 631 | return false; |
| 632 | if (Check == CheckKillDead && MO.isKill() != OMO.isKill()) |
| 633 | return false; |
| 634 | } |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 635 | } |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 636 | // If DebugLoc does not match then two debug instructions are not identical. |
| 637 | if (isDebugInstr()) |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 638 | if (getDebugLoc() && Other.getDebugLoc() && |
| 639 | getDebugLoc() != Other.getDebugLoc()) |
Devang Patel | 9194c67 | 2011-07-07 17:45:33 +0000 | [diff] [blame] | 640 | return false; |
Evan Cheng | 34cdf6e | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 641 | return true; |
Evan Cheng | 506049f | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Justin Bogner | 9c03aa5 | 2017-10-10 23:34:01 +0000 | [diff] [blame] | 644 | const MachineFunction *MachineInstr::getMF() const { |
| 645 | return getParent()->getParent(); |
| 646 | } |
| 647 | |
Chris Lattner | 48d7c06 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 648 | MachineInstr *MachineInstr::removeFromParent() { |
| 649 | assert(getParent() && "Not embedded in a basic block!"); |
Jakob Stoklund Olesen | 9f4692d | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 650 | return getParent()->remove(this); |
Chris Lattner | 48d7c06 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Jakob Stoklund Olesen | 9f4692d | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 653 | MachineInstr *MachineInstr::removeFromBundle() { |
| 654 | assert(getParent() && "Not embedded in a basic block!"); |
| 655 | return getParent()->remove_instr(this); |
| 656 | } |
Chris Lattner | 48d7c06 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 657 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 658 | void MachineInstr::eraseFromParent() { |
| 659 | assert(getParent() && "Not embedded in a basic block!"); |
Jakob Stoklund Olesen | 9f4692d | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 660 | getParent()->erase(this); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Gerolf Hoflehner | 4e917a2 | 2014-08-13 21:15:23 +0000 | [diff] [blame] | 663 | void MachineInstr::eraseFromParentAndMarkDBGValuesForRemoval() { |
| 664 | assert(getParent() && "Not embedded in a basic block!"); |
| 665 | MachineBasicBlock *MBB = getParent(); |
| 666 | MachineFunction *MF = MBB->getParent(); |
| 667 | assert(MF && "Not embedded in a function!"); |
| 668 | |
| 669 | MachineInstr *MI = (MachineInstr *)this; |
| 670 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 671 | |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 672 | for (const MachineOperand &MO : MI->operands()) { |
Gerolf Hoflehner | 4e917a2 | 2014-08-13 21:15:23 +0000 | [diff] [blame] | 673 | if (!MO.isReg() || !MO.isDef()) |
| 674 | continue; |
| 675 | unsigned Reg = MO.getReg(); |
| 676 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 677 | continue; |
| 678 | MRI.markUsesInDebugValueAsUndef(Reg); |
| 679 | } |
| 680 | MI->eraseFromParent(); |
| 681 | } |
| 682 | |
Jakob Stoklund Olesen | 9f4692d | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 683 | void MachineInstr::eraseFromBundle() { |
| 684 | assert(getParent() && "Not embedded in a basic block!"); |
| 685 | getParent()->erase_instr(this); |
| 686 | } |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 687 | |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 688 | unsigned MachineInstr::getNumExplicitOperands() const { |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 689 | unsigned NumOperands = MCID->getNumOperands(); |
| 690 | if (!MCID->isVariadic()) |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 691 | return NumOperands; |
| 692 | |
Roman Tereshin | b1c42de | 2018-06-12 18:30:37 +0000 | [diff] [blame] | 693 | for (unsigned I = NumOperands, E = getNumOperands(); I != E; ++I) { |
| 694 | const MachineOperand &MO = getOperand(I); |
| 695 | // The operands must always be in the following order: |
| 696 | // - explicit reg defs, |
| 697 | // - other explicit operands (reg uses, immediates, etc.), |
| 698 | // - implicit reg defs |
| 699 | // - implicit reg uses |
| 700 | if (MO.isReg() && MO.isImplicit()) |
| 701 | break; |
| 702 | ++NumOperands; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 703 | } |
| 704 | return NumOperands; |
| 705 | } |
| 706 | |
Roman Tereshin | b1c42de | 2018-06-12 18:30:37 +0000 | [diff] [blame] | 707 | unsigned MachineInstr::getNumExplicitDefs() const { |
| 708 | unsigned NumDefs = MCID->getNumDefs(); |
| 709 | if (!MCID->isVariadic()) |
| 710 | return NumDefs; |
| 711 | |
| 712 | for (unsigned I = NumDefs, E = getNumOperands(); I != E; ++I) { |
| 713 | const MachineOperand &MO = getOperand(I); |
| 714 | if (!MO.isReg() || !MO.isDef() || MO.isImplicit()) |
| 715 | break; |
| 716 | ++NumDefs; |
| 717 | } |
| 718 | return NumDefs; |
| 719 | } |
| 720 | |
Jakob Stoklund Olesen | fad649a | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 721 | void MachineInstr::bundleWithPred() { |
| 722 | assert(!isBundledWithPred() && "MI is already bundled with its predecessor"); |
| 723 | setFlag(BundledPred); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 724 | MachineBasicBlock::instr_iterator Pred = getIterator(); |
| 725 | --Pred; |
Jakob Stoklund Olesen | 582abdd | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 726 | assert(!Pred->isBundledWithSucc() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fad649a | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 727 | Pred->setFlag(BundledSucc); |
| 728 | } |
| 729 | |
| 730 | void MachineInstr::bundleWithSucc() { |
| 731 | assert(!isBundledWithSucc() && "MI is already bundled with its successor"); |
| 732 | setFlag(BundledSucc); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 733 | MachineBasicBlock::instr_iterator Succ = getIterator(); |
| 734 | ++Succ; |
Jakob Stoklund Olesen | 582abdd | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 735 | assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fad649a | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 736 | Succ->setFlag(BundledPred); |
| 737 | } |
| 738 | |
| 739 | void MachineInstr::unbundleFromPred() { |
| 740 | assert(isBundledWithPred() && "MI isn't bundled with its predecessor"); |
| 741 | clearFlag(BundledPred); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 742 | MachineBasicBlock::instr_iterator Pred = getIterator(); |
| 743 | --Pred; |
Jakob Stoklund Olesen | 582abdd | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 744 | assert(Pred->isBundledWithSucc() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fad649a | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 745 | Pred->clearFlag(BundledSucc); |
| 746 | } |
| 747 | |
| 748 | void MachineInstr::unbundleFromSucc() { |
| 749 | assert(isBundledWithSucc() && "MI isn't bundled with its successor"); |
| 750 | clearFlag(BundledSucc); |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 751 | MachineBasicBlock::instr_iterator Succ = getIterator(); |
| 752 | ++Succ; |
Jakob Stoklund Olesen | 582abdd | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 753 | assert(Succ->isBundledWithPred() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fad649a | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 754 | Succ->clearFlag(BundledPred); |
| 755 | } |
| 756 | |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 757 | bool MachineInstr::isStackAligningInlineAsm() const { |
| 758 | if (isInlineAsm()) { |
| 759 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 760 | if (ExtraInfo & InlineAsm::Extra_IsAlignStack) |
| 761 | return true; |
| 762 | } |
| 763 | return false; |
| 764 | } |
Chris Lattner | 8ace2cd | 2006-10-20 22:39:59 +0000 | [diff] [blame] | 765 | |
Chad Rosier | 576cd11 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 766 | InlineAsm::AsmDialect MachineInstr::getInlineAsmDialect() const { |
| 767 | assert(isInlineAsm() && "getInlineAsmDialect() only works for inline asms!"); |
| 768 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
Chad Rosier | 2f1d815 | 2012-09-05 22:40:13 +0000 | [diff] [blame] | 769 | return InlineAsm::AsmDialect((ExtraInfo & InlineAsm::Extra_AsmDialect) != 0); |
Chad Rosier | 576cd11 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Jakob Stoklund Olesen | 9dfaacb | 2011-10-12 23:37:33 +0000 | [diff] [blame] | 772 | int MachineInstr::findInlineAsmFlagIdx(unsigned OpIdx, |
| 773 | unsigned *GroupNo) const { |
| 774 | assert(isInlineAsm() && "Expected an inline asm instruction"); |
| 775 | assert(OpIdx < getNumOperands() && "OpIdx out of range"); |
| 776 | |
| 777 | // Ignore queries about the initial operands. |
| 778 | if (OpIdx < InlineAsm::MIOp_FirstOperand) |
| 779 | return -1; |
| 780 | |
| 781 | unsigned Group = 0; |
| 782 | unsigned NumOps; |
| 783 | for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; |
| 784 | i += NumOps) { |
| 785 | const MachineOperand &FlagMO = getOperand(i); |
| 786 | // If we reach the implicit register operands, stop looking. |
| 787 | if (!FlagMO.isImm()) |
| 788 | return -1; |
| 789 | NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); |
| 790 | if (i + NumOps > OpIdx) { |
| 791 | if (GroupNo) |
| 792 | *GroupNo = Group; |
| 793 | return i; |
| 794 | } |
| 795 | ++Group; |
| 796 | } |
| 797 | return -1; |
| 798 | } |
| 799 | |
Shiva Chen | 0853422 | 2018-05-09 02:41:08 +0000 | [diff] [blame] | 800 | const DILabel *MachineInstr::getDebugLabel() const { |
| 801 | assert(isDebugLabel() && "not a DBG_LABEL"); |
| 802 | return cast<DILabel>(getOperand(0).getMetadata()); |
| 803 | } |
| 804 | |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 805 | const DILocalVariable *MachineInstr::getDebugVariable() const { |
| 806 | assert(isDebugValue() && "not a DBG_VALUE"); |
| 807 | return cast<DILocalVariable>(getOperand(2).getMetadata()); |
| 808 | } |
| 809 | |
| 810 | const DIExpression *MachineInstr::getDebugExpression() const { |
| 811 | assert(isDebugValue() && "not a DBG_VALUE"); |
| 812 | return cast<DIExpression>(getOperand(3).getMetadata()); |
| 813 | } |
| 814 | |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 815 | const TargetRegisterClass* |
| 816 | MachineInstr::getRegClassConstraint(unsigned OpIdx, |
| 817 | const TargetInstrInfo *TII, |
| 818 | const TargetRegisterInfo *TRI) const { |
Jakob Stoklund Olesen | 397fc48 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 819 | assert(getParent() && "Can't have an MBB reference here!"); |
Justin Bogner | 1842f4a | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 820 | assert(getMF() && "Can't have an MF reference here!"); |
| 821 | const MachineFunction &MF = *getMF(); |
Jakob Stoklund Olesen | 397fc48 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 822 | |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 823 | // Most opcodes have fixed constraints in their MCInstrDesc. |
| 824 | if (!isInlineAsm()) |
Jakob Stoklund Olesen | 397fc48 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 825 | return TII->getRegClass(getDesc(), OpIdx, TRI, MF); |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 826 | |
| 827 | if (!getOperand(OpIdx).isReg()) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 828 | return nullptr; |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 829 | |
| 830 | // For tied uses on inline asm, get the constraint from the def. |
| 831 | unsigned DefIdx; |
| 832 | if (getOperand(OpIdx).isUse() && isRegTiedToDefOperand(OpIdx, &DefIdx)) |
| 833 | OpIdx = DefIdx; |
| 834 | |
| 835 | // Inline asm stores register class constraints in the flag word. |
| 836 | int FlagIdx = findInlineAsmFlagIdx(OpIdx); |
| 837 | if (FlagIdx < 0) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 838 | return nullptr; |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 839 | |
| 840 | unsigned Flag = getOperand(FlagIdx).getImm(); |
| 841 | unsigned RCID; |
Simon Dardis | 5ebefb8 | 2016-07-18 13:17:31 +0000 | [diff] [blame] | 842 | if ((InlineAsm::getKind(Flag) == InlineAsm::Kind_RegUse || |
| 843 | InlineAsm::getKind(Flag) == InlineAsm::Kind_RegDef || |
| 844 | InlineAsm::getKind(Flag) == InlineAsm::Kind_RegDefEarlyClobber) && |
| 845 | InlineAsm::hasRegClassConstraint(Flag, RCID)) |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 846 | return TRI->getRegClass(RCID); |
| 847 | |
| 848 | // Assume that all registers in a memory operand are pointers. |
| 849 | if (InlineAsm::getKind(Flag) == InlineAsm::Kind_Mem) |
Jakob Stoklund Olesen | 397fc48 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 850 | return TRI->getPointerRegClass(MF); |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 851 | |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 852 | return nullptr; |
Jakob Stoklund Olesen | f591697 | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 853 | } |
| 854 | |
Quentin Colombet | fb57392 | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 855 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVReg( |
| 856 | unsigned Reg, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII, |
| 857 | const TargetRegisterInfo *TRI, bool ExploreBundle) const { |
| 858 | // Check every operands inside the bundle if we have |
| 859 | // been asked to. |
| 860 | if (ExploreBundle) |
Duncan P. N. Exon Smith | 63ec7f0 | 2016-02-27 17:05:33 +0000 | [diff] [blame] | 861 | for (ConstMIBundleOperands OpndIt(*this); OpndIt.isValid() && CurRC; |
Quentin Colombet | fb57392 | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 862 | ++OpndIt) |
| 863 | CurRC = OpndIt->getParent()->getRegClassConstraintEffectForVRegImpl( |
| 864 | OpndIt.getOperandNo(), Reg, CurRC, TII, TRI); |
| 865 | else |
| 866 | // Otherwise, just check the current operands. |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 867 | for (unsigned i = 0, e = NumOperands; i < e && CurRC; ++i) |
| 868 | CurRC = getRegClassConstraintEffectForVRegImpl(i, Reg, CurRC, TII, TRI); |
Quentin Colombet | fb57392 | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 869 | return CurRC; |
| 870 | } |
| 871 | |
| 872 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVRegImpl( |
| 873 | unsigned OpIdx, unsigned Reg, const TargetRegisterClass *CurRC, |
| 874 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { |
| 875 | assert(CurRC && "Invalid initial register class"); |
| 876 | // Check if Reg is constrained by some of its use/def from MI. |
| 877 | const MachineOperand &MO = getOperand(OpIdx); |
| 878 | if (!MO.isReg() || MO.getReg() != Reg) |
| 879 | return CurRC; |
| 880 | // If yes, accumulate the constraints through the operand. |
| 881 | return getRegClassConstraintEffect(OpIdx, CurRC, TII, TRI); |
| 882 | } |
| 883 | |
| 884 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffect( |
| 885 | unsigned OpIdx, const TargetRegisterClass *CurRC, |
| 886 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { |
| 887 | const TargetRegisterClass *OpRC = getRegClassConstraint(OpIdx, TII, TRI); |
| 888 | const MachineOperand &MO = getOperand(OpIdx); |
| 889 | assert(MO.isReg() && |
| 890 | "Cannot get register constraints for non-register operand"); |
| 891 | assert(CurRC && "Invalid initial register class"); |
| 892 | if (unsigned SubIdx = MO.getSubReg()) { |
| 893 | if (OpRC) |
| 894 | CurRC = TRI->getMatchingSuperRegClass(CurRC, OpRC, SubIdx); |
| 895 | else |
| 896 | CurRC = TRI->getSubClassWithSubReg(CurRC, SubIdx); |
| 897 | } else if (OpRC) |
| 898 | CurRC = TRI->getCommonSubClass(CurRC, OpRC); |
| 899 | return CurRC; |
| 900 | } |
| 901 | |
Jakob Stoklund Olesen | 25377c8 | 2013-01-09 18:28:16 +0000 | [diff] [blame] | 902 | /// Return the number of instructions inside the MI bundle, not counting the |
| 903 | /// header instruction. |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 904 | unsigned MachineInstr::getBundleSize() const { |
Duncan P. N. Exon Smith | 20a6252 | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 905 | MachineBasicBlock::const_instr_iterator I = getIterator(); |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 906 | unsigned Size = 0; |
Richard Trieu | 1b96cbe | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 907 | while (I->isBundledWithSucc()) { |
| 908 | ++Size; |
| 909 | ++I; |
| 910 | } |
Evan Cheng | ddfd137 | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 911 | return Size; |
| 912 | } |
| 913 | |
Nicolai Haehnle | 3441786 | 2016-04-22 04:04:08 +0000 | [diff] [blame] | 914 | /// Returns true if the MachineInstr has an implicit-use operand of exactly |
| 915 | /// the given register (not considering sub/super-registers). |
| 916 | bool MachineInstr::hasRegisterImplicitUseOperand(unsigned Reg) const { |
| 917 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 918 | const MachineOperand &MO = getOperand(i); |
| 919 | if (MO.isReg() && MO.isUse() && MO.isImplicit() && MO.getReg() == Reg) |
| 920 | return true; |
| 921 | } |
| 922 | return false; |
| 923 | } |
| 924 | |
Evan Cheng | faa5107 | 2007-04-26 19:00:32 +0000 | [diff] [blame] | 925 | /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of |
Jim Grosbach | f9ca50e | 2009-09-17 17:57:26 +0000 | [diff] [blame] | 926 | /// the specific register or -1 if it is not found. It further tightens |
Evan Cheng | 76d7e76 | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 927 | /// the search criteria to a use that kills the register if isKill is true. |
Fraser Cormack | 33a142a | 2016-10-11 09:09:21 +0000 | [diff] [blame] | 928 | int MachineInstr::findRegisterUseOperandIdx( |
| 929 | unsigned Reg, bool isKill, const TargetRegisterInfo *TRI) const { |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 930 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 931 | const MachineOperand &MO = getOperand(i); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 932 | if (!MO.isReg() || !MO.isUse()) |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 933 | continue; |
| 934 | unsigned MOReg = MO.getReg(); |
| 935 | if (!MOReg) |
| 936 | continue; |
Stanislav Mekhanoshin | 1c82b7d | 2018-11-12 18:12:28 +0000 | [diff] [blame] | 937 | if (MOReg == Reg || (TRI && Reg && MOReg && TRI->regsOverlap(MOReg, Reg))) |
Evan Cheng | 76d7e76 | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 938 | if (!isKill || MO.isKill()) |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 939 | return i; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 940 | } |
Evan Cheng | 32eb1f1 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 941 | return -1; |
Evan Cheng | 576d123 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 942 | } |
Jakob Stoklund Olesen | 7ebc4d6 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 943 | |
Jakob Stoklund Olesen | 18b2c9d | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 944 | /// readsWritesVirtualRegister - Return a pair of bools (reads, writes) |
| 945 | /// indicating if this instruction reads or writes Reg. This also considers |
| 946 | /// partial defines. |
| 947 | std::pair<bool,bool> |
| 948 | MachineInstr::readsWritesVirtualRegister(unsigned Reg, |
| 949 | SmallVectorImpl<unsigned> *Ops) const { |
| 950 | bool PartDef = false; // Partial redefine. |
| 951 | bool FullDef = false; // Full define. |
| 952 | bool Use = false; |
Jakob Stoklund Olesen | 7ebc4d6 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 953 | |
| 954 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 955 | const MachineOperand &MO = getOperand(i); |
| 956 | if (!MO.isReg() || MO.getReg() != Reg) |
| 957 | continue; |
Jakob Stoklund Olesen | 18b2c9d | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 958 | if (Ops) |
| 959 | Ops->push_back(i); |
Jakob Stoklund Olesen | 7ebc4d6 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 960 | if (MO.isUse()) |
Jakob Stoklund Olesen | 18b2c9d | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 961 | Use |= !MO.isUndef(); |
Jakob Stoklund Olesen | 201f246 | 2011-08-19 00:30:17 +0000 | [diff] [blame] | 962 | else if (MO.getSubReg() && !MO.isUndef()) |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 963 | // A partial def undef doesn't count as reading the register. |
Jakob Stoklund Olesen | 7ebc4d6 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 964 | PartDef = true; |
| 965 | else |
| 966 | FullDef = true; |
| 967 | } |
Jakob Stoklund Olesen | 18b2c9d | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 968 | // A partial redefine uses Reg unless there is also a full define. |
| 969 | return std::make_pair(Use || (PartDef && !FullDef), PartDef || FullDef); |
Jakob Stoklund Olesen | 7ebc4d6 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 970 | } |
| 971 | |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 972 | /// findRegisterDefOperandIdx() - Returns the operand index that is a def of |
Dan Gohman | 703bfe6 | 2008-05-06 00:20:10 +0000 | [diff] [blame] | 973 | /// the specified register or -1 if it is not found. If isDead is true, defs |
| 974 | /// that are not dead are skipped. If TargetRegisterInfo is non-null, then it |
| 975 | /// also checks if there is a def of a super-register. |
Evan Cheng | 1015ba7 | 2010-05-21 20:53:24 +0000 | [diff] [blame] | 976 | int |
| 977 | MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, |
| 978 | const TargetRegisterInfo *TRI) const { |
| 979 | bool isPhys = TargetRegisterInfo::isPhysicalRegister(Reg); |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 980 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 981 | const MachineOperand &MO = getOperand(i); |
Jakob Stoklund Olesen | 1cf8b0f | 2012-02-14 23:49:37 +0000 | [diff] [blame] | 982 | // Accept regmask operands when Overlap is set. |
| 983 | // Ignore them when looking for a specific def operand (Overlap == false). |
| 984 | if (isPhys && Overlap && MO.isRegMask() && MO.clobbersPhysReg(Reg)) |
| 985 | return i; |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 986 | if (!MO.isReg() || !MO.isDef()) |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 987 | continue; |
| 988 | unsigned MOReg = MO.getReg(); |
Evan Cheng | 1015ba7 | 2010-05-21 20:53:24 +0000 | [diff] [blame] | 989 | bool Found = (MOReg == Reg); |
| 990 | if (!Found && TRI && isPhys && |
| 991 | TargetRegisterInfo::isPhysicalRegister(MOReg)) { |
| 992 | if (Overlap) |
| 993 | Found = TRI->regsOverlap(MOReg, Reg); |
| 994 | else |
| 995 | Found = TRI->isSubRegister(MOReg, Reg); |
| 996 | } |
| 997 | if (Found && (!isDead || MO.isDead())) |
| 998 | return i; |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 999 | } |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1000 | return -1; |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 1001 | } |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1002 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1003 | /// findFirstPredOperandIdx() - Find the index of the first operand in the |
| 1004 | /// operand list that is used to represent the predicate. It returns -1 if |
| 1005 | /// none is found. |
| 1006 | int MachineInstr::findFirstPredOperandIdx() const { |
Jim Grosbach | f8e1e3e | 2011-08-29 22:24:09 +0000 | [diff] [blame] | 1007 | // Don't call MCID.findFirstPredOperandIdx() because this variant |
| 1008 | // is sometimes called on an instruction that's not yet complete, and |
| 1009 | // so the number of operands is less than the MCID indicates. In |
| 1010 | // particular, the PTX target does this. |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1011 | const MCInstrDesc &MCID = getDesc(); |
| 1012 | if (MCID.isPredicable()) { |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1013 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1014 | if (MCID.OpInfo[i].isPredicate()) |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1015 | return i; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Evan Cheng | f277ee4 | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1018 | return -1; |
Evan Cheng | 19e3f31 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1019 | } |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 1020 | |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1021 | // MachineOperand::TiedTo is 4 bits wide. |
| 1022 | const unsigned TiedMax = 15; |
| 1023 | |
| 1024 | /// tieOperands - Mark operands at DefIdx and UseIdx as tied to each other. |
| 1025 | /// |
| 1026 | /// Use and def operands can be tied together, indicated by a non-zero TiedTo |
| 1027 | /// field. TiedTo can have these values: |
| 1028 | /// |
| 1029 | /// 0: Operand is not tied to anything. |
| 1030 | /// 1 to TiedMax-1: Tied to getOperand(TiedTo-1). |
| 1031 | /// TiedMax: Tied to an operand >= TiedMax-1. |
| 1032 | /// |
| 1033 | /// The tied def must be one of the first TiedMax operands on a normal |
| 1034 | /// instruction. INLINEASM instructions allow more tied defs. |
| 1035 | /// |
Jakob Stoklund Olesen | 9408314 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1036 | void MachineInstr::tieOperands(unsigned DefIdx, unsigned UseIdx) { |
Jakob Stoklund Olesen | 9408314 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1037 | MachineOperand &DefMO = getOperand(DefIdx); |
| 1038 | MachineOperand &UseMO = getOperand(UseIdx); |
| 1039 | assert(DefMO.isDef() && "DefIdx must be a def operand"); |
| 1040 | assert(UseMO.isUse() && "UseIdx must be a use operand"); |
| 1041 | assert(!DefMO.isTied() && "Def is already tied to another use"); |
| 1042 | assert(!UseMO.isTied() && "Use is already tied to another def"); |
| 1043 | |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1044 | if (DefIdx < TiedMax) |
| 1045 | UseMO.TiedTo = DefIdx + 1; |
| 1046 | else { |
| 1047 | // Inline asm can use the group descriptors to find tied operands, but on |
| 1048 | // normal instruction, the tied def must be within the first TiedMax |
| 1049 | // operands. |
| 1050 | assert(isInlineAsm() && "DefIdx out of range"); |
| 1051 | UseMO.TiedTo = TiedMax; |
| 1052 | } |
| 1053 | |
| 1054 | // UseIdx can be out of range, we'll search for it in findTiedOperandIdx(). |
| 1055 | DefMO.TiedTo = std::min(UseIdx + 1, TiedMax); |
Jakob Stoklund Olesen | 9408314 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
Jakob Stoklund Olesen | 699ac04 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1058 | /// Given the index of a tied register operand, find the operand it is tied to. |
| 1059 | /// Defs are tied to uses and vice versa. Returns the index of the tied operand |
| 1060 | /// which must exist. |
| 1061 | unsigned MachineInstr::findTiedOperandIdx(unsigned OpIdx) const { |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1062 | const MachineOperand &MO = getOperand(OpIdx); |
| 1063 | assert(MO.isTied() && "Operand isn't tied"); |
Jakob Stoklund Olesen | 699ac04 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1064 | |
Jakob Stoklund Olesen | 9c13067 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1065 | // Normally TiedTo is in range. |
| 1066 | if (MO.TiedTo < TiedMax) |
| 1067 | return MO.TiedTo - 1; |
| 1068 | |
| 1069 | // Uses on normal instructions can be out of range. |
| 1070 | if (!isInlineAsm()) { |
| 1071 | // Normal tied defs must be in the 0..TiedMax-1 range. |
| 1072 | if (MO.isUse()) |
| 1073 | return TiedMax - 1; |
| 1074 | // MO is a def. Search for the tied use. |
| 1075 | for (unsigned i = TiedMax - 1, e = getNumOperands(); i != e; ++i) { |
| 1076 | const MachineOperand &UseMO = getOperand(i); |
| 1077 | if (UseMO.isReg() && UseMO.isUse() && UseMO.TiedTo == OpIdx + 1) |
| 1078 | return i; |
| 1079 | } |
| 1080 | llvm_unreachable("Can't find tied use"); |
| 1081 | } |
| 1082 | |
| 1083 | // Now deal with inline asm by parsing the operand group descriptor flags. |
| 1084 | // Find the beginning of each operand group. |
| 1085 | SmallVector<unsigned, 8> GroupIdx; |
| 1086 | unsigned OpIdxGroup = ~0u; |
| 1087 | unsigned NumOps; |
| 1088 | for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; |
| 1089 | i += NumOps) { |
| 1090 | const MachineOperand &FlagMO = getOperand(i); |
| 1091 | assert(FlagMO.isImm() && "Invalid tied operand on inline asm"); |
| 1092 | unsigned CurGroup = GroupIdx.size(); |
| 1093 | GroupIdx.push_back(i); |
| 1094 | NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); |
| 1095 | // OpIdx belongs to this operand group. |
| 1096 | if (OpIdx > i && OpIdx < i + NumOps) |
| 1097 | OpIdxGroup = CurGroup; |
| 1098 | unsigned TiedGroup; |
| 1099 | if (!InlineAsm::isUseOperandTiedToDef(FlagMO.getImm(), TiedGroup)) |
| 1100 | continue; |
| 1101 | // Operands in this group are tied to operands in TiedGroup which must be |
| 1102 | // earlier. Find the number of operands between the two groups. |
| 1103 | unsigned Delta = i - GroupIdx[TiedGroup]; |
| 1104 | |
| 1105 | // OpIdx is a use tied to TiedGroup. |
| 1106 | if (OpIdxGroup == CurGroup) |
| 1107 | return OpIdx - Delta; |
| 1108 | |
| 1109 | // OpIdx is a def tied to this use group. |
| 1110 | if (OpIdxGroup == TiedGroup) |
| 1111 | return OpIdx + Delta; |
| 1112 | } |
| 1113 | llvm_unreachable("Invalid tied operand on inline asm"); |
Jakob Stoklund Olesen | 699ac04 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1114 | } |
| 1115 | |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1116 | /// clearKillInfo - Clears kill flags on all operands. |
| 1117 | /// |
| 1118 | void MachineInstr::clearKillInfo() { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1119 | for (MachineOperand &MO : operands()) { |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1120 | if (MO.isReg() && MO.isUse()) |
| 1121 | MO.setIsKill(false); |
| 1122 | } |
| 1123 | } |
| 1124 | |
Geoff Berry | ff75b99 | 2018-01-29 18:47:48 +0000 | [diff] [blame] | 1125 | void MachineInstr::substituteRegister(unsigned FromReg, unsigned ToReg, |
Jakob Stoklund Olesen | 9edf7de | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1126 | unsigned SubIdx, |
Geoff Berry | 13357c9 | 2018-02-23 18:25:08 +0000 | [diff] [blame] | 1127 | const TargetRegisterInfo &RegInfo) { |
Jakob Stoklund Olesen | 9edf7de | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1128 | if (TargetRegisterInfo::isPhysicalRegister(ToReg)) { |
| 1129 | if (SubIdx) |
| 1130 | ToReg = RegInfo.getSubReg(ToReg, SubIdx); |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1131 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 9edf7de | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1132 | if (!MO.isReg() || MO.getReg() != FromReg) |
| 1133 | continue; |
| 1134 | MO.substPhysReg(ToReg, RegInfo); |
| 1135 | } |
| 1136 | } else { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1137 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 9edf7de | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1138 | if (!MO.isReg() || MO.getReg() != FromReg) |
| 1139 | continue; |
| 1140 | MO.substVirtReg(ToReg, SubIdx, RegInfo); |
| 1141 | } |
| 1142 | } |
| 1143 | } |
| 1144 | |
Evan Cheng | 9f1c831 | 2008-07-03 09:09:37 +0000 | [diff] [blame] | 1145 | /// isSafeToMove - Return true if it is safe to move this instruction. If |
| 1146 | /// SawStore is set to true, it means that there is a store (or call) between |
| 1147 | /// the instruction's location and its intended destination. |
Matthias Braun | dfc41db | 2015-05-19 21:22:20 +0000 | [diff] [blame] | 1148 | bool MachineInstr::isSafeToMove(AliasAnalysis *AA, bool &SawStore) const { |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1149 | // Ignore stuff that we obviously can't move. |
Jakob Stoklund Olesen | 0d75858 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1150 | // |
| 1151 | // Treat volatile loads as stores. This is not strictly necessary for |
Jakob Stoklund Olesen | 4f1a56c | 2012-09-04 18:44:43 +0000 | [diff] [blame] | 1152 | // volatiles, but it is required for atomic loads. It is not allowed to move |
Jakob Stoklund Olesen | 0d75858 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1153 | // a load across an atomic load with Ordering > Monotonic. |
Alex Bradbury | 81fd138 | 2017-11-08 20:19:16 +0000 | [diff] [blame] | 1154 | if (mayStore() || isCall() || isPHI() || |
Jakob Stoklund Olesen | f036f7a | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1155 | (mayLoad() && hasOrderedMemoryRef())) { |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1156 | SawStore = true; |
| 1157 | return false; |
| 1158 | } |
Evan Cheng | 30a343a | 2011-01-07 21:08:26 +0000 | [diff] [blame] | 1159 | |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1160 | if (isPosition() || isDebugInstr() || isTerminator() || |
Rafael Espindola | 7d7d996 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 1161 | hasUnmodeledSideEffects()) |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1162 | return false; |
| 1163 | |
| 1164 | // See if this instruction does a load. If so, we have to guarantee that the |
| 1165 | // loaded value doesn't change between the load and the its intended |
| 1166 | // destination. The check for isInvariantLoad gives the targe the chance to |
| 1167 | // classify the load as always returning a constant, e.g. a constant pool |
| 1168 | // load. |
Justin Lebar | e7555f0 | 2016-09-10 01:03:20 +0000 | [diff] [blame] | 1169 | if (mayLoad() && !isDereferenceableInvariantLoad(AA)) |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1170 | // Otherwise, this is a real load. If there is a store between the load and |
Jakob Stoklund Olesen | 0d75858 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1171 | // end of block, we can't move it. |
| 1172 | return !SawStore; |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1173 | |
Evan Cheng | b27087f | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1174 | return true; |
| 1175 | } |
| 1176 | |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1177 | bool MachineInstr::mayAlias(AliasAnalysis *AA, MachineInstr &Other, |
| 1178 | bool UseTBAA) { |
Justin Bogner | 1842f4a | 2017-10-10 23:50:49 +0000 | [diff] [blame] | 1179 | const MachineFunction *MF = getMF(); |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1180 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1181 | const MachineFrameInfo &MFI = MF->getFrameInfo(); |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1182 | |
| 1183 | // If neither instruction stores to memory, they can't alias in any |
| 1184 | // meaningful way, even if they read from the same address. |
| 1185 | if (!mayStore() && !Other.mayStore()) |
| 1186 | return false; |
| 1187 | |
| 1188 | // Let the target decide if memory accesses cannot possibly overlap. |
| 1189 | if (TII->areMemAccessesTriviallyDisjoint(*this, Other, AA)) |
| 1190 | return false; |
| 1191 | |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1192 | // FIXME: Need to handle multiple memory operands to support all targets. |
| 1193 | if (!hasOneMemOperand() || !Other.hasOneMemOperand()) |
| 1194 | return true; |
| 1195 | |
| 1196 | MachineMemOperand *MMOa = *memoperands_begin(); |
| 1197 | MachineMemOperand *MMOb = *Other.memoperands_begin(); |
| 1198 | |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1199 | // The following interface to AA is fashioned after DAGCombiner::isAlias |
| 1200 | // and operates with MachineMemOperand offset with some important |
| 1201 | // assumptions: |
| 1202 | // - LLVM fundamentally assumes flat address spaces. |
| 1203 | // - MachineOperand offset can *only* result from legalization and |
| 1204 | // cannot affect queries other than the trivial case of overlap |
| 1205 | // checking. |
| 1206 | // - These offsets never wrap and never step outside |
| 1207 | // of allocated objects. |
| 1208 | // - There should never be any negative offsets here. |
| 1209 | // |
| 1210 | // FIXME: Modify API to hide this math from "user" |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1211 | // Even before we go to AA we can reason locally about some |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1212 | // memory objects. It can save compile time, and possibly catch some |
| 1213 | // corner cases not currently covered. |
| 1214 | |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1215 | int64_t OffsetA = MMOa->getOffset(); |
| 1216 | int64_t OffsetB = MMOb->getOffset(); |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1217 | int64_t MinOffset = std::min(OffsetA, OffsetB); |
Krzysztof Parzyszek | 7e54adc | 2018-08-20 20:37:57 +0000 | [diff] [blame] | 1218 | |
| 1219 | uint64_t WidthA = MMOa->getSize(); |
| 1220 | uint64_t WidthB = MMOb->getSize(); |
| 1221 | bool KnownWidthA = WidthA != MemoryLocation::UnknownSize; |
| 1222 | bool KnownWidthB = WidthB != MemoryLocation::UnknownSize; |
| 1223 | |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1224 | const Value *ValA = MMOa->getValue(); |
| 1225 | const Value *ValB = MMOb->getValue(); |
| 1226 | bool SameVal = (ValA && ValB && (ValA == ValB)); |
| 1227 | if (!SameVal) { |
| 1228 | const PseudoSourceValue *PSVa = MMOa->getPseudoValue(); |
| 1229 | const PseudoSourceValue *PSVb = MMOb->getPseudoValue(); |
| 1230 | if (PSVa && ValB && !PSVa->mayAlias(&MFI)) |
| 1231 | return false; |
| 1232 | if (PSVb && ValA && !PSVb->mayAlias(&MFI)) |
| 1233 | return false; |
| 1234 | if (PSVa && PSVb && (PSVa == PSVb)) |
| 1235 | SameVal = true; |
| 1236 | } |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1237 | |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1238 | if (SameVal) { |
Krzysztof Parzyszek | 7e54adc | 2018-08-20 20:37:57 +0000 | [diff] [blame] | 1239 | if (!KnownWidthA || !KnownWidthB) |
| 1240 | return true; |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1241 | int64_t MaxOffset = std::max(OffsetA, OffsetB); |
| 1242 | int64_t LowWidth = (MinOffset == OffsetA) ? WidthA : WidthB; |
| 1243 | return (MinOffset + LowWidth > MaxOffset); |
| 1244 | } |
| 1245 | |
| 1246 | if (!AA) |
| 1247 | return true; |
| 1248 | |
| 1249 | if (!ValA || !ValB) |
| 1250 | return true; |
| 1251 | |
| 1252 | assert((OffsetA >= 0) && "Negative MachineMemOperand offset"); |
| 1253 | assert((OffsetB >= 0) && "Negative MachineMemOperand offset"); |
| 1254 | |
Krzysztof Parzyszek | 7e54adc | 2018-08-20 20:37:57 +0000 | [diff] [blame] | 1255 | int64_t OverlapA = KnownWidthA ? WidthA + OffsetA - MinOffset |
| 1256 | : MemoryLocation::UnknownSize; |
| 1257 | int64_t OverlapB = KnownWidthB ? WidthB + OffsetB - MinOffset |
| 1258 | : MemoryLocation::UnknownSize; |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1259 | |
| 1260 | AliasResult AAResult = AA->alias( |
Krzysztof Parzyszek | 7e54adc | 2018-08-20 20:37:57 +0000 | [diff] [blame] | 1261 | MemoryLocation(ValA, OverlapA, |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1262 | UseTBAA ? MMOa->getAAInfo() : AAMDNodes()), |
Krzysztof Parzyszek | 7e54adc | 2018-08-20 20:37:57 +0000 | [diff] [blame] | 1263 | MemoryLocation(ValB, OverlapB, |
Balaram Makam | b3e25ce | 2017-08-30 14:57:12 +0000 | [diff] [blame] | 1264 | UseTBAA ? MMOb->getAAInfo() : AAMDNodes())); |
Eli Friedman | bfa1145 | 2017-03-09 23:33:36 +0000 | [diff] [blame] | 1265 | |
| 1266 | return (AAResult != NoAlias); |
| 1267 | } |
| 1268 | |
Jakob Stoklund Olesen | f036f7a | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1269 | /// hasOrderedMemoryRef - Return true if this instruction may have an ordered |
| 1270 | /// or volatile memory reference, or if the information describing the memory |
| 1271 | /// reference is not available. Return false if it is known to have no ordered |
| 1272 | /// memory references. |
| 1273 | bool MachineInstr::hasOrderedMemoryRef() const { |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1274 | // An instruction known never to access memory won't have a volatile access. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1275 | if (!mayStore() && |
| 1276 | !mayLoad() && |
| 1277 | !isCall() && |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1278 | !hasUnmodeledSideEffects()) |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1279 | return false; |
| 1280 | |
| 1281 | // Otherwise, if the instruction has no memory reference information, |
| 1282 | // conservatively assume it wasn't preserved. |
| 1283 | if (memoperands_empty()) |
| 1284 | return true; |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 1285 | |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1286 | // Check if any of our memory operands are ordered. |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 1287 | return llvm::any_of(memoperands(), [](const MachineMemOperand *MMO) { |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1288 | return !MMO->isUnordered(); |
| 1289 | }); |
Dan Gohman | 3e4fb70 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1290 | } |
| 1291 | |
Justin Lebar | e7555f0 | 2016-09-10 01:03:20 +0000 | [diff] [blame] | 1292 | /// isDereferenceableInvariantLoad - Return true if this instruction will never |
| 1293 | /// trap and is loading from a location whose value is invariant across a run of |
| 1294 | /// this function. |
| 1295 | bool MachineInstr::isDereferenceableInvariantLoad(AliasAnalysis *AA) const { |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1296 | // If the instruction doesn't load at all, it isn't an invariant load. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1297 | if (!mayLoad()) |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1298 | return false; |
| 1299 | |
| 1300 | // If the instruction has lost its memoperands, conservatively assume that |
| 1301 | // it may not be an invariant load. |
| 1302 | if (memoperands_empty()) |
| 1303 | return false; |
| 1304 | |
Matthias Braun | f79c57a | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 1305 | const MachineFrameInfo &MFI = getParent()->getParent()->getFrameInfo(); |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1306 | |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1307 | for (MachineMemOperand *MMO : memoperands()) { |
| 1308 | if (MMO->isVolatile()) return false; |
| 1309 | if (MMO->isStore()) return false; |
Justin Lebar | c71d5b4 | 2016-09-11 01:38:58 +0000 | [diff] [blame] | 1310 | if (MMO->isInvariant() && MMO->isDereferenceable()) |
| 1311 | continue; |
Nick Lewycky | d63390c | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 1312 | |
| 1313 | // A load from a constant PseudoSourceValue is invariant. |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1314 | if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) |
Matthias Braun | f79c57a | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 1315 | if (PSV->isConstant(&MFI)) |
Nick Lewycky | d63390c | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 1316 | continue; |
| 1317 | |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1318 | if (const Value *V = MMO->getValue()) { |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1319 | // If we have an AliasAnalysis, ask it whether the memory is constant. |
Chandler Carruth | 4d7ed39 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 1320 | if (AA && |
| 1321 | AA->pointsToConstantMemory( |
Justin Lebar | 6e665c8 | 2016-07-13 22:35:19 +0000 | [diff] [blame] | 1322 | MemoryLocation(V, MMO->getSize(), MMO->getAAInfo()))) |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1323 | continue; |
| 1324 | } |
| 1325 | |
| 1326 | // Otherwise assume conservatively. |
| 1327 | return false; |
| 1328 | } |
| 1329 | |
| 1330 | // Everything checks out. |
| 1331 | return true; |
| 1332 | } |
| 1333 | |
Evan Cheng | 229694f | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1334 | /// isConstantValuePHI - If the specified instruction is a PHI that always |
| 1335 | /// merges together the same virtual register, return the register, otherwise |
| 1336 | /// return 0. |
| 1337 | unsigned MachineInstr::isConstantValuePHI() const { |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1338 | if (!isPHI()) |
Evan Cheng | 229694f | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1339 | return 0; |
Evan Cheng | d8f079c | 2009-12-07 23:10:34 +0000 | [diff] [blame] | 1340 | assert(getNumOperands() >= 3 && |
| 1341 | "It's illegal to have a PHI without source operands"); |
Evan Cheng | 229694f | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1342 | |
| 1343 | unsigned Reg = getOperand(1).getReg(); |
| 1344 | for (unsigned i = 3, e = getNumOperands(); i < e; i += 2) |
| 1345 | if (getOperand(i).getReg() != Reg) |
| 1346 | return 0; |
| 1347 | return Reg; |
| 1348 | } |
| 1349 | |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1350 | bool MachineInstr::hasUnmodeledSideEffects() const { |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1351 | if (hasProperty(MCID::UnmodeledSideEffects)) |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1352 | return true; |
| 1353 | if (isInlineAsm()) { |
| 1354 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 1355 | if (ExtraInfo & InlineAsm::Extra_HasSideEffects) |
| 1356 | return true; |
| 1357 | } |
| 1358 | |
| 1359 | return false; |
| 1360 | } |
| 1361 | |
Michael Kuperstein | 426921f | 2015-08-12 10:14:58 +0000 | [diff] [blame] | 1362 | bool MachineInstr::isLoadFoldBarrier() const { |
| 1363 | return mayStore() || isCall() || hasUnmodeledSideEffects(); |
| 1364 | } |
| 1365 | |
Evan Cheng | a57fabe | 2010-04-08 20:02:37 +0000 | [diff] [blame] | 1366 | /// allDefsAreDead - Return true if all the defs of this instruction are dead. |
| 1367 | /// |
| 1368 | bool MachineInstr::allDefsAreDead() const { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1369 | for (const MachineOperand &MO : operands()) { |
Evan Cheng | a57fabe | 2010-04-08 20:02:37 +0000 | [diff] [blame] | 1370 | if (!MO.isReg() || MO.isUse()) |
| 1371 | continue; |
| 1372 | if (!MO.isDead()) |
| 1373 | return false; |
| 1374 | } |
| 1375 | return true; |
| 1376 | } |
| 1377 | |
Evan Cheng | c8f46c4 | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1378 | /// copyImplicitOps - Copy implicit register operands from specified |
| 1379 | /// instruction to this instruction. |
Jakob Stoklund Olesen | be06aac | 2012-12-20 22:54:02 +0000 | [diff] [blame] | 1380 | void MachineInstr::copyImplicitOps(MachineFunction &MF, |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 1381 | const MachineInstr &MI) { |
| 1382 | for (unsigned i = MI.getDesc().getNumOperands(), e = MI.getNumOperands(); |
Evan Cheng | c8f46c4 | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1383 | i != e; ++i) { |
Duncan P. N. Exon Smith | 1d75c8d | 2016-02-27 20:01:33 +0000 | [diff] [blame] | 1384 | const MachineOperand &MO = MI.getOperand(i); |
Lang Hames | 3dd951e | 2014-03-17 01:22:54 +0000 | [diff] [blame] | 1385 | if ((MO.isReg() && MO.isImplicit()) || MO.isRegMask()) |
Jakob Stoklund Olesen | be06aac | 2012-12-20 22:54:02 +0000 | [diff] [blame] | 1386 | addOperand(MF, MO); |
Evan Cheng | c8f46c4 | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1387 | } |
| 1388 | } |
| 1389 | |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1390 | bool MachineInstr::hasComplexRegisterTies() const { |
| 1391 | const MCInstrDesc &MCID = getDesc(); |
| 1392 | for (unsigned I = 0, E = getNumOperands(); I < E; ++I) { |
| 1393 | const auto &Operand = getOperand(I); |
| 1394 | if (!Operand.isReg() || Operand.isDef()) |
| 1395 | // Ignore the defined registers as MCID marks only the uses as tied. |
| 1396 | continue; |
| 1397 | int ExpectedTiedIdx = MCID.getOperandConstraint(I, MCOI::TIED_TO); |
| 1398 | int TiedIdx = Operand.isTied() ? int(findTiedOperandIdx(I)) : -1; |
| 1399 | if (ExpectedTiedIdx != TiedIdx) |
| 1400 | return true; |
| 1401 | } |
| 1402 | return false; |
| 1403 | } |
| 1404 | |
| 1405 | LLT MachineInstr::getTypeToPrint(unsigned OpIdx, SmallBitVector &PrintedTypes, |
| 1406 | const MachineRegisterInfo &MRI) const { |
| 1407 | const MachineOperand &Op = getOperand(OpIdx); |
| 1408 | if (!Op.isReg()) |
| 1409 | return LLT{}; |
| 1410 | |
| 1411 | if (isVariadic() || OpIdx >= getNumExplicitOperands()) |
| 1412 | return MRI.getType(Op.getReg()); |
| 1413 | |
| 1414 | auto &OpInfo = getDesc().OpInfo[OpIdx]; |
| 1415 | if (!OpInfo.isGenericType()) |
| 1416 | return MRI.getType(Op.getReg()); |
| 1417 | |
| 1418 | if (PrintedTypes[OpInfo.getGenericTypeIndex()]) |
| 1419 | return LLT{}; |
| 1420 | |
Roman Tereshin | 297777e | 2018-05-07 22:31:47 +0000 | [diff] [blame] | 1421 | LLT TypeToPrint = MRI.getType(Op.getReg()); |
| 1422 | // Don't mark the type index printed if it wasn't actually printed: maybe |
| 1423 | // another operand with the same type index has an actual type attached: |
| 1424 | if (TypeToPrint.isValid()) |
| 1425 | PrintedTypes.set(OpInfo.getGenericTypeIndex()); |
| 1426 | return TypeToPrint; |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1427 | } |
| 1428 | |
Aaron Ballman | 1d03d38 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 1429 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Matthias Braun | aaf8acb | 2017-01-29 18:20:42 +0000 | [diff] [blame] | 1430 | LLVM_DUMP_METHOD void MachineInstr::dump() const { |
Sebastian Pop | 0ed0bfd | 2016-12-21 01:41:12 +0000 | [diff] [blame] | 1431 | dbgs() << " "; |
Matthias Braun | aaf8acb | 2017-01-29 18:20:42 +0000 | [diff] [blame] | 1432 | print(dbgs()); |
Mon P Wang | 5ca6bd1 | 2008-10-10 01:43:55 +0000 | [diff] [blame] | 1433 | } |
Matthias Braun | 88d2075 | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 1434 | #endif |
Mon P Wang | 5ca6bd1 | 2008-10-10 01:43:55 +0000 | [diff] [blame] | 1435 | |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1436 | void MachineInstr::print(raw_ostream &OS, bool IsStandalone, bool SkipOpers, |
Krzysztof Parzyszek | b8924a0 | 2018-04-10 16:46:13 +0000 | [diff] [blame] | 1437 | bool SkipDebugLoc, bool AddNewLine, |
| 1438 | const TargetInstrInfo *TII) const { |
Duncan P. N. Exon Smith | 340d78d | 2015-06-26 23:18:44 +0000 | [diff] [blame] | 1439 | const Module *M = nullptr; |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1440 | const Function *F = nullptr; |
| 1441 | if (const MachineFunction *MF = getMFIfAvailable(*this)) { |
| 1442 | F = &MF->getFunction(); |
| 1443 | M = F->getParent(); |
Andrew V. Tischenko | 07ea57a | 2018-02-26 09:43:21 +0000 | [diff] [blame] | 1444 | if (!TII) |
| 1445 | TII = MF->getSubtarget().getInstrInfo(); |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1446 | } |
Duncan P. N. Exon Smith | 340d78d | 2015-06-26 23:18:44 +0000 | [diff] [blame] | 1447 | |
| 1448 | ModuleSlotTracker MST(M); |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1449 | if (F) |
| 1450 | MST.incorporateFunction(*F); |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1451 | print(OS, MST, IsStandalone, SkipOpers, SkipDebugLoc, TII); |
Duncan P. N. Exon Smith | a08efbf | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1452 | } |
| 1453 | |
| 1454 | void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST, |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1455 | bool IsStandalone, bool SkipOpers, bool SkipDebugLoc, |
Krzysztof Parzyszek | b8924a0 | 2018-04-10 16:46:13 +0000 | [diff] [blame] | 1456 | bool AddNewLine, const TargetInstrInfo *TII) const { |
Eric Christopher | 9656d2d | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1457 | // We can be a bit tidier if we know the MachineFunction. |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1458 | const MachineFunction *MF = nullptr; |
Eric Christopher | 9656d2d | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1459 | const TargetRegisterInfo *TRI = nullptr; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1460 | const MachineRegisterInfo *MRI = nullptr; |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 1461 | const TargetIntrinsicInfo *IntrinsicInfo = nullptr; |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1462 | tryToGetTargetInfo(*this, TRI, MRI, IntrinsicInfo, TII); |
Tim Northover | 9c9955b | 2016-07-29 20:32:59 +0000 | [diff] [blame] | 1463 | |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1464 | if (isCFIInstruction()) |
| 1465 | assert(getNumOperands() == 1 && "Expected 1 operand in CFI instruction"); |
Jakob Stoklund Olesen | a0c5bf1 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1466 | |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1467 | SmallBitVector PrintedTypes(8); |
Francis Visoiu Mistrih | fa73cae | 2018-09-26 13:33:09 +0000 | [diff] [blame] | 1468 | bool ShouldPrintRegisterTies = IsStandalone || hasComplexRegisterTies(); |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1469 | auto getTiedOperandIdx = [&](unsigned OpIdx) { |
| 1470 | if (!ShouldPrintRegisterTies) |
| 1471 | return 0U; |
| 1472 | const MachineOperand &MO = getOperand(OpIdx); |
| 1473 | if (MO.isReg() && MO.isTied() && !MO.isDef()) |
| 1474 | return findTiedOperandIdx(OpIdx); |
| 1475 | return 0U; |
| 1476 | }; |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1477 | unsigned StartOp = 0; |
| 1478 | unsigned e = getNumOperands(); |
| 1479 | |
Dan Gohman | 0ba90f3e | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1480 | // Print explicitly defined operands on the left of an assignment syntax. |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1481 | while (StartOp < e) { |
| 1482 | const MachineOperand &MO = getOperand(StartOp); |
| 1483 | if (!MO.isReg() || !MO.isDef() || MO.isImplicit()) |
| 1484 | break; |
| 1485 | |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1486 | if (StartOp != 0) |
| 1487 | OS << ", "; |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1488 | |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1489 | LLT TypeToPrint = MRI ? getTypeToPrint(StartOp, PrintedTypes, *MRI) : LLT{}; |
| 1490 | unsigned TiedOperandIdx = getTiedOperandIdx(StartOp); |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1491 | MO.print(OS, MST, TypeToPrint, /*PrintDef=*/false, IsStandalone, |
Francis Visoiu Mistrih | 96ed12f | 2018-01-18 17:59:06 +0000 | [diff] [blame] | 1492 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo); |
Francis Visoiu Mistrih | 23b4612 | 2018-01-18 14:52:14 +0000 | [diff] [blame] | 1493 | ++StartOp; |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1494 | } |
Tanya Lattner | b140762 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 1495 | |
Dan Gohman | 0ba90f3e | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1496 | if (StartOp != 0) |
| 1497 | OS << " = "; |
| 1498 | |
Francis Visoiu Mistrih | 2a21599 | 2018-01-09 16:11:51 +0000 | [diff] [blame] | 1499 | if (getFlag(MachineInstr::FrameSetup)) |
| 1500 | OS << "frame-setup "; |
Francis Visoiu Mistrih | 12d5807 | 2018-03-13 19:53:16 +0000 | [diff] [blame] | 1501 | if (getFlag(MachineInstr::FrameDestroy)) |
Francis Visoiu Mistrih | 2a21599 | 2018-01-09 16:11:51 +0000 | [diff] [blame] | 1502 | OS << "frame-destroy "; |
Michael Berg | ecfd97d | 2018-05-03 00:07:56 +0000 | [diff] [blame] | 1503 | if (getFlag(MachineInstr::FmNoNans)) |
| 1504 | OS << "nnan "; |
| 1505 | if (getFlag(MachineInstr::FmNoInfs)) |
| 1506 | OS << "ninf "; |
| 1507 | if (getFlag(MachineInstr::FmNsz)) |
| 1508 | OS << "nsz "; |
| 1509 | if (getFlag(MachineInstr::FmArcp)) |
| 1510 | OS << "arcp "; |
| 1511 | if (getFlag(MachineInstr::FmContract)) |
| 1512 | OS << "contract "; |
| 1513 | if (getFlag(MachineInstr::FmAfn)) |
| 1514 | OS << "afn "; |
| 1515 | if (getFlag(MachineInstr::FmReassoc)) |
| 1516 | OS << "reassoc "; |
Michael Berg | 87d1f82 | 2018-09-11 21:35:32 +0000 | [diff] [blame] | 1517 | if (getFlag(MachineInstr::NoUWrap)) |
| 1518 | OS << "nuw "; |
| 1519 | if (getFlag(MachineInstr::NoSWrap)) |
| 1520 | OS << "nsw "; |
| 1521 | if (getFlag(MachineInstr::IsExact)) |
| 1522 | OS << "exact "; |
Francis Visoiu Mistrih | 2a21599 | 2018-01-09 16:11:51 +0000 | [diff] [blame] | 1523 | |
Dan Gohman | 0ba90f3e | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1524 | // Print the opcode name. |
Eric Christopher | 9656d2d | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1525 | if (TII) |
| 1526 | OS << TII->getName(getOpcode()); |
Benjamin Kramer | c667ba6 | 2012-02-10 13:18:44 +0000 | [diff] [blame] | 1527 | else |
| 1528 | OS << "UNKNOWN"; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1529 | |
Andrew Trick | c6ada8e | 2013-01-25 07:45:25 +0000 | [diff] [blame] | 1530 | if (SkipOpers) |
| 1531 | return; |
| 1532 | |
Dan Gohman | 0ba90f3e | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1533 | // Print the rest of the operands. |
Dan Gohman | 80f6c58 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1534 | bool FirstOp = true; |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1535 | unsigned AsmDescOp = ~0u; |
| 1536 | unsigned AsmOpCount = 0; |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1537 | |
Jakob Stoklund Olesen | 3627a46 | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 1538 | if (isInlineAsm() && e >= InlineAsm::MIOp_FirstOperand) { |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1539 | // Print asm string. |
| 1540 | OS << " "; |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1541 | const unsigned OpIdx = InlineAsm::MIOp_AsmString; |
| 1542 | LLT TypeToPrint = MRI ? getTypeToPrint(OpIdx, PrintedTypes, *MRI) : LLT{}; |
Francis Visoiu Mistrih | d3b8408 | 2017-12-07 17:12:30 +0000 | [diff] [blame] | 1543 | unsigned TiedOperandIdx = getTiedOperandIdx(OpIdx); |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1544 | getOperand(OpIdx).print(OS, MST, TypeToPrint, /*PrintDef=*/true, IsStandalone, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1545 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, |
| 1546 | IntrinsicInfo); |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1547 | |
Eric Christopher | fffe363 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 1548 | // Print HasSideEffects, MayLoad, MayStore, IsAlignStack |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1549 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 1550 | if (ExtraInfo & InlineAsm::Extra_HasSideEffects) |
| 1551 | OS << " [sideeffect]"; |
Eric Christopher | fffe363 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 1552 | if (ExtraInfo & InlineAsm::Extra_MayLoad) |
| 1553 | OS << " [mayload]"; |
| 1554 | if (ExtraInfo & InlineAsm::Extra_MayStore) |
| 1555 | OS << " [maystore]"; |
Wei Ding | ef86963 | 2016-06-22 18:51:08 +0000 | [diff] [blame] | 1556 | if (ExtraInfo & InlineAsm::Extra_IsConvergent) |
| 1557 | OS << " [isconvergent]"; |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1558 | if (ExtraInfo & InlineAsm::Extra_IsAlignStack) |
| 1559 | OS << " [alignstack]"; |
Chad Rosier | 77fffa6 | 2012-09-05 22:17:43 +0000 | [diff] [blame] | 1560 | if (getInlineAsmDialect() == InlineAsm::AD_ATT) |
Chad Rosier | 576cd11 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1561 | OS << " [attdialect]"; |
Chad Rosier | 77fffa6 | 2012-09-05 22:17:43 +0000 | [diff] [blame] | 1562 | if (getInlineAsmDialect() == InlineAsm::AD_Intel) |
Chad Rosier | 576cd11 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1563 | OS << " [inteldialect]"; |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1564 | |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1565 | StartOp = AsmDescOp = InlineAsm::MIOp_FirstOperand; |
Evan Cheng | c36b706 | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1566 | FirstOp = false; |
| 1567 | } |
| 1568 | |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1569 | for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { |
Dan Gohman | 80f6c58 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1570 | const MachineOperand &MO = getOperand(i); |
| 1571 | |
Dan Gohman | 80f6c58 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1572 | if (FirstOp) FirstOp = false; else OS << ","; |
Chris Lattner | 6a59227 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1573 | OS << " "; |
Francis Visoiu Mistrih | 2cba0cc | 2018-01-09 17:31:07 +0000 | [diff] [blame] | 1574 | |
Evan Cheng | 59b3655 | 2010-04-28 20:03:13 +0000 | [diff] [blame] | 1575 | if (isDebugValue() && MO.isMetadata()) { |
| 1576 | // Pretty print DBG_VALUE instructions. |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 1577 | auto *DIV = dyn_cast<DILocalVariable>(MO.getMetadata()); |
Duncan P. N. Exon Smith | 355ec00 | 2015-04-14 02:22:36 +0000 | [diff] [blame] | 1578 | if (DIV && !DIV->getName().empty()) |
| 1579 | OS << "!\"" << DIV->getName() << '\"'; |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1580 | else { |
| 1581 | LLT TypeToPrint = MRI ? getTypeToPrint(i, PrintedTypes, *MRI) : LLT{}; |
Francis Visoiu Mistrih | d3b8408 | 2017-12-07 17:12:30 +0000 | [diff] [blame] | 1582 | unsigned TiedOperandIdx = getTiedOperandIdx(i); |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1583 | MO.print(OS, MST, TypeToPrint, /*PrintDef=*/true, IsStandalone, |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1584 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo); |
| 1585 | } |
Shiva Chen | 0853422 | 2018-05-09 02:41:08 +0000 | [diff] [blame] | 1586 | } else if (isDebugLabel() && MO.isMetadata()) { |
| 1587 | // Pretty print DBG_LABEL instructions. |
| 1588 | auto *DIL = dyn_cast<DILabel>(MO.getMetadata()); |
| 1589 | if (DIL && !DIL->getName().empty()) |
| 1590 | OS << "\"" << DIL->getName() << '\"'; |
| 1591 | else { |
| 1592 | LLT TypeToPrint = MRI ? getTypeToPrint(i, PrintedTypes, *MRI) : LLT{}; |
| 1593 | unsigned TiedOperandIdx = getTiedOperandIdx(i); |
| 1594 | MO.print(OS, MST, TypeToPrint, /*PrintDef=*/true, IsStandalone, |
| 1595 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo); |
| 1596 | } |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1597 | } else if (i == AsmDescOp && MO.isImm()) { |
| 1598 | // Pretty print the inline asm operand descriptor. |
| 1599 | OS << '$' << AsmOpCount++; |
| 1600 | unsigned Flag = MO.getImm(); |
| 1601 | switch (InlineAsm::getKind(Flag)) { |
Jakob Stoklund Olesen | 459b74b | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1602 | case InlineAsm::Kind_RegUse: OS << ":[reguse"; break; |
| 1603 | case InlineAsm::Kind_RegDef: OS << ":[regdef"; break; |
| 1604 | case InlineAsm::Kind_RegDefEarlyClobber: OS << ":[regdef-ec"; break; |
| 1605 | case InlineAsm::Kind_Clobber: OS << ":[clobber"; break; |
| 1606 | case InlineAsm::Kind_Imm: OS << ":[imm"; break; |
| 1607 | case InlineAsm::Kind_Mem: OS << ":[mem"; break; |
| 1608 | default: OS << ":[??" << InlineAsm::getKind(Flag); break; |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1609 | } |
| 1610 | |
Jakob Stoklund Olesen | 459b74b | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1611 | unsigned RCID = 0; |
Simon Dardis | 5ebefb8 | 2016-07-18 13:17:31 +0000 | [diff] [blame] | 1612 | if (!InlineAsm::isImmKind(Flag) && !InlineAsm::isMemKind(Flag) && |
| 1613 | InlineAsm::hasRegClassConstraint(Flag, RCID)) { |
Eric Christopher | 9656d2d | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1614 | if (TRI) { |
| 1615 | OS << ':' << TRI->getRegClassName(TRI->getRegClass(RCID)); |
Craig Topper | a5babc8 | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1616 | } else |
Jakob Stoklund Olesen | 459b74b | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1617 | OS << ":RC" << RCID; |
Nick Lewycky | 3821b18 | 2011-10-13 00:54:59 +0000 | [diff] [blame] | 1618 | } |
Jakob Stoklund Olesen | 459b74b | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1619 | |
Simon Dardis | 5ebefb8 | 2016-07-18 13:17:31 +0000 | [diff] [blame] | 1620 | if (InlineAsm::isMemKind(Flag)) { |
| 1621 | unsigned MCID = InlineAsm::getMemoryConstraintID(Flag); |
| 1622 | switch (MCID) { |
| 1623 | case InlineAsm::Constraint_es: OS << ":es"; break; |
| 1624 | case InlineAsm::Constraint_i: OS << ":i"; break; |
| 1625 | case InlineAsm::Constraint_m: OS << ":m"; break; |
| 1626 | case InlineAsm::Constraint_o: OS << ":o"; break; |
| 1627 | case InlineAsm::Constraint_v: OS << ":v"; break; |
| 1628 | case InlineAsm::Constraint_Q: OS << ":Q"; break; |
| 1629 | case InlineAsm::Constraint_R: OS << ":R"; break; |
| 1630 | case InlineAsm::Constraint_S: OS << ":S"; break; |
| 1631 | case InlineAsm::Constraint_T: OS << ":T"; break; |
| 1632 | case InlineAsm::Constraint_Um: OS << ":Um"; break; |
| 1633 | case InlineAsm::Constraint_Un: OS << ":Un"; break; |
| 1634 | case InlineAsm::Constraint_Uq: OS << ":Uq"; break; |
| 1635 | case InlineAsm::Constraint_Us: OS << ":Us"; break; |
| 1636 | case InlineAsm::Constraint_Ut: OS << ":Ut"; break; |
| 1637 | case InlineAsm::Constraint_Uv: OS << ":Uv"; break; |
| 1638 | case InlineAsm::Constraint_Uy: OS << ":Uy"; break; |
| 1639 | case InlineAsm::Constraint_X: OS << ":X"; break; |
| 1640 | case InlineAsm::Constraint_Z: OS << ":Z"; break; |
| 1641 | case InlineAsm::Constraint_ZC: OS << ":ZC"; break; |
| 1642 | case InlineAsm::Constraint_Zy: OS << ":Zy"; break; |
| 1643 | default: OS << ":?"; break; |
| 1644 | } |
| 1645 | } |
| 1646 | |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1647 | unsigned TiedTo = 0; |
| 1648 | if (InlineAsm::isUseOperandTiedToDef(Flag, TiedTo)) |
Jakob Stoklund Olesen | 459b74b | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1649 | OS << " tiedto:$" << TiedTo; |
| 1650 | |
| 1651 | OS << ']'; |
Jakob Stoklund Olesen | 7a2ecd3 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1652 | |
| 1653 | // Compute the index of the next operand descriptor. |
| 1654 | AsmDescOp += 1 + InlineAsm::getNumOperandRegisters(Flag); |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1655 | } else { |
| 1656 | LLT TypeToPrint = MRI ? getTypeToPrint(i, PrintedTypes, *MRI) : LLT{}; |
Francis Visoiu Mistrih | d3b8408 | 2017-12-07 17:12:30 +0000 | [diff] [blame] | 1657 | unsigned TiedOperandIdx = getTiedOperandIdx(i); |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 1658 | if (MO.isImm() && isOperandSubregIdx(i)) |
Francis Visoiu Mistrih | 19988dd | 2018-01-16 10:53:11 +0000 | [diff] [blame] | 1659 | MachineOperand::printSubRegIdx(OS, MO.getImm(), TRI); |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 1660 | else |
Francis Visoiu Mistrih | 7bee1ce | 2018-01-18 18:05:15 +0000 | [diff] [blame] | 1661 | MO.print(OS, MST, TypeToPrint, /*PrintDef=*/true, IsStandalone, |
Francis Visoiu Mistrih | e28484a | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 1662 | ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo); |
Francis Visoiu Mistrih | fd11bc0 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 1663 | } |
Dan Gohman | 80f6c58 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1664 | } |
| 1665 | |
Chandler Carruth | e90d440 | 2018-08-16 23:11:05 +0000 | [diff] [blame] | 1666 | // Print any optional symbols attached to this instruction as-if they were |
| 1667 | // operands. |
| 1668 | if (MCSymbol *PreInstrSymbol = getPreInstrSymbol()) { |
| 1669 | if (!FirstOp) { |
| 1670 | FirstOp = false; |
| 1671 | OS << ','; |
| 1672 | } |
| 1673 | OS << " pre-instr-symbol "; |
| 1674 | MachineOperand::printSymbol(OS, *PreInstrSymbol); |
| 1675 | } |
| 1676 | if (MCSymbol *PostInstrSymbol = getPostInstrSymbol()) { |
| 1677 | if (!FirstOp) { |
| 1678 | FirstOp = false; |
| 1679 | OS << ','; |
| 1680 | } |
| 1681 | OS << " post-instr-symbol "; |
| 1682 | MachineOperand::printSymbol(OS, *PostInstrSymbol); |
| 1683 | } |
| 1684 | |
Francis Visoiu Mistrih | e97eca6 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 1685 | if (!SkipDebugLoc) { |
| 1686 | if (const DebugLoc &DL = getDebugLoc()) { |
| 1687 | if (!FirstOp) |
| 1688 | OS << ','; |
| 1689 | OS << " debug-location "; |
| 1690 | DL->printAsOperand(OS, MST); |
| 1691 | } |
| 1692 | } |
| 1693 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1694 | if (!memoperands_empty()) { |
Francis Visoiu Mistrih | 0d758f3 | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 1695 | SmallVector<StringRef, 0> SSNs; |
| 1696 | const LLVMContext *Context = nullptr; |
| 1697 | std::unique_ptr<LLVMContext> CtxPtr; |
| 1698 | const MachineFrameInfo *MFI = nullptr; |
| 1699 | if (const MachineFunction *MF = getMFIfAvailable(*this)) { |
| 1700 | MFI = &MF->getFrameInfo(); |
| 1701 | Context = &MF->getFunction().getContext(); |
| 1702 | } else { |
| 1703 | CtxPtr = llvm::make_unique<LLVMContext>(); |
| 1704 | Context = CtxPtr.get(); |
Yaron Keren | 8e6708e | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1705 | } |
Dan Gohman | 0ba90f3e | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1706 | |
Francis Visoiu Mistrih | 0d758f3 | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 1707 | OS << " :: "; |
| 1708 | bool NeedComma = false; |
| 1709 | for (const MachineMemOperand *Op : memoperands()) { |
| 1710 | if (NeedComma) |
| 1711 | OS << ", "; |
| 1712 | Op->print(OS, MST, SSNs, *Context, MFI, TII); |
| 1713 | NeedComma = true; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1714 | } |
| 1715 | } |
| 1716 | |
Francis Visoiu Mistrih | e97eca6 | 2018-01-19 11:44:42 +0000 | [diff] [blame] | 1717 | if (SkipDebugLoc) |
| 1718 | return; |
| 1719 | |
Francis Visoiu Mistrih | 0d758f3 | 2018-03-14 21:52:13 +0000 | [diff] [blame] | 1720 | bool HaveSemi = false; |
Francis Visoiu Mistrih | b91ac89 | 2018-04-24 11:00:46 +0000 | [diff] [blame] | 1721 | |
Anton Korobeynikov | 6dd9747 | 2011-03-05 18:43:04 +0000 | [diff] [blame] | 1722 | // Print debug location information. |
Francis Visoiu Mistrih | b91ac89 | 2018-04-24 11:00:46 +0000 | [diff] [blame] | 1723 | if (const DebugLoc &DL = getDebugLoc()) { |
| 1724 | if (!HaveSemi) { |
| 1725 | OS << ';'; |
| 1726 | HaveSemi = true; |
| 1727 | } |
| 1728 | OS << ' '; |
| 1729 | DL.print(OS); |
| 1730 | } |
| 1731 | |
| 1732 | // Print extra comments for DEBUG_VALUE. |
Duncan P. N. Exon Smith | 2d25209 | 2015-04-03 16:23:04 +0000 | [diff] [blame] | 1733 | if (isDebugValue() && getOperand(e - 2).isMetadata()) { |
Francis Visoiu Mistrih | b91ac89 | 2018-04-24 11:00:46 +0000 | [diff] [blame] | 1734 | if (!HaveSemi) { |
Yaron Keren | 8e6708e | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1735 | OS << ";"; |
Francis Visoiu Mistrih | b91ac89 | 2018-04-24 11:00:46 +0000 | [diff] [blame] | 1736 | HaveSemi = true; |
| 1737 | } |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 1738 | auto *DV = cast<DILocalVariable>(getOperand(e - 2).getMetadata()); |
Duncan P. N. Exon Smith | 355ec00 | 2015-04-14 02:22:36 +0000 | [diff] [blame] | 1739 | OS << " line no:" << DV->getLine(); |
Duncan P. N. Exon Smith | 88e419d | 2015-04-15 22:29:27 +0000 | [diff] [blame] | 1740 | if (auto *InlinedAt = debugLoc->getInlinedAt()) { |
Duncan P. N. Exon Smith | 3637bab | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 1741 | DebugLoc InlinedAtDL(InlinedAt); |
| 1742 | if (InlinedAtDL && MF) { |
Devang Patel | 4d3586d | 2011-08-04 20:44:26 +0000 | [diff] [blame] | 1743 | OS << " inlined @[ "; |
NAKAMURA Takumi | 09c0ea5 | 2015-09-22 11:15:07 +0000 | [diff] [blame] | 1744 | InlinedAtDL.print(OS); |
Devang Patel | 4d3586d | 2011-08-04 20:44:26 +0000 | [diff] [blame] | 1745 | OS << " ]"; |
| 1746 | } |
| 1747 | } |
Adrian Prantl | 02474a3 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 1748 | if (isIndirectDebugValue()) |
| 1749 | OS << " indirect"; |
Bill Wendling | b5ef273 | 2009-02-19 21:44:55 +0000 | [diff] [blame] | 1750 | } |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 1751 | // TODO: DBG_LABEL |
Francis Visoiu Mistrih | f751ac3 | 2018-02-19 15:08:49 +0000 | [diff] [blame] | 1752 | |
Krzysztof Parzyszek | b8924a0 | 2018-04-10 16:46:13 +0000 | [diff] [blame] | 1753 | if (AddNewLine) |
| 1754 | OS << '\n'; |
Chris Lattner | 1049164 | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 1755 | } |
| 1756 | |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1757 | bool MachineInstr::addRegisterKilled(unsigned IncomingReg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1758 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1759 | bool AddIfNotFound) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1760 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg); |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1761 | bool hasAliases = isPhysReg && |
| 1762 | MCRegAliasIterator(IncomingReg, RegInfo, false).isValid(); |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1763 | bool Found = false; |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1764 | SmallVector<unsigned,4> DeadOps; |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1765 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 1766 | MachineOperand &MO = getOperand(i); |
Jakob Stoklund Olesen | efb8e3e | 2009-08-04 20:09:25 +0000 | [diff] [blame] | 1767 | if (!MO.isReg() || !MO.isUse() || MO.isUndef()) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1768 | continue; |
Mandeep Singh Grang | efde4d3 | 2016-05-10 17:57:27 +0000 | [diff] [blame] | 1769 | |
| 1770 | // DEBUG_VALUE nodes do not contribute to code generation and should |
| 1771 | // always be ignored. Failure to do so may result in trying to modify |
| 1772 | // KILL flags on DEBUG_VALUE nodes. |
| 1773 | if (MO.isDebug()) |
| 1774 | continue; |
| 1775 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1776 | unsigned Reg = MO.getReg(); |
| 1777 | if (!Reg) |
| 1778 | continue; |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1779 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1780 | if (Reg == IncomingReg) { |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1781 | if (!Found) { |
| 1782 | if (MO.isKill()) |
| 1783 | // The register is already marked kill. |
| 1784 | return true; |
Jakob Stoklund Olesen | ece4818 | 2009-08-02 19:13:03 +0000 | [diff] [blame] | 1785 | if (isPhysReg && isRegTiedToDefOperand(i)) |
| 1786 | // Two-address uses of physregs must not be marked kill. |
| 1787 | return true; |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1788 | MO.setIsKill(); |
| 1789 | Found = true; |
| 1790 | } |
| 1791 | } else if (hasAliases && MO.isKill() && |
| 1792 | TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1793 | // A super-register kill already exists. |
| 1794 | if (RegInfo->isSuperRegister(IncomingReg, Reg)) |
Dan Gohman | 2ebc11a | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 1795 | return true; |
| 1796 | if (RegInfo->isSubRegister(IncomingReg, Reg)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1797 | DeadOps.push_back(i); |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1798 | } |
| 1799 | } |
| 1800 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1801 | // Trim unneeded kill operands. |
| 1802 | while (!DeadOps.empty()) { |
| 1803 | unsigned OpIdx = DeadOps.back(); |
Craig Topper | ee5f463 | 2018-09-13 20:51:27 +0000 | [diff] [blame] | 1804 | if (getOperand(OpIdx).isImplicit() && |
| 1805 | (!isInlineAsm() || findInlineAsmFlagIdx(OpIdx) < 0)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1806 | RemoveOperand(OpIdx); |
| 1807 | else |
| 1808 | getOperand(OpIdx).setIsKill(false); |
| 1809 | DeadOps.pop_back(); |
| 1810 | } |
| 1811 | |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1812 | // If not found, this means an alias of one of the operands is killed. Add a |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1813 | // new implicit operand if required. |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1814 | if (!Found && AddIfNotFound) { |
Bill Wendling | 4a23d72 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1815 | addOperand(MachineOperand::CreateReg(IncomingReg, |
| 1816 | false /*IsDef*/, |
| 1817 | true /*IsImp*/, |
| 1818 | true /*IsKill*/)); |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1819 | return true; |
| 1820 | } |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1821 | return Found; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1822 | } |
| 1823 | |
Jakob Stoklund Olesen | 1a96c91 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1824 | void MachineInstr::clearRegisterKills(unsigned Reg, |
| 1825 | const TargetRegisterInfo *RegInfo) { |
| 1826 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1827 | RegInfo = nullptr; |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1828 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 1a96c91 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1829 | if (!MO.isReg() || !MO.isUse() || !MO.isKill()) |
| 1830 | continue; |
| 1831 | unsigned OpReg = MO.getReg(); |
Matthias Braun | cd4f289 | 2016-02-24 19:21:48 +0000 | [diff] [blame] | 1832 | if ((RegInfo && RegInfo->regsOverlap(Reg, OpReg)) || Reg == OpReg) |
Jakob Stoklund Olesen | 1a96c91 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1833 | MO.setIsKill(false); |
| 1834 | } |
| 1835 | } |
| 1836 | |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1837 | bool MachineInstr::addRegisterDead(unsigned Reg, |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1838 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1839 | bool AddIfNotFound) { |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1840 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(Reg); |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1841 | bool hasAliases = isPhysReg && |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1842 | MCRegAliasIterator(Reg, RegInfo, false).isValid(); |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1843 | bool Found = false; |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1844 | SmallVector<unsigned,4> DeadOps; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1845 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 1846 | MachineOperand &MO = getOperand(i); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1847 | if (!MO.isReg() || !MO.isDef()) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1848 | continue; |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1849 | unsigned MOReg = MO.getReg(); |
| 1850 | if (!MOReg) |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1851 | continue; |
| 1852 | |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1853 | if (MOReg == Reg) { |
Jakob Stoklund Olesen | b793bc1 | 2011-04-05 16:53:50 +0000 | [diff] [blame] | 1854 | MO.setIsDead(); |
| 1855 | Found = true; |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1856 | } else if (hasAliases && MO.isDead() && |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1857 | TargetRegisterInfo::isPhysicalRegister(MOReg)) { |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1858 | // There exists a super-register that's marked dead. |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1859 | if (RegInfo->isSuperRegister(Reg, MOReg)) |
Dan Gohman | 2ebc11a | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 1860 | return true; |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1861 | if (RegInfo->isSubRegister(Reg, MOReg)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1862 | DeadOps.push_back(i); |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1863 | } |
| 1864 | } |
| 1865 | |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1866 | // Trim unneeded dead operands. |
| 1867 | while (!DeadOps.empty()) { |
| 1868 | unsigned OpIdx = DeadOps.back(); |
Craig Topper | ee5f463 | 2018-09-13 20:51:27 +0000 | [diff] [blame] | 1869 | if (getOperand(OpIdx).isImplicit() && |
| 1870 | (!isInlineAsm() || findInlineAsmFlagIdx(OpIdx) < 0)) |
Evan Cheng | 9b6d7b9 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1871 | RemoveOperand(OpIdx); |
| 1872 | else |
| 1873 | getOperand(OpIdx).setIsDead(false); |
| 1874 | DeadOps.pop_back(); |
| 1875 | } |
| 1876 | |
Dan Gohman | 3f62940 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1877 | // If not found, this means an alias of one of the operands is dead. Add a |
| 1878 | // new implicit operand if required. |
Chris Lattner | 3153061 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 1879 | if (Found || !AddIfNotFound) |
| 1880 | return Found; |
Jim Grosbach | ee61d67 | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 1881 | |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1882 | addOperand(MachineOperand::CreateReg(Reg, |
Chris Lattner | 3153061 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 1883 | true /*IsDef*/, |
| 1884 | true /*IsImp*/, |
| 1885 | false /*IsKill*/, |
| 1886 | true /*IsDead*/)); |
| 1887 | return true; |
Owen Anderson | b487e72 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1888 | } |
Jakob Stoklund Olesen | 8efadf9 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 1889 | |
Matthias Braun | a602c10 | 2015-02-04 19:35:16 +0000 | [diff] [blame] | 1890 | void MachineInstr::clearRegisterDeads(unsigned Reg) { |
| 1891 | for (MachineOperand &MO : operands()) { |
| 1892 | if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg) |
| 1893 | continue; |
| 1894 | MO.setIsDead(false); |
| 1895 | } |
| 1896 | } |
| 1897 | |
Matthias Braun | f98fd35 | 2015-11-11 00:41:58 +0000 | [diff] [blame] | 1898 | void MachineInstr::setRegisterDefReadUndef(unsigned Reg, bool IsUndef) { |
Matthias Braun | 9a43e3d | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 1899 | for (MachineOperand &MO : operands()) { |
| 1900 | if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg || MO.getSubReg() == 0) |
| 1901 | continue; |
Matthias Braun | f98fd35 | 2015-11-11 00:41:58 +0000 | [diff] [blame] | 1902 | MO.setIsUndef(IsUndef); |
Matthias Braun | 9a43e3d | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 1903 | } |
| 1904 | } |
| 1905 | |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1906 | void MachineInstr::addRegisterDefined(unsigned Reg, |
Jakob Stoklund Olesen | 8efadf9 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 1907 | const TargetRegisterInfo *RegInfo) { |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1908 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 1909 | MachineOperand *MO = findRegisterDefOperand(Reg, false, RegInfo); |
Jakob Stoklund Olesen | 63e6a48 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 1910 | if (MO) |
| 1911 | return; |
| 1912 | } else { |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1913 | for (const MachineOperand &MO : operands()) { |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1914 | if (MO.isReg() && MO.getReg() == Reg && MO.isDef() && |
Jakob Stoklund Olesen | 63e6a48 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 1915 | MO.getSubReg() == 0) |
| 1916 | return; |
| 1917 | } |
| 1918 | } |
Matthias Braun | 4afb5f5 | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1919 | addOperand(MachineOperand::CreateReg(Reg, |
Jakob Stoklund Olesen | 63e6a48 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 1920 | true /*IsDef*/, |
| 1921 | true /*IsImp*/)); |
Jakob Stoklund Olesen | 8efadf9 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 1922 | } |
Evan Cheng | 67eaa08 | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 1923 | |
Jakob Stoklund Olesen | a37818d | 2012-02-03 20:43:39 +0000 | [diff] [blame] | 1924 | void MachineInstr::setPhysRegsDeadExcept(ArrayRef<unsigned> UsedRegs, |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 1925 | const TargetRegisterInfo &TRI) { |
Jakob Stoklund Olesen | 77180e0 | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 1926 | bool HasRegMask = false; |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1927 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 77180e0 | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 1928 | if (MO.isRegMask()) { |
| 1929 | HasRegMask = true; |
| 1930 | continue; |
| 1931 | } |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 1932 | if (!MO.isReg() || !MO.isDef()) continue; |
| 1933 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 59cb77f | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 1934 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 1935 | // If there are no uses, including partial uses, the def is dead. |
Eugene Zelenko | 1d081e6 | 2017-05-31 01:10:10 +0000 | [diff] [blame] | 1936 | if (llvm::none_of(UsedRegs, |
| 1937 | [&](unsigned Use) { return TRI.regsOverlap(Use, Reg); })) |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1938 | MO.setIsDead(); |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 1939 | } |
Jakob Stoklund Olesen | 77180e0 | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 1940 | |
| 1941 | // This is a call with a register mask operand. |
| 1942 | // Mask clobbers are always dead, so add defs for the non-dead defines. |
| 1943 | if (HasRegMask) |
| 1944 | for (ArrayRef<unsigned>::iterator I = UsedRegs.begin(), E = UsedRegs.end(); |
| 1945 | I != E; ++I) |
| 1946 | addRegisterDefined(*I, &TRI); |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 1947 | } |
| 1948 | |
Evan Cheng | 67eaa08 | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 1949 | unsigned |
| 1950 | MachineInstrExpressionTrait::getHashValue(const MachineInstr* const &MI) { |
Chandler Carruth | fc22625 | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 1951 | // Build up a buffer of hash code components. |
Chandler Carruth | fc22625 | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 1952 | SmallVector<size_t, 8> HashComponents; |
| 1953 | HashComponents.reserve(MI->getNumOperands() + 1); |
| 1954 | HashComponents.push_back(MI->getOpcode()); |
Benjamin Kramer | 59d81db | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1955 | for (const MachineOperand &MO : MI->operands()) { |
Chandler Carruth | d862d69 | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 1956 | if (MO.isReg() && MO.isDef() && |
| 1957 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) |
| 1958 | continue; // Skip virtual register defs. |
| 1959 | |
| 1960 | HashComponents.push_back(hash_value(MO)); |
Evan Cheng | 67eaa08 | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 1961 | } |
Chandler Carruth | fc22625 | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 1962 | return hash_combine_range(HashComponents.begin(), HashComponents.end()); |
Evan Cheng | 67eaa08 | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 1963 | } |
Jakob Stoklund Olesen | d519de0 | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 1964 | |
| 1965 | void MachineInstr::emitError(StringRef Msg) const { |
| 1966 | // Find the source location cookie. |
| 1967 | unsigned LocCookie = 0; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1968 | const MDNode *LocMD = nullptr; |
Jakob Stoklund Olesen | d519de0 | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 1969 | for (unsigned i = getNumOperands(); i != 0; --i) { |
| 1970 | if (getOperand(i-1).isMetadata() && |
| 1971 | (LocMD = getOperand(i-1).getMetadata()) && |
| 1972 | LocMD->getNumOperands() != 0) { |
Duncan P. N. Exon Smith | dad20b2 | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 1973 | if (const ConstantInt *CI = |
| 1974 | mdconst::dyn_extract<ConstantInt>(LocMD->getOperand(0))) { |
Jakob Stoklund Olesen | d519de0 | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 1975 | LocCookie = CI->getZExtValue(); |
| 1976 | break; |
| 1977 | } |
| 1978 | } |
| 1979 | } |
| 1980 | |
| 1981 | if (const MachineBasicBlock *MBB = getParent()) |
| 1982 | if (const MachineFunction *MF = MBB->getParent()) |
| 1983 | return MF->getMMI().getModule()->getContext().emitError(LocCookie, Msg); |
| 1984 | report_fatal_error(Msg); |
| 1985 | } |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 1986 | |
Benjamin Kramer | af18e01 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 1987 | MachineInstrBuilder llvm::BuildMI(MachineFunction &MF, const DebugLoc &DL, |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 1988 | const MCInstrDesc &MCID, bool IsIndirect, |
Adrian Prantl | 4df9b5f | 2017-07-28 23:00:45 +0000 | [diff] [blame] | 1989 | unsigned Reg, const MDNode *Variable, |
| 1990 | const MDNode *Expr) { |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 1991 | assert(isa<DILocalVariable>(Variable) && "not a variable"); |
| 1992 | assert(cast<DIExpression>(Expr)->isValid() && "not an expression"); |
| 1993 | assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && |
| 1994 | "Expected inlined-at fields to agree"); |
Mikael Holmen | b16b4ba | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 1995 | auto MIB = BuildMI(MF, DL, MCID).addReg(Reg, RegState::Debug); |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 1996 | if (IsIndirect) |
Mikael Holmen | b16b4ba | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 1997 | MIB.addImm(0U); |
Adrian Prantl | 4df9b5f | 2017-07-28 23:00:45 +0000 | [diff] [blame] | 1998 | else |
Mikael Holmen | b16b4ba | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 1999 | MIB.addReg(0U, RegState::Debug); |
| 2000 | return MIB.addMetadata(Variable).addMetadata(Expr); |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 2001 | } |
| 2002 | |
Mikael Holmen | b16b4ba | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 2003 | MachineInstrBuilder llvm::BuildMI(MachineFunction &MF, const DebugLoc &DL, |
| 2004 | const MCInstrDesc &MCID, bool IsIndirect, |
| 2005 | MachineOperand &MO, const MDNode *Variable, |
| 2006 | const MDNode *Expr) { |
| 2007 | assert(isa<DILocalVariable>(Variable) && "not a variable"); |
| 2008 | assert(cast<DIExpression>(Expr)->isValid() && "not an expression"); |
| 2009 | assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && |
| 2010 | "Expected inlined-at fields to agree"); |
| 2011 | if (MO.isReg()) |
| 2012 | return BuildMI(MF, DL, MCID, IsIndirect, MO.getReg(), Variable, Expr); |
| 2013 | |
| 2014 | auto MIB = BuildMI(MF, DL, MCID).add(MO); |
| 2015 | if (IsIndirect) |
| 2016 | MIB.addImm(0U); |
| 2017 | else |
| 2018 | MIB.addReg(0U, RegState::Debug); |
| 2019 | return MIB.addMetadata(Variable).addMetadata(Expr); |
| 2020 | } |
| 2021 | |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 2022 | MachineInstrBuilder llvm::BuildMI(MachineBasicBlock &BB, |
Benjamin Kramer | af18e01 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 2023 | MachineBasicBlock::iterator I, |
| 2024 | const DebugLoc &DL, const MCInstrDesc &MCID, |
| 2025 | bool IsIndirect, unsigned Reg, |
Adrian Prantl | 4df9b5f | 2017-07-28 23:00:45 +0000 | [diff] [blame] | 2026 | const MDNode *Variable, const MDNode *Expr) { |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 2027 | MachineFunction &MF = *BB.getParent(); |
Adrian Prantl | 4df9b5f | 2017-07-28 23:00:45 +0000 | [diff] [blame] | 2028 | MachineInstr *MI = BuildMI(MF, DL, MCID, IsIndirect, Reg, Variable, Expr); |
Reid Kleckner | 13fb5a3 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 2029 | BB.insert(I, MI); |
| 2030 | return MachineInstrBuilder(MF, MI); |
| 2031 | } |
Adrian Prantl | b560ea7 | 2017-04-18 01:21:53 +0000 | [diff] [blame] | 2032 | |
Mikael Holmen | b16b4ba | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 2033 | MachineInstrBuilder llvm::BuildMI(MachineBasicBlock &BB, |
| 2034 | MachineBasicBlock::iterator I, |
| 2035 | const DebugLoc &DL, const MCInstrDesc &MCID, |
| 2036 | bool IsIndirect, MachineOperand &MO, |
| 2037 | const MDNode *Variable, const MDNode *Expr) { |
| 2038 | MachineFunction &MF = *BB.getParent(); |
| 2039 | MachineInstr *MI = BuildMI(MF, DL, MCID, IsIndirect, MO, Variable, Expr); |
| 2040 | BB.insert(I, MI); |
| 2041 | return MachineInstrBuilder(MF, *MI); |
| 2042 | } |
| 2043 | |
Reid Kleckner | af2e522 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 2044 | /// Compute the new DIExpression to use with a DBG_VALUE for a spill slot. |
| 2045 | /// This prepends DW_OP_deref when spilling an indirect DBG_VALUE. |
| 2046 | static const DIExpression *computeExprForSpill(const MachineInstr &MI) { |
| 2047 | assert(MI.getOperand(0).isReg() && "can't spill non-register"); |
| 2048 | assert(MI.getDebugVariable()->isValidLocationForIntrinsic(MI.getDebugLoc()) && |
| 2049 | "Expected inlined-at fields to agree"); |
| 2050 | |
| 2051 | const DIExpression *Expr = MI.getDebugExpression(); |
| 2052 | if (MI.isIndirectDebugValue()) { |
| 2053 | assert(MI.getOperand(1).getImm() == 0 && "DBG_VALUE with nonzero offset"); |
| 2054 | Expr = DIExpression::prepend(Expr, DIExpression::WithDeref); |
| 2055 | } |
| 2056 | return Expr; |
| 2057 | } |
| 2058 | |
Adrian Prantl | b560ea7 | 2017-04-18 01:21:53 +0000 | [diff] [blame] | 2059 | MachineInstr *llvm::buildDbgValueForSpill(MachineBasicBlock &BB, |
| 2060 | MachineBasicBlock::iterator I, |
| 2061 | const MachineInstr &Orig, |
| 2062 | int FrameIndex) { |
Reid Kleckner | af2e522 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 2063 | const DIExpression *Expr = computeExprForSpill(Orig); |
| 2064 | return BuildMI(BB, I, Orig.getDebugLoc(), Orig.getDesc()) |
Adrian Prantl | b560ea7 | 2017-04-18 01:21:53 +0000 | [diff] [blame] | 2065 | .addFrameIndex(FrameIndex) |
Adrian Prantl | 4df9b5f | 2017-07-28 23:00:45 +0000 | [diff] [blame] | 2066 | .addImm(0U) |
Reid Kleckner | af2e522 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 2067 | .addMetadata(Orig.getDebugVariable()) |
Adrian Prantl | b560ea7 | 2017-04-18 01:21:53 +0000 | [diff] [blame] | 2068 | .addMetadata(Expr); |
| 2069 | } |
Reid Kleckner | af2e522 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 2070 | |
| 2071 | void llvm::updateDbgValueForSpill(MachineInstr &Orig, int FrameIndex) { |
| 2072 | const DIExpression *Expr = computeExprForSpill(Orig); |
| 2073 | Orig.getOperand(0).ChangeToFrameIndex(FrameIndex); |
| 2074 | Orig.getOperand(1).ChangeToImmediate(0U); |
| 2075 | Orig.getOperand(3).setMetadata(Expr); |
| 2076 | } |
Carlos Alberto Enciso | 03c16fb | 2018-08-30 07:17:41 +0000 | [diff] [blame] | 2077 | |
| 2078 | void MachineInstr::collectDebugValues( |
| 2079 | SmallVectorImpl<MachineInstr *> &DbgValues) { |
| 2080 | MachineInstr &MI = *this; |
| 2081 | if (!MI.getOperand(0).isReg()) |
| 2082 | return; |
| 2083 | |
| 2084 | MachineBasicBlock::iterator DI = MI; ++DI; |
| 2085 | for (MachineBasicBlock::iterator DE = MI.getParent()->end(); |
| 2086 | DI != DE; ++DI) { |
| 2087 | if (!DI->isDebugValue()) |
| 2088 | return; |
| 2089 | if (DI->getOperand(0).isReg() && |
| 2090 | DI->getOperand(0).getReg() == MI.getOperand(0).getReg()) |
| 2091 | DbgValues.push_back(&*DI); |
| 2092 | } |
| 2093 | } |
Carlos Alberto Enciso | 42b5443 | 2018-10-01 08:14:44 +0000 | [diff] [blame] | 2094 | |
| 2095 | void MachineInstr::changeDebugValuesDefReg(unsigned Reg) { |
| 2096 | // Collect matching debug values. |
| 2097 | SmallVector<MachineInstr *, 2> DbgValues; |
| 2098 | collectDebugValues(DbgValues); |
| 2099 | |
| 2100 | // Propagate Reg to debug value instructions. |
| 2101 | for (auto *DBI : DbgValues) |
| 2102 | DBI->getOperand(0).setReg(Reg); |
| 2103 | } |