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 | |
Xinliang David Li | dc49140 | 2016-08-23 15:39:03 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/DenseSet.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 15 | #include "llvm/IR/Instruction.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 16 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Constants.h" |
| 18 | #include "llvm/IR/Instructions.h" |
| 19 | #include "llvm/IR/Module.h" |
Dehao Chen | e593049 | 2017-03-20 16:40:44 +0000 | [diff] [blame^] | 20 | #include "llvm/IR/MDBuilder.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Operator.h" |
| 22 | #include "llvm/IR/Type.h" |
Chris Lattner | 0e03ab6 | 2003-11-20 17:45:12 +0000 | [diff] [blame] | 23 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 24 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 25 | Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, |
Chris Lattner | 2195fc4 | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 26 | Instruction *InsertBefore) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 27 | : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) { |
Chris Lattner | 3c78744 | 2002-09-10 15:45:53 +0000 | [diff] [blame] | 28 | |
| 29 | // If requested, insert this instruction into a basic block... |
| 30 | if (InsertBefore) { |
Yaron Keren | 43b4d38 | 2015-06-15 17:03:35 +0000 | [diff] [blame] | 31 | BasicBlock *BB = InsertBefore->getParent(); |
| 32 | assert(BB && "Instruction to insert before is not in a basic block!"); |
Duncan P. N. Exon Smith | 52888a6 | 2015-10-08 23:49:46 +0000 | [diff] [blame] | 33 | BB->getInstList().insert(InsertBefore->getIterator(), this); |
Chris Lattner | 3c78744 | 2002-09-10 15:45:53 +0000 | [diff] [blame] | 34 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 35 | } |
| 36 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 37 | Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, |
Chris Lattner | 2195fc4 | 2007-02-24 00:55:48 +0000 | [diff] [blame] | 38 | BasicBlock *InsertAtEnd) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 39 | : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) { |
Alkis Evlogimenos | 9f0fdf7 | 2004-05-26 21:41:09 +0000 | [diff] [blame] | 40 | |
| 41 | // append this instruction into the basic block |
| 42 | assert(InsertAtEnd && "Basic block to append to may not be NULL!"); |
| 43 | InsertAtEnd->getInstList().push_back(this); |
Chris Lattner | 0f04816 | 2007-02-13 07:54:42 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | |
Chris Lattner | 1c12a88 | 2006-06-21 16:53:47 +0000 | [diff] [blame] | 47 | // Out of line virtual method, so the vtable, etc has a home. |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 48 | Instruction::~Instruction() { |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 49 | assert(!Parent && "Instruction still linked in the program!"); |
Dan Gohman | 48a995f | 2010-07-20 22:25:04 +0000 | [diff] [blame] | 50 | if (hasMetadataHashEntry()) |
| 51 | clearMetadataHashEntries(); |
Chris Lattner | 1c12a88 | 2006-06-21 16:53:47 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | |
Chris Lattner | 9ed7aef | 2002-09-06 21:33:15 +0000 | [diff] [blame] | 55 | void Instruction::setParent(BasicBlock *P) { |
| 56 | Parent = P; |
| 57 | } |
| 58 | |
Mehdi Amini | 9a9738f | 2015-03-03 22:01:13 +0000 | [diff] [blame] | 59 | const Module *Instruction::getModule() const { |
| 60 | return getParent()->getModule(); |
| 61 | } |
| 62 | |
Philip Reames | 38840245 | 2015-05-26 21:03:23 +0000 | [diff] [blame] | 63 | Module *Instruction::getModule() { |
| 64 | return getParent()->getModule(); |
| 65 | } |
| 66 | |
Sanjoy Das | 411fdcd | 2015-12-08 00:13:12 +0000 | [diff] [blame] | 67 | Function *Instruction::getFunction() { return getParent()->getParent(); } |
| 68 | |
| 69 | const Function *Instruction::getFunction() const { |
| 70 | return getParent()->getParent(); |
| 71 | } |
Philip Reames | 38840245 | 2015-05-26 21:03:23 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 73 | void Instruction::removeFromParent() { |
Duncan P. N. Exon Smith | 52888a6 | 2015-10-08 23:49:46 +0000 | [diff] [blame] | 74 | getParent()->getInstList().remove(getIterator()); |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Daniel Berlin | a5af720 | 2015-04-02 00:03:07 +0000 | [diff] [blame] | 77 | iplist<Instruction>::iterator Instruction::eraseFromParent() { |
Duncan P. N. Exon Smith | 52888a6 | 2015-10-08 23:49:46 +0000 | [diff] [blame] | 78 | return getParent()->getInstList().erase(getIterator()); |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 79 | } |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 80 | |
Sanjay Patel | f5c2d12 | 2016-01-06 00:18:29 +0000 | [diff] [blame] | 81 | /// Insert an unlinked instruction into a basic block immediately before the |
| 82 | /// specified instruction. |
Owen Anderson | 2505e0c | 2008-06-17 18:29:27 +0000 | [diff] [blame] | 83 | void Instruction::insertBefore(Instruction *InsertPos) { |
Duncan P. N. Exon Smith | 52888a6 | 2015-10-08 23:49:46 +0000 | [diff] [blame] | 84 | InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this); |
Owen Anderson | 2505e0c | 2008-06-17 18:29:27 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Sanjay Patel | f5c2d12 | 2016-01-06 00:18:29 +0000 | [diff] [blame] | 87 | /// Insert an unlinked instruction into a basic block immediately after the |
| 88 | /// specified instruction. |
Chris Lattner | 6e66d0a | 2009-01-13 07:43:51 +0000 | [diff] [blame] | 89 | void Instruction::insertAfter(Instruction *InsertPos) { |
Duncan P. N. Exon Smith | 52888a6 | 2015-10-08 23:49:46 +0000 | [diff] [blame] | 90 | InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(), |
| 91 | this); |
Chris Lattner | 6e66d0a | 2009-01-13 07:43:51 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Sanjay Patel | f5c2d12 | 2016-01-06 00:18:29 +0000 | [diff] [blame] | 94 | /// Unlink this instruction from its current basic block and insert it into the |
| 95 | /// basic block that MovePos lives in, right before MovePos. |
Chris Lattner | 24a0a43 | 2005-08-08 05:21:50 +0000 | [diff] [blame] | 96 | void Instruction::moveBefore(Instruction *MovePos) { |
Duncan P. N. Exon Smith | 362d1204 | 2016-08-17 01:54:41 +0000 | [diff] [blame] | 97 | moveBefore(*MovePos->getParent(), MovePos->getIterator()); |
| 98 | } |
| 99 | |
| 100 | void Instruction::moveBefore(BasicBlock &BB, |
| 101 | SymbolTableList<Instruction>::iterator I) { |
| 102 | assert(I == BB.end() || I->getParent() == &BB); |
| 103 | BB.getInstList().splice(I, getParent()->getInstList(), getIterator()); |
Chris Lattner | 24a0a43 | 2005-08-08 05:21:50 +0000 | [diff] [blame] | 104 | } |
| 105 | |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 106 | void Instruction::setHasNoUnsignedWrap(bool b) { |
| 107 | cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b); |
| 108 | } |
| 109 | |
| 110 | void Instruction::setHasNoSignedWrap(bool b) { |
| 111 | cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b); |
| 112 | } |
| 113 | |
| 114 | void Instruction::setIsExact(bool b) { |
| 115 | cast<PossiblyExactOperator>(this)->setIsExact(b); |
| 116 | } |
| 117 | |
| 118 | bool Instruction::hasNoUnsignedWrap() const { |
| 119 | return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap(); |
| 120 | } |
| 121 | |
| 122 | bool Instruction::hasNoSignedWrap() const { |
| 123 | return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap(); |
| 124 | } |
| 125 | |
Sanjoy Das | aa722ae | 2017-02-23 22:50:52 +0000 | [diff] [blame] | 126 | void Instruction::dropPoisonGeneratingFlags() { |
| 127 | switch (getOpcode()) { |
| 128 | case Instruction::Add: |
| 129 | case Instruction::Sub: |
| 130 | case Instruction::Mul: |
| 131 | case Instruction::Shl: |
| 132 | cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(false); |
| 133 | cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(false); |
| 134 | break; |
| 135 | |
| 136 | case Instruction::UDiv: |
| 137 | case Instruction::SDiv: |
| 138 | case Instruction::AShr: |
| 139 | case Instruction::LShr: |
| 140 | cast<PossiblyExactOperator>(this)->setIsExact(false); |
| 141 | break; |
| 142 | |
| 143 | case Instruction::GetElementPtr: |
| 144 | cast<GetElementPtrInst>(this)->setIsInBounds(false); |
| 145 | break; |
| 146 | } |
| 147 | } |
| 148 | |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 149 | bool Instruction::isExact() const { |
| 150 | return cast<PossiblyExactOperator>(this)->isExact(); |
| 151 | } |
| 152 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 153 | void Instruction::setHasUnsafeAlgebra(bool B) { |
| 154 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 155 | cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B); |
| 156 | } |
| 157 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 158 | void Instruction::setHasNoNaNs(bool B) { |
| 159 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 160 | cast<FPMathOperator>(this)->setHasNoNaNs(B); |
| 161 | } |
| 162 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 163 | void Instruction::setHasNoInfs(bool B) { |
| 164 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 165 | cast<FPMathOperator>(this)->setHasNoInfs(B); |
| 166 | } |
| 167 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 168 | void Instruction::setHasNoSignedZeros(bool B) { |
| 169 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 170 | cast<FPMathOperator>(this)->setHasNoSignedZeros(B); |
| 171 | } |
| 172 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 173 | void Instruction::setHasAllowReciprocal(bool B) { |
| 174 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 175 | cast<FPMathOperator>(this)->setHasAllowReciprocal(B); |
| 176 | } |
| 177 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 178 | void Instruction::setFastMathFlags(FastMathFlags FMF) { |
| 179 | assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); |
| 180 | cast<FPMathOperator>(this)->setFastMathFlags(FMF); |
| 181 | } |
| 182 | |
Sanjay Patel | b2325b9 | 2014-09-02 20:03:00 +0000 | [diff] [blame] | 183 | void Instruction::copyFastMathFlags(FastMathFlags FMF) { |
| 184 | assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op"); |
| 185 | cast<FPMathOperator>(this)->copyFastMathFlags(FMF); |
| 186 | } |
| 187 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 188 | bool Instruction::hasUnsafeAlgebra() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 189 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 190 | return cast<FPMathOperator>(this)->hasUnsafeAlgebra(); |
| 191 | } |
| 192 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 193 | bool Instruction::hasNoNaNs() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 194 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 195 | return cast<FPMathOperator>(this)->hasNoNaNs(); |
| 196 | } |
| 197 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 198 | bool Instruction::hasNoInfs() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 199 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 200 | return cast<FPMathOperator>(this)->hasNoInfs(); |
| 201 | } |
| 202 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 203 | bool Instruction::hasNoSignedZeros() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 204 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 205 | return cast<FPMathOperator>(this)->hasNoSignedZeros(); |
| 206 | } |
| 207 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 208 | bool Instruction::hasAllowReciprocal() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 209 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 210 | return cast<FPMathOperator>(this)->hasAllowReciprocal(); |
| 211 | } |
| 212 | |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 213 | FastMathFlags Instruction::getFastMathFlags() const { |
Chad Rosier | 829cc2e | 2014-06-11 18:26:29 +0000 | [diff] [blame] | 214 | assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op"); |
Michael Ilseman | 149209e | 2012-11-27 00:41:22 +0000 | [diff] [blame] | 215 | return cast<FPMathOperator>(this)->getFastMathFlags(); |
| 216 | } |
Chris Lattner | 24a0a43 | 2005-08-08 05:21:50 +0000 | [diff] [blame] | 217 | |
Michael Ilseman | 05d3bf77a | 2012-11-29 21:25:12 +0000 | [diff] [blame] | 218 | void Instruction::copyFastMathFlags(const Instruction *I) { |
Sanjay Patel | b2325b9 | 2014-09-02 20:03:00 +0000 | [diff] [blame] | 219 | copyFastMathFlags(I->getFastMathFlags()); |
Michael Ilseman | 05d3bf77a | 2012-11-29 21:25:12 +0000 | [diff] [blame] | 220 | } |
| 221 | |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 222 | void Instruction::copyIRFlags(const Value *V) { |
| 223 | // Copy the wrapping flags. |
| 224 | if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) { |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 225 | if (isa<OverflowingBinaryOperator>(this)) { |
| 226 | setHasNoSignedWrap(OB->hasNoSignedWrap()); |
| 227 | setHasNoUnsignedWrap(OB->hasNoUnsignedWrap()); |
| 228 | } |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | // Copy the exact flag. |
| 232 | if (auto *PE = dyn_cast<PossiblyExactOperator>(V)) |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 233 | if (isa<PossiblyExactOperator>(this)) |
| 234 | setIsExact(PE->isExact()); |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 235 | |
| 236 | // Copy the fast-math flags. |
| 237 | if (auto *FP = dyn_cast<FPMathOperator>(V)) |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 238 | if (isa<FPMathOperator>(this)) |
| 239 | copyFastMathFlags(FP->getFastMathFlags()); |
David Majnemer | 92f84cc | 2016-07-15 05:02:31 +0000 | [diff] [blame] | 240 | |
| 241 | if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V)) |
| 242 | if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this)) |
| 243 | DestGEP->setIsInBounds(SrcGEP->isInBounds() | DestGEP->isInBounds()); |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | void Instruction::andIRFlags(const Value *V) { |
| 247 | if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) { |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 248 | if (isa<OverflowingBinaryOperator>(this)) { |
| 249 | setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap()); |
| 250 | setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap()); |
| 251 | } |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | if (auto *PE = dyn_cast<PossiblyExactOperator>(V)) |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 255 | if (isa<PossiblyExactOperator>(this)) |
| 256 | setIsExact(isExact() & PE->isExact()); |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 257 | |
| 258 | if (auto *FP = dyn_cast<FPMathOperator>(V)) { |
David Majnemer | d0ce8f1 | 2016-04-22 06:37:51 +0000 | [diff] [blame] | 259 | if (isa<FPMathOperator>(this)) { |
| 260 | FastMathFlags FM = getFastMathFlags(); |
| 261 | FM &= FP->getFastMathFlags(); |
| 262 | copyFastMathFlags(FM); |
| 263 | } |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 264 | } |
David Majnemer | 92f84cc | 2016-07-15 05:02:31 +0000 | [diff] [blame] | 265 | |
| 266 | if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V)) |
| 267 | if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this)) |
| 268 | DestGEP->setIsInBounds(SrcGEP->isInBounds() & DestGEP->isInBounds()); |
David Majnemer | 9554c13 | 2016-04-22 06:37:45 +0000 | [diff] [blame] | 269 | } |
Michael Ilseman | 05d3bf77a | 2012-11-29 21:25:12 +0000 | [diff] [blame] | 270 | |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 271 | const char *Instruction::getOpcodeName(unsigned OpCode) { |
| 272 | switch (OpCode) { |
| 273 | // Terminators |
Chris Lattner | b193ff8 | 2002-08-14 18:18:02 +0000 | [diff] [blame] | 274 | case Ret: return "ret"; |
| 275 | case Br: return "br"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 276 | case Switch: return "switch"; |
Chris Lattner | d04cb6d | 2009-10-28 00:19:10 +0000 | [diff] [blame] | 277 | case IndirectBr: return "indirectbr"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 278 | case Invoke: return "invoke"; |
Bill Wendling | f891bf8 | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 279 | case Resume: return "resume"; |
Chris Lattner | 5e0b9f2 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 280 | case Unreachable: return "unreachable"; |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 281 | case CleanupRet: return "cleanupret"; |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 282 | case CatchRet: return "catchret"; |
| 283 | case CatchPad: return "catchpad"; |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 284 | case CatchSwitch: return "catchswitch"; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 285 | |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 286 | // Standard binary operators... |
| 287 | case Add: return "add"; |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 288 | case FAdd: return "fadd"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 289 | case Sub: return "sub"; |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 290 | case FSub: return "fsub"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 291 | case Mul: return "mul"; |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 292 | case FMul: return "fmul"; |
Reid Spencer | 7e80b0b | 2006-10-26 06:15:43 +0000 | [diff] [blame] | 293 | case UDiv: return "udiv"; |
| 294 | case SDiv: return "sdiv"; |
| 295 | case FDiv: return "fdiv"; |
Reid Spencer | 7eb55b3 | 2006-11-02 01:53:59 +0000 | [diff] [blame] | 296 | case URem: return "urem"; |
| 297 | case SRem: return "srem"; |
| 298 | case FRem: return "frem"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 299 | |
| 300 | // Logical operators... |
| 301 | case And: return "and"; |
| 302 | case Or : return "or"; |
| 303 | case Xor: return "xor"; |
| 304 | |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 305 | // Memory instructions... |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 306 | case Alloca: return "alloca"; |
| 307 | case Load: return "load"; |
| 308 | case Store: return "store"; |
Eli Friedman | c9a551e | 2011-07-28 21:48:00 +0000 | [diff] [blame] | 309 | case AtomicCmpXchg: return "cmpxchg"; |
| 310 | case AtomicRMW: return "atomicrmw"; |
Eli Friedman | fee02c6 | 2011-07-25 23:16:38 +0000 | [diff] [blame] | 311 | case Fence: return "fence"; |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 312 | case GetElementPtr: return "getelementptr"; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 313 | |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 314 | // Convert instructions... |
Matt Arsenault | b03bd4d | 2013-11-15 01:34:59 +0000 | [diff] [blame] | 315 | case Trunc: return "trunc"; |
| 316 | case ZExt: return "zext"; |
| 317 | case SExt: return "sext"; |
| 318 | case FPTrunc: return "fptrunc"; |
| 319 | case FPExt: return "fpext"; |
| 320 | case FPToUI: return "fptoui"; |
| 321 | case FPToSI: return "fptosi"; |
| 322 | case UIToFP: return "uitofp"; |
| 323 | case SIToFP: return "sitofp"; |
| 324 | case IntToPtr: return "inttoptr"; |
| 325 | case PtrToInt: return "ptrtoint"; |
| 326 | case BitCast: return "bitcast"; |
| 327 | case AddrSpaceCast: return "addrspacecast"; |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 328 | |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 329 | // Other instructions... |
Reid Spencer | 45e5239 | 2006-12-03 06:27:29 +0000 | [diff] [blame] | 330 | case ICmp: return "icmp"; |
| 331 | case FCmp: return "fcmp"; |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 332 | case PHI: return "phi"; |
| 333 | case Select: return "select"; |
| 334 | case Call: return "call"; |
| 335 | case Shl: return "shl"; |
| 336 | case LShr: return "lshr"; |
| 337 | case AShr: return "ashr"; |
| 338 | case VAArg: return "va_arg"; |
Robert Bocchino | 2300448 | 2006-01-10 19:05:34 +0000 | [diff] [blame] | 339 | case ExtractElement: return "extractelement"; |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 340 | case InsertElement: return "insertelement"; |
| 341 | case ShuffleVector: return "shufflevector"; |
Matthijs Kooijman | bf8d6ce | 2008-05-30 10:31:54 +0000 | [diff] [blame] | 342 | case ExtractValue: return "extractvalue"; |
| 343 | case InsertValue: return "insertvalue"; |
Bill Wendling | fae1475 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 344 | case LandingPad: return "landingpad"; |
Joseph Tremoulet | 8220bcc | 2015-08-23 00:26:33 +0000 | [diff] [blame] | 345 | case CleanupPad: return "cleanuppad"; |
Chris Lattner | f70da10 | 2003-05-08 02:44:12 +0000 | [diff] [blame] | 346 | |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 347 | default: return "<Invalid operator> "; |
| 348 | } |
Vikram S. Adve | 8aee796 | 2002-07-14 23:09:40 +0000 | [diff] [blame] | 349 | } |
Chris Lattner | cab6c33 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 350 | |
Sanjay Patel | a40c479 | 2016-10-05 18:51:12 +0000 | [diff] [blame] | 351 | /// Return true if both instructions have the same special state. This must be |
JF Bastien | 3b6eaac | 2016-04-11 22:30:37 +0000 | [diff] [blame] | 352 | /// kept in sync with FunctionComparator::cmpOperations in |
| 353 | /// lib/Transforms/IPO/MergeFunctions.cpp. |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 354 | static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, |
| 355 | bool IgnoreAlignment = false) { |
| 356 | assert(I1->getOpcode() == I2->getOpcode() && |
| 357 | "Can not compare special state of different instructions"); |
| 358 | |
JF Bastien | 5502e91 | 2016-04-12 18:06:55 +0000 | [diff] [blame] | 359 | if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1)) |
| 360 | return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() && |
| 361 | (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() || |
| 362 | IgnoreAlignment); |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 363 | if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) |
| 364 | return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && |
| 365 | (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || |
| 366 | IgnoreAlignment) && |
| 367 | LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && |
| 368 | LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope(); |
| 369 | if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) |
| 370 | return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && |
| 371 | (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || |
| 372 | IgnoreAlignment) && |
| 373 | SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() && |
| 374 | SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope(); |
| 375 | if (const CmpInst *CI = dyn_cast<CmpInst>(I1)) |
| 376 | return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate(); |
| 377 | if (const CallInst *CI = dyn_cast<CallInst>(I1)) |
| 378 | return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() && |
| 379 | CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() && |
Sanjoy Das | 2de4d0a | 2015-12-14 19:11:35 +0000 | [diff] [blame] | 380 | CI->getAttributes() == cast<CallInst>(I2)->getAttributes() && |
| 381 | CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2)); |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 382 | if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1)) |
| 383 | return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() && |
Sanjoy Das | 2de4d0a | 2015-12-14 19:11:35 +0000 | [diff] [blame] | 384 | CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() && |
| 385 | CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2)); |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 386 | if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) |
| 387 | return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); |
| 388 | if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) |
| 389 | return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices(); |
| 390 | if (const FenceInst *FI = dyn_cast<FenceInst>(I1)) |
| 391 | return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() && |
| 392 | FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope(); |
| 393 | if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1)) |
| 394 | return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() && |
Tim Northover | 420a216 | 2014-06-13 14:24:07 +0000 | [diff] [blame] | 395 | CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() && |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 396 | CXI->getSuccessOrdering() == |
| 397 | cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() && |
| 398 | CXI->getFailureOrdering() == |
| 399 | cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() && |
| 400 | CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope(); |
| 401 | if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1)) |
| 402 | return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() && |
| 403 | RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() && |
| 404 | RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() && |
| 405 | RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope(); |
| 406 | |
| 407 | return true; |
| 408 | } |
| 409 | |
Chris Lattner | 378b041 | 2008-11-27 08:39:18 +0000 | [diff] [blame] | 410 | bool Instruction::isIdenticalTo(const Instruction *I) const { |
Dan Gohman | 23d2c76 | 2009-08-25 22:24:20 +0000 | [diff] [blame] | 411 | return isIdenticalToWhenDefined(I) && |
Dan Gohman | c8a27f2 | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 412 | SubclassOptionalData == I->SubclassOptionalData; |
| 413 | } |
| 414 | |
Dan Gohman | c8a27f2 | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 415 | bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const { |
Chris Lattner | 0b6ebd8d | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 416 | if (getOpcode() != I->getOpcode() || |
| 417 | getNumOperands() != I->getNumOperands() || |
| 418 | getType() != I->getType()) |
| 419 | return false; |
| 420 | |
NAKAMURA Takumi | aaffd70 | 2014-06-02 01:35:34 +0000 | [diff] [blame] | 421 | // If both instructions have no operands, they are identical. |
| 422 | if (getNumOperands() == 0 && I->getNumOperands() == 0) |
| 423 | return haveSameSpecialState(this, I); |
| 424 | |
Chris Lattner | 0b6ebd8d | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 425 | // We have two instructions of identical opcode and #operands. Check to see |
| 426 | // if all operands are the same. |
Benjamin Kramer | 3ad5c96 | 2014-03-10 15:03:06 +0000 | [diff] [blame] | 427 | if (!std::equal(op_begin(), op_end(), I->op_begin())) |
| 428 | return false; |
Chris Lattner | 0b6ebd8d | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 429 | |
Joel Jones | 3d90a9a | 2012-05-10 15:59:41 +0000 | [diff] [blame] | 430 | if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) { |
| 431 | const PHINode *otherPHI = cast<PHINode>(I); |
Benjamin Kramer | 3ad5c96 | 2014-03-10 15:03:06 +0000 | [diff] [blame] | 432 | return std::equal(thisPHI->block_begin(), thisPHI->block_end(), |
| 433 | otherPHI->block_begin()); |
Joel Jones | 3d90a9a | 2012-05-10 15:59:41 +0000 | [diff] [blame] | 434 | } |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 435 | |
| 436 | return haveSameSpecialState(this, I); |
Chris Lattner | 0b6ebd8d | 2004-11-30 02:51:53 +0000 | [diff] [blame] | 437 | } |
| 438 | |
JF Bastien | 3b6eaac | 2016-04-11 22:30:37 +0000 | [diff] [blame] | 439 | // Keep this in sync with FunctionComparator::cmpOperations in |
Dan Gohman | 17fb0d2 | 2009-06-12 19:03:05 +0000 | [diff] [blame] | 440 | // lib/Transforms/IPO/MergeFunctions.cpp. |
Hal Finkel | 74e5225 | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 441 | bool Instruction::isSameOperationAs(const Instruction *I, |
| 442 | unsigned flags) const { |
| 443 | bool IgnoreAlignment = flags & CompareIgnoringAlignment; |
| 444 | bool UseScalarTypes = flags & CompareUsingScalarTypes; |
| 445 | |
Dan Gohman | 17fb0d2 | 2009-06-12 19:03:05 +0000 | [diff] [blame] | 446 | if (getOpcode() != I->getOpcode() || |
| 447 | getNumOperands() != I->getNumOperands() || |
Hal Finkel | 74e5225 | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 448 | (UseScalarTypes ? |
| 449 | getType()->getScalarType() != I->getType()->getScalarType() : |
| 450 | getType() != I->getType())) |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 451 | return false; |
| 452 | |
| 453 | // We have two instructions of identical opcode and #operands. Check to see |
| 454 | // if all operands are the same type |
| 455 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Hal Finkel | 74e5225 | 2012-06-28 05:42:26 +0000 | [diff] [blame] | 456 | if (UseScalarTypes ? |
| 457 | getOperand(i)->getType()->getScalarType() != |
| 458 | I->getOperand(i)->getType()->getScalarType() : |
| 459 | getOperand(i)->getType() != I->getOperand(i)->getType()) |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 460 | return false; |
| 461 | |
Arnaud A. de Grandmaison | 6a90dc4 | 2014-05-27 21:35:46 +0000 | [diff] [blame] | 462 | return haveSameSpecialState(this, I, IgnoreAlignment); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 465 | bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 466 | for (const Use &U : uses()) { |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 467 | // PHI nodes uses values in the corresponding predecessor block. For other |
| 468 | // 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] | 469 | const Instruction *I = cast<Instruction>(U.getUser()); |
| 470 | const PHINode *PN = dyn_cast<PHINode>(I); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 471 | if (!PN) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 472 | if (I->getParent() != BB) |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 473 | return true; |
| 474 | continue; |
| 475 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 476 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 477 | if (PN->getIncomingBlock(U) != BB) |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 478 | return true; |
| 479 | } |
Daniel Dunbar | 7d6781b | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 480 | return false; |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Chris Lattner | 8462711 | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 483 | bool Instruction::mayReadFromMemory() const { |
| 484 | switch (getOpcode()) { |
| 485 | default: return false; |
Chris Lattner | 8462711 | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 486 | case Instruction::VAArg: |
Chris Lattner | 954907a | 2008-05-08 21:58:49 +0000 | [diff] [blame] | 487 | case Instruction::Load: |
Eli Friedman | 89b694b | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 488 | case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory |
Eli Friedman | adec587 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 489 | case Instruction::AtomicCmpXchg: |
| 490 | case Instruction::AtomicRMW: |
David Majnemer | 880c2cb | 2015-09-10 18:50:09 +0000 | [diff] [blame] | 491 | case Instruction::CatchPad: |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 492 | case Instruction::CatchRet: |
Chris Lattner | 8462711 | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 493 | return true; |
| 494 | case Instruction::Call: |
| 495 | return !cast<CallInst>(this)->doesNotAccessMemory(); |
| 496 | case Instruction::Invoke: |
| 497 | return !cast<InvokeInst>(this)->doesNotAccessMemory(); |
Chris Lattner | 954907a | 2008-05-08 21:58:49 +0000 | [diff] [blame] | 498 | case Instruction::Store: |
Eli Friedman | b9d5a63 | 2011-08-15 21:00:18 +0000 | [diff] [blame] | 499 | return !cast<StoreInst>(this)->isUnordered(); |
Chris Lattner | 8462711 | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 500 | } |
| 501 | } |
Chris Lattner | 8ec6e8a | 2008-04-20 22:11:30 +0000 | [diff] [blame] | 502 | |
Chris Lattner | c992e18 | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 503 | bool Instruction::mayWriteToMemory() const { |
| 504 | switch (getOpcode()) { |
| 505 | default: return false; |
Eli Friedman | 89b694b | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 506 | case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory |
Duncan Sands | 38ef3a8 | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 507 | case Instruction::Store: |
Chris Lattner | c992e18 | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 508 | case Instruction::VAArg: |
Eli Friedman | adec587 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 509 | case Instruction::AtomicCmpXchg: |
| 510 | case Instruction::AtomicRMW: |
David Majnemer | 880c2cb | 2015-09-10 18:50:09 +0000 | [diff] [blame] | 511 | case Instruction::CatchPad: |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 512 | case Instruction::CatchRet: |
Chris Lattner | c992e18 | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 513 | return true; |
| 514 | case Instruction::Call: |
Duncan Sands | 38ef3a8 | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 515 | return !cast<CallInst>(this)->onlyReadsMemory(); |
Chris Lattner | 8462711 | 2008-05-08 17:16:51 +0000 | [diff] [blame] | 516 | case Instruction::Invoke: |
| 517 | return !cast<InvokeInst>(this)->onlyReadsMemory(); |
Chris Lattner | c992e18 | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 518 | case Instruction::Load: |
Eli Friedman | b9d5a63 | 2011-08-15 21:00:18 +0000 | [diff] [blame] | 519 | return !cast<LoadInst>(this)->isUnordered(); |
Chris Lattner | c992e18 | 2007-02-15 23:15:00 +0000 | [diff] [blame] | 520 | } |
| 521 | } |
Chris Lattner | cab6c33 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 522 | |
Robin Morisset | ed3d48f | 2014-09-03 21:29:59 +0000 | [diff] [blame] | 523 | bool Instruction::isAtomic() const { |
| 524 | switch (getOpcode()) { |
| 525 | default: |
| 526 | return false; |
| 527 | case Instruction::AtomicCmpXchg: |
| 528 | case Instruction::AtomicRMW: |
| 529 | case Instruction::Fence: |
| 530 | return true; |
| 531 | case Instruction::Load: |
JF Bastien | 800f87a | 2016-04-06 21:19:33 +0000 | [diff] [blame] | 532 | return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic; |
Robin Morisset | ed3d48f | 2014-09-03 21:29:59 +0000 | [diff] [blame] | 533 | case Instruction::Store: |
JF Bastien | 800f87a | 2016-04-06 21:19:33 +0000 | [diff] [blame] | 534 | return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic; |
Robin Morisset | ed3d48f | 2014-09-03 21:29:59 +0000 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Duncan Sands | 1efabaa | 2009-05-06 06:49:50 +0000 | [diff] [blame] | 538 | bool Instruction::mayThrow() const { |
| 539 | if (const CallInst *CI = dyn_cast<CallInst>(this)) |
| 540 | return !CI->doesNotThrow(); |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 541 | if (const auto *CRI = dyn_cast<CleanupReturnInst>(this)) |
| 542 | return CRI->unwindsToCaller(); |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 543 | if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this)) |
| 544 | return CatchSwitch->unwindsToCaller(); |
Bill Wendling | d7c6c91 | 2011-08-16 21:15:50 +0000 | [diff] [blame] | 545 | return isa<ResumeInst>(this); |
Duncan Sands | 1efabaa | 2009-05-06 06:49:50 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Sanjay Patel | a40c479 | 2016-10-05 18:51:12 +0000 | [diff] [blame] | 548 | /// Return true if the instruction is associative: |
Chris Lattner | cab6c33 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 549 | /// |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 550 | /// 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] | 551 | /// |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 552 | /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative. |
Chris Lattner | cab6c33 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 553 | /// |
Duncan Sands | 70db5e7 | 2010-12-20 13:10:23 +0000 | [diff] [blame] | 554 | bool Instruction::isAssociative(unsigned Opcode) { |
Dan Gohman | a5b9645 | 2009-06-04 22:49:04 +0000 | [diff] [blame] | 555 | return Opcode == And || Opcode == Or || Opcode == Xor || |
| 556 | Opcode == Add || Opcode == Mul; |
Chris Lattner | cab6c33 | 2002-10-31 04:14:01 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Shuxin Yang | 01ab5d7 | 2012-11-29 01:47:31 +0000 | [diff] [blame] | 559 | bool Instruction::isAssociative() const { |
| 560 | unsigned Opcode = getOpcode(); |
| 561 | if (isAssociative(Opcode)) |
| 562 | return true; |
| 563 | |
| 564 | switch (Opcode) { |
| 565 | case FMul: |
| 566 | case FAdd: |
| 567 | return cast<FPMathOperator>(this)->hasUnsafeAlgebra(); |
| 568 | default: |
| 569 | return false; |
| 570 | } |
| 571 | } |
| 572 | |
Pete Cooper | 75403d7 | 2015-06-24 20:22:23 +0000 | [diff] [blame] | 573 | Instruction *Instruction::cloneImpl() const { |
| 574 | llvm_unreachable("Subclass of Instruction failed to implement cloneImpl"); |
| 575 | } |
| 576 | |
Xinliang David Li | dc49140 | 2016-08-23 15:39:03 +0000 | [diff] [blame] | 577 | void Instruction::swapProfMetadata() { |
| 578 | MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); |
| 579 | if (!ProfileData || ProfileData->getNumOperands() != 3 || |
| 580 | !isa<MDString>(ProfileData->getOperand(0))) |
| 581 | return; |
| 582 | |
| 583 | MDString *MDName = cast<MDString>(ProfileData->getOperand(0)); |
| 584 | if (MDName->getString() != "branch_weights") |
| 585 | return; |
| 586 | |
| 587 | // The first operand is the name. Fetch them backwards and build a new one. |
| 588 | Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2), |
| 589 | ProfileData->getOperand(1)}; |
| 590 | setMetadata(LLVMContext::MD_prof, |
| 591 | MDNode::get(ProfileData->getContext(), Ops)); |
| 592 | } |
| 593 | |
Xinliang David Li | dc49140 | 2016-08-23 15:39:03 +0000 | [diff] [blame] | 594 | void Instruction::copyMetadata(const Instruction &SrcInst, |
| 595 | ArrayRef<unsigned> WL) { |
| 596 | if (!SrcInst.hasMetadata()) |
| 597 | return; |
| 598 | |
| 599 | DenseSet<unsigned> WLS; |
| 600 | for (unsigned M : WL) |
| 601 | WLS.insert(M); |
| 602 | |
| 603 | // Otherwise, enumerate and copy over metadata from the old instruction to the |
| 604 | // new one. |
| 605 | SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs; |
| 606 | SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs); |
| 607 | for (const auto &MD : TheMDs) { |
| 608 | if (WL.empty() || WLS.count(MD.first)) |
| 609 | setMetadata(MD.first, MD.second); |
| 610 | } |
| 611 | if (WL.empty() || WLS.count(LLVMContext::MD_dbg)) |
| 612 | setDebugLoc(SrcInst.getDebugLoc()); |
| 613 | return; |
| 614 | } |
| 615 | |
Devang Patel | 11cf3f4 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 616 | Instruction *Instruction::clone() const { |
Pete Cooper | 75403d7 | 2015-06-24 20:22:23 +0000 | [diff] [blame] | 617 | Instruction *New = nullptr; |
| 618 | switch (getOpcode()) { |
| 619 | default: |
| 620 | llvm_unreachable("Unhandled Opcode."); |
| 621 | #define HANDLE_INST(num, opc, clas) \ |
| 622 | case Instruction::opc: \ |
| 623 | New = cast<clas>(this)->cloneImpl(); \ |
| 624 | break; |
| 625 | #include "llvm/IR/Instruction.def" |
| 626 | #undef HANDLE_INST |
| 627 | } |
| 628 | |
Devang Patel | 11cf3f4 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 629 | New->SubclassOptionalData = SubclassOptionalData; |
Xinliang David Li | dc49140 | 2016-08-23 15:39:03 +0000 | [diff] [blame] | 630 | New->copyMetadata(*this); |
Devang Patel | 11cf3f4 | 2009-10-27 22:16:29 +0000 | [diff] [blame] | 631 | return New; |
| 632 | } |
Dehao Chen | e593049 | 2017-03-20 16:40:44 +0000 | [diff] [blame^] | 633 | |
| 634 | void Instruction::updateProfWeight(uint64_t S, uint64_t T) { |
| 635 | auto *ProfileData = getMetadata(LLVMContext::MD_prof); |
| 636 | if (ProfileData == nullptr) |
| 637 | return; |
| 638 | |
| 639 | auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0)); |
| 640 | if (!ProfDataName || !ProfDataName->getString().equals("branch_weights")) |
| 641 | return; |
| 642 | |
| 643 | SmallVector<uint32_t, 4> Weights; |
| 644 | for (unsigned i = 1; i < ProfileData->getNumOperands(); i++) { |
| 645 | // Using APInt::div may be expensive, but most cases should fit in 64 bits. |
| 646 | APInt Val(128, mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i)) |
| 647 | ->getValue() |
| 648 | .getZExtValue()); |
| 649 | Val *= APInt(128, S); |
| 650 | Weights.push_back(Val.udiv(APInt(128, T)).getLimitedValue()); |
| 651 | } |
| 652 | MDBuilder MDB(getContext()); |
| 653 | setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights)); |
| 654 | } |