1//===-- Instruction.cpp - Implement the Instruction class -----------------===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the Instruction class for the IR library.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/IR/Instruction.h"
14#include "llvm/ADT/DenseSet.h"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/IR/AttributeMask.h"
17#include "llvm/IR/Attributes.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/InstrTypes.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/IntrinsicInst.h"
22#include "llvm/IR/Intrinsics.h"
23#include "llvm/IR/LLVMContext.h"
24#include "llvm/IR/MemoryModelRelaxationAnnotations.h"
25#include "llvm/IR/Module.h"
26#include "llvm/IR/Operator.h"
27#include "llvm/IR/ProfDataUtils.h"
28#include "llvm/IR/Type.h"
29#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Compiler.h"
31using namespace llvm;
32
33namespace llvm {
34
35// FIXME: Flag used for an ablation performance test, Issue #147390. Placing it
36// here because referencing IR should be feasible from anywhere. Will be
37// removed after the ablation test.
38cl::opt<bool> ProfcheckDisableMetadataFixes(
39 "profcheck-disable-metadata-fixes", cl::Hidden, cl::init(Val: false),
40 cl::desc(
41 "Disable metadata propagation fixes discovered through Issue #147390"));
42
43} // end namespace llvm
44
45InsertPosition::InsertPosition(BasicBlock *InsertAtEnd)
46 : InsertAt(InsertAtEnd ? InsertAtEnd->end() : InstListType::iterator()) {}
47
48Instruction::Instruction(Type *ty, unsigned it, AllocInfo AllocInfo,
49 InsertPosition InsertBefore)
50 : User(ty, Value::InstructionVal + it, AllocInfo) {
51 // When called with an iterator, there must be a block to insert into.
52 if (InstListType::iterator InsertIt = InsertBefore; InsertIt.isValid()) {
53 BasicBlock *BB = InsertIt.getNodeParent();
54 assert(BB && "Instruction to insert before is not in a basic block!");
55 insertInto(ParentBB: BB, It: InsertBefore);
56 }
57}
58
59Instruction::~Instruction() {
60 assert(!getParent() && "Instruction still linked in the program!");
61
62 // Replace any extant metadata uses of this instruction with poison to
63 // preserve debug info accuracy. Some alternatives include:
64 // - Treat Instruction like any other Value, and point its extant metadata
65 // uses to an empty ValueAsMetadata node. This makes extant dbg.value uses
66 // trivially dead (i.e. fair game for deletion in many passes), leading to
67 // stale dbg.values being in effect for too long.
68 // - Call salvageDebugInfoOrMarkUndef. Not needed to make instruction removal
69 // correct. OTOH results in wasted work in some common cases (e.g. when all
70 // instructions in a BasicBlock are deleted).
71 if (isUsedByMetadata())
72 ValueAsMetadata::handleRAUW(From: this, To: PoisonValue::get(T: getType()));
73
74 // Remove associated metadata from context.
75 if (hasMetadata()) {
76 // Explicitly remove DIAssignID metadata to clear up ID -> Instruction(s)
77 // mapping in LLVMContext.
78 updateDIAssignIDMapping(ID: nullptr);
79 clearMetadata();
80 }
81}
82
83const Module *Instruction::getModule() const {
84 return getParent()->getModule();
85}
86
87const Function *Instruction::getFunction() const {
88 return getParent()->getParent();
89}
90
91const DataLayout &Instruction::getDataLayout() const {
92 return getModule()->getDataLayout();
93}
94
95void Instruction::removeFromParent() {
96 // Perform any debug-info maintenence required.
97 handleMarkerRemoval();
98
99 getParent()->getInstList().remove(IT: getIterator());
100}
101
102void Instruction::handleMarkerRemoval() {
103 if (!DebugMarker)
104 return;
105
106 DebugMarker->removeMarker();
107}
108
109BasicBlock::iterator Instruction::eraseFromParent() {
110 handleMarkerRemoval();
111 return getParent()->getInstList().erase(where: getIterator());
112}
113
114/// Insert an unlinked instruction into a basic block immediately before the
115/// specified instruction.
116void Instruction::insertBefore(BasicBlock::iterator InsertPos) {
117 insertBefore(BB&: *InsertPos->getParent(), InsertPos);
118}
119
120/// Insert an unlinked instruction into a basic block immediately after the
121/// specified instruction.
122void Instruction::insertAfter(Instruction *InsertPos) {
123 BasicBlock *DestParent = InsertPos->getParent();
124
125 DestParent->getInstList().insertAfter(where: InsertPos->getIterator(), New: this);
126}
127
128void Instruction::insertAfter(BasicBlock::iterator InsertPos) {
129 BasicBlock *DestParent = InsertPos->getParent();
130
131 DestParent->getInstList().insertAfter(where: InsertPos, New: this);
132}
133
134BasicBlock::iterator Instruction::insertInto(BasicBlock *ParentBB,
135 BasicBlock::iterator It) {
136 assert(getParent() == nullptr && "Expected detached instruction");
137 assert((It == ParentBB->end() || It->getParent() == ParentBB) &&
138 "It not in ParentBB");
139 insertBefore(BB&: *ParentBB, InsertPos: It);
140 return getIterator();
141}
142
143void Instruction::insertBefore(BasicBlock &BB,
144 InstListType::iterator InsertPos) {
145 assert(!DebugMarker);
146
147 BB.getInstList().insert(where: InsertPos, New: this);
148
149 // We've inserted "this": if InsertAtHead is set then it comes before any
150 // DbgVariableRecords attached to InsertPos. But if it's not set, then any
151 // DbgRecords should now come before "this".
152 bool InsertAtHead = InsertPos.getHeadBit();
153 if (!InsertAtHead) {
154 DbgMarker *SrcMarker = BB.getMarker(It: InsertPos);
155 if (SrcMarker && !SrcMarker->empty()) {
156 // If this assertion fires, the calling code is about to insert a PHI
157 // after debug-records, which would form a sequence like:
158 // %0 = PHI
159 // #dbg_value
160 // %1 = PHI
161 // Which is de-normalised and undesired -- hence the assertion. To avoid
162 // this, you must insert at that position using an iterator, and it must
163 // be aquired by calling getFirstNonPHIIt / begin or similar methods on
164 // the block. This will signal to this behind-the-scenes debug-info
165 // maintenence code that you intend the PHI to be ahead of everything,
166 // including any debug-info.
167 assert(!isa<PHINode>(this) && "Inserting PHI after debug-records!");
168 adoptDbgRecords(BB: &BB, It: InsertPos, InsertAtHead: false);
169 }
170 }
171
172 // If we're inserting a terminator, check if we need to flush out
173 // TrailingDbgRecords. Inserting instructions at the end of an incomplete
174 // block is handled by the code block above.
175 if (isTerminator())
176 getParent()->flushTerminatorDbgRecords();
177}
178
179/// Unlink this instruction from its current basic block and insert it into the
180/// basic block that MovePos lives in, right before MovePos.
181void Instruction::moveBefore(BasicBlock::iterator MovePos) {
182 moveBeforeImpl(BB&: *MovePos->getParent(), I: MovePos, Preserve: false);
183}
184
185void Instruction::moveBeforePreserving(BasicBlock::iterator MovePos) {
186 moveBeforeImpl(BB&: *MovePos->getParent(), I: MovePos, Preserve: true);
187}
188
189void Instruction::moveAfter(Instruction *MovePos) {
190 auto NextIt = std::next(x: MovePos->getIterator());
191 // We want this instruction to be moved to after NextIt in the instruction
192 // list, but before NextIt's debug value range.
193 NextIt.setHeadBit(true);
194 moveBeforeImpl(BB&: *MovePos->getParent(), I: NextIt, Preserve: false);
195}
196
197void Instruction::moveAfter(InstListType::iterator MovePos) {
198 // We want this instruction to be moved to after NextIt in the instruction
199 // list, but before NextIt's debug value range.
200 MovePos.setHeadBit(true);
201 moveBeforeImpl(BB&: *MovePos->getParent(), I: MovePos, Preserve: false);
202}
203
204void Instruction::moveAfterPreserving(Instruction *MovePos) {
205 auto NextIt = std::next(x: MovePos->getIterator());
206 // We want this instruction and its debug range to be moved to after NextIt
207 // in the instruction list, but before NextIt's debug value range.
208 NextIt.setHeadBit(true);
209 moveBeforeImpl(BB&: *MovePos->getParent(), I: NextIt, Preserve: true);
210}
211
212void Instruction::moveBefore(BasicBlock &BB, InstListType::iterator I) {
213 moveBeforeImpl(BB, I, Preserve: false);
214}
215
216void Instruction::moveBeforePreserving(BasicBlock &BB,
217 InstListType::iterator I) {
218 moveBeforeImpl(BB, I, Preserve: true);
219}
220
221void Instruction::moveBeforeImpl(BasicBlock &BB, InstListType::iterator I,
222 bool Preserve) {
223 assert(I == BB.end() || I->getParent() == &BB);
224 bool InsertAtHead = I.getHeadBit();
225
226 // If we've been given the "Preserve" flag, then just move the DbgRecords with
227 // the instruction, no more special handling needed.
228 if (DebugMarker && !Preserve) {
229 if (I != this->getIterator() || InsertAtHead) {
230 // "this" is definitely moving in the list, or it's moving ahead of its
231 // attached DbgVariableRecords. Detach any existing DbgRecords.
232 handleMarkerRemoval();
233 }
234 }
235
236 // Move this single instruction. Use the list splice method directly, not
237 // the block splicer, which will do more debug-info things.
238 BB.getInstList().splice(where: I, L2&: getParent()->getInstList(), first: getIterator());
239
240 if (!Preserve) {
241 DbgMarker *NextMarker = getParent()->getNextMarker(I: this);
242
243 // If we're inserting at point I, and not in front of the DbgRecords
244 // attached there, then we should absorb the DbgRecords attached to I.
245 if (!InsertAtHead && NextMarker && !NextMarker->empty()) {
246 adoptDbgRecords(BB: &BB, It: I, InsertAtHead: false);
247 }
248 }
249
250 if (isTerminator())
251 getParent()->flushTerminatorDbgRecords();
252}
253
254iterator_range<DbgRecord::self_iterator> Instruction::cloneDebugInfoFrom(
255 const Instruction *From, std::optional<DbgRecord::self_iterator> FromHere,
256 bool InsertAtHead) {
257 if (!From->DebugMarker)
258 return DbgMarker::getEmptyDbgRecordRange();
259
260 if (!DebugMarker)
261 getParent()->createMarker(I: this);
262
263 return DebugMarker->cloneDebugInfoFrom(From: From->DebugMarker, FromHere,
264 InsertAtHead);
265}
266
267std::optional<DbgRecord::self_iterator>
268Instruction::getDbgReinsertionPosition() {
269 // Is there a marker on the next instruction?
270 DbgMarker *NextMarker = getParent()->getNextMarker(I: this);
271 if (!NextMarker)
272 return std::nullopt;
273
274 // Are there any DbgRecords in the next marker?
275 if (NextMarker->StoredDbgRecords.empty())
276 return std::nullopt;
277
278 return NextMarker->StoredDbgRecords.begin();
279}
280
281bool Instruction::hasDbgRecords() const { return !getDbgRecordRange().empty(); }
282
283void Instruction::adoptDbgRecords(BasicBlock *BB, BasicBlock::iterator It,
284 bool InsertAtHead) {
285 DbgMarker *SrcMarker = BB->getMarker(It);
286 auto ReleaseTrailingDbgRecords = [BB, It, SrcMarker]() {
287 if (BB->end() == It) {
288 SrcMarker->eraseFromParent();
289 BB->deleteTrailingDbgRecords();
290 }
291 };
292
293 if (!SrcMarker || SrcMarker->StoredDbgRecords.empty()) {
294 ReleaseTrailingDbgRecords();
295 return;
296 }
297
298 // If we have DbgMarkers attached to this instruction, we have to honour the
299 // ordering of DbgRecords between this and the other marker. Fall back to just
300 // absorbing from the source.
301 if (DebugMarker || It == BB->end()) {
302 // Ensure we _do_ have a marker.
303 getParent()->createMarker(I: this);
304 DebugMarker->absorbDebugValues(Src&: *SrcMarker, InsertAtHead);
305
306 // Having transferred everything out of SrcMarker, we _could_ clean it up
307 // and free the marker now. However, that's a lot of heap-accounting for a
308 // small amount of memory with a good chance of re-use. Leave it for the
309 // moment. It will be released when the Instruction is freed in the worst
310 // case.
311 // However: if we transferred from a trailing marker off the end of the
312 // block, it's important to not leave the empty marker trailing. It will
313 // give a misleading impression that some debug records have been left
314 // trailing.
315 ReleaseTrailingDbgRecords();
316 } else {
317 // Optimisation: we're transferring all the DbgRecords from the source
318 // marker onto this empty location: just adopt the other instructions
319 // marker.
320 DebugMarker = SrcMarker;
321 DebugMarker->MarkedInstr = this;
322 It->DebugMarker = nullptr;
323 }
324}
325
326void Instruction::dropDbgRecords() {
327 if (DebugMarker)
328 DebugMarker->dropDbgRecords();
329}
330
331void Instruction::dropOneDbgRecord(DbgRecord *DVR) {
332 DebugMarker->dropOneDbgRecord(DR: DVR);
333}
334
335bool Instruction::comesBefore(const Instruction *Other) const {
336 assert(getParent() && Other->getParent() &&
337 "instructions without BB parents have no order");
338 assert(getParent() == Other->getParent() &&
339 "cross-BB instruction order comparison");
340 if (!getParent()->isInstrOrderValid())
341 const_cast<BasicBlock *>(getParent())->renumberInstructions();
342 return Order < Other->Order;
343}
344
345std::optional<BasicBlock::iterator> Instruction::getInsertionPointAfterDef() {
346 assert(!getType()->isVoidTy() && "Instruction must define result");
347 BasicBlock *InsertBB;
348 BasicBlock::iterator InsertPt;
349 if (auto *PN = dyn_cast<PHINode>(Val: this)) {
350 InsertBB = PN->getParent();
351 InsertPt = InsertBB->getFirstInsertionPt();
352 } else if (auto *II = dyn_cast<InvokeInst>(Val: this)) {
353 InsertBB = II->getNormalDest();
354 InsertPt = InsertBB->getFirstInsertionPt();
355 } else if (isa<CallBrInst>(Val: this)) {
356 // Def is available in multiple successors, there's no single dominating
357 // insertion point.
358 return std::nullopt;
359 } else {
360 assert(!isTerminator() && "Only invoke/callbr terminators return value");
361 InsertBB = getParent();
362 InsertPt = std::next(x: getIterator());
363 // Any instruction inserted immediately after "this" will come before any
364 // debug-info records take effect -- thus, set the head bit indicating that
365 // to debug-info-transfer code.
366 InsertPt.setHeadBit(true);
367 }
368
369 // catchswitch blocks don't have any legal insertion point (because they
370 // are both an exception pad and a terminator).
371 if (InsertPt == InsertBB->end())
372 return std::nullopt;
373 return InsertPt;
374}
375
376bool Instruction::isOnlyUserOfAnyOperand() {
377 return any_of(Range: operands(), P: [](const Value *V) { return V->hasOneUser(); });
378}
379
380void Instruction::setHasNoUnsignedWrap(bool b) {
381 if (auto *Inst = dyn_cast<OverflowingBinaryOperator>(Val: this))
382 Inst->setHasNoUnsignedWrap(b);
383 else
384 cast<TruncInst>(Val: this)->setHasNoUnsignedWrap(b);
385}
386
387void Instruction::setHasNoSignedWrap(bool b) {
388 if (auto *Inst = dyn_cast<OverflowingBinaryOperator>(Val: this))
389 Inst->setHasNoSignedWrap(b);
390 else
391 cast<TruncInst>(Val: this)->setHasNoSignedWrap(b);
392}
393
394void Instruction::setIsExact(bool b) {
395 cast<PossiblyExactOperator>(Val: this)->setIsExact(b);
396}
397
398void Instruction::setNonNeg(bool b) {
399 assert(isa<PossiblyNonNegInst>(this) && "Must be zext/uitofp");
400 SubclassOptionalData = (SubclassOptionalData & ~PossiblyNonNegInst::NonNeg) |
401 (b * PossiblyNonNegInst::NonNeg);
402}
403
404bool Instruction::hasNoUnsignedWrap() const {
405 if (auto *Inst = dyn_cast<OverflowingBinaryOperator>(Val: this))
406 return Inst->hasNoUnsignedWrap();
407
408 return cast<TruncInst>(Val: this)->hasNoUnsignedWrap();
409}
410
411bool Instruction::hasNoSignedWrap() const {
412 if (auto *Inst = dyn_cast<OverflowingBinaryOperator>(Val: this))
413 return Inst->hasNoSignedWrap();
414
415 return cast<TruncInst>(Val: this)->hasNoSignedWrap();
416}
417
418bool Instruction::hasNonNeg() const {
419 assert(isa<PossiblyNonNegInst>(this) && "Must be zext/uitofp");
420 return (SubclassOptionalData & PossiblyNonNegInst::NonNeg) != 0;
421}
422
423bool Instruction::hasPoisonGeneratingFlags() const {
424 return cast<Operator>(Val: this)->hasPoisonGeneratingFlags();
425}
426
427void Instruction::dropPoisonGeneratingFlags() {
428 switch (getOpcode()) {
429 case Instruction::Add:
430 case Instruction::Sub:
431 case Instruction::Mul:
432 case Instruction::Shl:
433 cast<OverflowingBinaryOperator>(Val: this)->setHasNoUnsignedWrap(false);
434 cast<OverflowingBinaryOperator>(Val: this)->setHasNoSignedWrap(false);
435 break;
436
437 case Instruction::UDiv:
438 case Instruction::SDiv:
439 case Instruction::AShr:
440 case Instruction::LShr:
441 cast<PossiblyExactOperator>(Val: this)->setIsExact(false);
442 break;
443
444 case Instruction::Or:
445 cast<PossiblyDisjointInst>(Val: this)->setIsDisjoint(false);
446 break;
447
448 case Instruction::GetElementPtr:
449 cast<GetElementPtrInst>(Val: this)->setNoWrapFlags(GEPNoWrapFlags::none());
450 break;
451
452 case Instruction::UIToFP:
453 case Instruction::ZExt:
454 setNonNeg(false);
455 break;
456
457 case Instruction::Trunc:
458 cast<TruncInst>(Val: this)->setHasNoUnsignedWrap(false);
459 cast<TruncInst>(Val: this)->setHasNoSignedWrap(false);
460 break;
461
462 case Instruction::ICmp:
463 cast<ICmpInst>(Val: this)->setSameSign(false);
464 break;
465
466 case Instruction::AddrSpaceCast:
467 cast<AddrSpaceCastInst>(Val: this)->setNonNull(false);
468 break;
469
470 case Instruction::Call: {
471 if (auto *II = dyn_cast<IntrinsicInst>(Val: this)) {
472 switch (II->getIntrinsicID()) {
473 case Intrinsic::ctlz:
474 case Intrinsic::cttz:
475 case Intrinsic::abs:
476 II->setOperand(i_nocapture: 1, Val_nocapture: ConstantInt::getFalse(Context&: getContext()));
477 break;
478 }
479 }
480 break;
481 }
482 }
483
484 if (isa<FPMathOperator>(Val: this)) {
485 setHasNoNaNs(false);
486 setHasNoInfs(false);
487 }
488
489 assert(!hasPoisonGeneratingFlags() && "must be kept in sync");
490}
491
492bool Instruction::hasPoisonGeneratingMetadata() const {
493 return any_of(Range: Metadata::PoisonGeneratingIDs,
494 P: [this](unsigned ID) { return hasMetadata(KindID: ID); });
495}
496
497bool Instruction::hasNonDebugLocLoopMetadata() const {
498 // If there is no loop metadata at all, we also don't have
499 // non-debug loop metadata, obviously.
500 if (!hasMetadata(KindID: LLVMContext::MD_loop))
501 return false;
502
503 // If we do have loop metadata, retrieve it.
504 MDNode *LoopMD = getMetadata(KindID: LLVMContext::MD_loop);
505
506 // Check if the existing operands are debug locations. This loop
507 // should terminate after at most three iterations. Skip
508 // the first item because it is a self-reference.
509 for (const MDOperand &Op : llvm::drop_begin(RangeOrContainer: LoopMD->operands())) {
510 // check for debug location type by attempting a cast.
511 if (!isa<DILocation>(Val: Op)) {
512 return true;
513 }
514 }
515
516 // If we get here, then all we have is debug locations in the loop metadata.
517 return false;
518}
519
520void Instruction::dropPoisonGeneratingMetadata() {
521 for (unsigned ID : Metadata::PoisonGeneratingIDs)
522 eraseMetadata(KindID: ID);
523}
524
525bool Instruction::hasPoisonGeneratingAttributes() const {
526 if (const auto *CB = dyn_cast<CallBase>(Val: this)) {
527 auto HasPoisonGeneratingAttributes = [](AttributeSet Attrs) {
528 return Attrs.hasAttribute(Kind: Attribute::Range) ||
529 Attrs.hasAttribute(Kind: Attribute::Alignment) ||
530 Attrs.hasAttribute(Kind: Attribute::NonNull) ||
531 Attrs.hasAttribute(Kind: Attribute::NoFPClass);
532 };
533 if (HasPoisonGeneratingAttributes(CB->getRetAttributes()))
534 return true;
535 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++)
536 if (HasPoisonGeneratingAttributes(CB->getParamAttributes(ArgNo)))
537 return true;
538 }
539 return false;
540}
541
542void Instruction::dropPoisonGeneratingAttributes() {
543 if (auto *CB = dyn_cast<CallBase>(Val: this)) {
544 AttributeMask AM;
545 AM.addAttribute(Val: Attribute::Range);
546 AM.addAttribute(Val: Attribute::Alignment);
547 AM.addAttribute(Val: Attribute::NonNull);
548 AM.addAttribute(Val: Attribute::NoFPClass);
549 CB->removeRetAttrs(AttrsToRemove: AM);
550 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++)
551 CB->removeParamAttrs(ArgNo, AttrsToRemove: AM);
552 }
553 assert(!hasPoisonGeneratingAttributes() && "must be kept in sync");
554}
555
556void Instruction::dropUBImplyingAttrsAndUnknownMetadata(
557 ArrayRef<unsigned> KnownIDs) {
558 dropUnknownNonDebugMetadata(KnownIDs);
559 auto *CB = dyn_cast<CallBase>(Val: this);
560 if (!CB)
561 return;
562 // For call instructions, we also need to drop parameter and return attributes
563 // that can cause UB if the call is moved to a location where the attribute is
564 // not valid.
565 AttributeList AL = CB->getAttributes();
566 if (AL.isEmpty())
567 return;
568 AttributeMask UBImplyingAttributes =
569 AttributeFuncs::getUBImplyingAttributes();
570 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++)
571 CB->removeParamAttrs(ArgNo, AttrsToRemove: UBImplyingAttributes);
572 CB->removeRetAttrs(AttrsToRemove: UBImplyingAttributes);
573}
574
575void Instruction::dropUBImplyingAttrsAndMetadata(ArrayRef<unsigned> Keep) {
576 // !annotation and !prof metadata does not impact semantics.
577 // !range, !nonnull, !align and !nofpclass produce poison, so they are safe to
578 // speculate.
579 // !fpmath specifies floating-point precision and does not imply UB.
580 // !mem.cache_hint is a performance hint and does not imply UB.
581 // !noundef and various AA metadata must be dropped, as it generally produces
582 // immediate undefined behavior.
583 static const unsigned KnownIDs[] = {
584 LLVMContext::MD_annotation, LLVMContext::MD_range,
585 LLVMContext::MD_nonnull, LLVMContext::MD_align,
586 LLVMContext::MD_fpmath, LLVMContext::MD_prof,
587 LLVMContext::MD_mem_cache_hint, LLVMContext::MD_nofpclass};
588 SmallVector<unsigned> KeepIDs;
589 KeepIDs.reserve(N: Keep.size() + std::size(KnownIDs));
590 append_range(C&: KeepIDs, R: KnownIDs);
591 append_range(C&: KeepIDs, R&: Keep);
592 dropUBImplyingAttrsAndUnknownMetadata(KnownIDs: KeepIDs);
593}
594
595bool Instruction::hasUBImplyingAttrs() const {
596 auto *CB = dyn_cast<CallBase>(Val: this);
597 if (!CB)
598 return false;
599 // For call instructions, we also need to check parameter and return
600 // attributes that can cause UB.
601 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++)
602 if (CB->isPassingUndefUB(ArgNo))
603 return true;
604 return CB->hasRetAttr(Kind: Attribute::NoUndef) ||
605 CB->hasRetAttr(Kind: Attribute::Dereferenceable) ||
606 CB->hasRetAttr(Kind: Attribute::DereferenceableOrNull);
607}
608
609bool Instruction::isExact() const {
610 return cast<PossiblyExactOperator>(Val: this)->isExact();
611}
612
613void Instruction::setFast(bool B) {
614 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
615 cast<FPMathOperator>(Val: this)->setFast(B);
616}
617
618void Instruction::setHasAllowReassoc(bool B) {
619 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
620 cast<FPMathOperator>(Val: this)->setHasAllowReassoc(B);
621}
622
623void Instruction::setHasNoNaNs(bool B) {
624 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
625 cast<FPMathOperator>(Val: this)->setHasNoNaNs(B);
626}
627
628void Instruction::setHasNoInfs(bool B) {
629 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
630 cast<FPMathOperator>(Val: this)->setHasNoInfs(B);
631}
632
633void Instruction::setHasNoSignedZeros(bool B) {
634 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
635 cast<FPMathOperator>(Val: this)->setHasNoSignedZeros(B);
636}
637
638void Instruction::setHasAllowReciprocal(bool B) {
639 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
640 cast<FPMathOperator>(Val: this)->setHasAllowReciprocal(B);
641}
642
643void Instruction::setHasAllowContract(bool B) {
644 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
645 cast<FPMathOperator>(Val: this)->setHasAllowContract(B);
646}
647
648void Instruction::setHasApproxFunc(bool B) {
649 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
650 cast<FPMathOperator>(Val: this)->setHasApproxFunc(B);
651}
652
653void Instruction::setFastMathFlags(FastMathFlags FMF) {
654 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op");
655 cast<FPMathOperator>(Val: this)->setFastMathFlags(FMF);
656}
657
658void Instruction::copyFastMathFlags(FastMathFlags FMF) {
659 assert(isa<FPMathOperator>(this) && "copying fast-math flag on invalid op");
660 cast<FPMathOperator>(Val: this)->copyFastMathFlags(FMF);
661}
662
663bool Instruction::isFast() const {
664 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
665 return cast<FPMathOperator>(Val: this)->isFast();
666}
667
668bool Instruction::hasAllowReassoc() const {
669 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
670 return cast<FPMathOperator>(Val: this)->hasAllowReassoc();
671}
672
673bool Instruction::hasNoNaNs() const {
674 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
675 return cast<FPMathOperator>(Val: this)->hasNoNaNs();
676}
677
678bool Instruction::hasNoInfs() const {
679 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
680 return cast<FPMathOperator>(Val: this)->hasNoInfs();
681}
682
683bool Instruction::hasNoSignedZeros() const {
684 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
685 return cast<FPMathOperator>(Val: this)->hasNoSignedZeros();
686}
687
688bool Instruction::hasAllowReciprocal() const {
689 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
690 return cast<FPMathOperator>(Val: this)->hasAllowReciprocal();
691}
692
693bool Instruction::hasAllowContract() const {
694 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
695 return cast<FPMathOperator>(Val: this)->hasAllowContract();
696}
697
698bool Instruction::hasApproxFunc() const {
699 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
700 return cast<FPMathOperator>(Val: this)->hasApproxFunc();
701}
702
703FastMathFlags Instruction::getFastMathFlags() const {
704 assert(isa<FPMathOperator>(this) && "getting fast-math flag on invalid op");
705 return cast<FPMathOperator>(Val: this)->getFastMathFlags();
706}
707
708FastMathFlags Instruction::getFastMathFlagsOrNone() const {
709 if (!isa<FPMathOperator>(Val: this))
710 return {};
711 return cast<FPMathOperator>(Val: this)->getFastMathFlags();
712}
713
714void Instruction::copyFastMathFlags(const Instruction *I) {
715 copyFastMathFlags(FMF: I->getFastMathFlags());
716}
717
718void Instruction::copyIRFlags(const Value *V, bool IncludeWrapFlags) {
719 // Copy the wrapping flags.
720 if (IncludeWrapFlags && isa<OverflowingBinaryOperator>(Val: this)) {
721 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(Val: V)) {
722 setHasNoSignedWrap(OB->hasNoSignedWrap());
723 setHasNoUnsignedWrap(OB->hasNoUnsignedWrap());
724 }
725 }
726
727 if (auto *TI = dyn_cast<TruncInst>(Val: V)) {
728 if (isa<TruncInst>(Val: this)) {
729 setHasNoSignedWrap(TI->hasNoSignedWrap());
730 setHasNoUnsignedWrap(TI->hasNoUnsignedWrap());
731 }
732 }
733
734 // Copy the exact flag.
735 if (auto *PE = dyn_cast<PossiblyExactOperator>(Val: V))
736 if (isa<PossiblyExactOperator>(Val: this))
737 setIsExact(PE->isExact());
738
739 if (auto *SrcPD = dyn_cast<PossiblyDisjointInst>(Val: V))
740 if (auto *DestPD = dyn_cast<PossiblyDisjointInst>(Val: this))
741 DestPD->setIsDisjoint(SrcPD->isDisjoint());
742
743 // Copy the fast-math flags.
744 if (auto *FP = dyn_cast<FPMathOperator>(Val: V))
745 if (isa<FPMathOperator>(Val: this))
746 copyFastMathFlags(FMF: FP->getFastMathFlags());
747
748 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(Val: V))
749 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(Val: this))
750 DestGEP->setNoWrapFlags(SrcGEP->getNoWrapFlags() |
751 DestGEP->getNoWrapFlags());
752
753 if (auto *NNI = dyn_cast<PossiblyNonNegInst>(Val: V))
754 if (isa<PossiblyNonNegInst>(Val: this))
755 setNonNeg(NNI->hasNonNeg());
756
757 if (auto *SrcICmp = dyn_cast<ICmpInst>(Val: V))
758 if (auto *DestICmp = dyn_cast<ICmpInst>(Val: this))
759 DestICmp->setSameSign(SrcICmp->hasSameSign());
760
761 if (auto *SrcASC = dyn_cast<AddrSpaceCastInst>(Val: V))
762 if (auto *DestASC = dyn_cast<AddrSpaceCastInst>(Val: this)) {
763 assert(DestASC->getSrcAddressSpace() == SrcASC->getSrcAddressSpace() &&
764 "nonull flag cannot be safely preserved with different source "
765 "address spaces");
766 DestASC->setNonNull(SrcASC->hasNonNull());
767 }
768}
769
770void Instruction::andIRFlags(const Value *V) {
771 if (auto *OB = dyn_cast<OverflowingBinaryOperator>(Val: V)) {
772 if (isa<OverflowingBinaryOperator>(Val: this)) {
773 setHasNoSignedWrap(hasNoSignedWrap() && OB->hasNoSignedWrap());
774 setHasNoUnsignedWrap(hasNoUnsignedWrap() && OB->hasNoUnsignedWrap());
775 }
776 }
777
778 if (auto *TI = dyn_cast<TruncInst>(Val: V)) {
779 if (isa<TruncInst>(Val: this)) {
780 setHasNoSignedWrap(hasNoSignedWrap() && TI->hasNoSignedWrap());
781 setHasNoUnsignedWrap(hasNoUnsignedWrap() && TI->hasNoUnsignedWrap());
782 }
783 }
784
785 if (auto *PE = dyn_cast<PossiblyExactOperator>(Val: V))
786 if (isa<PossiblyExactOperator>(Val: this))
787 setIsExact(isExact() && PE->isExact());
788
789 if (auto *SrcPD = dyn_cast<PossiblyDisjointInst>(Val: V))
790 if (auto *DestPD = dyn_cast<PossiblyDisjointInst>(Val: this))
791 DestPD->setIsDisjoint(DestPD->isDisjoint() && SrcPD->isDisjoint());
792
793 if (auto *FP = dyn_cast<FPMathOperator>(Val: V)) {
794 if (isa<FPMathOperator>(Val: this)) {
795 FastMathFlags FM = getFastMathFlags();
796 FM &= FP->getFastMathFlags();
797 copyFastMathFlags(FMF: FM);
798 }
799 }
800
801 if (auto *SrcGEP = dyn_cast<GetElementPtrInst>(Val: V))
802 if (auto *DestGEP = dyn_cast<GetElementPtrInst>(Val: this))
803 DestGEP->setNoWrapFlags(SrcGEP->getNoWrapFlags() &
804 DestGEP->getNoWrapFlags());
805
806 if (auto *NNI = dyn_cast<PossiblyNonNegInst>(Val: V))
807 if (isa<PossiblyNonNegInst>(Val: this))
808 setNonNeg(hasNonNeg() && NNI->hasNonNeg());
809
810 if (auto *SrcICmp = dyn_cast<ICmpInst>(Val: V))
811 if (auto *DestICmp = dyn_cast<ICmpInst>(Val: this))
812 DestICmp->setSameSign(DestICmp->hasSameSign() && SrcICmp->hasSameSign());
813
814 if (auto *SrcASC = dyn_cast<AddrSpaceCastInst>(Val: V))
815 if (auto *DestASC = dyn_cast<AddrSpaceCastInst>(Val: this)) {
816 assert(DestASC->getSrcAddressSpace() == SrcASC->getSrcAddressSpace() &&
817 "nonull flag cannot be safely preserved with different source "
818 "address spaces");
819 DestASC->setNonNull(DestASC->hasNonNull() && SrcASC->hasNonNull());
820 }
821}
822
823const char *Instruction::getOpcodeName(unsigned OpCode) {
824 switch (OpCode) {
825 // Terminators
826 case Ret: return "ret";
827 case UncondBr: return "br";
828 case CondBr: return "br";
829 case Switch: return "switch";
830 case IndirectBr: return "indirectbr";
831 case Invoke: return "invoke";
832 case Resume: return "resume";
833 case Unreachable: return "unreachable";
834 case CleanupRet: return "cleanupret";
835 case CatchRet: return "catchret";
836 case CatchPad: return "catchpad";
837 case CatchSwitch: return "catchswitch";
838 case CallBr: return "callbr";
839
840 // Standard unary operators...
841 case FNeg: return "fneg";
842
843 // Standard binary operators...
844 case Add: return "add";
845 case FAdd: return "fadd";
846 case Sub: return "sub";
847 case FSub: return "fsub";
848 case Mul: return "mul";
849 case FMul: return "fmul";
850 case UDiv: return "udiv";
851 case SDiv: return "sdiv";
852 case FDiv: return "fdiv";
853 case URem: return "urem";
854 case SRem: return "srem";
855 case FRem: return "frem";
856
857 // Logical operators...
858 case And: return "and";
859 case Or : return "or";
860 case Xor: return "xor";
861
862 // Memory instructions...
863 case Alloca: return "alloca";
864 case Load: return "load";
865 case Store: return "store";
866 case AtomicCmpXchg: return "cmpxchg";
867 case AtomicRMW: return "atomicrmw";
868 case Fence: return "fence";
869 case GetElementPtr: return "getelementptr";
870
871 // Convert instructions...
872 case Trunc: return "trunc";
873 case ZExt: return "zext";
874 case SExt: return "sext";
875 case FPTrunc: return "fptrunc";
876 case FPExt: return "fpext";
877 case FPToUI: return "fptoui";
878 case FPToSI: return "fptosi";
879 case UIToFP: return "uitofp";
880 case SIToFP: return "sitofp";
881 case IntToPtr: return "inttoptr";
882 case PtrToAddr: return "ptrtoaddr";
883 case PtrToInt: return "ptrtoint";
884 case BitCast: return "bitcast";
885 case AddrSpaceCast: return "addrspacecast";
886
887 // Other instructions...
888 case ICmp: return "icmp";
889 case FCmp: return "fcmp";
890 case PHI: return "phi";
891 case Select: return "select";
892 case Call: return "call";
893 case Shl: return "shl";
894 case LShr: return "lshr";
895 case AShr: return "ashr";
896 case VAArg: return "va_arg";
897 case ExtractElement: return "extractelement";
898 case InsertElement: return "insertelement";
899 case ShuffleVector: return "shufflevector";
900 case ExtractValue: return "extractvalue";
901 case InsertValue: return "insertvalue";
902 case LandingPad: return "landingpad";
903 case CleanupPad: return "cleanuppad";
904 case Freeze: return "freeze";
905
906 default: return "<Invalid operator> ";
907 }
908}
909
910/// This must be kept in sync with FunctionComparator::cmpOperations in
911/// lib/Transforms/Utils/FunctionComparator.cpp.
912bool Instruction::hasSameSpecialState(const Instruction *I2,
913 bool IgnoreAlignment,
914 bool IntersectAttrs) const {
915 const auto *I1 = this;
916 assert(I1->getOpcode() == I2->getOpcode() &&
917 "Can not compare special state of different instructions");
918
919 auto CheckAttrsSame = [IntersectAttrs](const CallBase *CB0,
920 const CallBase *CB1) {
921 return IntersectAttrs
922 ? CB0->getAttributes()
923 .intersectWith(C&: CB0->getContext(), Other: CB1->getAttributes())
924 .has_value()
925 : CB0->getAttributes() == CB1->getAttributes();
926 };
927
928 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Val: I1))
929 return AI->getAllocatedType() == cast<AllocaInst>(Val: I2)->getAllocatedType() &&
930 (AI->getAlign() == cast<AllocaInst>(Val: I2)->getAlign() ||
931 IgnoreAlignment);
932 if (const LoadInst *LI = dyn_cast<LoadInst>(Val: I1))
933 return LI->isVolatile() == cast<LoadInst>(Val: I2)->isVolatile() &&
934 LI->isElementwise() == cast<LoadInst>(Val: I2)->isElementwise() &&
935 (LI->getAlign() == cast<LoadInst>(Val: I2)->getAlign() ||
936 IgnoreAlignment) &&
937 LI->getOrdering() == cast<LoadInst>(Val: I2)->getOrdering() &&
938 LI->getSyncScopeID() == cast<LoadInst>(Val: I2)->getSyncScopeID();
939 if (const StoreInst *SI = dyn_cast<StoreInst>(Val: I1))
940 return SI->isVolatile() == cast<StoreInst>(Val: I2)->isVolatile() &&
941 SI->isElementwise() == cast<StoreInst>(Val: I2)->isElementwise() &&
942 (SI->getAlign() == cast<StoreInst>(Val: I2)->getAlign() ||
943 IgnoreAlignment) &&
944 SI->getOrdering() == cast<StoreInst>(Val: I2)->getOrdering() &&
945 SI->getSyncScopeID() == cast<StoreInst>(Val: I2)->getSyncScopeID();
946 if (const CmpInst *CI = dyn_cast<CmpInst>(Val: I1))
947 return CI->getPredicate() == cast<CmpInst>(Val: I2)->getPredicate();
948 if (const CallInst *CI = dyn_cast<CallInst>(Val: I1))
949 return CI->isTailCall() == cast<CallInst>(Val: I2)->isTailCall() &&
950 CI->getCallingConv() == cast<CallInst>(Val: I2)->getCallingConv() &&
951 CheckAttrsSame(CI, cast<CallInst>(Val: I2)) &&
952 CI->hasIdenticalOperandBundleSchema(Other: *cast<CallInst>(Val: I2));
953 if (const InvokeInst *CI = dyn_cast<InvokeInst>(Val: I1))
954 return CI->getCallingConv() == cast<InvokeInst>(Val: I2)->getCallingConv() &&
955 CheckAttrsSame(CI, cast<InvokeInst>(Val: I2)) &&
956 CI->hasIdenticalOperandBundleSchema(Other: *cast<InvokeInst>(Val: I2));
957 if (const CallBrInst *CI = dyn_cast<CallBrInst>(Val: I1))
958 return CI->getCallingConv() == cast<CallBrInst>(Val: I2)->getCallingConv() &&
959 CheckAttrsSame(CI, cast<CallBrInst>(Val: I2)) &&
960 CI->hasIdenticalOperandBundleSchema(Other: *cast<CallBrInst>(Val: I2));
961 if (const SwitchInst *SI = dyn_cast<SwitchInst>(Val: I1)) {
962 for (auto [Case1, Case2] : zip(t: SI->cases(), u: cast<SwitchInst>(Val: I2)->cases()))
963 if (Case1.getCaseValue() != Case2.getCaseValue())
964 return false;
965 return true;
966 }
967 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Val: I1))
968 return IVI->getIndices() == cast<InsertValueInst>(Val: I2)->getIndices();
969 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Val: I1))
970 return EVI->getIndices() == cast<ExtractValueInst>(Val: I2)->getIndices();
971 if (const FenceInst *FI = dyn_cast<FenceInst>(Val: I1))
972 return FI->getOrdering() == cast<FenceInst>(Val: I2)->getOrdering() &&
973 FI->getSyncScopeID() == cast<FenceInst>(Val: I2)->getSyncScopeID();
974 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(Val: I1))
975 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(Val: I2)->isVolatile() &&
976 (CXI->getAlign() == cast<AtomicCmpXchgInst>(Val: I2)->getAlign() ||
977 IgnoreAlignment) &&
978 CXI->isWeak() == cast<AtomicCmpXchgInst>(Val: I2)->isWeak() &&
979 CXI->getSuccessOrdering() ==
980 cast<AtomicCmpXchgInst>(Val: I2)->getSuccessOrdering() &&
981 CXI->getFailureOrdering() ==
982 cast<AtomicCmpXchgInst>(Val: I2)->getFailureOrdering() &&
983 CXI->getSyncScopeID() ==
984 cast<AtomicCmpXchgInst>(Val: I2)->getSyncScopeID();
985 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(Val: I1))
986 return RMWI->getOperation() == cast<AtomicRMWInst>(Val: I2)->getOperation() &&
987 RMWI->isElementwise() == cast<AtomicRMWInst>(Val: I2)->isElementwise() &&
988 RMWI->isVolatile() == cast<AtomicRMWInst>(Val: I2)->isVolatile() &&
989 (RMWI->getAlign() == cast<AtomicRMWInst>(Val: I2)->getAlign() ||
990 IgnoreAlignment) &&
991 RMWI->getOrdering() == cast<AtomicRMWInst>(Val: I2)->getOrdering() &&
992 RMWI->getSyncScopeID() == cast<AtomicRMWInst>(Val: I2)->getSyncScopeID();
993 if (const ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(Val: I1))
994 return SVI->getShuffleMask() ==
995 cast<ShuffleVectorInst>(Val: I2)->getShuffleMask();
996 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Val: I1))
997 return GEP->getSourceElementType() ==
998 cast<GetElementPtrInst>(Val: I2)->getSourceElementType();
999
1000 return true;
1001}
1002
1003bool Instruction::isIdenticalTo(const Instruction *I) const {
1004 return isIdenticalToWhenDefined(I) &&
1005 SubclassOptionalData == I->SubclassOptionalData;
1006}
1007
1008bool Instruction::isIdenticalToWhenDefined(const Instruction *I,
1009 bool IntersectAttrs) const {
1010 if (getOpcode() != I->getOpcode() ||
1011 getNumOperands() != I->getNumOperands() || getType() != I->getType())
1012 return false;
1013
1014 // If both instructions have no operands, they are identical.
1015 if (getNumOperands() == 0 && I->getNumOperands() == 0)
1016 return this->hasSameSpecialState(I2: I, /*IgnoreAlignment=*/false,
1017 IntersectAttrs);
1018
1019 // We have two instructions of identical opcode and #operands. Check to see
1020 // if all operands are the same.
1021 if (!equal(LRange: operands(), RRange: I->operands()))
1022 return false;
1023
1024 // WARNING: this logic must be kept in sync with EliminateDuplicatePHINodes()!
1025 if (const PHINode *Phi = dyn_cast<PHINode>(Val: this)) {
1026 const PHINode *OtherPhi = cast<PHINode>(Val: I);
1027 return equal(LRange: Phi->blocks(), RRange: OtherPhi->blocks());
1028 }
1029
1030 return this->hasSameSpecialState(I2: I, /*IgnoreAlignment=*/false,
1031 IntersectAttrs);
1032}
1033
1034// Keep this in sync with FunctionComparator::cmpOperations in
1035// lib/Transforms/IPO/MergeFunctions.cpp.
1036bool Instruction::isSameOperationAs(const Instruction *I,
1037 unsigned flags) const {
1038 bool IgnoreAlignment = flags & CompareIgnoringAlignment;
1039 bool UseScalarTypes = flags & CompareUsingScalarTypes;
1040 bool IntersectAttrs = flags & CompareUsingIntersectedAttrs;
1041 bool CheckCallTargets = flags & CompareCallTargets;
1042
1043 if (getOpcode() != I->getOpcode() ||
1044 getNumOperands() != I->getNumOperands() ||
1045 (UseScalarTypes ?
1046 getType()->getScalarType() != I->getType()->getScalarType() :
1047 getType() != I->getType()))
1048 return false;
1049
1050 // We have two instructions of identical opcode and #operands. Check to see
1051 // if all operands are the same type
1052 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1053 if (UseScalarTypes ?
1054 getOperand(i)->getType()->getScalarType() !=
1055 I->getOperand(i)->getType()->getScalarType() :
1056 getOperand(i)->getType() != I->getOperand(i)->getType())
1057 return false;
1058
1059 if (CheckCallTargets)
1060 if (const auto *CB = dyn_cast<CallBase>(Val: this))
1061 if (CB->getCalledOperand() != cast<CallBase>(Val: I)->getCalledOperand())
1062 return false;
1063
1064 return this->hasSameSpecialState(I2: I, IgnoreAlignment, IntersectAttrs);
1065}
1066
1067bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const {
1068 for (const Use &U : uses()) {
1069 // PHI nodes uses values in the corresponding predecessor block. For other
1070 // instructions, just check to see whether the parent of the use matches up.
1071 const Instruction *I = cast<Instruction>(Val: U.getUser());
1072 const PHINode *PN = dyn_cast<PHINode>(Val: I);
1073 if (!PN) {
1074 if (I->getParent() != BB)
1075 return true;
1076 continue;
1077 }
1078
1079 if (PN->getIncomingBlock(U) != BB)
1080 return true;
1081 }
1082 return false;
1083}
1084
1085MemoryEffects Instruction::getMemoryEffects() const {
1086 auto GetEffects = [](ModRefInfo BaseMR, AtomicOrdering Ordering,
1087 bool IsVolatile) {
1088 if (isStrongerThanMonotonic(AO: Ordering))
1089 return MemoryEffects::unknown();
1090
1091 if (IsVolatile)
1092 return MemoryEffects::inaccessibleOrArgMemOnly();
1093
1094 if (isStrongerThanUnordered(AO: Ordering))
1095 return MemoryEffects::argMemOnly();
1096
1097 return MemoryEffects::argMemOnly(MR: BaseMR);
1098 };
1099 switch (getOpcode()) {
1100 default:
1101 return MemoryEffects::none();
1102 case Instruction::VAArg:
1103 return MemoryEffects::argMemOnly();
1104 case Instruction::CatchPad:
1105 case Instruction::CatchRet:
1106 case Instruction::Fence:
1107 return MemoryEffects::unknown();
1108 case Instruction::Call:
1109 case Instruction::Invoke:
1110 case Instruction::CallBr:
1111 return cast<CallBase>(Val: this)->getMemoryEffects();
1112 case Instruction::Load: {
1113 auto *LI = cast<LoadInst>(Val: this);
1114 return GetEffects(ModRefInfo::Ref, LI->getOrdering(), LI->isVolatile());
1115 }
1116 case Instruction::Store: {
1117 auto *SI = cast<StoreInst>(Val: this);
1118 return GetEffects(ModRefInfo::Mod, SI->getOrdering(), SI->isVolatile());
1119 }
1120 case Instruction::AtomicRMW: {
1121 auto *RMW = cast<AtomicRMWInst>(Val: this);
1122 return GetEffects(ModRefInfo::ModRef, RMW->getOrdering(),
1123 RMW->isVolatile());
1124 }
1125 case Instruction::AtomicCmpXchg: {
1126 auto *CX = cast<AtomicCmpXchgInst>(Val: this);
1127 return GetEffects(ModRefInfo::ModRef, CX->getMergedOrdering(),
1128 CX->isVolatile());
1129 }
1130 }
1131}
1132
1133// This is duplicating the logic from getMemoryEffects() for performance
1134// reasons. Computing the full MemoryEffects just to perform a Mod/Ref check
1135// is expensive.
1136
1137bool Instruction::mayReadFromMemory() const {
1138 switch (getOpcode()) {
1139 default: return false;
1140 case Instruction::VAArg:
1141 case Instruction::Load:
1142 case Instruction::Fence: // FIXME: refine definition of mayReadFromMemory
1143 case Instruction::AtomicCmpXchg:
1144 case Instruction::AtomicRMW:
1145 case Instruction::CatchPad:
1146 case Instruction::CatchRet:
1147 return true;
1148 case Instruction::Call:
1149 case Instruction::Invoke:
1150 case Instruction::CallBr:
1151 return !cast<CallBase>(Val: this)->onlyWritesMemory();
1152 case Instruction::Store:
1153 return !cast<StoreInst>(Val: this)->isUnordered();
1154 }
1155}
1156
1157bool Instruction::mayWriteToMemory() const {
1158 switch (getOpcode()) {
1159 default: return false;
1160 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
1161 case Instruction::Store:
1162 case Instruction::VAArg:
1163 case Instruction::AtomicCmpXchg:
1164 case Instruction::AtomicRMW:
1165 case Instruction::CatchPad:
1166 case Instruction::CatchRet:
1167 return true;
1168 case Instruction::Call:
1169 case Instruction::Invoke:
1170 case Instruction::CallBr:
1171 return !cast<CallBase>(Val: this)->onlyReadsMemory();
1172 case Instruction::Load:
1173 return !cast<LoadInst>(Val: this)->isUnordered();
1174 }
1175}
1176
1177bool Instruction::isAtomic() const {
1178 switch (getOpcode()) {
1179 default:
1180 return false;
1181 case Instruction::AtomicCmpXchg:
1182 case Instruction::AtomicRMW:
1183 case Instruction::Fence:
1184 return true;
1185 case Instruction::Load:
1186 return cast<LoadInst>(Val: this)->getOrdering() != AtomicOrdering::NotAtomic;
1187 case Instruction::Store:
1188 return cast<StoreInst>(Val: this)->getOrdering() != AtomicOrdering::NotAtomic;
1189 }
1190}
1191
1192bool Instruction::hasAtomicLoad() const {
1193 assert(isAtomic());
1194 switch (getOpcode()) {
1195 default:
1196 return false;
1197 case Instruction::AtomicCmpXchg:
1198 case Instruction::AtomicRMW:
1199 case Instruction::Load:
1200 return true;
1201 }
1202}
1203
1204bool Instruction::hasAtomicStore() const {
1205 assert(isAtomic());
1206 switch (getOpcode()) {
1207 default:
1208 return false;
1209 case Instruction::AtomicCmpXchg:
1210 case Instruction::AtomicRMW:
1211 case Instruction::Store:
1212 return true;
1213 }
1214}
1215
1216bool Instruction::isVolatile() const {
1217 switch (getOpcode()) {
1218 default:
1219 return false;
1220 case Instruction::AtomicRMW:
1221 return cast<AtomicRMWInst>(Val: this)->isVolatile();
1222 case Instruction::Store:
1223 return cast<StoreInst>(Val: this)->isVolatile();
1224 case Instruction::Load:
1225 return cast<LoadInst>(Val: this)->isVolatile();
1226 case Instruction::AtomicCmpXchg:
1227 return cast<AtomicCmpXchgInst>(Val: this)->isVolatile();
1228 case Instruction::Call:
1229 case Instruction::Invoke:
1230 // There are a very limited number of intrinsics with volatile flags.
1231 if (auto *II = dyn_cast<IntrinsicInst>(Val: this)) {
1232 if (auto *MI = dyn_cast<MemIntrinsic>(Val: II))
1233 return MI->isVolatile();
1234 switch (II->getIntrinsicID()) {
1235 default: break;
1236 case Intrinsic::matrix_column_major_load:
1237 return cast<ConstantInt>(Val: II->getArgOperand(i: 2))->isOne();
1238 case Intrinsic::matrix_column_major_store:
1239 return cast<ConstantInt>(Val: II->getArgOperand(i: 3))->isOne();
1240 }
1241 }
1242 return false;
1243 }
1244}
1245
1246bool Instruction::maySynchronize() const {
1247 // FIXME: This currently treats atomics with monotonic ordering as
1248 // synchronizing. This is unnecessarily conservative and does not match
1249 // our LangRef definition of the property.
1250 switch (getOpcode()) {
1251 default:
1252 assert(!isAtomic() && "Unhandled atomic instruction");
1253 return false;
1254 case Instruction::Fence: {
1255 // All legal orderings for fence are stronger than monotonic.
1256 auto *FI = cast<FenceInst>(Val: this);
1257 return FI->getSyncScopeID() != SyncScope::SingleThread;
1258 }
1259 case Instruction::AtomicRMW:
1260 case Instruction::AtomicCmpXchg:
1261 return true;
1262 case Instruction::Store:
1263 return isStrongerThanUnordered(AO: cast<StoreInst>(Val: this)->getOrdering());
1264 case Instruction::Load:
1265 return isStrongerThanUnordered(AO: cast<LoadInst>(Val: this)->getOrdering());
1266 case Instruction::Call:
1267 case Instruction::Invoke:
1268 case Instruction::CallBr:
1269 return !cast<CallBase>(Val: this)->hasFnAttr(Kind: Attribute::NoSync);
1270 }
1271}
1272
1273Type *Instruction::getAccessType() const {
1274 switch (getOpcode()) {
1275 case Instruction::Store:
1276 return cast<StoreInst>(Val: this)->getValueOperand()->getType();
1277 case Instruction::Load:
1278 case Instruction::AtomicRMW:
1279 return getType();
1280 case Instruction::AtomicCmpXchg:
1281 return cast<AtomicCmpXchgInst>(Val: this)->getNewValOperand()->getType();
1282 case Instruction::Call:
1283 case Instruction::Invoke:
1284 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Val: this)) {
1285 switch (II->getIntrinsicID()) {
1286 case Intrinsic::masked_load:
1287 case Intrinsic::masked_gather:
1288 case Intrinsic::masked_expandload:
1289 case Intrinsic::vp_load:
1290 case Intrinsic::vp_gather:
1291 case Intrinsic::experimental_vp_strided_load:
1292 return II->getType();
1293 case Intrinsic::masked_store:
1294 case Intrinsic::masked_scatter:
1295 case Intrinsic::masked_compressstore:
1296 case Intrinsic::vp_store:
1297 case Intrinsic::vp_scatter:
1298 case Intrinsic::experimental_vp_strided_store:
1299 return II->getOperand(i_nocapture: 0)->getType();
1300 default:
1301 break;
1302 }
1303 }
1304 }
1305
1306 return nullptr;
1307}
1308
1309static bool canUnwindPastLandingPad(const LandingPadInst *LP,
1310 bool IncludePhaseOneUnwind) {
1311 // Because phase one unwinding skips cleanup landingpads, we effectively
1312 // unwind past this frame, and callers need to have valid unwind info.
1313 if (LP->isCleanup())
1314 return IncludePhaseOneUnwind;
1315
1316 for (unsigned I = 0; I < LP->getNumClauses(); ++I) {
1317 Constant *Clause = LP->getClause(Idx: I);
1318 // catch ptr null catches all exceptions.
1319 if (LP->isCatch(Idx: I) && isa<ConstantPointerNull>(Val: Clause))
1320 return false;
1321 // filter [0 x ptr] catches all exceptions.
1322 if (LP->isFilter(Idx: I) && Clause->getType()->getArrayNumElements() == 0)
1323 return false;
1324 }
1325
1326 // May catch only some subset of exceptions, in which case other exceptions
1327 // will continue unwinding.
1328 return true;
1329}
1330
1331bool Instruction::mayThrow(bool IncludePhaseOneUnwind) const {
1332 switch (getOpcode()) {
1333 case Instruction::Call:
1334 return !cast<CallInst>(Val: this)->doesNotThrow();
1335 case Instruction::CleanupRet:
1336 return cast<CleanupReturnInst>(Val: this)->unwindsToCaller();
1337 case Instruction::CatchSwitch:
1338 return cast<CatchSwitchInst>(Val: this)->unwindsToCaller();
1339 case Instruction::Resume:
1340 return true;
1341 case Instruction::Invoke: {
1342 // Landingpads themselves don't unwind -- however, an invoke of a skipped
1343 // landingpad may continue unwinding.
1344 BasicBlock *UnwindDest = cast<InvokeInst>(Val: this)->getUnwindDest();
1345 BasicBlock::iterator Pad = UnwindDest->getFirstNonPHIIt();
1346 if (auto *LP = dyn_cast<LandingPadInst>(Val&: Pad))
1347 return canUnwindPastLandingPad(LP, IncludePhaseOneUnwind);
1348 return false;
1349 }
1350 case Instruction::CleanupPad:
1351 // Treat the same as cleanup landingpad.
1352 return IncludePhaseOneUnwind;
1353 default:
1354 return false;
1355 }
1356}
1357
1358bool Instruction::mayHaveSideEffects() const {
1359 return mayWriteToMemory() || mayThrow() || !willReturn();
1360}
1361
1362bool Instruction::isSafeToRemove() const {
1363 return (!isa<CallInst>(Val: this) || !this->mayHaveSideEffects()) &&
1364 !this->isTerminator() && !this->isEHPad();
1365}
1366
1367bool Instruction::willReturn() const {
1368 // Volatile operations are not guaranteed to return.
1369 if (isVolatile())
1370 return false;
1371
1372 if (const auto *CB = dyn_cast<CallBase>(Val: this))
1373 return CB->hasFnAttr(Kind: Attribute::WillReturn);
1374 return true;
1375}
1376
1377bool Instruction::isLifetimeStartOrEnd() const {
1378 auto *II = dyn_cast<IntrinsicInst>(Val: this);
1379 if (!II)
1380 return false;
1381 Intrinsic::ID ID = II->getIntrinsicID();
1382 return ID == Intrinsic::lifetime_start || ID == Intrinsic::lifetime_end;
1383}
1384
1385bool Instruction::isLaunderOrStripInvariantGroup() const {
1386 auto *II = dyn_cast<IntrinsicInst>(Val: this);
1387 if (!II)
1388 return false;
1389 Intrinsic::ID ID = II->getIntrinsicID();
1390 return ID == Intrinsic::launder_invariant_group ||
1391 ID == Intrinsic::strip_invariant_group;
1392}
1393
1394bool Instruction::isDebugOrPseudoInst() const {
1395 return isa<DbgInfoIntrinsic>(Val: this) || isa<PseudoProbeInst>(Val: this);
1396}
1397
1398const DebugLoc &Instruction::getStableDebugLoc() const {
1399 return getDebugLoc();
1400}
1401
1402bool Instruction::isAssociative() const {
1403 if (auto *II = dyn_cast<IntrinsicInst>(Val: this))
1404 return II->isAssociative();
1405 unsigned Opcode = getOpcode();
1406 if (isAssociative(Opcode))
1407 return true;
1408
1409 switch (Opcode) {
1410 case FMul:
1411 return cast<FPMathOperator>(Val: this)->hasAllowReassoc();
1412 case FAdd:
1413 return cast<FPMathOperator>(Val: this)->hasAllowReassoc() &&
1414 cast<FPMathOperator>(Val: this)->hasNoSignedZeros();
1415 default:
1416 return false;
1417 }
1418}
1419
1420bool Instruction::isCommutative() const {
1421 if (auto *II = dyn_cast<IntrinsicInst>(Val: this))
1422 return II->isCommutative();
1423 // TODO: Should allow icmp/fcmp?
1424 return isCommutative(Opcode: getOpcode());
1425}
1426
1427bool Instruction::isCommutableOperand(unsigned Op) const {
1428 if (auto *II = dyn_cast<IntrinsicInst>(Val: this))
1429 return II->isCommutableOperand(Op);
1430 // TODO: Should allow icmp/fcmp?
1431 return isCommutative(Opcode: getOpcode());
1432}
1433
1434unsigned Instruction::getNumSuccessors() const {
1435 switch (getOpcode()) {
1436#define HANDLE_TERM_INST(N, OPC, CLASS) \
1437 case Instruction::OPC: \
1438 return static_cast<const CLASS *>(this)->getNumSuccessors();
1439#include "llvm/IR/Instruction.def"
1440 default:
1441 break;
1442 }
1443 llvm_unreachable("not a terminator");
1444}
1445
1446BasicBlock *Instruction::getSuccessor(unsigned idx) const {
1447 switch (getOpcode()) {
1448#define HANDLE_TERM_INST(N, OPC, CLASS) \
1449 case Instruction::OPC: \
1450 return static_cast<const CLASS *>(this)->getSuccessor(idx);
1451#include "llvm/IR/Instruction.def"
1452 default:
1453 break;
1454 }
1455 llvm_unreachable("not a terminator");
1456}
1457
1458void Instruction::setSuccessor(unsigned idx, BasicBlock *B) {
1459 switch (getOpcode()) {
1460#define HANDLE_TERM_INST(N, OPC, CLASS) \
1461 case Instruction::OPC: \
1462 return static_cast<CLASS *>(this)->setSuccessor(idx, B);
1463#include "llvm/IR/Instruction.def"
1464 default:
1465 break;
1466 }
1467 llvm_unreachable("not a terminator");
1468}
1469
1470iterator_range<Instruction::const_succ_iterator>
1471Instruction::successors() const {
1472 switch (getOpcode()) {
1473#define HANDLE_TERM_INST(N, OPC, CLASS) \
1474 case Instruction::OPC: \
1475 return static_cast<const CLASS *>(this)->successors();
1476#include "llvm/IR/Instruction.def"
1477 default:
1478 break;
1479 }
1480 llvm_unreachable("not a terminator");
1481}
1482
1483void Instruction::replaceSuccessorWith(BasicBlock *OldBB, BasicBlock *NewBB) {
1484 auto Succs = successors();
1485 for (auto I = Succs.begin(), E = Succs.end(); I != E; ++I)
1486 if (*I == OldBB)
1487 I.getUse()->set(NewBB);
1488}
1489
1490Instruction *Instruction::cloneImpl() const {
1491 llvm_unreachable("Subclass of Instruction failed to implement cloneImpl");
1492}
1493
1494void Instruction::swapProfMetadata() {
1495 MDNode *ProfileData = getBranchWeightMDNode(I: *this);
1496 if (!ProfileData)
1497 return;
1498 unsigned FirstIdx = getBranchWeightOffset(ProfileData);
1499 if (ProfileData->getNumOperands() != 2 + FirstIdx)
1500 return;
1501
1502 unsigned SecondIdx = FirstIdx + 1;
1503 SmallVector<Metadata *, 4> Ops;
1504 // If there are more weights past the second, we can't swap them
1505 if (ProfileData->getNumOperands() > SecondIdx + 1)
1506 return;
1507 for (unsigned Idx = 0; Idx < FirstIdx; ++Idx) {
1508 Ops.push_back(Elt: ProfileData->getOperand(I: Idx));
1509 }
1510 // Switch the order of the weights
1511 Ops.push_back(Elt: ProfileData->getOperand(I: SecondIdx));
1512 Ops.push_back(Elt: ProfileData->getOperand(I: FirstIdx));
1513 setMetadata(KindID: LLVMContext::MD_prof,
1514 Node: MDNode::get(Context&: ProfileData->getContext(), MDs: Ops));
1515}
1516
1517void Instruction::copyProfileAndDebugMetadata(const Instruction &SrcInst) {
1518 // TODO: Include additional metadata in the future if appropriate.
1519 static const unsigned SafeIDs[] = {
1520 LLVMContext::MD_dbg, LLVMContext::MD_prof, LLVMContext::MD_memprof,
1521 LLVMContext::MD_callsite};
1522 copyMetadata(SrcInst, WL: SafeIDs);
1523}
1524
1525void Instruction::copyMetadata(const Instruction &SrcInst,
1526 ArrayRef<unsigned> WL) {
1527 if (WL.empty() || is_contained(Range&: WL, Element: LLVMContext::MD_dbg))
1528 setDebugLoc(SrcInst.getDebugLoc().orElse(Other: getDebugLoc()));
1529
1530 if (!SrcInst.hasMetadata())
1531 return;
1532
1533 SmallDenseSet<unsigned, 4> WLS(WL.begin(), WL.end());
1534
1535 // Otherwise, enumerate and copy over metadata from the old instruction to the
1536 // new one.
1537 SmallVector<std::pair<unsigned, MDNode *>, 4> TheMDs;
1538 SrcInst.getAllMetadataOtherThanDebugLoc(MDs&: TheMDs);
1539 for (const auto &MD : TheMDs) {
1540 if (WL.empty() || WLS.count(V: MD.first))
1541 setMetadata(KindID: MD.first, Node: MD.second);
1542 }
1543}
1544
1545Instruction *Instruction::clone() const {
1546 Instruction *New = nullptr;
1547 switch (getOpcode()) {
1548 default:
1549 llvm_unreachable("Unhandled Opcode.");
1550#define HANDLE_INST(num, opc, clas) \
1551 case Instruction::opc: \
1552 New = cast<clas>(this)->cloneImpl(); \
1553 break;
1554#include "llvm/IR/Instruction.def"
1555#undef HANDLE_INST
1556 }
1557
1558 New->SubclassOptionalData = SubclassOptionalData;
1559 New->copyMetadata(SrcInst: *this);
1560 return New;
1561}
1562