Chris Lattner | 0cb9dd7 | 2008-01-01 20:36:19 +0000 | [diff] [blame] | 1 | //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===// |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Brian Gaeke | e8f7c2f | 2004-02-13 04:39:32 +0000 | [diff] [blame] | 9 | // |
| 10 | // Methods common to all machine instructions. |
| 11 | // |
Chris Lattner | 959a5fb | 2002-08-09 20:08:06 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Vikram S. Adve | ab9e557 | 2001-07-21 12:41:50 +0000 | [diff] [blame] | 13 | |
Chris Lattner | 23fcc08 | 2001-09-07 17:18:30 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MachineInstr.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/FoldingSet.h" |
| 16 | #include "llvm/ADT/Hashing.h" |
| 17 | #include "llvm/Analysis/AliasAnalysis.h" |
Evan Cheng | e9c46c2 | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineConstantPool.h" |
Chris Lattner | 63f41ab | 2004-02-19 16:17:08 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineFunction.h" |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineMemOperand.h" |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 2d489b5 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Constants.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Function.h" |
| 27 | #include "llvm/IR/InlineAsm.h" |
| 28 | #include "llvm/IR/LLVMContext.h" |
| 29 | #include "llvm/IR/Metadata.h" |
| 30 | #include "llvm/IR/Module.h" |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 31 | #include "llvm/IR/ModuleSlotTracker.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 32 | #include "llvm/IR/Type.h" |
| 33 | #include "llvm/IR/Value.h" |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCInstrDesc.h" |
Chris Lattner | 6c604e3 | 2010-03-13 08:14:18 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCSymbol.h" |
Daniel Sanders | 1e97a0b | 2015-08-19 12:03:04 +0000 | [diff] [blame] | 36 | #include "llvm/Support/CommandLine.h" |
David Greene | 29388d6 | 2010-01-04 23:48:20 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Debug.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 38 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | aedb4a6 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 39 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | a078d83 | 2008-08-24 20:37:32 +0000 | [diff] [blame] | 40 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetInstrInfo.h" |
| 42 | #include "llvm/Target/TargetMachine.h" |
| 43 | #include "llvm/Target/TargetRegisterInfo.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 44 | #include "llvm/Target/TargetSubtargetInfo.h" |
Chris Lattner | 43df6c2 | 2004-02-23 18:38:20 +0000 | [diff] [blame] | 45 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 46 | |
Daniel Sanders | 1e97a0b | 2015-08-19 12:03:04 +0000 | [diff] [blame] | 47 | static cl::opt<bool> PrintWholeRegMask( |
| 48 | "print-whole-regmask", |
| 49 | cl::desc("Print the full contents of regmask operands in IR dumps"), |
| 50 | cl::init(true), cl::Hidden); |
| 51 | |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 52 | //===----------------------------------------------------------------------===// |
| 53 | // MachineOperand Implementation |
| 54 | //===----------------------------------------------------------------------===// |
| 55 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 56 | void MachineOperand::setReg(unsigned Reg) { |
| 57 | if (getReg() == Reg) return; // No change. |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 59 | // Otherwise, we have to change the register. If this operand is embedded |
| 60 | // into a machine function, we need to update the old and new register's |
| 61 | // use/def lists. |
| 62 | if (MachineInstr *MI = getParent()) |
| 63 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 64 | if (MachineFunction *MF = MBB->getParent()) { |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 65 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 66 | MRI.removeRegOperandFromUseList(this); |
Jakob Stoklund Olesen | a494169 | 2010-10-19 20:56:32 +0000 | [diff] [blame] | 67 | SmallContents.RegNo = Reg; |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 68 | MRI.addRegOperandToUseList(this); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 69 | return; |
| 70 | } |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 71 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 72 | // Otherwise, just change the register, no problem. :) |
Jakob Stoklund Olesen | a494169 | 2010-10-19 20:56:32 +0000 | [diff] [blame] | 73 | SmallContents.RegNo = Reg; |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Jakob Stoklund Olesen | 64824ea | 2010-05-28 18:18:53 +0000 | [diff] [blame] | 76 | void MachineOperand::substVirtReg(unsigned Reg, unsigned SubIdx, |
| 77 | const TargetRegisterInfo &TRI) { |
| 78 | assert(TargetRegisterInfo::isVirtualRegister(Reg)); |
| 79 | if (SubIdx && getSubReg()) |
| 80 | SubIdx = TRI.composeSubRegIndices(SubIdx, getSubReg()); |
| 81 | setReg(Reg); |
Jakob Stoklund Olesen | 7b0ac86 | 2010-06-01 22:39:25 +0000 | [diff] [blame] | 82 | if (SubIdx) |
| 83 | setSubReg(SubIdx); |
Jakob Stoklund Olesen | 64824ea | 2010-05-28 18:18:53 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | void MachineOperand::substPhysReg(unsigned Reg, const TargetRegisterInfo &TRI) { |
| 87 | assert(TargetRegisterInfo::isPhysicalRegister(Reg)); |
| 88 | if (getSubReg()) { |
| 89 | Reg = TRI.getSubReg(Reg, getSubReg()); |
Jakob Stoklund Olesen | 89bd2ae | 2011-05-08 19:21:08 +0000 | [diff] [blame] | 90 | // Note that getSubReg() may return 0 if the sub-register doesn't exist. |
| 91 | // That won't happen in legal code. |
Jakob Stoklund Olesen | 64824ea | 2010-05-28 18:18:53 +0000 | [diff] [blame] | 92 | setSubReg(0); |
| 93 | } |
| 94 | setReg(Reg); |
| 95 | } |
| 96 | |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 97 | /// Change a def to a use, or a use to a def. |
| 98 | void MachineOperand::setIsDef(bool Val) { |
| 99 | assert(isReg() && "Wrong MachineOperand accessor"); |
| 100 | assert((!Val || !isDebug()) && "Marking a debug operation as def"); |
| 101 | if (IsDef == Val) |
| 102 | return; |
| 103 | // MRI may keep uses and defs in different list positions. |
| 104 | if (MachineInstr *MI = getParent()) |
| 105 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 106 | if (MachineFunction *MF = MBB->getParent()) { |
| 107 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 108 | MRI.removeRegOperandFromUseList(this); |
| 109 | IsDef = Val; |
| 110 | MRI.addRegOperandToUseList(this); |
| 111 | return; |
| 112 | } |
| 113 | IsDef = Val; |
| 114 | } |
| 115 | |
Matt Arsenault | 93ffe58 | 2014-09-28 19:24:59 +0000 | [diff] [blame] | 116 | // If this operand is currently a register operand, and if this is in a |
| 117 | // function, deregister the operand from the register's use/def list. |
| 118 | void MachineOperand::removeRegFromUses() { |
| 119 | if (!isReg() || !isOnRegUseList()) |
| 120 | return; |
| 121 | |
| 122 | if (MachineInstr *MI = getParent()) { |
| 123 | if (MachineBasicBlock *MBB = MI->getParent()) { |
| 124 | if (MachineFunction *MF = MBB->getParent()) |
| 125 | MF->getRegInfo().removeRegOperandFromUseList(this); |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 130 | /// ChangeToImmediate - Replace this operand with a new immediate operand of |
| 131 | /// the specified value. If an operand is known to be an immediate already, |
| 132 | /// the setImm method should be used. |
| 133 | void MachineOperand::ChangeToImmediate(int64_t ImmVal) { |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 134 | assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); |
Matt Arsenault | 93ffe58 | 2014-09-28 19:24:59 +0000 | [diff] [blame] | 135 | |
| 136 | removeRegFromUses(); |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 137 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 138 | OpKind = MO_Immediate; |
| 139 | Contents.ImmVal = ImmVal; |
| 140 | } |
| 141 | |
Matt Arsenault | 93ffe58 | 2014-09-28 19:24:59 +0000 | [diff] [blame] | 142 | void MachineOperand::ChangeToFPImmediate(const ConstantFP *FPImm) { |
| 143 | assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); |
| 144 | |
| 145 | removeRegFromUses(); |
| 146 | |
| 147 | OpKind = MO_FPImmediate; |
| 148 | Contents.CFP = FPImm; |
| 149 | } |
| 150 | |
Matt Arsenault | 633dba4 | 2015-05-06 17:05:54 +0000 | [diff] [blame] | 151 | void MachineOperand::ChangeToES(const char *SymName, unsigned char TargetFlags) { |
| 152 | assert((!isReg() || !isTied()) && |
| 153 | "Cannot change a tied operand into an external symbol"); |
| 154 | |
| 155 | removeRegFromUses(); |
| 156 | |
| 157 | OpKind = MO_ExternalSymbol; |
| 158 | Contents.OffsetedInfo.Val.SymbolName = SymName; |
| 159 | setOffset(0); // Offset is always 0. |
| 160 | setTargetFlags(TargetFlags); |
| 161 | } |
| 162 | |
| 163 | void MachineOperand::ChangeToMCSymbol(MCSymbol *Sym) { |
| 164 | assert((!isReg() || !isTied()) && |
| 165 | "Cannot change a tied operand into an MCSymbol"); |
| 166 | |
| 167 | removeRegFromUses(); |
| 168 | |
| 169 | OpKind = MO_MCSymbol; |
| 170 | Contents.Sym = Sym; |
| 171 | } |
| 172 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 173 | /// ChangeToRegister - Replace this operand with a new register operand of |
| 174 | /// the specified value. If an operand is known to be an register already, |
| 175 | /// the setReg method should be used. |
| 176 | void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, |
Dale Johannesen | d40d42c | 2010-02-10 00:41:49 +0000 | [diff] [blame] | 177 | bool isKill, bool isDead, bool isUndef, |
| 178 | bool isDebug) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 179 | MachineRegisterInfo *RegInfo = nullptr; |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 180 | if (MachineInstr *MI = getParent()) |
| 181 | if (MachineBasicBlock *MBB = MI->getParent()) |
| 182 | if (MachineFunction *MF = MBB->getParent()) |
| 183 | RegInfo = &MF->getRegInfo(); |
| 184 | // If this operand is already a register operand, remove it from the |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 185 | // register's use/def lists. |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 186 | bool WasReg = isReg(); |
| 187 | if (RegInfo && WasReg) |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 188 | RegInfo->removeRegOperandFromUseList(this); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 189 | |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 190 | // Change this to a register and set the reg#. |
| 191 | OpKind = MO_Register; |
| 192 | SmallContents.RegNo = Reg; |
Jakob Stoklund Olesen | a1b246d | 2013-01-07 23:21:44 +0000 | [diff] [blame] | 193 | SubReg_TargetFlags = 0; |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 194 | IsDef = isDef; |
| 195 | IsImp = isImp; |
| 196 | IsKill = isKill; |
| 197 | IsDead = isDead; |
Evan Cheng | 0dc101b | 2009-06-30 08:49:04 +0000 | [diff] [blame] | 198 | IsUndef = isUndef; |
Jakob Stoklund Olesen | b0d91ab | 2011-12-07 00:22:07 +0000 | [diff] [blame] | 199 | IsInternalRead = false; |
Dale Johannesen | c0d712d | 2008-09-14 01:44:36 +0000 | [diff] [blame] | 200 | IsEarlyClobber = false; |
Dale Johannesen | d40d42c | 2010-02-10 00:41:49 +0000 | [diff] [blame] | 201 | IsDebug = isDebug; |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 202 | // Ensure isOnRegUseList() returns false. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 203 | Contents.Reg.Prev = nullptr; |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 204 | // Preserve the tie when the operand was already a register. |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 205 | if (!WasReg) |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 206 | TiedTo = 0; |
Jakob Stoklund Olesen | ae7b971 | 2012-08-10 00:21:26 +0000 | [diff] [blame] | 207 | |
| 208 | // If this operand is embedded in a function, add the operand to the |
| 209 | // register's use/def list. |
| 210 | if (RegInfo) |
| 211 | RegInfo->addRegOperandToUseList(this); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 214 | /// isIdenticalTo - Return true if this operand is identical to the specified |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 215 | /// operand. Note that this should stay in sync with the hash_value overload |
| 216 | /// below. |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 217 | bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 218 | if (getType() != Other.getType() || |
| 219 | getTargetFlags() != Other.getTargetFlags()) |
| 220 | return false; |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 221 | |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 222 | switch (getType()) { |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 223 | case MachineOperand::MO_Register: |
| 224 | return getReg() == Other.getReg() && isDef() == Other.isDef() && |
| 225 | getSubReg() == Other.getSubReg(); |
| 226 | case MachineOperand::MO_Immediate: |
| 227 | return getImm() == Other.getImm(); |
Cameron Zwarich | 7da0f9a | 2011-07-01 23:45:21 +0000 | [diff] [blame] | 228 | case MachineOperand::MO_CImmediate: |
| 229 | return getCImm() == Other.getCImm(); |
Nate Begeman | 26b76b6 | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 230 | case MachineOperand::MO_FPImmediate: |
| 231 | return getFPImm() == Other.getFPImm(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 232 | case MachineOperand::MO_MachineBasicBlock: |
| 233 | return getMBB() == Other.getMBB(); |
| 234 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | a5bb370 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 235 | return getIndex() == Other.getIndex(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 236 | case MachineOperand::MO_ConstantPoolIndex: |
Jakob Stoklund Olesen | 84689b0 | 2012-08-07 18:56:39 +0000 | [diff] [blame] | 237 | case MachineOperand::MO_TargetIndex: |
Chris Lattner | a5bb370 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 238 | return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 239 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | a5bb370 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 240 | return getIndex() == Other.getIndex(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 241 | case MachineOperand::MO_GlobalAddress: |
| 242 | return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); |
| 243 | case MachineOperand::MO_ExternalSymbol: |
| 244 | return !strcmp(getSymbolName(), Other.getSymbolName()) && |
| 245 | getOffset() == Other.getOffset(); |
Dan Gohman | 6c93880 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 246 | case MachineOperand::MO_BlockAddress: |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 247 | return getBlockAddress() == Other.getBlockAddress() && |
| 248 | getOffset() == Other.getOffset(); |
Juergen Ributzka | e829475 | 2013-12-14 06:53:06 +0000 | [diff] [blame] | 249 | case MachineOperand::MO_RegisterMask: |
| 250 | case MachineOperand::MO_RegisterLiveOut: |
Jakob Stoklund Olesen | 374ed32 | 2012-01-16 19:22:00 +0000 | [diff] [blame] | 251 | return getRegMask() == Other.getRegMask(); |
Chris Lattner | 6c604e3 | 2010-03-13 08:14:18 +0000 | [diff] [blame] | 252 | case MachineOperand::MO_MCSymbol: |
| 253 | return getMCSymbol() == Other.getMCSymbol(); |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 254 | case MachineOperand::MO_CFIIndex: |
| 255 | return getCFIIndex() == Other.getCFIIndex(); |
Chris Lattner | f839ee0 | 2010-04-07 18:03:19 +0000 | [diff] [blame] | 256 | case MachineOperand::MO_Metadata: |
| 257 | return getMetadata() == Other.getMetadata(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 258 | } |
Chandler Carruth | f3e8502 | 2012-01-10 18:08:01 +0000 | [diff] [blame] | 259 | llvm_unreachable("Invalid machine operand type"); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 262 | // Note: this must stay exactly in sync with isIdenticalTo above. |
| 263 | hash_code llvm::hash_value(const MachineOperand &MO) { |
| 264 | switch (MO.getType()) { |
| 265 | case MachineOperand::MO_Register: |
Jakob Stoklund Olesen | dba99d0 | 2012-08-28 18:05:48 +0000 | [diff] [blame] | 266 | // Register operands don't have target flags. |
| 267 | return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef()); |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 268 | case MachineOperand::MO_Immediate: |
| 269 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getImm()); |
| 270 | case MachineOperand::MO_CImmediate: |
| 271 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); |
| 272 | case MachineOperand::MO_FPImmediate: |
| 273 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getFPImm()); |
| 274 | case MachineOperand::MO_MachineBasicBlock: |
| 275 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMBB()); |
| 276 | case MachineOperand::MO_FrameIndex: |
| 277 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); |
| 278 | case MachineOperand::MO_ConstantPoolIndex: |
Jakob Stoklund Olesen | 84689b0 | 2012-08-07 18:56:39 +0000 | [diff] [blame] | 279 | case MachineOperand::MO_TargetIndex: |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 280 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), |
| 281 | MO.getOffset()); |
| 282 | case MachineOperand::MO_JumpTableIndex: |
| 283 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); |
| 284 | case MachineOperand::MO_ExternalSymbol: |
| 285 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getOffset(), |
| 286 | MO.getSymbolName()); |
| 287 | case MachineOperand::MO_GlobalAddress: |
| 288 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getGlobal(), |
| 289 | MO.getOffset()); |
| 290 | case MachineOperand::MO_BlockAddress: |
| 291 | return hash_combine(MO.getType(), MO.getTargetFlags(), |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 292 | MO.getBlockAddress(), MO.getOffset()); |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 293 | case MachineOperand::MO_RegisterMask: |
Juergen Ributzka | e829475 | 2013-12-14 06:53:06 +0000 | [diff] [blame] | 294 | case MachineOperand::MO_RegisterLiveOut: |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 295 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getRegMask()); |
| 296 | case MachineOperand::MO_Metadata: |
| 297 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMetadata()); |
| 298 | case MachineOperand::MO_MCSymbol: |
| 299 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMCSymbol()); |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 300 | case MachineOperand::MO_CFIIndex: |
| 301 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCFIIndex()); |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 302 | } |
| 303 | llvm_unreachable("Invalid machine operand type"); |
| 304 | } |
| 305 | |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 306 | void MachineOperand::print(raw_ostream &OS, |
| 307 | const TargetRegisterInfo *TRI) const { |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 308 | ModuleSlotTracker DummyMST(nullptr); |
| 309 | print(OS, DummyMST, TRI); |
| 310 | } |
| 311 | |
| 312 | void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, |
| 313 | const TargetRegisterInfo *TRI) const { |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 314 | switch (getType()) { |
| 315 | case MachineOperand::MO_Register: |
Jakob Stoklund Olesen | 1331a15 | 2011-01-09 03:05:53 +0000 | [diff] [blame] | 316 | OS << PrintReg(getReg(), TRI, getSubReg()); |
Dan Gohman | 0ab1144 | 2008-12-18 21:51:27 +0000 | [diff] [blame] | 317 | |
Evan Cheng | 0dc101b | 2009-06-30 08:49:04 +0000 | [diff] [blame] | 318 | if (isDef() || isKill() || isDead() || isImplicit() || isUndef() || |
Jakob Stoklund Olesen | e56c60c | 2012-08-28 18:34:41 +0000 | [diff] [blame] | 319 | isInternalRead() || isEarlyClobber() || isTied()) { |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 320 | OS << '<'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 321 | bool NeedComma = false; |
Evan Cheng | 70b1fa5 | 2009-10-14 23:37:31 +0000 | [diff] [blame] | 322 | if (isDef()) { |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 323 | if (NeedComma) OS << ','; |
Dale Johannesen | 1f3ab86 | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 324 | if (isEarlyClobber()) |
| 325 | OS << "earlyclobber,"; |
Evan Cheng | 70b1fa5 | 2009-10-14 23:37:31 +0000 | [diff] [blame] | 326 | if (isImplicit()) |
| 327 | OS << "imp-"; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 328 | OS << "def"; |
| 329 | NeedComma = true; |
Jakob Stoklund Olesen | 7111a63 | 2012-04-20 21:45:33 +0000 | [diff] [blame] | 330 | // <def,read-undef> only makes sense when getSubReg() is set. |
| 331 | // Don't clutter the output otherwise. |
| 332 | if (isUndef() && getSubReg()) |
| 333 | OS << ",read-undef"; |
Evan Cheng | f781bd8 | 2009-10-21 07:56:02 +0000 | [diff] [blame] | 334 | } else if (isImplicit()) { |
Craig Topper | 9a9d58a | 2015-05-16 05:42:08 +0000 | [diff] [blame] | 335 | OS << "imp-use"; |
| 336 | NeedComma = true; |
Evan Cheng | f781bd8 | 2009-10-21 07:56:02 +0000 | [diff] [blame] | 337 | } |
Evan Cheng | 70b1fa5 | 2009-10-14 23:37:31 +0000 | [diff] [blame] | 338 | |
Jakob Stoklund Olesen | e56c60c | 2012-08-28 18:34:41 +0000 | [diff] [blame] | 339 | if (isKill()) { |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 340 | if (NeedComma) OS << ','; |
Jakob Stoklund Olesen | e56c60c | 2012-08-28 18:34:41 +0000 | [diff] [blame] | 341 | OS << "kill"; |
| 342 | NeedComma = true; |
| 343 | } |
| 344 | if (isDead()) { |
| 345 | if (NeedComma) OS << ','; |
| 346 | OS << "dead"; |
| 347 | NeedComma = true; |
| 348 | } |
| 349 | if (isUndef() && isUse()) { |
| 350 | if (NeedComma) OS << ','; |
| 351 | OS << "undef"; |
| 352 | NeedComma = true; |
| 353 | } |
| 354 | if (isInternalRead()) { |
| 355 | if (NeedComma) OS << ','; |
| 356 | OS << "internal"; |
| 357 | NeedComma = true; |
| 358 | } |
| 359 | if (isTied()) { |
| 360 | if (NeedComma) OS << ','; |
| 361 | OS << "tied"; |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 362 | if (TiedTo != 15) |
| 363 | OS << unsigned(TiedTo - 1); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 364 | } |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 365 | OS << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 366 | } |
| 367 | break; |
| 368 | case MachineOperand::MO_Immediate: |
| 369 | OS << getImm(); |
| 370 | break; |
Devang Patel | f071d72 | 2011-06-24 20:46:11 +0000 | [diff] [blame] | 371 | case MachineOperand::MO_CImmediate: |
| 372 | getCImm()->getValue().print(OS, false); |
| 373 | break; |
Nate Begeman | 26b76b6 | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 374 | case MachineOperand::MO_FPImmediate: |
Matt Arsenault | 5923973 | 2016-02-05 00:50:18 +0000 | [diff] [blame] | 375 | if (getFPImm()->getType()->isFloatTy()) { |
Nate Begeman | 26b76b6 | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 376 | OS << getFPImm()->getValueAPF().convertToFloat(); |
Matt Arsenault | 5923973 | 2016-02-05 00:50:18 +0000 | [diff] [blame] | 377 | } else if (getFPImm()->getType()->isHalfTy()) { |
| 378 | APFloat APF = getFPImm()->getValueAPF(); |
| 379 | bool Unused; |
| 380 | APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &Unused); |
| 381 | OS << "half " << APF.convertToFloat(); |
| 382 | } else { |
Nate Begeman | 26b76b6 | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 383 | OS << getFPImm()->getValueAPF().convertToDouble(); |
Matt Arsenault | 5923973 | 2016-02-05 00:50:18 +0000 | [diff] [blame] | 384 | } |
Nate Begeman | 26b76b6 | 2008-02-14 07:39:30 +0000 | [diff] [blame] | 385 | break; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 386 | case MachineOperand::MO_MachineBasicBlock: |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 387 | OS << "<BB#" << getMBB()->getNumber() << ">"; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 388 | break; |
| 389 | case MachineOperand::MO_FrameIndex: |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 390 | OS << "<fi#" << getIndex() << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 391 | break; |
| 392 | case MachineOperand::MO_ConstantPoolIndex: |
Chris Lattner | a5bb370 | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 393 | OS << "<cp#" << getIndex(); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 394 | if (getOffset()) OS << "+" << getOffset(); |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 395 | OS << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 396 | break; |
Jakob Stoklund Olesen | 84689b0 | 2012-08-07 18:56:39 +0000 | [diff] [blame] | 397 | case MachineOperand::MO_TargetIndex: |
| 398 | OS << "<ti#" << getIndex(); |
| 399 | if (getOffset()) OS << "+" << getOffset(); |
| 400 | OS << '>'; |
| 401 | break; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 402 | case MachineOperand::MO_JumpTableIndex: |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 403 | OS << "<jt#" << getIndex() << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 404 | break; |
| 405 | case MachineOperand::MO_GlobalAddress: |
Dan Gohman | 0080ee2 | 2009-11-06 18:03:10 +0000 | [diff] [blame] | 406 | OS << "<ga:"; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 407 | getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST); |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 408 | if (getOffset()) OS << "+" << getOffset(); |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 409 | OS << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 410 | break; |
| 411 | case MachineOperand::MO_ExternalSymbol: |
| 412 | OS << "<es:" << getSymbolName(); |
| 413 | if (getOffset()) OS << "+" << getOffset(); |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 414 | OS << '>'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 415 | break; |
Dan Gohman | 6c93880 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 416 | case MachineOperand::MO_BlockAddress: |
Dale Johannesen | 7b1a7ed | 2010-01-13 00:00:24 +0000 | [diff] [blame] | 417 | OS << '<'; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 418 | getBlockAddress()->printAsOperand(OS, /*PrintType=*/false, MST); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 419 | if (getOffset()) OS << "+" << getOffset(); |
Dan Gohman | 6c93880 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 420 | OS << '>'; |
| 421 | break; |
Daniel Sanders | 1e97a0b | 2015-08-19 12:03:04 +0000 | [diff] [blame] | 422 | case MachineOperand::MO_RegisterMask: { |
| 423 | unsigned NumRegsInMask = 0; |
| 424 | unsigned NumRegsEmitted = 0; |
| 425 | OS << "<regmask"; |
| 426 | for (unsigned i = 0; i < TRI->getNumRegs(); ++i) { |
| 427 | unsigned MaskWord = i / 32; |
| 428 | unsigned MaskBit = i % 32; |
| 429 | if (getRegMask()[MaskWord] & (1 << MaskBit)) { |
| 430 | if (PrintWholeRegMask || NumRegsEmitted <= 10) { |
| 431 | OS << " " << PrintReg(i, TRI); |
| 432 | NumRegsEmitted++; |
| 433 | } |
| 434 | NumRegsInMask++; |
| 435 | } |
| 436 | } |
| 437 | if (NumRegsEmitted != NumRegsInMask) |
| 438 | OS << " and " << (NumRegsInMask - NumRegsEmitted) << " more..."; |
| 439 | OS << ">"; |
Jakob Stoklund Olesen | 374ed32 | 2012-01-16 19:22:00 +0000 | [diff] [blame] | 440 | break; |
Daniel Sanders | 1e97a0b | 2015-08-19 12:03:04 +0000 | [diff] [blame] | 441 | } |
Juergen Ributzka | e829475 | 2013-12-14 06:53:06 +0000 | [diff] [blame] | 442 | case MachineOperand::MO_RegisterLiveOut: |
| 443 | OS << "<regliveout>"; |
| 444 | break; |
Dale Johannesen | 7b1a7ed | 2010-01-13 00:00:24 +0000 | [diff] [blame] | 445 | case MachineOperand::MO_Metadata: |
| 446 | OS << '<'; |
Duncan P. N. Exon Smith | 6529ed4 | 2015-06-26 22:28:47 +0000 | [diff] [blame] | 447 | getMetadata()->printAsOperand(OS, MST); |
Dale Johannesen | 7b1a7ed | 2010-01-13 00:00:24 +0000 | [diff] [blame] | 448 | OS << '>'; |
| 449 | break; |
Chris Lattner | 6c604e3 | 2010-03-13 08:14:18 +0000 | [diff] [blame] | 450 | case MachineOperand::MO_MCSymbol: |
| 451 | OS << "<MCSym=" << *getMCSymbol() << '>'; |
| 452 | break; |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 453 | case MachineOperand::MO_CFIIndex: |
| 454 | OS << "<call frame instruction>"; |
| 455 | break; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 456 | } |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 457 | |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 458 | if (unsigned TF = getTargetFlags()) |
| 459 | OS << "[TF=" << TF << ']'; |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | //===----------------------------------------------------------------------===// |
Dan Gohman | aedb4a6 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 463 | // MachineMemOperand Implementation |
| 464 | //===----------------------------------------------------------------------===// |
| 465 | |
Chris Lattner | de93bb0 | 2010-09-21 05:39:30 +0000 | [diff] [blame] | 466 | /// getAddrSpace - Return the LLVM IR address space number that this pointer |
| 467 | /// points into. |
| 468 | unsigned MachinePointerInfo::getAddrSpace() const { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 469 | if (V.isNull() || V.is<const PseudoSourceValue*>()) return 0; |
| 470 | return cast<PointerType>(V.get<const Value*>()->getType())->getAddressSpace(); |
Chris Lattner | de93bb0 | 2010-09-21 05:39:30 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Chris Lattner | 82fd06d | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 473 | /// getConstantPool - Return a MachinePointerInfo record that refers to the |
| 474 | /// constant pool. |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 475 | MachinePointerInfo MachinePointerInfo::getConstantPool(MachineFunction &MF) { |
| 476 | return MachinePointerInfo(MF.getPSVManager().getConstantPool()); |
Chris Lattner | 82fd06d | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /// getFixedStack - Return a MachinePointerInfo record that refers to the |
| 480 | /// the specified FrameIndex. |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 481 | MachinePointerInfo MachinePointerInfo::getFixedStack(MachineFunction &MF, |
| 482 | int FI, int64_t Offset) { |
| 483 | return MachinePointerInfo(MF.getPSVManager().getFixedStack(FI), Offset); |
Chris Lattner | 82fd06d | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 486 | MachinePointerInfo MachinePointerInfo::getJumpTable(MachineFunction &MF) { |
| 487 | return MachinePointerInfo(MF.getPSVManager().getJumpTable()); |
Chris Lattner | 50287ea | 2010-09-21 06:43:24 +0000 | [diff] [blame] | 488 | } |
| 489 | |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 490 | MachinePointerInfo MachinePointerInfo::getGOT(MachineFunction &MF) { |
| 491 | return MachinePointerInfo(MF.getPSVManager().getGOT()); |
Chris Lattner | 50287ea | 2010-09-21 06:43:24 +0000 | [diff] [blame] | 492 | } |
Chris Lattner | de93bb0 | 2010-09-21 05:39:30 +0000 | [diff] [blame] | 493 | |
Alex Lorenz | e40c8a2 | 2015-08-11 23:09:45 +0000 | [diff] [blame] | 494 | MachinePointerInfo MachinePointerInfo::getStack(MachineFunction &MF, |
| 495 | int64_t Offset) { |
| 496 | return MachinePointerInfo(MF.getPSVManager().getStack(), Offset); |
Chris Lattner | 886250c | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 497 | } |
| 498 | |
Chris Lattner | 00ca0b8 | 2010-09-21 04:32:08 +0000 | [diff] [blame] | 499 | MachineMemOperand::MachineMemOperand(MachinePointerInfo ptrinfo, unsigned f, |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 500 | uint64_t s, unsigned int a, |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 501 | const AAMDNodes &AAInfo, |
Rafael Espindola | 80c540e | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 502 | const MDNode *Ranges) |
Chris Lattner | 00ca0b8 | 2010-09-21 04:32:08 +0000 | [diff] [blame] | 503 | : PtrInfo(ptrinfo), Size(s), |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 504 | Flags((f & ((1 << MOMaxBits) - 1)) | ((Log2_32(a) + 1) << MOMaxBits)), |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 505 | AAInfo(AAInfo), Ranges(Ranges) { |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 506 | assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue*>() || |
| 507 | isa<PointerType>(PtrInfo.V.get<const Value*>()->getType())) && |
Chris Lattner | 00ca0b8 | 2010-09-21 04:32:08 +0000 | [diff] [blame] | 508 | "invalid pointer value"); |
Dan Gohman | e7c8242 | 2009-09-21 19:47:04 +0000 | [diff] [blame] | 509 | assert(getBaseAlignment() == a && "Alignment is not a power of 2!"); |
Dan Gohman | bf98f68 | 2008-07-16 15:56:42 +0000 | [diff] [blame] | 510 | assert((isLoad() || isStore()) && "Not a load/store!"); |
Dan Gohman | aedb4a6 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Dan Gohman | 2da2bed | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 513 | /// Profile - Gather unique data for the object. |
| 514 | /// |
| 515 | void MachineMemOperand::Profile(FoldingSetNodeID &ID) const { |
Chris Lattner | 187f653 | 2010-09-21 04:23:39 +0000 | [diff] [blame] | 516 | ID.AddInteger(getOffset()); |
Dan Gohman | 2da2bed | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 517 | ID.AddInteger(Size); |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 518 | ID.AddPointer(getOpaqueValue()); |
Dan Gohman | 2da2bed | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 519 | ID.AddInteger(Flags); |
| 520 | } |
| 521 | |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 522 | void MachineMemOperand::refineAlignment(const MachineMemOperand *MMO) { |
| 523 | // The Value and Offset may differ due to CSE. But the flags and size |
| 524 | // should be the same. |
| 525 | assert(MMO->getFlags() == getFlags() && "Flags mismatch!"); |
| 526 | assert(MMO->getSize() == getSize() && "Size mismatch!"); |
| 527 | |
| 528 | if (MMO->getBaseAlignment() >= getBaseAlignment()) { |
| 529 | // Update the alignment value. |
David Greene | 3a0412f | 2010-02-15 16:48:31 +0000 | [diff] [blame] | 530 | Flags = (Flags & ((1 << MOMaxBits) - 1)) | |
| 531 | ((Log2_32(MMO->getBaseAlignment()) + 1) << MOMaxBits); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 532 | // Also update the base and offset, because the new alignment may |
| 533 | // not be applicable with the old ones. |
Chris Lattner | 187f653 | 2010-09-21 04:23:39 +0000 | [diff] [blame] | 534 | PtrInfo = MMO->PtrInfo; |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Dan Gohman | 5a6b11c | 2009-09-25 23:33:20 +0000 | [diff] [blame] | 538 | /// getAlignment - Return the minimum known alignment in bytes of the |
| 539 | /// actual memory reference. |
| 540 | uint64_t MachineMemOperand::getAlignment() const { |
| 541 | return MinAlign(getBaseAlignment(), getOffset()); |
| 542 | } |
| 543 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 544 | void MachineMemOperand::print(raw_ostream &OS) const { |
| 545 | ModuleSlotTracker DummyMST(nullptr); |
| 546 | print(OS, DummyMST); |
| 547 | } |
| 548 | void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST) const { |
| 549 | assert((isLoad() || isStore()) && |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 550 | "SV has to be a load, store or both."); |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 551 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 552 | if (isVolatile()) |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 553 | OS << "Volatile "; |
| 554 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 555 | if (isLoad()) |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 556 | OS << "LD"; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 557 | if (isStore()) |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 558 | OS << "ST"; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 559 | OS << getSize(); |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 560 | |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 561 | // Print the address information. |
| 562 | OS << "["; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 563 | if (const Value *V = getValue()) |
| 564 | V->printAsOperand(OS, /*PrintType=*/false, MST); |
| 565 | else if (const PseudoSourceValue *PSV = getPseudoValue()) |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 566 | PSV->printCustom(OS); |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 567 | else |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 568 | OS << "<unknown>"; |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 569 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 570 | unsigned AS = getAddrSpace(); |
Matt Arsenault | 68c38fd | 2013-12-14 00:24:02 +0000 | [diff] [blame] | 571 | if (AS != 0) |
| 572 | OS << "(addrspace=" << AS << ')'; |
| 573 | |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 574 | // If the alignment of the memory reference itself differs from the alignment |
| 575 | // of the base pointer, print the base alignment explicitly, next to the base |
| 576 | // pointer. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 577 | if (getBaseAlignment() != getAlignment()) |
| 578 | OS << "(align=" << getBaseAlignment() << ")"; |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 579 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 580 | if (getOffset() != 0) |
| 581 | OS << "+" << getOffset(); |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 582 | OS << "]"; |
| 583 | |
| 584 | // Print the alignment of the reference. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 585 | if (getBaseAlignment() != getAlignment() || getBaseAlignment() != getSize()) |
| 586 | OS << "(align=" << getAlignment() << ")"; |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 587 | |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 588 | // Print TBAA info. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 589 | if (const MDNode *TBAAInfo = getAAInfo().TBAA) { |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 590 | OS << "(tbaa="; |
| 591 | if (TBAAInfo->getNumOperands() > 0) |
Duncan P. N. Exon Smith | 6529ed4 | 2015-06-26 22:28:47 +0000 | [diff] [blame] | 592 | TBAAInfo->getOperand(0)->printAsOperand(OS, MST); |
Dan Gohman | a94cc6d | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 593 | else |
| 594 | OS << "<unknown>"; |
| 595 | OS << ")"; |
| 596 | } |
| 597 | |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 598 | // Print AA scope info. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 599 | if (const MDNode *ScopeInfo = getAAInfo().Scope) { |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 600 | OS << "(alias.scope="; |
| 601 | if (ScopeInfo->getNumOperands() > 0) |
| 602 | for (unsigned i = 0, ie = ScopeInfo->getNumOperands(); i != ie; ++i) { |
Duncan P. N. Exon Smith | 6529ed4 | 2015-06-26 22:28:47 +0000 | [diff] [blame] | 603 | ScopeInfo->getOperand(i)->printAsOperand(OS, MST); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 604 | if (i != ie-1) |
| 605 | OS << ","; |
| 606 | } |
| 607 | else |
| 608 | OS << "<unknown>"; |
| 609 | OS << ")"; |
| 610 | } |
| 611 | |
| 612 | // Print AA noalias scope info. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 613 | if (const MDNode *NoAliasInfo = getAAInfo().NoAlias) { |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 614 | OS << "(noalias="; |
| 615 | if (NoAliasInfo->getNumOperands() > 0) |
| 616 | for (unsigned i = 0, ie = NoAliasInfo->getNumOperands(); i != ie; ++i) { |
Duncan P. N. Exon Smith | 6529ed4 | 2015-06-26 22:28:47 +0000 | [diff] [blame] | 617 | NoAliasInfo->getOperand(i)->printAsOperand(OS, MST); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 618 | if (i != ie-1) |
| 619 | OS << ","; |
| 620 | } |
| 621 | else |
| 622 | OS << "<unknown>"; |
| 623 | OS << ")"; |
| 624 | } |
| 625 | |
Bill Wendling | 9f638ab | 2011-04-29 23:45:22 +0000 | [diff] [blame] | 626 | // Print nontemporal info. |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 627 | if (isNonTemporal()) |
Bill Wendling | 9f638ab | 2011-04-29 23:45:22 +0000 | [diff] [blame] | 628 | OS << "(nontemporal)"; |
| 629 | |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 630 | if (isInvariant()) |
Matt Arsenault | 572c29a | 2015-06-26 19:00:11 +0000 | [diff] [blame] | 631 | OS << "(invariant)"; |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 632 | } |
| 633 | |
Dan Gohman | aedb4a6 | 2008-07-07 20:32:02 +0000 | [diff] [blame] | 634 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6005589 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 635 | // MachineInstr Implementation |
| 636 | //===----------------------------------------------------------------------===// |
| 637 | |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 638 | void MachineInstr::addImplicitDefUseOperands(MachineFunction &MF) { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 639 | if (MCID->ImplicitDefs) |
Craig Topper | e5e035a3 | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 640 | for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; |
| 641 | ++ImpDefs) |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 642 | addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 643 | if (MCID->ImplicitUses) |
Craig Topper | e5e035a3 | 2015-12-05 07:13:35 +0000 | [diff] [blame] | 644 | for (const MCPhysReg *ImpUses = MCID->getImplicitUses(); *ImpUses; |
| 645 | ++ImpUses) |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 646 | addOperand(MF, MachineOperand::CreateReg(*ImpUses, false, true)); |
Evan Cheng | 77af6ac | 2006-11-13 23:34:06 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Bob Wilson | 406f270 | 2010-04-09 04:34:03 +0000 | [diff] [blame] | 649 | /// MachineInstr ctor - This constructor creates a MachineInstr and adds the |
| 650 | /// implicit operands. It reserves space for the number of operands specified by |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 651 | /// the MCInstrDesc. |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 652 | MachineInstr::MachineInstr(MachineFunction &MF, const MCInstrDesc &tid, |
Benjamin Kramer | a9591b5 | 2015-02-07 12:28:15 +0000 | [diff] [blame] | 653 | DebugLoc dl, bool NoImp) |
| 654 | : MCID(&tid), Parent(nullptr), Operands(nullptr), NumOperands(0), Flags(0), |
| 655 | AsmPrinterFlags(0), NumMemRefs(0), MemRefs(nullptr), |
Quentin Colombet | 9855111 | 2016-02-11 18:22:37 +0000 | [diff] [blame] | 656 | debugLoc(std::move(dl)) |
| 657 | #ifdef LLVM_BUILD_GLOBAL_ISEL |
| 658 | , |
| 659 | Ty(nullptr) |
| 660 | #endif |
| 661 | { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 662 | assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); |
| 663 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 664 | // Reserve space for the expected number of operands. |
| 665 | if (unsigned NumOps = MCID->getNumOperands() + |
| 666 | MCID->getNumImplicitDefs() + MCID->getNumImplicitUses()) { |
| 667 | CapOperands = OperandCapacity::get(NumOps); |
| 668 | Operands = MF.allocateOperandArray(CapOperands); |
| 669 | } |
| 670 | |
Dale Johannesen | 4e04ef3 | 2009-01-27 23:20:29 +0000 | [diff] [blame] | 671 | if (!NoImp) |
Jakob Stoklund Olesen | ac4210e | 2012-12-20 22:53:58 +0000 | [diff] [blame] | 672 | addImplicitDefUseOperands(MF); |
Dale Johannesen | 4e04ef3 | 2009-01-27 23:20:29 +0000 | [diff] [blame] | 673 | } |
| 674 | |
Misha Brukman | b47ab7a | 2004-07-09 14:45:17 +0000 | [diff] [blame] | 675 | /// MachineInstr ctor - Copies MachineInstr arg exactly |
| 676 | /// |
Evan Cheng | a7a20c4 | 2008-07-19 00:37:25 +0000 | [diff] [blame] | 677 | MachineInstr::MachineInstr(MachineFunction &MF, const MachineInstr &MI) |
Quentin Colombet | 9855111 | 2016-02-11 18:22:37 +0000 | [diff] [blame] | 678 | : MCID(&MI.getDesc()), Parent(nullptr), Operands(nullptr), NumOperands(0), |
| 679 | Flags(0), AsmPrinterFlags(0), NumMemRefs(MI.NumMemRefs), |
| 680 | MemRefs(MI.MemRefs), debugLoc(MI.getDebugLoc()) |
| 681 | #ifdef LLVM_BUILD_GLOBAL_ISEL |
| 682 | , |
| 683 | Ty(nullptr) |
| 684 | #endif |
| 685 | { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 686 | assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); |
| 687 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 688 | CapOperands = OperandCapacity::get(MI.getNumOperands()); |
| 689 | Operands = MF.allocateOperandArray(CapOperands); |
Tanya Lattner | 9953d86 | 2004-05-23 20:58:02 +0000 | [diff] [blame] | 690 | |
Jakob Stoklund Olesen | dc5285f | 2013-01-05 05:05:51 +0000 | [diff] [blame] | 691 | // Copy operands. |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 692 | for (const MachineOperand &MO : MI.operands()) |
| 693 | addOperand(MF, MO); |
Tanya Lattner | bcee21b | 2004-05-24 03:14:18 +0000 | [diff] [blame] | 694 | |
Jakob Stoklund Olesen | a33f504 | 2012-12-18 21:36:05 +0000 | [diff] [blame] | 695 | // Copy all the sensible flags. |
| 696 | setFlags(MI.Flags); |
Alkis Evlogimenos | 14f3fe8 | 2004-02-16 07:17:43 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 699 | /// getRegInfo - If this instruction is embedded into a MachineFunction, |
| 700 | /// return the MachineRegisterInfo object for the current function, otherwise |
| 701 | /// return null. |
| 702 | MachineRegisterInfo *MachineInstr::getRegInfo() { |
| 703 | if (MachineBasicBlock *MBB = getParent()) |
Dan Gohman | f188fa4 | 2008-07-08 23:59:09 +0000 | [diff] [blame] | 704 | return &MBB->getParent()->getRegInfo(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 705 | return nullptr; |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | /// RemoveRegOperandsFromUseLists - Unlink all of the register operands in |
| 709 | /// this instruction from their respective use lists. This requires that the |
| 710 | /// operands already be on their use lists. |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 711 | void MachineInstr::RemoveRegOperandsFromUseLists(MachineRegisterInfo &MRI) { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 712 | for (MachineOperand &MO : operands()) |
| 713 | if (MO.isReg()) |
| 714 | MRI.removeRegOperandFromUseList(&MO); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | /// AddRegOperandsToUseLists - Add all of the register operands in |
| 718 | /// this instruction from their respective use lists. This requires that the |
| 719 | /// operands not be on their use lists yet. |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 720 | void MachineInstr::AddRegOperandsToUseLists(MachineRegisterInfo &MRI) { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 721 | for (MachineOperand &MO : operands()) |
| 722 | if (MO.isReg()) |
| 723 | MRI.addRegOperandToUseList(&MO); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 724 | } |
| 725 | |
Jakob Stoklund Olesen | 2455b585 | 2012-12-20 22:54:05 +0000 | [diff] [blame] | 726 | void MachineInstr::addOperand(const MachineOperand &Op) { |
| 727 | MachineBasicBlock *MBB = getParent(); |
| 728 | assert(MBB && "Use MachineInstrBuilder to add operands to dangling instrs"); |
| 729 | MachineFunction *MF = MBB->getParent(); |
| 730 | assert(MF && "Use MachineInstrBuilder to add operands to dangling instrs"); |
| 731 | addOperand(*MF, Op); |
| 732 | } |
| 733 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 734 | /// Move NumOps MachineOperands from Src to Dst, with support for overlapping |
| 735 | /// ranges. If MRI is non-null also update use-def chains. |
| 736 | static void moveOperands(MachineOperand *Dst, MachineOperand *Src, |
| 737 | unsigned NumOps, MachineRegisterInfo *MRI) { |
| 738 | if (MRI) |
| 739 | return MRI->moveOperands(Dst, Src, NumOps); |
| 740 | |
Benjamin Kramer | 5c0e64f | 2015-02-21 16:22:48 +0000 | [diff] [blame] | 741 | // MachineOperand is a trivially copyable type so we can just use memmove. |
| 742 | std::memmove(Dst, Src, NumOps * sizeof(MachineOperand)); |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 745 | /// addOperand - Add the specified operand to the instruction. If it is an |
| 746 | /// implicit operand, it is added to the end of the operand list. If it is |
| 747 | /// an explicit operand it is added at the end of the explicit operand list |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 748 | /// (before the first implicit operand). |
Jakob Stoklund Olesen | 2455b585 | 2012-12-20 22:54:05 +0000 | [diff] [blame] | 749 | void MachineInstr::addOperand(MachineFunction &MF, const MachineOperand &Op) { |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 750 | assert(MCID && "Cannot add operands before providing an instr descriptor"); |
Dan Gohman | 9356d8f | 2008-12-09 22:45:08 +0000 | [diff] [blame] | 751 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 752 | // Check if we're adding one of our existing operands. |
| 753 | if (&Op >= Operands && &Op < Operands + NumOperands) { |
| 754 | // This is unusual: MI->addOperand(MI->getOperand(i)). |
| 755 | // If adding Op requires reallocating or moving existing operands around, |
| 756 | // the Op reference could go stale. Support it by copying Op. |
| 757 | MachineOperand CopyOp(Op); |
| 758 | return addOperand(MF, CopyOp); |
| 759 | } |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 760 | |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 761 | // Find the insert location for the new operand. Implicit registers go at |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 762 | // the end, everything else goes before the implicit regs. |
| 763 | // |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 764 | // FIXME: Allow mixed explicit and implicit operands on inline asm. |
| 765 | // InstrEmitter::EmitSpecialNode() is marking inline asm clobbers as |
| 766 | // implicit-defs, but they must not be moved around. See the FIXME in |
| 767 | // InstrEmitter.cpp. |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 768 | unsigned OpNo = getNumOperands(); |
| 769 | bool isImpReg = Op.isReg() && Op.isImplicit(); |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 770 | if (!isImpReg && !isInlineAsm()) { |
| 771 | while (OpNo && Operands[OpNo-1].isReg() && Operands[OpNo-1].isImplicit()) { |
| 772 | --OpNo; |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 773 | assert(!Operands[OpNo].isTied() && "Cannot move tied operands"); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 774 | } |
| 775 | } |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 776 | |
Pekka Jaaskelainen | eb4a6e7 | 2013-10-15 14:40:46 +0000 | [diff] [blame] | 777 | #ifndef NDEBUG |
Pekka Jaaskelainen | eb08e2e | 2013-10-15 14:18:10 +0000 | [diff] [blame] | 778 | bool isMetaDataOp = Op.getType() == MachineOperand::MO_Metadata; |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 779 | // OpNo now points as the desired insertion point. Unless this is a variadic |
| 780 | // instruction, only implicit regs are allowed beyond MCID->getNumOperands(). |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 781 | // RegMask operands go between the explicit and implicit operands. |
| 782 | assert((isImpReg || Op.isRegMask() || MCID->isVariadic() || |
Pekka Jaaskelainen | eb08e2e | 2013-10-15 14:18:10 +0000 | [diff] [blame] | 783 | OpNo < MCID->getNumOperands() || isMetaDataOp) && |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 784 | "Trying to add an operand to a machine instr that is already done!"); |
Pekka Jaaskelainen | eb4a6e7 | 2013-10-15 14:40:46 +0000 | [diff] [blame] | 785 | #endif |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 786 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 787 | MachineRegisterInfo *MRI = getRegInfo(); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 788 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 789 | // Determine if the Operands array needs to be reallocated. |
| 790 | // Save the old capacity and operand array. |
| 791 | OperandCapacity OldCap = CapOperands; |
| 792 | MachineOperand *OldOperands = Operands; |
| 793 | if (!OldOperands || OldCap.getSize() == getNumOperands()) { |
| 794 | CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); |
| 795 | Operands = MF.allocateOperandArray(CapOperands); |
| 796 | // Move the operands before the insertion point. |
| 797 | if (OpNo) |
| 798 | moveOperands(Operands, OldOperands, OpNo, MRI); |
| 799 | } |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 800 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 801 | // Move the operands following the insertion point. |
| 802 | if (OpNo != NumOperands) |
| 803 | moveOperands(Operands + OpNo + 1, OldOperands + OpNo, NumOperands - OpNo, |
| 804 | MRI); |
| 805 | ++NumOperands; |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 806 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 807 | // Deallocate the old operand array. |
| 808 | if (OldOperands != Operands && OldOperands) |
| 809 | MF.deallocateOperandArray(OldCap, OldOperands); |
| 810 | |
| 811 | // Copy Op into place. It still needs to be inserted into the MRI use lists. |
| 812 | MachineOperand *NewMO = new (Operands + OpNo) MachineOperand(Op); |
| 813 | NewMO->ParentMI = this; |
| 814 | |
| 815 | // When adding a register operand, tell MRI about it. |
| 816 | if (NewMO->isReg()) { |
Jakob Stoklund Olesen | c4102d4 | 2012-08-09 22:49:37 +0000 | [diff] [blame] | 817 | // Ensure isOnRegUseList() returns false, regardless of Op's status. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 818 | NewMO->Contents.Reg.Prev = nullptr; |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 819 | // Ignore existing ties. This is not a property that can be copied. |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 820 | NewMO->TiedTo = 0; |
| 821 | // Add the new operand to MRI, but only for instructions in an MBB. |
| 822 | if (MRI) |
| 823 | MRI->addRegOperandToUseList(NewMO); |
Jakob Stoklund Olesen | 0eecbbe | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 824 | // The MCID operand information isn't accurate until we start adding |
| 825 | // explicit operands. The implicit operands are added first, then the |
| 826 | // explicits are inserted before them. |
| 827 | if (!isImpReg) { |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 828 | // Tie uses to defs as indicated in MCInstrDesc. |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 829 | if (NewMO->isUse()) { |
Jakob Stoklund Olesen | 0eecbbe | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 830 | int DefIdx = MCID->getOperandConstraint(OpNo, MCOI::TIED_TO); |
Jakob Stoklund Olesen | 5c8eda0 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 831 | if (DefIdx != -1) |
| 832 | tieOperands(DefIdx, OpNo); |
Jakob Stoklund Olesen | e56c60c | 2012-08-28 18:34:41 +0000 | [diff] [blame] | 833 | } |
Jakob Stoklund Olesen | 0eecbbe | 2012-08-30 14:39:06 +0000 | [diff] [blame] | 834 | // If the register operand is flagged as early, mark the operand as such. |
| 835 | if (MCID->getOperandConstraint(OpNo, MCOI::EARLY_CLOBBER) != -1) |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 836 | NewMO->setIsEarlyClobber(true); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 837 | } |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 838 | } |
| 839 | } |
| 840 | |
| 841 | /// RemoveOperand - Erase an operand from an instruction, leaving it with one |
| 842 | /// fewer operand than it started with. |
| 843 | /// |
| 844 | void MachineInstr::RemoveOperand(unsigned OpNo) { |
Jakob Stoklund Olesen | b089483 | 2012-12-22 17:13:06 +0000 | [diff] [blame] | 845 | assert(OpNo < getNumOperands() && "Invalid operand number"); |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 846 | untieRegOperand(OpNo); |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 847 | |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 848 | #ifndef NDEBUG |
| 849 | // Moving tied operands would break the ties. |
Jakob Stoklund Olesen | b089483 | 2012-12-22 17:13:06 +0000 | [diff] [blame] | 850 | for (unsigned i = OpNo + 1, e = getNumOperands(); i != e; ++i) |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 851 | if (Operands[i].isReg()) |
| 852 | assert(!Operands[i].isTied() && "Cannot move tied operands"); |
| 853 | #endif |
| 854 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 855 | MachineRegisterInfo *MRI = getRegInfo(); |
| 856 | if (MRI && Operands[OpNo].isReg()) |
| 857 | MRI->removeRegOperandFromUseList(Operands + OpNo); |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 858 | |
Jakob Stoklund Olesen | 1bfeecb | 2013-01-05 05:00:09 +0000 | [diff] [blame] | 859 | // Don't call the MachineOperand destructor. A lot of this code depends on |
| 860 | // MachineOperand having a trivial destructor anyway, and adding a call here |
| 861 | // wouldn't make it 'destructor-correct'. |
| 862 | |
| 863 | if (unsigned N = NumOperands - 1 - OpNo) |
| 864 | moveOperands(Operands + OpNo, Operands + OpNo + 1, N, MRI); |
| 865 | --NumOperands; |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 868 | /// addMemOperand - Add a MachineMemOperand to the machine instruction. |
| 869 | /// This function should be used only occasionally. The setMemRefs function |
| 870 | /// is the primary method for setting up a MachineInstr's MemRefs list. |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 871 | void MachineInstr::addMemOperand(MachineFunction &MF, |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 872 | MachineMemOperand *MO) { |
| 873 | mmo_iterator OldMemRefs = MemRefs; |
Jakob Stoklund Olesen | 5adc4a1 | 2013-01-07 23:21:41 +0000 | [diff] [blame] | 874 | unsigned OldNumMemRefs = NumMemRefs; |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 875 | |
Jakob Stoklund Olesen | 5adc4a1 | 2013-01-07 23:21:41 +0000 | [diff] [blame] | 876 | unsigned NewNum = NumMemRefs + 1; |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 877 | mmo_iterator NewMemRefs = MF.allocateMemRefsArray(NewNum); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 878 | |
Benjamin Kramer | d03878b | 2012-03-16 16:39:27 +0000 | [diff] [blame] | 879 | std::copy(OldMemRefs, OldMemRefs + OldNumMemRefs, NewMemRefs); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 880 | NewMemRefs[NewNum - 1] = MO; |
Jakob Stoklund Olesen | 5adc4a1 | 2013-01-07 23:21:41 +0000 | [diff] [blame] | 881 | setMemRefs(NewMemRefs, NewMemRefs + NewNum); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 882 | } |
Chris Lattner | 961e742 | 2008-01-01 01:12:31 +0000 | [diff] [blame] | 883 | |
Philip Reames | 5eb90a7 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 884 | /// Check to see if the MMOs pointed to by the two MemRefs arrays are |
| 885 | /// identical. |
| 886 | static bool hasIdenticalMMOs(const MachineInstr &MI1, const MachineInstr &MI2) { |
| 887 | auto I1 = MI1.memoperands_begin(), E1 = MI1.memoperands_end(); |
| 888 | auto I2 = MI2.memoperands_begin(), E2 = MI2.memoperands_end(); |
| 889 | if ((E1 - I1) != (E2 - I2)) |
| 890 | return false; |
| 891 | for (; I1 != E1; ++I1, ++I2) { |
| 892 | if (**I1 != **I2) |
| 893 | return false; |
| 894 | } |
| 895 | return true; |
| 896 | } |
| 897 | |
Philip Reames | c86ed00 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 898 | std::pair<MachineInstr::mmo_iterator, unsigned> |
| 899 | MachineInstr::mergeMemRefsWith(const MachineInstr& Other) { |
Philip Reames | 5eb90a7 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 900 | |
| 901 | // If either of the incoming memrefs are empty, we must be conservative and |
| 902 | // treat this as if we've exhausted our space for memrefs and dropped them. |
| 903 | if (memoperands_empty() || Other.memoperands_empty()) |
| 904 | return std::make_pair(nullptr, 0); |
| 905 | |
| 906 | // If both instructions have identical memrefs, we don't need to merge them. |
| 907 | // Since many instructions have a single memref, and we tend to merge things |
| 908 | // like pairs of loads from the same location, this catches a large number of |
| 909 | // cases in practice. |
| 910 | if (hasIdenticalMMOs(*this, Other)) |
| 911 | return std::make_pair(MemRefs, NumMemRefs); |
| 912 | |
Philip Reames | c86ed00 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 913 | // TODO: consider uniquing elements within the operand lists to reduce |
| 914 | // space usage and fall back to conservative information less often. |
Philip Reames | 5eb90a7 | 2016-01-06 19:33:12 +0000 | [diff] [blame] | 915 | size_t CombinedNumMemRefs = NumMemRefs + Other.NumMemRefs; |
| 916 | |
| 917 | // If we don't have enough room to store this many memrefs, be conservative |
| 918 | // and drop them. Otherwise, we'd fail asserts when trying to add them to |
| 919 | // the new instruction. |
| 920 | if (CombinedNumMemRefs != uint8_t(CombinedNumMemRefs)) |
| 921 | return std::make_pair(nullptr, 0); |
Philip Reames | c86ed00 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 922 | |
| 923 | MachineFunction *MF = getParent()->getParent(); |
| 924 | mmo_iterator MemBegin = MF->allocateMemRefsArray(CombinedNumMemRefs); |
| 925 | mmo_iterator MemEnd = std::copy(memoperands_begin(), memoperands_end(), |
| 926 | MemBegin); |
| 927 | MemEnd = std::copy(Other.memoperands_begin(), Other.memoperands_end(), |
| 928 | MemEnd); |
Philip Reames | 2d2fc4a | 2016-01-06 05:53:09 +0000 | [diff] [blame] | 929 | assert(MemEnd - MemBegin == (ptrdiff_t)CombinedNumMemRefs && |
| 930 | "missing memrefs"); |
Philip Reames | c86ed00 | 2016-01-06 04:39:03 +0000 | [diff] [blame] | 931 | |
| 932 | return std::make_pair(MemBegin, CombinedNumMemRefs); |
| 933 | } |
| 934 | |
Benjamin Kramer | 97f889f | 2012-03-17 17:03:45 +0000 | [diff] [blame] | 935 | bool MachineInstr::hasPropertyInBundle(unsigned Mask, QueryType Type) const { |
Jakob Stoklund Olesen | f0615c7 | 2013-01-10 18:42:44 +0000 | [diff] [blame] | 936 | assert(!isBundledWithPred() && "Must be called on bundle header"); |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 937 | for (MachineBasicBlock::const_instr_iterator MII = getIterator();; ++MII) { |
Benjamin Kramer | 97f889f | 2012-03-17 17:03:45 +0000 | [diff] [blame] | 938 | if (MII->getDesc().getFlags() & Mask) { |
Evan Cheng | cdf89fd | 2011-12-08 19:23:10 +0000 | [diff] [blame] | 939 | if (Type == AnyInBundle) |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 940 | return true; |
| 941 | } else { |
Jakob Stoklund Olesen | 55a7be2 | 2013-01-10 01:29:42 +0000 | [diff] [blame] | 942 | if (Type == AllInBundle && !MII->isBundle()) |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 943 | return false; |
| 944 | } |
Jakob Stoklund Olesen | 55a7be2 | 2013-01-10 01:29:42 +0000 | [diff] [blame] | 945 | // This was the last instruction in the bundle. |
| 946 | if (!MII->isBundledWithSucc()) |
| 947 | return Type == AllInBundle; |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 948 | } |
Evan Cheng | 2a81dd4 | 2011-12-06 22:12:01 +0000 | [diff] [blame] | 949 | } |
| 950 | |
Evan Cheng | e9c46c2 | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 951 | bool MachineInstr::isIdenticalTo(const MachineInstr *Other, |
| 952 | MICheckType Check) const { |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 953 | // If opcodes or number of operands are not the same then the two |
| 954 | // instructions are obviously not identical. |
| 955 | if (Other->getOpcode() != getOpcode() || |
| 956 | Other->getNumOperands() != getNumOperands()) |
| 957 | return false; |
| 958 | |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 959 | if (isBundle()) { |
| 960 | // Both instructions are bundles, compare MIs inside the bundle. |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 961 | MachineBasicBlock::const_instr_iterator I1 = getIterator(); |
| 962 | MachineBasicBlock::const_instr_iterator E1 = getParent()->instr_end(); |
| 963 | MachineBasicBlock::const_instr_iterator I2 = Other->getIterator(); |
| 964 | MachineBasicBlock::const_instr_iterator E2= Other->getParent()->instr_end(); |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 965 | while (++I1 != E1 && I1->isInsideBundle()) { |
| 966 | ++I2; |
Duncan P. N. Exon Smith | 5ec1568 | 2015-10-09 19:40:45 +0000 | [diff] [blame] | 967 | if (I2 == E2 || !I2->isInsideBundle() || !I1->isIdenticalTo(&*I2, Check)) |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 968 | return false; |
| 969 | } |
| 970 | } |
| 971 | |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 972 | // Check operands to make sure they match. |
| 973 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 974 | const MachineOperand &MO = getOperand(i); |
| 975 | const MachineOperand &OMO = Other->getOperand(i); |
Evan Cheng | cfdf339 | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 976 | if (!MO.isReg()) { |
| 977 | if (!MO.isIdenticalTo(OMO)) |
| 978 | return false; |
| 979 | continue; |
| 980 | } |
| 981 | |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 982 | // Clients may or may not want to ignore defs when testing for equality. |
| 983 | // For example, machine CSE pass only cares about finding common |
| 984 | // subexpressions, so it's safe to ignore virtual register defs. |
Evan Cheng | cfdf339 | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 985 | if (MO.isDef()) { |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 986 | if (Check == IgnoreDefs) |
| 987 | continue; |
Evan Cheng | cfdf339 | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 988 | else if (Check == IgnoreVRegDefs) { |
| 989 | if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) || |
| 990 | TargetRegisterInfo::isPhysicalRegister(OMO.getReg())) |
| 991 | if (MO.getReg() != OMO.getReg()) |
| 992 | return false; |
| 993 | } else { |
| 994 | if (!MO.isIdenticalTo(OMO)) |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 995 | return false; |
Evan Cheng | cfdf339 | 2011-05-12 00:56:58 +0000 | [diff] [blame] | 996 | if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) |
| 997 | return false; |
| 998 | } |
| 999 | } else { |
| 1000 | if (!MO.isIdenticalTo(OMO)) |
| 1001 | return false; |
| 1002 | if (Check == CheckKillDead && MO.isKill() != OMO.isKill()) |
| 1003 | return false; |
| 1004 | } |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 1005 | } |
Devang Patel | bf8cc60 | 2011-07-07 17:45:33 +0000 | [diff] [blame] | 1006 | // If DebugLoc does not match then two dbg.values are not identical. |
| 1007 | if (isDebugValue()) |
Duncan P. N. Exon Smith | 9dffcd0 | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 1008 | if (getDebugLoc() && Other->getDebugLoc() && |
| 1009 | getDebugLoc() != Other->getDebugLoc()) |
Devang Patel | bf8cc60 | 2011-07-07 17:45:33 +0000 | [diff] [blame] | 1010 | return false; |
Evan Cheng | 0f260e1 | 2010-03-03 21:54:14 +0000 | [diff] [blame] | 1011 | return true; |
Evan Cheng | e9c46c2 | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
Chris Lattner | bec79b4 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 1014 | MachineInstr *MachineInstr::removeFromParent() { |
| 1015 | assert(getParent() && "Not embedded in a basic block!"); |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1016 | return getParent()->remove(this); |
Chris Lattner | bec79b4 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 1017 | } |
| 1018 | |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1019 | MachineInstr *MachineInstr::removeFromBundle() { |
| 1020 | assert(getParent() && "Not embedded in a basic block!"); |
| 1021 | return getParent()->remove_instr(this); |
| 1022 | } |
Chris Lattner | bec79b4 | 2006-04-17 21:35:41 +0000 | [diff] [blame] | 1023 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1024 | void MachineInstr::eraseFromParent() { |
| 1025 | assert(getParent() && "Not embedded in a basic block!"); |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1026 | getParent()->erase(this); |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Gerolf Hoflehner | caa8bfd | 2014-08-13 21:15:23 +0000 | [diff] [blame] | 1029 | void MachineInstr::eraseFromParentAndMarkDBGValuesForRemoval() { |
| 1030 | assert(getParent() && "Not embedded in a basic block!"); |
| 1031 | MachineBasicBlock *MBB = getParent(); |
| 1032 | MachineFunction *MF = MBB->getParent(); |
| 1033 | assert(MF && "Not embedded in a function!"); |
| 1034 | |
| 1035 | MachineInstr *MI = (MachineInstr *)this; |
| 1036 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 1037 | |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1038 | for (const MachineOperand &MO : MI->operands()) { |
Gerolf Hoflehner | caa8bfd | 2014-08-13 21:15:23 +0000 | [diff] [blame] | 1039 | if (!MO.isReg() || !MO.isDef()) |
| 1040 | continue; |
| 1041 | unsigned Reg = MO.getReg(); |
| 1042 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 1043 | continue; |
| 1044 | MRI.markUsesInDebugValueAsUndef(Reg); |
| 1045 | } |
| 1046 | MI->eraseFromParent(); |
| 1047 | } |
| 1048 | |
Jakob Stoklund Olesen | ccfb5fb | 2012-12-17 23:55:38 +0000 | [diff] [blame] | 1049 | void MachineInstr::eraseFromBundle() { |
| 1050 | assert(getParent() && "Not embedded in a basic block!"); |
| 1051 | getParent()->erase_instr(this); |
| 1052 | } |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1053 | |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1054 | /// getNumExplicitOperands - Returns the number of non-implicit operands. |
| 1055 | /// |
| 1056 | unsigned MachineInstr::getNumExplicitOperands() const { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1057 | unsigned NumOperands = MCID->getNumOperands(); |
| 1058 | if (!MCID->isVariadic()) |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1059 | return NumOperands; |
| 1060 | |
Dan Gohman | 3760853 | 2009-04-15 17:59:11 +0000 | [diff] [blame] | 1061 | for (unsigned i = NumOperands, e = getNumOperands(); i != e; ++i) { |
| 1062 | const MachineOperand &MO = getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1063 | if (!MO.isReg() || !MO.isImplicit()) |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1064 | NumOperands++; |
| 1065 | } |
| 1066 | return NumOperands; |
| 1067 | } |
| 1068 | |
Jakob Stoklund Olesen | fead62d | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 1069 | void MachineInstr::bundleWithPred() { |
| 1070 | assert(!isBundledWithPred() && "MI is already bundled with its predecessor"); |
| 1071 | setFlag(BundledPred); |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 1072 | MachineBasicBlock::instr_iterator Pred = getIterator(); |
| 1073 | --Pred; |
Jakob Stoklund Olesen | 00f6c77 | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 1074 | assert(!Pred->isBundledWithSucc() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fead62d | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 1075 | Pred->setFlag(BundledSucc); |
| 1076 | } |
| 1077 | |
| 1078 | void MachineInstr::bundleWithSucc() { |
| 1079 | assert(!isBundledWithSucc() && "MI is already bundled with its successor"); |
| 1080 | setFlag(BundledSucc); |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 1081 | MachineBasicBlock::instr_iterator Succ = getIterator(); |
| 1082 | ++Succ; |
Jakob Stoklund Olesen | 00f6c77 | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 1083 | assert(!Succ->isBundledWithPred() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fead62d | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 1084 | Succ->setFlag(BundledPred); |
| 1085 | } |
| 1086 | |
| 1087 | void MachineInstr::unbundleFromPred() { |
| 1088 | assert(isBundledWithPred() && "MI isn't bundled with its predecessor"); |
| 1089 | clearFlag(BundledPred); |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 1090 | MachineBasicBlock::instr_iterator Pred = getIterator(); |
| 1091 | --Pred; |
Jakob Stoklund Olesen | 00f6c77 | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 1092 | assert(Pred->isBundledWithSucc() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fead62d | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 1093 | Pred->clearFlag(BundledSucc); |
| 1094 | } |
| 1095 | |
| 1096 | void MachineInstr::unbundleFromSucc() { |
| 1097 | assert(isBundledWithSucc() && "MI isn't bundled with its successor"); |
| 1098 | clearFlag(BundledSucc); |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 1099 | MachineBasicBlock::instr_iterator Succ = getIterator(); |
| 1100 | ++Succ; |
Jakob Stoklund Olesen | 00f6c77 | 2012-12-18 23:00:28 +0000 | [diff] [blame] | 1101 | assert(Succ->isBundledWithPred() && "Inconsistent bundle flags"); |
Jakob Stoklund Olesen | fead62d | 2012-12-07 04:23:29 +0000 | [diff] [blame] | 1102 | Succ->clearFlag(BundledPred); |
| 1103 | } |
| 1104 | |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1105 | bool MachineInstr::isStackAligningInlineAsm() const { |
| 1106 | if (isInlineAsm()) { |
| 1107 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 1108 | if (ExtraInfo & InlineAsm::Extra_IsAlignStack) |
| 1109 | return true; |
| 1110 | } |
| 1111 | return false; |
| 1112 | } |
Chris Lattner | 33f5af0 | 2006-10-20 22:39:59 +0000 | [diff] [blame] | 1113 | |
Chad Rosier | 994f404 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1114 | InlineAsm::AsmDialect MachineInstr::getInlineAsmDialect() const { |
| 1115 | assert(isInlineAsm() && "getInlineAsmDialect() only works for inline asms!"); |
| 1116 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
Chad Rosier | e53314f | 2012-09-05 22:40:13 +0000 | [diff] [blame] | 1117 | return InlineAsm::AsmDialect((ExtraInfo & InlineAsm::Extra_AsmDialect) != 0); |
Chad Rosier | 994f404 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Jakob Stoklund Olesen | 1e73716 | 2011-10-12 23:37:33 +0000 | [diff] [blame] | 1120 | int MachineInstr::findInlineAsmFlagIdx(unsigned OpIdx, |
| 1121 | unsigned *GroupNo) const { |
| 1122 | assert(isInlineAsm() && "Expected an inline asm instruction"); |
| 1123 | assert(OpIdx < getNumOperands() && "OpIdx out of range"); |
| 1124 | |
| 1125 | // Ignore queries about the initial operands. |
| 1126 | if (OpIdx < InlineAsm::MIOp_FirstOperand) |
| 1127 | return -1; |
| 1128 | |
| 1129 | unsigned Group = 0; |
| 1130 | unsigned NumOps; |
| 1131 | for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; |
| 1132 | i += NumOps) { |
| 1133 | const MachineOperand &FlagMO = getOperand(i); |
| 1134 | // If we reach the implicit register operands, stop looking. |
| 1135 | if (!FlagMO.isImm()) |
| 1136 | return -1; |
| 1137 | NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); |
| 1138 | if (i + NumOps > OpIdx) { |
| 1139 | if (GroupNo) |
| 1140 | *GroupNo = Group; |
| 1141 | return i; |
| 1142 | } |
| 1143 | ++Group; |
| 1144 | } |
| 1145 | return -1; |
| 1146 | } |
| 1147 | |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1148 | const TargetRegisterClass* |
| 1149 | MachineInstr::getRegClassConstraint(unsigned OpIdx, |
| 1150 | const TargetInstrInfo *TII, |
| 1151 | const TargetRegisterInfo *TRI) const { |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 1152 | assert(getParent() && "Can't have an MBB reference here!"); |
| 1153 | assert(getParent()->getParent() && "Can't have an MF reference here!"); |
| 1154 | const MachineFunction &MF = *getParent()->getParent(); |
| 1155 | |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1156 | // Most opcodes have fixed constraints in their MCInstrDesc. |
| 1157 | if (!isInlineAsm()) |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 1158 | return TII->getRegClass(getDesc(), OpIdx, TRI, MF); |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1159 | |
| 1160 | if (!getOperand(OpIdx).isReg()) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1161 | return nullptr; |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1162 | |
| 1163 | // For tied uses on inline asm, get the constraint from the def. |
| 1164 | unsigned DefIdx; |
| 1165 | if (getOperand(OpIdx).isUse() && isRegTiedToDefOperand(OpIdx, &DefIdx)) |
| 1166 | OpIdx = DefIdx; |
| 1167 | |
| 1168 | // Inline asm stores register class constraints in the flag word. |
| 1169 | int FlagIdx = findInlineAsmFlagIdx(OpIdx); |
| 1170 | if (FlagIdx < 0) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1171 | return nullptr; |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1172 | |
| 1173 | unsigned Flag = getOperand(FlagIdx).getImm(); |
| 1174 | unsigned RCID; |
| 1175 | if (InlineAsm::hasRegClassConstraint(Flag, RCID)) |
| 1176 | return TRI->getRegClass(RCID); |
| 1177 | |
| 1178 | // Assume that all registers in a memory operand are pointers. |
| 1179 | if (InlineAsm::getKind(Flag) == InlineAsm::Kind_Mem) |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 1180 | return TRI->getPointerRegClass(MF); |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1181 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1182 | return nullptr; |
Jakob Stoklund Olesen | 35b362f | 2011-10-12 23:37:36 +0000 | [diff] [blame] | 1183 | } |
| 1184 | |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1185 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVReg( |
| 1186 | unsigned Reg, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII, |
| 1187 | const TargetRegisterInfo *TRI, bool ExploreBundle) const { |
| 1188 | // Check every operands inside the bundle if we have |
| 1189 | // been asked to. |
| 1190 | if (ExploreBundle) |
| 1191 | for (ConstMIBundleOperands OpndIt(this); OpndIt.isValid() && CurRC; |
| 1192 | ++OpndIt) |
| 1193 | CurRC = OpndIt->getParent()->getRegClassConstraintEffectForVRegImpl( |
| 1194 | OpndIt.getOperandNo(), Reg, CurRC, TII, TRI); |
| 1195 | else |
| 1196 | // Otherwise, just check the current operands. |
Matthias Braun | e41e146 | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 1197 | for (unsigned i = 0, e = NumOperands; i < e && CurRC; ++i) |
| 1198 | CurRC = getRegClassConstraintEffectForVRegImpl(i, Reg, CurRC, TII, TRI); |
Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 1199 | return CurRC; |
| 1200 | } |
| 1201 | |
| 1202 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffectForVRegImpl( |
| 1203 | unsigned OpIdx, unsigned Reg, const TargetRegisterClass *CurRC, |
| 1204 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { |
| 1205 | assert(CurRC && "Invalid initial register class"); |
| 1206 | // Check if Reg is constrained by some of its use/def from MI. |
| 1207 | const MachineOperand &MO = getOperand(OpIdx); |
| 1208 | if (!MO.isReg() || MO.getReg() != Reg) |
| 1209 | return CurRC; |
| 1210 | // If yes, accumulate the constraints through the operand. |
| 1211 | return getRegClassConstraintEffect(OpIdx, CurRC, TII, TRI); |
| 1212 | } |
| 1213 | |
| 1214 | const TargetRegisterClass *MachineInstr::getRegClassConstraintEffect( |
| 1215 | unsigned OpIdx, const TargetRegisterClass *CurRC, |
| 1216 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const { |
| 1217 | const TargetRegisterClass *OpRC = getRegClassConstraint(OpIdx, TII, TRI); |
| 1218 | const MachineOperand &MO = getOperand(OpIdx); |
| 1219 | assert(MO.isReg() && |
| 1220 | "Cannot get register constraints for non-register operand"); |
| 1221 | assert(CurRC && "Invalid initial register class"); |
| 1222 | if (unsigned SubIdx = MO.getSubReg()) { |
| 1223 | if (OpRC) |
| 1224 | CurRC = TRI->getMatchingSuperRegClass(CurRC, OpRC, SubIdx); |
| 1225 | else |
| 1226 | CurRC = TRI->getSubClassWithSubReg(CurRC, SubIdx); |
| 1227 | } else if (OpRC) |
| 1228 | CurRC = TRI->getCommonSubClass(CurRC, OpRC); |
| 1229 | return CurRC; |
| 1230 | } |
| 1231 | |
Jakob Stoklund Olesen | 68d752b | 2013-01-09 18:28:16 +0000 | [diff] [blame] | 1232 | /// Return the number of instructions inside the MI bundle, not counting the |
| 1233 | /// header instruction. |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1234 | unsigned MachineInstr::getBundleSize() const { |
Duncan P. N. Exon Smith | c5b668d | 2016-02-22 20:49:58 +0000 | [diff] [blame] | 1235 | MachineBasicBlock::const_instr_iterator I = getIterator(); |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1236 | unsigned Size = 0; |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1237 | while (I->isBundledWithSucc()) { |
| 1238 | ++Size; |
| 1239 | ++I; |
| 1240 | } |
Evan Cheng | 7fae11b | 2011-12-14 02:11:42 +0000 | [diff] [blame] | 1241 | return Size; |
| 1242 | } |
| 1243 | |
Evan Cheng | 910c808 | 2007-04-26 19:00:32 +0000 | [diff] [blame] | 1244 | /// findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of |
Jim Grosbach | 9632c14 | 2009-09-17 17:57:26 +0000 | [diff] [blame] | 1245 | /// the specific register or -1 if it is not found. It further tightens |
Evan Cheng | 9965aeb | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 1246 | /// the search criteria to a use that kills the register if isKill is true. |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1247 | int MachineInstr::findRegisterUseOperandIdx(unsigned Reg, bool isKill, |
| 1248 | const TargetRegisterInfo *TRI) const { |
Evan Cheng | 75c2194 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 1249 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | 5983bdb | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1250 | const MachineOperand &MO = getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1251 | if (!MO.isReg() || !MO.isUse()) |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1252 | continue; |
| 1253 | unsigned MOReg = MO.getReg(); |
| 1254 | if (!MOReg) |
| 1255 | continue; |
| 1256 | if (MOReg == Reg || |
| 1257 | (TRI && |
| 1258 | TargetRegisterInfo::isPhysicalRegister(MOReg) && |
| 1259 | TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 1260 | TRI->isSubRegister(MOReg, Reg))) |
Evan Cheng | 9965aeb | 2007-02-23 01:04:26 +0000 | [diff] [blame] | 1261 | if (!isKill || MO.isKill()) |
Evan Cheng | ec3ac31 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 1262 | return i; |
Evan Cheng | 75c2194 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 1263 | } |
Evan Cheng | ec3ac31 | 2007-03-26 22:37:45 +0000 | [diff] [blame] | 1264 | return -1; |
Evan Cheng | 75c2194 | 2006-12-06 08:27:42 +0000 | [diff] [blame] | 1265 | } |
Jakob Stoklund Olesen | 5d4c134 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 1266 | |
Jakob Stoklund Olesen | 7d7f604 | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 1267 | /// readsWritesVirtualRegister - Return a pair of bools (reads, writes) |
| 1268 | /// indicating if this instruction reads or writes Reg. This also considers |
| 1269 | /// partial defines. |
| 1270 | std::pair<bool,bool> |
| 1271 | MachineInstr::readsWritesVirtualRegister(unsigned Reg, |
| 1272 | SmallVectorImpl<unsigned> *Ops) const { |
| 1273 | bool PartDef = false; // Partial redefine. |
| 1274 | bool FullDef = false; // Full define. |
| 1275 | bool Use = false; |
Jakob Stoklund Olesen | 5d4c134 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 1276 | |
| 1277 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 1278 | const MachineOperand &MO = getOperand(i); |
| 1279 | if (!MO.isReg() || MO.getReg() != Reg) |
| 1280 | continue; |
Jakob Stoklund Olesen | 7d7f604 | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 1281 | if (Ops) |
| 1282 | Ops->push_back(i); |
Jakob Stoklund Olesen | 5d4c134 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 1283 | if (MO.isUse()) |
Jakob Stoklund Olesen | 7d7f604 | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 1284 | Use |= !MO.isUndef(); |
Jakob Stoklund Olesen | 9eb77bf | 2011-08-19 00:30:17 +0000 | [diff] [blame] | 1285 | else if (MO.getSubReg() && !MO.isUndef()) |
| 1286 | // A partial <def,undef> doesn't count as reading the register. |
Jakob Stoklund Olesen | 5d4c134 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 1287 | PartDef = true; |
| 1288 | else |
| 1289 | FullDef = true; |
| 1290 | } |
Jakob Stoklund Olesen | 7d7f604 | 2010-05-21 20:02:01 +0000 | [diff] [blame] | 1291 | // A partial redefine uses Reg unless there is also a full define. |
| 1292 | return std::make_pair(Use || (PartDef && !FullDef), PartDef || FullDef); |
Jakob Stoklund Olesen | 5d4c134 | 2010-05-19 20:36:22 +0000 | [diff] [blame] | 1293 | } |
| 1294 | |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1295 | /// findRegisterDefOperandIdx() - Returns the operand index that is a def of |
Dan Gohman | 72a0bc1 | 2008-05-06 00:20:10 +0000 | [diff] [blame] | 1296 | /// the specified register or -1 if it is not found. If isDead is true, defs |
| 1297 | /// that are not dead are skipped. If TargetRegisterInfo is non-null, then it |
| 1298 | /// also checks if there is a def of a super-register. |
Evan Cheng | 3858451 | 2010-05-21 20:53:24 +0000 | [diff] [blame] | 1299 | int |
| 1300 | MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, |
| 1301 | const TargetRegisterInfo *TRI) const { |
| 1302 | bool isPhys = TargetRegisterInfo::isPhysicalRegister(Reg); |
Evan Cheng | f7ed82d | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 1303 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1304 | const MachineOperand &MO = getOperand(i); |
Jakob Stoklund Olesen | e7d3f44 | 2012-02-14 23:49:37 +0000 | [diff] [blame] | 1305 | // Accept regmask operands when Overlap is set. |
| 1306 | // Ignore them when looking for a specific def operand (Overlap == false). |
| 1307 | if (isPhys && Overlap && MO.isRegMask() && MO.clobbersPhysReg(Reg)) |
| 1308 | return i; |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1309 | if (!MO.isReg() || !MO.isDef()) |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1310 | continue; |
| 1311 | unsigned MOReg = MO.getReg(); |
Evan Cheng | 3858451 | 2010-05-21 20:53:24 +0000 | [diff] [blame] | 1312 | bool Found = (MOReg == Reg); |
| 1313 | if (!Found && TRI && isPhys && |
| 1314 | TargetRegisterInfo::isPhysicalRegister(MOReg)) { |
| 1315 | if (Overlap) |
| 1316 | Found = TRI->regsOverlap(MOReg, Reg); |
| 1317 | else |
| 1318 | Found = TRI->isSubRegister(MOReg, Reg); |
| 1319 | } |
| 1320 | if (Found && (!isDead || MO.isDead())) |
| 1321 | return i; |
Evan Cheng | f7ed82d | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 1322 | } |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1323 | return -1; |
Evan Cheng | f7ed82d | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 1324 | } |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1325 | |
Evan Cheng | 5983bdb | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1326 | /// findFirstPredOperandIdx() - Find the index of the first operand in the |
| 1327 | /// operand list that is used to represent the predicate. It returns -1 if |
| 1328 | /// none is found. |
| 1329 | int MachineInstr::findFirstPredOperandIdx() const { |
Jim Grosbach | ed16ec4 | 2011-08-29 22:24:09 +0000 | [diff] [blame] | 1330 | // Don't call MCID.findFirstPredOperandIdx() because this variant |
| 1331 | // is sometimes called on an instruction that's not yet complete, and |
| 1332 | // so the number of operands is less than the MCID indicates. In |
| 1333 | // particular, the PTX target does this. |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1334 | const MCInstrDesc &MCID = getDesc(); |
| 1335 | if (MCID.isPredicable()) { |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1336 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1337 | if (MCID.OpInfo[i].isPredicate()) |
Evan Cheng | 5983bdb | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1338 | return i; |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1339 | } |
| 1340 | |
Evan Cheng | 5983bdb | 2007-05-29 18:35:22 +0000 | [diff] [blame] | 1341 | return -1; |
Evan Cheng | 4d728b0 | 2007-05-15 01:26:09 +0000 | [diff] [blame] | 1342 | } |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 1343 | |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1344 | // MachineOperand::TiedTo is 4 bits wide. |
| 1345 | const unsigned TiedMax = 15; |
| 1346 | |
| 1347 | /// tieOperands - Mark operands at DefIdx and UseIdx as tied to each other. |
| 1348 | /// |
| 1349 | /// Use and def operands can be tied together, indicated by a non-zero TiedTo |
| 1350 | /// field. TiedTo can have these values: |
| 1351 | /// |
| 1352 | /// 0: Operand is not tied to anything. |
| 1353 | /// 1 to TiedMax-1: Tied to getOperand(TiedTo-1). |
| 1354 | /// TiedMax: Tied to an operand >= TiedMax-1. |
| 1355 | /// |
| 1356 | /// The tied def must be one of the first TiedMax operands on a normal |
| 1357 | /// instruction. INLINEASM instructions allow more tied defs. |
| 1358 | /// |
Jakob Stoklund Olesen | 5c8eda0 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1359 | void MachineInstr::tieOperands(unsigned DefIdx, unsigned UseIdx) { |
Jakob Stoklund Olesen | 5c8eda0 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1360 | MachineOperand &DefMO = getOperand(DefIdx); |
| 1361 | MachineOperand &UseMO = getOperand(UseIdx); |
| 1362 | assert(DefMO.isDef() && "DefIdx must be a def operand"); |
| 1363 | assert(UseMO.isUse() && "UseIdx must be a use operand"); |
| 1364 | assert(!DefMO.isTied() && "Def is already tied to another use"); |
| 1365 | assert(!UseMO.isTied() && "Use is already tied to another def"); |
| 1366 | |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1367 | if (DefIdx < TiedMax) |
| 1368 | UseMO.TiedTo = DefIdx + 1; |
| 1369 | else { |
| 1370 | // Inline asm can use the group descriptors to find tied operands, but on |
| 1371 | // normal instruction, the tied def must be within the first TiedMax |
| 1372 | // operands. |
| 1373 | assert(isInlineAsm() && "DefIdx out of range"); |
| 1374 | UseMO.TiedTo = TiedMax; |
| 1375 | } |
| 1376 | |
| 1377 | // UseIdx can be out of range, we'll search for it in findTiedOperandIdx(). |
| 1378 | DefMO.TiedTo = std::min(UseIdx + 1, TiedMax); |
Jakob Stoklund Olesen | 5c8eda0 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1381 | /// Given the index of a tied register operand, find the operand it is tied to. |
| 1382 | /// Defs are tied to uses and vice versa. Returns the index of the tied operand |
| 1383 | /// which must exist. |
| 1384 | unsigned MachineInstr::findTiedOperandIdx(unsigned OpIdx) const { |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1385 | const MachineOperand &MO = getOperand(OpIdx); |
| 1386 | assert(MO.isTied() && "Operand isn't tied"); |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1387 | |
Jakob Stoklund Olesen | 0a09da8 | 2012-09-04 18:36:28 +0000 | [diff] [blame] | 1388 | // Normally TiedTo is in range. |
| 1389 | if (MO.TiedTo < TiedMax) |
| 1390 | return MO.TiedTo - 1; |
| 1391 | |
| 1392 | // Uses on normal instructions can be out of range. |
| 1393 | if (!isInlineAsm()) { |
| 1394 | // Normal tied defs must be in the 0..TiedMax-1 range. |
| 1395 | if (MO.isUse()) |
| 1396 | return TiedMax - 1; |
| 1397 | // MO is a def. Search for the tied use. |
| 1398 | for (unsigned i = TiedMax - 1, e = getNumOperands(); i != e; ++i) { |
| 1399 | const MachineOperand &UseMO = getOperand(i); |
| 1400 | if (UseMO.isReg() && UseMO.isUse() && UseMO.TiedTo == OpIdx + 1) |
| 1401 | return i; |
| 1402 | } |
| 1403 | llvm_unreachable("Can't find tied use"); |
| 1404 | } |
| 1405 | |
| 1406 | // Now deal with inline asm by parsing the operand group descriptor flags. |
| 1407 | // Find the beginning of each operand group. |
| 1408 | SmallVector<unsigned, 8> GroupIdx; |
| 1409 | unsigned OpIdxGroup = ~0u; |
| 1410 | unsigned NumOps; |
| 1411 | for (unsigned i = InlineAsm::MIOp_FirstOperand, e = getNumOperands(); i < e; |
| 1412 | i += NumOps) { |
| 1413 | const MachineOperand &FlagMO = getOperand(i); |
| 1414 | assert(FlagMO.isImm() && "Invalid tied operand on inline asm"); |
| 1415 | unsigned CurGroup = GroupIdx.size(); |
| 1416 | GroupIdx.push_back(i); |
| 1417 | NumOps = 1 + InlineAsm::getNumOperandRegisters(FlagMO.getImm()); |
| 1418 | // OpIdx belongs to this operand group. |
| 1419 | if (OpIdx > i && OpIdx < i + NumOps) |
| 1420 | OpIdxGroup = CurGroup; |
| 1421 | unsigned TiedGroup; |
| 1422 | if (!InlineAsm::isUseOperandTiedToDef(FlagMO.getImm(), TiedGroup)) |
| 1423 | continue; |
| 1424 | // Operands in this group are tied to operands in TiedGroup which must be |
| 1425 | // earlier. Find the number of operands between the two groups. |
| 1426 | unsigned Delta = i - GroupIdx[TiedGroup]; |
| 1427 | |
| 1428 | // OpIdx is a use tied to TiedGroup. |
| 1429 | if (OpIdxGroup == CurGroup) |
| 1430 | return OpIdx - Delta; |
| 1431 | |
| 1432 | // OpIdx is a def tied to this use group. |
| 1433 | if (OpIdxGroup == TiedGroup) |
| 1434 | return OpIdx + Delta; |
| 1435 | } |
| 1436 | llvm_unreachable("Invalid tied operand on inline asm"); |
Jakob Stoklund Olesen | 2b16664 | 2012-08-29 00:37:58 +0000 | [diff] [blame] | 1437 | } |
| 1438 | |
Dan Gohman | c90f51c | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1439 | /// clearKillInfo - Clears kill flags on all operands. |
| 1440 | /// |
| 1441 | void MachineInstr::clearKillInfo() { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1442 | for (MachineOperand &MO : operands()) { |
Dan Gohman | c90f51c | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1443 | if (MO.isReg() && MO.isUse()) |
| 1444 | MO.setIsKill(false); |
| 1445 | } |
| 1446 | } |
| 1447 | |
Jakob Stoklund Olesen | a8ad977 | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1448 | void MachineInstr::substituteRegister(unsigned FromReg, |
| 1449 | unsigned ToReg, |
| 1450 | unsigned SubIdx, |
| 1451 | const TargetRegisterInfo &RegInfo) { |
| 1452 | if (TargetRegisterInfo::isPhysicalRegister(ToReg)) { |
| 1453 | if (SubIdx) |
| 1454 | ToReg = RegInfo.getSubReg(ToReg, SubIdx); |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1455 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | a8ad977 | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1456 | if (!MO.isReg() || MO.getReg() != FromReg) |
| 1457 | continue; |
| 1458 | MO.substPhysReg(ToReg, RegInfo); |
| 1459 | } |
| 1460 | } else { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1461 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | a8ad977 | 2010-06-02 22:47:25 +0000 | [diff] [blame] | 1462 | if (!MO.isReg() || MO.getReg() != FromReg) |
| 1463 | continue; |
| 1464 | MO.substVirtReg(ToReg, SubIdx, RegInfo); |
| 1465 | } |
| 1466 | } |
| 1467 | } |
| 1468 | |
Evan Cheng | 7d98a48 | 2008-07-03 09:09:37 +0000 | [diff] [blame] | 1469 | /// isSafeToMove - Return true if it is safe to move this instruction. If |
| 1470 | /// SawStore is set to true, it means that there is a store (or call) between |
| 1471 | /// the instruction's location and its intended destination. |
Matthias Braun | 07066cc | 2015-05-19 21:22:20 +0000 | [diff] [blame] | 1472 | bool MachineInstr::isSafeToMove(AliasAnalysis *AA, bool &SawStore) const { |
Evan Cheng | 399e110 | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1473 | // Ignore stuff that we obviously can't move. |
Jakob Stoklund Olesen | 813a109 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1474 | // |
| 1475 | // Treat volatile loads as stores. This is not strictly necessary for |
Jakob Stoklund Olesen | d92e2bc | 2012-09-04 18:44:43 +0000 | [diff] [blame] | 1476 | // volatiles, but it is required for atomic loads. It is not allowed to move |
Jakob Stoklund Olesen | 813a109 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1477 | // a load across an atomic load with Ordering > Monotonic. |
| 1478 | if (mayStore() || isCall() || |
Jakob Stoklund Olesen | cea3e77 | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1479 | (mayLoad() && hasOrderedMemoryRef())) { |
Evan Cheng | 399e110 | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1480 | SawStore = true; |
| 1481 | return false; |
| 1482 | } |
Evan Cheng | 0638c20 | 2011-01-07 21:08:26 +0000 | [diff] [blame] | 1483 | |
Rafael Espindola | b1f25f1 | 2014-03-07 06:08:31 +0000 | [diff] [blame] | 1484 | if (isPosition() || isDebugValue() || isTerminator() || |
| 1485 | hasUnmodeledSideEffects()) |
Evan Cheng | 399e110 | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1486 | return false; |
| 1487 | |
| 1488 | // See if this instruction does a load. If so, we have to guarantee that the |
| 1489 | // loaded value doesn't change between the load and the its intended |
| 1490 | // destination. The check for isInvariantLoad gives the targe the chance to |
| 1491 | // classify the load as always returning a constant, e.g. a constant pool |
| 1492 | // load. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1493 | if (mayLoad() && !isInvariantLoad(AA)) |
Evan Cheng | 399e110 | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1494 | // Otherwise, this is a real load. If there is a store between the load and |
Jakob Stoklund Olesen | 813a109 | 2012-08-29 20:48:45 +0000 | [diff] [blame] | 1495 | // end of block, we can't move it. |
| 1496 | return !SawStore; |
Dan Gohman | 7c59ed6 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1497 | |
Evan Cheng | 399e110 | 2008-03-13 00:44:09 +0000 | [diff] [blame] | 1498 | return true; |
| 1499 | } |
| 1500 | |
Jakob Stoklund Olesen | cea3e77 | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1501 | /// hasOrderedMemoryRef - Return true if this instruction may have an ordered |
| 1502 | /// or volatile memory reference, or if the information describing the memory |
| 1503 | /// reference is not available. Return false if it is known to have no ordered |
| 1504 | /// memory references. |
| 1505 | bool MachineInstr::hasOrderedMemoryRef() const { |
Dan Gohman | 7c59ed6 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1506 | // An instruction known never to access memory won't have a volatile access. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1507 | if (!mayStore() && |
| 1508 | !mayLoad() && |
| 1509 | !isCall() && |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1510 | !hasUnmodeledSideEffects()) |
Dan Gohman | 7c59ed6 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1511 | return false; |
| 1512 | |
| 1513 | // Otherwise, if the instruction has no memory reference information, |
| 1514 | // conservatively assume it wasn't preserved. |
| 1515 | if (memoperands_empty()) |
| 1516 | return true; |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 1517 | |
Jakob Stoklund Olesen | cea3e77 | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1518 | // Check the memory reference information for ordered references. |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 1519 | for (mmo_iterator I = memoperands_begin(), E = memoperands_end(); I != E; ++I) |
Jakob Stoklund Olesen | cea3e77 | 2012-08-29 21:19:21 +0000 | [diff] [blame] | 1520 | if (!(*I)->isUnordered()) |
Dan Gohman | 7c59ed6 | 2008-09-24 00:06:15 +0000 | [diff] [blame] | 1521 | return true; |
| 1522 | |
| 1523 | return false; |
| 1524 | } |
| 1525 | |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1526 | /// isInvariantLoad - Return true if this instruction is loading from a |
| 1527 | /// location whose value is invariant across the function. For example, |
Dan Gohman | 4a61882 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 1528 | /// loading a value from the constant pool or from the argument area |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1529 | /// of a function if it does not change. This should only return true of |
| 1530 | /// *all* loads the instruction does are invariant (if it does multiple loads). |
| 1531 | bool MachineInstr::isInvariantLoad(AliasAnalysis *AA) const { |
| 1532 | // If the instruction doesn't load at all, it isn't an invariant load. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1533 | if (!mayLoad()) |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1534 | return false; |
| 1535 | |
| 1536 | // If the instruction has lost its memoperands, conservatively assume that |
| 1537 | // it may not be an invariant load. |
| 1538 | if (memoperands_empty()) |
| 1539 | return false; |
| 1540 | |
| 1541 | const MachineFrameInfo *MFI = getParent()->getParent()->getFrameInfo(); |
| 1542 | |
| 1543 | for (mmo_iterator I = memoperands_begin(), |
| 1544 | E = memoperands_end(); I != E; ++I) { |
| 1545 | if ((*I)->isVolatile()) return false; |
| 1546 | if ((*I)->isStore()) return false; |
Pete Cooper | 82cd9e8 | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 1547 | if ((*I)->isInvariant()) return true; |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1548 | |
Nick Lewycky | aad475b | 2014-04-15 07:22:52 +0000 | [diff] [blame] | 1549 | |
| 1550 | // A load from a constant PseudoSourceValue is invariant. |
| 1551 | if (const PseudoSourceValue *PSV = (*I)->getPseudoValue()) |
| 1552 | if (PSV->isConstant(MFI)) |
| 1553 | continue; |
| 1554 | |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1555 | if (const Value *V = (*I)->getValue()) { |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1556 | // If we have an AliasAnalysis, ask it whether the memory is constant. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 1557 | if (AA && |
| 1558 | AA->pointsToConstantMemory( |
| 1559 | MemoryLocation(V, (*I)->getSize(), (*I)->getAAInfo()))) |
Dan Gohman | be8137b | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 1560 | continue; |
| 1561 | } |
| 1562 | |
| 1563 | // Otherwise assume conservatively. |
| 1564 | return false; |
| 1565 | } |
| 1566 | |
| 1567 | // Everything checks out. |
| 1568 | return true; |
| 1569 | } |
| 1570 | |
Evan Cheng | 7145382 | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1571 | /// isConstantValuePHI - If the specified instruction is a PHI that always |
| 1572 | /// merges together the same virtual register, return the register, otherwise |
| 1573 | /// return 0. |
| 1574 | unsigned MachineInstr::isConstantValuePHI() const { |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1575 | if (!isPHI()) |
Evan Cheng | 7145382 | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1576 | return 0; |
Evan Cheng | 5c668a2 | 2009-12-07 23:10:34 +0000 | [diff] [blame] | 1577 | assert(getNumOperands() >= 3 && |
| 1578 | "It's illegal to have a PHI without source operands"); |
Evan Cheng | 7145382 | 2009-12-03 02:31:43 +0000 | [diff] [blame] | 1579 | |
| 1580 | unsigned Reg = getOperand(1).getReg(); |
| 1581 | for (unsigned i = 3, e = getNumOperands(); i < e; i += 2) |
| 1582 | if (getOperand(i).getReg() != Reg) |
| 1583 | return 0; |
| 1584 | return Reg; |
| 1585 | } |
| 1586 | |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1587 | bool MachineInstr::hasUnmodeledSideEffects() const { |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1588 | if (hasProperty(MCID::UnmodeledSideEffects)) |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1589 | return true; |
| 1590 | if (isInlineAsm()) { |
| 1591 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 1592 | if (ExtraInfo & InlineAsm::Extra_HasSideEffects) |
| 1593 | return true; |
| 1594 | } |
| 1595 | |
| 1596 | return false; |
| 1597 | } |
| 1598 | |
Michael Kuperstein | bc7f99a | 2015-08-12 10:14:58 +0000 | [diff] [blame] | 1599 | bool MachineInstr::isLoadFoldBarrier() const { |
| 1600 | return mayStore() || isCall() || hasUnmodeledSideEffects(); |
| 1601 | } |
| 1602 | |
Evan Cheng | b083c47 | 2010-04-08 20:02:37 +0000 | [diff] [blame] | 1603 | /// allDefsAreDead - Return true if all the defs of this instruction are dead. |
| 1604 | /// |
| 1605 | bool MachineInstr::allDefsAreDead() const { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1606 | for (const MachineOperand &MO : operands()) { |
Evan Cheng | b083c47 | 2010-04-08 20:02:37 +0000 | [diff] [blame] | 1607 | if (!MO.isReg() || MO.isUse()) |
| 1608 | continue; |
| 1609 | if (!MO.isDead()) |
| 1610 | return false; |
| 1611 | } |
| 1612 | return true; |
| 1613 | } |
| 1614 | |
Evan Cheng | 21eedfb | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1615 | /// copyImplicitOps - Copy implicit register operands from specified |
| 1616 | /// instruction to this instruction. |
Jakob Stoklund Olesen | 33f5d14 | 2012-12-20 22:54:02 +0000 | [diff] [blame] | 1617 | void MachineInstr::copyImplicitOps(MachineFunction &MF, |
| 1618 | const MachineInstr *MI) { |
Evan Cheng | 21eedfb | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1619 | for (unsigned i = MI->getDesc().getNumOperands(), e = MI->getNumOperands(); |
| 1620 | i != e; ++i) { |
| 1621 | const MachineOperand &MO = MI->getOperand(i); |
Lang Hames | 7c8189c | 2014-03-17 01:22:54 +0000 | [diff] [blame] | 1622 | if ((MO.isReg() && MO.isImplicit()) || MO.isRegMask()) |
Jakob Stoklund Olesen | 33f5d14 | 2012-12-20 22:54:02 +0000 | [diff] [blame] | 1623 | addOperand(MF, MO); |
Evan Cheng | 21eedfb | 2010-10-22 21:49:09 +0000 | [diff] [blame] | 1624 | } |
| 1625 | } |
| 1626 | |
Yaron Keren | eb2a254 | 2016-01-29 20:50:44 +0000 | [diff] [blame] | 1627 | LLVM_DUMP_METHOD void MachineInstr::dump() const { |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 1628 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
David Greene | 29388d6 | 2010-01-04 23:48:20 +0000 | [diff] [blame] | 1629 | dbgs() << " " << *this; |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 1630 | #endif |
Mon P Wang | dfcc1ff | 2008-10-10 01:43:55 +0000 | [diff] [blame] | 1631 | } |
| 1632 | |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1633 | void MachineInstr::print(raw_ostream &OS, bool SkipOpers) const { |
Duncan P. N. Exon Smith | c037452 | 2015-06-26 23:18:44 +0000 | [diff] [blame] | 1634 | const Module *M = nullptr; |
| 1635 | if (const MachineBasicBlock *MBB = getParent()) |
| 1636 | if (const MachineFunction *MF = MBB->getParent()) |
| 1637 | M = MF->getFunction()->getParent(); |
| 1638 | |
| 1639 | ModuleSlotTracker MST(M); |
| 1640 | print(OS, MST, SkipOpers); |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
| 1643 | void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST, |
| 1644 | bool SkipOpers) const { |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1645 | // We can be a bit tidier if we know the MachineFunction. |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1646 | const MachineFunction *MF = nullptr; |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1647 | const TargetRegisterInfo *TRI = nullptr; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1648 | const MachineRegisterInfo *MRI = nullptr; |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1649 | const TargetInstrInfo *TII = nullptr; |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1650 | if (const MachineBasicBlock *MBB = getParent()) { |
| 1651 | MF = MBB->getParent(); |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1652 | if (MF) { |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1653 | MRI = &MF->getRegInfo(); |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1654 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 1655 | TII = MF->getSubtarget().getInstrInfo(); |
| 1656 | } |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1657 | } |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1658 | |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1659 | // Save a list of virtual registers. |
| 1660 | SmallVector<unsigned, 8> VirtRegs; |
| 1661 | |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1662 | // Print explicitly defined operands on the left of an assignment syntax. |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1663 | unsigned StartOp = 0, e = getNumOperands(); |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1664 | for (; StartOp < e && getOperand(StartOp).isReg() && |
| 1665 | getOperand(StartOp).isDef() && |
| 1666 | !getOperand(StartOp).isImplicit(); |
| 1667 | ++StartOp) { |
| 1668 | if (StartOp != 0) OS << ", "; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1669 | getOperand(StartOp).print(OS, MST, TRI); |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1670 | unsigned Reg = getOperand(StartOp).getReg(); |
Quentin Colombet | 36ce1b0 | 2016-02-10 23:43:48 +0000 | [diff] [blame] | 1671 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1672 | VirtRegs.push_back(Reg); |
Quentin Colombet | 36ce1b0 | 2016-02-10 23:43:48 +0000 | [diff] [blame] | 1673 | #ifdef LLVM_BUILD_GLOBAL_ISEL |
| 1674 | unsigned Size; |
| 1675 | if (MRI && (Size = MRI->getSize(Reg))) { |
| 1676 | OS << '(' << Size << ')'; |
| 1677 | } |
| 1678 | #endif |
| 1679 | } |
Chris Lattner | ac6e974 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1680 | } |
Tanya Lattner | 23dbc81 | 2004-06-25 00:13:11 +0000 | [diff] [blame] | 1681 | |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1682 | if (StartOp != 0) |
| 1683 | OS << " = "; |
| 1684 | |
| 1685 | // Print the opcode name. |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1686 | if (TII) |
| 1687 | OS << TII->getName(getOpcode()); |
Benjamin Kramer | bf152d5 | 2012-02-10 13:18:44 +0000 | [diff] [blame] | 1688 | else |
| 1689 | OS << "UNKNOWN"; |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1690 | |
Quentin Colombet | 9855111 | 2016-02-11 18:22:37 +0000 | [diff] [blame] | 1691 | |
| 1692 | #ifdef LLVM_BUILD_GLOBAL_ISEL |
| 1693 | if (Ty) |
| 1694 | OS << ' ' << *Ty << ' '; |
| 1695 | #endif |
| 1696 | |
Andrew Trick | b36388a | 2013-01-25 07:45:25 +0000 | [diff] [blame] | 1697 | if (SkipOpers) |
| 1698 | return; |
| 1699 | |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1700 | // Print the rest of the operands. |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1701 | bool OmittedAnyCallClobbers = false; |
| 1702 | bool FirstOp = true; |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1703 | unsigned AsmDescOp = ~0u; |
| 1704 | unsigned AsmOpCount = 0; |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1705 | |
Jakob Stoklund Olesen | 2318d1e | 2011-09-29 00:40:51 +0000 | [diff] [blame] | 1706 | if (isInlineAsm() && e >= InlineAsm::MIOp_FirstOperand) { |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1707 | // Print asm string. |
| 1708 | OS << " "; |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1709 | getOperand(InlineAsm::MIOp_AsmString).print(OS, MST, TRI); |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1710 | |
Eric Christopher | 0cb6fd9 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 1711 | // Print HasSideEffects, MayLoad, MayStore, IsAlignStack |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1712 | unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm(); |
| 1713 | if (ExtraInfo & InlineAsm::Extra_HasSideEffects) |
| 1714 | OS << " [sideeffect]"; |
Eric Christopher | 0cb6fd9 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 1715 | if (ExtraInfo & InlineAsm::Extra_MayLoad) |
| 1716 | OS << " [mayload]"; |
| 1717 | if (ExtraInfo & InlineAsm::Extra_MayStore) |
| 1718 | OS << " [maystore]"; |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1719 | if (ExtraInfo & InlineAsm::Extra_IsAlignStack) |
| 1720 | OS << " [alignstack]"; |
Chad Rosier | cbd2a19 | 2012-09-05 22:17:43 +0000 | [diff] [blame] | 1721 | if (getInlineAsmDialect() == InlineAsm::AD_ATT) |
Chad Rosier | 994f404 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1722 | OS << " [attdialect]"; |
Chad Rosier | cbd2a19 | 2012-09-05 22:17:43 +0000 | [diff] [blame] | 1723 | if (getInlineAsmDialect() == InlineAsm::AD_Intel) |
Chad Rosier | 994f404 | 2012-09-05 21:00:58 +0000 | [diff] [blame] | 1724 | OS << " [inteldialect]"; |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1725 | |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1726 | StartOp = AsmDescOp = InlineAsm::MIOp_FirstOperand; |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 1727 | FirstOp = false; |
| 1728 | } |
| 1729 | |
Chris Lattner | ac6e974 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1730 | for (unsigned i = StartOp, e = getNumOperands(); i != e; ++i) { |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1731 | const MachineOperand &MO = getOperand(i); |
| 1732 | |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 1733 | if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1734 | VirtRegs.push_back(MO.getReg()); |
| 1735 | |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1736 | // Omit call-clobbered registers which aren't used anywhere. This makes |
| 1737 | // call instructions much less noisy on targets where calls clobber lots |
| 1738 | // of registers. Don't rely on MO.isDead() because we may be called before |
| 1739 | // LiveVariables is run, or we may be looking at a non-allocatable reg. |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1740 | if (MRI && isCall() && |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1741 | MO.isReg() && MO.isImplicit() && MO.isDef()) { |
| 1742 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 1743 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1744 | if (MRI->use_empty(Reg)) { |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1745 | bool HasAliasLive = false; |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1746 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1747 | unsigned AliasReg = *AI; |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1748 | if (!MRI->use_empty(AliasReg)) { |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1749 | HasAliasLive = true; |
| 1750 | break; |
| 1751 | } |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1752 | } |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1753 | if (!HasAliasLive) { |
| 1754 | OmittedAnyCallClobbers = true; |
| 1755 | continue; |
| 1756 | } |
| 1757 | } |
| 1758 | } |
| 1759 | } |
| 1760 | |
| 1761 | if (FirstOp) FirstOp = false; else OS << ","; |
Chris Lattner | ac6e974 | 2002-10-30 01:55:38 +0000 | [diff] [blame] | 1762 | OS << " "; |
Jakob Stoklund Olesen | e8800b8 | 2010-01-19 22:08:34 +0000 | [diff] [blame] | 1763 | if (i < getDesc().NumOperands) { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1764 | const MCOperandInfo &MCOI = getDesc().OpInfo[i]; |
| 1765 | if (MCOI.isPredicate()) |
Jakob Stoklund Olesen | e8800b8 | 2010-01-19 22:08:34 +0000 | [diff] [blame] | 1766 | OS << "pred:"; |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 1767 | if (MCOI.isOptionalDef()) |
Jakob Stoklund Olesen | e8800b8 | 2010-01-19 22:08:34 +0000 | [diff] [blame] | 1768 | OS << "opt:"; |
| 1769 | } |
Evan Cheng | d4d1a51 | 2010-04-28 20:03:13 +0000 | [diff] [blame] | 1770 | if (isDebugValue() && MO.isMetadata()) { |
| 1771 | // Pretty print DBG_VALUE instructions. |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 1772 | auto *DIV = dyn_cast<DILocalVariable>(MO.getMetadata()); |
Duncan P. N. Exon Smith | 7348dda | 2015-04-14 02:22:36 +0000 | [diff] [blame] | 1773 | if (DIV && !DIV->getName().empty()) |
| 1774 | OS << "!\"" << DIV->getName() << '\"'; |
Evan Cheng | d4d1a51 | 2010-04-28 20:03:13 +0000 | [diff] [blame] | 1775 | else |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1776 | MO.print(OS, MST, TRI); |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1777 | } else if (TRI && (isInsertSubreg() || isRegSequence()) && MO.isImm()) { |
| 1778 | OS << TRI->getSubRegIndexName(MO.getImm()); |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1779 | } else if (i == AsmDescOp && MO.isImm()) { |
| 1780 | // Pretty print the inline asm operand descriptor. |
| 1781 | OS << '$' << AsmOpCount++; |
| 1782 | unsigned Flag = MO.getImm(); |
| 1783 | switch (InlineAsm::getKind(Flag)) { |
Jakob Stoklund Olesen | 24abd9d | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1784 | case InlineAsm::Kind_RegUse: OS << ":[reguse"; break; |
| 1785 | case InlineAsm::Kind_RegDef: OS << ":[regdef"; break; |
| 1786 | case InlineAsm::Kind_RegDefEarlyClobber: OS << ":[regdef-ec"; break; |
| 1787 | case InlineAsm::Kind_Clobber: OS << ":[clobber"; break; |
| 1788 | case InlineAsm::Kind_Imm: OS << ":[imm"; break; |
| 1789 | case InlineAsm::Kind_Mem: OS << ":[mem"; break; |
| 1790 | default: OS << ":[??" << InlineAsm::getKind(Flag); break; |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1791 | } |
| 1792 | |
Jakob Stoklund Olesen | 24abd9d | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1793 | unsigned RCID = 0; |
Nick Lewycky | 8488225 | 2011-10-13 00:54:59 +0000 | [diff] [blame] | 1794 | if (InlineAsm::hasRegClassConstraint(Flag, RCID)) { |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1795 | if (TRI) { |
| 1796 | OS << ':' << TRI->getRegClassName(TRI->getRegClass(RCID)); |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1797 | } else |
Jakob Stoklund Olesen | 24abd9d | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1798 | OS << ":RC" << RCID; |
Nick Lewycky | 8488225 | 2011-10-13 00:54:59 +0000 | [diff] [blame] | 1799 | } |
Jakob Stoklund Olesen | 24abd9d | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1800 | |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1801 | unsigned TiedTo = 0; |
| 1802 | if (InlineAsm::isUseOperandTiedToDef(Flag, TiedTo)) |
Jakob Stoklund Olesen | 24abd9d | 2011-10-12 23:37:29 +0000 | [diff] [blame] | 1803 | OS << " tiedto:$" << TiedTo; |
| 1804 | |
| 1805 | OS << ']'; |
Jakob Stoklund Olesen | 6b356b1 | 2011-06-27 04:08:29 +0000 | [diff] [blame] | 1806 | |
| 1807 | // Compute the index of the next operand descriptor. |
| 1808 | AsmDescOp += 1 + InlineAsm::getNumOperandRegisters(Flag); |
Evan Cheng | d4d1a51 | 2010-04-28 20:03:13 +0000 | [diff] [blame] | 1809 | } else |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1810 | MO.print(OS, MST, TRI); |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | // Briefly indicate whether any call clobbers were omitted. |
| 1814 | if (OmittedAnyCallClobbers) { |
Bill Wendling | ec030f2 | 2009-12-25 13:45:50 +0000 | [diff] [blame] | 1815 | if (!FirstOp) OS << ","; |
Dan Gohman | 2745d19 | 2009-11-09 19:38:45 +0000 | [diff] [blame] | 1816 | OS << " ..."; |
Chris Lattner | 214808f | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 1817 | } |
Misha Brukman | 835702a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 1818 | |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1819 | bool HaveSemi = false; |
Michael Kuperstein | 098cd9f | 2015-09-16 11:18:25 +0000 | [diff] [blame] | 1820 | const unsigned PrintableFlags = FrameSetup | FrameDestroy; |
Jakob Stoklund Olesen | 6922e9c | 2013-01-09 18:35:09 +0000 | [diff] [blame] | 1821 | if (Flags & PrintableFlags) { |
Yaron Keren | c47c6ac | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1822 | if (!HaveSemi) { |
| 1823 | OS << ";"; |
| 1824 | HaveSemi = true; |
| 1825 | } |
Anton Korobeynikov | 65cff414 | 2011-03-05 18:43:04 +0000 | [diff] [blame] | 1826 | OS << " flags: "; |
| 1827 | |
| 1828 | if (Flags & FrameSetup) |
| 1829 | OS << "FrameSetup"; |
Michael Kuperstein | 098cd9f | 2015-09-16 11:18:25 +0000 | [diff] [blame] | 1830 | |
| 1831 | if (Flags & FrameDestroy) |
| 1832 | OS << "FrameDestroy"; |
Anton Korobeynikov | 65cff414 | 2011-03-05 18:43:04 +0000 | [diff] [blame] | 1833 | } |
| 1834 | |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1835 | if (!memoperands_empty()) { |
Yaron Keren | c47c6ac | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1836 | if (!HaveSemi) { |
| 1837 | OS << ";"; |
| 1838 | HaveSemi = true; |
| 1839 | } |
Dan Gohman | 34341e6 | 2009-10-31 20:19:03 +0000 | [diff] [blame] | 1840 | |
| 1841 | OS << " mem:"; |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 1842 | for (mmo_iterator i = memoperands_begin(), e = memoperands_end(); |
| 1843 | i != e; ++i) { |
Duncan P. N. Exon Smith | f48e982 | 2015-06-26 22:06:47 +0000 | [diff] [blame] | 1844 | (*i)->print(OS, MST); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1845 | if (std::next(i) != e) |
Dan Gohman | c0353bf | 2009-09-23 01:33:16 +0000 | [diff] [blame] | 1846 | OS << " "; |
Dan Gohman | 2d489b5 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1847 | } |
| 1848 | } |
| 1849 | |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1850 | // Print the regclass of any virtual registers encountered. |
| 1851 | if (MRI && !VirtRegs.empty()) { |
Yaron Keren | c47c6ac | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1852 | if (!HaveSemi) { |
| 1853 | OS << ";"; |
| 1854 | HaveSemi = true; |
| 1855 | } |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1856 | for (unsigned i = 0; i != VirtRegs.size(); ++i) { |
| 1857 | const TargetRegisterClass *RC = MRI->getRegClass(VirtRegs[i]); |
Quentin Colombet | e1494c3 | 2016-02-11 00:19:17 +0000 | [diff] [blame] | 1858 | #ifdef LLVM_BUILD_GLOBAL_ISEL |
| 1859 | // Generic virtual registers do not have register classes. |
| 1860 | if (!RC) |
| 1861 | continue; |
| 1862 | #endif |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 1863 | OS << " " << TRI->getRegClassName(RC) |
Craig Topper | cf0444b | 2014-11-17 05:50:14 +0000 | [diff] [blame] | 1864 | << ':' << PrintReg(VirtRegs[i]); |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1865 | for (unsigned j = i+1; j != VirtRegs.size();) { |
| 1866 | if (MRI->getRegClass(VirtRegs[j]) != RC) { |
| 1867 | ++j; |
| 1868 | continue; |
| 1869 | } |
| 1870 | if (VirtRegs[i] != VirtRegs[j]) |
Jakob Stoklund Olesen | 1331a15 | 2011-01-09 03:05:53 +0000 | [diff] [blame] | 1871 | OS << "," << PrintReg(VirtRegs[j]); |
Jakob Stoklund Olesen | 0ff2c11 | 2010-07-28 18:35:46 +0000 | [diff] [blame] | 1872 | VirtRegs.erase(VirtRegs.begin()+j); |
| 1873 | } |
| 1874 | } |
| 1875 | } |
| 1876 | |
Anton Korobeynikov | 65cff414 | 2011-03-05 18:43:04 +0000 | [diff] [blame] | 1877 | // Print debug location information. |
Duncan P. N. Exon Smith | c5bd3e0 | 2015-04-03 16:23:04 +0000 | [diff] [blame] | 1878 | if (isDebugValue() && getOperand(e - 2).isMetadata()) { |
Yaron Keren | c47c6ac | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1879 | if (!HaveSemi) |
| 1880 | OS << ";"; |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 1881 | auto *DV = cast<DILocalVariable>(getOperand(e - 2).getMetadata()); |
Duncan P. N. Exon Smith | 7348dda | 2015-04-14 02:22:36 +0000 | [diff] [blame] | 1882 | OS << " line no:" << DV->getLine(); |
Duncan P. N. Exon Smith | 62e0f45 | 2015-04-15 22:29:27 +0000 | [diff] [blame] | 1883 | if (auto *InlinedAt = debugLoc->getInlinedAt()) { |
Duncan P. N. Exon Smith | 9dffcd0 | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 1884 | DebugLoc InlinedAtDL(InlinedAt); |
| 1885 | if (InlinedAtDL && MF) { |
Devang Patel | d61b1d5 | 2011-08-04 20:44:26 +0000 | [diff] [blame] | 1886 | OS << " inlined @[ "; |
NAKAMURA Takumi | 0a7d0ad | 2015-09-22 11:15:07 +0000 | [diff] [blame] | 1887 | InlinedAtDL.print(OS); |
Devang Patel | d61b1d5 | 2011-08-04 20:44:26 +0000 | [diff] [blame] | 1888 | OS << " ]"; |
| 1889 | } |
| 1890 | } |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 1891 | if (isIndirectDebugValue()) |
| 1892 | OS << " indirect"; |
Duncan P. N. Exon Smith | 9dffcd0 | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 1893 | } else if (debugLoc && MF) { |
Yaron Keren | c47c6ac | 2016-01-02 13:40:36 +0000 | [diff] [blame] | 1894 | if (!HaveSemi) |
| 1895 | OS << ";"; |
Dan Gohman | 2e3f187 | 2009-11-23 21:29:08 +0000 | [diff] [blame] | 1896 | OS << " dbg:"; |
Eric Christopher | b9f0009 | 2015-02-26 23:32:17 +0000 | [diff] [blame] | 1897 | debugLoc.print(OS); |
Bill Wendling | 1a0a3d0 | 2009-02-19 21:44:55 +0000 | [diff] [blame] | 1898 | } |
| 1899 | |
Anton Korobeynikov | 65cff414 | 2011-03-05 18:43:04 +0000 | [diff] [blame] | 1900 | OS << '\n'; |
Chris Lattner | 214808f | 2002-10-30 00:48:05 +0000 | [diff] [blame] | 1901 | } |
| 1902 | |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1903 | bool MachineInstr::addRegisterKilled(unsigned IncomingReg, |
Dan Gohman | 3a4be0f | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1904 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1905 | bool AddIfNotFound) { |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1906 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(IncomingReg); |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1907 | bool hasAliases = isPhysReg && |
| 1908 | MCRegAliasIterator(IncomingReg, RegInfo, false).isValid(); |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1909 | bool Found = false; |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1910 | SmallVector<unsigned,4> DeadOps; |
Bill Wendling | 7921ad0 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1911 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 1912 | MachineOperand &MO = getOperand(i); |
Jakob Stoklund Olesen | f465f06 | 2009-08-04 20:09:25 +0000 | [diff] [blame] | 1913 | if (!MO.isReg() || !MO.isUse() || MO.isUndef()) |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1914 | continue; |
| 1915 | unsigned Reg = MO.getReg(); |
| 1916 | if (!Reg) |
| 1917 | continue; |
Bill Wendling | 7921ad0 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1918 | |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1919 | if (Reg == IncomingReg) { |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1920 | if (!Found) { |
| 1921 | if (MO.isKill()) |
| 1922 | // The register is already marked kill. |
| 1923 | return true; |
Jakob Stoklund Olesen | c59cd9b | 2009-08-02 19:13:03 +0000 | [diff] [blame] | 1924 | if (isPhysReg && isRegTiedToDefOperand(i)) |
| 1925 | // Two-address uses of physregs must not be marked kill. |
| 1926 | return true; |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1927 | MO.setIsKill(); |
| 1928 | Found = true; |
| 1929 | } |
| 1930 | } else if (hasAliases && MO.isKill() && |
| 1931 | TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1932 | // A super-register kill already exists. |
| 1933 | if (RegInfo->isSuperRegister(IncomingReg, Reg)) |
Dan Gohman | b261292 | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 1934 | return true; |
| 1935 | if (RegInfo->isSubRegister(IncomingReg, Reg)) |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1936 | DeadOps.push_back(i); |
Bill Wendling | 7921ad0 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1937 | } |
| 1938 | } |
| 1939 | |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1940 | // Trim unneeded kill operands. |
| 1941 | while (!DeadOps.empty()) { |
| 1942 | unsigned OpIdx = DeadOps.back(); |
| 1943 | if (getOperand(OpIdx).isImplicit()) |
| 1944 | RemoveOperand(OpIdx); |
| 1945 | else |
| 1946 | getOperand(OpIdx).setIsKill(false); |
| 1947 | DeadOps.pop_back(); |
| 1948 | } |
| 1949 | |
Bill Wendling | 7921ad0 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1950 | // If not found, this means an alias of one of the operands is killed. Add a |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1951 | // new implicit operand if required. |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1952 | if (!Found && AddIfNotFound) { |
Bill Wendling | 7921ad0 | 2008-03-03 22:14:33 +0000 | [diff] [blame] | 1953 | addOperand(MachineOperand::CreateReg(IncomingReg, |
| 1954 | false /*IsDef*/, |
| 1955 | true /*IsImp*/, |
| 1956 | true /*IsKill*/)); |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1957 | return true; |
| 1958 | } |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1959 | return Found; |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1960 | } |
| 1961 | |
Jakob Stoklund Olesen | 8c139a5 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1962 | void MachineInstr::clearRegisterKills(unsigned Reg, |
| 1963 | const TargetRegisterInfo *RegInfo) { |
| 1964 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1965 | RegInfo = nullptr; |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 1966 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 8c139a5 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1967 | if (!MO.isReg() || !MO.isUse() || !MO.isKill()) |
| 1968 | continue; |
| 1969 | unsigned OpReg = MO.getReg(); |
Matthias Braun | aca625a | 2016-02-24 19:21:48 +0000 | [diff] [blame^] | 1970 | if ((RegInfo && RegInfo->regsOverlap(Reg, OpReg)) || Reg == OpReg) |
Jakob Stoklund Olesen | 8c139a5 | 2012-01-26 17:52:15 +0000 | [diff] [blame] | 1971 | MO.setIsKill(false); |
| 1972 | } |
| 1973 | } |
| 1974 | |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1975 | bool MachineInstr::addRegisterDead(unsigned Reg, |
Dan Gohman | 3a4be0f | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 1976 | const TargetRegisterInfo *RegInfo, |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1977 | bool AddIfNotFound) { |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1978 | bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(Reg); |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1979 | bool hasAliases = isPhysReg && |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1980 | MCRegAliasIterator(Reg, RegInfo, false).isValid(); |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1981 | bool Found = false; |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1982 | SmallVector<unsigned,4> DeadOps; |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 1983 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) { |
| 1984 | MachineOperand &MO = getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1985 | if (!MO.isReg() || !MO.isDef()) |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1986 | continue; |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1987 | unsigned MOReg = MO.getReg(); |
| 1988 | if (!MOReg) |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1989 | continue; |
| 1990 | |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1991 | if (MOReg == Reg) { |
Jakob Stoklund Olesen | 76ad3de | 2011-04-05 16:53:50 +0000 | [diff] [blame] | 1992 | MO.setIsDead(); |
| 1993 | Found = true; |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 1994 | } else if (hasAliases && MO.isDead() && |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1995 | TargetRegisterInfo::isPhysicalRegister(MOReg)) { |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 1996 | // There exists a super-register that's marked dead. |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1997 | if (RegInfo->isSuperRegister(Reg, MOReg)) |
Dan Gohman | b261292 | 2008-07-03 01:18:51 +0000 | [diff] [blame] | 1998 | return true; |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 1999 | if (RegInfo->isSubRegister(Reg, MOReg)) |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 2000 | DeadOps.push_back(i); |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 2001 | } |
| 2002 | } |
| 2003 | |
Evan Cheng | 6c17773 | 2008-04-16 09:41:59 +0000 | [diff] [blame] | 2004 | // Trim unneeded dead operands. |
| 2005 | while (!DeadOps.empty()) { |
| 2006 | unsigned OpIdx = DeadOps.back(); |
| 2007 | if (getOperand(OpIdx).isImplicit()) |
| 2008 | RemoveOperand(OpIdx); |
| 2009 | else |
| 2010 | getOperand(OpIdx).setIsDead(false); |
| 2011 | DeadOps.pop_back(); |
| 2012 | } |
| 2013 | |
Dan Gohman | c7367b4 | 2008-09-03 15:56:16 +0000 | [diff] [blame] | 2014 | // If not found, this means an alias of one of the operands is dead. Add a |
| 2015 | // new implicit operand if required. |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 2016 | if (Found || !AddIfNotFound) |
| 2017 | return Found; |
Jim Grosbach | dee9e8a | 2011-08-24 16:44:17 +0000 | [diff] [blame] | 2018 | |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 2019 | addOperand(MachineOperand::CreateReg(Reg, |
Chris Lattner | fd68280 | 2009-06-24 17:54:48 +0000 | [diff] [blame] | 2020 | true /*IsDef*/, |
| 2021 | true /*IsImp*/, |
| 2022 | false /*IsKill*/, |
| 2023 | true /*IsDead*/)); |
| 2024 | return true; |
Owen Anderson | 2a8a485 | 2008-01-24 01:10:07 +0000 | [diff] [blame] | 2025 | } |
Jakob Stoklund Olesen | 7725526 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 2026 | |
Matthias Braun | 26e7ea6 | 2015-02-04 19:35:16 +0000 | [diff] [blame] | 2027 | void MachineInstr::clearRegisterDeads(unsigned Reg) { |
| 2028 | for (MachineOperand &MO : operands()) { |
| 2029 | if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg) |
| 2030 | continue; |
| 2031 | MO.setIsDead(false); |
| 2032 | } |
| 2033 | } |
| 2034 | |
Matthias Braun | 2c98d0f | 2015-11-11 00:41:58 +0000 | [diff] [blame] | 2035 | void MachineInstr::setRegisterDefReadUndef(unsigned Reg, bool IsUndef) { |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 2036 | for (MachineOperand &MO : operands()) { |
| 2037 | if (!MO.isReg() || !MO.isDef() || MO.getReg() != Reg || MO.getSubReg() == 0) |
| 2038 | continue; |
Matthias Braun | 2c98d0f | 2015-11-11 00:41:58 +0000 | [diff] [blame] | 2039 | MO.setIsUndef(IsUndef); |
Matthias Braun | c1988f3 | 2015-01-21 22:55:13 +0000 | [diff] [blame] | 2040 | } |
| 2041 | } |
| 2042 | |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 2043 | void MachineInstr::addRegisterDefined(unsigned Reg, |
Jakob Stoklund Olesen | 7725526 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 2044 | const TargetRegisterInfo *RegInfo) { |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 2045 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 2046 | MachineOperand *MO = findRegisterDefOperand(Reg, false, RegInfo); |
Jakob Stoklund Olesen | 1f38010 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 2047 | if (MO) |
| 2048 | return; |
| 2049 | } else { |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 2050 | for (const MachineOperand &MO : operands()) { |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 2051 | if (MO.isReg() && MO.getReg() == Reg && MO.isDef() && |
Jakob Stoklund Olesen | 1f38010 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 2052 | MO.getSubReg() == 0) |
| 2053 | return; |
| 2054 | } |
| 2055 | } |
Matthias Braun | 1965bfa | 2013-10-10 21:28:38 +0000 | [diff] [blame] | 2056 | addOperand(MachineOperand::CreateReg(Reg, |
Jakob Stoklund Olesen | 1f38010 | 2010-05-21 16:32:16 +0000 | [diff] [blame] | 2057 | true /*IsDef*/, |
| 2058 | true /*IsImp*/)); |
Jakob Stoklund Olesen | 7725526 | 2010-01-06 00:29:28 +0000 | [diff] [blame] | 2059 | } |
Evan Cheng | 59d27fe | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 2060 | |
Jakob Stoklund Olesen | 4290be4 | 2012-02-03 20:43:39 +0000 | [diff] [blame] | 2061 | void MachineInstr::setPhysRegsDeadExcept(ArrayRef<unsigned> UsedRegs, |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 2062 | const TargetRegisterInfo &TRI) { |
Jakob Stoklund Olesen | 56fe2ed | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 2063 | bool HasRegMask = false; |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 2064 | for (MachineOperand &MO : operands()) { |
Jakob Stoklund Olesen | 56fe2ed | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 2065 | if (MO.isRegMask()) { |
| 2066 | HasRegMask = true; |
| 2067 | continue; |
| 2068 | } |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 2069 | if (!MO.isReg() || !MO.isDef()) continue; |
| 2070 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 2071 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 2072 | // If there are no uses, including partial uses, the def is dead. |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 2073 | if (std::none_of(UsedRegs.begin(), UsedRegs.end(), |
| 2074 | [&](unsigned Use) { return TRI.regsOverlap(Use, Reg); })) |
| 2075 | MO.setIsDead(); |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 2076 | } |
Jakob Stoklund Olesen | 56fe2ed | 2012-02-03 21:23:14 +0000 | [diff] [blame] | 2077 | |
| 2078 | // This is a call with a register mask operand. |
| 2079 | // Mask clobbers are always dead, so add defs for the non-dead defines. |
| 2080 | if (HasRegMask) |
| 2081 | for (ArrayRef<unsigned>::iterator I = UsedRegs.begin(), E = UsedRegs.end(); |
| 2082 | I != E; ++I) |
| 2083 | addRegisterDefined(*I, &TRI); |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 2084 | } |
| 2085 | |
Evan Cheng | 59d27fe | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 2086 | unsigned |
| 2087 | MachineInstrExpressionTrait::getHashValue(const MachineInstr* const &MI) { |
Chandler Carruth | 962152c | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 2088 | // Build up a buffer of hash code components. |
Chandler Carruth | 962152c | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 2089 | SmallVector<size_t, 8> HashComponents; |
| 2090 | HashComponents.reserve(MI->getNumOperands() + 1); |
| 2091 | HashComponents.push_back(MI->getOpcode()); |
Benjamin Kramer | 60c5bbf | 2015-02-21 17:08:08 +0000 | [diff] [blame] | 2092 | for (const MachineOperand &MO : MI->operands()) { |
Chandler Carruth | 264854f | 2012-07-05 11:06:22 +0000 | [diff] [blame] | 2093 | if (MO.isReg() && MO.isDef() && |
| 2094 | TargetRegisterInfo::isVirtualRegister(MO.getReg())) |
| 2095 | continue; // Skip virtual register defs. |
| 2096 | |
| 2097 | HashComponents.push_back(hash_value(MO)); |
Evan Cheng | 59d27fe | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 2098 | } |
Chandler Carruth | 962152c | 2012-03-07 09:39:46 +0000 | [diff] [blame] | 2099 | return hash_combine_range(HashComponents.begin(), HashComponents.end()); |
Evan Cheng | 59d27fe | 2010-03-03 23:37:30 +0000 | [diff] [blame] | 2100 | } |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 2101 | |
| 2102 | void MachineInstr::emitError(StringRef Msg) const { |
| 2103 | // Find the source location cookie. |
| 2104 | unsigned LocCookie = 0; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 2105 | const MDNode *LocMD = nullptr; |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 2106 | for (unsigned i = getNumOperands(); i != 0; --i) { |
| 2107 | if (getOperand(i-1).isMetadata() && |
| 2108 | (LocMD = getOperand(i-1).getMetadata()) && |
| 2109 | LocMD->getNumOperands() != 0) { |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 2110 | if (const ConstantInt *CI = |
| 2111 | mdconst::dyn_extract<ConstantInt>(LocMD->getOperand(0))) { |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 2112 | LocCookie = CI->getZExtValue(); |
| 2113 | break; |
| 2114 | } |
| 2115 | } |
| 2116 | } |
| 2117 | |
| 2118 | if (const MachineBasicBlock *MBB = getParent()) |
| 2119 | if (const MachineFunction *MF = MBB->getParent()) |
| 2120 | return MF->getMMI().getModule()->getContext().emitError(LocCookie, Msg); |
| 2121 | report_fatal_error(Msg); |
| 2122 | } |