blob: b5a30a4969b3e2bb3aa63d160ac4cbfb24cbb630 [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
65
Chris Lattner02a71e72004-10-11 22:21:39 +000066void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000067 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000068}
69
Daniel Berlina5af7202015-04-02 00:03:07 +000070iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000071 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000072}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000073
Owen Anderson2505e0c2008-06-17 18:29:27 +000074/// insertBefore - Insert an unlinked instructions into a basic block
75/// immediately before the specified instruction.
76void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000077 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000078}
79
Chris Lattner6e66d0a2009-01-13 07:43:51 +000080/// insertAfter - Insert an unlinked instructions into a basic block
81/// immediately after the specified instruction.
82void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000083 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
84 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000085}
86
Chris Lattner24a0a432005-08-08 05:21:50 +000087/// moveBefore - Unlink this instruction from its current basic block and
88/// insert it into the basic block that MovePos lives in, right before
89/// MovePos.
90void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000091 MovePos->getParent()->getInstList().splice(
92 MovePos->getIterator(), getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +000093}
94
Michael Ilseman149209e2012-11-27 00:41:22 +000095/// Set or clear the unsafe-algebra flag on this instruction, which must be an
96/// operator which supports this flag. See LangRef.html for the meaning of this
97/// flag.
98void Instruction::setHasUnsafeAlgebra(bool B) {
99 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
100 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
101}
102
103/// Set or clear the NoNaNs flag on this instruction, which must be an operator
104/// which supports this flag. See LangRef.html for the meaning of this flag.
105void Instruction::setHasNoNaNs(bool B) {
106 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
107 cast<FPMathOperator>(this)->setHasNoNaNs(B);
108}
109
110/// Set or clear the no-infs flag on this instruction, which must be an operator
111/// which supports this flag. See LangRef.html for the meaning of this flag.
112void Instruction::setHasNoInfs(bool B) {
113 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
114 cast<FPMathOperator>(this)->setHasNoInfs(B);
115}
116
117/// Set or clear the no-signed-zeros flag on this instruction, which must be an
118/// operator which supports this flag. See LangRef.html for the meaning of this
119/// flag.
120void Instruction::setHasNoSignedZeros(bool B) {
121 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
122 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
123}
124
125/// Set or clear the allow-reciprocal flag on this instruction, which must be an
126/// operator which supports this flag. See LangRef.html for the meaning of this
127/// flag.
128void Instruction::setHasAllowReciprocal(bool B) {
129 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
130 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
131}
132
133/// Convenience function for setting all the fast-math flags on this
134/// instruction, which must be an operator which supports these flags. See
135/// LangRef.html for the meaning of these flats.
136void Instruction::setFastMathFlags(FastMathFlags FMF) {
137 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
138 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
139}
140
Sanjay Patelb2325b92014-09-02 20:03:00 +0000141void Instruction::copyFastMathFlags(FastMathFlags FMF) {
142 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
143 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
144}
145
Michael Ilseman149209e2012-11-27 00:41:22 +0000146/// 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
Sanjay Patel1893a252014-09-10 16:58:40 +0000178/// these flags.
Michael Ilseman149209e2012-11-27 00:41:22 +0000179FastMathFlags 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) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000186 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000187}
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";
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +0000200 case CleanupEndPad: return "cleanupendpad";
David Majnemer654e1302015-07-31 17:58:14 +0000201 case CleanupRet: return "cleanupret";
202 case CatchEndPad: return "catchendpad";
203 case CatchRet: return "catchret";
204 case CatchPad: return "catchpad";
205 case TerminatePad: return "terminatepad";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000206
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000207 // Standard binary operators...
208 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000209 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000210 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000211 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000212 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000213 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000214 case UDiv: return "udiv";
215 case SDiv: return "sdiv";
216 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000217 case URem: return "urem";
218 case SRem: return "srem";
219 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000220
221 // Logical operators...
222 case And: return "and";
223 case Or : return "or";
224 case Xor: return "xor";
225
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000226 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000227 case Alloca: return "alloca";
228 case Load: return "load";
229 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000230 case AtomicCmpXchg: return "cmpxchg";
231 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000232 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000233 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000234
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000235 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000236 case Trunc: return "trunc";
237 case ZExt: return "zext";
238 case SExt: return "sext";
239 case FPTrunc: return "fptrunc";
240 case FPExt: return "fpext";
241 case FPToUI: return "fptoui";
242 case FPToSI: return "fptosi";
243 case UIToFP: return "uitofp";
244 case SIToFP: return "sitofp";
245 case IntToPtr: return "inttoptr";
246 case PtrToInt: return "ptrtoint";
247 case BitCast: return "bitcast";
248 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000249
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000250 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000251 case ICmp: return "icmp";
252 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000253 case PHI: return "phi";
254 case Select: return "select";
255 case Call: return "call";
256 case Shl: return "shl";
257 case LShr: return "lshr";
258 case AShr: return "ashr";
259 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000260 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000261 case InsertElement: return "insertelement";
262 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000263 case ExtractValue: return "extractvalue";
264 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000265 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000266 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000267
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000268 default: return "<Invalid operator> ";
269 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000270}
Chris Lattnercab6c332002-10-31 04:14:01 +0000271
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000272/// Return true if both instructions have the same special state
273/// This must be kept in sync with lib/Transforms/IPO/MergeFunctions.cpp.
274static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
275 bool IgnoreAlignment = false) {
276 assert(I1->getOpcode() == I2->getOpcode() &&
277 "Can not compare special state of different instructions");
278
279 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
280 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
281 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
282 IgnoreAlignment) &&
283 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
284 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
285 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
286 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
287 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
288 IgnoreAlignment) &&
289 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
290 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
291 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
292 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
293 if (const CallInst *CI = dyn_cast<CallInst>(I1))
294 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
295 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
296 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
297 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
298 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
299 CI->getAttributes() ==
300 cast<InvokeInst>(I2)->getAttributes();
301 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
302 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
303 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
304 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
305 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
306 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
307 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
308 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
309 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000310 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000311 CXI->getSuccessOrdering() ==
312 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
313 CXI->getFailureOrdering() ==
314 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
315 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
316 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
317 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
318 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
319 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
320 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
321
322 return true;
323}
324
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000325/// isIdenticalTo - Return true if the specified instruction is exactly
326/// identical to the current one. This means that all operands match and any
327/// extra information (e.g. load is volatile) agree.
Chris Lattner378b0412008-11-27 08:39:18 +0000328bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000329 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000330 SubclassOptionalData == I->SubclassOptionalData;
331}
332
Dan Gohman23d2c762009-08-25 22:24:20 +0000333/// isIdenticalToWhenDefined - This is like isIdenticalTo, except that it
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000334/// ignores the SubclassOptionalData flags, which specify conditions
335/// under which the instruction's result is undefined.
336bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000337 if (getOpcode() != I->getOpcode() ||
338 getNumOperands() != I->getNumOperands() ||
339 getType() != I->getType())
340 return false;
341
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000342 // If both instructions have no operands, they are identical.
343 if (getNumOperands() == 0 && I->getNumOperands() == 0)
344 return haveSameSpecialState(this, I);
345
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000346 // We have two instructions of identical opcode and #operands. Check to see
347 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000348 if (!std::equal(op_begin(), op_end(), I->op_begin()))
349 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000350
Joel Jones3d90a9a2012-05-10 15:59:41 +0000351 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
352 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000353 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
354 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000355 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000356
357 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000358}
359
Reid Spencer266e42b2006-12-23 06:05:41 +0000360// isSameOperationAs
Dan Gohman17fb0d22009-06-12 19:03:05 +0000361// This should be kept in sync with isEquivalentOperation in
362// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000363bool Instruction::isSameOperationAs(const Instruction *I,
364 unsigned flags) const {
365 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
366 bool UseScalarTypes = flags & CompareUsingScalarTypes;
367
Dan Gohman17fb0d22009-06-12 19:03:05 +0000368 if (getOpcode() != I->getOpcode() ||
369 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000370 (UseScalarTypes ?
371 getType()->getScalarType() != I->getType()->getScalarType() :
372 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000373 return false;
374
375 // We have two instructions of identical opcode and #operands. Check to see
376 // if all operands are the same type
377 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000378 if (UseScalarTypes ?
379 getOperand(i)->getType()->getScalarType() !=
380 I->getOperand(i)->getType()->getScalarType() :
381 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000382 return false;
383
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000384 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000385}
386
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000387/// isUsedOutsideOfBlock - Return true if there are any uses of I outside of the
388/// specified block. Note that PHI nodes are considered to evaluate their
389/// operands in the corresponding predecessor block.
390bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000391 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000392 // PHI nodes uses values in the corresponding predecessor block. For other
393 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000394 const Instruction *I = cast<Instruction>(U.getUser());
395 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000396 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000397 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000398 return true;
399 continue;
400 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000401
Chandler Carruthcdf47882014-03-09 03:16:01 +0000402 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000403 return true;
404 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000405 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000406}
407
Chris Lattner84627112008-05-08 17:16:51 +0000408/// mayReadFromMemory - Return true if this instruction may read memory.
409///
410bool Instruction::mayReadFromMemory() const {
411 switch (getOpcode()) {
412 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000413 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000414 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000415 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000416 case Instruction::AtomicCmpXchg:
417 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000418 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000419 case Instruction::CatchRet:
420 case Instruction::TerminatePad:
Chris Lattner84627112008-05-08 17:16:51 +0000421 return true;
422 case Instruction::Call:
423 return !cast<CallInst>(this)->doesNotAccessMemory();
424 case Instruction::Invoke:
425 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000426 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000427 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000428 }
429}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000430
Chris Lattnerc992e182007-02-15 23:15:00 +0000431/// mayWriteToMemory - Return true if this instruction may modify memory.
432///
433bool Instruction::mayWriteToMemory() const {
434 switch (getOpcode()) {
435 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000436 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000437 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000438 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000439 case Instruction::AtomicCmpXchg:
440 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000441 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000442 case Instruction::CatchRet:
443 case Instruction::TerminatePad:
Chris Lattnerc992e182007-02-15 23:15:00 +0000444 return true;
445 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000446 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000447 case Instruction::Invoke:
448 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000449 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000450 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000451 }
452}
Chris Lattnercab6c332002-10-31 04:14:01 +0000453
Robin Morisseted3d48f2014-09-03 21:29:59 +0000454bool Instruction::isAtomic() const {
455 switch (getOpcode()) {
456 default:
457 return false;
458 case Instruction::AtomicCmpXchg:
459 case Instruction::AtomicRMW:
460 case Instruction::Fence:
461 return true;
462 case Instruction::Load:
463 return cast<LoadInst>(this)->getOrdering() != NotAtomic;
464 case Instruction::Store:
465 return cast<StoreInst>(this)->getOrdering() != NotAtomic;
466 }
467}
468
Duncan Sands1efabaa2009-05-06 06:49:50 +0000469bool Instruction::mayThrow() const {
470 if (const CallInst *CI = dyn_cast<CallInst>(this))
471 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000472 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
473 return CRI->unwindsToCaller();
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +0000474 if (const auto *CEPI = dyn_cast<CleanupEndPadInst>(this))
475 return CEPI->unwindsToCaller();
David Majnemer654e1302015-07-31 17:58:14 +0000476 if (const auto *CEPI = dyn_cast<CatchEndPadInst>(this))
477 return CEPI->unwindsToCaller();
478 if (const auto *TPI = dyn_cast<TerminatePadInst>(this))
479 return TPI->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000480 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000481}
482
Nadav Rotem01863472013-02-19 20:02:09 +0000483bool Instruction::mayReturn() const {
484 if (const CallInst *CI = dyn_cast<CallInst>(this))
485 return !CI->doesNotReturn();
486 return true;
487}
488
Chris Lattnercab6c332002-10-31 04:14:01 +0000489/// isAssociative - Return true if the instruction is associative:
490///
Dan Gohmana5b96452009-06-04 22:49:04 +0000491/// Associative operators satisfy: x op (y op z) === (x op y) op z
Chris Lattnercab6c332002-10-31 04:14:01 +0000492///
Dan Gohmana5b96452009-06-04 22:49:04 +0000493/// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
Chris Lattnercab6c332002-10-31 04:14:01 +0000494///
Duncan Sands70db5e72010-12-20 13:10:23 +0000495bool Instruction::isAssociative(unsigned Opcode) {
Dan Gohmana5b96452009-06-04 22:49:04 +0000496 return Opcode == And || Opcode == Or || Opcode == Xor ||
497 Opcode == Add || Opcode == Mul;
Chris Lattnercab6c332002-10-31 04:14:01 +0000498}
499
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000500bool Instruction::isAssociative() const {
501 unsigned Opcode = getOpcode();
502 if (isAssociative(Opcode))
503 return true;
504
505 switch (Opcode) {
506 case FMul:
507 case FAdd:
508 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
509 default:
510 return false;
511 }
512}
513
Chris Lattnercab6c332002-10-31 04:14:01 +0000514/// isCommutative - Return true if the instruction is commutative:
515///
Misha Brukmanfa100532003-10-10 17:54:14 +0000516/// Commutative operators satisfy: (x op y) === (y op x)
Chris Lattnercab6c332002-10-31 04:14:01 +0000517///
518/// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
519/// applied to any type.
520///
521bool Instruction::isCommutative(unsigned op) {
522 switch (op) {
523 case Add:
Dan Gohmana5b96452009-06-04 22:49:04 +0000524 case FAdd:
Chris Lattnercab6c332002-10-31 04:14:01 +0000525 case Mul:
Dan Gohmana5b96452009-06-04 22:49:04 +0000526 case FMul:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000527 case And:
Chris Lattnercab6c332002-10-31 04:14:01 +0000528 case Or:
529 case Xor:
Chris Lattnercab6c332002-10-31 04:14:01 +0000530 return true;
531 default:
532 return false;
533 }
534}
Tanya Lattnera93c7ae2003-07-31 04:05:50 +0000535
Duncan Sandsd7aeefe2012-06-12 14:33:56 +0000536/// isIdempotent - Return true if the instruction is idempotent:
537///
538/// Idempotent operators satisfy: x op x === x
539///
540/// In LLVM, the And and Or operators are idempotent.
541///
542bool Instruction::isIdempotent(unsigned Opcode) {
543 return Opcode == And || Opcode == Or;
544}
545
546/// isNilpotent - Return true if the instruction is nilpotent:
547///
548/// Nilpotent operators satisfy: x op x === Id,
549///
550/// where Id is the identity for the operator, i.e. a constant such that
551/// x op Id === x and Id op x === x for all x.
552///
553/// In LLVM, the Xor operator is nilpotent.
554///
555bool Instruction::isNilpotent(unsigned Opcode) {
556 return Opcode == Xor;
557}
558
Pete Cooper75403d72015-06-24 20:22:23 +0000559Instruction *Instruction::cloneImpl() const {
560 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
561}
562
Devang Patel11cf3f42009-10-27 22:16:29 +0000563Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000564 Instruction *New = nullptr;
565 switch (getOpcode()) {
566 default:
567 llvm_unreachable("Unhandled Opcode.");
568#define HANDLE_INST(num, opc, clas) \
569 case Instruction::opc: \
570 New = cast<clas>(this)->cloneImpl(); \
571 break;
572#include "llvm/IR/Instruction.def"
573#undef HANDLE_INST
574 }
575
Devang Patel11cf3f42009-10-27 22:16:29 +0000576 New->SubclassOptionalData = SubclassOptionalData;
Chris Lattner68017802009-12-29 07:44:16 +0000577 if (!hasMetadata())
578 return New;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000579
Chris Lattner68017802009-12-29 07:44:16 +0000580 // Otherwise, enumerate and copy over metadata from the old instruction to the
581 // new one.
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000582 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
Chris Lattner8f294912011-07-14 18:57:51 +0000583 getAllMetadataOtherThanDebugLoc(TheMDs);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000584 for (const auto &MD : TheMDs)
585 New->setMetadata(MD.first, MD.second);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000586
Chris Lattner8f294912011-07-14 18:57:51 +0000587 New->setDebugLoc(getDebugLoc());
Devang Patel11cf3f42009-10-27 22:16:29 +0000588 return New;
589}