Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 1 | //===- lib/CodeGen/MachineOperand.cpp -------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Francis Visoiu Mistrih | 3aa8eaa | 2017-11-28 19:23:39 +0000 | [diff] [blame] | 10 | /// \file Methods common to all machine operands. |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/CodeGen/MachineOperand.h" |
| 15 | #include "llvm/Analysis/Loads.h" |
| 16 | #include "llvm/CodeGen/MIRPrinter.h" |
Francis Visoiu Mistrih | b41dbbe | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/TargetInstrInfo.h" |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 21 | #include "llvm/IR/Constants.h" |
Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 22 | #include "llvm/IR/IRPrintingPasses.h" |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 23 | #include "llvm/IR/ModuleSlotTracker.h" |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetIntrinsicInfo.h" |
| 25 | #include "llvm/Target/TargetMachine.h" |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 26 | |
| 27 | using namespace llvm; |
| 28 | |
| 29 | static cl::opt<int> |
| 30 | PrintRegMaskNumRegs("print-regmask-num-regs", |
| 31 | cl::desc("Number of registers to limit to when " |
| 32 | "printing regmask operands in IR dumps. " |
| 33 | "unlimited = -1"), |
| 34 | cl::init(32), cl::Hidden); |
| 35 | |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 36 | static const MachineFunction *getMFIfAvailable(const MachineOperand &MO) { |
| 37 | if (const MachineInstr *MI = MO.getParent()) |
| 38 | if (const MachineBasicBlock *MBB = MI->getParent()) |
| 39 | if (const MachineFunction *MF = MBB->getParent()) |
| 40 | return MF; |
| 41 | return nullptr; |
| 42 | } |
| 43 | static MachineFunction *getMFIfAvailable(MachineOperand &MO) { |
| 44 | return const_cast<MachineFunction *>( |
| 45 | getMFIfAvailable(const_cast<const MachineOperand &>(MO))); |
| 46 | } |
| 47 | |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 48 | void MachineOperand::setReg(unsigned Reg) { |
| 49 | if (getReg() == Reg) |
| 50 | return; // No change. |
| 51 | |
| 52 | // Otherwise, we have to change the register. If this operand is embedded |
| 53 | // into a machine function, we need to update the old and new register's |
| 54 | // use/def lists. |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 55 | if (MachineFunction *MF = getMFIfAvailable(*this)) { |
| 56 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 57 | MRI.removeRegOperandFromUseList(this); |
| 58 | SmallContents.RegNo = Reg; |
| 59 | MRI.addRegOperandToUseList(this); |
| 60 | return; |
Francis Visoiu Mistrih | c2641d6 | 2017-12-06 11:57:53 +0000 | [diff] [blame] | 61 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 62 | |
| 63 | // Otherwise, just change the register, no problem. :) |
| 64 | SmallContents.RegNo = Reg; |
| 65 | } |
| 66 | |
| 67 | void MachineOperand::substVirtReg(unsigned Reg, unsigned SubIdx, |
| 68 | const TargetRegisterInfo &TRI) { |
| 69 | assert(TargetRegisterInfo::isVirtualRegister(Reg)); |
| 70 | if (SubIdx && getSubReg()) |
| 71 | SubIdx = TRI.composeSubRegIndices(SubIdx, getSubReg()); |
| 72 | setReg(Reg); |
| 73 | if (SubIdx) |
| 74 | setSubReg(SubIdx); |
| 75 | } |
| 76 | |
| 77 | void MachineOperand::substPhysReg(unsigned Reg, const TargetRegisterInfo &TRI) { |
| 78 | assert(TargetRegisterInfo::isPhysicalRegister(Reg)); |
| 79 | if (getSubReg()) { |
| 80 | Reg = TRI.getSubReg(Reg, getSubReg()); |
| 81 | // Note that getSubReg() may return 0 if the sub-register doesn't exist. |
| 82 | // That won't happen in legal code. |
| 83 | setSubReg(0); |
| 84 | if (isDef()) |
| 85 | setIsUndef(false); |
| 86 | } |
| 87 | setReg(Reg); |
| 88 | } |
| 89 | |
| 90 | /// Change a def to a use, or a use to a def. |
| 91 | void MachineOperand::setIsDef(bool Val) { |
| 92 | assert(isReg() && "Wrong MachineOperand accessor"); |
| 93 | assert((!Val || !isDebug()) && "Marking a debug operation as def"); |
| 94 | if (IsDef == Val) |
| 95 | return; |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 96 | assert(!IsDeadOrKill && "Changing def/use with dead/kill set not supported"); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 97 | // MRI may keep uses and defs in different list positions. |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 98 | if (MachineFunction *MF = getMFIfAvailable(*this)) { |
| 99 | MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 100 | MRI.removeRegOperandFromUseList(this); |
| 101 | IsDef = Val; |
| 102 | MRI.addRegOperandToUseList(this); |
| 103 | return; |
| 104 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 105 | IsDef = Val; |
| 106 | } |
| 107 | |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 108 | bool MachineOperand::isRenamable() const { |
| 109 | assert(isReg() && "Wrong MachineOperand accessor"); |
| 110 | assert(TargetRegisterInfo::isPhysicalRegister(getReg()) && |
| 111 | "isRenamable should only be checked on physical registers"); |
| 112 | return IsRenamable; |
| 113 | } |
| 114 | |
| 115 | void MachineOperand::setIsRenamable(bool Val) { |
| 116 | assert(isReg() && "Wrong MachineOperand accessor"); |
| 117 | assert(TargetRegisterInfo::isPhysicalRegister(getReg()) && |
| 118 | "setIsRenamable should only be called on physical registers"); |
| 119 | if (const MachineInstr *MI = getParent()) |
| 120 | if ((isDef() && MI->hasExtraDefRegAllocReq()) || |
| 121 | (isUse() && MI->hasExtraSrcRegAllocReq())) |
| 122 | assert(!Val && "isRenamable should be false for " |
| 123 | "hasExtraDefRegAllocReq/hasExtraSrcRegAllocReq opcodes"); |
| 124 | IsRenamable = Val; |
| 125 | } |
| 126 | |
| 127 | void MachineOperand::setIsRenamableIfNoExtraRegAllocReq() { |
| 128 | if (const MachineInstr *MI = getParent()) |
| 129 | if ((isDef() && MI->hasExtraDefRegAllocReq()) || |
| 130 | (isUse() && MI->hasExtraSrcRegAllocReq())) |
| 131 | return; |
| 132 | |
| 133 | setIsRenamable(true); |
| 134 | } |
| 135 | |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 136 | // If this operand is currently a register operand, and if this is in a |
| 137 | // function, deregister the operand from the register's use/def list. |
| 138 | void MachineOperand::removeRegFromUses() { |
| 139 | if (!isReg() || !isOnRegUseList()) |
| 140 | return; |
| 141 | |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 142 | if (MachineFunction *MF = getMFIfAvailable(*this)) |
| 143 | MF->getRegInfo().removeRegOperandFromUseList(this); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /// ChangeToImmediate - Replace this operand with a new immediate operand of |
| 147 | /// the specified value. If an operand is known to be an immediate already, |
| 148 | /// the setImm method should be used. |
| 149 | void MachineOperand::ChangeToImmediate(int64_t ImmVal) { |
| 150 | assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); |
| 151 | |
| 152 | removeRegFromUses(); |
| 153 | |
| 154 | OpKind = MO_Immediate; |
| 155 | Contents.ImmVal = ImmVal; |
| 156 | } |
| 157 | |
| 158 | void MachineOperand::ChangeToFPImmediate(const ConstantFP *FPImm) { |
| 159 | assert((!isReg() || !isTied()) && "Cannot change a tied operand into an imm"); |
| 160 | |
| 161 | removeRegFromUses(); |
| 162 | |
| 163 | OpKind = MO_FPImmediate; |
| 164 | Contents.CFP = FPImm; |
| 165 | } |
| 166 | |
| 167 | void MachineOperand::ChangeToES(const char *SymName, |
| 168 | unsigned char TargetFlags) { |
| 169 | assert((!isReg() || !isTied()) && |
| 170 | "Cannot change a tied operand into an external symbol"); |
| 171 | |
| 172 | removeRegFromUses(); |
| 173 | |
| 174 | OpKind = MO_ExternalSymbol; |
| 175 | Contents.OffsetedInfo.Val.SymbolName = SymName; |
| 176 | setOffset(0); // Offset is always 0. |
| 177 | setTargetFlags(TargetFlags); |
| 178 | } |
| 179 | |
| 180 | void MachineOperand::ChangeToMCSymbol(MCSymbol *Sym) { |
| 181 | assert((!isReg() || !isTied()) && |
| 182 | "Cannot change a tied operand into an MCSymbol"); |
| 183 | |
| 184 | removeRegFromUses(); |
| 185 | |
| 186 | OpKind = MO_MCSymbol; |
| 187 | Contents.Sym = Sym; |
| 188 | } |
| 189 | |
| 190 | void MachineOperand::ChangeToFrameIndex(int Idx) { |
| 191 | assert((!isReg() || !isTied()) && |
| 192 | "Cannot change a tied operand into a FrameIndex"); |
| 193 | |
| 194 | removeRegFromUses(); |
| 195 | |
| 196 | OpKind = MO_FrameIndex; |
| 197 | setIndex(Idx); |
| 198 | } |
| 199 | |
| 200 | void MachineOperand::ChangeToTargetIndex(unsigned Idx, int64_t Offset, |
| 201 | unsigned char TargetFlags) { |
| 202 | assert((!isReg() || !isTied()) && |
| 203 | "Cannot change a tied operand into a FrameIndex"); |
| 204 | |
| 205 | removeRegFromUses(); |
| 206 | |
| 207 | OpKind = MO_TargetIndex; |
| 208 | setIndex(Idx); |
| 209 | setOffset(Offset); |
| 210 | setTargetFlags(TargetFlags); |
| 211 | } |
| 212 | |
| 213 | /// ChangeToRegister - Replace this operand with a new register operand of |
| 214 | /// the specified value. If an operand is known to be an register already, |
| 215 | /// the setReg method should be used. |
| 216 | void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, |
| 217 | bool isKill, bool isDead, bool isUndef, |
| 218 | bool isDebug) { |
| 219 | MachineRegisterInfo *RegInfo = nullptr; |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 220 | if (MachineFunction *MF = getMFIfAvailable(*this)) |
| 221 | RegInfo = &MF->getRegInfo(); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 222 | // If this operand is already a register operand, remove it from the |
| 223 | // register's use/def lists. |
| 224 | bool WasReg = isReg(); |
| 225 | if (RegInfo && WasReg) |
| 226 | RegInfo->removeRegOperandFromUseList(this); |
| 227 | |
| 228 | // Change this to a register and set the reg#. |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 229 | assert(!(isDead && !isDef) && "Dead flag on non-def"); |
| 230 | assert(!(isKill && isDef) && "Kill flag on def"); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 231 | OpKind = MO_Register; |
| 232 | SmallContents.RegNo = Reg; |
| 233 | SubReg_TargetFlags = 0; |
| 234 | IsDef = isDef; |
| 235 | IsImp = isImp; |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 236 | IsDeadOrKill = isKill | isDead; |
| 237 | IsRenamable = false; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 238 | IsUndef = isUndef; |
| 239 | IsInternalRead = false; |
| 240 | IsEarlyClobber = false; |
| 241 | IsDebug = isDebug; |
| 242 | // Ensure isOnRegUseList() returns false. |
| 243 | Contents.Reg.Prev = nullptr; |
| 244 | // Preserve the tie when the operand was already a register. |
| 245 | if (!WasReg) |
| 246 | TiedTo = 0; |
| 247 | |
| 248 | // If this operand is embedded in a function, add the operand to the |
| 249 | // register's use/def list. |
| 250 | if (RegInfo) |
| 251 | RegInfo->addRegOperandToUseList(this); |
| 252 | } |
| 253 | |
| 254 | /// isIdenticalTo - Return true if this operand is identical to the specified |
| 255 | /// operand. Note that this should stay in sync with the hash_value overload |
| 256 | /// below. |
| 257 | bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { |
| 258 | if (getType() != Other.getType() || |
| 259 | getTargetFlags() != Other.getTargetFlags()) |
| 260 | return false; |
| 261 | |
| 262 | switch (getType()) { |
| 263 | case MachineOperand::MO_Register: |
| 264 | return getReg() == Other.getReg() && isDef() == Other.isDef() && |
| 265 | getSubReg() == Other.getSubReg(); |
| 266 | case MachineOperand::MO_Immediate: |
| 267 | return getImm() == Other.getImm(); |
| 268 | case MachineOperand::MO_CImmediate: |
| 269 | return getCImm() == Other.getCImm(); |
| 270 | case MachineOperand::MO_FPImmediate: |
| 271 | return getFPImm() == Other.getFPImm(); |
| 272 | case MachineOperand::MO_MachineBasicBlock: |
| 273 | return getMBB() == Other.getMBB(); |
| 274 | case MachineOperand::MO_FrameIndex: |
| 275 | return getIndex() == Other.getIndex(); |
| 276 | case MachineOperand::MO_ConstantPoolIndex: |
| 277 | case MachineOperand::MO_TargetIndex: |
| 278 | return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); |
| 279 | case MachineOperand::MO_JumpTableIndex: |
| 280 | return getIndex() == Other.getIndex(); |
| 281 | case MachineOperand::MO_GlobalAddress: |
| 282 | return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset(); |
| 283 | case MachineOperand::MO_ExternalSymbol: |
| 284 | return strcmp(getSymbolName(), Other.getSymbolName()) == 0 && |
| 285 | getOffset() == Other.getOffset(); |
| 286 | case MachineOperand::MO_BlockAddress: |
| 287 | return getBlockAddress() == Other.getBlockAddress() && |
| 288 | getOffset() == Other.getOffset(); |
| 289 | case MachineOperand::MO_RegisterMask: |
| 290 | case MachineOperand::MO_RegisterLiveOut: { |
| 291 | // Shallow compare of the two RegMasks |
| 292 | const uint32_t *RegMask = getRegMask(); |
| 293 | const uint32_t *OtherRegMask = Other.getRegMask(); |
| 294 | if (RegMask == OtherRegMask) |
| 295 | return true; |
| 296 | |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 297 | if (const MachineFunction *MF = getMFIfAvailable(*this)) { |
| 298 | // Calculate the size of the RegMask |
| 299 | const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); |
| 300 | unsigned RegMaskSize = (TRI->getNumRegs() + 31) / 32; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 301 | |
Francis Visoiu Mistrih | 95a0591 | 2017-12-06 11:55:42 +0000 | [diff] [blame] | 302 | // Deep compare of the two RegMasks |
| 303 | return std::equal(RegMask, RegMask + RegMaskSize, OtherRegMask); |
| 304 | } |
| 305 | // We don't know the size of the RegMask, so we can't deep compare the two |
| 306 | // reg masks. |
| 307 | return false; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 308 | } |
| 309 | case MachineOperand::MO_MCSymbol: |
| 310 | return getMCSymbol() == Other.getMCSymbol(); |
| 311 | case MachineOperand::MO_CFIIndex: |
| 312 | return getCFIIndex() == Other.getCFIIndex(); |
| 313 | case MachineOperand::MO_Metadata: |
| 314 | return getMetadata() == Other.getMetadata(); |
| 315 | case MachineOperand::MO_IntrinsicID: |
| 316 | return getIntrinsicID() == Other.getIntrinsicID(); |
| 317 | case MachineOperand::MO_Predicate: |
| 318 | return getPredicate() == Other.getPredicate(); |
| 319 | } |
| 320 | llvm_unreachable("Invalid machine operand type"); |
| 321 | } |
| 322 | |
| 323 | // Note: this must stay exactly in sync with isIdenticalTo above. |
| 324 | hash_code llvm::hash_value(const MachineOperand &MO) { |
| 325 | switch (MO.getType()) { |
| 326 | case MachineOperand::MO_Register: |
| 327 | // Register operands don't have target flags. |
| 328 | return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef()); |
| 329 | case MachineOperand::MO_Immediate: |
| 330 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getImm()); |
| 331 | case MachineOperand::MO_CImmediate: |
| 332 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); |
| 333 | case MachineOperand::MO_FPImmediate: |
| 334 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getFPImm()); |
| 335 | case MachineOperand::MO_MachineBasicBlock: |
| 336 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMBB()); |
| 337 | case MachineOperand::MO_FrameIndex: |
| 338 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); |
| 339 | case MachineOperand::MO_ConstantPoolIndex: |
| 340 | case MachineOperand::MO_TargetIndex: |
| 341 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), |
| 342 | MO.getOffset()); |
| 343 | case MachineOperand::MO_JumpTableIndex: |
| 344 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); |
| 345 | case MachineOperand::MO_ExternalSymbol: |
| 346 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getOffset(), |
| 347 | MO.getSymbolName()); |
| 348 | case MachineOperand::MO_GlobalAddress: |
| 349 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getGlobal(), |
| 350 | MO.getOffset()); |
| 351 | case MachineOperand::MO_BlockAddress: |
| 352 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getBlockAddress(), |
| 353 | MO.getOffset()); |
| 354 | case MachineOperand::MO_RegisterMask: |
| 355 | case MachineOperand::MO_RegisterLiveOut: |
| 356 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getRegMask()); |
| 357 | case MachineOperand::MO_Metadata: |
| 358 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMetadata()); |
| 359 | case MachineOperand::MO_MCSymbol: |
| 360 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMCSymbol()); |
| 361 | case MachineOperand::MO_CFIIndex: |
| 362 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCFIIndex()); |
| 363 | case MachineOperand::MO_IntrinsicID: |
| 364 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIntrinsicID()); |
| 365 | case MachineOperand::MO_Predicate: |
| 366 | return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getPredicate()); |
| 367 | } |
| 368 | llvm_unreachable("Invalid machine operand type"); |
| 369 | } |
| 370 | |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 371 | // Try to crawl up to the machine function and get TRI and IntrinsicInfo from |
| 372 | // it. |
| 373 | static void tryToGetTargetInfo(const MachineOperand &MO, |
| 374 | const TargetRegisterInfo *&TRI, |
| 375 | const TargetIntrinsicInfo *&IntrinsicInfo) { |
Francis Visoiu Mistrih | 567611e | 2017-12-07 14:32:15 +0000 | [diff] [blame] | 376 | if (const MachineFunction *MF = getMFIfAvailable(MO)) { |
| 377 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 378 | IntrinsicInfo = MF->getTarget().getIntrinsicInfo(); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 379 | } |
| 380 | } |
| 381 | |
Francis Visoiu Mistrih | 26ae8a6 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 382 | static void printOffset(raw_ostream &OS, int64_t Offset) { |
| 383 | if (Offset == 0) |
| 384 | return; |
| 385 | if (Offset < 0) { |
| 386 | OS << " - " << -Offset; |
| 387 | return; |
| 388 | } |
| 389 | OS << " + " << Offset; |
| 390 | } |
| 391 | |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 392 | static const char *getTargetIndexName(const MachineFunction &MF, int Index) { |
| 393 | const auto *TII = MF.getSubtarget().getInstrInfo(); |
| 394 | assert(TII && "expected instruction info"); |
| 395 | auto Indices = TII->getSerializableTargetIndices(); |
| 396 | auto Found = find_if(Indices, [&](const std::pair<int, const char *> &I) { |
| 397 | return I.first == Index; |
| 398 | }); |
| 399 | if (Found != Indices.end()) |
| 400 | return Found->second; |
| 401 | return nullptr; |
| 402 | } |
| 403 | |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame^] | 404 | static const char *getTargetFlagName(const TargetInstrInfo *TII, unsigned TF) { |
| 405 | auto Flags = TII->getSerializableDirectMachineOperandTargetFlags(); |
| 406 | for (const auto &I : Flags) { |
| 407 | if (I.first == TF) { |
| 408 | return I.second; |
| 409 | } |
| 410 | } |
| 411 | return nullptr; |
| 412 | } |
| 413 | |
Francis Visoiu Mistrih | 440f69c | 2017-12-08 22:53:21 +0000 | [diff] [blame] | 414 | void MachineOperand::printSubregIdx(raw_ostream &OS, uint64_t Index, |
| 415 | const TargetRegisterInfo *TRI) { |
| 416 | OS << "%subreg."; |
| 417 | if (TRI) |
| 418 | OS << TRI->getSubRegIndexName(Index); |
| 419 | else |
| 420 | OS << Index; |
| 421 | } |
| 422 | |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame^] | 423 | void MachineOperand::printTargetFlags(raw_ostream &OS, |
| 424 | const MachineOperand &Op) { |
| 425 | if (!Op.getTargetFlags()) |
| 426 | return; |
| 427 | const MachineFunction *MF = getMFIfAvailable(Op); |
| 428 | if (!MF) |
| 429 | return; |
| 430 | |
| 431 | const auto *TII = MF->getSubtarget().getInstrInfo(); |
| 432 | assert(TII && "expected instruction info"); |
| 433 | auto Flags = TII->decomposeMachineOperandsTargetFlags(Op.getTargetFlags()); |
| 434 | OS << "target-flags("; |
| 435 | const bool HasDirectFlags = Flags.first; |
| 436 | const bool HasBitmaskFlags = Flags.second; |
| 437 | if (!HasDirectFlags && !HasBitmaskFlags) { |
| 438 | OS << "<unknown>) "; |
| 439 | return; |
| 440 | } |
| 441 | if (HasDirectFlags) { |
| 442 | if (const auto *Name = getTargetFlagName(TII, Flags.first)) |
| 443 | OS << Name; |
| 444 | else |
| 445 | OS << "<unknown target flag>"; |
| 446 | } |
| 447 | if (!HasBitmaskFlags) { |
| 448 | OS << ") "; |
| 449 | return; |
| 450 | } |
| 451 | bool IsCommaNeeded = HasDirectFlags; |
| 452 | unsigned BitMask = Flags.second; |
| 453 | auto BitMasks = TII->getSerializableBitmaskMachineOperandTargetFlags(); |
| 454 | for (const auto &Mask : BitMasks) { |
| 455 | // Check if the flag's bitmask has the bits of the current mask set. |
| 456 | if ((BitMask & Mask.first) == Mask.first) { |
| 457 | if (IsCommaNeeded) |
| 458 | OS << ", "; |
| 459 | IsCommaNeeded = true; |
| 460 | OS << Mask.second; |
| 461 | // Clear the bits which were serialized from the flag's bitmask. |
| 462 | BitMask &= ~(Mask.first); |
| 463 | } |
| 464 | } |
| 465 | if (BitMask) { |
| 466 | // When the resulting flag's bitmask isn't zero, we know that we didn't |
| 467 | // serialize all of the bit flags. |
| 468 | if (IsCommaNeeded) |
| 469 | OS << ", "; |
| 470 | OS << "<unknown bitmask target flag>"; |
| 471 | } |
| 472 | OS << ") "; |
| 473 | } |
| 474 | |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 475 | void MachineOperand::print(raw_ostream &OS, const TargetRegisterInfo *TRI, |
| 476 | const TargetIntrinsicInfo *IntrinsicInfo) const { |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 477 | tryToGetTargetInfo(*this, TRI, IntrinsicInfo); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 478 | ModuleSlotTracker DummyMST(nullptr); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 479 | print(OS, DummyMST, LLT{}, /*PrintDef=*/false, |
| 480 | /*ShouldPrintRegisterTies=*/true, |
| 481 | /*TiedOperandIdx=*/0, TRI, IntrinsicInfo); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | void MachineOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 485 | LLT TypeToPrint, bool PrintDef, |
| 486 | bool ShouldPrintRegisterTies, |
| 487 | unsigned TiedOperandIdx, |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 488 | const TargetRegisterInfo *TRI, |
| 489 | const TargetIntrinsicInfo *IntrinsicInfo) const { |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame^] | 490 | printTargetFlags(OS, *this); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 491 | switch (getType()) { |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 492 | case MachineOperand::MO_Register: { |
| 493 | unsigned Reg = getReg(); |
| 494 | if (isImplicit()) |
| 495 | OS << (isDef() ? "implicit-def " : "implicit "); |
| 496 | else if (PrintDef && isDef()) |
| 497 | // Print the 'def' flag only when the operand is defined after '='. |
| 498 | OS << "def "; |
| 499 | if (isInternalRead()) |
| 500 | OS << "internal "; |
| 501 | if (isDead()) |
| 502 | OS << "dead "; |
| 503 | if (isKill()) |
| 504 | OS << "killed "; |
| 505 | if (isUndef()) |
| 506 | OS << "undef "; |
| 507 | if (isEarlyClobber()) |
| 508 | OS << "early-clobber "; |
| 509 | if (isDebug()) |
| 510 | OS << "debug-use "; |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 511 | if (TargetRegisterInfo::isPhysicalRegister(getReg()) && isRenamable()) |
| 512 | OS << "renamable "; |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 513 | OS << printReg(Reg, TRI); |
| 514 | // Print the sub register. |
| 515 | if (unsigned SubReg = getSubReg()) { |
| 516 | if (TRI) |
| 517 | OS << '.' << TRI->getSubRegIndexName(SubReg); |
| 518 | else |
| 519 | OS << ".subreg" << SubReg; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 520 | } |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 521 | // Print the register class / bank. |
| 522 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Francis Visoiu Mistrih | 567611e | 2017-12-07 14:32:15 +0000 | [diff] [blame] | 523 | if (const MachineFunction *MF = getMFIfAvailable(*this)) { |
| 524 | const MachineRegisterInfo &MRI = MF->getRegInfo(); |
| 525 | if (!PrintDef || MRI.def_empty(Reg)) { |
| 526 | OS << ':'; |
| 527 | OS << printRegClassOrBank(Reg, MRI, TRI); |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 528 | } |
| 529 | } |
| 530 | } |
| 531 | // Print ties. |
| 532 | if (ShouldPrintRegisterTies && isTied() && !isDef()) |
| 533 | OS << "(tied-def " << TiedOperandIdx << ")"; |
| 534 | // Print types. |
| 535 | if (TypeToPrint.isValid()) |
| 536 | OS << '(' << TypeToPrint << ')'; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 537 | break; |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 538 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 539 | case MachineOperand::MO_Immediate: |
| 540 | OS << getImm(); |
| 541 | break; |
| 542 | case MachineOperand::MO_CImmediate: |
Francis Visoiu Mistrih | 6c4ca71 | 2017-12-08 11:40:06 +0000 | [diff] [blame] | 543 | getCImm()->printAsOperand(OS, /*PrintType=*/true, MST); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 544 | break; |
| 545 | case MachineOperand::MO_FPImmediate: |
| 546 | if (getFPImm()->getType()->isFloatTy()) { |
| 547 | OS << getFPImm()->getValueAPF().convertToFloat(); |
| 548 | } else if (getFPImm()->getType()->isHalfTy()) { |
| 549 | APFloat APF = getFPImm()->getValueAPF(); |
| 550 | bool Unused; |
| 551 | APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &Unused); |
| 552 | OS << "half " << APF.convertToFloat(); |
| 553 | } else if (getFPImm()->getType()->isFP128Ty()) { |
| 554 | APFloat APF = getFPImm()->getValueAPF(); |
| 555 | SmallString<16> Str; |
| 556 | getFPImm()->getValueAPF().toString(Str); |
| 557 | OS << "quad " << Str; |
| 558 | } else if (getFPImm()->getType()->isX86_FP80Ty()) { |
| 559 | APFloat APF = getFPImm()->getValueAPF(); |
| 560 | OS << "x86_fp80 0xK"; |
| 561 | APInt API = APF.bitcastToAPInt(); |
| 562 | OS << format_hex_no_prefix(API.getHiBits(16).getZExtValue(), 4, |
| 563 | /*Upper=*/true); |
| 564 | OS << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16, |
| 565 | /*Upper=*/true); |
| 566 | } else { |
| 567 | OS << getFPImm()->getValueAPF().convertToDouble(); |
| 568 | } |
| 569 | break; |
| 570 | case MachineOperand::MO_MachineBasicBlock: |
Francis Visoiu Mistrih | 25528d6 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 571 | OS << printMBBReference(*getMBB()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 572 | break; |
| 573 | case MachineOperand::MO_FrameIndex: |
| 574 | OS << "<fi#" << getIndex() << '>'; |
| 575 | break; |
| 576 | case MachineOperand::MO_ConstantPoolIndex: |
Francis Visoiu Mistrih | 26ae8a6 | 2017-12-13 10:30:45 +0000 | [diff] [blame] | 577 | OS << "%const." << getIndex(); |
| 578 | printOffset(OS, getOffset()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 579 | break; |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 580 | case MachineOperand::MO_TargetIndex: { |
| 581 | OS << "target-index("; |
| 582 | const char *Name = "<unknown>"; |
| 583 | if (const MachineFunction *MF = getMFIfAvailable(*this)) |
| 584 | if (const auto *TargetIndexName = getTargetIndexName(*MF, getIndex())) |
| 585 | Name = TargetIndexName; |
| 586 | OS << Name << ')'; |
| 587 | printOffset(OS, getOffset()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 588 | break; |
Francis Visoiu Mistrih | b3a0d51 | 2017-12-13 10:30:51 +0000 | [diff] [blame] | 589 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 590 | case MachineOperand::MO_JumpTableIndex: |
Francis Visoiu Mistrih | b41dbbe | 2017-12-13 10:30:59 +0000 | [diff] [blame] | 591 | OS << printJumpTableEntryReference(getIndex()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 592 | break; |
| 593 | case MachineOperand::MO_GlobalAddress: |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 594 | getGlobal()->printAsOperand(OS, /*PrintType=*/false, MST); |
Francis Visoiu Mistrih | 5df3bbf | 2017-12-14 10:03:09 +0000 | [diff] [blame^] | 595 | printOffset(OS, getOffset()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 596 | break; |
Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 597 | case MachineOperand::MO_ExternalSymbol: { |
| 598 | StringRef Name = getSymbolName(); |
| 599 | OS << '$'; |
| 600 | if (Name.empty()) { |
| 601 | OS << "\"\""; |
| 602 | } else { |
| 603 | printLLVMNameWithoutPrefix(OS, Name); |
| 604 | } |
| 605 | printOffset(OS, getOffset()); |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 606 | break; |
Francis Visoiu Mistrih | e76c5fc | 2017-12-14 10:02:58 +0000 | [diff] [blame] | 607 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 608 | case MachineOperand::MO_BlockAddress: |
| 609 | OS << '<'; |
| 610 | getBlockAddress()->printAsOperand(OS, /*PrintType=*/false, MST); |
| 611 | if (getOffset()) |
| 612 | OS << "+" << getOffset(); |
| 613 | OS << '>'; |
| 614 | break; |
| 615 | case MachineOperand::MO_RegisterMask: { |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 616 | OS << "<regmask"; |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 617 | if (TRI) { |
| 618 | unsigned NumRegsInMask = 0; |
| 619 | unsigned NumRegsEmitted = 0; |
| 620 | for (unsigned i = 0; i < TRI->getNumRegs(); ++i) { |
| 621 | unsigned MaskWord = i / 32; |
| 622 | unsigned MaskBit = i % 32; |
| 623 | if (getRegMask()[MaskWord] & (1 << MaskBit)) { |
| 624 | if (PrintRegMaskNumRegs < 0 || |
| 625 | NumRegsEmitted <= static_cast<unsigned>(PrintRegMaskNumRegs)) { |
| 626 | OS << " " << printReg(i, TRI); |
| 627 | NumRegsEmitted++; |
| 628 | } |
| 629 | NumRegsInMask++; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 630 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 631 | } |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 632 | if (NumRegsEmitted != NumRegsInMask) |
| 633 | OS << " and " << (NumRegsInMask - NumRegsEmitted) << " more..."; |
| 634 | } else { |
| 635 | OS << " ..."; |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 636 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 637 | OS << ">"; |
| 638 | break; |
| 639 | } |
| 640 | case MachineOperand::MO_RegisterLiveOut: |
| 641 | OS << "<regliveout>"; |
| 642 | break; |
| 643 | case MachineOperand::MO_Metadata: |
| 644 | OS << '<'; |
| 645 | getMetadata()->printAsOperand(OS, MST); |
| 646 | OS << '>'; |
| 647 | break; |
| 648 | case MachineOperand::MO_MCSymbol: |
| 649 | OS << "<MCSym=" << *getMCSymbol() << '>'; |
| 650 | break; |
| 651 | case MachineOperand::MO_CFIIndex: |
| 652 | OS << "<call frame instruction>"; |
| 653 | break; |
| 654 | case MachineOperand::MO_IntrinsicID: { |
| 655 | Intrinsic::ID ID = getIntrinsicID(); |
| 656 | if (ID < Intrinsic::num_intrinsics) |
| 657 | OS << "<intrinsic:@" << Intrinsic::getName(ID, None) << '>'; |
| 658 | else if (IntrinsicInfo) |
| 659 | OS << "<intrinsic:@" << IntrinsicInfo->getName(ID) << '>'; |
| 660 | else |
| 661 | OS << "<intrinsic:" << ID << '>'; |
| 662 | break; |
| 663 | } |
| 664 | case MachineOperand::MO_Predicate: { |
| 665 | auto Pred = static_cast<CmpInst::Predicate>(getPredicate()); |
| 666 | OS << '<' << (CmpInst::isIntPredicate(Pred) ? "intpred" : "floatpred") |
| 667 | << CmpInst::getPredicateName(Pred) << '>'; |
| 668 | break; |
| 669 | } |
| 670 | } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| 674 | LLVM_DUMP_METHOD void MachineOperand::dump() const { dbgs() << *this << '\n'; } |
| 675 | #endif |
| 676 | |
| 677 | //===----------------------------------------------------------------------===// |
| 678 | // MachineMemOperand Implementation |
| 679 | //===----------------------------------------------------------------------===// |
| 680 | |
| 681 | /// getAddrSpace - Return the LLVM IR address space number that this pointer |
| 682 | /// points into. |
Yaxun Liu | 4947704 | 2017-12-02 22:13:22 +0000 | [diff] [blame] | 683 | unsigned MachinePointerInfo::getAddrSpace() const { return AddrSpace; } |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 684 | |
| 685 | /// isDereferenceable - Return true if V is always dereferenceable for |
| 686 | /// Offset + Size byte. |
| 687 | bool MachinePointerInfo::isDereferenceable(unsigned Size, LLVMContext &C, |
| 688 | const DataLayout &DL) const { |
| 689 | if (!V.is<const Value *>()) |
| 690 | return false; |
| 691 | |
| 692 | const Value *BasePtr = V.get<const Value *>(); |
| 693 | if (BasePtr == nullptr) |
| 694 | return false; |
| 695 | |
| 696 | return isDereferenceableAndAlignedPointer( |
| 697 | BasePtr, 1, APInt(DL.getPointerSizeInBits(), Offset + Size), DL); |
| 698 | } |
| 699 | |
| 700 | /// getConstantPool - Return a MachinePointerInfo record that refers to the |
| 701 | /// constant pool. |
| 702 | MachinePointerInfo MachinePointerInfo::getConstantPool(MachineFunction &MF) { |
| 703 | return MachinePointerInfo(MF.getPSVManager().getConstantPool()); |
| 704 | } |
| 705 | |
| 706 | /// getFixedStack - Return a MachinePointerInfo record that refers to the |
| 707 | /// the specified FrameIndex. |
| 708 | MachinePointerInfo MachinePointerInfo::getFixedStack(MachineFunction &MF, |
| 709 | int FI, int64_t Offset) { |
| 710 | return MachinePointerInfo(MF.getPSVManager().getFixedStack(FI), Offset); |
| 711 | } |
| 712 | |
| 713 | MachinePointerInfo MachinePointerInfo::getJumpTable(MachineFunction &MF) { |
| 714 | return MachinePointerInfo(MF.getPSVManager().getJumpTable()); |
| 715 | } |
| 716 | |
| 717 | MachinePointerInfo MachinePointerInfo::getGOT(MachineFunction &MF) { |
| 718 | return MachinePointerInfo(MF.getPSVManager().getGOT()); |
| 719 | } |
| 720 | |
| 721 | MachinePointerInfo MachinePointerInfo::getStack(MachineFunction &MF, |
| 722 | int64_t Offset, uint8_t ID) { |
| 723 | return MachinePointerInfo(MF.getPSVManager().getStack(), Offset, ID); |
| 724 | } |
| 725 | |
Yaxun Liu | 4947704 | 2017-12-02 22:13:22 +0000 | [diff] [blame] | 726 | MachinePointerInfo MachinePointerInfo::getUnknownStack(MachineFunction &MF) { |
| 727 | return MachinePointerInfo(MF.getDataLayout().getAllocaAddrSpace()); |
| 728 | } |
| 729 | |
Francis Visoiu Mistrih | aa73969 | 2017-11-28 17:58:43 +0000 | [diff] [blame] | 730 | MachineMemOperand::MachineMemOperand(MachinePointerInfo ptrinfo, Flags f, |
| 731 | uint64_t s, unsigned int a, |
| 732 | const AAMDNodes &AAInfo, |
| 733 | const MDNode *Ranges, SyncScope::ID SSID, |
| 734 | AtomicOrdering Ordering, |
| 735 | AtomicOrdering FailureOrdering) |
| 736 | : PtrInfo(ptrinfo), Size(s), FlagVals(f), BaseAlignLog2(Log2_32(a) + 1), |
| 737 | AAInfo(AAInfo), Ranges(Ranges) { |
| 738 | assert((PtrInfo.V.isNull() || PtrInfo.V.is<const PseudoSourceValue *>() || |
| 739 | isa<PointerType>(PtrInfo.V.get<const Value *>()->getType())) && |
| 740 | "invalid pointer value"); |
| 741 | assert(getBaseAlignment() == a && "Alignment is not a power of 2!"); |
| 742 | assert((isLoad() || isStore()) && "Not a load/store!"); |
| 743 | |
| 744 | AtomicInfo.SSID = static_cast<unsigned>(SSID); |
| 745 | assert(getSyncScopeID() == SSID && "Value truncated"); |
| 746 | AtomicInfo.Ordering = static_cast<unsigned>(Ordering); |
| 747 | assert(getOrdering() == Ordering && "Value truncated"); |
| 748 | AtomicInfo.FailureOrdering = static_cast<unsigned>(FailureOrdering); |
| 749 | assert(getFailureOrdering() == FailureOrdering && "Value truncated"); |
| 750 | } |
| 751 | |
| 752 | /// Profile - Gather unique data for the object. |
| 753 | /// |
| 754 | void MachineMemOperand::Profile(FoldingSetNodeID &ID) const { |
| 755 | ID.AddInteger(getOffset()); |
| 756 | ID.AddInteger(Size); |
| 757 | ID.AddPointer(getOpaqueValue()); |
| 758 | ID.AddInteger(getFlags()); |
| 759 | ID.AddInteger(getBaseAlignment()); |
| 760 | } |
| 761 | |
| 762 | void MachineMemOperand::refineAlignment(const MachineMemOperand *MMO) { |
| 763 | // The Value and Offset may differ due to CSE. But the flags and size |
| 764 | // should be the same. |
| 765 | assert(MMO->getFlags() == getFlags() && "Flags mismatch!"); |
| 766 | assert(MMO->getSize() == getSize() && "Size mismatch!"); |
| 767 | |
| 768 | if (MMO->getBaseAlignment() >= getBaseAlignment()) { |
| 769 | // Update the alignment value. |
| 770 | BaseAlignLog2 = Log2_32(MMO->getBaseAlignment()) + 1; |
| 771 | // Also update the base and offset, because the new alignment may |
| 772 | // not be applicable with the old ones. |
| 773 | PtrInfo = MMO->PtrInfo; |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | /// getAlignment - Return the minimum known alignment in bytes of the |
| 778 | /// actual memory reference. |
| 779 | uint64_t MachineMemOperand::getAlignment() const { |
| 780 | return MinAlign(getBaseAlignment(), getOffset()); |
| 781 | } |
| 782 | |
| 783 | void MachineMemOperand::print(raw_ostream &OS) const { |
| 784 | ModuleSlotTracker DummyMST(nullptr); |
| 785 | print(OS, DummyMST); |
| 786 | } |
| 787 | void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST) const { |
| 788 | assert((isLoad() || isStore()) && "SV has to be a load, store or both."); |
| 789 | |
| 790 | if (isVolatile()) |
| 791 | OS << "Volatile "; |
| 792 | |
| 793 | if (isLoad()) |
| 794 | OS << "LD"; |
| 795 | if (isStore()) |
| 796 | OS << "ST"; |
| 797 | OS << getSize(); |
| 798 | |
| 799 | // Print the address information. |
| 800 | OS << "["; |
| 801 | if (const Value *V = getValue()) |
| 802 | V->printAsOperand(OS, /*PrintType=*/false, MST); |
| 803 | else if (const PseudoSourceValue *PSV = getPseudoValue()) |
| 804 | PSV->printCustom(OS); |
| 805 | else |
| 806 | OS << "<unknown>"; |
| 807 | |
| 808 | unsigned AS = getAddrSpace(); |
| 809 | if (AS != 0) |
| 810 | OS << "(addrspace=" << AS << ')'; |
| 811 | |
| 812 | // If the alignment of the memory reference itself differs from the alignment |
| 813 | // of the base pointer, print the base alignment explicitly, next to the base |
| 814 | // pointer. |
| 815 | if (getBaseAlignment() != getAlignment()) |
| 816 | OS << "(align=" << getBaseAlignment() << ")"; |
| 817 | |
| 818 | if (getOffset() != 0) |
| 819 | OS << "+" << getOffset(); |
| 820 | OS << "]"; |
| 821 | |
| 822 | // Print the alignment of the reference. |
| 823 | if (getBaseAlignment() != getAlignment() || getBaseAlignment() != getSize()) |
| 824 | OS << "(align=" << getAlignment() << ")"; |
| 825 | |
| 826 | // Print TBAA info. |
| 827 | if (const MDNode *TBAAInfo = getAAInfo().TBAA) { |
| 828 | OS << "(tbaa="; |
| 829 | if (TBAAInfo->getNumOperands() > 0) |
| 830 | TBAAInfo->getOperand(0)->printAsOperand(OS, MST); |
| 831 | else |
| 832 | OS << "<unknown>"; |
| 833 | OS << ")"; |
| 834 | } |
| 835 | |
| 836 | // Print AA scope info. |
| 837 | if (const MDNode *ScopeInfo = getAAInfo().Scope) { |
| 838 | OS << "(alias.scope="; |
| 839 | if (ScopeInfo->getNumOperands() > 0) |
| 840 | for (unsigned i = 0, ie = ScopeInfo->getNumOperands(); i != ie; ++i) { |
| 841 | ScopeInfo->getOperand(i)->printAsOperand(OS, MST); |
| 842 | if (i != ie - 1) |
| 843 | OS << ","; |
| 844 | } |
| 845 | else |
| 846 | OS << "<unknown>"; |
| 847 | OS << ")"; |
| 848 | } |
| 849 | |
| 850 | // Print AA noalias scope info. |
| 851 | if (const MDNode *NoAliasInfo = getAAInfo().NoAlias) { |
| 852 | OS << "(noalias="; |
| 853 | if (NoAliasInfo->getNumOperands() > 0) |
| 854 | for (unsigned i = 0, ie = NoAliasInfo->getNumOperands(); i != ie; ++i) { |
| 855 | NoAliasInfo->getOperand(i)->printAsOperand(OS, MST); |
| 856 | if (i != ie - 1) |
| 857 | OS << ","; |
| 858 | } |
| 859 | else |
| 860 | OS << "<unknown>"; |
| 861 | OS << ")"; |
| 862 | } |
| 863 | |
| 864 | if (const MDNode *Ranges = getRanges()) { |
| 865 | unsigned NumRanges = Ranges->getNumOperands(); |
| 866 | if (NumRanges != 0) { |
| 867 | OS << "(ranges="; |
| 868 | |
| 869 | for (unsigned I = 0; I != NumRanges; ++I) { |
| 870 | Ranges->getOperand(I)->printAsOperand(OS, MST); |
| 871 | if (I != NumRanges - 1) |
| 872 | OS << ','; |
| 873 | } |
| 874 | |
| 875 | OS << ')'; |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | if (isNonTemporal()) |
| 880 | OS << "(nontemporal)"; |
| 881 | if (isDereferenceable()) |
| 882 | OS << "(dereferenceable)"; |
| 883 | if (isInvariant()) |
| 884 | OS << "(invariant)"; |
| 885 | if (getFlags() & MOTargetFlag1) |
| 886 | OS << "(flag1)"; |
| 887 | if (getFlags() & MOTargetFlag2) |
| 888 | OS << "(flag2)"; |
| 889 | if (getFlags() & MOTargetFlag3) |
| 890 | OS << "(flag3)"; |
| 891 | } |