blob: 2e9310c11738eae8b1a3c594f03b92f1ace8222b [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
John Criswell482202a2003-10-20 19:43:21 +00007//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00008//
Chandler Carruthef860a22013-01-02 09:10:48 +00009// This file implements the Instruction class for the IR library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000010//
11//===----------------------------------------------------------------------===//
12
Chandler Carruth9fb823b2013-01-02 11:36:10 +000013#include "llvm/IR/Instruction.h"
Vedant Kumarf01827f2018-06-19 23:42:17 +000014#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "llvm/ADT/DenseSet.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000016#include "llvm/IR/Constants.h"
17#include "llvm/IR/Instructions.h"
Dehao Chene5930492017-03-20 16:40:44 +000018#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Operator.h"
20#include "llvm/IR/Type.h"
Chris Lattner0e03ab62003-11-20 17:45:12 +000021using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000022
Chris Lattner229907c2011-07-18 04:54:35 +000023Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000024 Instruction *InsertBefore)
Craig Topperc6207612014-04-09 06:08:46 +000025 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Chris Lattner3c787442002-09-10 15:45:53 +000026
27 // If requested, insert this instruction into a basic block...
28 if (InsertBefore) {
Yaron Keren43b4d382015-06-15 17:03:35 +000029 BasicBlock *BB = InsertBefore->getParent();
30 assert(BB && "Instruction to insert before is not in a basic block!");
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000031 BB->getInstList().insert(InsertBefore->getIterator(), this);
Chris Lattner3c787442002-09-10 15:45:53 +000032 }
Chris Lattner2f7c9632001-06-06 20:29:01 +000033}
34
Chris Lattner229907c2011-07-18 04:54:35 +000035Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
Chris Lattner2195fc42007-02-24 00:55:48 +000036 BasicBlock *InsertAtEnd)
Craig Topperc6207612014-04-09 06:08:46 +000037 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
Alkis Evlogimenos9f0fdf72004-05-26 21:41:09 +000038
39 // append this instruction into the basic block
40 assert(InsertAtEnd && "Basic block to append to may not be NULL!");
41 InsertAtEnd->getInstList().push_back(this);
Chris Lattner0f048162007-02-13 07:54:42 +000042}
43
Gordon Henriksen14a55692007-12-10 02:14:30 +000044Instruction::~Instruction() {
Craig Topper2617dcc2014-04-15 06:32:26 +000045 assert(!Parent && "Instruction still linked in the program!");
Dan Gohman48a995f2010-07-20 22:25:04 +000046 if (hasMetadataHashEntry())
47 clearMetadataHashEntries();
Chris Lattner1c12a882006-06-21 16:53:47 +000048}
49
50
Chris Lattner9ed7aef2002-09-06 21:33:15 +000051void Instruction::setParent(BasicBlock *P) {
52 Parent = P;
53}
54
Mehdi Amini9a9738f2015-03-03 22:01:13 +000055const Module *Instruction::getModule() const {
56 return getParent()->getModule();
57}
58
Sanjoy Das411fdcd2015-12-08 00:13:12 +000059const Function *Instruction::getFunction() const {
60 return getParent()->getParent();
61}
Philip Reames388402452015-05-26 21:03:23 +000062
Chris Lattner02a71e72004-10-11 22:21:39 +000063void Instruction::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000064 getParent()->getInstList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000065}
66
Daniel Berlina5af7202015-04-02 00:03:07 +000067iplist<Instruction>::iterator Instruction::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000068 return getParent()->getInstList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +000069}
Vikram S. Adve8aee7962002-07-14 23:09:40 +000070
Sanjay Patelf5c2d122016-01-06 00:18:29 +000071/// Insert an unlinked instruction into a basic block immediately before the
72/// specified instruction.
Owen Anderson2505e0c2008-06-17 18:29:27 +000073void Instruction::insertBefore(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000074 InsertPos->getParent()->getInstList().insert(InsertPos->getIterator(), this);
Owen Anderson2505e0c2008-06-17 18:29:27 +000075}
76
Sanjay Patelf5c2d122016-01-06 00:18:29 +000077/// Insert an unlinked instruction into a basic block immediately after the
78/// specified instruction.
Chris Lattner6e66d0a2009-01-13 07:43:51 +000079void Instruction::insertAfter(Instruction *InsertPos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000080 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
81 this);
Chris Lattner6e66d0a2009-01-13 07:43:51 +000082}
83
Sanjay Patelf5c2d122016-01-06 00:18:29 +000084/// Unlink this instruction from its current basic block and insert it into the
85/// basic block that MovePos lives in, right before MovePos.
Chris Lattner24a0a432005-08-08 05:21:50 +000086void Instruction::moveBefore(Instruction *MovePos) {
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000087 moveBefore(*MovePos->getParent(), MovePos->getIterator());
88}
89
Sanjay Patel674d2c22017-08-29 14:07:48 +000090void Instruction::moveAfter(Instruction *MovePos) {
91 moveBefore(*MovePos->getParent(), ++MovePos->getIterator());
92}
93
Duncan P. N. Exon Smith362d12042016-08-17 01:54:41 +000094void Instruction::moveBefore(BasicBlock &BB,
95 SymbolTableList<Instruction>::iterator I) {
96 assert(I == BB.end() || I->getParent() == &BB);
97 BB.getInstList().splice(I, getParent()->getInstList(), getIterator());
Chris Lattner24a0a432005-08-08 05:21:50 +000098}
99
David Majnemer9554c132016-04-22 06:37:45 +0000100void Instruction::setHasNoUnsignedWrap(bool b) {
101 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
102}
103
104void Instruction::setHasNoSignedWrap(bool b) {
105 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
106}
107
108void Instruction::setIsExact(bool b) {
109 cast<PossiblyExactOperator>(this)->setIsExact(b);
110}
111
112bool Instruction::hasNoUnsignedWrap() const {
113 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
114}
115
116bool Instruction::hasNoSignedWrap() const {
117 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
118}
119
Sanjoy Dasaa722ae2017-02-23 22:50:52 +0000120void Instruction::dropPoisonGeneratingFlags() {
121 switch (getOpcode()) {
122 case Instruction::Add:
123 case Instruction::Sub:
124 case Instruction::Mul:
125 case Instruction::Shl:
126 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(false);
127 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(false);
128 break;
129
130 case Instruction::UDiv:
131 case Instruction::SDiv:
132 case Instruction::AShr:
133 case Instruction::LShr:
134 cast<PossiblyExactOperator>(this)->setIsExact(false);
135 break;
136
137 case Instruction::GetElementPtr:
138 cast<GetElementPtrInst>(this)->setIsInBounds(false);
139 break;
140 }
Philip Reamesf47a3132019-07-09 18:49:29 +0000141 // TODO: FastMathFlags!
Sanjoy Dasaa722ae2017-02-23 22:50:52 +0000142}
143
Philip Reamesf47a3132019-07-09 18:49:29 +0000144
David Majnemer9554c132016-04-22 06:37:45 +0000145bool Instruction::isExact() const {
146 return cast<PossiblyExactOperator>(this)->isExact();
147}
148
Sanjay Patel629c4112017-11-06 16:27:15 +0000149void Instruction::setFast(bool B) {
Michael Ilseman149209e2012-11-27 00:41:22 +0000150 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
Sanjay Patel629c4112017-11-06 16:27:15 +0000151 cast<FPMathOperator>(this)->setFast(B);
152}
153
154void Instruction::setHasAllowReassoc(bool B) {
155 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
156 cast<FPMathOperator>(this)->setHasAllowReassoc(B);
Michael Ilseman149209e2012-11-27 00:41:22 +0000157}
158
Michael Ilseman149209e2012-11-27 00:41:22 +0000159void Instruction::setHasNoNaNs(bool B) {
160 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
161 cast<FPMathOperator>(this)->setHasNoNaNs(B);
162}
163
Michael Ilseman149209e2012-11-27 00:41:22 +0000164void Instruction::setHasNoInfs(bool B) {
165 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
166 cast<FPMathOperator>(this)->setHasNoInfs(B);
167}
168
Michael Ilseman149209e2012-11-27 00:41:22 +0000169void Instruction::setHasNoSignedZeros(bool B) {
170 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
171 cast<FPMathOperator>(this)->setHasNoSignedZeros(B);
172}
173
Michael Ilseman149209e2012-11-27 00:41:22 +0000174void Instruction::setHasAllowReciprocal(bool B) {
175 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
176 cast<FPMathOperator>(this)->setHasAllowReciprocal(B);
177}
178
Sanjay Patel629c4112017-11-06 16:27:15 +0000179void Instruction::setHasApproxFunc(bool B) {
180 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
181 cast<FPMathOperator>(this)->setHasApproxFunc(B);
182}
183
Michael Ilseman149209e2012-11-27 00:41:22 +0000184void Instruction::setFastMathFlags(FastMathFlags FMF) {
185 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
186 cast<FPMathOperator>(this)->setFastMathFlags(FMF);
187}
188
Sanjay Patelb2325b92014-09-02 20:03:00 +0000189void Instruction::copyFastMathFlags(FastMathFlags FMF) {
190 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
191 cast<FPMathOperator>(this)->copyFastMathFlags(FMF);
192}
193
Sanjay Patel629c4112017-11-06 16:27:15 +0000194bool Instruction::isFast() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000195 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Sanjay Patel629c4112017-11-06 16:27:15 +0000196 return cast<FPMathOperator>(this)->isFast();
197}
198
199bool Instruction::hasAllowReassoc() const {
200 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
201 return cast<FPMathOperator>(this)->hasAllowReassoc();
Michael Ilseman149209e2012-11-27 00:41:22 +0000202}
203
Michael Ilseman149209e2012-11-27 00:41:22 +0000204bool Instruction::hasNoNaNs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000205 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000206 return cast<FPMathOperator>(this)->hasNoNaNs();
207}
208
Michael Ilseman149209e2012-11-27 00:41:22 +0000209bool Instruction::hasNoInfs() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000210 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000211 return cast<FPMathOperator>(this)->hasNoInfs();
212}
213
Michael Ilseman149209e2012-11-27 00:41:22 +0000214bool Instruction::hasNoSignedZeros() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000215 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000216 return cast<FPMathOperator>(this)->hasNoSignedZeros();
217}
218
Michael Ilseman149209e2012-11-27 00:41:22 +0000219bool Instruction::hasAllowReciprocal() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000220 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000221 return cast<FPMathOperator>(this)->hasAllowReciprocal();
222}
223
Adam Nemetcd847a82017-03-28 20:11:52 +0000224bool Instruction::hasAllowContract() const {
225 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
226 return cast<FPMathOperator>(this)->hasAllowContract();
227}
228
Sanjay Patel629c4112017-11-06 16:27:15 +0000229bool Instruction::hasApproxFunc() const {
230 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
231 return cast<FPMathOperator>(this)->hasApproxFunc();
232}
233
Michael Ilseman149209e2012-11-27 00:41:22 +0000234FastMathFlags Instruction::getFastMathFlags() const {
Chad Rosier829cc2e2014-06-11 18:26:29 +0000235 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
Michael Ilseman149209e2012-11-27 00:41:22 +0000236 return cast<FPMathOperator>(this)->getFastMathFlags();
237}
Chris Lattner24a0a432005-08-08 05:21:50 +0000238
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000239void Instruction::copyFastMathFlags(const Instruction *I) {
Sanjay Patelb2325b92014-09-02 20:03:00 +0000240 copyFastMathFlags(I->getFastMathFlags());
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000241}
242
George Burgess IVa20352e2017-06-09 03:56:15 +0000243void Instruction::copyIRFlags(const Value *V, bool IncludeWrapFlags) {
David Majnemer9554c132016-04-22 06:37:45 +0000244 // Copy the wrapping flags.
George Burgess IVa20352e2017-06-09 03:56:15 +0000245 if (IncludeWrapFlags && isa<OverflowingBinaryOperator>(this)) {
246 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000247 setHasNoSignedWrap(OB->hasNoSignedWrap());
248 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
249 }
David Majnemer9554c132016-04-22 06:37:45 +0000250 }
251
252 // Copy the exact flag.
253 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000254 if (isa<PossiblyExactOperator>(this))
255 setIsExact(PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000256
257 // Copy the fast-math flags.
258 if (auto *FP = dyn_cast<FPMathOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000259 if (isa<FPMathOperator>(this))
260 copyFastMathFlags(FP->getFastMathFlags());
David Majnemer92f84cc2016-07-15 05:02:31 +0000261
262 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
263 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
264 DestGEP->setIsInBounds(SrcGEP->isInBounds() | DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000265}
266
267void Instruction::andIRFlags(const Value *V) {
268 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000269 if (isa<OverflowingBinaryOperator>(this)) {
270 setHasNoSignedWrap(hasNoSignedWrap() & OB->hasNoSignedWrap());
271 setHasNoUnsignedWrap(hasNoUnsignedWrap() & OB->hasNoUnsignedWrap());
272 }
David Majnemer9554c132016-04-22 06:37:45 +0000273 }
274
275 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
David Majnemerd0ce8f12016-04-22 06:37:51 +0000276 if (isa<PossiblyExactOperator>(this))
277 setIsExact(isExact() & PE->isExact());
David Majnemer9554c132016-04-22 06:37:45 +0000278
279 if (auto *FP = dyn_cast<FPMathOperator>(V)) {
David Majnemerd0ce8f12016-04-22 06:37:51 +0000280 if (isa<FPMathOperator>(this)) {
281 FastMathFlags FM = getFastMathFlags();
282 FM &= FP->getFastMathFlags();
283 copyFastMathFlags(FM);
284 }
David Majnemer9554c132016-04-22 06:37:45 +0000285 }
David Majnemer92f84cc2016-07-15 05:02:31 +0000286
287 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(V))
288 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(this))
289 DestGEP->setIsInBounds(SrcGEP->isInBounds() & DestGEP->isInBounds());
David Majnemer9554c132016-04-22 06:37:45 +0000290}
Michael Ilseman05d3bf77a2012-11-29 21:25:12 +0000291
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000292const char *Instruction::getOpcodeName(unsigned OpCode) {
293 switch (OpCode) {
294 // Terminators
Chris Lattnerb193ff82002-08-14 18:18:02 +0000295 case Ret: return "ret";
296 case Br: return "br";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000297 case Switch: return "switch";
Chris Lattnerd04cb6d2009-10-28 00:19:10 +0000298 case IndirectBr: return "indirectbr";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000299 case Invoke: return "invoke";
Bill Wendlingf891bf82011-07-31 06:30:59 +0000300 case Resume: return "resume";
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000301 case Unreachable: return "unreachable";
David Majnemer654e1302015-07-31 17:58:14 +0000302 case CleanupRet: return "cleanupret";
David Majnemer654e1302015-07-31 17:58:14 +0000303 case CatchRet: return "catchret";
304 case CatchPad: return "catchpad";
David Majnemer8a1c45d2015-12-12 05:38:55 +0000305 case CatchSwitch: return "catchswitch";
Craig Topper784929d2019-02-08 20:48:56 +0000306 case CallBr: return "callbr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000307
Cameron McInallycbde0d92018-11-13 18:15:47 +0000308 // Standard unary operators...
309 case FNeg: return "fneg";
aqjune58acbce2019-11-05 15:53:22 +0900310 case Freeze: return "freeze";
Cameron McInallycbde0d92018-11-13 18:15:47 +0000311
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000312 // Standard binary operators...
313 case Add: return "add";
Dan Gohmana5b96452009-06-04 22:49:04 +0000314 case FAdd: return "fadd";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000315 case Sub: return "sub";
Dan Gohmana5b96452009-06-04 22:49:04 +0000316 case FSub: return "fsub";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000317 case Mul: return "mul";
Dan Gohmana5b96452009-06-04 22:49:04 +0000318 case FMul: return "fmul";
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000319 case UDiv: return "udiv";
320 case SDiv: return "sdiv";
321 case FDiv: return "fdiv";
Reid Spencer7eb55b32006-11-02 01:53:59 +0000322 case URem: return "urem";
323 case SRem: return "srem";
324 case FRem: return "frem";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000325
326 // Logical operators...
327 case And: return "and";
328 case Or : return "or";
329 case Xor: return "xor";
330
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000331 // Memory instructions...
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000332 case Alloca: return "alloca";
333 case Load: return "load";
334 case Store: return "store";
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000335 case AtomicCmpXchg: return "cmpxchg";
336 case AtomicRMW: return "atomicrmw";
Eli Friedmanfee02c62011-07-25 23:16:38 +0000337 case Fence: return "fence";
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000338 case GetElementPtr: return "getelementptr";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000339
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000340 // Convert instructions...
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000341 case Trunc: return "trunc";
342 case ZExt: return "zext";
343 case SExt: return "sext";
344 case FPTrunc: return "fptrunc";
345 case FPExt: return "fpext";
346 case FPToUI: return "fptoui";
347 case FPToSI: return "fptosi";
348 case UIToFP: return "uitofp";
349 case SIToFP: return "sitofp";
350 case IntToPtr: return "inttoptr";
351 case PtrToInt: return "ptrtoint";
352 case BitCast: return "bitcast";
353 case AddrSpaceCast: return "addrspacecast";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000354
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000355 // Other instructions...
Reid Spencer45e52392006-12-03 06:27:29 +0000356 case ICmp: return "icmp";
357 case FCmp: return "fcmp";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000358 case PHI: return "phi";
359 case Select: return "select";
360 case Call: return "call";
361 case Shl: return "shl";
362 case LShr: return "lshr";
363 case AShr: return "ashr";
364 case VAArg: return "va_arg";
Robert Bocchino23004482006-01-10 19:05:34 +0000365 case ExtractElement: return "extractelement";
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000366 case InsertElement: return "insertelement";
367 case ShuffleVector: return "shufflevector";
Matthijs Kooijmanbf8d6ce2008-05-30 10:31:54 +0000368 case ExtractValue: return "extractvalue";
369 case InsertValue: return "insertvalue";
Bill Wendlingfae14752011-08-12 20:24:12 +0000370 case LandingPad: return "landingpad";
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +0000371 case CleanupPad: return "cleanuppad";
Chris Lattnerf70da102003-05-08 02:44:12 +0000372
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000373 default: return "<Invalid operator> ";
374 }
Vikram S. Adve8aee7962002-07-14 23:09:40 +0000375}
Chris Lattnercab6c332002-10-31 04:14:01 +0000376
Sanjay Patela40c4792016-10-05 18:51:12 +0000377/// Return true if both instructions have the same special state. This must be
JF Bastien3b6eaac2016-04-11 22:30:37 +0000378/// kept in sync with FunctionComparator::cmpOperations in
379/// lib/Transforms/IPO/MergeFunctions.cpp.
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000380static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
381 bool IgnoreAlignment = false) {
382 assert(I1->getOpcode() == I2->getOpcode() &&
383 "Can not compare special state of different instructions");
384
JF Bastien5502e912016-04-12 18:06:55 +0000385 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
386 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
387 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
388 IgnoreAlignment);
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000389 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
390 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
391 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
392 IgnoreAlignment) &&
393 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000394 LI->getSyncScopeID() == cast<LoadInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000395 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
396 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
397 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
398 IgnoreAlignment) &&
399 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000400 SI->getSyncScopeID() == cast<StoreInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000401 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
402 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
403 if (const CallInst *CI = dyn_cast<CallInst>(I1))
404 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
405 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000406 CI->getAttributes() == cast<CallInst>(I2)->getAttributes() &&
407 CI->hasIdenticalOperandBundleSchema(*cast<CallInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000408 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
409 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Sanjoy Das2de4d0a2015-12-14 19:11:35 +0000410 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes() &&
411 CI->hasIdenticalOperandBundleSchema(*cast<InvokeInst>(I2));
Craig Topper784929d2019-02-08 20:48:56 +0000412 if (const CallBrInst *CI = dyn_cast<CallBrInst>(I1))
413 return CI->getCallingConv() == cast<CallBrInst>(I2)->getCallingConv() &&
414 CI->getAttributes() == cast<CallBrInst>(I2)->getAttributes() &&
415 CI->hasIdenticalOperandBundleSchema(*cast<CallBrInst>(I2));
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000416 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
417 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
418 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
419 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
420 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
421 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000422 FI->getSyncScopeID() == cast<FenceInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000423 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
424 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northover420a2162014-06-13 14:24:07 +0000425 CXI->isWeak() == cast<AtomicCmpXchgInst>(I2)->isWeak() &&
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000426 CXI->getSuccessOrdering() ==
427 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
428 CXI->getFailureOrdering() ==
429 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000430 CXI->getSyncScopeID() ==
431 cast<AtomicCmpXchgInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000432 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
433 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
434 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
435 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000436 RMWI->getSyncScopeID() == cast<AtomicRMWInst>(I2)->getSyncScopeID();
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000437
438 return true;
439}
440
Chris Lattner378b0412008-11-27 08:39:18 +0000441bool Instruction::isIdenticalTo(const Instruction *I) const {
Dan Gohman23d2c762009-08-25 22:24:20 +0000442 return isIdenticalToWhenDefined(I) &&
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000443 SubclassOptionalData == I->SubclassOptionalData;
444}
445
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000446bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const {
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000447 if (getOpcode() != I->getOpcode() ||
448 getNumOperands() != I->getNumOperands() ||
449 getType() != I->getType())
450 return false;
451
NAKAMURA Takumiaaffd702014-06-02 01:35:34 +0000452 // If both instructions have no operands, they are identical.
453 if (getNumOperands() == 0 && I->getNumOperands() == 0)
454 return haveSameSpecialState(this, I);
455
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000456 // We have two instructions of identical opcode and #operands. Check to see
457 // if all operands are the same.
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000458 if (!std::equal(op_begin(), op_end(), I->op_begin()))
459 return false;
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000460
Joel Jones3d90a9a2012-05-10 15:59:41 +0000461 if (const PHINode *thisPHI = dyn_cast<PHINode>(this)) {
462 const PHINode *otherPHI = cast<PHINode>(I);
Benjamin Kramer3ad5c962014-03-10 15:03:06 +0000463 return std::equal(thisPHI->block_begin(), thisPHI->block_end(),
464 otherPHI->block_begin());
Joel Jones3d90a9a2012-05-10 15:59:41 +0000465 }
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000466
467 return haveSameSpecialState(this, I);
Chris Lattner0b6ebd8d2004-11-30 02:51:53 +0000468}
469
JF Bastien3b6eaac2016-04-11 22:30:37 +0000470// Keep this in sync with FunctionComparator::cmpOperations in
Dan Gohman17fb0d22009-06-12 19:03:05 +0000471// lib/Transforms/IPO/MergeFunctions.cpp.
Hal Finkel74e52252012-06-28 05:42:26 +0000472bool Instruction::isSameOperationAs(const Instruction *I,
473 unsigned flags) const {
474 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
475 bool UseScalarTypes = flags & CompareUsingScalarTypes;
476
Dan Gohman17fb0d22009-06-12 19:03:05 +0000477 if (getOpcode() != I->getOpcode() ||
478 getNumOperands() != I->getNumOperands() ||
Hal Finkel74e52252012-06-28 05:42:26 +0000479 (UseScalarTypes ?
480 getType()->getScalarType() != I->getType()->getScalarType() :
481 getType() != I->getType()))
Reid Spencer266e42b2006-12-23 06:05:41 +0000482 return false;
483
484 // We have two instructions of identical opcode and #operands. Check to see
485 // if all operands are the same type
486 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Hal Finkel74e52252012-06-28 05:42:26 +0000487 if (UseScalarTypes ?
488 getOperand(i)->getType()->getScalarType() !=
489 I->getOperand(i)->getType()->getScalarType() :
490 getOperand(i)->getType() != I->getOperand(i)->getType())
Reid Spencer266e42b2006-12-23 06:05:41 +0000491 return false;
492
Arnaud A. de Grandmaison6a90dc42014-05-27 21:35:46 +0000493 return haveSameSpecialState(this, I, IgnoreAlignment);
Reid Spencer266e42b2006-12-23 06:05:41 +0000494}
495
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000496bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000497 for (const Use &U : uses()) {
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000498 // PHI nodes uses values in the corresponding predecessor block. For other
499 // instructions, just check to see whether the parent of the use matches up.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000500 const Instruction *I = cast<Instruction>(U.getUser());
501 const PHINode *PN = dyn_cast<PHINode>(I);
Craig Topperc6207612014-04-09 06:08:46 +0000502 if (!PN) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000503 if (I->getParent() != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000504 return true;
505 continue;
506 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000507
Chandler Carruthcdf47882014-03-09 03:16:01 +0000508 if (PN->getIncomingBlock(U) != BB)
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000509 return true;
510 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000511 return false;
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000512}
513
Chris Lattner84627112008-05-08 17:16:51 +0000514bool Instruction::mayReadFromMemory() const {
515 switch (getOpcode()) {
516 default: return false;
Chris Lattner84627112008-05-08 17:16:51 +0000517 case Instruction::VAArg:
Chris Lattner954907a2008-05-08 21:58:49 +0000518 case Instruction::Load:
Eli Friedman89b694b2011-07-27 01:08:30 +0000519 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
Eli Friedmanadec5872011-07-29 03:05:32 +0000520 case Instruction::AtomicCmpXchg:
521 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000522 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000523 case Instruction::CatchRet:
Chris Lattner84627112008-05-08 17:16:51 +0000524 return true;
525 case Instruction::Call:
Chris Lattner84627112008-05-08 17:16:51 +0000526 case Instruction::Invoke:
Craig Topper784929d2019-02-08 20:48:56 +0000527 case Instruction::CallBr:
Yevgeny Rouban5e5af532019-10-21 06:52:08 +0000528 return !cast<CallBase>(this)->doesNotReadMemory();
Chris Lattner954907a2008-05-08 21:58:49 +0000529 case Instruction::Store:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000530 return !cast<StoreInst>(this)->isUnordered();
Chris Lattner84627112008-05-08 17:16:51 +0000531 }
532}
Chris Lattner8ec6e8a2008-04-20 22:11:30 +0000533
Chris Lattnerc992e182007-02-15 23:15:00 +0000534bool Instruction::mayWriteToMemory() const {
535 switch (getOpcode()) {
536 default: return false;
Eli Friedman89b694b2011-07-27 01:08:30 +0000537 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
Duncan Sands38ef3a82007-12-03 20:06:50 +0000538 case Instruction::Store:
Chris Lattnerc992e182007-02-15 23:15:00 +0000539 case Instruction::VAArg:
Eli Friedmanadec5872011-07-29 03:05:32 +0000540 case Instruction::AtomicCmpXchg:
541 case Instruction::AtomicRMW:
David Majnemer880c2cb2015-09-10 18:50:09 +0000542 case Instruction::CatchPad:
David Majnemer654e1302015-07-31 17:58:14 +0000543 case Instruction::CatchRet:
Chris Lattnerc992e182007-02-15 23:15:00 +0000544 return true;
545 case Instruction::Call:
Chris Lattner84627112008-05-08 17:16:51 +0000546 case Instruction::Invoke:
Craig Topper784929d2019-02-08 20:48:56 +0000547 case Instruction::CallBr:
Craig Topper0b5e6b12019-01-29 23:31:54 +0000548 return !cast<CallBase>(this)->onlyReadsMemory();
Chris Lattnerc992e182007-02-15 23:15:00 +0000549 case Instruction::Load:
Eli Friedmanb9d5a632011-08-15 21:00:18 +0000550 return !cast<LoadInst>(this)->isUnordered();
Chris Lattnerc992e182007-02-15 23:15:00 +0000551 }
552}
Chris Lattnercab6c332002-10-31 04:14:01 +0000553
Robin Morisseted3d48f2014-09-03 21:29:59 +0000554bool Instruction::isAtomic() const {
555 switch (getOpcode()) {
556 default:
557 return false;
558 case Instruction::AtomicCmpXchg:
559 case Instruction::AtomicRMW:
560 case Instruction::Fence:
561 return true;
562 case Instruction::Load:
JF Bastien800f87a2016-04-06 21:19:33 +0000563 return cast<LoadInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000564 case Instruction::Store:
JF Bastien800f87a2016-04-06 21:19:33 +0000565 return cast<StoreInst>(this)->getOrdering() != AtomicOrdering::NotAtomic;
Robin Morisseted3d48f2014-09-03 21:29:59 +0000566 }
567}
568
Tim Shen04de70d2017-05-09 15:27:17 +0000569bool Instruction::hasAtomicLoad() const {
570 assert(isAtomic());
571 switch (getOpcode()) {
572 default:
573 return false;
574 case Instruction::AtomicCmpXchg:
575 case Instruction::AtomicRMW:
576 case Instruction::Load:
577 return true;
578 }
579}
580
581bool Instruction::hasAtomicStore() const {
582 assert(isAtomic());
583 switch (getOpcode()) {
584 default:
585 return false;
586 case Instruction::AtomicCmpXchg:
587 case Instruction::AtomicRMW:
588 case Instruction::Store:
589 return true;
590 }
591}
592
Duncan Sands1efabaa2009-05-06 06:49:50 +0000593bool Instruction::mayThrow() const {
594 if (const CallInst *CI = dyn_cast<CallInst>(this))
595 return !CI->doesNotThrow();
David Majnemer654e1302015-07-31 17:58:14 +0000596 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
597 return CRI->unwindsToCaller();
David Majnemer8a1c45d2015-12-12 05:38:55 +0000598 if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(this))
599 return CatchSwitch->unwindsToCaller();
Bill Wendlingd7c6c912011-08-16 21:15:50 +0000600 return isa<ResumeInst>(this);
Duncan Sands1efabaa2009-05-06 06:49:50 +0000601}
602
Chris Bienemanabdea262018-01-09 21:58:46 +0000603bool Instruction::isSafeToRemove() const {
604 return (!isa<CallInst>(this) || !this->mayHaveSideEffects()) &&
Chandler Carruth9ae926b2018-08-26 09:51:22 +0000605 !this->isTerminator();
Chris Bienemanabdea262018-01-09 21:58:46 +0000606}
607
Vedant Kumarb264d692018-12-21 21:49:40 +0000608bool Instruction::isLifetimeStartOrEnd() const {
609 auto II = dyn_cast<IntrinsicInst>(this);
610 if (!II)
611 return false;
612 Intrinsic::ID ID = II->getIntrinsicID();
613 return ID == Intrinsic::lifetime_start || ID == Intrinsic::lifetime_end;
614}
615
Vedant Kumarf01827f2018-06-19 23:42:17 +0000616const Instruction *Instruction::getNextNonDebugInstruction() const {
617 for (const Instruction *I = getNextNode(); I; I = I->getNextNode())
618 if (!isa<DbgInfoIntrinsic>(I))
619 return I;
620 return nullptr;
621}
622
Carlos Alberto Encisofa9cf892018-11-09 09:42:10 +0000623const Instruction *Instruction::getPrevNonDebugInstruction() const {
624 for (const Instruction *I = getPrevNode(); I; I = I->getPrevNode())
625 if (!isa<DbgInfoIntrinsic>(I))
626 return I;
627 return nullptr;
628}
629
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000630bool Instruction::isAssociative() const {
631 unsigned Opcode = getOpcode();
632 if (isAssociative(Opcode))
633 return true;
634
635 switch (Opcode) {
636 case FMul:
637 case FAdd:
Warren Ristowd3efa942018-05-24 20:16:43 +0000638 return cast<FPMathOperator>(this)->hasAllowReassoc() &&
639 cast<FPMathOperator>(this)->hasNoSignedZeros();
Shuxin Yang01ab5d72012-11-29 01:47:31 +0000640 default:
641 return false;
642 }
643}
644
Chandler Carruth96fc1de2018-08-26 08:41:15 +0000645unsigned Instruction::getNumSuccessors() const {
646 switch (getOpcode()) {
647#define HANDLE_TERM_INST(N, OPC, CLASS) \
648 case Instruction::OPC: \
649 return static_cast<const CLASS *>(this)->getNumSuccessors();
650#include "llvm/IR/Instruction.def"
651 default:
652 break;
653 }
654 llvm_unreachable("not a terminator");
655}
656
657BasicBlock *Instruction::getSuccessor(unsigned idx) const {
658 switch (getOpcode()) {
659#define HANDLE_TERM_INST(N, OPC, CLASS) \
660 case Instruction::OPC: \
661 return static_cast<const CLASS *>(this)->getSuccessor(idx);
662#include "llvm/IR/Instruction.def"
663 default:
664 break;
665 }
666 llvm_unreachable("not a terminator");
667}
668
669void Instruction::setSuccessor(unsigned idx, BasicBlock *B) {
670 switch (getOpcode()) {
671#define HANDLE_TERM_INST(N, OPC, CLASS) \
672 case Instruction::OPC: \
673 return static_cast<CLASS *>(this)->setSuccessor(idx, B);
674#include "llvm/IR/Instruction.def"
675 default:
676 break;
677 }
678 llvm_unreachable("not a terminator");
679}
680
Roman Lebedev7ad5d142019-05-05 18:59:22 +0000681void Instruction::replaceSuccessorWith(BasicBlock *OldBB, BasicBlock *NewBB) {
682 for (unsigned Idx = 0, NumSuccessors = Instruction::getNumSuccessors();
683 Idx != NumSuccessors; ++Idx)
684 if (getSuccessor(Idx) == OldBB)
685 setSuccessor(Idx, NewBB);
686}
687
Pete Cooper75403d72015-06-24 20:22:23 +0000688Instruction *Instruction::cloneImpl() const {
689 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
690}
691
Xinliang David Lidc491402016-08-23 15:39:03 +0000692void Instruction::swapProfMetadata() {
693 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof);
694 if (!ProfileData || ProfileData->getNumOperands() != 3 ||
695 !isa<MDString>(ProfileData->getOperand(0)))
696 return;
697
698 MDString *MDName = cast<MDString>(ProfileData->getOperand(0));
699 if (MDName->getString() != "branch_weights")
700 return;
701
702 // The first operand is the name. Fetch them backwards and build a new one.
703 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2),
704 ProfileData->getOperand(1)};
705 setMetadata(LLVMContext::MD_prof,
706 MDNode::get(ProfileData->getContext(), Ops));
707}
708
Xinliang David Lidc491402016-08-23 15:39:03 +0000709void Instruction::copyMetadata(const Instruction &SrcInst,
710 ArrayRef<unsigned> WL) {
711 if (!SrcInst.hasMetadata())
712 return;
713
714 DenseSet<unsigned> WLS;
715 for (unsigned M : WL)
716 WLS.insert(M);
717
718 // Otherwise, enumerate and copy over metadata from the old instruction to the
719 // new one.
720 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
721 SrcInst.getAllMetadataOtherThanDebugLoc(TheMDs);
722 for (const auto &MD : TheMDs) {
723 if (WL.empty() || WLS.count(MD.first))
724 setMetadata(MD.first, MD.second);
725 }
726 if (WL.empty() || WLS.count(LLVMContext::MD_dbg))
727 setDebugLoc(SrcInst.getDebugLoc());
Xinliang David Lidc491402016-08-23 15:39:03 +0000728}
729
Devang Patel11cf3f42009-10-27 22:16:29 +0000730Instruction *Instruction::clone() const {
Pete Cooper75403d72015-06-24 20:22:23 +0000731 Instruction *New = nullptr;
732 switch (getOpcode()) {
733 default:
734 llvm_unreachable("Unhandled Opcode.");
735#define HANDLE_INST(num, opc, clas) \
736 case Instruction::opc: \
737 New = cast<clas>(this)->cloneImpl(); \
738 break;
739#include "llvm/IR/Instruction.def"
740#undef HANDLE_INST
741 }
742
Devang Patel11cf3f42009-10-27 22:16:29 +0000743 New->SubclassOptionalData = SubclassOptionalData;
Xinliang David Lidc491402016-08-23 15:39:03 +0000744 New->copyMetadata(*this);
Devang Patel11cf3f42009-10-27 22:16:29 +0000745 return New;
746}
Dehao Chene5930492017-03-20 16:40:44 +0000747
Dehao Chen722e9402017-03-23 23:26:00 +0000748void Instruction::setProfWeight(uint64_t W) {
Craig Topper784929d2019-02-08 20:48:56 +0000749 assert(isa<CallBase>(this) &&
750 "Can only set weights for call like instructions");
Dehao Chen722e9402017-03-23 23:26:00 +0000751 SmallVector<uint32_t, 1> Weights;
752 Weights.push_back(W);
753 MDBuilder MDB(getContext());
754 setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights));
755}