blob: dd28b5c506acdad1a7d05163aaff8d5bfca40795 [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
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/Instruction.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000015#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000016#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 Lattner0e03ab62003-11-20 17:45:12 +000021using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000022
Chris Lattner229907c2011-07-18 04:54:35 +000023Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000024 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +000025 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner3c787442002-09-10 15:45:53 +000026
27 // If requested, insert this instruction into a basic block...
28 if (InsertBefore) {
Yaron Keren43b4d382015-06-15 17:03:35 +000029 BasicBlock *BB = InsertBefore->getParent();
30 assert(BB && "Instruction to insert before is not in a basic block!");
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000031 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner3c787442002-09-10 15:45:53 +000032 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000033}
34
Chris Lattner229907c2011-07-18 04:54:35 +000035Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000036 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000037 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000038
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 Lattner0f048162007-02-13 07:54:42 +000042}
43
44
Chris Lattner1c12a882006-06-21 16:53:47 +000045// Out of line virtual method, so the vtable, etc has a home.
Gordon Henriksen14a55692007-12-10 02:14:30 +000046Instruction::~Instruction() {
Craig Topper2617dcc2014-04-15 06:32:26 +000047 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman48a995f2010-07-20 22:25:04 +000048 if (hasMetadataHashEntry())
49 clearMetadataHashEntries();
Chris Lattner1c12a882006-06-21 16:53:47 +000050}
51
52
Chris Lattner9ed7aef2002-09-06 21:33:15 +000053void Instruction::setParent(BasicBlock *P) {
54 Parent = P;
55}
56
Mehdi Amini9a9738f2015-03-03 22:01:13 +000057const Module *Instruction::getModule() const {
58 return getParent()->getModule();
59}
60
Philip Reames388402452015-05-26 21:03:23 +000061Module *Instruction::getModule() {
62 return getParent()->getModule();
63}
64
Sanjoy Das411fdcd2015-12-08 00:13:12 +000065Function *Instruction::getFunction() { return getParent()->getParent(); }
66
67const Function *Instruction::getFunction() const {
68 return getParent()->getParent();
69}
Philip Reames388402452015-05-26 21:03:23 +000070
Chris Lattner02a71e72004-10-11 22:21:39 +000071void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000072 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000073}
74
Daniel Berlina5af7202015-04-02 00:03:07 +000075iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000076 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000077}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000078
Sanjay Patelf5c2d122016-01-06 00:18:29 +000079/// Insert an unlinked instruction into a basic block immediately before the
80/// specified instruction.
Owen Anderson2505e0c2008-06-17 18:29:27 +000081void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000082 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000083}
84
Sanjay Patelf5c2d122016-01-06 00:18:29 +000085/// Insert an unlinked instruction into a basic block immediately after the
86/// specified instruction.
Chris Lattner6e66d0a2009-01-13 07:43:51 +000087void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000088 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
89 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000090}
91
Sanjay Patelf5c2d122016-01-06 00:18:29 +000092/// Unlink this instruction from its current basic block and insert it into the
93/// basic block that MovePos lives in, right before MovePos.
Chris Lattner24a0a432005-08-08 05:21:50 +000094void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000095 MovePos->getParent()->getInstList().splice(
96 MovePos->getIterator(), getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +000097}
98
David Majnemer9554c132016-04-22 06:37:45 +000099void Instruction::setHasNoUnsignedWrap(bool b) {
100 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
101}
102
103void Instruction::setHasNoSignedWrap(bool b) {
104 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
105}
106
107void Instruction::setIsExact(bool b) {
108 cast<PossiblyExactOperator>(this)->setIsExact(b);
109}
110
111bool Instruction::hasNoUnsignedWrap() const {
112 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
113}
114
115bool Instruction::hasNoSignedWrap() const {
116 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
117}
118
119bool Instruction::isExact() const {
120 return cast<PossiblyExactOperator>(this)->isExact();
121}
122
Michael Ilseman149209e2012-11-27 00:41:22 +0000123/// Set or clear the unsafe-algebra flag on this instruction, which must be an
124/// operator which supports this flag. See LangRef.html for the meaning of this
125/// flag.
126void Instruction::setHasUnsafeAlgebra(bool B) {
127 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
128 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
129}
130
131/// Set or clear the NoNaNs flag on this instruction, which must be an operator
132/// which supports this flag. See LangRef.html for the meaning of this flag.
133void Instruction::setHasNoNaNs(bool B) {
134 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
135 cast<FPMathOperator>(this)->setHasNoNaNs(B);
136}
137
138/// Set or clear the no-infs flag on this instruction, which must be an operator
139/// which supports this flag. See LangRef.html for the meaning of this flag.
140void Instruction::setHasNoInfs(bool B) {
141 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
142 cast<FPMathOperator>(this)->setHasNoInfs(B);
143}
144
145/// Set or clear the no-signed-zeros flag on this instruction, which must be an
146/// operator which supports this flag. See LangRef.html for the meaning of this
147/// flag.
148void Instruction::setHasNoSignedZeros(bool B) {
149 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
150 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
151}
152
153/// Set or clear the allow-reciprocal flag on this instruction, which must be an
154/// operator which supports this flag. See LangRef.html for the meaning of this
155/// flag.
156void Instruction::setHasAllowReciprocal(bool B) {
157 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
158 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
159}
160
161/// Convenience function for setting all the fast-math flags on this
162/// instruction, which must be an operator which supports these flags. See
163/// LangRef.html for the meaning of these flats.
164void Instruction::setFastMathFlags(FastMathFlags FMF) {
165 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
166 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
167}
168
Sanjay Patelb2325b92014-09-02 20:03:00 +0000169void Instruction::copyFastMathFlags(FastMathFlags FMF) {
170 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
171 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
172}
173
Michael Ilseman149209e2012-11-27 00:41:22 +0000174/// Determine whether the unsafe-algebra flag is set.
175bool Instruction::hasUnsafeAlgebra() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000176 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000177 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
178}
179
180/// Determine whether the no-NaNs flag is set.
181bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000182 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000183 return cast<FPMathOperator>(this)->hasNoNaNs();
184}
185
186/// Determine whether the no-infs flag is set.
187bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000188 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000189 return cast<FPMathOperator>(this)->hasNoInfs();
190}
191
192/// Determine whether the no-signed-zeros flag is set.
193bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000194 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000195 return cast<FPMathOperator>(this)->hasNoSignedZeros();
196}
197
198/// Determine whether the allow-reciprocal flag is set.
199bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000200 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000201 return cast<FPMathOperator>(this)->hasAllowReciprocal();
202}
203
204/// Convenience function for getting all the fast-math flags, which must be an
205/// operator which supports these flags. See LangRef.html for the meaning of
Sanjay Patel1893a252014-09-10 16:58:40 +0000206/// these flags.
Michael Ilseman149209e2012-11-27 00:41:22 +0000207FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000208 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000209 return cast<FPMathOperator>(this)->getFastMathFlags();
210}
Chris Lattner24a0a432005-08-08 05:21:50 +0000211
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000212/// Copy I's fast-math flags
213void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000214 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000215}
216
David Majnemer9554c132016-04-22 06:37:45 +0000217void Instruction::copyIRFlags(const Value *V) {
218 // Copy the wrapping flags.
219 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
220 setHasNoSignedWrap(OB->hasNoSignedWrap());
221 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
222 }
223
224 // Copy the exact flag.
225 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
226 setIsExact(PE->isExact());
227
228 // Copy the fast-math flags.
229 if (auto *FP = dyn_cast<FPMathOperator>(V))
230 copyFastMathFlags(FP->getFastMathFlags());
231}
232
233void Instruction::andIRFlags(const Value *V) {
234 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
235 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
236 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
237 }
238
239 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
240 setIsExact(isExact() & PE->isExact());
241
242 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
243 FastMathFlags FM = getFastMathFlags();
244 FM &= FP->getFastMathFlags();
245 copyFastMathFlags(FM);
246 }
247}
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000248
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000249const char *Instruction::getOpcodeName(unsigned OpCode) {
250 switch (OpCode) {
251 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000252 case Ret: return "ret";
253 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000254 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000255 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000256 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000257 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000258 case Unreachable: return "unreachable";
David Majnemer654e1302015-07-31 17:58:14 +0000259 case CleanupRet: return "cleanupret";
David Majnemer654e1302015-07-31 17:58:14 +0000260 case CatchRet: return "catchret";
261 case CatchPad: return "catchpad";
David Majnemer8a1c45d2015-12-12 05:38:55 +0000262 case CatchSwitch: return "catchswitch";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000263
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000264 // Standard binary operators...
265 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000266 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000267 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000268 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000269 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000270 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000271 case UDiv: return "udiv";
272 case SDiv: return "sdiv";
273 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000274 case URem: return "urem";
275 case SRem: return "srem";
276 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000277
278 // Logical operators...
279 case And: return "and";
280 case Or : return "or";
281 case Xor: return "xor";
282
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000283 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000284 case Alloca: return "alloca";
285 case Load: return "load";
286 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000287 case AtomicCmpXchg: return "cmpxchg";
288 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000289 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000290 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000291
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000292 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000293 case Trunc: return "trunc";
294 case ZExt: return "zext";
295 case SExt: return "sext";
296 case FPTrunc: return "fptrunc";
297 case FPExt: return "fpext";
298 case FPToUI: return "fptoui";
299 case FPToSI: return "fptosi";
300 case UIToFP: return "uitofp";
301 case SIToFP: return "sitofp";
302 case IntToPtr: return "inttoptr";
303 case PtrToInt: return "ptrtoint";
304 case BitCast: return "bitcast";
305 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000306
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000307 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000308 case ICmp: return "icmp";
309 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000310 case PHI: return "phi";
311 case Select: return "select";
312 case Call: return "call";
313 case Shl: return "shl";
314 case LShr: return "lshr";
315 case AShr: return "ashr";
316 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000317 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000318 case InsertElement: return "insertelement";
319 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000320 case ExtractValue: return "extractvalue";
321 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000322 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000323 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000324
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000325 default: return "<Invalid operator> ";
326 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000327}
Chris Lattnercab6c332002-10-31 04:14:01 +0000328
JF Bastien3b6eaac2016-04-11 22:30:37 +0000329/// Return true if both instructions have the same special state This must be
330/// kept in sync with FunctionComparator::cmpOperations in
331/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000332static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
333 bool IgnoreAlignment = false) {
334 assert(I1->getOpcode() == I2->getOpcode() &&
335 "Can not compare special state of different instructions");
336
JF Bastien5502e912016-04-12 18:06:55 +0000337 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
338 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
339 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
340 IgnoreAlignment);
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000341 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
342 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
343 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
344 IgnoreAlignment) &&
345 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
346 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
347 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
348 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
349 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
350 IgnoreAlignment) &&
351 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
352 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
353 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
354 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
355 if (const CallInst *CI = dyn_cast<CallInst>(I1))
356 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
357 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000358 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
359 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000360 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
361 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000362 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
363 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000364 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
365 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
366 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
367 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
368 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
369 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
370 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
371 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
372 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000373 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000374 CXI->getSuccessOrdering() ==
375 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
376 CXI->getFailureOrdering() ==
377 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
378 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
379 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
380 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
381 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
382 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
383 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
384
385 return true;
386}
387
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000388/// isIdenticalTo - Return true if the specified instruction is exactly
389/// identical to the current one. This means that all operands match and any
390/// extra information (e.g. load is volatile) agree.
Chris Lattner378b0412008-11-27 08:39:18 +0000391bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000392 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000393 SubclassOptionalData == I->SubclassOptionalData;
394}
395
Dan Gohman23d2c762009-08-25 22:24:20 +0000396/// isIdenticalToWhenDefined - This is like isIdenticalTo, except that it
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000397/// ignores the SubclassOptionalData flags, which specify conditions
398/// under which the instruction's result is undefined.
399bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000400 if (getOpcode() != I->getOpcode() ||
401 getNumOperands() != I->getNumOperands() ||
402 getType() != I->getType())
403 return false;
404
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000405 // If both instructions have no operands, they are identical.
406 if (getNumOperands() == 0 && I->getNumOperands() == 0)
407 return haveSameSpecialState(this, I);
408
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000409 // We have two instructions of identical opcode and #operands. Check to see
410 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000411 if (!std::equal(op_begin(), op_end(), I->op_begin()))
412 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000413
Joel Jones3d90a9a2012-05-10 15:59:41 +0000414 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
415 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000416 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
417 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000418 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000419
420 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000421}
422
JF Bastien3b6eaac2016-04-11 22:30:37 +0000423// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman17fb0d22009-06-12 19:03:05 +0000424// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000425bool Instruction::isSameOperationAs(const Instruction *I,
426 unsigned flags) const {
427 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
428 bool UseScalarTypes = flags & CompareUsingScalarTypes;
429
Dan Gohman17fb0d22009-06-12 19:03:05 +0000430 if (getOpcode() != I->getOpcode() ||
431 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000432 (UseScalarTypes ?
433 getType()->getScalarType() != I->getType()->getScalarType() :
434 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000435 return false;
436
437 // We have two instructions of identical opcode and #operands. Check to see
438 // if all operands are the same type
439 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000440 if (UseScalarTypes ?
441 getOperand(i)->getType()->getScalarType() !=
442 I->getOperand(i)->getType()->getScalarType() :
443 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000444 return false;
445
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000446 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000447}
448
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000449/// isUsedOutsideOfBlock - Return true if there are any uses of I outside of the
450/// specified block. Note that PHI nodes are considered to evaluate their
451/// operands in the corresponding predecessor block.
452bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000453 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000454 // PHI nodes uses values in the corresponding predecessor block. For other
455 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000456 const Instruction *I = cast<Instruction>(U.getUser());
457 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000458 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000459 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000460 return true;
461 continue;
462 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000463
Chandler Carruthcdf47882014-03-09 03:16:01 +0000464 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000465 return true;
466 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000467 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000468}
469
Chris Lattner84627112008-05-08 17:16:51 +0000470/// mayReadFromMemory - Return true if this instruction may read memory.
471///
472bool Instruction::mayReadFromMemory() const {
473 switch (getOpcode()) {
474 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000475 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000476 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000477 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000478 case Instruction::AtomicCmpXchg:
479 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000480 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000481 case Instruction::CatchRet:
Chris Lattner84627112008-05-08 17:16:51 +0000482 return true;
483 case Instruction::Call:
484 return !cast<CallInst>(this)->doesNotAccessMemory();
485 case Instruction::Invoke:
486 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000487 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000488 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000489 }
490}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000491
Chris Lattnerc992e182007-02-15 23:15:00 +0000492/// mayWriteToMemory - Return true if this instruction may modify memory.
493///
494bool Instruction::mayWriteToMemory() const {
495 switch (getOpcode()) {
496 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000497 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000498 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000499 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000500 case Instruction::AtomicCmpXchg:
501 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000502 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000503 case Instruction::CatchRet:
Chris Lattnerc992e182007-02-15 23:15:00 +0000504 return true;
505 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000506 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000507 case Instruction::Invoke:
508 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000509 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000510 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000511 }
512}
Chris Lattnercab6c332002-10-31 04:14:01 +0000513
Robin Morisseted3d48f2014-09-03 21:29:59 +0000514bool Instruction::isAtomic() const {
515 switch (getOpcode()) {
516 default:
517 return false;
518 case Instruction::AtomicCmpXchg:
519 case Instruction::AtomicRMW:
520 case Instruction::Fence:
521 return true;
522 case Instruction::Load:
JF Bastien800f87a2016-04-06 21:19:33 +0000523 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000524 case Instruction::Store:
JF Bastien800f87a2016-04-06 21:19:33 +0000525 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000526 }
527}
528
Duncan Sands1efabaa2009-05-06 06:49:50 +0000529bool Instruction::mayThrow() const {
530 if (const CallInst *CI = dyn_cast<CallInst>(this))
531 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000532 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
533 return CRI->unwindsToCaller();
David Majnemer8a1c45d2015-12-12 05:38:55 +0000534 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
535 return CatchSwitch->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000536 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000537}
538
Nadav Rotem01863472013-02-19 20:02:09 +0000539bool Instruction::mayReturn() const {
540 if (const CallInst *CI = dyn_cast<CallInst>(this))
541 return !CI->doesNotReturn();
542 return true;
543}
544
Chris Lattnercab6c332002-10-31 04:14:01 +0000545/// isAssociative - Return true if the instruction is associative:
546///
Dan Gohmana5b96452009-06-04 22:49:04 +0000547/// Associative operators satisfy: x op (y op z) === (x op y) op z
Chris Lattnercab6c332002-10-31 04:14:01 +0000548///
Dan Gohmana5b96452009-06-04 22:49:04 +0000549/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
Chris Lattnercab6c332002-10-31 04:14:01 +0000550///
Duncan Sands70db5e72010-12-20 13:10:23 +0000551bool Instruction::isAssociative(unsigned Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000552 return Opcode == And || Opcode == Or || Opcode == Xor ||
553 Opcode == Add || Opcode == Mul;
Chris Lattnercab6c332002-10-31 04:14:01 +0000554}
555
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000556bool Instruction::isAssociative() const {
557 unsigned Opcode = getOpcode();
558 if (isAssociative(Opcode))
559 return true;
560
561 switch (Opcode) {
562 case FMul:
563 case FAdd:
564 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
565 default:
566 return false;
567 }
568}
569
Chris Lattnercab6c332002-10-31 04:14:01 +0000570/// isCommutative - Return true if the instruction is commutative:
571///
Misha Brukmanfa100532003-10-10 17:54:14 +0000572/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnercab6c332002-10-31 04:14:01 +0000573///
574/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
575/// applied to any type.
576///
577bool Instruction::isCommutative(unsigned op) {
578 switch (op) {
579 case Add:
Dan Gohmana5b96452009-06-04 22:49:04 +0000580 case FAdd:
Chris Lattnercab6c332002-10-31 04:14:01 +0000581 case Mul:
Dan Gohmana5b96452009-06-04 22:49:04 +0000582 case FMul:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000583 case And:
Chris Lattnercab6c332002-10-31 04:14:01 +0000584 case Or:
585 case Xor:
Chris Lattnercab6c332002-10-31 04:14:01 +0000586 return true;
587 default:
588 return false;
589 }
590}
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000591
Duncan Sandsd7aeefe2012-06-12 14:33:56 +0000592/// isIdempotent - Return true if the instruction is idempotent:
593///
594/// Idempotent operators satisfy: x op x === x
595///
596/// In LLVM, the And and Or operators are idempotent.
597///
598bool Instruction::isIdempotent(unsigned Opcode) {
599 return Opcode == And || Opcode == Or;
600}
601
602/// isNilpotent - Return true if the instruction is nilpotent:
603///
604/// Nilpotent operators satisfy: x op x === Id,
605///
606/// where Id is the identity for the operator, i.e. a constant such that
607/// x op Id === x and Id op x === x for all x.
608///
609/// In LLVM, the Xor operator is nilpotent.
610///
611bool Instruction::isNilpotent(unsigned Opcode) {
612 return Opcode == Xor;
613}
614
Pete Cooper75403d72015-06-24 20:22:23 +0000615Instruction *Instruction::cloneImpl() const {
616 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
617}
618
Devang Patel11cf3f42009-10-27 22:16:29 +0000619Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000620 Instruction *New = nullptr;
621 switch (getOpcode()) {
622 default:
623 llvm_unreachable("Unhandled Opcode.");
624#define HANDLE_INST(num, opc, clas) \
625 case Instruction::opc: \
626 New = cast<clas>(this)->cloneImpl(); \
627 break;
628#include "llvm/IR/Instruction.def"
629#undef HANDLE_INST
630 }
631
Devang Patel11cf3f42009-10-27 22:16:29 +0000632 New->SubclassOptionalData = SubclassOptionalData;
Chris Lattner68017802009-12-29 07:44:16 +0000633 if (!hasMetadata())
634 return New;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000635
Chris Lattner68017802009-12-29 07:44:16 +0000636 // Otherwise, enumerate and copy over metadata from the old instruction to the
637 // new one.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000638 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
Chris Lattner8f294912011-07-14 18:57:51 +0000639 getAllMetadataOtherThanDebugLoc(TheMDs);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000640 for (const auto &MD : TheMDs)
641 New->setMetadata(MD.first, MD.second);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000642
Chris Lattner8f294912011-07-14 18:57:51 +0000643 New->setDebugLoc(getDebugLoc());
Devang Patel11cf3f42009-10-27 22:16:29 +0000644 return New;
645}