blob: 508db9bcaf1937a0590a1ec5b61c5776556a763c [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"
Vedant Kumarf01827f2018-06-19 23:42:17 +000015#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000016#include "llvm/ADT/DenseSet.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 Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Operator.h"
21#include "llvm/IR/Type.h"
Chris Lattner0e03ab62003-11-20 17:45:12 +000022using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000023
Chris Lattner229907c2011-07-18 04:54:35 +000024Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000025 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +000026 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner3c787442002-09-10 15:45:53 +000027
28 // If requested, insert this instruction into a basic block...
29 if (InsertBefore) {
Yaron Keren43b4d382015-06-15 17:03:35 +000030 BasicBlock *BB = InsertBefore->getParent();
31 assert(BB && "Instruction to insert before is not in a basic block!");
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000032 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner3c787442002-09-10 15:45:53 +000033 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000034}
35
Chris Lattner229907c2011-07-18 04:54:35 +000036Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000037 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000038 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000039
40 // append this instruction into the basic block
41 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
42 InsertAtEnd->getInstList().push_back(this);
Chris Lattner0f048162007-02-13 07:54:42 +000043}
44
Gordon Henriksen14a55692007-12-10 02:14:30 +000045Instruction::~Instruction() {
Craig Topper2617dcc2014-04-15 06:32:26 +000046 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman48a995f2010-07-20 22:25:04 +000047 if (hasMetadataHashEntry())
48 clearMetadataHashEntries();
Chris Lattner1c12a882006-06-21 16:53:47 +000049}
50
51
Chris Lattner9ed7aef2002-09-06 21:33:15 +000052void Instruction::setParent(BasicBlock *P) {
53 Parent = P;
54}
55
Mehdi Amini9a9738f2015-03-03 22:01:13 +000056const Module *Instruction::getModule() const {
57 return getParent()->getModule();
58}
59
Sanjoy Das411fdcd2015-12-08 00:13:12 +000060const Function *Instruction::getFunction() const {
61 return getParent()->getParent();
62}
Philip Reames388402452015-05-26 21:03:23 +000063
Chris Lattner02a71e72004-10-11 22:21:39 +000064void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000065 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000066}
67
Daniel Berlina5af7202015-04-02 00:03:07 +000068iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000069 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000070}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000071
Sanjay Patelf5c2d122016-01-06 00:18:29 +000072/// Insert an unlinked instruction into a basic block immediately before the
73/// specified instruction.
Owen Anderson2505e0c2008-06-17 18:29:27 +000074void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000075 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000076}
77
Sanjay Patelf5c2d122016-01-06 00:18:29 +000078/// Insert an unlinked instruction into a basic block immediately after the
79/// specified instruction.
Chris Lattner6e66d0a2009-01-13 07:43:51 +000080void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000081 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
82 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000083}
84
Sanjay Patelf5c2d122016-01-06 00:18:29 +000085/// Unlink this instruction from its current basic block and insert it into the
86/// basic block that MovePos lives in, right before MovePos.
Chris Lattner24a0a432005-08-08 05:21:50 +000087void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000088 moveBefore(*MovePos->getParent(), MovePos->getIterator());
89}
90
Sanjay Patel674d2c22017-08-29 14:07:48 +000091void Instruction::moveAfter(Instruction *MovePos) {
92 moveBefore(*MovePos->getParent(), ++MovePos->getIterator());
93}
94
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000095void Instruction::moveBefore(BasicBlock &BB,
96 SymbolTableList<Instruction>::iterator I) {
97 assert(I == BB.end() || I->getParent() == &BB);
98 BB.getInstList().splice(I, getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +000099}
100
David Majnemer9554c132016-04-22 06:37:45 +0000101void Instruction::setHasNoUnsignedWrap(bool b) {
102 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
103}
104
105void Instruction::setHasNoSignedWrap(bool b) {
106 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
107}
108
109void Instruction::setIsExact(bool b) {
110 cast<PossiblyExactOperator>(this)->setIsExact(b);
111}
112
113bool Instruction::hasNoUnsignedWrap() const {
114 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
115}
116
117bool Instruction::hasNoSignedWrap() const {
118 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
119}
120
Sanjoy Dasaa722ae2017-02-23 22:50:52 +0000121void Instruction::dropPoisonGeneratingFlags() {
122 switch (getOpcode()) {
123 case Instruction::Add:
124 case Instruction::Sub:
125 case Instruction::Mul:
126 case Instruction::Shl:
127 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(false);
128 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(false);
129 break;
130
131 case Instruction::UDiv:
132 case Instruction::SDiv:
133 case Instruction::AShr:
134 case Instruction::LShr:
135 cast<PossiblyExactOperator>(this)->setIsExact(false);
136 break;
137
138 case Instruction::GetElementPtr:
139 cast<GetElementPtrInst>(this)->setIsInBounds(false);
140 break;
141 }
142}
143
David Majnemer9554c132016-04-22 06:37:45 +0000144bool Instruction::isExact() const {
145 return cast<PossiblyExactOperator>(this)->isExact();
146}
147
Sanjay Patel629c4112017-11-06 16:27:15 +0000148void Instruction::setFast(bool B) {
Michael Ilseman149209e2012-11-27 00:41:22 +0000149 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
Sanjay Patel629c4112017-11-06 16:27:15 +0000150 cast<FPMathOperator>(this)->setFast(B);
151}
152
153void Instruction::setHasAllowReassoc(bool B) {
154 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
155 cast<FPMathOperator>(this)->setHasAllowReassoc(B);
Michael Ilseman149209e2012-11-27 00:41:22 +0000156}
157
Michael Ilseman149209e2012-11-27 00:41:22 +0000158void Instruction::setHasNoNaNs(bool B) {
159 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
160 cast<FPMathOperator>(this)->setHasNoNaNs(B);
161}
162
Michael Ilseman149209e2012-11-27 00:41:22 +0000163void Instruction::setHasNoInfs(bool B) {
164 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
165 cast<FPMathOperator>(this)->setHasNoInfs(B);
166}
167
Michael Ilseman149209e2012-11-27 00:41:22 +0000168void Instruction::setHasNoSignedZeros(bool B) {
169 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
170 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
171}
172
Michael Ilseman149209e2012-11-27 00:41:22 +0000173void Instruction::setHasAllowReciprocal(bool B) {
174 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
175 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
176}
177
Sanjay Patel629c4112017-11-06 16:27:15 +0000178void Instruction::setHasApproxFunc(bool B) {
179 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
180 cast<FPMathOperator>(this)->setHasApproxFunc(B);
181}
182
Michael Ilseman149209e2012-11-27 00:41:22 +0000183void Instruction::setFastMathFlags(FastMathFlags FMF) {
184 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
185 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
186}
187
Sanjay Patelb2325b92014-09-02 20:03:00 +0000188void Instruction::copyFastMathFlags(FastMathFlags FMF) {
189 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
190 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
191}
192
Sanjay Patel629c4112017-11-06 16:27:15 +0000193bool Instruction::isFast() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000194 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Sanjay Patel629c4112017-11-06 16:27:15 +0000195 return cast<FPMathOperator>(this)->isFast();
196}
197
198bool Instruction::hasAllowReassoc() const {
199 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
200 return cast<FPMathOperator>(this)->hasAllowReassoc();
Michael Ilseman149209e2012-11-27 00:41:22 +0000201}
202
Michael Ilseman149209e2012-11-27 00:41:22 +0000203bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000204 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000205 return cast<FPMathOperator>(this)->hasNoNaNs();
206}
207
Michael Ilseman149209e2012-11-27 00:41:22 +0000208bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000209 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000210 return cast<FPMathOperator>(this)->hasNoInfs();
211}
212
Michael Ilseman149209e2012-11-27 00:41:22 +0000213bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000214 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000215 return cast<FPMathOperator>(this)->hasNoSignedZeros();
216}
217
Michael Ilseman149209e2012-11-27 00:41:22 +0000218bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000219 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000220 return cast<FPMathOperator>(this)->hasAllowReciprocal();
221}
222
Adam Nemetcd847a82017-03-28 20:11:52 +0000223bool Instruction::hasAllowContract() const {
224 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
225 return cast<FPMathOperator>(this)->hasAllowContract();
226}
227
Sanjay Patel629c4112017-11-06 16:27:15 +0000228bool Instruction::hasApproxFunc() const {
229 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
230 return cast<FPMathOperator>(this)->hasApproxFunc();
231}
232
Michael Ilseman149209e2012-11-27 00:41:22 +0000233FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000234 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000235 return cast<FPMathOperator>(this)->getFastMathFlags();
236}
Chris Lattner24a0a432005-08-08 05:21:50 +0000237
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000238void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000239 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000240}
241
George Burgess IVa20352e2017-06-09 03:56:15 +0000242void Instruction::copyIRFlags(const Value *V, bool IncludeWrapFlags) {
David Majnemer9554c132016-04-22 06:37:45 +0000243 // Copy the wrapping flags.
George Burgess IVa20352e2017-06-09 03:56:15 +0000244 if (IncludeWrapFlags && isa<OverflowingBinaryOperator>(this)) {
245 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000246 setHasNoSignedWrap(OB->hasNoSignedWrap());
247 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
248 }
David Majnemer9554c132016-04-22 06:37:45 +0000249 }
250
251 // Copy the exact flag.
252 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000253 if (isa<PossiblyExactOperator>(this))
254 setIsExact(PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000255
256 // Copy the fast-math flags.
257 if (auto *FP = dyn_cast<FPMathOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000258 if (isa<FPMathOperator>(this))
259 copyFastMathFlags(FP->getFastMathFlags());
David Majnemer92f84cc2016-07-15 05:02:31 +0000260
261 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
262 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
263 DestGEP->setIsInBounds(SrcGEP->isInBounds() | DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000264}
265
266void Instruction::andIRFlags(const Value *V) {
267 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000268 if (isa<OverflowingBinaryOperator>(this)) {
269 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
270 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
271 }
David Majnemer9554c132016-04-22 06:37:45 +0000272 }
273
274 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000275 if (isa<PossiblyExactOperator>(this))
276 setIsExact(isExact() & PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000277
278 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000279 if (isa<FPMathOperator>(this)) {
280 FastMathFlags FM = getFastMathFlags();
281 FM &= FP->getFastMathFlags();
282 copyFastMathFlags(FM);
283 }
David Majnemer9554c132016-04-22 06:37:45 +0000284 }
David Majnemer92f84cc2016-07-15 05:02:31 +0000285
286 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
287 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
288 DestGEP->setIsInBounds(SrcGEP->isInBounds() & DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000289}
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000290
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000291const char *Instruction::getOpcodeName(unsigned OpCode) {
292 switch (OpCode) {
293 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000294 case Ret: return "ret";
295 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000296 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000297 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000298 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000299 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000300 case Unreachable: return "unreachable";
David Majnemer654e1302015-07-31 17:58:14 +0000301 case CleanupRet: return "cleanupret";
David Majnemer654e1302015-07-31 17:58:14 +0000302 case CatchRet: return "catchret";
303 case CatchPad: return "catchpad";
David Majnemer8a1c45d2015-12-12 05:38:55 +0000304 case CatchSwitch: return "catchswitch";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000305
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000306 // Standard binary operators...
307 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000308 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000309 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000310 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000311 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000312 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000313 case UDiv: return "udiv";
314 case SDiv: return "sdiv";
315 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000316 case URem: return "urem";
317 case SRem: return "srem";
318 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000319
320 // Logical operators...
321 case And: return "and";
322 case Or : return "or";
323 case Xor: return "xor";
324
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000325 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000326 case Alloca: return "alloca";
327 case Load: return "load";
328 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000329 case AtomicCmpXchg: return "cmpxchg";
330 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000331 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000332 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000333
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000334 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000335 case Trunc: return "trunc";
336 case ZExt: return "zext";
337 case SExt: return "sext";
338 case FPTrunc: return "fptrunc";
339 case FPExt: return "fpext";
340 case FPToUI: return "fptoui";
341 case FPToSI: return "fptosi";
342 case UIToFP: return "uitofp";
343 case SIToFP: return "sitofp";
344 case IntToPtr: return "inttoptr";
345 case PtrToInt: return "ptrtoint";
346 case BitCast: return "bitcast";
347 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000348
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000349 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000350 case ICmp: return "icmp";
351 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000352 case PHI: return "phi";
353 case Select: return "select";
354 case Call: return "call";
355 case Shl: return "shl";
356 case LShr: return "lshr";
357 case AShr: return "ashr";
358 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000359 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000360 case InsertElement: return "insertelement";
361 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000362 case ExtractValue: return "extractvalue";
363 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000364 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000365 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000366
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000367 default: return "<Invalid operator> ";
368 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000369}
Chris Lattnercab6c332002-10-31 04:14:01 +0000370
Sanjay Patela40c4792016-10-05 18:51:12 +0000371/// Return true if both instructions have the same special state. This must be
JF Bastien3b6eaac2016-04-11 22:30:37 +0000372/// kept in sync with FunctionComparator::cmpOperations in
373/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000374static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
375 bool IgnoreAlignment = false) {
376 assert(I1->getOpcode() == I2->getOpcode() &&
377 "Can not compare special state of different instructions");
378
JF Bastien5502e912016-04-12 18:06:55 +0000379 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
380 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
381 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
382 IgnoreAlignment);
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000383 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
384 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
385 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
386 IgnoreAlignment) &&
387 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000388 LI->getSyncScopeID() == cast<LoadInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000389 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
390 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
391 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
392 IgnoreAlignment) &&
393 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000394 SI->getSyncScopeID() == cast<StoreInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000395 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
396 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
397 if (const CallInst *CI = dyn_cast<CallInst>(I1))
398 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
399 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000400 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
401 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000402 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
403 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000404 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
405 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000406 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
407 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
408 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
409 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
410 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
411 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000412 FI->getSyncScopeID() == cast<FenceInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000413 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
414 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000415 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000416 CXI->getSuccessOrdering() ==
417 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
418 CXI->getFailureOrdering() ==
419 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000420 CXI->getSyncScopeID() ==
421 cast<AtomicCmpXchgInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000422 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
423 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
424 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
425 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000426 RMWI->getSyncScopeID() == cast<AtomicRMWInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000427
428 return true;
429}
430
Chris Lattner378b0412008-11-27 08:39:18 +0000431bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000432 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000433 SubclassOptionalData == I->SubclassOptionalData;
434}
435
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000436bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000437 if (getOpcode() != I->getOpcode() ||
438 getNumOperands() != I->getNumOperands() ||
439 getType() != I->getType())
440 return false;
441
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000442 // If both instructions have no operands, they are identical.
443 if (getNumOperands() == 0 && I->getNumOperands() == 0)
444 return haveSameSpecialState(this, I);
445
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000446 // We have two instructions of identical opcode and #operands. Check to see
447 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000448 if (!std::equal(op_begin(), op_end(), I->op_begin()))
449 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000450
Joel Jones3d90a9a2012-05-10 15:59:41 +0000451 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
452 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000453 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
454 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000455 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000456
457 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000458}
459
JF Bastien3b6eaac2016-04-11 22:30:37 +0000460// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman17fb0d22009-06-12 19:03:05 +0000461// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000462bool Instruction::isSameOperationAs(const Instruction *I,
463 unsigned flags) const {
464 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
465 bool UseScalarTypes = flags & CompareUsingScalarTypes;
466
Dan Gohman17fb0d22009-06-12 19:03:05 +0000467 if (getOpcode() != I->getOpcode() ||
468 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000469 (UseScalarTypes ?
470 getType()->getScalarType() != I->getType()->getScalarType() :
471 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000472 return false;
473
474 // We have two instructions of identical opcode and #operands. Check to see
475 // if all operands are the same type
476 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000477 if (UseScalarTypes ?
478 getOperand(i)->getType()->getScalarType() !=
479 I->getOperand(i)->getType()->getScalarType() :
480 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000481 return false;
482
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000483 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000484}
485
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000486bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000487 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000488 // PHI nodes uses values in the corresponding predecessor block. For other
489 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000490 const Instruction *I = cast<Instruction>(U.getUser());
491 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000492 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000493 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000494 return true;
495 continue;
496 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000497
Chandler Carruthcdf47882014-03-09 03:16:01 +0000498 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000499 return true;
500 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000501 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000502}
503
Chris Lattner84627112008-05-08 17:16:51 +0000504bool Instruction::mayReadFromMemory() const {
505 switch (getOpcode()) {
506 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000507 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000508 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000509 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000510 case Instruction::AtomicCmpXchg:
511 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000512 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000513 case Instruction::CatchRet:
Chris Lattner84627112008-05-08 17:16:51 +0000514 return true;
515 case Instruction::Call:
516 return !cast<CallInst>(this)->doesNotAccessMemory();
517 case Instruction::Invoke:
518 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000519 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000520 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000521 }
522}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000523
Chris Lattnerc992e182007-02-15 23:15:00 +0000524bool Instruction::mayWriteToMemory() const {
525 switch (getOpcode()) {
526 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000527 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000528 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000529 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000530 case Instruction::AtomicCmpXchg:
531 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000532 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000533 case Instruction::CatchRet:
Chris Lattnerc992e182007-02-15 23:15:00 +0000534 return true;
535 case Instruction::Call:
Duncan Sands38ef3a82007-12-03 20:06:50 +0000536 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattner84627112008-05-08 17:16:51 +0000537 case Instruction::Invoke:
538 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000539 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000540 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000541 }
542}
Chris Lattnercab6c332002-10-31 04:14:01 +0000543
Robin Morisseted3d48f2014-09-03 21:29:59 +0000544bool Instruction::isAtomic() const {
545 switch (getOpcode()) {
546 default:
547 return false;
548 case Instruction::AtomicCmpXchg:
549 case Instruction::AtomicRMW:
550 case Instruction::Fence:
551 return true;
552 case Instruction::Load:
JF Bastien800f87a2016-04-06 21:19:33 +0000553 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000554 case Instruction::Store:
JF Bastien800f87a2016-04-06 21:19:33 +0000555 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000556 }
557}
558
Tim Shen04de70d2017-05-09 15:27:17 +0000559bool Instruction::hasAtomicLoad() const {
560 assert(isAtomic());
561 switch (getOpcode()) {
562 default:
563 return false;
564 case Instruction::AtomicCmpXchg:
565 case Instruction::AtomicRMW:
566 case Instruction::Load:
567 return true;
568 }
569}
570
571bool Instruction::hasAtomicStore() const {
572 assert(isAtomic());
573 switch (getOpcode()) {
574 default:
575 return false;
576 case Instruction::AtomicCmpXchg:
577 case Instruction::AtomicRMW:
578 case Instruction::Store:
579 return true;
580 }
581}
582
Duncan Sands1efabaa2009-05-06 06:49:50 +0000583bool Instruction::mayThrow() const {
584 if (const CallInst *CI = dyn_cast<CallInst>(this))
585 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000586 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
587 return CRI->unwindsToCaller();
David Majnemer8a1c45d2015-12-12 05:38:55 +0000588 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
589 return CatchSwitch->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000590 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000591}
592
Chris Bienemanabdea262018-01-09 21:58:46 +0000593bool Instruction::isSafeToRemove() const {
594 return (!isa<CallInst>(this) || !this->mayHaveSideEffects()) &&
595 !isa<TerminatorInst>(this);
596}
597
Vedant Kumarf01827f2018-06-19 23:42:17 +0000598const Instruction *Instruction::getNextNonDebugInstruction() const {
599 for (const Instruction *I = getNextNode(); I; I = I->getNextNode())
600 if (!isa<DbgInfoIntrinsic>(I))
601 return I;
602 return nullptr;
603}
604
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000605bool Instruction::isAssociative() const {
606 unsigned Opcode = getOpcode();
607 if (isAssociative(Opcode))
608 return true;
609
610 switch (Opcode) {
611 case FMul:
612 case FAdd:
Warren Ristowd3efa942018-05-24 20:16:43 +0000613 return cast<FPMathOperator>(this)->hasAllowReassoc() &&
614 cast<FPMathOperator>(this)->hasNoSignedZeros();
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000615 default:
616 return false;
617 }
618}
619
Pete Cooper75403d72015-06-24 20:22:23 +0000620Instruction *Instruction::cloneImpl() const {
621 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
622}
623
Xinliang David Lidc491402016-08-23 15:39:03 +0000624void Instruction::swapProfMetadata() {
625 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
626 if (!ProfileData || ProfileData->getNumOperands() != 3 ||
627 !isa<MDString>(ProfileData->getOperand(0)))
628 return;
629
630 MDString *MDName = cast<MDString>(ProfileData->getOperand(0));
631 if (MDName->getString() != "branch_weights")
632 return;
633
634 // The first operand is the name. Fetch them backwards and build a new one.
635 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
636 ProfileData->getOperand(1)};
637 setMetadata(LLVMContext::MD_prof,
638 MDNode::get(ProfileData->getContext(), Ops));
639}
640
Xinliang David Lidc491402016-08-23 15:39:03 +0000641void Instruction::copyMetadata(const Instruction &SrcInst,
642 ArrayRef<unsigned> WL) {
643 if (!SrcInst.hasMetadata())
644 return;
645
646 DenseSet<unsigned> WLS;
647 for (unsigned M : WL)
648 WLS.insert(M);
649
650 // Otherwise, enumerate and copy over metadata from the old instruction to the
651 // new one.
652 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
653 SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs);
654 for (const auto &MD : TheMDs) {
655 if (WL.empty() || WLS.count(MD.first))
656 setMetadata(MD.first, MD.second);
657 }
658 if (WL.empty() || WLS.count(LLVMContext::MD_dbg))
659 setDebugLoc(SrcInst.getDebugLoc());
Xinliang David Lidc491402016-08-23 15:39:03 +0000660}
661
Devang Patel11cf3f42009-10-27 22:16:29 +0000662Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000663 Instruction *New = nullptr;
664 switch (getOpcode()) {
665 default:
666 llvm_unreachable("Unhandled Opcode.");
667#define HANDLE_INST(num, opc, clas) \
668 case Instruction::opc: \
669 New = cast<clas>(this)->cloneImpl(); \
670 break;
671#include "llvm/IR/Instruction.def"
672#undef HANDLE_INST
673 }
674
Devang Patel11cf3f42009-10-27 22:16:29 +0000675 New->SubclassOptionalData = SubclassOptionalData;
Xinliang David Lidc491402016-08-23 15:39:03 +0000676 New->copyMetadata(*this);
Devang Patel11cf3f42009-10-27 22:16:29 +0000677 return New;
678}
Dehao Chene5930492017-03-20 16:40:44 +0000679
680void Instruction::updateProfWeight(uint64_t S, uint64_t T) {
681 auto *ProfileData = getMetadata(LLVMContext::MD_prof);
682 if (ProfileData == nullptr)
683 return;
684
685 auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0));
Dehao Chena75d0da2017-05-05 00:47:34 +0000686 if (!ProfDataName || (!ProfDataName->getString().equals("branch_weights") &&
687 !ProfDataName->getString().equals("VP")))
Dehao Chene5930492017-03-20 16:40:44 +0000688 return;
689
Dehao Chene5930492017-03-20 16:40:44 +0000690 MDBuilder MDB(getContext());
Dehao Chena75d0da2017-05-05 00:47:34 +0000691 SmallVector<Metadata *, 3> Vals;
692 Vals.push_back(ProfileData->getOperand(0));
693 APInt APS(128, S), APT(128, T);
694 if (ProfDataName->getString().equals("branch_weights"))
695 for (unsigned i = 1; i < ProfileData->getNumOperands(); i++) {
696 // Using APInt::div may be expensive, but most cases should fit 64 bits.
697 APInt Val(128,
698 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i))
699 ->getValue()
700 .getZExtValue());
701 Val *= APS;
702 Vals.push_back(MDB.createConstant(
703 ConstantInt::get(Type::getInt64Ty(getContext()),
704 Val.udiv(APT).getLimitedValue())));
705 }
706 else if (ProfDataName->getString().equals("VP"))
707 for (unsigned i = 1; i < ProfileData->getNumOperands(); i += 2) {
708 // The first value is the key of the value profile, which will not change.
709 Vals.push_back(ProfileData->getOperand(i));
710 // Using APInt::div may be expensive, but most cases should fit 64 bits.
711 APInt Val(128,
712 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i + 1))
713 ->getValue()
714 .getZExtValue());
715 Val *= APS;
716 Vals.push_back(MDB.createConstant(
717 ConstantInt::get(Type::getInt64Ty(getContext()),
718 Val.udiv(APT).getLimitedValue())));
719 }
720 setMetadata(LLVMContext::MD_prof, MDNode::get(getContext(), Vals));
Dehao Chene5930492017-03-20 16:40:44 +0000721}
Dehao Chen722e9402017-03-23 23:26:00 +0000722
723void Instruction::setProfWeight(uint64_t W) {
724 assert((isa<CallInst>(this) || isa<InvokeInst>(this)) &&
725 "Can only set weights for call and invoke instrucitons");
726 SmallVector<uint32_t, 1> Weights;
727 Weights.push_back(W);
728 MDBuilder MDB(getContext());
729 setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights));
730}