blob: d861b5288592cac8ba7a498d8aac3e6363aab316 [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- Instruction.cpp - Implement the Instruction class -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chandler Carruthc2c50cd2013-01-02 09:10:48 +000010// This file implements the Instruction class for the IR library.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000014#include "llvm/IR/Instruction.h"
Vedant Kumar83a64512018-06-19 23:42:17 +000015#include "llvm/IR/IntrinsicInst.h"
Chandler Carruthe3e43d92017-06-06 11:49:48 +000016#include "llvm/ADT/DenseSet.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/Instructions.h"
Dehao Chenc7322da2017-03-20 16:40:44 +000019#include "llvm/IR/MDBuilder.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000020#include "llvm/IR/Operator.h"
21#include "llvm/IR/Type.h"
Chris Lattner4b74c832003-11-20 17:45:12 +000022using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000023
Chris Lattnerdb125cf2011-07-18 04:54:35 +000024Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner910c80a2007-02-24 00:55:48 +000025 Instruction *InsertBefore)
Craig Topperec0f0bc2014-04-09 06:08:46 +000026 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner2aa83112002-09-10 15:45:53 +000027
28 // If requested, insert this instruction into a basic block...
29 if (InsertBefore) {
Yaron Keren698a7e52015-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 Smitheac30952015-10-08 23:49:46 +000032 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner2aa83112002-09-10 15:45:53 +000033 }
Chris Lattner00950542001-06-06 20:29:01 +000034}
35
Chris Lattnerdb125cf2011-07-18 04:54:35 +000036Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner910c80a2007-02-24 00:55:48 +000037 BasicBlock *InsertAtEnd)
Craig Topperec0f0bc2014-04-09 06:08:46 +000038 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenose5828f12004-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 Lattnerf00042a2007-02-13 07:54:42 +000043}
44
Gordon Henriksenafba8fe662007-12-10 02:14:30 +000045Instruction::~Instruction() {
Craig Topper0b6cb712014-04-15 06:32:26 +000046 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman4f1be4a2010-07-20 22:25:04 +000047 if (hasMetadataHashEntry())
48 clearMetadataHashEntries();
Chris Lattner70aa33e2006-06-21 16:53:47 +000049}
50
51
Chris Lattnerbded1322002-09-06 21:33:15 +000052void Instruction::setParent(BasicBlock *P) {
53 Parent = P;
54}
55
Mehdi Aminia716c072015-03-03 22:01:13 +000056const Module *Instruction::getModule() const {
57 return getParent()->getModule();
58}
59
Sanjoy Dasc11338c2015-12-08 00:13:12 +000060const Function *Instruction::getFunction() const {
61 return getParent()->getParent();
62}
Philip Reamesd59f9702015-05-26 21:03:23 +000063
Chris Lattner4b833802004-10-11 22:21:39 +000064void Instruction::removeFromParent() {
Duncan P. N. Exon Smitheac30952015-10-08 23:49:46 +000065 getParent()->getInstList().remove(getIterator());
Chris Lattner4b833802004-10-11 22:21:39 +000066}
67
Daniel Berlin525a9592015-04-02 00:03:07 +000068iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smitheac30952015-10-08 23:49:46 +000069 return getParent()->getInstList().erase(getIterator());
Chris Lattner4b833802004-10-11 22:21:39 +000070}
Vikram S. Advec1056452002-07-14 23:09:40 +000071
Sanjay Patela66b6e62016-01-06 00:18:29 +000072/// Insert an unlinked instruction into a basic block immediately before the
73/// specified instruction.
Owen Anderson26bb50a2008-06-17 18:29:27 +000074void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smitheac30952015-10-08 23:49:46 +000075 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson26bb50a2008-06-17 18:29:27 +000076}
77
Sanjay Patela66b6e62016-01-06 00:18:29 +000078/// Insert an unlinked instruction into a basic block immediately after the
79/// specified instruction.
Chris Lattner3ff704f2009-01-13 07:43:51 +000080void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smitheac30952015-10-08 23:49:46 +000081 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
82 this);
Chris Lattner3ff704f2009-01-13 07:43:51 +000083}
84
Sanjay Patela66b6e62016-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 Lattner0fe34d82005-08-08 05:21:50 +000087void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith3b3dd882016-08-17 01:54:41 +000088 moveBefore(*MovePos->getParent(), MovePos->getIterator());
89}
90
Sanjay Patel1bf09152017-08-29 14:07:48 +000091void Instruction::moveAfter(Instruction *MovePos) {
92 moveBefore(*MovePos->getParent(), ++MovePos->getIterator());
93}
94
Duncan P. N. Exon Smith3b3dd882016-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 Lattner0fe34d82005-08-08 05:21:50 +000099}
100
David Majnemer91e5e852016-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 Das9e369752017-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 Majnemer91e5e852016-04-22 06:37:45 +0000144bool Instruction::isExact() const {
145 return cast<PossiblyExactOperator>(this)->isExact();
146}
147
Sanjay Patel00e900a2017-11-06 16:27:15 +0000148void Instruction::setFast(bool B) {
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000149 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
Sanjay Patel00e900a2017-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 Ilseman125fc7f2012-11-27 00:41:22 +0000156}
157
Michael Ilseman125fc7f2012-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 Ilseman125fc7f2012-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 Ilseman125fc7f2012-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 Ilseman125fc7f2012-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 Patel00e900a2017-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 Ilseman125fc7f2012-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 Patel4211bbc2014-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 Patel00e900a2017-11-06 16:27:15 +0000193bool Instruction::isFast() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000194 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Sanjay Patel00e900a2017-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 Ilseman125fc7f2012-11-27 00:41:22 +0000201}
202
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000203bool Instruction::hasNoNaNs() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000204 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000205 return cast<FPMathOperator>(this)->hasNoNaNs();
206}
207
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000208bool Instruction::hasNoInfs() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000209 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000210 return cast<FPMathOperator>(this)->hasNoInfs();
211}
212
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000213bool Instruction::hasNoSignedZeros() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000214 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000215 return cast<FPMathOperator>(this)->hasNoSignedZeros();
216}
217
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000218bool Instruction::hasAllowReciprocal() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000219 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000220 return cast<FPMathOperator>(this)->hasAllowReciprocal();
221}
222
Adam Nemet5c57c112017-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 Patel00e900a2017-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 Ilseman125fc7f2012-11-27 00:41:22 +0000233FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosieradd80b42014-06-11 18:26:29 +0000234 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman125fc7f2012-11-27 00:41:22 +0000235 return cast<FPMathOperator>(this)->getFastMathFlags();
236}
Chris Lattner0fe34d82005-08-08 05:21:50 +0000237
Michael Ilseman4b896dd2012-11-29 21:25:12 +0000238void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patel4211bbc2014-09-02 20:03:00 +0000239 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman4b896dd2012-11-29 21:25:12 +0000240}
241
George Burgess IV92760502017-06-09 03:56:15 +0000242void Instruction::copyIRFlags(const Value *V, bool IncludeWrapFlags) {
David Majnemer91e5e852016-04-22 06:37:45 +0000243 // Copy the wrapping flags.
George Burgess IV92760502017-06-09 03:56:15 +0000244 if (IncludeWrapFlags && isa<OverflowingBinaryOperator>(this)) {
245 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemer582e8562016-04-22 06:37:51 +0000246 setHasNoSignedWrap(OB->hasNoSignedWrap());
247 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
248 }
David Majnemer91e5e852016-04-22 06:37:45 +0000249 }
250
251 // Copy the exact flag.
252 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemer582e8562016-04-22 06:37:51 +0000253 if (isa<PossiblyExactOperator>(this))
254 setIsExact(PE->isExact());
David Majnemer91e5e852016-04-22 06:37:45 +0000255
256 // Copy the fast-math flags.
257 if (auto *FP = dyn_cast<FPMathOperator>(V))
David Majnemer582e8562016-04-22 06:37:51 +0000258 if (isa<FPMathOperator>(this))
259 copyFastMathFlags(FP->getFastMathFlags());
David Majnemer1bd42842016-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 Majnemer91e5e852016-04-22 06:37:45 +0000264}
265
266void Instruction::andIRFlags(const Value *V) {
267 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemer582e8562016-04-22 06:37:51 +0000268 if (isa<OverflowingBinaryOperator>(this)) {
269 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
270 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
271 }
David Majnemer91e5e852016-04-22 06:37:45 +0000272 }
273
274 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemer582e8562016-04-22 06:37:51 +0000275 if (isa<PossiblyExactOperator>(this))
276 setIsExact(isExact() & PE->isExact());
David Majnemer91e5e852016-04-22 06:37:45 +0000277
278 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
David Majnemer582e8562016-04-22 06:37:51 +0000279 if (isa<FPMathOperator>(this)) {
280 FastMathFlags FM = getFastMathFlags();
281 FM &= FP->getFastMathFlags();
282 copyFastMathFlags(FM);
283 }
David Majnemer91e5e852016-04-22 06:37:45 +0000284 }
David Majnemer1bd42842016-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 Majnemer91e5e852016-04-22 06:37:45 +0000289}
Michael Ilseman4b896dd2012-11-29 21:25:12 +0000290
Vikram S. Advec1056452002-07-14 23:09:40 +0000291const char *Instruction::getOpcodeName(unsigned OpCode) {
292 switch (OpCode) {
293 // Terminators
Chris Lattner0513e9f2002-08-14 18:18:02 +0000294 case Ret: return "ret";
295 case Br: return "br";
Vikram S. Advec1056452002-07-14 23:09:40 +0000296 case Switch: return "switch";
Chris Lattnerab21db72009-10-28 00:19:10 +0000297 case IndirectBr: return "indirectbr";
Vikram S. Advec1056452002-07-14 23:09:40 +0000298 case Invoke: return "invoke";
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000299 case Resume: return "resume";
Chris Lattnerb976e662004-10-16 18:08:06 +0000300 case Unreachable: return "unreachable";
David Majnemer4a45f082015-07-31 17:58:14 +0000301 case CleanupRet: return "cleanupret";
David Majnemer4a45f082015-07-31 17:58:14 +0000302 case CatchRet: return "catchret";
303 case CatchPad: return "catchpad";
David Majnemer8cec2f22015-12-12 05:38:55 +0000304 case CatchSwitch: return "catchswitch";
Misha Brukmanfd939082005-04-21 23:48:37 +0000305
Cameron McInallyca8cb682018-11-13 18:15:47 +0000306 // Standard unary operators...
307 case FNeg: return "fneg";
308
Vikram S. Advec1056452002-07-14 23:09:40 +0000309 // Standard binary operators...
310 case Add: return "add";
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000311 case FAdd: return "fadd";
Vikram S. Advec1056452002-07-14 23:09:40 +0000312 case Sub: return "sub";
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000313 case FSub: return "fsub";
Vikram S. Advec1056452002-07-14 23:09:40 +0000314 case Mul: return "mul";
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000315 case FMul: return "fmul";
Reid Spencer1628cec2006-10-26 06:15:43 +0000316 case UDiv: return "udiv";
317 case SDiv: return "sdiv";
318 case FDiv: return "fdiv";
Reid Spencer0a783f72006-11-02 01:53:59 +0000319 case URem: return "urem";
320 case SRem: return "srem";
321 case FRem: return "frem";
Vikram S. Advec1056452002-07-14 23:09:40 +0000322
323 // Logical operators...
324 case And: return "and";
325 case Or : return "or";
326 case Xor: return "xor";
327
Vikram S. Advec1056452002-07-14 23:09:40 +0000328 // Memory instructions...
Vikram S. Advec1056452002-07-14 23:09:40 +0000329 case Alloca: return "alloca";
330 case Load: return "load";
331 case Store: return "store";
Eli Friedmanff030482011-07-28 21:48:00 +0000332 case AtomicCmpXchg: return "cmpxchg";
333 case AtomicRMW: return "atomicrmw";
Eli Friedman47f35132011-07-25 23:16:38 +0000334 case Fence: return "fence";
Vikram S. Advec1056452002-07-14 23:09:40 +0000335 case GetElementPtr: return "getelementptr";
Misha Brukmanfd939082005-04-21 23:48:37 +0000336
Reid Spencer3da59db2006-11-27 01:05:10 +0000337 // Convert instructions...
Matt Arsenault59d3ae62013-11-15 01:34:59 +0000338 case Trunc: return "trunc";
339 case ZExt: return "zext";
340 case SExt: return "sext";
341 case FPTrunc: return "fptrunc";
342 case FPExt: return "fpext";
343 case FPToUI: return "fptoui";
344 case FPToSI: return "fptosi";
345 case UIToFP: return "uitofp";
346 case SIToFP: return "sitofp";
347 case IntToPtr: return "inttoptr";
348 case PtrToInt: return "ptrtoint";
349 case BitCast: return "bitcast";
350 case AddrSpaceCast: return "addrspacecast";
Reid Spencer3da59db2006-11-27 01:05:10 +0000351
Vikram S. Advec1056452002-07-14 23:09:40 +0000352 // Other instructions...
Reid Spencer74f16422006-12-03 06:27:29 +0000353 case ICmp: return "icmp";
354 case FCmp: return "fcmp";
Reid Spencer3da59db2006-11-27 01:05:10 +0000355 case PHI: return "phi";
356 case Select: return "select";
357 case Call: return "call";
358 case Shl: return "shl";
359 case LShr: return "lshr";
360 case AShr: return "ashr";
361 case VAArg: return "va_arg";
Robert Bocchinob52ee7f2006-01-10 19:05:34 +0000362 case ExtractElement: return "extractelement";
Reid Spencer3da59db2006-11-27 01:05:10 +0000363 case InsertElement: return "insertelement";
364 case ShuffleVector: return "shufflevector";
Matthijs Kooijman74b5e072008-05-30 10:31:54 +0000365 case ExtractValue: return "extractvalue";
366 case InsertValue: return "insertvalue";
Bill Wendlinge6e88262011-08-12 20:24:12 +0000367 case LandingPad: return "landingpad";
Joseph Tremouletd4a765f2015-08-23 00:26:33 +0000368 case CleanupPad: return "cleanuppad";
Chris Lattner8f77dae2003-05-08 02:44:12 +0000369
Vikram S. Advec1056452002-07-14 23:09:40 +0000370 default: return "<Invalid operator> ";
371 }
Vikram S. Advec1056452002-07-14 23:09:40 +0000372}
Chris Lattnerf2da7242002-10-31 04:14:01 +0000373
Sanjay Patel5e827ba2016-10-05 18:51:12 +0000374/// Return true if both instructions have the same special state. This must be
JF Bastieneb5d5612016-04-11 22:30:37 +0000375/// kept in sync with FunctionComparator::cmpOperations in
376/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000377static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
378 bool IgnoreAlignment = false) {
379 assert(I1->getOpcode() == I2->getOpcode() &&
380 "Can not compare special state of different instructions");
381
JF Bastien5e99fa62016-04-12 18:06:55 +0000382 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
383 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
384 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
385 IgnoreAlignment);
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000386 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
387 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
388 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
389 IgnoreAlignment) &&
390 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000391 LI->getSyncScopeID() == cast<LoadInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000392 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
393 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
394 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
395 IgnoreAlignment) &&
396 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000397 SI->getSyncScopeID() == cast<StoreInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000398 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
399 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
400 if (const CallInst *CI = dyn_cast<CallInst>(I1))
401 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
402 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das97a58d82015-12-14 19:11:35 +0000403 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
404 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000405 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
406 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das97a58d82015-12-14 19:11:35 +0000407 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
408 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000409 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
410 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
411 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
412 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
413 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
414 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000415 FI->getSyncScopeID() == cast<FenceInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000416 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
417 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover8f2a85e2014-06-13 14:24:07 +0000418 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000419 CXI->getSuccessOrdering() ==
420 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
421 CXI->getFailureOrdering() ==
422 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000423 CXI->getSyncScopeID() ==
424 cast<AtomicCmpXchgInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000425 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
426 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
427 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
428 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
Konstantin Zhuravlyov8f856852017-07-11 22:23:00 +0000429 RMWI->getSyncScopeID() == cast<AtomicRMWInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000430
431 return true;
432}
433
Chris Lattnere3a08842008-11-27 08:39:18 +0000434bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman75b0eda2009-08-25 22:24:20 +0000435 return isIdenticalToWhenDefined(I) &&
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000436 SubclassOptionalData == I->SubclassOptionalData;
437}
438
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000439bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner38f14552004-11-30 02:51:53 +0000440 if (getOpcode() != I->getOpcode() ||
441 getNumOperands() != I->getNumOperands() ||
442 getType() != I->getType())
443 return false;
444
NAKAMURA Takumidf191392014-06-02 01:35:34 +0000445 // If both instructions have no operands, they are identical.
446 if (getNumOperands() == 0 && I->getNumOperands() == 0)
447 return haveSameSpecialState(this, I);
448
Chris Lattner38f14552004-11-30 02:51:53 +0000449 // We have two instructions of identical opcode and #operands. Check to see
450 // if all operands are the same.
Benjamin Kramer6e9eeab2014-03-10 15:03:06 +0000451 if (!std::equal(op_begin(), op_end(), I->op_begin()))
452 return false;
Chris Lattner38f14552004-11-30 02:51:53 +0000453
Joel Jones9df72a92012-05-10 15:59:41 +0000454 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
455 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer6e9eeab2014-03-10 15:03:06 +0000456 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
457 otherPHI->block_begin());
Joel Jones9df72a92012-05-10 15:59:41 +0000458 }
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000459
460 return haveSameSpecialState(this, I);
Chris Lattner38f14552004-11-30 02:51:53 +0000461}
462
JF Bastieneb5d5612016-04-11 22:30:37 +0000463// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman194ae782009-06-12 19:03:05 +0000464// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkelec4e85e2012-06-28 05:42:26 +0000465bool Instruction::isSameOperationAs(const Instruction *I,
466 unsigned flags) const {
467 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
468 bool UseScalarTypes = flags & CompareUsingScalarTypes;
469
Dan Gohman194ae782009-06-12 19:03:05 +0000470 if (getOpcode() != I->getOpcode() ||
471 getNumOperands() != I->getNumOperands() ||
Hal Finkelec4e85e2012-06-28 05:42:26 +0000472 (UseScalarTypes ?
473 getType()->getScalarType() != I->getType()->getScalarType() :
474 getType() != I->getType()))
Reid Spencere4d87aa2006-12-23 06:05:41 +0000475 return false;
476
477 // We have two instructions of identical opcode and #operands. Check to see
478 // if all operands are the same type
479 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkelec4e85e2012-06-28 05:42:26 +0000480 if (UseScalarTypes ?
481 getOperand(i)->getType()->getScalarType() !=
482 I->getOperand(i)->getType()->getScalarType() :
483 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencere4d87aa2006-12-23 06:05:41 +0000484 return false;
485
Arnaud A. de Grandmaisond4ffb932014-05-27 21:35:46 +0000486 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000487}
488
Chris Lattner7ae40e72008-04-20 22:11:30 +0000489bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruth36b699f2014-03-09 03:16:01 +0000490 for (const Use &U : uses()) {
Chris Lattner7ae40e72008-04-20 22:11:30 +0000491 // PHI nodes uses values in the corresponding predecessor block. For other
492 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruth36b699f2014-03-09 03:16:01 +0000493 const Instruction *I = cast<Instruction>(U.getUser());
494 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperec0f0bc2014-04-09 06:08:46 +0000495 if (!PN) {
Chandler Carruth36b699f2014-03-09 03:16:01 +0000496 if (I->getParent() != BB)
Chris Lattner7ae40e72008-04-20 22:11:30 +0000497 return true;
498 continue;
499 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000500
Chandler Carruth36b699f2014-03-09 03:16:01 +0000501 if (PN->getIncomingBlock(U) != BB)
Chris Lattner7ae40e72008-04-20 22:11:30 +0000502 return true;
503 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000504 return false;
Chris Lattner7ae40e72008-04-20 22:11:30 +0000505}
506
Chris Lattnerd96288a2008-05-08 17:16:51 +0000507bool Instruction::mayReadFromMemory() const {
508 switch (getOpcode()) {
509 default: return false;
Chris Lattnerd96288a2008-05-08 17:16:51 +0000510 case Instruction::VAArg:
Chris Lattner748118d2008-05-08 21:58:49 +0000511 case Instruction::Load:
Eli Friedman8a552bb2011-07-27 01:08:30 +0000512 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedman55ba8162011-07-29 03:05:32 +0000513 case Instruction::AtomicCmpXchg:
514 case Instruction::AtomicRMW:
David Majnemer1c018c22015-09-10 18:50:09 +0000515 case Instruction::CatchPad:
David Majnemer4a45f082015-07-31 17:58:14 +0000516 case Instruction::CatchRet:
Chris Lattnerd96288a2008-05-08 17:16:51 +0000517 return true;
518 case Instruction::Call:
519 return !cast<CallInst>(this)->doesNotAccessMemory();
520 case Instruction::Invoke:
521 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Chris Lattner748118d2008-05-08 21:58:49 +0000522 case Instruction::Store:
Eli Friedmane5e77122011-08-15 21:00:18 +0000523 return !cast<StoreInst>(this)->isUnordered();
Chris Lattnerd96288a2008-05-08 17:16:51 +0000524 }
525}
Chris Lattner7ae40e72008-04-20 22:11:30 +0000526
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000527bool Instruction::mayWriteToMemory() const {
528 switch (getOpcode()) {
529 default: return false;
Eli Friedman8a552bb2011-07-27 01:08:30 +0000530 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000531 case Instruction::Store:
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000532 case Instruction::VAArg:
Eli Friedman55ba8162011-07-29 03:05:32 +0000533 case Instruction::AtomicCmpXchg:
534 case Instruction::AtomicRMW:
David Majnemer1c018c22015-09-10 18:50:09 +0000535 case Instruction::CatchPad:
David Majnemer4a45f082015-07-31 17:58:14 +0000536 case Instruction::CatchRet:
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000537 return true;
538 case Instruction::Call:
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000539 return !cast<CallInst>(this)->onlyReadsMemory();
Chris Lattnerd96288a2008-05-08 17:16:51 +0000540 case Instruction::Invoke:
541 return !cast<InvokeInst>(this)->onlyReadsMemory();
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000542 case Instruction::Load:
Eli Friedmane5e77122011-08-15 21:00:18 +0000543 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerbb5493d2007-02-15 23:15:00 +0000544 }
545}
Chris Lattnerf2da7242002-10-31 04:14:01 +0000546
Robin Morisset1ad925c2014-09-03 21:29:59 +0000547bool Instruction::isAtomic() const {
548 switch (getOpcode()) {
549 default:
550 return false;
551 case Instruction::AtomicCmpXchg:
552 case Instruction::AtomicRMW:
553 case Instruction::Fence:
554 return true;
555 case Instruction::Load:
JF Bastienb36d1a82016-04-06 21:19:33 +0000556 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisset1ad925c2014-09-03 21:29:59 +0000557 case Instruction::Store:
JF Bastienb36d1a82016-04-06 21:19:33 +0000558 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisset1ad925c2014-09-03 21:29:59 +0000559 }
560}
561
Tim Shenf52671d2017-05-09 15:27:17 +0000562bool Instruction::hasAtomicLoad() const {
563 assert(isAtomic());
564 switch (getOpcode()) {
565 default:
566 return false;
567 case Instruction::AtomicCmpXchg:
568 case Instruction::AtomicRMW:
569 case Instruction::Load:
570 return true;
571 }
572}
573
574bool Instruction::hasAtomicStore() const {
575 assert(isAtomic());
576 switch (getOpcode()) {
577 default:
578 return false;
579 case Instruction::AtomicCmpXchg:
580 case Instruction::AtomicRMW:
581 case Instruction::Store:
582 return true;
583 }
584}
585
Duncan Sands7af1c782009-05-06 06:49:50 +0000586bool Instruction::mayThrow() const {
587 if (const CallInst *CI = dyn_cast<CallInst>(this))
588 return !CI->doesNotThrow();
David Majnemer4a45f082015-07-31 17:58:14 +0000589 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
590 return CRI->unwindsToCaller();
David Majnemer8cec2f22015-12-12 05:38:55 +0000591 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
592 return CatchSwitch->unwindsToCaller();
Bill Wendling55fdb4e2011-08-16 21:15:50 +0000593 return isa<ResumeInst>(this);
Duncan Sands7af1c782009-05-06 06:49:50 +0000594}
595
Chris Bieneman5489d322018-01-09 21:58:46 +0000596bool Instruction::isSafeToRemove() const {
597 return (!isa<CallInst>(this) || !this->mayHaveSideEffects()) &&
Chandler Carruth9179aee2018-08-26 09:51:22 +0000598 !this->isTerminator();
Chris Bieneman5489d322018-01-09 21:58:46 +0000599}
600
Vedant Kumareeb19712018-12-21 21:49:40 +0000601bool Instruction::isLifetimeStartOrEnd() const {
602 auto II = dyn_cast<IntrinsicInst>(this);
603 if (!II)
604 return false;
605 Intrinsic::ID ID = II->getIntrinsicID();
606 return ID == Intrinsic::lifetime_start || ID == Intrinsic::lifetime_end;
607}
608
Vedant Kumar83a64512018-06-19 23:42:17 +0000609const Instruction *Instruction::getNextNonDebugInstruction() const {
610 for (const Instruction *I = getNextNode(); I; I = I->getNextNode())
611 if (!isa<DbgInfoIntrinsic>(I))
612 return I;
613 return nullptr;
614}
615
Carlos Alberto Enciso8381d3e2018-11-09 09:42:10 +0000616const Instruction *Instruction::getPrevNonDebugInstruction() const {
617 for (const Instruction *I = getPrevNode(); I; I = I->getPrevNode())
618 if (!isa<DbgInfoIntrinsic>(I))
619 return I;
620 return nullptr;
621}
622
Shuxin Yang9b7f6f22012-11-29 01:47:31 +0000623bool Instruction::isAssociative() const {
624 unsigned Opcode = getOpcode();
625 if (isAssociative(Opcode))
626 return true;
627
628 switch (Opcode) {
629 case FMul:
630 case FAdd:
Warren Ristow0bd45c42018-05-24 20:16:43 +0000631 return cast<FPMathOperator>(this)->hasAllowReassoc() &&
632 cast<FPMathOperator>(this)->hasNoSignedZeros();
Shuxin Yang9b7f6f22012-11-29 01:47:31 +0000633 default:
634 return false;
635 }
636}
637
Chandler Carruth5eb83c52018-08-26 08:41:15 +0000638unsigned Instruction::getNumSuccessors() const {
639 switch (getOpcode()) {
640#define HANDLE_TERM_INST(N, OPC, CLASS) \
641 case Instruction::OPC: \
642 return static_cast<const CLASS *>(this)->getNumSuccessors();
643#include "llvm/IR/Instruction.def"
644 default:
645 break;
646 }
647 llvm_unreachable("not a terminator");
648}
649
650BasicBlock *Instruction::getSuccessor(unsigned idx) const {
651 switch (getOpcode()) {
652#define HANDLE_TERM_INST(N, OPC, CLASS) \
653 case Instruction::OPC: \
654 return static_cast<const CLASS *>(this)->getSuccessor(idx);
655#include "llvm/IR/Instruction.def"
656 default:
657 break;
658 }
659 llvm_unreachable("not a terminator");
660}
661
662void Instruction::setSuccessor(unsigned idx, BasicBlock *B) {
663 switch (getOpcode()) {
664#define HANDLE_TERM_INST(N, OPC, CLASS) \
665 case Instruction::OPC: \
666 return static_cast<CLASS *>(this)->setSuccessor(idx, B);
667#include "llvm/IR/Instruction.def"
668 default:
669 break;
670 }
671 llvm_unreachable("not a terminator");
672}
673
Pete Cooperf79d2532015-06-24 20:22:23 +0000674Instruction *Instruction::cloneImpl() const {
675 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
676}
677
Xinliang David Liee836b92016-08-23 15:39:03 +0000678void Instruction::swapProfMetadata() {
679 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
680 if (!ProfileData || ProfileData->getNumOperands() != 3 ||
681 !isa<MDString>(ProfileData->getOperand(0)))
682 return;
683
684 MDString *MDName = cast<MDString>(ProfileData->getOperand(0));
685 if (MDName->getString() != "branch_weights")
686 return;
687
688 // The first operand is the name. Fetch them backwards and build a new one.
689 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
690 ProfileData->getOperand(1)};
691 setMetadata(LLVMContext::MD_prof,
692 MDNode::get(ProfileData->getContext(), Ops));
693}
694
Xinliang David Liee836b92016-08-23 15:39:03 +0000695void Instruction::copyMetadata(const Instruction &SrcInst,
696 ArrayRef<unsigned> WL) {
697 if (!SrcInst.hasMetadata())
698 return;
699
700 DenseSet<unsigned> WLS;
701 for (unsigned M : WL)
702 WLS.insert(M);
703
704 // Otherwise, enumerate and copy over metadata from the old instruction to the
705 // new one.
706 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
707 SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs);
708 for (const auto &MD : TheMDs) {
709 if (WL.empty() || WLS.count(MD.first))
710 setMetadata(MD.first, MD.second);
711 }
712 if (WL.empty() || WLS.count(LLVMContext::MD_dbg))
713 setDebugLoc(SrcInst.getDebugLoc());
Xinliang David Liee836b92016-08-23 15:39:03 +0000714}
715
Devang Patel50b6e332009-10-27 22:16:29 +0000716Instruction *Instruction::clone() const {
Pete Cooperf79d2532015-06-24 20:22:23 +0000717 Instruction *New = nullptr;
718 switch (getOpcode()) {
719 default:
720 llvm_unreachable("Unhandled Opcode.");
721#define HANDLE_INST(num, opc, clas) \
722 case Instruction::opc: \
723 New = cast<clas>(this)->cloneImpl(); \
724 break;
725#include "llvm/IR/Instruction.def"
726#undef HANDLE_INST
727 }
728
Devang Patel50b6e332009-10-27 22:16:29 +0000729 New->SubclassOptionalData = SubclassOptionalData;
Xinliang David Liee836b92016-08-23 15:39:03 +0000730 New->copyMetadata(*this);
Devang Patel50b6e332009-10-27 22:16:29 +0000731 return New;
732}
Dehao Chenc7322da2017-03-20 16:40:44 +0000733
734void Instruction::updateProfWeight(uint64_t S, uint64_t T) {
735 auto *ProfileData = getMetadata(LLVMContext::MD_prof);
736 if (ProfileData == nullptr)
737 return;
738
739 auto *ProfDataName = dyn_cast<MDString>(ProfileData->getOperand(0));
Dehao Chenc6a07312017-05-05 00:47:34 +0000740 if (!ProfDataName || (!ProfDataName->getString().equals("branch_weights") &&
741 !ProfDataName->getString().equals("VP")))
Dehao Chenc7322da2017-03-20 16:40:44 +0000742 return;
743
Dehao Chenc7322da2017-03-20 16:40:44 +0000744 MDBuilder MDB(getContext());
Dehao Chenc6a07312017-05-05 00:47:34 +0000745 SmallVector<Metadata *, 3> Vals;
746 Vals.push_back(ProfileData->getOperand(0));
747 APInt APS(128, S), APT(128, T);
748 if (ProfDataName->getString().equals("branch_weights"))
749 for (unsigned i = 1; i < ProfileData->getNumOperands(); i++) {
750 // Using APInt::div may be expensive, but most cases should fit 64 bits.
751 APInt Val(128,
752 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i))
753 ->getValue()
754 .getZExtValue());
755 Val *= APS;
756 Vals.push_back(MDB.createConstant(
757 ConstantInt::get(Type::getInt64Ty(getContext()),
758 Val.udiv(APT).getLimitedValue())));
759 }
760 else if (ProfDataName->getString().equals("VP"))
761 for (unsigned i = 1; i < ProfileData->getNumOperands(); i += 2) {
762 // The first value is the key of the value profile, which will not change.
763 Vals.push_back(ProfileData->getOperand(i));
764 // Using APInt::div may be expensive, but most cases should fit 64 bits.
765 APInt Val(128,
766 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(i + 1))
767 ->getValue()
768 .getZExtValue());
769 Val *= APS;
770 Vals.push_back(MDB.createConstant(
771 ConstantInt::get(Type::getInt64Ty(getContext()),
772 Val.udiv(APT).getLimitedValue())));
773 }
774 setMetadata(LLVMContext::MD_prof, MDNode::get(getContext(), Vals));
Dehao Chenc7322da2017-03-20 16:40:44 +0000775}
Dehao Chenf62637a2017-03-23 23:26:00 +0000776
777void Instruction::setProfWeight(uint64_t W) {
778 assert((isa<CallInst>(this) || isa<InvokeInst>(this)) &&
779 "Can only set weights for call and invoke instrucitons");
780 SmallVector<uint32_t, 1> Weights;
781 Weights.push_back(W);
782 MDBuilder MDB(getContext());
783 setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights));
784}