| Chris Lattner | cf3056d | 2003-10-13 03:32:08 +0000 | [diff] [blame] | 1 | //===-- Instruction.cpp - Implement the Instruction class -----------------===// |
| Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
| John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
| John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
| Chandler Carruth | c2c50cd | 2013-01-02 09:10:48 +0000 | [diff] [blame] | 10 | // This file implements the Instruction class for the IR library. |
| Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 14 | #include "llvm/IR/Instruction.h" |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 15 | #include "llvm/IR/CallSite.h" |
| Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 16 | #include "llvm/IR/Constants.h" |
| 17 | #include "llvm/IR/Instructions.h" |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 18 | #include "llvm/IR/LeakDetector.h" |
| Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 19 | #include "llvm/IR/Module.h" |
| 20 | #include "llvm/IR/Operator.h" |
| 21 | #include "llvm/IR/Type.h" |
| Chris Lattner | 4b74c83 | 2003-11-20 17:45:12 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 23 | |
| Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 24 | Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, |
| Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 25 | Instruction *InsertBefore) |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 26 | : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) { |
| Chris Lattner | d1e693f | 2002-09-08 18:59:35 +0000 | [diff] [blame] | 27 | // Make sure that we get added to a basicblock |
| 28 | LeakDetector::addGarbageObject(this); |
| Chris Lattner | 2aa8311 | 2002-09-10 15:45:53 +0000 | [diff] [blame] | 29 | |
| 30 | // If requested, insert this instruction into a basic block... |
| 31 | if (InsertBefore) { |
| 32 | assert(InsertBefore->getParent() && |
| 33 | "Instruction to insert before is not in a basic block!"); |
| 34 | InsertBefore->getParent()->getInstList().insert(InsertBefore, this); |
| 35 | } |
| Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 38 | const DataLayout *Instruction::getDataLayout() const { |
| 39 | return getParent()->getDataLayout(); |
| 40 | } |
| 41 | |
| Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 42 | Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, |
| Chris Lattner | 910c80a | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 43 | BasicBlock *InsertAtEnd) |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 44 | : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) { |
| Chris Lattner | 96d83f6 | 2005-01-29 00:35:33 +0000 | [diff] [blame] | 45 | // Make sure that we get added to a basicblock |
| 46 | LeakDetector::addGarbageObject(this); |
| Alkis Evlogimenos | e5828f1 | 2004-05-26 21:41:09 +0000 | [diff] [blame] | 47 | |
| 48 | // append this instruction into the basic block |
| 49 | assert(InsertAtEnd && "Basic block to append to may not be NULL!"); |
| 50 | InsertAtEnd->getInstList().push_back(this); |
| Chris Lattner | f00042a | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | |
| Chris Lattner | 70aa33e | 2006-06-21 16:53:47 +0000 | [diff] [blame] | 54 | // Out of line virtual method, so the vtable, etc has a home. |
| Gordon Henriksen | afba8fe | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 55 | Instruction::~Instruction() { |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 56 | assert(!Parent && "Instruction still linked in the program!"); |
| Dan Gohman | 4f1be4a | 2010-07-20 22:25:04 +0000 | [diff] [blame] | 57 | if (hasMetadataHashEntry()) |
| 58 | clearMetadataHashEntries(); |
| Chris Lattner | 70aa33e | 2006-06-21 16:53:47 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | |
| Chris Lattner | bded132 | 2002-09-06 21:33:15 +0000 | [diff] [blame] | 62 | void Instruction::setParent(BasicBlock *P) { |
| Chris Lattner | 786993c | 2004-02-04 01:06:38 +0000 | [diff] [blame] | 63 | if (getParent()) { |
| 64 | if (!P) LeakDetector::addGarbageObject(this); |
| 65 | } else { |
| 66 | if (P) LeakDetector::removeGarbageObject(this); |
| 67 | } |
| Chris Lattner | d1e693f | 2002-09-08 18:59:35 +0000 | [diff] [blame] | 68 | |
| Chris Lattner | bded132 | 2002-09-06 21:33:15 +0000 | [diff] [blame] | 69 | Parent = P; |
| 70 | } |
| 71 | |
| Chris Lattner | 4b83380 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 72 | void Instruction::removeFromParent() { |
| 73 | getParent()->getInstList().remove(this); |
| 74 | } |
| 75 | |
| 76 | void Instruction::eraseFromParent() { |
| 77 | getParent()->getInstList().erase(this); |
| 78 | } |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 79 | |
| Owen Anderson | 26bb50a | 2008-06-17 18:29:27 +0000 | [diff] [blame] | 80 | /// insertBefore - Insert an unlinked instructions into a basic block |
| 81 | /// immediately before the specified instruction. |
| 82 | void Instruction::insertBefore(Instruction *InsertPos) { |
| 83 | InsertPos->getParent()->getInstList().insert(InsertPos, this); |
| 84 | } |
| 85 | |
| Chris Lattner | 3ff704f | 2009-01-13 07:43:51 +0000 | [diff] [blame] | 86 | /// insertAfter - Insert an unlinked instructions into a basic block |
| 87 | /// immediately after the specified instruction. |
| 88 | void Instruction::insertAfter(Instruction *InsertPos) { |
| 89 | InsertPos->getParent()->getInstList().insertAfter(InsertPos, this); |
| 90 | } |
| 91 | |
| Chris Lattner | 0fe34d8 | 2005-08-08 05:21:50 +0000 | [diff] [blame] | 92 | /// moveBefore - Unlink this instruction from its current basic block and |
| 93 | /// insert it into the basic block that MovePos lives in, right before |
| 94 | /// MovePos. |
| 95 | void Instruction::moveBefore(Instruction *MovePos) { |
| 96 | MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(), |
| 97 | this); |
| 98 | } |
| 99 | |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 100 | /// Set or clear the unsafe-algebra flag on this instruction, which must be an |
| 101 | /// operator which supports this flag. See LangRef.html for the meaning of this |
| 102 | /// flag. |
| 103 | void Instruction::setHasUnsafeAlgebra(bool B) { |
| 104 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 105 | cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B); |
| 106 | } |
| 107 | |
| 108 | /// Set or clear the NoNaNs flag on this instruction, which must be an operator |
| 109 | /// which supports this flag. See LangRef.html for the meaning of this flag. |
| 110 | void Instruction::setHasNoNaNs(bool B) { |
| 111 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 112 | cast<FPMathOperator>(this)->setHasNoNaNs(B); |
| 113 | } |
| 114 | |
| 115 | /// Set or clear the no-infs flag on this instruction, which must be an operator |
| 116 | /// which supports this flag. See LangRef.html for the meaning of this flag. |
| 117 | void Instruction::setHasNoInfs(bool B) { |
| 118 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 119 | cast<FPMathOperator>(this)->setHasNoInfs(B); |
| 120 | } |
| 121 | |
| 122 | /// Set or clear the no-signed-zeros flag on this instruction, which must be an |
| 123 | /// operator which supports this flag. See LangRef.html for the meaning of this |
| 124 | /// flag. |
| 125 | void Instruction::setHasNoSignedZeros(bool B) { |
| 126 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 127 | cast<FPMathOperator>(this)->setHasNoSignedZeros(B); |
| 128 | } |
| 129 | |
| 130 | /// Set or clear the allow-reciprocal flag on this instruction, which must be an |
| 131 | /// operator which supports this flag. See LangRef.html for the meaning of this |
| 132 | /// flag. |
| 133 | void Instruction::setHasAllowReciprocal(bool B) { |
| 134 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 135 | cast<FPMathOperator>(this)->setHasAllowReciprocal(B); |
| 136 | } |
| 137 | |
| 138 | /// Convenience function for setting all the fast-math flags on this |
| 139 | /// instruction, which must be an operator which supports these flags. See |
| 140 | /// LangRef.html for the meaning of these flats. |
| 141 | void Instruction::setFastMathFlags(FastMathFlags FMF) { |
| 142 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 143 | cast<FPMathOperator>(this)->setFastMathFlags(FMF); |
| 144 | } |
| 145 | |
| 146 | /// Determine whether the unsafe-algebra flag is set. |
| 147 | bool Instruction::hasUnsafeAlgebra() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 148 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 149 | return cast<FPMathOperator>(this)->hasUnsafeAlgebra(); |
| 150 | } |
| 151 | |
| 152 | /// Determine whether the no-NaNs flag is set. |
| 153 | bool Instruction::hasNoNaNs() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 154 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 155 | return cast<FPMathOperator>(this)->hasNoNaNs(); |
| 156 | } |
| 157 | |
| 158 | /// Determine whether the no-infs flag is set. |
| 159 | bool Instruction::hasNoInfs() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 160 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 161 | return cast<FPMathOperator>(this)->hasNoInfs(); |
| 162 | } |
| 163 | |
| 164 | /// Determine whether the no-signed-zeros flag is set. |
| 165 | bool Instruction::hasNoSignedZeros() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 166 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 167 | return cast<FPMathOperator>(this)->hasNoSignedZeros(); |
| 168 | } |
| 169 | |
| 170 | /// Determine whether the allow-reciprocal flag is set. |
| 171 | bool Instruction::hasAllowReciprocal() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 172 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 173 | return cast<FPMathOperator>(this)->hasAllowReciprocal(); |
| 174 | } |
| 175 | |
| 176 | /// Convenience function for getting all the fast-math flags, which must be an |
| 177 | /// operator which supports these flags. See LangRef.html for the meaning of |
| 178 | /// these flats. |
| 179 | FastMathFlags Instruction::getFastMathFlags() const { |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 180 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
| Michael Ilseman | 125fc7f | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 181 | return cast<FPMathOperator>(this)->getFastMathFlags(); |
| 182 | } |
| Chris Lattner | 0fe34d8 | 2005-08-08 05:21:50 +0000 | [diff] [blame] | 183 | |
| Michael Ilseman | 4b896dd | 2012-11-29 21:25:12 +0000 | [diff] [blame] | 184 | /// Copy I's fast-math flags |
| 185 | void Instruction::copyFastMathFlags(const Instruction *I) { |
| 186 | setFastMathFlags(I->getFastMathFlags()); |
| 187 | } |
| 188 | |
| 189 | |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 190 | const char *Instruction::getOpcodeName(unsigned OpCode) { |
| 191 | switch (OpCode) { |
| 192 | // Terminators |
| Chris Lattner | 0513e9f | 2002-08-14 18:18:02 +0000 | [diff] [blame] | 193 | case Ret: return "ret"; |
| 194 | case Br: return "br"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 195 | case Switch: return "switch"; |
| Chris Lattner | ab21db7 | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 196 | case IndirectBr: return "indirectbr"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 197 | case Invoke: return "invoke"; |
| Bill Wendling | dccc03b | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 198 | case Resume: return "resume"; |
| Chris Lattner | b976e66 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 199 | case Unreachable: return "unreachable"; |
| Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 200 | |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 201 | // Standard binary operators... |
| 202 | case Add: return "add"; |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 203 | case FAdd: return "fadd"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 204 | case Sub: return "sub"; |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 205 | case FSub: return "fsub"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 206 | case Mul: return "mul"; |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 207 | case FMul: return "fmul"; |
| Reid Spencer | 1628cec | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 208 | case UDiv: return "udiv"; |
| 209 | case SDiv: return "sdiv"; |
| 210 | case FDiv: return "fdiv"; |
| Reid Spencer | 0a783f7 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 211 | case URem: return "urem"; |
| 212 | case SRem: return "srem"; |
| 213 | case FRem: return "frem"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 214 | |
| 215 | // Logical operators... |
| 216 | case And: return "and"; |
| 217 | case Or : return "or"; |
| 218 | case Xor: return "xor"; |
| 219 | |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 220 | // Memory instructions... |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 221 | case Alloca: return "alloca"; |
| 222 | case Load: return "load"; |
| 223 | case Store: return "store"; |
| Eli Friedman | ff03048 | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 224 | case AtomicCmpXchg: return "cmpxchg"; |
| 225 | case AtomicRMW: return "atomicrmw"; |
| Eli Friedman | 47f3513 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 226 | case Fence: return "fence"; |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 227 | case GetElementPtr: return "getelementptr"; |
| Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 228 | |
| Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 229 | // Convert instructions... |
| Matt Arsenault | 59d3ae6 | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 230 | case Trunc: return "trunc"; |
| 231 | case ZExt: return "zext"; |
| 232 | case SExt: return "sext"; |
| 233 | case FPTrunc: return "fptrunc"; |
| 234 | case FPExt: return "fpext"; |
| 235 | case FPToUI: return "fptoui"; |
| 236 | case FPToSI: return "fptosi"; |
| 237 | case UIToFP: return "uitofp"; |
| 238 | case SIToFP: return "sitofp"; |
| 239 | case IntToPtr: return "inttoptr"; |
| 240 | case PtrToInt: return "ptrtoint"; |
| 241 | case BitCast: return "bitcast"; |
| 242 | case AddrSpaceCast: return "addrspacecast"; |
| Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 243 | |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 244 | // Other instructions... |
| Reid Spencer | 74f1642 | 2006-12-03 06:27:29 +0000 | [diff] [blame] | 245 | case ICmp: return "icmp"; |
| 246 | case FCmp: return "fcmp"; |
| Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 247 | case PHI: return "phi"; |
| 248 | case Select: return "select"; |
| 249 | case Call: return "call"; |
| 250 | case Shl: return "shl"; |
| 251 | case LShr: return "lshr"; |
| 252 | case AShr: return "ashr"; |
| 253 | case VAArg: return "va_arg"; |
| Robert Bocchino | b52ee7f | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 254 | case ExtractElement: return "extractelement"; |
| Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 255 | case InsertElement: return "insertelement"; |
| 256 | case ShuffleVector: return "shufflevector"; |
| Matthijs Kooijman | 74b5e07 | 2008-05-30 10:31:54 +0000 | [diff] [blame] | 257 | case ExtractValue: return "extractvalue"; |
| 258 | case InsertValue: return "insertvalue"; |
| Bill Wendling | e6e8826 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 259 | case LandingPad: return "landingpad"; |
| Chris Lattner | 8f77dae | 2003-05-08 02:44:12 +0000 | [diff] [blame] | 260 | |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 261 | default: return "<Invalid operator> "; |
| 262 | } |
| Vikram S. Adve | c105645 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 263 | } |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 264 | |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 265 | /// Return true if both instructions have the same special state |
| 266 | /// This must be kept in sync with lib/Transforms/IPO/MergeFunctions.cpp. |
| 267 | static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, |
| 268 | bool IgnoreAlignment = false) { |
| 269 | assert(I1->getOpcode() == I2->getOpcode() && |
| 270 | "Can not compare special state of different instructions"); |
| 271 | |
| 272 | if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) |
| 273 | return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && |
| 274 | (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || |
| 275 | IgnoreAlignment) && |
| 276 | LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && |
| 277 | LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope(); |
| 278 | if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) |
| 279 | return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && |
| 280 | (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || |
| 281 | IgnoreAlignment) && |
| 282 | SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() && |
| 283 | SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope(); |
| 284 | if (const CmpInst *CI = dyn_cast<CmpInst>(I1)) |
| 285 | return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate(); |
| 286 | if (const CallInst *CI = dyn_cast<CallInst>(I1)) |
| 287 | return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() && |
| 288 | CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() && |
| 289 | CI->getAttributes() == cast<CallInst>(I2)->getAttributes(); |
| 290 | if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1)) |
| 291 | return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() && |
| 292 | CI->getAttributes() == |
| 293 | cast<InvokeInst>(I2)->getAttributes(); |
| 294 | if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) |
| 295 | return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); |
| 296 | if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) |
| 297 | return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices(); |
| 298 | if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) |
| 299 | return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() && |
| 300 | FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope(); |
| 301 | if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1)) |
| 302 | return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() && |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 303 | CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() && |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 304 | CXI->getSuccessOrdering() == |
| 305 | cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() && |
| 306 | CXI->getFailureOrdering() == |
| 307 | cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() && |
| 308 | CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope(); |
| 309 | if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1)) |
| 310 | return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() && |
| 311 | RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() && |
| 312 | RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() && |
| 313 | RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope(); |
| 314 | |
| 315 | return true; |
| 316 | } |
| 317 | |
| Chris Lattner | 38f1455 | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 318 | /// isIdenticalTo - Return true if the specified instruction is exactly |
| 319 | /// identical to the current one. This means that all operands match and any |
| 320 | /// extra information (e.g. load is volatile) agree. |
| Chris Lattner | e3a0884 | 2008-11-27 08:39:18 +0000 | [diff] [blame] | 321 | bool Instruction::isIdenticalTo(const Instruction *I) const { |
| Dan Gohman | 75b0eda | 2009-08-25 22:24:20 +0000 | [diff] [blame] | 322 | return isIdenticalToWhenDefined(I) && |
| Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 323 | SubclassOptionalData == I->SubclassOptionalData; |
| 324 | } |
| 325 | |
| Dan Gohman | 75b0eda | 2009-08-25 22:24:20 +0000 | [diff] [blame] | 326 | /// isIdenticalToWhenDefined - This is like isIdenticalTo, except that it |
| Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 327 | /// ignores the SubclassOptionalData flags, which specify conditions |
| 328 | /// under which the instruction's result is undefined. |
| 329 | bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const { |
| Chris Lattner | 38f1455 | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 330 | if (getOpcode() != I->getOpcode() || |
| 331 | getNumOperands() != I->getNumOperands() || |
| 332 | getType() != I->getType()) |
| 333 | return false; |
| 334 | |
| Stephen Hines | cd81d94 | 2014-07-21 00:45:20 -0700 | [diff] [blame^] | 335 | // If both instructions have no operands, they are identical. |
| 336 | if (getNumOperands() == 0 && I->getNumOperands() == 0) |
| 337 | return haveSameSpecialState(this, I); |
| 338 | |
| Chris Lattner | 38f1455 | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 339 | // We have two instructions of identical opcode and #operands. Check to see |
| 340 | // if all operands are the same. |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 341 | if (!std::equal(op_begin(), op_end(), I->op_begin())) |
| 342 | return false; |
| Chris Lattner | 38f1455 | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 343 | |
| Joel Jones | 9df72a9 | 2012-05-10 15:59:41 +0000 | [diff] [blame] | 344 | if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) { |
| 345 | const PHINode *otherPHI = cast<PHINode>(I); |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 346 | return std::equal(thisPHI->block_begin(), thisPHI->block_end(), |
| 347 | otherPHI->block_begin()); |
| Joel Jones | 9df72a9 | 2012-05-10 15:59:41 +0000 | [diff] [blame] | 348 | } |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 349 | |
| 350 | return haveSameSpecialState(this, I); |
| Chris Lattner | 38f1455 | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 351 | } |
| 352 | |
| Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 353 | // isSameOperationAs |
| Dan Gohman | 194ae78 | 2009-06-12 19:03:05 +0000 | [diff] [blame] | 354 | // This should be kept in sync with isEquivalentOperation in |
| 355 | // lib/Transforms/IPO/MergeFunctions.cpp. |
| Hal Finkel | ec4e85e | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 356 | bool Instruction::isSameOperationAs(const Instruction *I, |
| 357 | unsigned flags) const { |
| 358 | bool IgnoreAlignment = flags & CompareIgnoringAlignment; |
| 359 | bool UseScalarTypes = flags & CompareUsingScalarTypes; |
| 360 | |
| Dan Gohman | 194ae78 | 2009-06-12 19:03:05 +0000 | [diff] [blame] | 361 | if (getOpcode() != I->getOpcode() || |
| 362 | getNumOperands() != I->getNumOperands() || |
| Hal Finkel | ec4e85e | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 363 | (UseScalarTypes ? |
| 364 | getType()->getScalarType() != I->getType()->getScalarType() : |
| 365 | getType() != I->getType())) |
| Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 366 | return false; |
| 367 | |
| 368 | // We have two instructions of identical opcode and #operands. Check to see |
| 369 | // if all operands are the same type |
| 370 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
| Hal Finkel | ec4e85e | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 371 | if (UseScalarTypes ? |
| 372 | getOperand(i)->getType()->getScalarType() != |
| 373 | I->getOperand(i)->getType()->getScalarType() : |
| 374 | getOperand(i)->getType() != I->getOperand(i)->getType()) |
| Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 375 | return false; |
| 376 | |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 377 | return haveSameSpecialState(this, I, IgnoreAlignment); |
| Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 380 | /// isUsedOutsideOfBlock - Return true if there are any uses of I outside of the |
| 381 | /// specified block. Note that PHI nodes are considered to evaluate their |
| 382 | /// operands in the corresponding predecessor block. |
| 383 | bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const { |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 384 | for (const Use &U : uses()) { |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 385 | // PHI nodes uses values in the corresponding predecessor block. For other |
| 386 | // instructions, just check to see whether the parent of the use matches up. |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 387 | const Instruction *I = cast<Instruction>(U.getUser()); |
| 388 | const PHINode *PN = dyn_cast<PHINode>(I); |
| Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 389 | if (!PN) { |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 390 | if (I->getParent() != BB) |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 391 | return true; |
| 392 | continue; |
| 393 | } |
| Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 394 | |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 395 | if (PN->getIncomingBlock(U) != BB) |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 396 | return true; |
| 397 | } |
| Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 398 | return false; |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 399 | } |
| 400 | |
| Chris Lattner | d96288a | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 401 | /// mayReadFromMemory - Return true if this instruction may read memory. |
| 402 | /// |
| 403 | bool Instruction::mayReadFromMemory() const { |
| 404 | switch (getOpcode()) { |
| 405 | default: return false; |
| Chris Lattner | d96288a | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 406 | case Instruction::VAArg: |
| Chris Lattner | 748118d | 2008-05-08 21:58:49 +0000 | [diff] [blame] | 407 | case Instruction::Load: |
| Eli Friedman | 8a552bb | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 408 | case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory |
| Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 409 | case Instruction::AtomicCmpXchg: |
| 410 | case Instruction::AtomicRMW: |
| Chris Lattner | d96288a | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 411 | return true; |
| 412 | case Instruction::Call: |
| 413 | return !cast<CallInst>(this)->doesNotAccessMemory(); |
| 414 | case Instruction::Invoke: |
| 415 | return !cast<InvokeInst>(this)->doesNotAccessMemory(); |
| Chris Lattner | 748118d | 2008-05-08 21:58:49 +0000 | [diff] [blame] | 416 | case Instruction::Store: |
| Eli Friedman | e5e7712 | 2011-08-15 21:00:18 +0000 | [diff] [blame] | 417 | return !cast<StoreInst>(this)->isUnordered(); |
| Chris Lattner | d96288a | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 418 | } |
| 419 | } |
| Chris Lattner | 7ae40e7 | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 420 | |
| Chris Lattner | bb5493d | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 421 | /// mayWriteToMemory - Return true if this instruction may modify memory. |
| 422 | /// |
| 423 | bool Instruction::mayWriteToMemory() const { |
| 424 | switch (getOpcode()) { |
| 425 | default: return false; |
| Eli Friedman | 8a552bb | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 426 | case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory |
| Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 427 | case Instruction::Store: |
| Chris Lattner | bb5493d | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 428 | case Instruction::VAArg: |
| Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 429 | case Instruction::AtomicCmpXchg: |
| 430 | case Instruction::AtomicRMW: |
| Chris Lattner | bb5493d | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 431 | return true; |
| 432 | case Instruction::Call: |
| Duncan Sands | a3355ff | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 433 | return !cast<CallInst>(this)->onlyReadsMemory(); |
| Chris Lattner | d96288a | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 434 | case Instruction::Invoke: |
| 435 | return !cast<InvokeInst>(this)->onlyReadsMemory(); |
| Chris Lattner | bb5493d | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 436 | case Instruction::Load: |
| Eli Friedman | e5e7712 | 2011-08-15 21:00:18 +0000 | [diff] [blame] | 437 | return !cast<LoadInst>(this)->isUnordered(); |
| Chris Lattner | bb5493d | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 438 | } |
| 439 | } |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 440 | |
| Duncan Sands | 7af1c78 | 2009-05-06 06:49:50 +0000 | [diff] [blame] | 441 | bool Instruction::mayThrow() const { |
| 442 | if (const CallInst *CI = dyn_cast<CallInst>(this)) |
| 443 | return !CI->doesNotThrow(); |
| Bill Wendling | 55fdb4e | 2011-08-16 21:15:50 +0000 | [diff] [blame] | 444 | return isa<ResumeInst>(this); |
| Duncan Sands | 7af1c78 | 2009-05-06 06:49:50 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| Nadav Rotem | 03544ec | 2013-02-19 20:02:09 +0000 | [diff] [blame] | 447 | bool Instruction::mayReturn() const { |
| 448 | if (const CallInst *CI = dyn_cast<CallInst>(this)) |
| 449 | return !CI->doesNotReturn(); |
| 450 | return true; |
| 451 | } |
| 452 | |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 453 | /// isAssociative - Return true if the instruction is associative: |
| 454 | /// |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 455 | /// Associative operators satisfy: x op (y op z) === (x op y) op z |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 456 | /// |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 457 | /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative. |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 458 | /// |
| Duncan Sands | 0d7ce5f | 2010-12-20 13:10:23 +0000 | [diff] [blame] | 459 | bool Instruction::isAssociative(unsigned Opcode) { |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 460 | return Opcode == And || Opcode == Or || Opcode == Xor || |
| 461 | Opcode == Add || Opcode == Mul; |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| Shuxin Yang | 9b7f6f2 | 2012-11-29 01:47:31 +0000 | [diff] [blame] | 464 | bool Instruction::isAssociative() const { |
| 465 | unsigned Opcode = getOpcode(); |
| 466 | if (isAssociative(Opcode)) |
| 467 | return true; |
| 468 | |
| 469 | switch (Opcode) { |
| 470 | case FMul: |
| 471 | case FAdd: |
| 472 | return cast<FPMathOperator>(this)->hasUnsafeAlgebra(); |
| 473 | default: |
| 474 | return false; |
| 475 | } |
| 476 | } |
| 477 | |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 478 | /// isCommutative - Return true if the instruction is commutative: |
| 479 | /// |
| Misha Brukman | 6b63452 | 2003-10-10 17:54:14 +0000 | [diff] [blame] | 480 | /// Commutative operators satisfy: (x op y) === (y op x) |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 481 | /// |
| 482 | /// In LLVM, these are the associative operators, plus SetEQ and SetNE, when |
| 483 | /// applied to any type. |
| 484 | /// |
| 485 | bool Instruction::isCommutative(unsigned op) { |
| 486 | switch (op) { |
| 487 | case Add: |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 488 | case FAdd: |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 489 | case Mul: |
| Dan Gohman | ae3a0be | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 490 | case FMul: |
| Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 491 | case And: |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 492 | case Or: |
| 493 | case Xor: |
| Chris Lattner | f2da724 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 494 | return true; |
| 495 | default: |
| 496 | return false; |
| 497 | } |
| 498 | } |
| Tanya Lattner | 741bb00 | 2003-07-31 04:05:50 +0000 | [diff] [blame] | 499 | |
| Duncan Sands | c038a78 | 2012-06-12 14:33:56 +0000 | [diff] [blame] | 500 | /// isIdempotent - Return true if the instruction is idempotent: |
| 501 | /// |
| 502 | /// Idempotent operators satisfy: x op x === x |
| 503 | /// |
| 504 | /// In LLVM, the And and Or operators are idempotent. |
| 505 | /// |
| 506 | bool Instruction::isIdempotent(unsigned Opcode) { |
| 507 | return Opcode == And || Opcode == Or; |
| 508 | } |
| 509 | |
| 510 | /// isNilpotent - Return true if the instruction is nilpotent: |
| 511 | /// |
| 512 | /// Nilpotent operators satisfy: x op x === Id, |
| 513 | /// |
| 514 | /// where Id is the identity for the operator, i.e. a constant such that |
| 515 | /// x op Id === x and Id op x === x for all x. |
| 516 | /// |
| 517 | /// In LLVM, the Xor operator is nilpotent. |
| 518 | /// |
| 519 | bool Instruction::isNilpotent(unsigned Opcode) { |
| 520 | return Opcode == Xor; |
| 521 | } |
| 522 | |
| Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 523 | Instruction *Instruction::clone() const { |
| 524 | Instruction *New = clone_impl(); |
| 525 | New->SubclassOptionalData = SubclassOptionalData; |
| Chris Lattner | 508b19a | 2009-12-29 07:44:16 +0000 | [diff] [blame] | 526 | if (!hasMetadata()) |
| 527 | return New; |
| Michael Ilseman | 407a616 | 2012-11-15 22:34:00 +0000 | [diff] [blame] | 528 | |
| Chris Lattner | 508b19a | 2009-12-29 07:44:16 +0000 | [diff] [blame] | 529 | // Otherwise, enumerate and copy over metadata from the old instruction to the |
| 530 | // new one. |
| 531 | SmallVector<std::pair<unsigned, MDNode*>, 4> TheMDs; |
| Chris Lattner | 4baa510 | 2011-07-14 18:57:51 +0000 | [diff] [blame] | 532 | getAllMetadataOtherThanDebugLoc(TheMDs); |
| Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 533 | for (const auto &MD : TheMDs) |
| 534 | New->setMetadata(MD.first, MD.second); |
| Michael Ilseman | 407a616 | 2012-11-15 22:34:00 +0000 | [diff] [blame] | 535 | |
| Chris Lattner | 4baa510 | 2011-07-14 18:57:51 +0000 | [diff] [blame] | 536 | New->setDebugLoc(getDebugLoc()); |
| Devang Patel | 50b6e33 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 537 | return New; |
| 538 | } |