blob: 2fa03489081d0d8d0f39cc003840744aa4ffeda4 [file] [log] [blame]
Chris Lattner44d2c352003-10-13 03:32:08 +00001//===-- Instruction.cpp - Implement the Instruction class -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chandler Carruthef860a22013-01-02 09:10:48 +000010// This file implements the Instruction class for the IR library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Xinliang David Lidc491402016-08-23 15:39:03 +000014#include "llvm/ADT/DenseSet.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000015#include "llvm/IR/Instruction.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000016#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/Instructions.h"
19#include "llvm/IR/Module.h"
20#include "llvm/IR/Operator.h"
21#include "llvm/IR/Type.h"
Chris Lattner0e03ab62003-11-20 17:45:12 +000022using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000023
Chris Lattner229907c2011-07-18 04:54:35 +000024Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000025 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +000026 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner3c787442002-09-10 15:45:53 +000027
28 // If requested, insert this instruction into a basic block...
29 if (InsertBefore) {
Yaron Keren43b4d382015-06-15 17:03:35 +000030 BasicBlock *BB = InsertBefore->getParent();
31 assert(BB && "Instruction to insert before is not in a basic block!");
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000032 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner3c787442002-09-10 15:45:53 +000033 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000034}
35
Chris Lattner229907c2011-07-18 04:54:35 +000036Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000037 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000038 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000039
40 // append this instruction into the basic block
41 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
42 InsertAtEnd->getInstList().push_back(this);
Chris Lattner0f048162007-02-13 07:54:42 +000043}
44
45
Chris Lattner1c12a882006-06-21 16:53:47 +000046// Out of line virtual method, so the vtable, etc has a home.
Gordon Henriksen14a55692007-12-10 02:14:30 +000047Instruction::~Instruction() {
Craig Topper2617dcc2014-04-15 06:32:26 +000048 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman48a995f2010-07-20 22:25:04 +000049 if (hasMetadataHashEntry())
50 clearMetadataHashEntries();
Chris Lattner1c12a882006-06-21 16:53:47 +000051}
52
53
Chris Lattner9ed7aef2002-09-06 21:33:15 +000054void Instruction::setParent(BasicBlock *P) {
55 Parent = P;
56}
57
Mehdi Amini9a9738f2015-03-03 22:01:13 +000058const Module *Instruction::getModule() const {
59 return getParent()->getModule();
60}
61
Philip Reames388402452015-05-26 21:03:23 +000062Module *Instruction::getModule() {
63 return getParent()->getModule();
64}
65
Sanjoy Das411fdcd2015-12-08 00:13:12 +000066Function *Instruction::getFunction() { return getParent()->getParent(); }
67
68const Function *Instruction::getFunction() const {
69 return getParent()->getParent();
70}
Philip Reames388402452015-05-26 21:03:23 +000071
Chris Lattner02a71e72004-10-11 22:21:39 +000072void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000073 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000074}
75
Daniel Berlina5af7202015-04-02 00:03:07 +000076iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000077 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000078}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000079
Sanjay Patelf5c2d122016-01-06 00:18:29 +000080/// Insert an unlinked instruction into a basic block immediately before the
81/// specified instruction.
Owen Anderson2505e0c2008-06-17 18:29:27 +000082void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000083 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000084}
85
Sanjay Patelf5c2d122016-01-06 00:18:29 +000086/// Insert an unlinked instruction into a basic block immediately after the
87/// specified instruction.
Chris Lattner6e66d0a2009-01-13 07:43:51 +000088void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000089 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
90 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000091}
92
Sanjay Patelf5c2d122016-01-06 00:18:29 +000093/// Unlink this instruction from its current basic block and insert it into the
94/// basic block that MovePos lives in, right before MovePos.
Chris Lattner24a0a432005-08-08 05:21:50 +000095void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000096 moveBefore(*MovePos->getParent(), MovePos->getIterator());
97}
98
99void Instruction::moveBefore(BasicBlock &BB,
100 SymbolTableList<Instruction>::iterator I) {
101 assert(I == BB.end() || I->getParent() == &BB);
102 BB.getInstList().splice(I, getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +0000103}
104
David Majnemer9554c132016-04-22 06:37:45 +0000105void Instruction::setHasNoUnsignedWrap(bool b) {
106 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
107}
108
109void Instruction::setHasNoSignedWrap(bool b) {
110 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
111}
112
113void Instruction::setIsExact(bool b) {
114 cast<PossiblyExactOperator>(this)->setIsExact(b);
115}
116
117bool Instruction::hasNoUnsignedWrap() const {
118 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
119}
120
121bool Instruction::hasNoSignedWrap() const {
122 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
123}
124
125bool Instruction::isExact() const {
126 return cast<PossiblyExactOperator>(this)->isExact();
127}
128
Michael Ilseman149209e2012-11-27 00:41:22 +0000129void Instruction::setHasUnsafeAlgebra(bool B) {
130 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
131 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
132}
133
Michael Ilseman149209e2012-11-27 00:41:22 +0000134void Instruction::setHasNoNaNs(bool B) {
135 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
136 cast<FPMathOperator>(this)->setHasNoNaNs(B);
137}
138
Michael Ilseman149209e2012-11-27 00:41:22 +0000139void Instruction::setHasNoInfs(bool B) {
140 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
141 cast<FPMathOperator>(this)->setHasNoInfs(B);
142}
143
Michael Ilseman149209e2012-11-27 00:41:22 +0000144void Instruction::setHasNoSignedZeros(bool B) {
145 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
146 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
147}
148
Michael Ilseman149209e2012-11-27 00:41:22 +0000149void Instruction::setHasAllowReciprocal(bool B) {
150 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
151 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
152}
153
Michael Ilseman149209e2012-11-27 00:41:22 +0000154void Instruction::setFastMathFlags(FastMathFlags FMF) {
155 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
156 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
157}
158
Sanjay Patelb2325b92014-09-02 20:03:00 +0000159void Instruction::copyFastMathFlags(FastMathFlags FMF) {
160 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
161 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
162}
163
Michael Ilseman149209e2012-11-27 00:41:22 +0000164bool Instruction::hasUnsafeAlgebra() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000165 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000166 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
167}
168
Michael Ilseman149209e2012-11-27 00:41:22 +0000169bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000170 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000171 return cast<FPMathOperator>(this)->hasNoNaNs();
172}
173
Michael Ilseman149209e2012-11-27 00:41:22 +0000174bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000175 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000176 return cast<FPMathOperator>(this)->hasNoInfs();
177}
178
Michael Ilseman149209e2012-11-27 00:41:22 +0000179bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000180 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000181 return cast<FPMathOperator>(this)->hasNoSignedZeros();
182}
183
Michael Ilseman149209e2012-11-27 00:41:22 +0000184bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000185 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000186 return cast<FPMathOperator>(this)->hasAllowReciprocal();
187}
188
Michael Ilseman149209e2012-11-27 00:41:22 +0000189FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000190 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000191 return cast<FPMathOperator>(this)->getFastMathFlags();
192}
Chris Lattner24a0a432005-08-08 05:21:50 +0000193
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000194void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000195 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000196}
197
David Majnemer9554c132016-04-22 06:37:45 +0000198void Instruction::copyIRFlags(const Value *V) {
199 // Copy the wrapping flags.
200 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000201 if (isa<OverflowingBinaryOperator>(this)) {
202 setHasNoSignedWrap(OB->hasNoSignedWrap());
203 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
204 }
David Majnemer9554c132016-04-22 06:37:45 +0000205 }
206
207 // Copy the exact flag.
208 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000209 if (isa<PossiblyExactOperator>(this))
210 setIsExact(PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000211
212 // Copy the fast-math flags.
213 if (auto *FP = dyn_cast<FPMathOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000214 if (isa<FPMathOperator>(this))
215 copyFastMathFlags(FP->getFastMathFlags());
David Majnemer92f84cc2016-07-15 05:02:31 +0000216
217 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
218 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
219 DestGEP->setIsInBounds(SrcGEP->isInBounds() | DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000220}
221
222void Instruction::andIRFlags(const Value *V) {
223 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000224 if (isa<OverflowingBinaryOperator>(this)) {
225 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
226 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
227 }
David Majnemer9554c132016-04-22 06:37:45 +0000228 }
229
230 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000231 if (isa<PossiblyExactOperator>(this))
232 setIsExact(isExact() & PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000233
234 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000235 if (isa<FPMathOperator>(this)) {
236 FastMathFlags FM = getFastMathFlags();
237 FM &= FP->getFastMathFlags();
238 copyFastMathFlags(FM);
239 }
David Majnemer9554c132016-04-22 06:37:45 +0000240 }
David Majnemer92f84cc2016-07-15 05:02:31 +0000241
242 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
243 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
244 DestGEP->setIsInBounds(SrcGEP->isInBounds() & DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000245}
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000246
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000247const char *Instruction::getOpcodeName(unsigned OpCode) {
248 switch (OpCode) {
249 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000250 case Ret: return "ret";
251 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000252 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000253 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000254 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000255 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000256 case Unreachable: return "unreachable";
David Majnemer654e1302015-07-31 17:58:14 +0000257 case CleanupRet: return "cleanupret";
David Majnemer654e1302015-07-31 17:58:14 +0000258 case CatchRet: return "catchret";
259 case CatchPad: return "catchpad";
David Majnemer8a1c45d2015-12-12 05:38:55 +0000260 case CatchSwitch: return "catchswitch";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000261
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000262 // Standard binary operators...
263 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000264 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000265 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000266 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000267 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000268 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000269 case UDiv: return "udiv";
270 case SDiv: return "sdiv";
271 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000272 case URem: return "urem";
273 case SRem: return "srem";
274 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000275
276 // Logical operators...
277 case And: return "and";
278 case Or : return "or";
279 case Xor: return "xor";
280
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000281 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000282 case Alloca: return "alloca";
283 case Load: return "load";
284 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000285 case AtomicCmpXchg: return "cmpxchg";
286 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000287 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000288 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000289
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000290 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000291 case Trunc: return "trunc";
292 case ZExt: return "zext";
293 case SExt: return "sext";
294 case FPTrunc: return "fptrunc";
295 case FPExt: return "fpext";
296 case FPToUI: return "fptoui";
297 case FPToSI: return "fptosi";
298 case UIToFP: return "uitofp";
299 case SIToFP: return "sitofp";
300 case IntToPtr: return "inttoptr";
301 case PtrToInt: return "ptrtoint";
302 case BitCast: return "bitcast";
303 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000304
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000305 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000306 case ICmp: return "icmp";
307 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000308 case PHI: return "phi";
309 case Select: return "select";
310 case Call: return "call";
311 case Shl: return "shl";
312 case LShr: return "lshr";
313 case AShr: return "ashr";
314 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000315 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000316 case InsertElement: return "insertelement";
317 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000318 case ExtractValue: return "extractvalue";
319 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000320 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000321 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000322
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000323 default: return "<Invalid operator> ";
324 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000325}
Chris Lattnercab6c332002-10-31 04:14:01 +0000326
Sanjay Patela40c4792016-10-05 18:51:12 +0000327/// Return true if both instructions have the same special state. This must be
JF Bastien3b6eaac2016-04-11 22:30:37 +0000328/// kept in sync with FunctionComparator::cmpOperations in
329/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000330static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
331 bool IgnoreAlignment = false) {
332 assert(I1->getOpcode() == I2->getOpcode() &&
333 "Can not compare special state of different instructions");
334
JF Bastien5502e912016-04-12 18:06:55 +0000335 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
336 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
337 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
338 IgnoreAlignment);
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000339 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
340 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
341 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
342 IgnoreAlignment) &&
343 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
344 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
345 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
346 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
347 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
348 IgnoreAlignment) &&
349 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
350 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
351 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
352 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
353 if (const CallInst *CI = dyn_cast<CallInst>(I1))
354 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
355 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000356 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
357 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000358 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
359 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000360 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
361 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000362 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
363 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
364 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
365 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
366 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
367 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
368 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
369 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
370 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000371 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000372 CXI->getSuccessOrdering() ==
373 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
374 CXI->getFailureOrdering() ==
375 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
376 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
377 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
378 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
379 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
380 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
381 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
382
383 return true;
384}
385
Chris Lattner378b0412008-11-27 08:39:18 +0000386bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000387 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000388 SubclassOptionalData == I->SubclassOptionalData;
389}
390
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000391bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000392 if (getOpcode() != I->getOpcode() ||
393 getNumOperands() != I->getNumOperands() ||
394 getType() != I->getType())
395 return false;
396
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000397 // If both instructions have no operands, they are identical.
398 if (getNumOperands() == 0 && I->getNumOperands() == 0)
399 return haveSameSpecialState(this, I);
400
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000401 // We have two instructions of identical opcode and #operands. Check to see
402 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000403 if (!std::equal(op_begin(), op_end(), I->op_begin()))
404 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000405
Joel Jones3d90a9a2012-05-10 15:59:41 +0000406 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
407 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000408 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
409 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000410 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000411
412 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000413}
414
JF Bastien3b6eaac2016-04-11 22:30:37 +0000415// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman17fb0d22009-06-12 19:03:05 +0000416// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000417bool Instruction::isSameOperationAs(const Instruction *I,
418 unsigned flags) const {
419 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
420 bool UseScalarTypes = flags & CompareUsingScalarTypes;
421
Dan Gohman17fb0d22009-06-12 19:03:05 +0000422 if (getOpcode() != I->getOpcode() ||
423 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000424 (UseScalarTypes ?
425 getType()->getScalarType() != I->getType()->getScalarType() :
426 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000427 return false;
428
429 // We have two instructions of identical opcode and #operands. Check to see
430 // if all operands are the same type
431 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000432 if (UseScalarTypes ?
433 getOperand(i)->getType()->getScalarType() !=
434 I->getOperand(i)->getType()->getScalarType() :
435 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000436 return false;
437
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000438 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000439}
440
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000441bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000442 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000443 // PHI nodes uses values in the corresponding predecessor block. For other
444 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000445 const Instruction *I = cast<Instruction>(U.getUser());
446 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000447 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000448 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000449 return true;
450 continue;
451 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000452
Chandler Carruthcdf47882014-03-09 03:16:01 +0000453 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000454 return true;
455 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000456 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000457}
458
Chris Lattner84627112008-05-08 17:16:51 +0000459bool Instruction::mayReadFromMemory() const {
460 switch (getOpcode()) {
461 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000462 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000463 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000464 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000465 case Instruction::AtomicCmpXchg:
466 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000467 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000468 case Instruction::CatchRet:
Chris Lattner84627112008-05-08 17:16:51 +0000469 return true;
470 case Instruction::Call:
471 return !cast<CallInst>(this)->doesNotAccessMemory();
472 case Instruction::Invoke:
473 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000474 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000475 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000476 }
477}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000478
Chris Lattnerc992e182007-02-15 23:15:00 +0000479bool Instruction::mayWriteToMemory() const {
480 switch (getOpcode()) {
481 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000482 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000483 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000484 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000485 case Instruction::AtomicCmpXchg:
486 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000487 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000488 case Instruction::CatchRet:
Chris Lattnerc992e182007-02-15 23:15:00 +0000489 return true;
490 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000491 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000492 case Instruction::Invoke:
493 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000494 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000495 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000496 }
497}
Chris Lattnercab6c332002-10-31 04:14:01 +0000498
Robin Morisseted3d48f2014-09-03 21:29:59 +0000499bool Instruction::isAtomic() const {
500 switch (getOpcode()) {
501 default:
502 return false;
503 case Instruction::AtomicCmpXchg:
504 case Instruction::AtomicRMW:
505 case Instruction::Fence:
506 return true;
507 case Instruction::Load:
JF Bastien800f87a2016-04-06 21:19:33 +0000508 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000509 case Instruction::Store:
JF Bastien800f87a2016-04-06 21:19:33 +0000510 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000511 }
512}
513
Duncan Sands1efabaa2009-05-06 06:49:50 +0000514bool Instruction::mayThrow() const {
515 if (const CallInst *CI = dyn_cast<CallInst>(this))
516 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000517 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
518 return CRI->unwindsToCaller();
David Majnemer8a1c45d2015-12-12 05:38:55 +0000519 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
520 return CatchSwitch->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000521 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000522}
523
Sanjay Patela40c4792016-10-05 18:51:12 +0000524/// Return true if the instruction is associative:
Chris Lattnercab6c332002-10-31 04:14:01 +0000525///
Dan Gohmana5b96452009-06-04 22:49:04 +0000526/// Associative operators satisfy: x op (y op z) === (x op y) op z
Chris Lattnercab6c332002-10-31 04:14:01 +0000527///
Dan Gohmana5b96452009-06-04 22:49:04 +0000528/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
Chris Lattnercab6c332002-10-31 04:14:01 +0000529///
Duncan Sands70db5e72010-12-20 13:10:23 +0000530bool Instruction::isAssociative(unsigned Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000531 return Opcode == And || Opcode == Or || Opcode == Xor ||
532 Opcode == Add || Opcode == Mul;
Chris Lattnercab6c332002-10-31 04:14:01 +0000533}
534
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000535bool Instruction::isAssociative() const {
536 unsigned Opcode = getOpcode();
537 if (isAssociative(Opcode))
538 return true;
539
540 switch (Opcode) {
541 case FMul:
542 case FAdd:
543 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
544 default:
545 return false;
546 }
547}
548
Sanjay Patela40c4792016-10-05 18:51:12 +0000549/// Return true if the instruction is commutative:
Chris Lattnercab6c332002-10-31 04:14:01 +0000550///
Misha Brukmanfa100532003-10-10 17:54:14 +0000551/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnercab6c332002-10-31 04:14:01 +0000552///
553/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
554/// applied to any type.
555///
556bool Instruction::isCommutative(unsigned op) {
557 switch (op) {
558 case Add:
Dan Gohmana5b96452009-06-04 22:49:04 +0000559 case FAdd:
Chris Lattnercab6c332002-10-31 04:14:01 +0000560 case Mul:
Dan Gohmana5b96452009-06-04 22:49:04 +0000561 case FMul:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000562 case And:
Chris Lattnercab6c332002-10-31 04:14:01 +0000563 case Or:
564 case Xor:
Chris Lattnercab6c332002-10-31 04:14:01 +0000565 return true;
566 default:
567 return false;
568 }
569}
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000570
Sanjay Patela40c4792016-10-05 18:51:12 +0000571/// Return true if the instruction is idempotent:
Duncan Sandsd7aeefe2012-06-12 14:33:56 +0000572///
573/// Idempotent operators satisfy: x op x === x
574///
575/// In LLVM, the And and Or operators are idempotent.
576///
577bool Instruction::isIdempotent(unsigned Opcode) {
578 return Opcode == And || Opcode == Or;
579}
580
Sanjay Patela40c4792016-10-05 18:51:12 +0000581/// Return true if the instruction is nilpotent:
Duncan Sandsd7aeefe2012-06-12 14:33:56 +0000582///
583/// Nilpotent operators satisfy: x op x === Id,
584///
585/// where Id is the identity for the operator, i.e. a constant such that
586/// x op Id === x and Id op x === x for all x.
587///
588/// In LLVM, the Xor operator is nilpotent.
589///
590bool Instruction::isNilpotent(unsigned Opcode) {
591 return Opcode == Xor;
592}
593
Pete Cooper75403d72015-06-24 20:22:23 +0000594Instruction *Instruction::cloneImpl() const {
595 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
596}
597
Xinliang David Lidc491402016-08-23 15:39:03 +0000598void Instruction::swapProfMetadata() {
599 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
600 if (!ProfileData || ProfileData->getNumOperands() != 3 ||
601 !isa<MDString>(ProfileData->getOperand(0)))
602 return;
603
604 MDString *MDName = cast<MDString>(ProfileData->getOperand(0));
605 if (MDName->getString() != "branch_weights")
606 return;
607
608 // The first operand is the name. Fetch them backwards and build a new one.
609 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
610 ProfileData->getOperand(1)};
611 setMetadata(LLVMContext::MD_prof,
612 MDNode::get(ProfileData->getContext(), Ops));
613}
614
Xinliang David Lidc491402016-08-23 15:39:03 +0000615void Instruction::copyMetadata(const Instruction &SrcInst,
616 ArrayRef<unsigned> WL) {
617 if (!SrcInst.hasMetadata())
618 return;
619
620 DenseSet<unsigned> WLS;
621 for (unsigned M : WL)
622 WLS.insert(M);
623
624 // Otherwise, enumerate and copy over metadata from the old instruction to the
625 // new one.
626 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
627 SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs);
628 for (const auto &MD : TheMDs) {
629 if (WL.empty() || WLS.count(MD.first))
630 setMetadata(MD.first, MD.second);
631 }
632 if (WL.empty() || WLS.count(LLVMContext::MD_dbg))
633 setDebugLoc(SrcInst.getDebugLoc());
634 return;
635}
636
Devang Patel11cf3f42009-10-27 22:16:29 +0000637Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000638 Instruction *New = nullptr;
639 switch (getOpcode()) {
640 default:
641 llvm_unreachable("Unhandled Opcode.");
642#define HANDLE_INST(num, opc, clas) \
643 case Instruction::opc: \
644 New = cast<clas>(this)->cloneImpl(); \
645 break;
646#include "llvm/IR/Instruction.def"
647#undef HANDLE_INST
648 }
649
Devang Patel11cf3f42009-10-27 22:16:29 +0000650 New->SubclassOptionalData = SubclassOptionalData;
Xinliang David Lidc491402016-08-23 15:39:03 +0000651 New->copyMetadata(*this);
Devang Patel11cf3f42009-10-27 22:16:29 +0000652 return New;
653}