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