blob: 000661073b10f86c9d360a21cd9faf5016bf15b9 [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 Carruth6bda14b2017-06-06 11:49:48 +000015#include "llvm/ADT/DenseSet.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000016#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/Instructions.h"
Dehao Chene5930492017-03-20 16:40:44 +000019#include "llvm/IR/MDBuilder.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000020#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Operator.h"
22#include "llvm/IR/Type.h"
Chris Lattner0e03ab62003-11-20 17:45:12 +000023using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000024
Chris Lattner229907c2011-07-18 04:54:35 +000025Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000026 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +000027 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner3c787442002-09-10 15:45:53 +000028
29 // If requested, insert this instruction into a basic block...
30 if (InsertBefore) {
Yaron Keren43b4d382015-06-15 17:03:35 +000031 BasicBlock *BB = InsertBefore->getParent();
32 assert(BB && "Instruction to insert before is not in a basic block!");
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000033 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner3c787442002-09-10 15:45:53 +000034 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000035}
36
Chris Lattner229907c2011-07-18 04:54:35 +000037Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000038 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000039 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000040
41 // append this instruction into the basic block
42 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
43 InsertAtEnd->getInstList().push_back(this);
Chris Lattner0f048162007-02-13 07:54:42 +000044}
45
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
Sanjoy Das411fdcd2015-12-08 00:13:12 +000061const Function *Instruction::getFunction() const {
62 return getParent()->getParent();
63}
Philip Reames388402452015-05-26 21:03:23 +000064
Chris Lattner02a71e72004-10-11 22:21:39 +000065void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000066 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000067}
68
Daniel Berlina5af7202015-04-02 00:03:07 +000069iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000070 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000071}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000072
Sanjay Patelf5c2d122016-01-06 00:18:29 +000073/// Insert an unlinked instruction into a basic block immediately before the
74/// specified instruction.
Owen Anderson2505e0c2008-06-17 18:29:27 +000075void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000076 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000077}
78
Sanjay Patelf5c2d122016-01-06 00:18:29 +000079/// Insert an unlinked instruction into a basic block immediately after the
80/// specified instruction.
Chris Lattner6e66d0a2009-01-13 07:43:51 +000081void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000082 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
83 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000084}
85
Sanjay Patelf5c2d122016-01-06 00:18:29 +000086/// Unlink this instruction from its current basic block and insert it into the
87/// basic block that MovePos lives in, right before MovePos.
Chris Lattner24a0a432005-08-08 05:21:50 +000088void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000089 moveBefore(*MovePos->getParent(), MovePos->getIterator());
90}
91
92void Instruction::moveBefore(BasicBlock &BB,
93 SymbolTableList<Instruction>::iterator I) {
94 assert(I == BB.end() || I->getParent() == &BB);
95 BB.getInstList().splice(I, getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +000096}
97
David Majnemer9554c132016-04-22 06:37:45 +000098void Instruction::setHasNoUnsignedWrap(bool b) {
99 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
100}
101
102void Instruction::setHasNoSignedWrap(bool b) {
103 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
104}
105
106void Instruction::setIsExact(bool b) {
107 cast<PossiblyExactOperator>(this)->setIsExact(b);
108}
109
110bool Instruction::hasNoUnsignedWrap() const {
111 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
112}
113
114bool Instruction::hasNoSignedWrap() const {
115 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
116}
117
Sanjoy Dasaa722ae2017-02-23 22:50:52 +0000118void Instruction::dropPoisonGeneratingFlags() {
119 switch (getOpcode()) {
120 case Instruction::Add:
121 case Instruction::Sub:
122 case Instruction::Mul:
123 case Instruction::Shl:
124 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(false);
125 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(false);
126 break;
127
128 case Instruction::UDiv:
129 case Instruction::SDiv:
130 case Instruction::AShr:
131 case Instruction::LShr:
132 cast<PossiblyExactOperator>(this)->setIsExact(false);
133 break;
134
135 case Instruction::GetElementPtr:
136 cast<GetElementPtrInst>(this)->setIsInBounds(false);
137 break;
138 }
139}
140
David Majnemer9554c132016-04-22 06:37:45 +0000141bool Instruction::isExact() const {
142 return cast<PossiblyExactOperator>(this)->isExact();
143}
144
Michael Ilseman149209e2012-11-27 00:41:22 +0000145void Instruction::setHasUnsafeAlgebra(bool B) {
146 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
147 cast<FPMathOperator>(this)->setHasUnsafeAlgebra(B);
148}
149
Michael Ilseman149209e2012-11-27 00:41:22 +0000150void Instruction::setHasNoNaNs(bool B) {
151 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
152 cast<FPMathOperator>(this)->setHasNoNaNs(B);
153}
154
Michael Ilseman149209e2012-11-27 00:41:22 +0000155void Instruction::setHasNoInfs(bool B) {
156 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
157 cast<FPMathOperator>(this)->setHasNoInfs(B);
158}
159
Michael Ilseman149209e2012-11-27 00:41:22 +0000160void Instruction::setHasNoSignedZeros(bool B) {
161 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
162 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
163}
164
Michael Ilseman149209e2012-11-27 00:41:22 +0000165void Instruction::setHasAllowReciprocal(bool B) {
166 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
167 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
168}
169
Michael Ilseman149209e2012-11-27 00:41:22 +0000170void Instruction::setFastMathFlags(FastMathFlags FMF) {
171 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
172 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
173}
174
Sanjay Patelb2325b92014-09-02 20:03:00 +0000175void Instruction::copyFastMathFlags(FastMathFlags FMF) {
176 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
177 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
178}
179
Michael Ilseman149209e2012-11-27 00:41:22 +0000180bool Instruction::hasUnsafeAlgebra() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000181 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000182 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
183}
184
Michael Ilseman149209e2012-11-27 00:41:22 +0000185bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000186 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000187 return cast<FPMathOperator>(this)->hasNoNaNs();
188}
189
Michael Ilseman149209e2012-11-27 00:41:22 +0000190bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000191 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000192 return cast<FPMathOperator>(this)->hasNoInfs();
193}
194
Michael Ilseman149209e2012-11-27 00:41:22 +0000195bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000196 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000197 return cast<FPMathOperator>(this)->hasNoSignedZeros();
198}
199
Michael Ilseman149209e2012-11-27 00:41:22 +0000200bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000201 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000202 return cast<FPMathOperator>(this)->hasAllowReciprocal();
203}
204
Adam Nemetcd847a82017-03-28 20:11:52 +0000205bool Instruction::hasAllowContract() const {
206 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
207 return cast<FPMathOperator>(this)->hasAllowContract();
208}
209
Michael Ilseman149209e2012-11-27 00:41:22 +0000210FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000211 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000212 return cast<FPMathOperator>(this)->getFastMathFlags();
213}
Chris Lattner24a0a432005-08-08 05:21:50 +0000214
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000215void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000216 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000217}
218
David Majnemer9554c132016-04-22 06:37:45 +0000219void Instruction::copyIRFlags(const Value *V) {
220 // Copy the wrapping flags.
221 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000222 if (isa<OverflowingBinaryOperator>(this)) {
223 setHasNoSignedWrap(OB->hasNoSignedWrap());
224 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
225 }
David Majnemer9554c132016-04-22 06:37:45 +0000226 }
227
228 // Copy the exact flag.
229 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000230 if (isa<PossiblyExactOperator>(this))
231 setIsExact(PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000232
233 // Copy the fast-math flags.
234 if (auto *FP = dyn_cast<FPMathOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000235 if (isa<FPMathOperator>(this))
236 copyFastMathFlags(FP->getFastMathFlags());
David Majnemer92f84cc2016-07-15 05:02:31 +0000237
238 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
239 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
240 DestGEP->setIsInBounds(SrcGEP->isInBounds() | DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000241}
242
243void Instruction::andIRFlags(const Value *V) {
244 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000245 if (isa<OverflowingBinaryOperator>(this)) {
246 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
247 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
248 }
David Majnemer9554c132016-04-22 06:37:45 +0000249 }
250
251 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000252 if (isa<PossiblyExactOperator>(this))
253 setIsExact(isExact() & PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000254
255 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000256 if (isa<FPMathOperator>(this)) {
257 FastMathFlags FM = getFastMathFlags();
258 FM &= FP->getFastMathFlags();
259 copyFastMathFlags(FM);
260 }
David Majnemer9554c132016-04-22 06:37:45 +0000261 }
David Majnemer92f84cc2016-07-15 05:02:31 +0000262
263 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
264 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
265 DestGEP->setIsInBounds(SrcGEP->isInBounds() & DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000266}
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000267
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000268const char *Instruction::getOpcodeName(unsigned OpCode) {
269 switch (OpCode) {
270 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000271 case Ret: return "ret";
272 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000273 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000274 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000275 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000276 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000277 case Unreachable: return "unreachable";
David Majnemer654e1302015-07-31 17:58:14 +0000278 case CleanupRet: return "cleanupret";
David Majnemer654e1302015-07-31 17:58:14 +0000279 case CatchRet: return "catchret";
280 case CatchPad: return "catchpad";
David Majnemer8a1c45d2015-12-12 05:38:55 +0000281 case CatchSwitch: return "catchswitch";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000282
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000283 // Standard binary operators...
284 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000285 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000286 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000287 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000288 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000289 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000290 case UDiv: return "udiv";
291 case SDiv: return "sdiv";
292 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000293 case URem: return "urem";
294 case SRem: return "srem";
295 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000296
297 // Logical operators...
298 case And: return "and";
299 case Or : return "or";
300 case Xor: return "xor";
301
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000302 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000303 case Alloca: return "alloca";
304 case Load: return "load";
305 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000306 case AtomicCmpXchg: return "cmpxchg";
307 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000308 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000309 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000310
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000311 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000312 case Trunc: return "trunc";
313 case ZExt: return "zext";
314 case SExt: return "sext";
315 case FPTrunc: return "fptrunc";
316 case FPExt: return "fpext";
317 case FPToUI: return "fptoui";
318 case FPToSI: return "fptosi";
319 case UIToFP: return "uitofp";
320 case SIToFP: return "sitofp";
321 case IntToPtr: return "inttoptr";
322 case PtrToInt: return "ptrtoint";
323 case BitCast: return "bitcast";
324 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000325
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000326 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000327 case ICmp: return "icmp";
328 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000329 case PHI: return "phi";
330 case Select: return "select";
331 case Call: return "call";
332 case Shl: return "shl";
333 case LShr: return "lshr";
334 case AShr: return "ashr";
335 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000336 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000337 case InsertElement: return "insertelement";
338 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000339 case ExtractValue: return "extractvalue";
340 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000341 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000342 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000343
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000344 default: return "<Invalid operator> ";
345 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000346}
Chris Lattnercab6c332002-10-31 04:14:01 +0000347
Sanjay Patela40c4792016-10-05 18:51:12 +0000348/// Return true if both instructions have the same special state. This must be
JF Bastien3b6eaac2016-04-11 22:30:37 +0000349/// kept in sync with FunctionComparator::cmpOperations in
350/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000351static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
352 bool IgnoreAlignment = false) {
353 assert(I1->getOpcode() == I2->getOpcode() &&
354 "Can not compare special state of different instructions");
355
JF Bastien5502e912016-04-12 18:06:55 +0000356 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
357 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
358 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
359 IgnoreAlignment);
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000360 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
361 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
362 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
363 IgnoreAlignment) &&
364 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
365 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
366 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
367 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
368 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
369 IgnoreAlignment) &&
370 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
371 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
372 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
373 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
374 if (const CallInst *CI = dyn_cast<CallInst>(I1))
375 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
376 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000377 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
378 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000379 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
380 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000381 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
382 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000383 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
384 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
385 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
386 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
387 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
388 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
389 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
390 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
391 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000392 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000393 CXI->getSuccessOrdering() ==
394 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
395 CXI->getFailureOrdering() ==
396 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
397 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
398 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
399 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
400 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
401 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
402 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
403
404 return true;
405}
406
Chris Lattner378b0412008-11-27 08:39:18 +0000407bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000408 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000409 SubclassOptionalData == I->SubclassOptionalData;
410}
411
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000412bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000413 if (getOpcode() != I->getOpcode() ||
414 getNumOperands() != I->getNumOperands() ||
415 getType() != I->getType())
416 return false;
417
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000418 // If both instructions have no operands, they are identical.
419 if (getNumOperands() == 0 && I->getNumOperands() == 0)
420 return haveSameSpecialState(this, I);
421
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000422 // We have two instructions of identical opcode and #operands. Check to see
423 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000424 if (!std::equal(op_begin(), op_end(), I->op_begin()))
425 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000426
Joel Jones3d90a9a2012-05-10 15:59:41 +0000427 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
428 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000429 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
430 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000431 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000432
433 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000434}
435
JF Bastien3b6eaac2016-04-11 22:30:37 +0000436// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman17fb0d22009-06-12 19:03:05 +0000437// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000438bool Instruction::isSameOperationAs(const Instruction *I,
439 unsigned flags) const {
440 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
441 bool UseScalarTypes = flags & CompareUsingScalarTypes;
442
Dan Gohman17fb0d22009-06-12 19:03:05 +0000443 if (getOpcode() != I->getOpcode() ||
444 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000445 (UseScalarTypes ?
446 getType()->getScalarType() != I->getType()->getScalarType() :
447 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000448 return false;
449
450 // We have two instructions of identical opcode and #operands. Check to see
451 // if all operands are the same type
452 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000453 if (UseScalarTypes ?
454 getOperand(i)->getType()->getScalarType() !=
455 I->getOperand(i)->getType()->getScalarType() :
456 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000457 return false;
458
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000459 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000460}
461
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000462bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000463 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000464 // PHI nodes uses values in the corresponding predecessor block. For other
465 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000466 const Instruction *I = cast<Instruction>(U.getUser());
467 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000468 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000469 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000470 return true;
471 continue;
472 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000473
Chandler Carruthcdf47882014-03-09 03:16:01 +0000474 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000475 return true;
476 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000477 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000478}
479
Chris Lattner84627112008-05-08 17:16:51 +0000480bool Instruction::mayReadFromMemory() const {
481 switch (getOpcode()) {
482 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000483 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000484 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000485 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000486 case Instruction::AtomicCmpXchg:
487 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000488 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000489 case Instruction::CatchRet:
Chris Lattner84627112008-05-08 17:16:51 +0000490 return true;
491 case Instruction::Call:
492 return !cast<CallInst>(this)->doesNotAccessMemory();
493 case Instruction::Invoke:
494 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000495 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000496 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000497 }
498}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000499
Chris Lattnerc992e182007-02-15 23:15:00 +0000500bool Instruction::mayWriteToMemory() const {
501 switch (getOpcode()) {
502 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000503 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000504 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000505 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000506 case Instruction::AtomicCmpXchg:
507 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000508 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000509 case Instruction::CatchRet:
Chris Lattnerc992e182007-02-15 23:15:00 +0000510 return true;
511 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000512 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000513 case Instruction::Invoke:
514 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000515 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000516 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000517 }
518}
Chris Lattnercab6c332002-10-31 04:14:01 +0000519
Robin Morisseted3d48f2014-09-03 21:29:59 +0000520bool Instruction::isAtomic() const {
521 switch (getOpcode()) {
522 default:
523 return false;
524 case Instruction::AtomicCmpXchg:
525 case Instruction::AtomicRMW:
526 case Instruction::Fence:
527 return true;
528 case Instruction::Load:
JF Bastien800f87a2016-04-06 21:19:33 +0000529 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000530 case Instruction::Store:
JF Bastien800f87a2016-04-06 21:19:33 +0000531 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000532 }
533}
534
Tim Shen04de70d2017-05-09 15:27:17 +0000535bool Instruction::hasAtomicLoad() const {
536 assert(isAtomic());
537 switch (getOpcode()) {
538 default:
539 return false;
540 case Instruction::AtomicCmpXchg:
541 case Instruction::AtomicRMW:
542 case Instruction::Load:
543 return true;
544 }
545}
546
547bool Instruction::hasAtomicStore() const {
548 assert(isAtomic());
549 switch (getOpcode()) {
550 default:
551 return false;
552 case Instruction::AtomicCmpXchg:
553 case Instruction::AtomicRMW:
554 case Instruction::Store:
555 return true;
556 }
557}
558
Duncan Sands1efabaa2009-05-06 06:49:50 +0000559bool Instruction::mayThrow() const {
560 if (const CallInst *CI = dyn_cast<CallInst>(this))
561 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000562 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
563 return CRI->unwindsToCaller();
David Majnemer8a1c45d2015-12-12 05:38:55 +0000564 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
565 return CatchSwitch->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000566 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000567}
568
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000569bool Instruction::isAssociative() const {
570 unsigned Opcode = getOpcode();
571 if (isAssociative(Opcode))
572 return true;
573
574 switch (Opcode) {
575 case FMul:
576 case FAdd:
577 return cast<FPMathOperator>(this)->hasUnsafeAlgebra();
578 default:
579 return false;
580 }
581}
582
Pete Cooper75403d72015-06-24 20:22:23 +0000583Instruction *Instruction::cloneImpl() const {
584 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
585}
586
Xinliang David Lidc491402016-08-23 15:39:03 +0000587void Instruction::swapProfMetadata() {
588 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
589 if (!ProfileData || ProfileData->getNumOperands() != 3 ||
590 !isa<MDString>(ProfileData->getOperand(0)))
591 return;
592
593 MDString *MDName = cast<MDString>(ProfileData->getOperand(0));
594 if (MDName->getString() != "branch_weights")
595 return;
596
597 // The first operand is the name. Fetch them backwards and build a new one.
598 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
599 ProfileData->getOperand(1)};
600 setMetadata(LLVMContext::MD_prof,
601 MDNode::get(ProfileData->getContext(), Ops));
602}
603
Xinliang David Lidc491402016-08-23 15:39:03 +0000604void Instruction::copyMetadata(const Instruction &SrcInst,
605 ArrayRef<unsigned> WL) {
606 if (!SrcInst.hasMetadata())
607 return;
608
609 DenseSet<unsigned> WLS;
610 for (unsigned M : WL)
611 WLS.insert(M);
612
613 // Otherwise, enumerate and copy over metadata from the old instruction to the
614 // new one.
615 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
616 SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs);
617 for (const auto &MD : TheMDs) {
618 if (WL.empty() || WLS.count(MD.first))
619 setMetadata(MD.first, MD.second);
620 }
621 if (WL.empty() || WLS.count(LLVMContext::MD_dbg))
622 setDebugLoc(SrcInst.getDebugLoc());
623 return;
624}
625
Devang Patel11cf3f42009-10-27 22:16:29 +0000626Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000627 Instruction *New = nullptr;
628 switch (getOpcode()) {
629 default:
630 llvm_unreachable("Unhandled Opcode.");
631#define HANDLE_INST(num, opc, clas) \
632 case Instruction::opc: \
633 New = cast<clas>(this)->cloneImpl(); \
634 break;
635#include "llvm/IR/Instruction.def"
636#undef HANDLE_INST
637 }
638
Devang Patel11cf3f42009-10-27 22:16:29 +0000639 New->SubclassOptionalData = SubclassOptionalData;
Xinliang David Lidc491402016-08-23 15:39:03 +0000640 New->copyMetadata(*this);
Devang Patel11cf3f42009-10-27 22:16:29 +0000641 return New;
642}
Dehao Chene5930492017-03-20 16:40:44 +0000643
644void Instruction::updateProfWeight(uint64_t S, uint64_t T) {
645 auto *ProfileData = getMetadata(LLVMContext::MD_prof);
646 if (ProfileData == nullptr)
647 return;
648
649 auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0));
Dehao Chena75d0da2017-05-05 00:47:34 +0000650 if (!ProfDataName || (!ProfDataName->getString().equals("branch_weights") &&
651 !ProfDataName->getString().equals("VP")))
Dehao Chene5930492017-03-20 16:40:44 +0000652 return;
653
Dehao Chene5930492017-03-20 16:40:44 +0000654 MDBuilder MDB(getContext());
Dehao Chena75d0da2017-05-05 00:47:34 +0000655 SmallVector<Metadata *, 3> Vals;
656 Vals.push_back(ProfileData->getOperand(0));
657 APInt APS(128, S), APT(128, T);
658 if (ProfDataName->getString().equals("branch_weights"))
659 for (unsigned i = 1; i < ProfileData->getNumOperands(); i++) {
660 // Using APInt::div may be expensive, but most cases should fit 64 bits.
661 APInt Val(128,
662 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i))
663 ->getValue()
664 .getZExtValue());
665 Val *= APS;
666 Vals.push_back(MDB.createConstant(
667 ConstantInt::get(Type::getInt64Ty(getContext()),
668 Val.udiv(APT).getLimitedValue())));
669 }
670 else if (ProfDataName->getString().equals("VP"))
671 for (unsigned i = 1; i < ProfileData->getNumOperands(); i += 2) {
672 // The first value is the key of the value profile, which will not change.
673 Vals.push_back(ProfileData->getOperand(i));
674 // Using APInt::div may be expensive, but most cases should fit 64 bits.
675 APInt Val(128,
676 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i + 1))
677 ->getValue()
678 .getZExtValue());
679 Val *= APS;
680 Vals.push_back(MDB.createConstant(
681 ConstantInt::get(Type::getInt64Ty(getContext()),
682 Val.udiv(APT).getLimitedValue())));
683 }
684 setMetadata(LLVMContext::MD_prof, MDNode::get(getContext(), Vals));
Dehao Chene5930492017-03-20 16:40:44 +0000685}
Dehao Chen722e9402017-03-23 23:26:00 +0000686
687void Instruction::setProfWeight(uint64_t W) {
688 assert((isa<CallInst>(this) || isa<InvokeInst>(this)) &&
689 "Can only set weights for call and invoke instrucitons");
690 SmallVector<uint32_t, 1> Weights;
691 Weights.push_back(W);
692 MDBuilder MDB(getContext());
693 setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights));
694}