blob: 86421c4ae9ffcfd6319efde23da9c04e58d4e216 [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"
Chandler Carruth4b6845c2014-03-04 12:46:06 +000018#include "llvm/IR/LeakDetector.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#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 Lattner184b2982002-09-08 18:59:35 +000027 // Make sure that we get added to a basicblock
28 LeakDetector::addGarbageObject(this);
Chris Lattner3c787442002-09-10 15:45:53 +000029
30 // If requested, insert this instruction into a basic block...
31 if (InsertBefore) {
32 assert(InsertBefore->getParent() &&
33 "Instruction to insert before is not in a basic block!");
34 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
35 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000036}
37
Rafael Espindola339430f2014-02-25 23:25:17 +000038const DataLayout *Instruction::getDataLayout() const {
39 return getParent()->getDataLayout();
40}
41
Chris Lattner229907c2011-07-18 04:54:35 +000042Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000043 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000044 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner5d1bc2c2005-01-29 00:35:33 +000045 // Make sure that we get added to a basicblock
46 LeakDetector::addGarbageObject(this);
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000047
48 // append this instruction into the basic block
49 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
50 InsertAtEnd->getInstList().push_back(this);
Chris Lattner0f048162007-02-13 07:54:42 +000051}
52
53
Chris Lattner1c12a882006-06-21 16:53:47 +000054// Out of line virtual method, so the vtable, etc has a home.
Gordon Henriksen14a55692007-12-10 02:14:30 +000055Instruction::~Instruction() {
Craig Topper2617dcc2014-04-15 06:32:26 +000056 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman48a995f2010-07-20 22:25:04 +000057 if (hasMetadataHashEntry())
58 clearMetadataHashEntries();
Chris Lattner1c12a882006-06-21 16:53:47 +000059}
60
61
Chris Lattner9ed7aef2002-09-06 21:33:15 +000062void Instruction::setParent(BasicBlock *P) {
Chris Lattnerd8a232b2004-02-04 01:06:38 +000063 if (getParent()) {
64 if (!P) LeakDetector::addGarbageObject(this);
65 } else {
66 if (P) LeakDetector::removeGarbageObject(this);
67 }
Chris Lattner184b2982002-09-08 18:59:35 +000068
Chris Lattner9ed7aef2002-09-06 21:33:15 +000069 Parent = P;
70}
71
Chris Lattner02a71e72004-10-11 22:21:39 +000072void Instruction::removeFromParent() {
73 getParent()->getInstList().remove(this);
74}
75
76void Instruction::eraseFromParent() {
77 getParent()->getInstList().erase(this);
78}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000079
Owen Anderson2505e0c2008-06-17 18:29:27 +000080/// insertBefore - Insert an unlinked instructions into a basic block
81/// immediately before the specified instruction.
82void Instruction::insertBefore(Instruction *InsertPos) {
83 InsertPos->getParent()->getInstList().insert(InsertPos, this);
84}
85
Chris Lattner6e66d0a2009-01-13 07:43:51 +000086/// insertAfter - Insert an unlinked instructions into a basic block
87/// immediately after the specified instruction.
88void Instruction::insertAfter(Instruction *InsertPos) {
89 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this);
90}
91
Chris Lattner24a0a432005-08-08 05:21:50 +000092/// moveBefore - Unlink this instruction from its current basic block and
93/// insert it into the basic block that MovePos lives in, right before
94/// MovePos.
95void Instruction::moveBefore(Instruction *MovePos) {
96 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
97 this);
98}
99
Michael Ilseman149209e2012-11-27 00:41:22 +0000100/// Set or clear the unsafe-algebra flag on this instruction, which must be an
101/// operator which supports this flag. See LangRef.html for the meaning of this
102/// flag.
103void Instruction::setHasUnsafeAlgebra(bool B) {
104 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
105 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
106}
107
108/// Set or clear the NoNaNs flag on this instruction, which must be an operator
109/// which supports this flag. See LangRef.html for the meaning of this flag.
110void Instruction::setHasNoNaNs(bool B) {
111 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
112 cast<FPMathOperator>(this)->setHasNoNaNs(B);
113}
114
115/// Set or clear the no-infs flag on this instruction, which must be an operator
116/// which supports this flag. See LangRef.html for the meaning of this flag.
117void Instruction::setHasNoInfs(bool B) {
118 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
119 cast<FPMathOperator>(this)->setHasNoInfs(B);
120}
121
122/// Set or clear the no-signed-zeros flag on this instruction, which must be an
123/// operator which supports this flag. See LangRef.html for the meaning of this
124/// flag.
125void Instruction::setHasNoSignedZeros(bool B) {
126 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
127 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
128}
129
130/// Set or clear the allow-reciprocal flag on this instruction, which must be an
131/// operator which supports this flag. See LangRef.html for the meaning of this
132/// flag.
133void Instruction::setHasAllowReciprocal(bool B) {
134 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
135 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
136}
137
138/// Convenience function for setting all the fast-math flags on this
139/// instruction, which must be an operator which supports these flags. See
140/// LangRef.html for the meaning of these flats.
141void Instruction::setFastMathFlags(FastMathFlags FMF) {
142 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
143 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
144}
145
146/// Determine whether the unsafe-algebra flag is set.
147bool Instruction::hasUnsafeAlgebra() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000148 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000149 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
150}
151
152/// Determine whether the no-NaNs flag is set.
153bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000154 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000155 return cast<FPMathOperator>(this)->hasNoNaNs();
156}
157
158/// Determine whether the no-infs flag is set.
159bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000160 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000161 return cast<FPMathOperator>(this)->hasNoInfs();
162}
163
164/// Determine whether the no-signed-zeros flag is set.
165bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000166 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000167 return cast<FPMathOperator>(this)->hasNoSignedZeros();
168}
169
170/// Determine whether the allow-reciprocal flag is set.
171bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000172 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000173 return cast<FPMathOperator>(this)->hasAllowReciprocal();
174}
175
176/// Convenience function for getting all the fast-math flags, which must be an
177/// operator which supports these flags. See LangRef.html for the meaning of
178/// these flats.
179FastMathFlags Instruction::getFastMathFlags() 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)->getFastMathFlags();
182}
Chris Lattner24a0a432005-08-08 05:21:50 +0000183
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000184/// Copy I's fast-math flags
185void Instruction::copyFastMathFlags(const Instruction *I) {
186 setFastMathFlags(I->getFastMathFlags());
187}
188
189
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000190const char *Instruction::getOpcodeName(unsigned OpCode) {
191 switch (OpCode) {
192 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000193 case Ret: return "ret";
194 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000195 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000196 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000197 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000198 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000199 case Unreachable: return "unreachable";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000200
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000201 // Standard binary operators...
202 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000203 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000204 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000205 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000206 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000207 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000208 case UDiv: return "udiv";
209 case SDiv: return "sdiv";
210 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000211 case URem: return "urem";
212 case SRem: return "srem";
213 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000214
215 // Logical operators...
216 case And: return "and";
217 case Or : return "or";
218 case Xor: return "xor";
219
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000220 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000221 case Alloca: return "alloca";
222 case Load: return "load";
223 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000224 case AtomicCmpXchg: return "cmpxchg";
225 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000226 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000227 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000228
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000229 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000230 case Trunc: return "trunc";
231 case ZExt: return "zext";
232 case SExt: return "sext";
233 case FPTrunc: return "fptrunc";
234 case FPExt: return "fpext";
235 case FPToUI: return "fptoui";
236 case FPToSI: return "fptosi";
237 case UIToFP: return "uitofp";
238 case SIToFP: return "sitofp";
239 case IntToPtr: return "inttoptr";
240 case PtrToInt: return "ptrtoint";
241 case BitCast: return "bitcast";
242 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000243
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000244 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000245 case ICmp: return "icmp";
246 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000247 case PHI: return "phi";
248 case Select: return "select";
249 case Call: return "call";
250 case Shl: return "shl";
251 case LShr: return "lshr";
252 case AShr: return "ashr";
253 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000254 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000255 case InsertElement: return "insertelement";
256 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000257 case ExtractValue: return "extractvalue";
258 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000259 case LandingPad: return "landingpad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000260
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000261 default: return "<Invalid operator> ";
262 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000263}
Chris Lattnercab6c332002-10-31 04:14:01 +0000264
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000265/// Return true if both instructions have the same special state
266/// This must be kept in sync with lib/Transforms/IPO/MergeFunctions.cpp.
267static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
268 bool IgnoreAlignment = false) {
269 assert(I1->getOpcode() == I2->getOpcode() &&
270 "Can not compare special state of different instructions");
271
272 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
273 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
274 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
275 IgnoreAlignment) &&
276 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
277 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
278 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
279 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
280 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
281 IgnoreAlignment) &&
282 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
283 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
284 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
285 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
286 if (const CallInst *CI = dyn_cast<CallInst>(I1))
287 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
288 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
289 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
290 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
291 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
292 CI->getAttributes() ==
293 cast<InvokeInst>(I2)->getAttributes();
294 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
295 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
296 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
297 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
298 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
299 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
300 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
301 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
302 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000303 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000304 CXI->getSuccessOrdering() ==
305 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
306 CXI->getFailureOrdering() ==
307 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
308 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
309 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
310 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
311 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
312 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
313 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
314
315 return true;
316}
317
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000318/// isIdenticalTo - Return true if the specified instruction is exactly
319/// identical to the current one. This means that all operands match and any
320/// extra information (e.g. load is volatile) agree.
Chris Lattner378b0412008-11-27 08:39:18 +0000321bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000322 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000323 SubclassOptionalData == I->SubclassOptionalData;
324}
325
Dan Gohman23d2c762009-08-25 22:24:20 +0000326/// isIdenticalToWhenDefined - This is like isIdenticalTo, except that it
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000327/// ignores the SubclassOptionalData flags, which specify conditions
328/// under which the instruction's result is undefined.
329bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000330 if (getOpcode() != I->getOpcode() ||
331 getNumOperands() != I->getNumOperands() ||
332 getType() != I->getType())
333 return false;
334
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000335 // If both instructions have no operands, they are identical.
336 if (getNumOperands() == 0 && I->getNumOperands() == 0)
337 return haveSameSpecialState(this, I);
338
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000339 // We have two instructions of identical opcode and #operands. Check to see
340 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000341 if (!std::equal(op_begin(), op_end(), I->op_begin()))
342 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000343
Joel Jones3d90a9a2012-05-10 15:59:41 +0000344 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
345 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000346 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
347 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000348 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000349
350 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000351}
352
Reid Spencer266e42b2006-12-23 06:05:41 +0000353// isSameOperationAs
Dan Gohman17fb0d22009-06-12 19:03:05 +0000354// This should be kept in sync with isEquivalentOperation in
355// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000356bool Instruction::isSameOperationAs(const Instruction *I,
357 unsigned flags) const {
358 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
359 bool UseScalarTypes = flags & CompareUsingScalarTypes;
360
Dan Gohman17fb0d22009-06-12 19:03:05 +0000361 if (getOpcode() != I->getOpcode() ||
362 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000363 (UseScalarTypes ?
364 getType()->getScalarType() != I->getType()->getScalarType() :
365 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000366 return false;
367
368 // We have two instructions of identical opcode and #operands. Check to see
369 // if all operands are the same type
370 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000371 if (UseScalarTypes ?
372 getOperand(i)->getType()->getScalarType() !=
373 I->getOperand(i)->getType()->getScalarType() :
374 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000375 return false;
376
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000377 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000378}
379
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000380/// isUsedOutsideOfBlock - Return true if there are any uses of I outside of the
381/// specified block. Note that PHI nodes are considered to evaluate their
382/// operands in the corresponding predecessor block.
383bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000384 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000385 // PHI nodes uses values in the corresponding predecessor block. For other
386 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000387 const Instruction *I = cast<Instruction>(U.getUser());
388 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000389 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000390 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000391 return true;
392 continue;
393 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000394
Chandler Carruthcdf47882014-03-09 03:16:01 +0000395 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000396 return true;
397 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000398 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000399}
400
Chris Lattner84627112008-05-08 17:16:51 +0000401/// mayReadFromMemory - Return true if this instruction may read memory.
402///
403bool Instruction::mayReadFromMemory() const {
404 switch (getOpcode()) {
405 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000406 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000407 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000408 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000409 case Instruction::AtomicCmpXchg:
410 case Instruction::AtomicRMW:
Chris Lattner84627112008-05-08 17:16:51 +0000411 return true;
412 case Instruction::Call:
413 return !cast<CallInst>(this)->doesNotAccessMemory();
414 case Instruction::Invoke:
415 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000416 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000417 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000418 }
419}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000420
Chris Lattnerc992e182007-02-15 23:15:00 +0000421/// mayWriteToMemory - Return true if this instruction may modify memory.
422///
423bool Instruction::mayWriteToMemory() const {
424 switch (getOpcode()) {
425 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000426 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000427 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000428 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000429 case Instruction::AtomicCmpXchg:
430 case Instruction::AtomicRMW:
Chris Lattnerc992e182007-02-15 23:15:00 +0000431 return true;
432 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000433 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000434 case Instruction::Invoke:
435 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000436 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000437 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000438 }
439}
Chris Lattnercab6c332002-10-31 04:14:01 +0000440
Duncan Sands1efabaa2009-05-06 06:49:50 +0000441bool Instruction::mayThrow() const {
442 if (const CallInst *CI = dyn_cast<CallInst>(this))
443 return !CI->doesNotThrow();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000444 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000445}
446
Nadav Rotem01863472013-02-19 20:02:09 +0000447bool Instruction::mayReturn() const {
448 if (const CallInst *CI = dyn_cast<CallInst>(this))
449 return !CI->doesNotReturn();
450 return true;
451}
452
Chris Lattnercab6c332002-10-31 04:14:01 +0000453/// isAssociative - Return true if the instruction is associative:
454///
Dan Gohmana5b96452009-06-04 22:49:04 +0000455/// Associative operators satisfy: x op (y op z) === (x op y) op z
Chris Lattnercab6c332002-10-31 04:14:01 +0000456///
Dan Gohmana5b96452009-06-04 22:49:04 +0000457/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
Chris Lattnercab6c332002-10-31 04:14:01 +0000458///
Duncan Sands70db5e72010-12-20 13:10:23 +0000459bool Instruction::isAssociative(unsigned Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000460 return Opcode == And || Opcode == Or || Opcode == Xor ||
461 Opcode == Add || Opcode == Mul;
Chris Lattnercab6c332002-10-31 04:14:01 +0000462}
463
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000464bool Instruction::isAssociative() const {
465 unsigned Opcode = getOpcode();
466 if (isAssociative(Opcode))
467 return true;
468
469 switch (Opcode) {
470 case FMul:
471 case FAdd:
472 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
473 default:
474 return false;
475 }
476}
477
Chris Lattnercab6c332002-10-31 04:14:01 +0000478/// isCommutative - Return true if the instruction is commutative:
479///
Misha Brukmanfa100532003-10-10 17:54:14 +0000480/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnercab6c332002-10-31 04:14:01 +0000481///
482/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
483/// applied to any type.
484///
485bool Instruction::isCommutative(unsigned op) {
486 switch (op) {
487 case Add:
Dan Gohmana5b96452009-06-04 22:49:04 +0000488 case FAdd:
Chris Lattnercab6c332002-10-31 04:14:01 +0000489 case Mul:
Dan Gohmana5b96452009-06-04 22:49:04 +0000490 case FMul:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000491 case And:
Chris Lattnercab6c332002-10-31 04:14:01 +0000492 case Or:
493 case Xor:
Chris Lattnercab6c332002-10-31 04:14:01 +0000494 return true;
495 default:
496 return false;
497 }
498}
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000499
Duncan Sandsd7aeefe2012-06-12 14:33:56 +0000500/// isIdempotent - Return true if the instruction is idempotent:
501///
502/// Idempotent operators satisfy: x op x === x
503///
504/// In LLVM, the And and Or operators are idempotent.
505///
506bool Instruction::isIdempotent(unsigned Opcode) {
507 return Opcode == And || Opcode == Or;
508}
509
510/// isNilpotent - Return true if the instruction is nilpotent:
511///
512/// Nilpotent operators satisfy: x op x === Id,
513///
514/// where Id is the identity for the operator, i.e. a constant such that
515/// x op Id === x and Id op x === x for all x.
516///
517/// In LLVM, the Xor operator is nilpotent.
518///
519bool Instruction::isNilpotent(unsigned Opcode) {
520 return Opcode == Xor;
521}
522
Devang Patel11cf3f42009-10-27 22:16:29 +0000523Instruction *Instruction::clone() const {
524 Instruction *New = clone_impl();
525 New->SubclassOptionalData = SubclassOptionalData;
Chris Lattner68017802009-12-29 07:44:16 +0000526 if (!hasMetadata())
527 return New;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000528
Chris Lattner68017802009-12-29 07:44:16 +0000529 // Otherwise, enumerate and copy over metadata from the old instruction to the
530 // new one.
531 SmallVector<std::pair<unsigned, MDNode*>, 4> TheMDs;
Chris Lattner8f294912011-07-14 18:57:51 +0000532 getAllMetadataOtherThanDebugLoc(TheMDs);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000533 for (const auto &MD : TheMDs)
534 New->setMetadata(MD.first, MD.second);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000535
Chris Lattner8f294912011-07-14 18:57:51 +0000536 New->setDebugLoc(getDebugLoc());
Devang Patel11cf3f42009-10-27 22:16:29 +0000537 return New;
538}