LLVM 24.0.0git
Instructions.cpp
Go to the documentation of this file.
1//===- Instructions.cpp - Implement the LLVM instructions -----------------===//
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 all of the non-inline methods for the LLVM instruction
10// classes.
11//
12//===----------------------------------------------------------------------===//
13
15#include "LLVMContextImpl.h"
18#include "llvm/ADT/Twine.h"
19#include "llvm/IR/Attributes.h"
20#include "llvm/IR/BasicBlock.h"
21#include "llvm/IR/Constant.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
26#include "llvm/IR/Function.h"
27#include "llvm/IR/InstrTypes.h"
28#include "llvm/IR/Instruction.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/LLVMContext.h"
31#include "llvm/IR/MDBuilder.h"
32#include "llvm/IR/Metadata.h"
33#include "llvm/IR/Module.h"
34#include "llvm/IR/Operator.h"
37#include "llvm/IR/Type.h"
38#include "llvm/IR/Value.h"
46#include "llvm/Support/ModRef.h"
48#include <algorithm>
49#include <cassert>
50#include <cstdint>
51#include <optional>
52#include <vector>
53
54using namespace llvm;
55
57 "disable-i2p-p2i-opt", cl::init(false),
58 cl::desc("Disables inttoptr/ptrtoint roundtrip optimization"));
59
60//===----------------------------------------------------------------------===//
61// AllocaInst Class
62//===----------------------------------------------------------------------===//
63
64std::optional<TypeSize>
66 TypeSize Size = DL.getTypeAllocSize(getAllocatedType());
67 // Zero-sized types can return early since 0 * N = 0 for any array size N.
68 if (Size.isZero())
69 return Size;
70 if (isArrayAllocation()) {
72 if (!C)
73 return std::nullopt;
74 std::optional<uint64_t> NumElements = C->getValue().tryZExtValue();
75 if (!NumElements)
76 return std::nullopt;
77 assert(!Size.isScalable() && "Array elements cannot have a scalable size");
78 auto CheckedProd =
79 checkedMulUnsigned(Size.getKnownMinValue(), *NumElements);
80 if (!CheckedProd)
81 return std::nullopt;
82 return TypeSize::getFixed(*CheckedProd);
83 }
84 return Size;
85}
86
87std::optional<TypeSize>
89 std::optional<TypeSize> Size = getAllocationSize(DL);
90 if (!Size)
91 return std::nullopt;
92 auto CheckedProd = checkedMulUnsigned(Size->getKnownMinValue(),
93 static_cast<TypeSize::ScalarTy>(8));
94 if (!CheckedProd)
95 return std::nullopt;
96 return TypeSize::get(*CheckedProd, Size->isScalable());
97}
98
99//===----------------------------------------------------------------------===//
100// SelectInst Class
101//===----------------------------------------------------------------------===//
102
103/// areInvalidOperands - Return a string if the specified operands are invalid
104/// for a select operation, otherwise return null.
105const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
106 if (Op1->getType() != Op2->getType())
107 return "both values to select must have same type";
108
109 if (Op1->getType()->isTokenTy())
110 return "select values cannot have token type";
111
112 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
113 // Vector select.
114 if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
115 return "vector select condition element type must be i1";
117 if (!ET)
118 return "selected values for vector select must be vectors";
119 if (ET->getElementCount() != VT->getElementCount())
120 return "vector select requires selected vectors to have "
121 "the same vector length as select condition";
122 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
123 return "select condition must be i1 or <n x i1>";
124 }
125 return nullptr;
126}
127
128//===----------------------------------------------------------------------===//
129// PHINode Class
130//===----------------------------------------------------------------------===//
131
132PHINode::PHINode(const PHINode &PN)
133 : Instruction(PN.getType(), Instruction::PHI, AllocMarker),
134 ReservedSpace(PN.getNumOperands()) {
137 std::copy(PN.op_begin(), PN.op_end(), op_begin());
138 copyIncomingBlocks(make_range(PN.block_begin(), PN.block_end()));
139 FMF = PN.FMF;
140}
141
142// removeIncomingValue - Remove an incoming value. This is useful if a
143// predecessor basic block is deleted.
144Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
145 Value *Removed = getIncomingValue(Idx);
146 // Swap with the end of the list.
147 unsigned Last = getNumOperands() - 1;
148 if (Idx != Last) {
151 }
152
153 // Nuke the last value.
154 Op<-1>().set(nullptr);
156
157 // If the PHI node is dead, because it has zero entries, nuke it now.
158 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
159 // If anyone is using this PHI, make them use a dummy value instead...
162 }
163 return Removed;
164}
165
166void PHINode::removeIncomingValueIf(function_ref<bool(unsigned)> Predicate,
167 bool DeletePHIIfEmpty) {
168 unsigned NumOps = getNumIncomingValues();
169
170 // Loop backwards in case the predicate is purely index based.
171 for (unsigned Idx = NumOps; Idx-- > 0;) {
172 if (Predicate(Idx)) {
173 unsigned LastIdx = NumOps - 1;
174 if (Idx != LastIdx) {
175 setIncomingValue(Idx, getIncomingValue(LastIdx));
176 setIncomingBlock(Idx, getIncomingBlock(LastIdx));
177 }
178 getOperandUse(LastIdx).set(nullptr);
179 NumOps--;
180 }
181 }
182
184
185 // If the PHI node is dead, because it has zero entries, nuke it now.
186 if (getNumOperands() == 0 && DeletePHIIfEmpty) {
187 // If anyone is using this PHI, make them use a dummy value instead...
190 }
191}
192
193/// growOperands - grow operands - This grows the operand list in response
194/// to a push_back style of operation. This grows the number of ops by 1.5
195/// times.
196///
197void PHINode::growOperands() {
198 unsigned e = getNumOperands();
199 unsigned NumOps = e + e / 2;
200 if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common.
201
202 ReservedSpace = NumOps;
203 growHungoffUses(ReservedSpace, /*WithExtraValues=*/true);
204}
205
206/// hasConstantValue - If the specified PHI node always merges together the same
207/// value, return the value, otherwise return null.
209 // Exploit the fact that phi nodes always have at least one entry.
210 Value *ConstantValue = getIncomingValue(0);
211 for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i)
212 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) {
213 if (ConstantValue != this)
214 return nullptr; // Incoming values not all the same.
215 // The case where the first value is this PHI.
216 ConstantValue = getIncomingValue(i);
217 }
218 if (ConstantValue == this)
219 return PoisonValue::get(getType());
220 return ConstantValue;
221}
222
223/// hasConstantOrUndefValue - Whether the specified PHI node always merges
224/// together the same value, assuming that undefs result in the same value as
225/// non-undefs.
226/// Unlike \ref hasConstantValue, this does not return a value because the
227/// unique non-undef incoming value need not dominate the PHI node.
229 Value *ConstantValue = nullptr;
230 for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i) {
231 Value *Incoming = getIncomingValue(i);
232 if (Incoming != this && !isa<UndefValue>(Incoming)) {
233 if (ConstantValue && ConstantValue != Incoming)
234 return false;
235 ConstantValue = Incoming;
236 }
237 }
238 return true;
239}
240
241//===----------------------------------------------------------------------===//
242// LandingPadInst Implementation
243//===----------------------------------------------------------------------===//
244
245LandingPadInst::LandingPadInst(Type *RetTy, unsigned NumReservedValues,
246 const Twine &NameStr,
247 InsertPosition InsertBefore)
248 : Instruction(RetTy, Instruction::LandingPad, AllocMarker, InsertBefore) {
249 init(NumReservedValues, NameStr);
250}
251
252LandingPadInst::LandingPadInst(const LandingPadInst &LP)
253 : Instruction(LP.getType(), Instruction::LandingPad, AllocMarker),
254 ReservedSpace(LP.getNumOperands()) {
257 Use *OL = getOperandList();
258 const Use *InOL = LP.getOperandList();
259 for (unsigned I = 0, E = ReservedSpace; I != E; ++I)
260 OL[I] = InOL[I];
261
262 setCleanup(LP.isCleanup());
263}
264
265LandingPadInst *LandingPadInst::Create(Type *RetTy, unsigned NumReservedClauses,
266 const Twine &NameStr,
267 InsertPosition InsertBefore) {
268 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore);
269}
270
271void LandingPadInst::init(unsigned NumReservedValues, const Twine &NameStr) {
272 ReservedSpace = NumReservedValues;
274 allocHungoffUses(ReservedSpace);
275 setName(NameStr);
276 setCleanup(false);
277}
278
279/// growOperands - grow operands - This grows the operand list in response to a
280/// push_back style of operation. This grows the number of ops by 2 times.
281void LandingPadInst::growOperands(unsigned Size) {
282 unsigned e = getNumOperands();
283 if (ReservedSpace >= e + Size) return;
284 ReservedSpace = (std::max(e, 1U) + Size / 2) * 2;
285 growHungoffUses(ReservedSpace);
286}
287
289 unsigned OpNo = getNumOperands();
290 growOperands(1);
291 assert(OpNo < ReservedSpace && "Growing didn't work!");
293 getOperandList()[OpNo] = Val;
294}
295
296//===----------------------------------------------------------------------===//
297// CallBase Implementation
298//===----------------------------------------------------------------------===//
299
301 InsertPosition InsertPt) {
302 switch (CB->getOpcode()) {
303 case Instruction::Call:
304 return CallInst::Create(cast<CallInst>(CB), Bundles, InsertPt);
305 case Instruction::Invoke:
306 return InvokeInst::Create(cast<InvokeInst>(CB), Bundles, InsertPt);
307 case Instruction::CallBr:
308 return CallBrInst::Create(cast<CallBrInst>(CB), Bundles, InsertPt);
309 default:
310 llvm_unreachable("Unknown CallBase sub-class!");
311 }
312}
313
315 InsertPosition InsertPt) {
317 for (unsigned i = 0, e = CI->getNumOperandBundles(); i < e; ++i) {
318 auto ChildOB = CI->getOperandBundleAt(i);
319 if (ChildOB.getTagName() != OpB.getTag())
320 OpDefs.emplace_back(ChildOB);
321 }
322 OpDefs.emplace_back(OpB);
323 return CallBase::Create(CI, OpDefs, InsertPt);
324}
325
327
329 assert(getOpcode() == Instruction::CallBr && "Unexpected opcode!");
330 return cast<CallBrInst>(this)->getNumIndirectDests() + 1;
331}
332
334 const Value *V = getCalledOperand();
335 if (isa<Function>(V) || isa<Constant>(V))
336 return false;
337 return !isInlineAsm();
338}
339
340/// Tests if this call site must be tail call optimized. Only a CallInst can
341/// be tail call optimized.
343 if (auto *CI = dyn_cast<CallInst>(this))
344 return CI->isMustTailCall();
345 return false;
346}
347
348/// Tests if this call site is marked as a tail call.
350 if (auto *CI = dyn_cast<CallInst>(this))
351 return CI->isTailCall();
352 return false;
353}
354
357 return F->getIntrinsicID();
359}
360
362 FPClassTest Mask = Attrs.getRetNoFPClass();
363
364 if (const Function *F = getCalledFunction())
365 Mask |= F->getAttributes().getRetNoFPClass();
366 return Mask;
367}
368
370 FPClassTest Mask = Attrs.getParamNoFPClass(i);
371
372 if (const Function *F = getCalledFunction())
373 Mask |= F->getAttributes().getParamNoFPClass(i);
374 return Mask;
375}
376
377std::optional<ConstantRange> CallBase::getRange() const {
378 Attribute CallAttr = Attrs.getRetAttr(Attribute::Range);
380 if (const Function *F = getCalledFunction())
381 FnAttr = F->getRetAttribute(Attribute::Range);
382
383 if (CallAttr.isValid() && FnAttr.isValid())
384 return CallAttr.getRange().intersectWith(FnAttr.getRange());
385 if (CallAttr.isValid())
386 return CallAttr.getRange();
387 if (FnAttr.isValid())
388 return FnAttr.getRange();
389 return std::nullopt;
390}
391
393 if (hasRetAttr(Attribute::NonNull))
394 return true;
395
396 if (getRetDereferenceableBytes() > 0 &&
398 return true;
399
400 return false;
401}
402
404 unsigned Index;
405
406 if (Attrs.hasAttrSomewhere(Kind, &Index))
407 return getArgOperand(Index - AttributeList::FirstArgIndex);
408 if (const Function *F = getCalledFunction())
409 if (F->getAttributes().hasAttrSomewhere(Kind, &Index))
410 return getArgOperand(Index - AttributeList::FirstArgIndex);
411
412 return nullptr;
413}
414
415/// Determine whether the argument or parameter has the given attribute.
416bool CallBase::paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const {
417 assert(ArgNo < arg_size() && "Param index out of bounds!");
418
419 if (Attrs.hasParamAttr(ArgNo, Kind))
420 return true;
421
422 const Function *F = getCalledFunction();
423 if (!F)
424 return false;
425
426 if (!F->getAttributes().hasParamAttr(ArgNo, Kind))
427 return false;
428
429 // Take into account mod/ref by operand bundles.
430 switch (Kind) {
431 case Attribute::ReadNone:
433 case Attribute::ReadOnly:
435 case Attribute::WriteOnly:
436 return !hasReadingOperandBundles();
437 default:
438 return true;
439 }
440}
441
443 bool AllowUndefOrPoison) const {
445 "Argument must be a pointer");
446 if (paramHasAttr(ArgNo, Attribute::NonNull) &&
447 (AllowUndefOrPoison || paramHasAttr(ArgNo, Attribute::NoUndef)))
448 return true;
449
450 if (paramHasAttr(ArgNo, Attribute::Dereferenceable) &&
452 getCaller(),
454 return true;
455
456 return false;
457}
458
459bool CallBase::hasFnAttrOnCalledFunction(Attribute::AttrKind Kind) const {
461 return F->getAttributes().hasFnAttr(Kind);
462
463 return false;
464}
465
466bool CallBase::hasFnAttrOnCalledFunction(StringRef Kind) const {
468 return F->getAttributes().hasFnAttr(Kind);
469
470 return false;
471}
472
473template <typename AK>
474Attribute CallBase::getFnAttrOnCalledFunction(AK Kind) const {
475 if constexpr (std::is_same_v<AK, Attribute::AttrKind>) {
476 // getMemoryEffects() correctly combines memory effects from the call-site,
477 // operand bundles and function.
478 assert(Kind != Attribute::Memory && "Use getMemoryEffects() instead");
479 }
480
482 return F->getAttributes().getFnAttr(Kind);
483
484 return Attribute();
485}
486
487template LLVM_ABI Attribute
488CallBase::getFnAttrOnCalledFunction(Attribute::AttrKind Kind) const;
489template LLVM_ABI Attribute
490CallBase::getFnAttrOnCalledFunction(StringRef Kind) const;
491
492template <typename AK>
493Attribute CallBase::getParamAttrOnCalledFunction(unsigned ArgNo,
494 AK Kind) const {
496
497 if (auto *F = dyn_cast<Function>(V))
498 return F->getAttributes().getParamAttr(ArgNo, Kind);
499
500 return Attribute();
501}
502template LLVM_ABI Attribute CallBase::getParamAttrOnCalledFunction(
503 unsigned ArgNo, Attribute::AttrKind Kind) const;
504template LLVM_ABI Attribute
505CallBase::getParamAttrOnCalledFunction(unsigned ArgNo, StringRef Kind) const;
506
509 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i)
511}
512
515 const unsigned BeginIndex) {
516 auto It = op_begin() + BeginIndex;
517 for (auto &B : Bundles)
518 It = std::copy(B.input_begin(), B.input_end(), It);
519
520 auto *ContextImpl = getContext().pImpl;
521 auto BI = Bundles.begin();
522 unsigned CurrentIndex = BeginIndex;
523
524 for (auto &BOI : bundle_op_infos()) {
525 assert(BI != Bundles.end() && "Incorrect allocation?");
526
527 BOI.Tag = ContextImpl->getOrInsertBundleTag(BI->getTag());
528 BOI.Begin = CurrentIndex;
529 BOI.End = CurrentIndex + BI->input_size();
530 CurrentIndex = BOI.End;
531 BI++;
532 }
533
534 assert(BI == Bundles.end() && "Incorrect allocation?");
535
536 return It;
537}
538
540 /// When there isn't many bundles, we do a simple linear search.
541 /// Else fallback to a binary-search that use the fact that bundles usually
542 /// have similar number of argument to get faster convergence.
544 for (auto &BOI : bundle_op_infos())
545 if (BOI.Begin <= OpIdx && OpIdx < BOI.End)
546 return BOI;
547
548 llvm_unreachable("Did not find operand bundle for operand!");
549 }
550
551 assert(OpIdx >= arg_size() && "the Idx is not in the operand bundles");
553 OpIdx < std::prev(bundle_op_info_end())->End &&
554 "The Idx isn't in the operand bundle");
555
556 /// We need a decimal number below and to prevent using floating point numbers
557 /// we use an intergal value multiplied by this constant.
558 constexpr unsigned NumberScaling = 1024;
559
562 bundle_op_iterator Current = Begin;
563
564 while (Begin != End) {
565 unsigned ScaledOperandPerBundle =
566 NumberScaling * (std::prev(End)->End - Begin->Begin) / (End - Begin);
567 Current = Begin + (((OpIdx - Begin->Begin) * NumberScaling) /
568 ScaledOperandPerBundle);
569 if (Current >= End)
570 Current = std::prev(End);
571 assert(Current < End && Current >= Begin &&
572 "the operand bundle doesn't cover every value in the range");
573 if (OpIdx >= Current->Begin && OpIdx < Current->End)
574 break;
575 if (OpIdx >= Current->End)
576 Begin = Current + 1;
577 else
578 End = Current;
579 }
580
581 assert(OpIdx >= Current->Begin && OpIdx < Current->End &&
582 "the operand bundle doesn't cover every value in the range");
583 return *Current;
584}
585
588 InsertPosition InsertPt) {
589 if (CB->getOperandBundle(ID))
590 return CB;
591
593 CB->getOperandBundlesAsDefs(Bundles);
594 Bundles.push_back(OB);
595 return Create(CB, Bundles, InsertPt);
596}
597
599 InsertPosition InsertPt) {
601 bool CreateNew = false;
602
603 for (unsigned I = 0, E = CB->getNumOperandBundles(); I != E; ++I) {
604 auto Bundle = CB->getOperandBundleAt(I);
605 if (Bundle.getTagID() == ID) {
606 CreateNew = true;
607 continue;
608 }
609 Bundles.emplace_back(Bundle);
610 }
611
612 return CreateNew ? Create(CB, Bundles, InsertPt) : CB;
613}
614
616 InsertPosition InsertPt) {
617 auto OpBundleCount = CB->getNumOperandBundles();
618 assert(Offset < OpBundleCount &&
619 "Trying to remove non-existant operand bundle");
621 Bundles.reserve(OpBundleCount - 1);
622 size_t I = 0;
623 for (; I != Offset; ++I)
624 Bundles.emplace_back(CB->getOperandBundleAt(I));
625 ++I;
626 for (; I != OpBundleCount; ++I)
627 Bundles.emplace_back(CB->getOperandBundleAt(I));
628 return Create(CB, Bundles, InsertPt);
629}
630
632 // Implementation note: this is a conservative implementation of operand
633 // bundle semantics, where *any* non-assume operand bundle (other than
634 // ptrauth) forces a callsite to be at least readonly.
639 getIntrinsicID() != Intrinsic::assume;
640}
641
650
652 MemoryEffects ME = getAttributes().getMemoryEffects();
653 if (auto *Fn = dyn_cast<Function>(getCalledOperand())) {
654 MemoryEffects FnME = Fn->getMemoryEffects();
655 if (hasOperandBundles()) {
656 // TODO: Add a method to get memory effects for operand bundles instead.
658 FnME |= MemoryEffects::readOnly();
660 FnME |= MemoryEffects::writeOnly();
661 }
662 if (isVolatile()) {
663 // Volatile operations also access inaccessible memory.
665 }
666 ME &= FnME;
667 }
668 return ME;
669}
673
674/// Determine if the function does not access memory.
681
682/// Determine if the function does not access or only reads memory.
689
690/// Determine if the function does not access or only writes memory.
697
698/// Determine if the call can access memmory only using pointers based
699/// on its arguments.
706
707/// Determine if the function may only access memory that is
708/// inaccessible from the IR.
715
716/// Determine if the function may only access memory that is
717/// either inaccessible from the IR or pointed to by its arguments.
725
727 if (OpNo < arg_size()) {
728 // If the argument is passed byval, the callee does not have access to the
729 // original pointer and thus cannot capture it.
730 if (isByValArgument(OpNo))
731 return CaptureInfo::none();
732
734 if (auto *Fn = dyn_cast<Function>(getCalledOperand()))
735 CI &= Fn->getAttributes().getParamAttrs(OpNo).getCaptureInfo();
736 return CI;
737 }
738
739 // Bundles on assumes are captures(none).
740 if (getIntrinsicID() == Intrinsic::assume)
741 return CaptureInfo::none();
742
743 // deopt operand bundles are captures(none)
744 auto &BOI = getBundleOpInfoForOperand(OpNo);
745 auto OBU = operandBundleFromBundleOpInfo(BOI);
746 return OBU.isDeoptOperandBundle() ? CaptureInfo::none() : CaptureInfo::all();
747}
748
750 for (unsigned I = 0, E = arg_size(); I < E; ++I) {
752 continue;
753
755 if (auto *Fn = dyn_cast<Function>(getCalledOperand()))
756 CI &= Fn->getAttributes().getParamAttrs(I).getCaptureInfo();
758 return true;
759 }
760 return false;
761}
762
763//===----------------------------------------------------------------------===//
764// CallInst Implementation
765//===----------------------------------------------------------------------===//
766
767void CallInst::init(FunctionType *FTy, Value *Func, ArrayRef<Value *> Args,
768 ArrayRef<OperandBundleDef> Bundles, const Twine &NameStr) {
769 this->FTy = FTy;
770 assert(getNumOperands() == Args.size() + CountBundleInputs(Bundles) + 1 &&
771 "NumOperands not set up?");
772
773#ifndef NDEBUG
774 assert((Args.size() == FTy->getNumParams() ||
775 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
776 "Calling a function with bad signature!");
777
778 for (unsigned i = 0; i != Args.size(); ++i)
779 assert((i >= FTy->getNumParams() ||
780 FTy->getParamType(i) == Args[i]->getType()) &&
781 "Calling a function with a bad signature!");
782#endif
783
784 // Set operands in order of their index to match use-list-order
785 // prediction.
786 llvm::copy(Args, op_begin());
787 setCalledOperand(Func);
788
789 auto It = populateBundleOperandInfos(Bundles, Args.size());
790 (void)It;
791 assert(It + 1 == op_end() && "Should add up!");
792
793 setName(NameStr);
794}
795
796void CallInst::init(FunctionType *FTy, Value *Func, const Twine &NameStr) {
797 this->FTy = FTy;
798 assert(getNumOperands() == 1 && "NumOperands not set up?");
799 setCalledOperand(Func);
800
801 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
802
803 setName(NameStr);
804}
805
806CallInst::CallInst(FunctionType *Ty, Value *Func, const Twine &Name,
807 AllocInfo AllocInfo, InsertPosition InsertBefore)
808 : CallBase(Ty->getReturnType(), Instruction::Call, AllocInfo,
809 InsertBefore) {
810 init(Ty, Func, Name);
811}
812
813CallInst::CallInst(const CallInst &CI, AllocInfo AllocInfo)
814 : CallBase(CI.Attrs, CI.FTy, CI.getType(), Instruction::Call, AllocInfo) {
816 "Wrong number of operands allocated");
817 setTailCallKind(CI.getTailCallKind());
819
820 std::copy(CI.op_begin(), CI.op_end(), op_begin());
821 std::copy(CI.bundle_op_info_begin(), CI.bundle_op_info_end(),
823 FMF = CI.FMF;
824}
825
827 InsertPosition InsertPt) {
828 std::vector<Value *> Args(CI->arg_begin(), CI->arg_end());
829
830 auto *NewCI = CallInst::Create(CI->getFunctionType(), CI->getCalledOperand(),
831 Args, OpB, CI->getName(), InsertPt);
832 NewCI->setTailCallKind(CI->getTailCallKind());
833 NewCI->setCallingConv(CI->getCallingConv());
834 NewCI->FMF = CI->FMF;
835 NewCI->setAttributes(CI->getAttributes());
836 NewCI->setDebugLoc(CI->getDebugLoc());
837 return NewCI;
838}
839
840// Update profile weight for call instruction by scaling it using the ratio
841// of S/T. The meaning of "branch_weights" meta data for call instruction is
842// transfered to represent call count.
844 if (T == 0) {
845 LLVM_DEBUG(dbgs() << "Attempting to update profile weights will result in "
846 "div by 0. Ignoring. Likely the function "
847 << getParent()->getParent()->getName()
848 << " has 0 entry count, and contains call instructions "
849 "with non-zero prof info.");
850 return;
851 }
852 scaleProfData(*this, S, T);
853}
854
855//===----------------------------------------------------------------------===//
856// InvokeInst Implementation
857//===----------------------------------------------------------------------===//
858
859void InvokeInst::init(FunctionType *FTy, Value *Fn, BasicBlock *IfNormal,
860 BasicBlock *IfException, ArrayRef<Value *> Args,
862 const Twine &NameStr) {
863 this->FTy = FTy;
864
866 ComputeNumOperands(Args.size(), CountBundleInputs(Bundles)) &&
867 "NumOperands not set up?");
868
869#ifndef NDEBUG
870 assert(((Args.size() == FTy->getNumParams()) ||
871 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
872 "Invoking a function with bad signature");
873
874 for (unsigned i = 0, e = Args.size(); i != e; i++)
875 assert((i >= FTy->getNumParams() ||
876 FTy->getParamType(i) == Args[i]->getType()) &&
877 "Invoking a function with a bad signature!");
878#endif
879
880 // Set operands in order of their index to match use-list-order
881 // prediction.
882 llvm::copy(Args, op_begin());
883 setNormalDest(IfNormal);
884 setUnwindDest(IfException);
886
887 auto It = populateBundleOperandInfos(Bundles, Args.size());
888 (void)It;
889 assert(It + 3 == op_end() && "Should add up!");
890
891 setName(NameStr);
892}
893
894InvokeInst::InvokeInst(const InvokeInst &II, AllocInfo AllocInfo)
895 : CallBase(II.Attrs, II.FTy, II.getType(), Instruction::Invoke, AllocInfo) {
896 assert(getNumOperands() == II.getNumOperands() &&
897 "Wrong number of operands allocated");
898 setCallingConv(II.getCallingConv());
899 std::copy(II.op_begin(), II.op_end(), op_begin());
900 std::copy(II.bundle_op_info_begin(), II.bundle_op_info_end(),
902 SubclassOptionalData = II.SubclassOptionalData;
903}
904
906 InsertPosition InsertPt) {
907 std::vector<Value *> Args(II->arg_begin(), II->arg_end());
908
909 auto *NewII = InvokeInst::Create(
910 II->getFunctionType(), II->getCalledOperand(), II->getNormalDest(),
911 II->getUnwindDest(), Args, OpB, II->getName(), InsertPt);
912 NewII->setCallingConv(II->getCallingConv());
913 NewII->SubclassOptionalData = II->SubclassOptionalData;
914 NewII->setAttributes(II->getAttributes());
915 NewII->setDebugLoc(II->getDebugLoc());
916 return NewII;
917}
918
920 return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHIIt());
921}
922
924 if (T == 0) {
925 LLVM_DEBUG(dbgs() << "Attempting to update profile weights will result in "
926 "div by 0. Ignoring. Likely the function "
927 << getParent()->getParent()->getName()
928 << " has 0 entry count, and contains call instructions "
929 "with non-zero prof info.");
930 return;
931 }
932 scaleProfData(*this, S, T);
933}
934
935//===----------------------------------------------------------------------===//
936// CallBrInst Implementation
937//===----------------------------------------------------------------------===//
938
939void CallBrInst::init(FunctionType *FTy, Value *Fn, BasicBlock *Fallthrough,
940 ArrayRef<BasicBlock *> IndirectDests,
943 const Twine &NameStr) {
944 this->FTy = FTy;
945
946 assert(getNumOperands() == ComputeNumOperands(Args.size(),
947 IndirectDests.size(),
948 CountBundleInputs(Bundles)) &&
949 "NumOperands not set up?");
950
951#ifndef NDEBUG
952 assert(((Args.size() == FTy->getNumParams()) ||
953 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
954 "Calling a function with bad signature");
955
956 for (unsigned i = 0, e = Args.size(); i != e; i++)
957 assert((i >= FTy->getNumParams() ||
958 FTy->getParamType(i) == Args[i]->getType()) &&
959 "Calling a function with a bad signature!");
960#endif
961
962 // Set operands in order of their index to match use-list-order
963 // prediction.
964 llvm::copy(Args, op_begin());
965 NumIndirectDests = IndirectDests.size();
966 setDefaultDest(Fallthrough);
967 for (unsigned i = 0; i != NumIndirectDests; ++i)
968 setIndirectDest(i, IndirectDests[i]);
970
971 auto It = populateBundleOperandInfos(Bundles, Args.size());
972 (void)It;
973 assert(It + 2 + IndirectDests.size() == op_end() && "Should add up!");
974
975 setName(NameStr);
976}
977
978CallBrInst::CallBrInst(const CallBrInst &CBI, AllocInfo AllocInfo)
979 : CallBase(CBI.Attrs, CBI.FTy, CBI.getType(), Instruction::CallBr,
980 AllocInfo) {
982 "Wrong number of operands allocated");
984 std::copy(CBI.op_begin(), CBI.op_end(), op_begin());
985 std::copy(CBI.bundle_op_info_begin(), CBI.bundle_op_info_end(),
988 NumIndirectDests = CBI.NumIndirectDests;
989}
990
991CallBrInst *CallBrInst::Create(CallBrInst *CBI, ArrayRef<OperandBundleDef> OpB,
992 InsertPosition InsertPt) {
993 std::vector<Value *> Args(CBI->arg_begin(), CBI->arg_end());
994
995 auto *NewCBI = CallBrInst::Create(
996 CBI->getFunctionType(), CBI->getCalledOperand(), CBI->getDefaultDest(),
997 CBI->getIndirectDests(), Args, OpB, CBI->getName(), InsertPt);
998 NewCBI->setCallingConv(CBI->getCallingConv());
999 NewCBI->SubclassOptionalData = CBI->SubclassOptionalData;
1000 NewCBI->setAttributes(CBI->getAttributes());
1001 NewCBI->setDebugLoc(CBI->getDebugLoc());
1002 NewCBI->NumIndirectDests = CBI->NumIndirectDests;
1003 return NewCBI;
1004}
1005
1006//===----------------------------------------------------------------------===//
1007// ReturnInst Implementation
1008//===----------------------------------------------------------------------===//
1009
1010ReturnInst::ReturnInst(const ReturnInst &RI, AllocInfo AllocInfo)
1011 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Ret,
1012 AllocInfo) {
1014 "Wrong number of operands allocated");
1015 if (RI.getNumOperands())
1016 Op<0>() = RI.Op<0>();
1018}
1019
1020ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, AllocInfo AllocInfo,
1021 InsertPosition InsertBefore)
1022 : Instruction(Type::getVoidTy(C), Instruction::Ret, AllocInfo,
1023 InsertBefore) {
1024 if (retVal)
1025 Op<0>() = retVal;
1026}
1027
1028//===----------------------------------------------------------------------===//
1029// ResumeInst Implementation
1030//===----------------------------------------------------------------------===//
1031
1032ResumeInst::ResumeInst(const ResumeInst &RI)
1033 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Resume,
1034 AllocMarker) {
1035 Op<0>() = RI.Op<0>();
1036}
1037
1038ResumeInst::ResumeInst(Value *Exn, InsertPosition InsertBefore)
1039 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
1040 AllocMarker, InsertBefore) {
1041 Op<0>() = Exn;
1042}
1043
1044//===----------------------------------------------------------------------===//
1045// CleanupReturnInst Implementation
1046//===----------------------------------------------------------------------===//
1047
1048CleanupReturnInst::CleanupReturnInst(const CleanupReturnInst &CRI,
1050 : Instruction(CRI.getType(), Instruction::CleanupRet, AllocInfo) {
1052 "Wrong number of operands allocated");
1053 setSubclassData<Instruction::OpaqueField>(
1055 Op<0>() = CRI.Op<0>();
1056 if (CRI.hasUnwindDest())
1057 Op<1>() = CRI.Op<1>();
1058}
1059
1060void CleanupReturnInst::init(Value *CleanupPad, BasicBlock *UnwindBB) {
1061 if (UnwindBB)
1062 setSubclassData<UnwindDestField>(true);
1063
1064 Op<0>() = CleanupPad;
1065 if (UnwindBB)
1066 Op<1>() = UnwindBB;
1067}
1068
1069CleanupReturnInst::CleanupReturnInst(Value *CleanupPad, BasicBlock *UnwindBB,
1071 InsertPosition InsertBefore)
1072 : Instruction(Type::getVoidTy(CleanupPad->getContext()),
1073 Instruction::CleanupRet, AllocInfo, InsertBefore) {
1074 init(CleanupPad, UnwindBB);
1075}
1076
1077//===----------------------------------------------------------------------===//
1078// CatchReturnInst Implementation
1079//===----------------------------------------------------------------------===//
1080void CatchReturnInst::init(Value *CatchPad, BasicBlock *BB) {
1081 Op<0>() = CatchPad;
1082 Op<1>() = BB;
1083}
1084
1085CatchReturnInst::CatchReturnInst(const CatchReturnInst &CRI)
1086 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet,
1087 AllocMarker) {
1088 Op<0>() = CRI.Op<0>();
1089 Op<1>() = CRI.Op<1>();
1090}
1091
1092CatchReturnInst::CatchReturnInst(Value *CatchPad, BasicBlock *BB,
1093 InsertPosition InsertBefore)
1094 : Instruction(Type::getVoidTy(BB->getContext()), Instruction::CatchRet,
1095 AllocMarker, InsertBefore) {
1096 init(CatchPad, BB);
1097}
1098
1099//===----------------------------------------------------------------------===//
1100// CatchSwitchInst Implementation
1101//===----------------------------------------------------------------------===//
1102
1103CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
1104 unsigned NumReservedValues,
1105 const Twine &NameStr,
1106 InsertPosition InsertBefore)
1107 : Instruction(ParentPad->getType(), Instruction::CatchSwitch, AllocMarker,
1108 InsertBefore) {
1109 if (UnwindDest)
1110 ++NumReservedValues;
1111 init(ParentPad, UnwindDest, NumReservedValues + 1);
1112 setName(NameStr);
1113}
1114
1115CatchSwitchInst::CatchSwitchInst(const CatchSwitchInst &CSI)
1116 : Instruction(CSI.getType(), Instruction::CatchSwitch, AllocMarker) {
1118 init(CSI.getParentPad(), CSI.getUnwindDest(), CSI.getNumOperands());
1119 setNumHungOffUseOperands(ReservedSpace);
1120 Use *OL = getOperandList();
1121 const Use *InOL = CSI.getOperandList();
1122 for (unsigned I = 1, E = ReservedSpace; I != E; ++I)
1123 OL[I] = InOL[I];
1124}
1125
1126void CatchSwitchInst::init(Value *ParentPad, BasicBlock *UnwindDest,
1127 unsigned NumReservedValues) {
1128 assert(ParentPad && NumReservedValues);
1129
1130 ReservedSpace = NumReservedValues;
1131 setNumHungOffUseOperands(UnwindDest ? 2 : 1);
1132 allocHungoffUses(ReservedSpace);
1133
1134 Op<0>() = ParentPad;
1135 if (UnwindDest) {
1137 setUnwindDest(UnwindDest);
1138 }
1139}
1140
1141/// growOperands - grow operands - This grows the operand list in response to a
1142/// push_back style of operation. This grows the number of ops by 2 times.
1143void CatchSwitchInst::growOperands(unsigned Size) {
1144 unsigned NumOperands = getNumOperands();
1145 assert(NumOperands >= 1);
1146 if (ReservedSpace >= NumOperands + Size)
1147 return;
1148 ReservedSpace = (NumOperands + Size / 2) * 2;
1149 growHungoffUses(ReservedSpace);
1150}
1151
1153 unsigned OpNo = getNumOperands();
1154 growOperands(1);
1155 assert(OpNo < ReservedSpace && "Growing didn't work!");
1157 getOperandList()[OpNo] = Handler;
1158}
1159
1161 // Move all subsequent handlers up one.
1162 Use *EndDst = op_end() - 1;
1163 for (Use *CurDst = HI.getCurrent(); CurDst != EndDst; ++CurDst)
1164 *CurDst = *(CurDst + 1);
1165 // Null out the last handler use.
1166 *EndDst = nullptr;
1167
1169}
1170
1171//===----------------------------------------------------------------------===//
1172// FuncletPadInst Implementation
1173//===----------------------------------------------------------------------===//
1174void FuncletPadInst::init(Value *ParentPad, ArrayRef<Value *> Args,
1175 const Twine &NameStr) {
1176 assert(getNumOperands() == 1 + Args.size() && "NumOperands not set up?");
1177 llvm::copy(Args, op_begin());
1178 setParentPad(ParentPad);
1179 setName(NameStr);
1180}
1181
1182FuncletPadInst::FuncletPadInst(const FuncletPadInst &FPI, AllocInfo AllocInfo)
1183 : Instruction(FPI.getType(), FPI.getOpcode(), AllocInfo) {
1185 "Wrong number of operands allocated");
1186 std::copy(FPI.op_begin(), FPI.op_end(), op_begin());
1188}
1189
1190FuncletPadInst::FuncletPadInst(Instruction::FuncletPadOps Op, Value *ParentPad,
1192 const Twine &NameStr,
1193 InsertPosition InsertBefore)
1194 : Instruction(ParentPad->getType(), Op, AllocInfo, InsertBefore) {
1195 init(ParentPad, Args, NameStr);
1196}
1197
1198//===----------------------------------------------------------------------===//
1199// UnreachableInst Implementation
1200//===----------------------------------------------------------------------===//
1201
1203 InsertPosition InsertBefore)
1204 : Instruction(Type::getVoidTy(Context), Instruction::Unreachable,
1205 AllocMarker, InsertBefore) {}
1206
1207//===----------------------------------------------------------------------===//
1208// UncondBrInst Implementation
1209//===----------------------------------------------------------------------===//
1210
1211// Suppress deprecation warnings from BranchInst.
1213
1214UncondBrInst::UncondBrInst(BasicBlock *Target, InsertPosition InsertBefore)
1215 : BranchInst(Type::getVoidTy(Target->getContext()), Instruction::UncondBr,
1216 AllocMarker, InsertBefore) {
1217 Op<-1>() = Target;
1218}
1219
1220UncondBrInst::UncondBrInst(const UncondBrInst &BI)
1221 : BranchInst(Type::getVoidTy(BI.getContext()), Instruction::UncondBr,
1222 AllocMarker) {
1223 Op<-1>() = BI.Op<-1>();
1224 SubclassOptionalData = BI.SubclassOptionalData;
1225}
1226
1227//===----------------------------------------------------------------------===//
1228// CondBrInst Implementation
1229//===----------------------------------------------------------------------===//
1230
1231void CondBrInst::AssertOK() {
1232 assert(getCondition()->getType()->isIntegerTy(1) &&
1233 "May only branch on boolean predicates!");
1234}
1235
1236CondBrInst::CondBrInst(Value *Cond, BasicBlock *IfTrue, BasicBlock *IfFalse,
1237 InsertPosition InsertBefore)
1238 : BranchInst(Type::getVoidTy(IfTrue->getContext()), Instruction::CondBr,
1239 AllocMarker, InsertBefore) {
1240 // Assign in order of operand index to make use-list order predictable.
1241 Op<-3>() = Cond;
1242 Op<-2>() = IfTrue;
1243 Op<-1>() = IfFalse;
1244#ifndef NDEBUG
1245 AssertOK();
1246#endif
1247}
1248
1249CondBrInst::CondBrInst(const CondBrInst &BI)
1250 : BranchInst(Type::getVoidTy(BI.getContext()), Instruction::CondBr,
1251 AllocMarker) {
1252 // Assign in order of operand index to make use-list order predictable.
1253 Op<-3>() = BI.Op<-3>();
1254 Op<-2>() = BI.Op<-2>();
1255 Op<-1>() = BI.Op<-1>();
1256 SubclassOptionalData = BI.SubclassOptionalData;
1257}
1258
1260 Op<-1>().swap(Op<-2>());
1261
1262 // Update profile metadata if present and it matches our structural
1263 // expectations.
1264 swapProfMetadata();
1265}
1266
1267// Suppress deprecation warnings from BranchInst.
1269
1270//===----------------------------------------------------------------------===//
1271// AllocaInst Implementation
1272//===----------------------------------------------------------------------===//
1273
1274static Value *getAISize(LLVMContext &Context, Value *Amt) {
1275 if (!Amt)
1276 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
1277 else {
1278 assert(!isa<BasicBlock>(Amt) &&
1279 "Passed basic block into allocation size parameter! Use other ctor");
1280 assert(Amt->getType()->isIntegerTy() &&
1281 "Allocation array size is not an integer!");
1282 }
1283 return Amt;
1284}
1285
1287 assert(Pos.isValid() &&
1288 "Insertion position cannot be null when alignment not provided!");
1289 BasicBlock *BB = Pos.getBasicBlock();
1290 assert(BB->getParent() &&
1291 "BB must be in a Function when alignment not provided!");
1292 const DataLayout &DL = BB->getDataLayout();
1293 return DL.getPrefTypeAlign(Ty);
1294}
1295
1296AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, const Twine &Name,
1297 InsertPosition InsertBefore)
1298 : AllocaInst(Ty, AddrSpace, /*ArraySize=*/nullptr, Name, InsertBefore) {}
1299
1300AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1301 const Twine &Name, InsertPosition InsertBefore)
1302 : AllocaInst(Ty, AddrSpace, ArraySize,
1303 computeAllocaDefaultAlign(Ty, InsertBefore), Name,
1304 InsertBefore) {}
1305
1306AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1307 Align Align, const Twine &Name,
1308 InsertPosition InsertBefore)
1309 : UnaryInstruction(PointerType::get(Ty->getContext(), AddrSpace), Alloca,
1310 getAISize(Ty->getContext(), ArraySize), InsertBefore),
1311 AllocatedType(Ty) {
1313 assert(!Ty->isVoidTy() && "Cannot allocate void!");
1314 setName(Name);
1315}
1316
1319 return !CI->isOne();
1320 return true;
1321}
1322
1323/// isStaticAlloca - Return true if this alloca is in the entry block of the
1324/// function and is a constant size. If so, the code generator will fold it
1325/// into the prolog/epilog code, so it is basically free.
1327 // Must be constant size.
1328 if (!isa<ConstantInt>(getArraySize())) return false;
1329
1330 // Must be in the entry block.
1331 const BasicBlock *Parent = getParent();
1332 return Parent->isEntryBlock() && !isUsedWithInAlloca();
1333}
1334
1335//===----------------------------------------------------------------------===//
1336// LoadInst Implementation
1337//===----------------------------------------------------------------------===//
1338
1339void LoadInst::AssertOK() {
1341 "Ptr must have pointer type.");
1342}
1343
1345 assert(Pos.isValid() &&
1346 "Insertion position cannot be null when alignment not provided!");
1347 BasicBlock *BB = Pos.getBasicBlock();
1348 assert(BB->getParent() &&
1349 "BB must be in a Function when alignment not provided!");
1350 const DataLayout &DL = BB->getDataLayout();
1351 return DL.getABITypeAlign(Ty);
1352}
1353
1354LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name,
1355 InsertPosition InsertBef)
1356 : LoadInst(Ty, Ptr, Name, /*isVolatile=*/false, InsertBef) {}
1357
1358LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1359 InsertPosition InsertBef)
1360 : LoadInst(Ty, Ptr, Name, isVolatile,
1361 computeLoadStoreDefaultAlign(Ty, InsertBef), InsertBef) {}
1362
1363LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1364 Align Align, InsertPosition InsertBef)
1365 : LoadInst(Ty, Ptr, Name, isVolatile, Align, AtomicOrdering::NotAtomic,
1366 SyncScope::System, InsertBef) {}
1367
1368LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name,
1369 const LoadStoreInstProperties &Props,
1370 InsertPosition InsertBef)
1371 : LoadInst(Ty, Ptr, Name, Props.IsVolatile, Props.Alignment, Props.Ordering,
1372 Props.SSID, InsertBef) {}
1373
1374LoadInst::LoadInst(Type *Ty, Value *Ptr, const Twine &Name, bool isVolatile,
1376 InsertPosition InsertBef)
1377 : UnaryInstruction(Ty, Load, Ptr, InsertBef) {
1380 setAtomic(Order, SSID);
1381 AssertOK();
1382 setName(Name);
1383}
1384
1385//===----------------------------------------------------------------------===//
1386// StoreInst Implementation
1387//===----------------------------------------------------------------------===//
1388
1389void StoreInst::AssertOK() {
1390 assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
1392 "Ptr must have pointer type!");
1393}
1394
1396 : StoreInst(val, addr, /*isVolatile=*/false, InsertBefore) {}
1397
1399 InsertPosition InsertBefore)
1400 : StoreInst(val, addr, isVolatile,
1401 computeLoadStoreDefaultAlign(val->getType(), InsertBefore),
1402 InsertBefore) {}
1403
1405 InsertPosition InsertBefore)
1407 SyncScope::System, InsertBefore) {}
1408
1410 const LoadStoreInstProperties &Props,
1411 InsertPosition InsertBefore)
1412 : StoreInst(Val, Ptr, Props.IsVolatile, Props.Alignment, Props.Ordering,
1413 Props.SSID, InsertBefore) {}
1414
1416 AtomicOrdering Order, SyncScope::ID SSID,
1417 InsertPosition InsertBefore)
1418 : Instruction(Type::getVoidTy(val->getContext()), Store, AllocMarker,
1419 InsertBefore) {
1420 Op<0>() = val;
1421 Op<1>() = addr;
1424 setAtomic(Order, SSID);
1425 AssertOK();
1426}
1427
1428//===----------------------------------------------------------------------===//
1429// AtomicCmpXchgInst Implementation
1430//===----------------------------------------------------------------------===//
1431
1432void AtomicCmpXchgInst::Init(Value *Ptr, Value *Cmp, Value *NewVal,
1433 Align Alignment, AtomicOrdering SuccessOrdering,
1434 AtomicOrdering FailureOrdering,
1435 SyncScope::ID SSID) {
1436 Op<0>() = Ptr;
1437 Op<1>() = Cmp;
1438 Op<2>() = NewVal;
1439 setSuccessOrdering(SuccessOrdering);
1440 setFailureOrdering(FailureOrdering);
1441 setSyncScopeID(SSID);
1442 setAlignment(Alignment);
1443
1444 assert(getOperand(0) && getOperand(1) && getOperand(2) &&
1445 "All operands must be non-null!");
1447 "Ptr must have pointer type!");
1448 assert(getOperand(1)->getType() == getOperand(2)->getType() &&
1449 "Cmp type and NewVal type must be same!");
1450}
1451
1453 Align Alignment,
1454 AtomicOrdering SuccessOrdering,
1455 AtomicOrdering FailureOrdering,
1456 SyncScope::ID SSID,
1457 InsertPosition InsertBefore)
1458 : Instruction(
1459 StructType::get(Cmp->getType(), Type::getInt1Ty(Cmp->getContext())),
1460 AtomicCmpXchg, AllocMarker, InsertBefore) {
1461 Init(Ptr, Cmp, NewVal, Alignment, SuccessOrdering, FailureOrdering, SSID);
1462}
1463
1464//===----------------------------------------------------------------------===//
1465// AtomicRMWInst Implementation
1466//===----------------------------------------------------------------------===//
1467
1468void AtomicRMWInst::Init(BinOp Operation, Value *Ptr, Value *Val,
1469 Align Alignment, AtomicOrdering Ordering,
1470 SyncScope::ID SSID, bool Elementwise) {
1471 assert(Ordering != AtomicOrdering::NotAtomic &&
1472 "atomicrmw instructions can only be atomic.");
1473 assert(Ordering != AtomicOrdering::Unordered &&
1474 "atomicrmw instructions cannot be unordered.");
1475 Op<0>() = Ptr;
1476 Op<1>() = Val;
1478 setOrdering(Ordering);
1479 setSyncScopeID(SSID);
1480 setElementwise(Elementwise);
1481 setAlignment(Alignment);
1482
1483 assert(getOperand(0) && getOperand(1) && "All operands must be non-null!");
1485 "Ptr must have pointer type!");
1486 assert(Ordering != AtomicOrdering::NotAtomic &&
1487 "AtomicRMW instructions must be atomic!");
1488}
1489
1491 Align Alignment, AtomicOrdering Ordering,
1492 SyncScope::ID SSID, bool Elementwise,
1493 InsertPosition InsertBefore)
1494 : Instruction(Val->getType(), AtomicRMW, AllocMarker, InsertBefore) {
1495 Init(Operation, Ptr, Val, Alignment, Ordering, SSID, Elementwise);
1496}
1497
1499 switch (Op) {
1501 return "xchg";
1502 case AtomicRMWInst::Add:
1503 return "add";
1504 case AtomicRMWInst::Sub:
1505 return "sub";
1506 case AtomicRMWInst::And:
1507 return "and";
1509 return "nand";
1510 case AtomicRMWInst::Or:
1511 return "or";
1512 case AtomicRMWInst::Xor:
1513 return "xor";
1514 case AtomicRMWInst::Max:
1515 return "max";
1516 case AtomicRMWInst::Min:
1517 return "min";
1519 return "umax";
1521 return "umin";
1523 return "fadd";
1525 return "fsub";
1527 return "fmax";
1529 return "fmin";
1531 return "fmaximum";
1533 return "fminimum";
1535 return "fmaximumnum";
1537 return "fminimumnum";
1539 return "uinc_wrap";
1541 return "udec_wrap";
1543 return "usub_cond";
1545 return "usub_sat";
1547 return "<invalid operation>";
1548 }
1549
1550 llvm_unreachable("invalid atomicrmw operation");
1551}
1552
1553//===----------------------------------------------------------------------===//
1554// FenceInst Implementation
1555//===----------------------------------------------------------------------===//
1556
1558 SyncScope::ID SSID, InsertPosition InsertBefore)
1559 : Instruction(Type::getVoidTy(C), Fence, AllocMarker, InsertBefore) {
1560 setOrdering(Ordering);
1561 setSyncScopeID(SSID);
1562}
1563
1564//===----------------------------------------------------------------------===//
1565// GetElementPtrInst Implementation
1566//===----------------------------------------------------------------------===//
1567
1568void GetElementPtrInst::init(Value *Ptr, ArrayRef<Value *> IdxList,
1569 const Twine &Name) {
1570 assert(getNumOperands() == 1 + IdxList.size() &&
1571 "NumOperands not initialized?");
1572 Op<0>() = Ptr;
1573 llvm::copy(IdxList, op_begin() + 1);
1574 setName(Name);
1575}
1576
1577GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI,
1579 : Instruction(GEPI.getType(), GetElementPtr, AllocInfo),
1580 SourceElementType(GEPI.SourceElementType),
1581 ResultElementType(GEPI.ResultElementType) {
1582 assert(getNumOperands() == GEPI.getNumOperands() &&
1583 "Wrong number of operands allocated");
1584 std::copy(GEPI.op_begin(), GEPI.op_end(), op_begin());
1586}
1587
1589 if (auto *Struct = dyn_cast<StructType>(Ty)) {
1590 if (!Struct->indexValid(Idx))
1591 return nullptr;
1592 return Struct->getTypeAtIndex(Idx);
1593 }
1594 if (!Idx->getType()->isIntOrIntVectorTy())
1595 return nullptr;
1596 if (auto *Array = dyn_cast<ArrayType>(Ty))
1597 return Array->getElementType();
1598 if (auto *Vector = dyn_cast<VectorType>(Ty))
1599 return Vector->getElementType();
1600 return nullptr;
1601}
1602
1604 if (auto *Struct = dyn_cast<StructType>(Ty)) {
1605 if (Idx >= Struct->getNumElements())
1606 return nullptr;
1607 return Struct->getElementType(Idx);
1608 }
1609 if (auto *Array = dyn_cast<ArrayType>(Ty))
1610 return Array->getElementType();
1611 if (auto *Vector = dyn_cast<VectorType>(Ty))
1612 return Vector->getElementType();
1613 return nullptr;
1614}
1615
1616template <typename IndexTy>
1618 if (IdxList.empty())
1619 return Ty;
1620 for (IndexTy V : IdxList.slice(1)) {
1622 if (!Ty)
1623 return Ty;
1624 }
1625 return Ty;
1626}
1627
1631
1633 ArrayRef<Constant *> IdxList) {
1634 return getIndexedTypeInternal(Ty, IdxList);
1635}
1636
1640
1641/// hasAllZeroIndices - Return true if all of the indices of this GEP are
1642/// zeros. If so, the result pointer and the first operand have the same
1643/// value, just potentially different types.
1645 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1647 if (!CI->isZero()) return false;
1648 } else {
1649 return false;
1650 }
1651 }
1652 return true;
1653}
1654
1655/// hasAllConstantIndices - Return true if all of the indices of this GEP are
1656/// constant integers. If so, the result pointer and the first operand have
1657/// a constant offset between them.
1659 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1661 return false;
1662 }
1663 return true;
1664}
1665
1669
1671 GEPNoWrapFlags NW = cast<GEPOperator>(this)->getNoWrapFlags();
1672 if (B)
1674 else
1675 NW = NW.withoutInBounds();
1676 setNoWrapFlags(NW);
1677}
1678
1680 return cast<GEPOperator>(this)->getNoWrapFlags();
1681}
1682
1684 return cast<GEPOperator>(this)->isInBounds();
1685}
1686
1688 return cast<GEPOperator>(this)->hasNoUnsignedSignedWrap();
1689}
1690
1692 return cast<GEPOperator>(this)->hasNoUnsignedWrap();
1693}
1694
1696 APInt &Offset) const {
1697 // Delegate to the generic GEPOperator implementation.
1698 return cast<GEPOperator>(this)->accumulateConstantOffset(DL, Offset);
1699}
1700
1702 const DataLayout &DL, unsigned BitWidth,
1703 SmallMapVector<Value *, APInt, 4> &VariableOffsets,
1704 APInt &ConstantOffset) const {
1705 // Delegate to the generic GEPOperator implementation.
1706 return cast<GEPOperator>(this)->collectOffset(DL, BitWidth, VariableOffsets,
1707 ConstantOffset);
1708}
1709
1710//===----------------------------------------------------------------------===//
1711// ExtractElementInst Implementation
1712//===----------------------------------------------------------------------===//
1713
1714ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
1715 const Twine &Name,
1716 InsertPosition InsertBef)
1717 : Instruction(cast<VectorType>(Val->getType())->getElementType(),
1718 ExtractElement, AllocMarker, InsertBef) {
1719 assert(isValidOperands(Val, Index) &&
1720 "Invalid extractelement instruction operands!");
1721 Op<0>() = Val;
1722 Op<1>() = Index;
1723 setName(Name);
1724}
1725
1726bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
1727 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy())
1728 return false;
1729 return true;
1730}
1731
1732//===----------------------------------------------------------------------===//
1733// InsertElementInst Implementation
1734//===----------------------------------------------------------------------===//
1735
1736InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
1737 const Twine &Name,
1738 InsertPosition InsertBef)
1739 : Instruction(Vec->getType(), InsertElement, AllocMarker, InsertBef) {
1740 assert(isValidOperands(Vec, Elt, Index) &&
1741 "Invalid insertelement instruction operands!");
1742 Op<0>() = Vec;
1743 Op<1>() = Elt;
1744 Op<2>() = Index;
1745 setName(Name);
1746}
1747
1749 const Value *Index) {
1750 if (!Vec->getType()->isVectorTy())
1751 return false; // First operand of insertelement must be vector type.
1752
1753 if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
1754 return false;// Second operand of insertelement must be vector element type.
1755
1756 if (!Index->getType()->isIntegerTy())
1757 return false; // Third operand of insertelement must be an integer.
1758 return true;
1759}
1760
1761//===----------------------------------------------------------------------===//
1762// ShuffleVectorInst Implementation
1763//===----------------------------------------------------------------------===//
1764
1766 assert(V && "Cannot create placeholder of nullptr V");
1767 return PoisonValue::get(V->getType());
1768}
1769
1771 InsertPosition InsertBefore)
1773 InsertBefore) {}
1774
1776 const Twine &Name,
1777 InsertPosition InsertBefore)
1779 InsertBefore) {}
1780
1782 const Twine &Name,
1783 InsertPosition InsertBefore)
1784 : Instruction(
1785 VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1786 cast<VectorType>(Mask->getType())->getElementCount()),
1787 ShuffleVector, AllocMarker, InsertBefore) {
1788 assert(isValidOperands(V1, V2, Mask) &&
1789 "Invalid shuffle vector instruction operands!");
1790
1791 Op<0>() = V1;
1792 Op<1>() = V2;
1793 SmallVector<int, 16> MaskArr;
1794 getShuffleMask(cast<Constant>(Mask), MaskArr);
1795 setShuffleMask(MaskArr);
1796 setName(Name);
1797}
1798
1800 const Twine &Name,
1801 InsertPosition InsertBefore)
1802 : Instruction(
1803 VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1804 Mask.size(), isa<ScalableVectorType>(V1->getType())),
1805 ShuffleVector, AllocMarker, InsertBefore) {
1806 assert(isValidOperands(V1, V2, Mask) &&
1807 "Invalid shuffle vector instruction operands!");
1808 Op<0>() = V1;
1809 Op<1>() = V2;
1810 setShuffleMask(Mask);
1811 setName(Name);
1812}
1813
1815 int NumOpElts = cast<FixedVectorType>(Op<0>()->getType())->getNumElements();
1816 int NumMaskElts = ShuffleMask.size();
1817 SmallVector<int, 16> NewMask(NumMaskElts);
1818 for (int i = 0; i != NumMaskElts; ++i) {
1819 int MaskElt = getMaskValue(i);
1820 if (MaskElt == PoisonMaskElem) {
1821 NewMask[i] = PoisonMaskElem;
1822 continue;
1823 }
1824 assert(MaskElt >= 0 && MaskElt < 2 * NumOpElts && "Out-of-range mask");
1825 MaskElt = (MaskElt < NumOpElts) ? MaskElt + NumOpElts : MaskElt - NumOpElts;
1826 NewMask[i] = MaskElt;
1827 }
1828 setShuffleMask(NewMask);
1829 Op<0>().swap(Op<1>());
1830}
1831
1833 ArrayRef<int> Mask) {
1834 // V1 and V2 must be vectors of the same type.
1835 if (!isa<VectorType>(V1->getType()) || V1->getType() != V2->getType())
1836 return false;
1837
1838 // Make sure the mask elements make sense.
1839 int V1Size =
1840 cast<VectorType>(V1->getType())->getElementCount().getKnownMinValue();
1841 for (int Elem : Mask)
1842 if (Elem != PoisonMaskElem && Elem >= V1Size * 2)
1843 return false;
1844
1845 if (isa<ScalableVectorType>(V1->getType()))
1846 if ((Mask[0] != 0 && Mask[0] != PoisonMaskElem) || !all_equal(Mask))
1847 return false;
1848
1849 return true;
1850}
1851
1853 const Value *Mask) {
1854 // V1 and V2 must be vectors of the same type.
1855 if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
1856 return false;
1857
1858 // Mask must be vector of i32, and must be the same kind of vector as the
1859 // input vectors
1860 auto *MaskTy = dyn_cast<VectorType>(Mask->getType());
1861 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32) ||
1862 isa<ScalableVectorType>(MaskTy) != isa<ScalableVectorType>(V1->getType()))
1863 return false;
1864
1865 // Check to see if Mask is valid.
1867 return true;
1868
1869 // NOTE: Through vector ConstantInt we have the potential to support more
1870 // than just zero splat masks but that requires a LangRef change.
1871 if (isa<ScalableVectorType>(MaskTy))
1872 return false;
1873
1874 unsigned V1Size = cast<FixedVectorType>(V1->getType())->getNumElements();
1875
1876 if (const auto *CI = dyn_cast<ConstantInt>(Mask))
1877 return !CI->uge(V1Size * 2);
1878
1879 if (const auto *MV = dyn_cast<ConstantVector>(Mask)) {
1880 for (Value *Op : MV->operands()) {
1881 if (auto *CI = dyn_cast<ConstantInt>(Op)) {
1882 if (CI->uge(V1Size*2))
1883 return false;
1884 } else if (!isa<UndefValue>(Op)) {
1885 return false;
1886 }
1887 }
1888 return true;
1889 }
1890
1891 if (const auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) {
1892 for (unsigned i = 0, e = cast<FixedVectorType>(MaskTy)->getNumElements();
1893 i != e; ++i)
1894 if (CDS->getElementAsInteger(i) >= V1Size*2)
1895 return false;
1896 return true;
1897 }
1898
1899 return false;
1900}
1901
1903 SmallVectorImpl<int> &Result) {
1904 ElementCount EC = cast<VectorType>(Mask->getType())->getElementCount();
1905
1906 if (isa<ConstantAggregateZero>(Mask) || isa<UndefValue>(Mask)) {
1907 int MaskVal = isa<UndefValue>(Mask) ? -1 : 0;
1908 Result.append(EC.getKnownMinValue(), MaskVal);
1909 return;
1910 }
1911
1912 assert(!EC.isScalable() &&
1913 "Scalable vector shuffle mask must be undef or zeroinitializer");
1914
1915 unsigned NumElts = EC.getFixedValue();
1916
1917 Result.reserve(NumElts);
1918
1919 if (auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) {
1920 for (unsigned i = 0; i != NumElts; ++i)
1921 Result.push_back(CDS->getElementAsInteger(i));
1922 return;
1923 }
1924 for (unsigned i = 0; i != NumElts; ++i) {
1925 Constant *C = Mask->getAggregateElement(i);
1926 Result.push_back(isa<UndefValue>(C) ? -1 :
1927 cast<ConstantInt>(C)->getZExtValue());
1928 }
1929}
1930
1932 ShuffleMask.assign(Mask.begin(), Mask.end());
1933 ShuffleMaskForBitcode = convertShuffleMaskForBitcode(Mask, getType());
1934}
1935
1937 Type *ResultTy) {
1938 Type *Int32Ty = Type::getInt32Ty(ResultTy->getContext());
1939 if (isa<ScalableVectorType>(ResultTy)) {
1940 assert(all_equal(Mask) && "Unexpected shuffle");
1941 Type *VecTy = VectorType::get(Int32Ty, Mask.size(), true);
1942 if (Mask[0] == 0)
1943 return Constant::getNullValue(VecTy);
1944 return PoisonValue::get(VecTy);
1945 }
1947 for (int Elem : Mask) {
1948 if (Elem == PoisonMaskElem)
1949 MaskConst.push_back(PoisonValue::get(Int32Ty));
1950 else
1951 MaskConst.push_back(ConstantInt::get(Int32Ty, Elem));
1952 }
1953 return ConstantVector::get(MaskConst);
1954}
1955
1956static bool isSingleSourceMaskImpl(ArrayRef<int> Mask, int NumOpElts) {
1957 assert(!Mask.empty() && "Shuffle mask must contain elements");
1958 bool UsesLHS = false;
1959 bool UsesRHS = false;
1960 for (int I : Mask) {
1961 if (I == -1)
1962 continue;
1963 assert(I >= 0 && I < (NumOpElts * 2) &&
1964 "Out-of-bounds shuffle mask element");
1965 UsesLHS |= (I < NumOpElts);
1966 UsesRHS |= (I >= NumOpElts);
1967 if (UsesLHS && UsesRHS)
1968 return false;
1969 }
1970 // Allow for degenerate case: completely undef mask means neither source is used.
1971 return UsesLHS || UsesRHS;
1972}
1973
1975 // We don't have vector operand size information, so assume operands are the
1976 // same size as the mask.
1977 return isSingleSourceMaskImpl(Mask, NumSrcElts);
1978}
1979
1980static bool isIdentityMaskImpl(ArrayRef<int> Mask, int NumOpElts) {
1981 if (!isSingleSourceMaskImpl(Mask, NumOpElts))
1982 return false;
1983 for (int i = 0, NumMaskElts = Mask.size(); i < NumMaskElts; ++i) {
1984 if (Mask[i] == -1)
1985 continue;
1986 if (Mask[i] != i && Mask[i] != (NumOpElts + i))
1987 return false;
1988 }
1989 return true;
1990}
1991
1993 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
1994 return false;
1995 // We don't have vector operand size information, so assume operands are the
1996 // same size as the mask.
1997 return isIdentityMaskImpl(Mask, NumSrcElts);
1998}
1999
2001 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
2002 return false;
2003 if (!isSingleSourceMask(Mask, NumSrcElts))
2004 return false;
2005
2006 // The number of elements in the mask must be at least 2.
2007 if (NumSrcElts < 2)
2008 return false;
2009
2010 for (int I = 0, E = Mask.size(); I < E; ++I) {
2011 if (Mask[I] == -1)
2012 continue;
2013 if (Mask[I] != (NumSrcElts - 1 - I) &&
2014 Mask[I] != (NumSrcElts + NumSrcElts - 1 - I))
2015 return false;
2016 }
2017 return true;
2018}
2019
2021 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
2022 return false;
2023 if (!isSingleSourceMask(Mask, NumSrcElts))
2024 return false;
2025 for (int I = 0, E = Mask.size(); I < E; ++I) {
2026 if (Mask[I] == -1)
2027 continue;
2028 if (Mask[I] != 0 && Mask[I] != NumSrcElts)
2029 return false;
2030 }
2031 return true;
2032}
2033
2035 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
2036 return false;
2037 // Select is differentiated from identity. It requires using both sources.
2038 if (isSingleSourceMask(Mask, NumSrcElts))
2039 return false;
2040 for (int I = 0, E = Mask.size(); I < E; ++I) {
2041 if (Mask[I] == -1)
2042 continue;
2043 if (Mask[I] != I && Mask[I] != (NumSrcElts + I))
2044 return false;
2045 }
2046 return true;
2047}
2048
2050 // Example masks that will return true:
2051 // v1 = <a, b, c, d>
2052 // v2 = <e, f, g, h>
2053 // trn1 = shufflevector v1, v2 <0, 4, 2, 6> = <a, e, c, g>
2054 // trn2 = shufflevector v1, v2 <1, 5, 3, 7> = <b, f, d, h>
2055
2056 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
2057 return false;
2058 // 1. The number of elements in the mask must be a power-of-2 and at least 2.
2059 int Sz = Mask.size();
2060 if (Sz < 2 || !isPowerOf2_32(Sz))
2061 return false;
2062
2063 // 2. The first element of the mask must be either a 0 or a 1.
2064 if (Mask[0] != 0 && Mask[0] != 1)
2065 return false;
2066
2067 // 3. The difference between the first 2 elements must be equal to the
2068 // number of elements in the mask.
2069 if ((Mask[1] - Mask[0]) != NumSrcElts)
2070 return false;
2071
2072 // 4. The difference between consecutive even-numbered and odd-numbered
2073 // elements must be equal to 2.
2074 for (int I = 2; I < Sz; ++I) {
2075 int MaskEltVal = Mask[I];
2076 if (MaskEltVal == -1)
2077 return false;
2078 int MaskEltPrevVal = Mask[I - 2];
2079 if (MaskEltVal - MaskEltPrevVal != 2)
2080 return false;
2081 }
2082 return true;
2083}
2084
2086 int &Index) {
2087 if (Mask.size() != static_cast<unsigned>(NumSrcElts))
2088 return false;
2089 // Example: shufflevector <4 x n> A, <4 x n> B, <1,2,3,4>
2090 int StartIndex = -1;
2091 for (int I = 0, E = Mask.size(); I != E; ++I) {
2092 int MaskEltVal = Mask[I];
2093 if (MaskEltVal == -1)
2094 continue;
2095
2096 if (StartIndex == -1) {
2097 // Don't support a StartIndex that begins in the second input, or if the
2098 // first non-undef index would access below the StartIndex.
2099 if (MaskEltVal < I || NumSrcElts <= (MaskEltVal - I))
2100 return false;
2101
2102 StartIndex = MaskEltVal - I;
2103 continue;
2104 }
2105
2106 // Splice is sequential starting from StartIndex.
2107 if (MaskEltVal != (StartIndex + I))
2108 return false;
2109 }
2110
2111 if (StartIndex == -1)
2112 return false;
2113
2114 // NOTE: This accepts StartIndex == 0 (COPY).
2115 Index = StartIndex;
2116 return true;
2117}
2118
2120 int NumSrcElts, int &Index) {
2121 // Must extract from a single source.
2122 if (!isSingleSourceMaskImpl(Mask, NumSrcElts))
2123 return false;
2124
2125 // Must be smaller (else this is an Identity shuffle).
2126 if (NumSrcElts <= (int)Mask.size())
2127 return false;
2128
2129 // Find start of extraction, accounting that we may start with an UNDEF.
2130 int SubIndex = -1;
2131 for (int i = 0, e = Mask.size(); i != e; ++i) {
2132 int M = Mask[i];
2133 if (M < 0)
2134 continue;
2135 int Offset = (M % NumSrcElts) - i;
2136 if (0 <= SubIndex && SubIndex != Offset)
2137 return false;
2138 SubIndex = Offset;
2139 }
2140
2141 if (0 <= SubIndex && SubIndex + (int)Mask.size() <= NumSrcElts) {
2142 Index = SubIndex;
2143 return true;
2144 }
2145 return false;
2146}
2147
2149 int NumSrcElts, int &NumSubElts,
2150 int &Index) {
2151 int NumMaskElts = Mask.size();
2152
2153 // Don't try to match if we're shuffling to a smaller size.
2154 if (NumMaskElts < NumSrcElts)
2155 return false;
2156
2157 // TODO: We don't recognize self-insertion/widening.
2158 if (isSingleSourceMaskImpl(Mask, NumSrcElts))
2159 return false;
2160
2161 // Determine which mask elements are attributed to which source.
2162 APInt UndefElts = APInt::getZero(NumMaskElts);
2163 APInt Src0Elts = APInt::getZero(NumMaskElts);
2164 APInt Src1Elts = APInt::getZero(NumMaskElts);
2165 bool Src0Identity = true;
2166 bool Src1Identity = true;
2167
2168 for (int i = 0; i != NumMaskElts; ++i) {
2169 int M = Mask[i];
2170 if (M < 0) {
2171 UndefElts.setBit(i);
2172 continue;
2173 }
2174 if (M < NumSrcElts) {
2175 Src0Elts.setBit(i);
2176 Src0Identity &= (M == i);
2177 continue;
2178 }
2179 Src1Elts.setBit(i);
2180 Src1Identity &= (M == (i + NumSrcElts));
2181 }
2182 assert((Src0Elts | Src1Elts | UndefElts).isAllOnes() &&
2183 "unknown shuffle elements");
2184 assert(!Src0Elts.isZero() && !Src1Elts.isZero() &&
2185 "2-source shuffle not found");
2186
2187 // Determine lo/hi span ranges.
2188 // TODO: How should we handle undefs at the start of subvector insertions?
2189 int Src0Lo = Src0Elts.countr_zero();
2190 int Src1Lo = Src1Elts.countr_zero();
2191 int Src0Hi = NumMaskElts - Src0Elts.countl_zero();
2192 int Src1Hi = NumMaskElts - Src1Elts.countl_zero();
2193
2194 // If src0 is in place, see if the src1 elements is inplace within its own
2195 // span.
2196 if (Src0Identity) {
2197 int NumSub1Elts = Src1Hi - Src1Lo;
2198 ArrayRef<int> Sub1Mask = Mask.slice(Src1Lo, NumSub1Elts);
2199 if (isIdentityMaskImpl(Sub1Mask, NumSrcElts)) {
2200 NumSubElts = NumSub1Elts;
2201 Index = Src1Lo;
2202 return true;
2203 }
2204 }
2205
2206 // If src1 is in place, see if the src0 elements is inplace within its own
2207 // span.
2208 if (Src1Identity) {
2209 int NumSub0Elts = Src0Hi - Src0Lo;
2210 ArrayRef<int> Sub0Mask = Mask.slice(Src0Lo, NumSub0Elts);
2211 if (isIdentityMaskImpl(Sub0Mask, NumSrcElts)) {
2212 NumSubElts = NumSub0Elts;
2213 Index = Src0Lo;
2214 return true;
2215 }
2216 }
2217
2218 return false;
2219}
2220
2222 // FIXME: Not currently possible to express a shuffle mask for a scalable
2223 // vector for this case.
2225 return false;
2226
2227 int NumOpElts = cast<FixedVectorType>(Op<0>()->getType())->getNumElements();
2228 int NumMaskElts = cast<FixedVectorType>(getType())->getNumElements();
2229 if (NumMaskElts <= NumOpElts)
2230 return false;
2231
2232 // The first part of the mask must choose elements from exactly 1 source op.
2234 if (!isIdentityMaskImpl(Mask, NumOpElts))
2235 return false;
2236
2237 // All extending must be with undef elements.
2238 for (int i = NumOpElts; i < NumMaskElts; ++i)
2239 if (Mask[i] != -1)
2240 return false;
2241
2242 return true;
2243}
2244
2246 // FIXME: Not currently possible to express a shuffle mask for a scalable
2247 // vector for this case.
2249 return false;
2250
2251 int NumOpElts = cast<FixedVectorType>(Op<0>()->getType())->getNumElements();
2252 int NumMaskElts = cast<FixedVectorType>(getType())->getNumElements();
2253 if (NumMaskElts >= NumOpElts)
2254 return false;
2255
2256 return isIdentityMaskImpl(getShuffleMask(), NumOpElts);
2257}
2258
2260 // Vector concatenation is differentiated from identity with padding.
2262 return false;
2263
2264 // FIXME: Not currently possible to express a shuffle mask for a scalable
2265 // vector for this case.
2267 return false;
2268
2269 int NumOpElts = cast<FixedVectorType>(Op<0>()->getType())->getNumElements();
2270 int NumMaskElts = cast<FixedVectorType>(getType())->getNumElements();
2271 if (NumMaskElts != NumOpElts * 2)
2272 return false;
2273
2274 // Use the mask length rather than the operands' vector lengths here. We
2275 // already know that the shuffle returns a vector twice as long as the inputs,
2276 // and neither of the inputs are undef vectors. If the mask picks consecutive
2277 // elements from both inputs, then this is a concatenation of the inputs.
2278 return isIdentityMaskImpl(getShuffleMask(), NumMaskElts);
2279}
2280
2282 int ReplicationFactor, int VF) {
2283 assert(Mask.size() == (unsigned)ReplicationFactor * VF &&
2284 "Unexpected mask size.");
2285
2286 for (int CurrElt : seq(VF)) {
2287 ArrayRef<int> CurrSubMask = Mask.take_front(ReplicationFactor);
2288 assert(CurrSubMask.size() == (unsigned)ReplicationFactor &&
2289 "Run out of mask?");
2290 Mask = Mask.drop_front(ReplicationFactor);
2291 if (!all_of(CurrSubMask, [CurrElt](int MaskElt) {
2292 return MaskElt == PoisonMaskElem || MaskElt == CurrElt;
2293 }))
2294 return false;
2295 }
2296 assert(Mask.empty() && "Did not consume the whole mask?");
2297
2298 return true;
2299}
2300
2302 int &ReplicationFactor, int &VF) {
2303 // undef-less case is trivial.
2304 if (!llvm::is_contained(Mask, PoisonMaskElem)) {
2305 ReplicationFactor =
2306 Mask.take_while([](int MaskElt) { return MaskElt == 0; }).size();
2307 if (ReplicationFactor == 0 || Mask.size() % ReplicationFactor != 0)
2308 return false;
2309 VF = Mask.size() / ReplicationFactor;
2310 return isReplicationMaskWithParams(Mask, ReplicationFactor, VF);
2311 }
2312
2313 // However, if the mask contains undef's, we have to enumerate possible tuples
2314 // and pick one. There are bounds on replication factor: [1, mask size]
2315 // (where RF=1 is an identity shuffle, RF=mask size is a broadcast shuffle)
2316 // Additionally, mask size is a replication factor multiplied by vector size,
2317 // which further significantly reduces the search space.
2318
2319 // Before doing that, let's perform basic correctness checking first.
2320 int Largest = -1;
2321 for (int MaskElt : Mask) {
2322 if (MaskElt == PoisonMaskElem)
2323 continue;
2324 // Elements must be in non-decreasing order.
2325 if (MaskElt < Largest)
2326 return false;
2327 Largest = std::max(Largest, MaskElt);
2328 }
2329
2330 // Prefer larger replication factor if all else equal.
2331 for (int PossibleReplicationFactor :
2332 reverse(seq_inclusive<unsigned>(1, Mask.size()))) {
2333 if (Mask.size() % PossibleReplicationFactor != 0)
2334 continue;
2335 int PossibleVF = Mask.size() / PossibleReplicationFactor;
2336 if (!isReplicationMaskWithParams(Mask, PossibleReplicationFactor,
2337 PossibleVF))
2338 continue;
2339 ReplicationFactor = PossibleReplicationFactor;
2340 VF = PossibleVF;
2341 return true;
2342 }
2343
2344 return false;
2345}
2346
2347bool ShuffleVectorInst::isReplicationMask(int &ReplicationFactor,
2348 int &VF) const {
2349 // Not possible to express a shuffle mask for a scalable vector for this
2350 // case.
2352 return false;
2353
2354 VF = cast<FixedVectorType>(Op<0>()->getType())->getNumElements();
2355 if (ShuffleMask.size() % VF != 0)
2356 return false;
2357 ReplicationFactor = ShuffleMask.size() / VF;
2358
2359 return isReplicationMaskWithParams(ShuffleMask, ReplicationFactor, VF);
2360}
2361
2363 if (VF <= 0 || Mask.size() < static_cast<unsigned>(VF) ||
2364 Mask.size() % VF != 0)
2365 return false;
2366 for (unsigned K = 0, Sz = Mask.size(); K < Sz; K += VF) {
2367 ArrayRef<int> SubMask = Mask.slice(K, VF);
2368 if (all_of(SubMask, equal_to(PoisonMaskElem)))
2369 continue;
2370 SmallBitVector Used(VF, false);
2371 for (int Idx : SubMask) {
2372 if (Idx != PoisonMaskElem && Idx < VF)
2373 Used.set(Idx);
2374 }
2375 if (!Used.all())
2376 return false;
2377 }
2378 return true;
2379}
2380
2381/// Return true if this shuffle mask is a replication mask.
2383 // Not possible to express a shuffle mask for a scalable vector for this
2384 // case.
2386 return false;
2387 if (!isSingleSourceMask(ShuffleMask, VF))
2388 return false;
2389
2390 return isOneUseSingleSourceMask(ShuffleMask, VF);
2391}
2392
2393bool ShuffleVectorInst::isInterleave(unsigned Factor) {
2395 // shuffle_vector can only interleave fixed length vectors - for scalable
2396 // vectors, see the @llvm.vector.interleave2 intrinsic
2397 if (!OpTy)
2398 return false;
2399 unsigned OpNumElts = OpTy->getNumElements();
2400
2401 return isInterleaveMask(ShuffleMask, Factor, OpNumElts * 2);
2402}
2403
2405 ArrayRef<int> Mask, unsigned Factor, unsigned NumInputElts,
2406 SmallVectorImpl<unsigned> &StartIndexes) {
2407 unsigned NumElts = Mask.size();
2408 if (NumElts % Factor)
2409 return false;
2410
2411 unsigned LaneLen = NumElts / Factor;
2412 if (!isPowerOf2_32(LaneLen))
2413 return false;
2414
2415 StartIndexes.resize(Factor);
2416
2417 // Check whether each element matches the general interleaved rule.
2418 // Ignore undef elements, as long as the defined elements match the rule.
2419 // Outer loop processes all factors (x, y, z in the above example)
2420 unsigned I = 0, J;
2421 for (; I < Factor; I++) {
2422 unsigned SavedLaneValue;
2423 unsigned SavedNoUndefs = 0;
2424
2425 // Inner loop processes consecutive accesses (x, x+1... in the example)
2426 for (J = 0; J < LaneLen - 1; J++) {
2427 // Lane computes x's position in the Mask
2428 unsigned Lane = J * Factor + I;
2429 unsigned NextLane = Lane + Factor;
2430 int LaneValue = Mask[Lane];
2431 int NextLaneValue = Mask[NextLane];
2432
2433 // If both are defined, values must be sequential
2434 if (LaneValue >= 0 && NextLaneValue >= 0 &&
2435 LaneValue + 1 != NextLaneValue)
2436 break;
2437
2438 // If the next value is undef, save the current one as reference
2439 if (LaneValue >= 0 && NextLaneValue < 0) {
2440 SavedLaneValue = LaneValue;
2441 SavedNoUndefs = 1;
2442 }
2443
2444 // Undefs are allowed, but defined elements must still be consecutive:
2445 // i.e.: x,..., undef,..., x + 2,..., undef,..., undef,..., x + 5, ....
2446 // Verify this by storing the last non-undef followed by an undef
2447 // Check that following non-undef masks are incremented with the
2448 // corresponding distance.
2449 if (SavedNoUndefs > 0 && LaneValue < 0) {
2450 SavedNoUndefs++;
2451 if (NextLaneValue >= 0 &&
2452 SavedLaneValue + SavedNoUndefs != (unsigned)NextLaneValue)
2453 break;
2454 }
2455 }
2456
2457 if (J < LaneLen - 1)
2458 return false;
2459
2460 int StartMask = 0;
2461 if (Mask[I] >= 0) {
2462 // Check that the start of the I range (J=0) is greater than 0
2463 StartMask = Mask[I];
2464 } else if (Mask[(LaneLen - 1) * Factor + I] >= 0) {
2465 // StartMask defined by the last value in lane
2466 StartMask = Mask[(LaneLen - 1) * Factor + I] - J;
2467 } else if (SavedNoUndefs > 0) {
2468 // StartMask defined by some non-zero value in the j loop
2469 StartMask = SavedLaneValue - (LaneLen - 1 - SavedNoUndefs);
2470 }
2471 // else StartMask remains set to 0, i.e. all elements are undefs
2472
2473 if (StartMask < 0)
2474 return false;
2475 // We must stay within the vectors; This case can happen with undefs.
2476 if (StartMask + LaneLen > NumInputElts)
2477 return false;
2478
2479 StartIndexes[I] = StartMask;
2480 }
2481
2482 return true;
2483}
2484
2485/// Check if the mask is a DE-interleave mask of the given factor
2486/// \p Factor like:
2487/// <Index, Index+Factor, ..., Index+(NumElts-1)*Factor>
2489 unsigned Factor,
2490 unsigned &Index) {
2491 // Check all potential start indices from 0 to (Factor - 1).
2492 for (unsigned Idx = 0; Idx < Factor; Idx++) {
2493 unsigned I = 0;
2494
2495 // Check that elements are in ascending order by Factor. Ignore undef
2496 // elements.
2497 for (; I < Mask.size(); I++)
2498 if (Mask[I] >= 0 && static_cast<unsigned>(Mask[I]) != Idx + I * Factor)
2499 break;
2500
2501 if (I == Mask.size()) {
2502 Index = Idx;
2503 return true;
2504 }
2505 }
2506
2507 return false;
2508}
2509
2510/// Try to lower a vector shuffle as a bit rotation.
2511///
2512/// Look for a repeated rotation pattern in each sub group.
2513/// Returns an element-wise left bit rotation amount or -1 if failed.
2514static int matchShuffleAsBitRotate(ArrayRef<int> Mask, int NumSubElts) {
2515 int NumElts = Mask.size();
2516 assert((NumElts % NumSubElts) == 0 && "Illegal shuffle mask");
2517
2518 int RotateAmt = -1;
2519 for (int i = 0; i != NumElts; i += NumSubElts) {
2520 for (int j = 0; j != NumSubElts; ++j) {
2521 int M = Mask[i + j];
2522 if (M < 0)
2523 continue;
2524 if (M < i || M >= i + NumSubElts)
2525 return -1;
2526 int Offset = (NumSubElts - (M - (i + j))) % NumSubElts;
2527 if (0 <= RotateAmt && Offset != RotateAmt)
2528 return -1;
2529 RotateAmt = Offset;
2530 }
2531 }
2532 return RotateAmt;
2533}
2534
2536 ArrayRef<int> Mask, unsigned EltSizeInBits, unsigned MinSubElts,
2537 unsigned MaxSubElts, unsigned &NumSubElts, unsigned &RotateAmt) {
2538 for (NumSubElts = MinSubElts; NumSubElts <= MaxSubElts; NumSubElts *= 2) {
2539 int EltRotateAmt = matchShuffleAsBitRotate(Mask, NumSubElts);
2540 if (EltRotateAmt < 0)
2541 continue;
2542 RotateAmt = EltRotateAmt * EltSizeInBits;
2543 return true;
2544 }
2545
2546 return false;
2547}
2548
2549//===----------------------------------------------------------------------===//
2550// InsertValueInst Class
2551//===----------------------------------------------------------------------===//
2552
2553void InsertValueInst::init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
2554 const Twine &Name) {
2555 assert(getNumOperands() == 2 && "NumOperands not initialized?");
2556
2557 // There's no fundamental reason why we require at least one index
2558 // (other than weirdness with &*IdxBegin being invalid; see
2559 // getelementptr's init routine for example). But there's no
2560 // present need to support it.
2561 assert(!Idxs.empty() && "InsertValueInst must have at least one index");
2562
2564 Val->getType() && "Inserted value must match indexed type!");
2565 Op<0>() = Agg;
2566 Op<1>() = Val;
2567
2568 Indices.append(Idxs.begin(), Idxs.end());
2569 setName(Name);
2570}
2571
2572InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
2573 : Instruction(IVI.getType(), InsertValue, AllocMarker),
2574 Indices(IVI.Indices) {
2575 Op<0>() = IVI.getOperand(0);
2576 Op<1>() = IVI.getOperand(1);
2578}
2579
2580//===----------------------------------------------------------------------===//
2581// ExtractValueInst Class
2582//===----------------------------------------------------------------------===//
2583
2584void ExtractValueInst::init(ArrayRef<unsigned> Idxs, const Twine &Name) {
2585 assert(getNumOperands() == 1 && "NumOperands not initialized?");
2586
2587 // There's no fundamental reason why we require at least one index.
2588 // But there's no present need to support it.
2589 assert(!Idxs.empty() && "ExtractValueInst must have at least one index");
2590
2591 Indices.append(Idxs.begin(), Idxs.end());
2592 setName(Name);
2593}
2594
2595ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
2596 : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0),
2597 (BasicBlock *)nullptr),
2598 Indices(EVI.Indices) {
2600}
2601
2602// getIndexedType - Returns the type of the element that would be extracted
2603// with an extractvalue instruction with the specified parameters.
2604//
2605// A null type is returned if the indices are invalid for the specified
2606// pointer type.
2607//
2609 ArrayRef<unsigned> Idxs) {
2610 for (unsigned Index : Idxs) {
2611 // We can't use CompositeType::indexValid(Index) here.
2612 // indexValid() always returns true for arrays because getelementptr allows
2613 // out-of-bounds indices. Since we don't allow those for extractvalue and
2614 // insertvalue we need to check array indexing manually.
2615 // Since the only other types we can index into are struct types it's just
2616 // as easy to check those manually as well.
2617 if (ArrayType *AT = dyn_cast<ArrayType>(Agg)) {
2618 if (Index >= AT->getNumElements())
2619 return nullptr;
2620 Agg = AT->getElementType();
2621 } else if (StructType *ST = dyn_cast<StructType>(Agg)) {
2622 if (Index >= ST->getNumElements())
2623 return nullptr;
2624 Agg = ST->getElementType(Index);
2625 } else {
2626 // Not a valid type to index into.
2627 return nullptr;
2628 }
2629 }
2630 return Agg;
2631}
2632
2633//===----------------------------------------------------------------------===//
2634// UnaryOperator Class
2635//===----------------------------------------------------------------------===//
2636
2638 const Twine &Name, InsertPosition InsertBefore)
2639 : UnaryInstruction(Ty, iType, S, InsertBefore) {
2640 Op<0>() = S;
2641 setName(Name);
2642 AssertOK();
2643}
2644
2646 InsertPosition InsertBefore) {
2647 switch (Op) {
2648 case UnaryOps::FNeg:
2649 return new FPUnaryOperator(Op, S, S->getType(), Name, InsertBefore);
2650 default:
2651 return new UnaryOperator(Op, S, S->getType(), Name, InsertBefore);
2652 }
2653}
2654
2655void UnaryOperator::AssertOK() {
2656 Value *LHS = getOperand(0);
2657 (void)LHS; // Silence warnings.
2658#ifndef NDEBUG
2659 switch (getOpcode()) {
2660 case FNeg:
2661 assert(getType() == LHS->getType() &&
2662 "Unary operation should return same type as operand!");
2663 assert(getType()->isFPOrFPVectorTy() &&
2664 "Tried to create a floating-point operation on a "
2665 "non-floating-point type!");
2666 break;
2667 default: llvm_unreachable("Invalid opcode provided");
2668 }
2669#endif
2670}
2671
2672//===----------------------------------------------------------------------===//
2673// BinaryOperator Class
2674//===----------------------------------------------------------------------===//
2675
2677 const Twine &Name, InsertPosition InsertBefore)
2678 : Instruction(Ty, iType, AllocMarker, InsertBefore) {
2679 Op<0>() = S1;
2680 Op<1>() = S2;
2681 setName(Name);
2682 AssertOK();
2683}
2684
2685void BinaryOperator::AssertOK() {
2686 Value *LHS = getOperand(0), *RHS = getOperand(1);
2687 (void)LHS; (void)RHS; // Silence warnings.
2688 assert(LHS->getType() == RHS->getType() &&
2689 "Binary operator operand types must match!");
2690#ifndef NDEBUG
2691 switch (getOpcode()) {
2692 case Add: case Sub:
2693 case Mul:
2694 assert(getType() == LHS->getType() &&
2695 "Arithmetic operation should return same type as operands!");
2696 assert(getType()->isIntOrIntVectorTy() &&
2697 "Tried to create an integer operation on a non-integer type!");
2698 break;
2699 case FAdd: case FSub:
2700 case FMul:
2701 assert(getType() == LHS->getType() &&
2702 "Arithmetic operation should return same type as operands!");
2703 assert(getType()->isFPOrFPVectorTy() &&
2704 "Tried to create a floating-point operation on a "
2705 "non-floating-point type!");
2706 break;
2707 case UDiv:
2708 case SDiv:
2709 assert(getType() == LHS->getType() &&
2710 "Arithmetic operation should return same type as operands!");
2711 assert(getType()->isIntOrIntVectorTy() &&
2712 "Incorrect operand type (not integer) for S/UDIV");
2713 break;
2714 case FDiv:
2715 assert(getType() == LHS->getType() &&
2716 "Arithmetic operation should return same type as operands!");
2717 assert(getType()->isFPOrFPVectorTy() &&
2718 "Incorrect operand type (not floating point) for FDIV");
2719 break;
2720 case URem:
2721 case SRem:
2722 assert(getType() == LHS->getType() &&
2723 "Arithmetic operation should return same type as operands!");
2724 assert(getType()->isIntOrIntVectorTy() &&
2725 "Incorrect operand type (not integer) for S/UREM");
2726 break;
2727 case FRem:
2728 assert(getType() == LHS->getType() &&
2729 "Arithmetic operation should return same type as operands!");
2730 assert(getType()->isFPOrFPVectorTy() &&
2731 "Incorrect operand type (not floating point) for FREM");
2732 break;
2733 case Shl:
2734 case LShr:
2735 case AShr:
2736 assert(getType() == LHS->getType() &&
2737 "Shift operation should return same type as operands!");
2738 assert(getType()->isIntOrIntVectorTy() &&
2739 "Tried to create a shift operation on a non-integral type!");
2740 break;
2741 case And: case Or:
2742 case Xor:
2743 assert(getType() == LHS->getType() &&
2744 "Logical operation should return same type as operands!");
2745 assert(getType()->isIntOrIntVectorTy() &&
2746 "Tried to create a logical operation on a non-integral type!");
2747 break;
2748 default: llvm_unreachable("Invalid opcode provided");
2749 }
2750#endif
2751}
2752
2754 const Twine &Name,
2755 InsertPosition InsertBefore) {
2756 assert(S1->getType() == S2->getType() &&
2757 "Cannot create binary operator with two operands of differing type!");
2758 switch (Op) {
2759 case BinaryOps::FAdd:
2760 case BinaryOps::FSub:
2761 case BinaryOps::FMul:
2762 case BinaryOps::FDiv:
2763 case BinaryOps::FRem:
2764 return new FPBinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
2765 default:
2766 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
2767 }
2768}
2769
2771 InsertPosition InsertBefore) {
2772 Value *Zero = ConstantInt::get(Op->getType(), 0);
2773 return new BinaryOperator(Instruction::Sub, Zero, Op, Op->getType(), Name,
2774 InsertBefore);
2775}
2776
2778 InsertPosition InsertBefore) {
2779 Value *Zero = ConstantInt::get(Op->getType(), 0);
2780 return BinaryOperator::CreateNSWSub(Zero, Op, Name, InsertBefore);
2781}
2782
2784 InsertPosition InsertBefore) {
2785 Constant *C = Constant::getAllOnesValue(Op->getType());
2786 return new BinaryOperator(Instruction::Xor, Op, C,
2787 Op->getType(), Name, InsertBefore);
2788}
2789
2790// Exchange the two operands to this instruction. This instruction is safe to
2791// use on any binary instruction and does not modify the semantics of the
2792// instruction.
2794 if (!isCommutative())
2795 return true; // Can't commute operands
2796 Op<0>().swap(Op<1>());
2797 return false;
2798}
2799
2800//===----------------------------------------------------------------------===//
2801// FPMathOperator Class
2802//===----------------------------------------------------------------------===//
2803
2805 const MDNode *MD =
2806 cast<Instruction>(this)->getMetadata(LLVMContext::MD_fpmath);
2807 if (!MD)
2808 return 0.0;
2810 return Accuracy->getValueAPF().convertToFloat();
2811}
2812
2813//===----------------------------------------------------------------------===//
2814// CastInst Class
2815//===----------------------------------------------------------------------===//
2816
2817// Just determine if this cast only deals with integral->integral conversion.
2819 switch (getOpcode()) {
2820 default: return false;
2821 case Instruction::ZExt:
2822 case Instruction::SExt:
2823 case Instruction::Trunc:
2824 return true;
2825 case Instruction::BitCast:
2826 return getOperand(0)->getType()->isIntegerTy() &&
2827 getType()->isIntegerTy();
2828 }
2829}
2830
2831/// This function determines if the CastInst does not require any bits to be
2832/// changed in order to effect the cast. Essentially, it identifies cases where
2833/// no code gen is necessary for the cast, hence the name no-op cast. For
2834/// example, the following are all no-op casts:
2835/// # bitcast i32* %x to i8*
2836/// # bitcast <2 x i32> %x to <4 x i16>
2837/// # ptrtoint i32* %x to i32 ; on 32-bit plaforms only
2838/// Determine if the described cast is a no-op.
2840 Type *SrcTy,
2841 Type *DestTy,
2842 const DataLayout &DL) {
2843 assert(castIsValid(Opcode, SrcTy, DestTy) && "method precondition");
2844 switch (Opcode) {
2845 default: llvm_unreachable("Invalid CastOp");
2846 case Instruction::Trunc:
2847 case Instruction::ZExt:
2848 case Instruction::SExt:
2849 case Instruction::FPTrunc:
2850 case Instruction::FPExt:
2851 case Instruction::UIToFP:
2852 case Instruction::SIToFP:
2853 case Instruction::FPToUI:
2854 case Instruction::FPToSI:
2855 case Instruction::AddrSpaceCast:
2856 // TODO: Target informations may give a more accurate answer here.
2857 return false;
2858 case Instruction::BitCast:
2859 return true; // BitCast never modifies bits.
2860 case Instruction::PtrToAddr:
2861 case Instruction::PtrToInt:
2862 return DL.getIntPtrType(SrcTy)->getScalarSizeInBits() ==
2863 DestTy->getScalarSizeInBits();
2864 case Instruction::IntToPtr:
2865 return DL.getIntPtrType(DestTy)->getScalarSizeInBits() ==
2866 SrcTy->getScalarSizeInBits();
2867 }
2868}
2869
2871 return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), DL);
2872}
2873
2874/// This function determines if a pair of casts can be eliminated and what
2875/// opcode should be used in the elimination. This assumes that there are two
2876/// instructions like this:
2877/// * %F = firstOpcode SrcTy %x to MidTy
2878/// * %S = secondOpcode MidTy %F to DstTy
2879/// The function returns a resultOpcode so these two casts can be replaced with:
2880/// * %Replacement = resultOpcode %SrcTy %x to DstTy
2881/// If no such cast is permitted, the function returns 0.
2883 Instruction::CastOps secondOp,
2884 Type *SrcTy, Type *MidTy, Type *DstTy,
2885 const DataLayout *DL) {
2886 // Define the 144 possibilities for these two cast instructions. The values
2887 // in this matrix determine what to do in a given situation and select the
2888 // case in the switch below. The rows correspond to firstOp, the columns
2889 // correspond to secondOp. In looking at the table below, keep in mind
2890 // the following cast properties:
2891 //
2892 // Size Compare Source Destination
2893 // Operator Src ? Size Type Sign Type Sign
2894 // -------- ------------ ------------------- ---------------------
2895 // TRUNC > Integer Any Integral Any
2896 // ZEXT < Integral Unsigned Integer Any
2897 // SEXT < Integral Signed Integer Any
2898 // FPTOUI n/a FloatPt n/a Integral Unsigned
2899 // FPTOSI n/a FloatPt n/a Integral Signed
2900 // UITOFP n/a Integral Unsigned FloatPt n/a
2901 // SITOFP n/a Integral Signed FloatPt n/a
2902 // FPTRUNC > FloatPt n/a FloatPt n/a
2903 // FPEXT < FloatPt n/a FloatPt n/a
2904 // PTRTOINT n/a Pointer n/a Integral Unsigned
2905 // PTRTOADDR n/a Pointer n/a Integral Unsigned
2906 // INTTOPTR n/a Integral Unsigned Pointer n/a
2907 // BITCAST = FirstClass n/a FirstClass n/a
2908 // ADDRSPCST n/a Pointer n/a Pointer n/a
2909 //
2910 // NOTE: some transforms are safe, but we consider them to be non-profitable.
2911 // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2912 // into "fptoui double to i64", but this loses information about the range
2913 // of the produced value (we no longer know the top-part is all zeros).
2914 // Further this conversion is often much more expensive for typical hardware,
2915 // and causes issues when building libgcc. We disallow fptosi+sext for the
2916 // same reason.
2917 const unsigned numCastOps =
2918 Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2919 // clang-format off
2920 static const uint8_t CastResults[numCastOps][numCastOps] = {
2921 // T F F U S F F P P I B A -+
2922 // R Z S P P I I T P 2 2 N T S |
2923 // U E E 2 2 2 2 R E I A T C C +- secondOp
2924 // N X X U S F F N X N D 2 V V |
2925 // C T T I I P P C T T R P T T -+
2926 { 1, 0, 0,99,99, 0, 0,99,99,99,99, 0, 3, 0}, // Trunc -+
2927 { 8, 1, 9,99,99, 2,17,99,99,99,99, 2, 3, 0}, // ZExt |
2928 { 8, 0, 1,99,99, 0, 2,99,99,99,99, 0, 3, 0}, // SExt |
2929 { 0, 0, 0,99,99, 0, 0,99,99,99,99, 0, 3, 0}, // FPToUI |
2930 { 0, 0, 0,99,99, 0, 0,99,99,99,99, 0, 3, 0}, // FPToSI |
2931 { 99,99,99, 0, 0,99,99, 0, 0,99,99,99, 4, 0}, // UIToFP +- firstOp
2932 { 99,99,99, 0, 0,99,99, 0, 0,99,99,99, 4, 0}, // SIToFP |
2933 { 99,99,99, 0, 0,99,99, 0, 0,99,99,99, 4, 0}, // FPTrunc |
2934 { 99,99,99, 2, 2,99,99, 8, 2,99,99,99, 4, 0}, // FPExt |
2935 { 1, 0, 0,99,99, 0, 0,99,99,99,99, 7, 3, 0}, // PtrToInt |
2936 { 0, 0, 0,99,99, 0, 0,99,99,99,99, 0, 3, 0}, // PtrToAddr |
2937 { 99,99,99,99,99,99,99,99,99,11,11,99,15, 0}, // IntToPtr |
2938 { 5, 5, 5, 0, 0, 5, 5, 0, 0,16,16, 5, 1,14}, // BitCast |
2939 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,12}, // AddrSpaceCast -+
2940 };
2941 // clang-format on
2942
2943 // TODO: This logic could be encoded into the table above and handled in the
2944 // switch below.
2945 // If either of the casts are a bitcast from scalar to vector, disallow the
2946 // merging. However, any pair of bitcasts are allowed.
2947 bool IsFirstBitcast = (firstOp == Instruction::BitCast);
2948 bool IsSecondBitcast = (secondOp == Instruction::BitCast);
2949 bool AreBothBitcasts = IsFirstBitcast && IsSecondBitcast;
2950
2951 // Check if any of the casts convert scalars <-> vectors.
2952 if ((IsFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2953 (IsSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2954 if (!AreBothBitcasts)
2955 return 0;
2956
2957 int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2958 [secondOp-Instruction::CastOpsBegin];
2959 switch (ElimCase) {
2960 case 0:
2961 // Categorically disallowed.
2962 return 0;
2963 case 1:
2964 // Allowed, use first cast's opcode.
2965 return firstOp;
2966 case 2:
2967 // Allowed, use second cast's opcode.
2968 return secondOp;
2969 case 3:
2970 // No-op cast in second op implies firstOp as long as the DestTy
2971 // is integer and we are not converting between a vector and a
2972 // non-vector type.
2973 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
2974 return firstOp;
2975 return 0;
2976 case 4:
2977 // No-op cast in second op implies firstOp as long as the DestTy
2978 // matches MidTy.
2979 if (DstTy == MidTy)
2980 return firstOp;
2981 return 0;
2982 case 5:
2983 // No-op cast in first op implies secondOp as long as the SrcTy
2984 // is an integer.
2985 if (SrcTy->isIntegerTy())
2986 return secondOp;
2987 return 0;
2988 case 7: {
2989 // Disable inttoptr/ptrtoint optimization if enabled.
2990 if (DisableI2pP2iOpt)
2991 return 0;
2992
2993 // Cannot simplify if address spaces are different!
2994 if (SrcTy != DstTy)
2995 return 0;
2996
2997 // Cannot simplify if the intermediate integer size is smaller than the
2998 // pointer size.
2999 unsigned MidSize = MidTy->getScalarSizeInBits();
3000 if (!DL || MidSize < DL->getPointerTypeSizeInBits(SrcTy))
3001 return 0;
3002
3003 return Instruction::BitCast;
3004 }
3005 case 8: {
3006 // ext, trunc -> bitcast, if the SrcTy and DstTy are the same
3007 // ext, trunc -> ext, if sizeof(SrcTy) < sizeof(DstTy)
3008 // ext, trunc -> trunc, if sizeof(SrcTy) > sizeof(DstTy)
3009 unsigned SrcSize = SrcTy->getScalarSizeInBits();
3010 unsigned DstSize = DstTy->getScalarSizeInBits();
3011 if (SrcTy == DstTy)
3012 return Instruction::BitCast;
3013 if (SrcSize < DstSize)
3014 return firstOp;
3015 if (SrcSize > DstSize)
3016 return secondOp;
3017 return 0;
3018 }
3019 case 9:
3020 // zext, sext -> zext, because sext can't sign extend after zext
3021 return Instruction::ZExt;
3022 case 11: {
3023 // inttoptr, ptrtoint/ptrtoaddr -> integer cast
3024 if (!DL)
3025 return 0;
3026 unsigned MidSize = secondOp == Instruction::PtrToAddr
3027 ? DL->getAddressSizeInBits(MidTy)
3028 : DL->getPointerTypeSizeInBits(MidTy);
3029 unsigned SrcSize = SrcTy->getScalarSizeInBits();
3030 unsigned DstSize = DstTy->getScalarSizeInBits();
3031 // If the middle size is smaller than both source and destination,
3032 // an additional masking operation would be required.
3033 if (MidSize < SrcSize && MidSize < DstSize)
3034 return 0;
3035 if (DstSize < SrcSize)
3036 return Instruction::Trunc;
3037 if (DstSize > SrcSize)
3038 return Instruction::ZExt;
3039 return Instruction::BitCast;
3040 }
3041 case 12:
3042 // addrspacecast, addrspacecast -> bitcast, if SrcAS == DstAS
3043 // addrspacecast, addrspacecast -> addrspacecast, if SrcAS != DstAS
3044 if (SrcTy->getPointerAddressSpace() != DstTy->getPointerAddressSpace())
3045 return Instruction::AddrSpaceCast;
3046 return Instruction::BitCast;
3047 case 13:
3048 // FIXME: this state can be merged with (1), but the following assert
3049 // is useful to check the correcteness of the sequence due to semantic
3050 // change of bitcast.
3051 // addrspacecast can only fold through a bitcast if the result remains a
3052 // pointer. A pointer-to-byte bitcast must stay as a separate bitcast.
3053 if (!DstTy->isPtrOrPtrVectorTy())
3054 return 0;
3055 assert(
3056 SrcTy->isPtrOrPtrVectorTy() &&
3057 MidTy->isPtrOrPtrVectorTy() &&
3058 DstTy->isPtrOrPtrVectorTy() &&
3059 SrcTy->getPointerAddressSpace() != MidTy->getPointerAddressSpace() &&
3060 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
3061 "Illegal addrspacecast, bitcast sequence!");
3062 // Allowed, use first cast's opcode
3063 return firstOp;
3064 case 14:
3065 // bitcast, addrspacecast -> addrspacecast
3066 // addrspacecast can only fold through a bitcast if the source was already
3067 // a pointer. A byte-to-pointer bitcast must stay as a separate bitcast.
3068 if (!SrcTy->isPtrOrPtrVectorTy())
3069 return 0;
3070 return Instruction::AddrSpaceCast;
3071 case 15:
3072 // FIXME: this state can be merged with (1), but the following assert
3073 // is useful to check the correcteness of the sequence due to semantic
3074 // change of bitcast.
3075 assert(
3076 SrcTy->isIntOrIntVectorTy() &&
3077 MidTy->isPtrOrPtrVectorTy() &&
3078 DstTy->isPtrOrPtrVectorTy() &&
3079 MidTy->getPointerAddressSpace() == DstTy->getPointerAddressSpace() &&
3080 "Illegal inttoptr, bitcast sequence!");
3081 // Allowed, use first cast's opcode
3082 return firstOp;
3083 case 16:
3084 // FIXME: this state can be merged with (2), but the following assert
3085 // is useful to check the correcteness of the sequence due to semantic
3086 // change of bitcast.
3087 assert(
3088 SrcTy->isPtrOrPtrVectorTy() &&
3089 MidTy->isPtrOrPtrVectorTy() &&
3090 DstTy->isIntOrIntVectorTy() &&
3091 SrcTy->getPointerAddressSpace() == MidTy->getPointerAddressSpace() &&
3092 "Illegal bitcast, ptrtoint sequence!");
3093 // Allowed, use second cast's opcode
3094 return secondOp;
3095 case 17:
3096 // (sitofp (zext x)) -> (uitofp x)
3097 return Instruction::UIToFP;
3098 case 99:
3099 // Cast combination can't happen (error in input). This is for all cases
3100 // where the MidTy is not the same for the two cast instructions.
3101 llvm_unreachable("Invalid Cast Combination");
3102 default:
3103 llvm_unreachable("Error in CastResults table!!!");
3104 }
3105}
3106
3108 const Twine &Name, InsertPosition InsertBefore) {
3109 assert(castIsValid(op, S, Ty) && "Invalid cast!");
3110 // Construct and return the appropriate CastInst subclass
3111 switch (op) {
3112 case Trunc: return new TruncInst (S, Ty, Name, InsertBefore);
3113 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
3114 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
3115 case FPTrunc: return new FPTruncInst (S, Ty, Name, InsertBefore);
3116 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
3117 case UIToFP: return new UIToFPInst (S, Ty, Name, InsertBefore);
3118 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore);
3119 case FPToUI: return new FPToUIInst (S, Ty, Name, InsertBefore);
3120 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore);
3121 case PtrToAddr: return new PtrToAddrInst (S, Ty, Name, InsertBefore);
3122 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
3123 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
3124 case BitCast:
3125 return new BitCastInst(S, Ty, Name, InsertBefore);
3126 case AddrSpaceCast:
3127 return new AddrSpaceCastInst(S, Ty, Name, InsertBefore);
3128 default:
3129 llvm_unreachable("Invalid opcode provided");
3130 }
3131}
3132
3134 InsertPosition InsertBefore) {
3135 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
3136 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
3137 return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
3138}
3139
3141 InsertPosition InsertBefore) {
3142 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
3143 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
3144 return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
3145}
3146
3148 InsertPosition InsertBefore) {
3149 if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
3150 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
3151 return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
3152}
3153
3154/// Create a BitCast or a PtrToInt cast instruction
3156 InsertPosition InsertBefore) {
3157 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
3158 assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
3159 "Invalid cast");
3160 assert(Ty->isVectorTy() == S->getType()->isVectorTy() && "Invalid cast");
3161 assert((!Ty->isVectorTy() ||
3162 cast<VectorType>(Ty)->getElementCount() ==
3163 cast<VectorType>(S->getType())->getElementCount()) &&
3164 "Invalid cast");
3165
3166 if (Ty->isIntOrIntVectorTy())
3167 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
3168
3169 return CreatePointerBitCastOrAddrSpaceCast(S, Ty, Name, InsertBefore);
3170}
3171
3173 Value *S, Type *Ty, const Twine &Name, InsertPosition InsertBefore) {
3174 assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
3175 assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
3176
3177 if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
3178 return Create(Instruction::AddrSpaceCast, S, Ty, Name, InsertBefore);
3179
3180 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
3181}
3182
3184 const Twine &Name,
3185 InsertPosition InsertBefore) {
3186 if (S->getType()->isPointerTy() && Ty->isIntegerTy())
3187 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
3188 if (S->getType()->isIntegerTy() && Ty->isPointerTy())
3189 return Create(Instruction::IntToPtr, S, Ty, Name, InsertBefore);
3190
3191 return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
3192}
3193
3195 const Twine &Name,
3196 InsertPosition InsertBefore) {
3197 assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
3198 "Invalid integer cast");
3199 unsigned SrcBits = C->getType()->getScalarSizeInBits();
3200 unsigned DstBits = Ty->getScalarSizeInBits();
3201 Instruction::CastOps opcode =
3202 (SrcBits == DstBits ? Instruction::BitCast :
3203 (SrcBits > DstBits ? Instruction::Trunc :
3204 (isSigned ? Instruction::SExt : Instruction::ZExt)));
3205 return Create(opcode, C, Ty, Name, InsertBefore);
3206}
3207
3209 InsertPosition InsertBefore) {
3210 assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
3211 "Invalid cast");
3212 unsigned SrcBits = C->getType()->getScalarSizeInBits();
3213 unsigned DstBits = Ty->getScalarSizeInBits();
3214 assert((C->getType() == Ty || SrcBits != DstBits) && "Invalid cast");
3215 Instruction::CastOps opcode =
3216 (SrcBits == DstBits ? Instruction::BitCast :
3217 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
3218 return Create(opcode, C, Ty, Name, InsertBefore);
3219}
3220
3221bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
3222 if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
3223 return false;
3224
3225 if (SrcTy == DestTy)
3226 return true;
3227
3228 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) {
3229 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy)) {
3230 if (SrcVecTy->getElementCount() == DestVecTy->getElementCount()) {
3231 // An element by element cast. Valid if casting the elements is valid.
3232 SrcTy = SrcVecTy->getElementType();
3233 DestTy = DestVecTy->getElementType();
3234 }
3235 }
3236 }
3237
3238 if (PointerType *DestPtrTy = dyn_cast<PointerType>(DestTy)) {
3239 if (PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy)) {
3240 return SrcPtrTy->getAddressSpace() == DestPtrTy->getAddressSpace();
3241 }
3242 }
3243
3244 TypeSize SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
3245 TypeSize DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
3246
3247 // Could still have vectors of pointers if the number of elements doesn't
3248 // match
3249 if (SrcBits.getKnownMinValue() == 0 || DestBits.getKnownMinValue() == 0)
3250 return false;
3251
3252 if (SrcBits != DestBits)
3253 return false;
3254
3255 return true;
3256}
3257
3259 const DataLayout &DL) {
3260 // ptrtoint and inttoptr are not allowed on non-integral pointers
3261 if (auto *PtrTy = dyn_cast<PointerType>(SrcTy))
3262 if (auto *IntTy = dyn_cast<IntegerType>(DestTy))
3263 return (IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy) &&
3264 !DL.isNonIntegralPointerType(PtrTy));
3265 if (auto *PtrTy = dyn_cast<PointerType>(DestTy))
3266 if (auto *IntTy = dyn_cast<IntegerType>(SrcTy))
3267 return (IntTy->getBitWidth() == DL.getPointerTypeSizeInBits(PtrTy) &&
3268 !DL.isNonIntegralPointerType(PtrTy));
3269
3270 return isBitCastable(SrcTy, DestTy);
3271}
3272
3273// Provide a way to get a "cast" where the cast opcode is inferred from the
3274// types and size of the operand. This, basically, is a parallel of the
3275// logic in the castIsValid function below. This axiom should hold:
3276// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
3277// should not assert in castIsValid. In other words, this produces a "correct"
3278// casting opcode for the arguments passed to it.
3281 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
3282 Type *SrcTy = Src->getType();
3283
3284 assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
3285 "Only first class types are castable!");
3286
3287 if (SrcTy == DestTy)
3288 return BitCast;
3289
3290 // FIXME: Check address space sizes here
3291 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
3292 if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
3293 if (SrcVecTy->getElementCount() == DestVecTy->getElementCount()) {
3294 // An element by element cast. Find the appropriate opcode based on the
3295 // element types.
3296 SrcTy = SrcVecTy->getElementType();
3297 DestTy = DestVecTy->getElementType();
3298 }
3299
3300 // Get the bit sizes, we'll need these
3301 // FIXME: This doesn't work for scalable vector types with different element
3302 // counts that don't call getElementType above.
3303 unsigned SrcBits =
3304 SrcTy->getPrimitiveSizeInBits().getFixedValue(); // 0 for ptr
3305 unsigned DestBits =
3306 DestTy->getPrimitiveSizeInBits().getFixedValue(); // 0 for ptr
3307
3308 // Run through the possibilities ...
3309 if (DestTy->isByteTy()) { // Casting to byte
3310 if (SrcTy->isIntegerTy()) { // Casting from integral
3311 assert(DestBits == SrcBits && "Illegal cast from integer to byte type");
3312 return BitCast;
3313 } else if (SrcTy->isPointerTy()) { // Casting from pointer
3314 assert(DestBits == SrcBits && "Illegal cast from pointer to byte type");
3315 return BitCast;
3316 }
3317 llvm_unreachable("Illegal cast to byte type");
3318 } else if (DestTy->isIntegerTy()) { // Casting to integral
3319 if (SrcTy->isIntegerTy()) { // Casting from integral
3320 if (DestBits < SrcBits)
3321 return Trunc; // int -> smaller int
3322 else if (DestBits > SrcBits) { // its an extension
3323 if (SrcIsSigned)
3324 return SExt; // signed -> SEXT
3325 else
3326 return ZExt; // unsigned -> ZEXT
3327 } else {
3328 return BitCast; // Same size, No-op cast
3329 }
3330 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
3331 if (DestIsSigned)
3332 return FPToSI; // FP -> sint
3333 else
3334 return FPToUI; // FP -> uint
3335 } else if (SrcTy->isVectorTy()) {
3336 assert(DestBits == SrcBits &&
3337 "Casting vector to integer of different width");
3338 return BitCast; // Same size, no-op cast
3339 } else {
3340 assert(SrcTy->isPointerTy() &&
3341 "Casting from a value that is not first-class type");
3342 return PtrToInt; // ptr -> int
3343 }
3344 } else if (DestTy->isFloatingPointTy()) { // Casting to floating pt
3345 if (SrcTy->isIntegerTy()) { // Casting from integral
3346 if (SrcIsSigned)
3347 return SIToFP; // sint -> FP
3348 else
3349 return UIToFP; // uint -> FP
3350 } else if (SrcTy->isFloatingPointTy()) { // Casting from floating pt
3351 if (DestBits < SrcBits) {
3352 return FPTrunc; // FP -> smaller FP
3353 } else if (DestBits > SrcBits) {
3354 return FPExt; // FP -> larger FP
3355 } else {
3356 return BitCast; // same size, no-op cast
3357 }
3358 } else if (SrcTy->isVectorTy()) {
3359 assert(DestBits == SrcBits &&
3360 "Casting vector to floating point of different width");
3361 return BitCast; // same size, no-op cast
3362 }
3363 llvm_unreachable("Casting pointer or non-first class to float");
3364 } else if (DestTy->isVectorTy()) {
3365 assert(DestBits == SrcBits &&
3366 "Illegal cast to vector (wrong type or size)");
3367 return BitCast;
3368 } else if (DestTy->isPointerTy()) {
3369 if (SrcTy->isPointerTy()) {
3370 if (DestTy->getPointerAddressSpace() != SrcTy->getPointerAddressSpace())
3371 return AddrSpaceCast;
3372 return BitCast; // ptr -> ptr
3373 } else if (SrcTy->isIntegerTy()) {
3374 return IntToPtr; // int -> ptr
3375 }
3376 llvm_unreachable("Casting pointer to other than pointer or int");
3377 }
3378 llvm_unreachable("Casting to type that is not first-class");
3379}
3380
3381//===----------------------------------------------------------------------===//
3382// CastInst SubClass Constructors
3383//===----------------------------------------------------------------------===//
3384
3385/// Check that the construction parameters for a CastInst are correct. This
3386/// could be broken out into the separate constructors but it is useful to have
3387/// it in one place and to eliminate the redundant code for getting the sizes
3388/// of the types involved.
3389bool
3391 if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
3392 SrcTy->isAggregateType() || DstTy->isAggregateType())
3393 return false;
3394
3395 // Get the size of the types in bits, and whether we are dealing
3396 // with vector types, we'll need this later.
3397 bool SrcIsVec = isa<VectorType>(SrcTy);
3398 bool DstIsVec = isa<VectorType>(DstTy);
3399 unsigned SrcScalarBitSize = SrcTy->getScalarSizeInBits();
3400 unsigned DstScalarBitSize = DstTy->getScalarSizeInBits();
3401
3402 // If these are vector types, get the lengths of the vectors (using zero for
3403 // scalar types means that checking that vector lengths match also checks that
3404 // scalars are not being converted to vectors or vectors to scalars).
3405 ElementCount SrcEC = SrcIsVec ? cast<VectorType>(SrcTy)->getElementCount()
3407 ElementCount DstEC = DstIsVec ? cast<VectorType>(DstTy)->getElementCount()
3409
3410 // Switch on the opcode provided
3411 switch (op) {
3412 default: return false; // This is an input error
3413 case Instruction::Trunc:
3414 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
3415 SrcEC == DstEC && SrcScalarBitSize > DstScalarBitSize;
3416 case Instruction::ZExt:
3417 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
3418 SrcEC == DstEC && SrcScalarBitSize < DstScalarBitSize;
3419 case Instruction::SExt:
3420 return SrcTy->isIntOrIntVectorTy() && DstTy->isIntOrIntVectorTy() &&
3421 SrcEC == DstEC && SrcScalarBitSize < DstScalarBitSize;
3422 case Instruction::FPTrunc:
3423 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
3424 SrcEC == DstEC && SrcScalarBitSize > DstScalarBitSize;
3425 case Instruction::FPExt:
3426 return SrcTy->isFPOrFPVectorTy() && DstTy->isFPOrFPVectorTy() &&
3427 SrcEC == DstEC && SrcScalarBitSize < DstScalarBitSize;
3428 case Instruction::UIToFP:
3429 case Instruction::SIToFP:
3430 return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy() &&
3431 SrcEC == DstEC;
3432 case Instruction::FPToUI:
3433 case Instruction::FPToSI:
3434 return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy() &&
3435 SrcEC == DstEC;
3436 case Instruction::PtrToAddr:
3437 case Instruction::PtrToInt:
3438 if (SrcEC != DstEC)
3439 return false;
3440 return SrcTy->isPtrOrPtrVectorTy() && DstTy->isIntOrIntVectorTy();
3441 case Instruction::IntToPtr:
3442 if (SrcEC != DstEC)
3443 return false;
3444 return SrcTy->isIntOrIntVectorTy() && DstTy->isPtrOrPtrVectorTy();
3445 case Instruction::BitCast: {
3446 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
3447 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
3448
3449 // BitCast implies a no-op cast of type only. No bits change.
3450 // However, you can't cast pointers to anything but pointers/bytes.
3451 if ((SrcPtrTy && DstTy->isByteOrByteVectorTy()) ||
3452 (SrcTy->isByteOrByteVectorTy() && DstPtrTy))
3453 return true;
3454 if (!SrcPtrTy != !DstPtrTy)
3455 return false;
3456
3457 // For non-pointer cases, the cast is okay if the source and destination bit
3458 // widths are identical.
3459 if (!SrcPtrTy)
3460 return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
3461
3462 // If both are pointers then the address spaces must match.
3463 if (SrcPtrTy->getAddressSpace() != DstPtrTy->getAddressSpace())
3464 return false;
3465
3466 // A vector of pointers must have the same number of elements.
3467 if (SrcIsVec && DstIsVec)
3468 return SrcEC == DstEC;
3469 if (SrcIsVec)
3470 return SrcEC == ElementCount::getFixed(1);
3471 if (DstIsVec)
3472 return DstEC == ElementCount::getFixed(1);
3473
3474 return true;
3475 }
3476 case Instruction::AddrSpaceCast: {
3477 PointerType *SrcPtrTy = dyn_cast<PointerType>(SrcTy->getScalarType());
3478 if (!SrcPtrTy)
3479 return false;
3480
3481 PointerType *DstPtrTy = dyn_cast<PointerType>(DstTy->getScalarType());
3482 if (!DstPtrTy)
3483 return false;
3484
3485 if (SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
3486 return false;
3487
3488 return SrcEC == DstEC;
3489 }
3490 }
3491}
3492
3494 InsertPosition InsertBefore)
3495 : CastInst(Ty, Trunc, S, Name, InsertBefore) {
3496 assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
3497}
3498
3499ZExtInst::ZExtInst(Value *S, Type *Ty, const Twine &Name,
3500 InsertPosition InsertBefore)
3501 : CastInst(Ty, ZExt, S, Name, InsertBefore) {
3502 assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
3503}
3504
3505SExtInst::SExtInst(Value *S, Type *Ty, const Twine &Name,
3506 InsertPosition InsertBefore)
3507 : CastInst(Ty, SExt, S, Name, InsertBefore) {
3508 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
3509}
3510
3512 InsertPosition InsertBefore)
3513 : CastInst(Ty, FPTrunc, S, Name, InsertBefore) {
3514 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
3515}
3516
3518 InsertPosition InsertBefore)
3519 : CastInst(Ty, FPExt, S, Name, InsertBefore) {
3520 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
3521}
3522
3524 InsertPosition InsertBefore)
3525 : CastInst(Ty, UIToFP, S, Name, InsertBefore) {
3526 assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
3527}
3528
3530 InsertPosition InsertBefore)
3531 : CastInst(Ty, SIToFP, S, Name, InsertBefore) {
3532 assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
3533}
3534
3536 InsertPosition InsertBefore)
3537 : CastInst(Ty, FPToUI, S, Name, InsertBefore) {
3538 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
3539}
3540
3542 InsertPosition InsertBefore)
3543 : CastInst(Ty, FPToSI, S, Name, InsertBefore) {
3544 assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
3545}
3546
3548 InsertPosition InsertBefore)
3549 : CastInst(Ty, PtrToInt, S, Name, InsertBefore) {
3550 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
3551}
3552
3554 InsertPosition InsertBefore)
3555 : CastInst(Ty, PtrToAddr, S, Name, InsertBefore) {
3556 assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToAddr");
3557}
3558
3560 InsertPosition InsertBefore)
3561 : CastInst(Ty, IntToPtr, S, Name, InsertBefore) {
3562 assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
3563}
3564
3566 InsertPosition InsertBefore)
3567 : CastInst(Ty, BitCast, S, Name, InsertBefore) {
3568 assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
3569}
3570
3572 InsertPosition InsertBefore)
3573 : CastInst(Ty, AddrSpaceCast, S, Name, InsertBefore) {
3574 assert(castIsValid(getOpcode(), S, Ty) && "Illegal AddrSpaceCast");
3575}
3576
3577//===----------------------------------------------------------------------===//
3578// CmpInst Classes
3579//===----------------------------------------------------------------------===//
3580
3582 Value *RHS, const Twine &Name, InsertPosition InsertBefore)
3583 : Instruction(ty, op, AllocMarker, InsertBefore) {
3584 Op<0>() = LHS;
3585 Op<1>() = RHS;
3586 setPredicate(predicate);
3587 setName(Name);
3588}
3589
3591 const Twine &Name, InsertPosition InsertBefore) {
3592 if (Op == Instruction::ICmp) {
3593 if (InsertBefore.isValid())
3594 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3595 S1, S2, Name);
3596 else
3597 return new ICmpInst(CmpInst::Predicate(predicate),
3598 S1, S2, Name);
3599 }
3600
3601 if (InsertBefore.isValid())
3602 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3603 S1, S2, Name);
3604 else
3605 return new FCmpInst(CmpInst::Predicate(predicate),
3606 S1, S2, Name);
3607}
3608
3610 Value *S2,
3611 const Instruction *FlagsSource,
3612 const Twine &Name,
3613 InsertPosition InsertBefore) {
3614 CmpInst *Inst = Create(Op, Pred, S1, S2, Name, InsertBefore);
3615 Inst->copyIRFlags(FlagsSource);
3616 return Inst;
3617}
3618
3620 if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
3621 IC->swapOperands();
3622 else
3623 cast<FCmpInst>(this)->swapOperands();
3624}
3625
3627 if (const ICmpInst *IC = dyn_cast<ICmpInst>(this))
3628 return IC->isCommutative();
3629 return cast<FCmpInst>(this)->isCommutative();
3630}
3631
3634 return ICmpInst::isEquality(P);
3636 return FCmpInst::isEquality(P);
3637 llvm_unreachable("Unsupported predicate kind");
3638}
3639
3640// Returns true if either operand of CmpInst is a provably non-zero
3641// floating-point constant.
3642static bool hasNonZeroFPOperands(const CmpInst *Cmp) {
3643 auto *LHS = dyn_cast<Constant>(Cmp->getOperand(0));
3644 auto *RHS = dyn_cast<Constant>(Cmp->getOperand(1));
3645 if (auto *Const = LHS ? LHS : RHS) {
3646 using namespace llvm::PatternMatch;
3647 return match(Const, m_NonZeroNotDenormalFP());
3648 }
3649 return false;
3650}
3651
3652// Floating-point equality is not an equivalence when comparing +0.0 with
3653// -0.0, when comparing NaN with another value, or when flushing
3654// denormals-to-zero.
3655bool CmpInst::isEquivalence(bool Invert) const {
3656 switch (Invert ? getInversePredicate() : getPredicate()) {
3658 return true;
3660 if (!hasNoNaNs())
3661 return false;
3662 [[fallthrough]];
3664 return hasNonZeroFPOperands(this);
3665 default:
3666 return false;
3667 }
3668}
3669
3671 switch (pred) {
3672 default: llvm_unreachable("Unknown cmp predicate!");
3673 case ICMP_EQ: return ICMP_NE;
3674 case ICMP_NE: return ICMP_EQ;
3675 case ICMP_UGT: return ICMP_ULE;
3676 case ICMP_ULT: return ICMP_UGE;
3677 case ICMP_UGE: return ICMP_ULT;
3678 case ICMP_ULE: return ICMP_UGT;
3679 case ICMP_SGT: return ICMP_SLE;
3680 case ICMP_SLT: return ICMP_SGE;
3681 case ICMP_SGE: return ICMP_SLT;
3682 case ICMP_SLE: return ICMP_SGT;
3683
3684 case FCMP_OEQ: return FCMP_UNE;
3685 case FCMP_ONE: return FCMP_UEQ;
3686 case FCMP_OGT: return FCMP_ULE;
3687 case FCMP_OLT: return FCMP_UGE;
3688 case FCMP_OGE: return FCMP_ULT;
3689 case FCMP_OLE: return FCMP_UGT;
3690 case FCMP_UEQ: return FCMP_ONE;
3691 case FCMP_UNE: return FCMP_OEQ;
3692 case FCMP_UGT: return FCMP_OLE;
3693 case FCMP_ULT: return FCMP_OGE;
3694 case FCMP_UGE: return FCMP_OLT;
3695 case FCMP_ULE: return FCMP_OGT;
3696 case FCMP_ORD: return FCMP_UNO;
3697 case FCMP_UNO: return FCMP_ORD;
3698 case FCMP_TRUE: return FCMP_FALSE;
3699 case FCMP_FALSE: return FCMP_TRUE;
3700 }
3701}
3702
3704 switch (Pred) {
3705 default: return "unknown";
3706 case FCmpInst::FCMP_FALSE: return "false";
3707 case FCmpInst::FCMP_OEQ: return "oeq";
3708 case FCmpInst::FCMP_OGT: return "ogt";
3709 case FCmpInst::FCMP_OGE: return "oge";
3710 case FCmpInst::FCMP_OLT: return "olt";
3711 case FCmpInst::FCMP_OLE: return "ole";
3712 case FCmpInst::FCMP_ONE: return "one";
3713 case FCmpInst::FCMP_ORD: return "ord";
3714 case FCmpInst::FCMP_UNO: return "uno";
3715 case FCmpInst::FCMP_UEQ: return "ueq";
3716 case FCmpInst::FCMP_UGT: return "ugt";
3717 case FCmpInst::FCMP_UGE: return "uge";
3718 case FCmpInst::FCMP_ULT: return "ult";
3719 case FCmpInst::FCMP_ULE: return "ule";
3720 case FCmpInst::FCMP_UNE: return "une";
3721 case FCmpInst::FCMP_TRUE: return "true";
3722 case ICmpInst::ICMP_EQ: return "eq";
3723 case ICmpInst::ICMP_NE: return "ne";
3724 case ICmpInst::ICMP_SGT: return "sgt";
3725 case ICmpInst::ICMP_SGE: return "sge";
3726 case ICmpInst::ICMP_SLT: return "slt";
3727 case ICmpInst::ICMP_SLE: return "sle";
3728 case ICmpInst::ICMP_UGT: return "ugt";
3729 case ICmpInst::ICMP_UGE: return "uge";
3730 case ICmpInst::ICMP_ULT: return "ult";
3731 case ICmpInst::ICMP_ULE: return "ule";
3732 }
3733}
3734
3736 OS << CmpInst::getPredicateName(Pred);
3737 return OS;
3738}
3739
3741 switch (pred) {
3742 default: llvm_unreachable("Unknown icmp predicate!");
3743 case ICMP_EQ: case ICMP_NE:
3744 case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE:
3745 return pred;
3746 case ICMP_UGT: return ICMP_SGT;
3747 case ICMP_ULT: return ICMP_SLT;
3748 case ICMP_UGE: return ICMP_SGE;
3749 case ICMP_ULE: return ICMP_SLE;
3750 }
3751}
3752
3754 switch (pred) {
3755 default: llvm_unreachable("Unknown icmp predicate!");
3756 case ICMP_EQ: case ICMP_NE:
3757 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE:
3758 return pred;
3759 case ICMP_SGT: return ICMP_UGT;
3760 case ICMP_SLT: return ICMP_ULT;
3761 case ICMP_SGE: return ICMP_UGE;
3762 case ICMP_SLE: return ICMP_ULE;
3763 }
3764}
3765
3767 switch (pred) {
3768 default: llvm_unreachable("Unknown cmp predicate!");
3769 case ICMP_EQ: case ICMP_NE:
3770 return pred;
3771 case ICMP_SGT: return ICMP_SLT;
3772 case ICMP_SLT: return ICMP_SGT;
3773 case ICMP_SGE: return ICMP_SLE;
3774 case ICMP_SLE: return ICMP_SGE;
3775 case ICMP_UGT: return ICMP_ULT;
3776 case ICMP_ULT: return ICMP_UGT;
3777 case ICMP_UGE: return ICMP_ULE;
3778 case ICMP_ULE: return ICMP_UGE;
3779
3780 case FCMP_FALSE: case FCMP_TRUE:
3781 case FCMP_OEQ: case FCMP_ONE:
3782 case FCMP_UEQ: case FCMP_UNE:
3783 case FCMP_ORD: case FCMP_UNO:
3784 return pred;
3785 case FCMP_OGT: return FCMP_OLT;
3786 case FCMP_OLT: return FCMP_OGT;
3787 case FCMP_OGE: return FCMP_OLE;
3788 case FCMP_OLE: return FCMP_OGE;
3789 case FCMP_UGT: return FCMP_ULT;
3790 case FCMP_ULT: return FCMP_UGT;
3791 case FCMP_UGE: return FCMP_ULE;
3792 case FCMP_ULE: return FCMP_UGE;
3793 }
3794}
3795
3797 switch (pred) {
3798 case ICMP_SGE:
3799 case ICMP_SLE:
3800 case ICMP_UGE:
3801 case ICMP_ULE:
3802 case FCMP_OGE:
3803 case FCMP_OLE:
3804 case FCMP_UGE:
3805 case FCMP_ULE:
3806 return true;
3807 default:
3808 return false;
3809 }
3810}
3811
3813 switch (pred) {
3814 case ICMP_SGT:
3815 case ICMP_SLT:
3816 case ICMP_UGT:
3817 case ICMP_ULT:
3818 case FCMP_OGT:
3819 case FCMP_OLT:
3820 case FCMP_UGT:
3821 case FCMP_ULT:
3822 return true;
3823 default:
3824 return false;
3825 }
3826}
3827
3829 switch (pred) {
3830 case ICMP_SGE:
3831 return ICMP_SGT;
3832 case ICMP_SLE:
3833 return ICMP_SLT;
3834 case ICMP_UGE:
3835 return ICMP_UGT;
3836 case ICMP_ULE:
3837 return ICMP_ULT;
3838 case FCMP_OGE:
3839 return FCMP_OGT;
3840 case FCMP_OLE:
3841 return FCMP_OLT;
3842 case FCMP_UGE:
3843 return FCMP_UGT;
3844 case FCMP_ULE:
3845 return FCMP_ULT;
3846 default:
3847 return pred;
3848 }
3849}
3850
3852 switch (pred) {
3853 case ICMP_SGT:
3854 return ICMP_SGE;
3855 case ICMP_SLT:
3856 return ICMP_SLE;
3857 case ICMP_UGT:
3858 return ICMP_UGE;
3859 case ICMP_ULT:
3860 return ICMP_ULE;
3861 case FCMP_OGT:
3862 return FCMP_OGE;
3863 case FCMP_OLT:
3864 return FCMP_OLE;
3865 case FCMP_UGT:
3866 return FCMP_UGE;
3867 case FCMP_ULT:
3868 return FCMP_ULE;
3869 default:
3870 return pred;
3871 }
3872}
3873
3875 assert(CmpInst::isRelational(pred) && "Call only with relational predicate!");
3876
3877 if (isStrictPredicate(pred))
3878 return getNonStrictPredicate(pred);
3879 if (isNonStrictPredicate(pred))
3880 return getStrictPredicate(pred);
3881
3882 llvm_unreachable("Unknown predicate!");
3883}
3884
3885bool ICmpInst::compare(const APInt &LHS, const APInt &RHS,
3886 ICmpInst::Predicate Pred) {
3887 assert(ICmpInst::isIntPredicate(Pred) && "Only for integer predicates!");
3888 switch (Pred) {
3890 return LHS.eq(RHS);
3892 return LHS.ne(RHS);
3894 return LHS.ugt(RHS);
3896 return LHS.uge(RHS);
3898 return LHS.ult(RHS);
3900 return LHS.ule(RHS);
3902 return LHS.sgt(RHS);
3904 return LHS.sge(RHS);
3906 return LHS.slt(RHS);
3908 return LHS.sle(RHS);
3909 default:
3910 llvm_unreachable("Unexpected non-integer predicate.");
3911 };
3912}
3913
3914bool FCmpInst::compare(const APFloat &LHS, const APFloat &RHS,
3915 FCmpInst::Predicate Pred) {
3916 APFloat::cmpResult R = LHS.compare(RHS);
3917 switch (Pred) {
3918 default:
3919 llvm_unreachable("Invalid FCmp Predicate");
3921 return false;
3923 return true;
3924 case FCmpInst::FCMP_UNO:
3925 return R == APFloat::cmpUnordered;
3926 case FCmpInst::FCMP_ORD:
3927 return R != APFloat::cmpUnordered;
3928 case FCmpInst::FCMP_UEQ:
3929 return R == APFloat::cmpUnordered || R == APFloat::cmpEqual;
3930 case FCmpInst::FCMP_OEQ:
3931 return R == APFloat::cmpEqual;
3932 case FCmpInst::FCMP_UNE:
3933 return R != APFloat::cmpEqual;
3934 case FCmpInst::FCMP_ONE:
3936 case FCmpInst::FCMP_ULT:
3937 return R == APFloat::cmpUnordered || R == APFloat::cmpLessThan;
3938 case FCmpInst::FCMP_OLT:
3939 return R == APFloat::cmpLessThan;
3940 case FCmpInst::FCMP_UGT:
3942 case FCmpInst::FCMP_OGT:
3943 return R == APFloat::cmpGreaterThan;
3944 case FCmpInst::FCMP_ULE:
3945 return R != APFloat::cmpGreaterThan;
3946 case FCmpInst::FCMP_OLE:
3947 return R == APFloat::cmpLessThan || R == APFloat::cmpEqual;
3948 case FCmpInst::FCMP_UGE:
3949 return R != APFloat::cmpLessThan;
3950 case FCmpInst::FCMP_OGE:
3951 return R == APFloat::cmpGreaterThan || R == APFloat::cmpEqual;
3952 }
3953}
3954
3955std::optional<bool> ICmpInst::compare(const KnownBits &LHS,
3956 const KnownBits &RHS,
3957 ICmpInst::Predicate Pred) {
3958 switch (Pred) {
3959 case ICmpInst::ICMP_EQ:
3960 return KnownBits::eq(LHS, RHS);
3961 case ICmpInst::ICMP_NE:
3962 return KnownBits::ne(LHS, RHS);
3963 case ICmpInst::ICMP_UGE:
3964 return KnownBits::uge(LHS, RHS);
3965 case ICmpInst::ICMP_UGT:
3966 return KnownBits::ugt(LHS, RHS);
3967 case ICmpInst::ICMP_ULE:
3968 return KnownBits::ule(LHS, RHS);
3969 case ICmpInst::ICMP_ULT:
3970 return KnownBits::ult(LHS, RHS);
3971 case ICmpInst::ICMP_SGE:
3972 return KnownBits::sge(LHS, RHS);
3973 case ICmpInst::ICMP_SGT:
3974 return KnownBits::sgt(LHS, RHS);
3975 case ICmpInst::ICMP_SLE:
3976 return KnownBits::sle(LHS, RHS);
3977 case ICmpInst::ICMP_SLT:
3978 return KnownBits::slt(LHS, RHS);
3979 default:
3980 llvm_unreachable("Unexpected non-integer predicate.");
3981 }
3982}
3983
3985 if (CmpInst::isEquality(pred))
3986 return pred;
3987 if (isSigned(pred))
3988 return getUnsignedPredicate(pred);
3989 if (isUnsigned(pred))
3990 return getSignedPredicate(pred);
3991
3992 llvm_unreachable("Unknown predicate!");
3993}
3994
3996 switch (predicate) {
3997 default: return false;
4000 case FCmpInst::FCMP_ORD: return true;
4001 }
4002}
4003
4005 switch (predicate) {
4006 default: return false;
4009 case FCmpInst::FCMP_UNO: return true;
4010 }
4011}
4012
4014 switch(predicate) {
4015 default: return false;
4016 case ICMP_EQ: case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
4017 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
4018 }
4019}
4020
4022 switch(predicate) {
4023 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
4024 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
4025 default: return false;
4026 }
4027}
4028
4030 // If the predicates match, then we know the first condition implies the
4031 // second is true.
4032 if (CmpPredicate::getMatching(Pred1, Pred2))
4033 return true;
4034
4035 if (Pred1.hasSameSign() && CmpInst::isSigned(Pred2))
4037 else if (Pred2.hasSameSign() && CmpInst::isSigned(Pred1))
4039
4040 switch (Pred1) {
4041 default:
4042 break;
4043 case CmpInst::ICMP_EQ:
4044 // A == B implies A >=u B, A <=u B, A >=s B, and A <=s B are true.
4045 return Pred2 == CmpInst::ICMP_UGE || Pred2 == CmpInst::ICMP_ULE ||
4046 Pred2 == CmpInst::ICMP_SGE || Pred2 == CmpInst::ICMP_SLE;
4047 case CmpInst::ICMP_UGT: // A >u B implies A != B and A >=u B are true.
4048 return Pred2 == CmpInst::ICMP_NE || Pred2 == CmpInst::ICMP_UGE;
4049 case CmpInst::ICMP_ULT: // A <u B implies A != B and A <=u B are true.
4050 return Pred2 == CmpInst::ICMP_NE || Pred2 == CmpInst::ICMP_ULE;
4051 case CmpInst::ICMP_SGT: // A >s B implies A != B and A >=s B are true.
4052 return Pred2 == CmpInst::ICMP_NE || Pred2 == CmpInst::ICMP_SGE;
4053 case CmpInst::ICMP_SLT: // A <s B implies A != B and A <=s B are true.
4054 return Pred2 == CmpInst::ICMP_NE || Pred2 == CmpInst::ICMP_SLE;
4055 }
4056 return false;
4057}
4058
4060 CmpPredicate Pred2) {
4061 return isImpliedTrueByMatchingCmp(Pred1,
4063}
4064
4066 CmpPredicate Pred2) {
4067 if (isImpliedTrueByMatchingCmp(Pred1, Pred2))
4068 return true;
4069 if (isImpliedFalseByMatchingCmp(Pred1, Pred2))
4070 return false;
4071 return std::nullopt;
4072}
4073
4074//===----------------------------------------------------------------------===//
4075// CmpPredicate Implementation
4076//===----------------------------------------------------------------------===//
4077
4078std::optional<CmpPredicate> CmpPredicate::getMatching(CmpPredicate A,
4079 CmpPredicate B) {
4080 if (A.Pred == B.Pred)
4081 return A.HasSameSign == B.HasSameSign ? A : CmpPredicate(A.Pred);
4083 return {};
4084 if (A.HasSameSign &&
4086 return B.Pred;
4087 if (B.HasSameSign &&
4089 return A.Pred;
4090 return {};
4091}
4092
4096
4098 if (auto *ICI = dyn_cast<ICmpInst>(Cmp))
4099 return ICI->getCmpPredicate();
4100 return Cmp->getPredicate();
4101}
4102
4106
4110
4112 return getSwapped(get(Cmp));
4113}
4114
4115//===----------------------------------------------------------------------===//
4116// SwitchInst Implementation
4117//===----------------------------------------------------------------------===//
4118
4119void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumReserved) {
4120 assert(Value && Default && NumReserved);
4121 ReservedSpace = NumReserved;
4123 allocHungoffUses(ReservedSpace);
4124
4125 Op<0>() = Value;
4126 Op<1>() = Default;
4127}
4128
4129/// SwitchInst ctor - Create a new switch instruction, specifying a value to
4130/// switch on and a default destination. The number of additional cases can
4131/// be specified here to make memory allocation more efficient. This
4132/// constructor can also autoinsert before another instruction.
4133SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
4134 InsertPosition InsertBefore)
4135 : Instruction(Type::getVoidTy(Value->getContext()), Instruction::Switch,
4136 AllocMarker, InsertBefore) {
4137 init(Value, Default, 2 + NumCases);
4138}
4139
4140SwitchInst::SwitchInst(const SwitchInst &SI)
4141 : Instruction(SI.getType(), Instruction::Switch, AllocMarker) {
4142 init(SI.getCondition(), SI.getDefaultDest(), SI.getNumOperands());
4143 setNumHungOffUseOperands(SI.getNumOperands());
4144 Use *OL = getOperandList();
4145 ConstantInt **VL = case_values();
4146 const Use *InOL = SI.getOperandList();
4147 ConstantInt *const *InVL = SI.case_values();
4148 for (unsigned i = 2, E = SI.getNumOperands(); i != E; ++i) {
4149 OL[i] = InOL[i];
4150 VL[i - 2] = InVL[i - 2];
4151 }
4152 SubclassOptionalData = SI.SubclassOptionalData;
4153}
4154
4155/// addCase - Add an entry to the switch instruction...
4156///
4158 unsigned NewCaseIdx = getNumCases();
4159 unsigned OpNo = getNumOperands();
4160 if (OpNo + 1 > ReservedSpace)
4161 growOperands(); // Get more space!
4162 // Initialize some new operands.
4163 assert(OpNo < ReservedSpace && "Growing didn't work!");
4164 setNumHungOffUseOperands(OpNo + 1);
4165 CaseHandle Case(this, NewCaseIdx);
4166 Case.setValue(OnVal);
4167 Case.setSuccessor(Dest);
4168}
4169
4170/// removeCase - This method removes the specified case and its successor
4171/// from the switch instruction.
4173 unsigned idx = I->getCaseIndex();
4174
4175 assert(2 + idx < getNumOperands() && "Case index out of range!!!");
4176
4177 unsigned NumOps = getNumOperands();
4178 Use *OL = getOperandList();
4179 ConstantInt **VL = case_values();
4180
4181 // Overwrite this case with the end of the list.
4182 if (2 + idx + 1 != NumOps) {
4183 OL[2 + idx] = OL[NumOps - 1];
4184 VL[idx] = VL[NumOps - 2 - 1];
4185 }
4186
4187 // Nuke the last value.
4188 OL[NumOps - 1].set(nullptr);
4189 VL[NumOps - 2 - 1] = nullptr;
4191
4192 return CaseIt(this, idx);
4193}
4194
4195/// growOperands - grow operands - This grows the operand list in response
4196/// to a push_back style of operation. This grows the number of ops by 3 times.
4197///
4198void SwitchInst::growOperands() {
4199 unsigned e = getNumOperands();
4200 unsigned NumOps = e*3;
4201
4202 ReservedSpace = NumOps;
4203 growHungoffUses(ReservedSpace, /*WithExtraValues=*/true);
4204}
4205
4207 MDNode *ProfileData = getBranchWeightMDNode(SI);
4208 if (!ProfileData)
4209 return;
4210
4211 if (getNumBranchWeights(*ProfileData) != SI.getNumSuccessors()) {
4212 llvm_unreachable("number of prof branch_weights metadata operands does "
4213 "not correspond to number of succesors");
4214 }
4215
4217 if (!extractBranchWeights(ProfileData, Weights))
4218 return;
4219 this->Weights = std::move(Weights);
4220}
4221
4224 if (Weights) {
4225 assert(SI.getNumSuccessors() == Weights->size() &&
4226 "num of prof branch_weights must accord with num of successors");
4227 Changed = true;
4228 // Copy the last case to the place of the removed one and shrink.
4229 // This is tightly coupled with the way SwitchInst::removeCase() removes
4230 // the cases in SwitchInst::removeCase(CaseIt).
4231 (*Weights)[I->getCaseIndex() + 1] = Weights->back();
4232 Weights->pop_back();
4233 }
4234 return SI.removeCase(I);
4235}
4236
4238 auto *DestBlock = I->getCaseSuccessor();
4239 if (Weights) {
4240 auto Weight = getSuccessorWeight(I->getCaseIndex() + 1);
4241 (*Weights)[0] = Weight.value();
4242 }
4243
4244 SI.setDefaultDest(DestBlock);
4245}
4246
4248 ConstantInt *OnVal, BasicBlock *Dest,
4250 SI.addCase(OnVal, Dest);
4251
4252 if (!Weights && W && *W) {
4253 Changed = true;
4254 Weights = SmallVector<uint32_t, 8>(SI.getNumSuccessors(), 0);
4255 (*Weights)[SI.getNumSuccessors() - 1] = *W;
4256 } else if (Weights) {
4257 Changed = true;
4258 Weights->push_back(W.value_or(0));
4259 }
4260 if (Weights)
4261 assert(SI.getNumSuccessors() == Weights->size() &&
4262 "num of prof branch_weights must accord with num of successors");
4263}
4264
4267 // Instruction is erased. Mark as unchanged to not touch it in the destructor.
4268 Changed = false;
4269 if (Weights)
4270 Weights->resize(0);
4271 return SI.eraseFromParent();
4272}
4273
4276 if (!Weights)
4277 return std::nullopt;
4278 return (*Weights)[idx];
4279}
4280
4283 if (!W)
4284 return;
4285
4286 if (!Weights && *W)
4287 Weights = SmallVector<uint32_t, 8>(SI.getNumSuccessors(), 0);
4288
4289 if (Weights) {
4290 auto &OldW = (*Weights)[idx];
4291 if (*W != OldW) {
4292 Changed = true;
4293 OldW = *W;
4294 }
4295 }
4296}
4297
4300 unsigned idx) {
4301 if (MDNode *ProfileData = getValidBranchWeightMDNode(SI)) {
4302 SmallVector<uint32_t> Weights;
4303 extractFromBranchWeightMD32(ProfileData, Weights);
4304 return Weights[idx];
4305 }
4306
4307 return std::nullopt;
4308}
4309
4310//===----------------------------------------------------------------------===//
4311// IndirectBrInst Implementation
4312//===----------------------------------------------------------------------===//
4313
4314void IndirectBrInst::init(Value *Address, unsigned NumDests) {
4315 assert(Address && Address->getType()->isPointerTy() &&
4316 "Address of indirectbr must be a pointer");
4317 ReservedSpace = 1+NumDests;
4319 allocHungoffUses(ReservedSpace);
4320
4321 Op<0>() = Address;
4322}
4323
4324
4325/// growOperands - grow operands - This grows the operand list in response
4326/// to a push_back style of operation. This grows the number of ops by 2 times.
4327///
4328void IndirectBrInst::growOperands() {
4329 unsigned e = getNumOperands();
4330 unsigned NumOps = e*2;
4331
4332 ReservedSpace = NumOps;
4333 growHungoffUses(ReservedSpace);
4334}
4335
4336IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
4337 InsertPosition InsertBefore)
4338 : Instruction(Type::getVoidTy(Address->getContext()),
4339 Instruction::IndirectBr, AllocMarker, InsertBefore) {
4340 init(Address, NumCases);
4341}
4342
4343IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
4344 : Instruction(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
4345 AllocMarker) {
4346 NumUserOperands = IBI.NumUserOperands;
4347 allocHungoffUses(IBI.getNumOperands());
4348 Use *OL = getOperandList();
4349 const Use *InOL = IBI.getOperandList();
4350 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
4351 OL[i] = InOL[i];
4352 SubclassOptionalData = IBI.SubclassOptionalData;
4353}
4354
4355/// addDestination - Add a destination.
4356///
4358 unsigned OpNo = getNumOperands();
4359 if (OpNo+1 > ReservedSpace)
4360 growOperands(); // Get more space!
4361 // Initialize some new operands.
4362 assert(OpNo < ReservedSpace && "Growing didn't work!");
4364 getOperandList()[OpNo] = DestBB;
4365}
4366
4367/// removeDestination - This method removes the specified successor from the
4368/// indirectbr instruction.
4370 assert(idx < getNumOperands()-1 && "Successor index out of range!");
4371
4372 unsigned NumOps = getNumOperands();
4373 Use *OL = getOperandList();
4374
4375 // Replace this value with the last one.
4376 OL[idx+1] = OL[NumOps-1];
4377
4378 // Nuke the last value.
4379 OL[NumOps-1].set(nullptr);
4381}
4382
4383//===----------------------------------------------------------------------===//
4384// FreezeInst Implementation
4385//===----------------------------------------------------------------------===//
4386
4387FreezeInst::FreezeInst(Value *S, const Twine &Name, InsertPosition InsertBefore)
4388 : UnaryInstruction(S->getType(), Freeze, S, InsertBefore) {
4389 setName(Name);
4390}
4391
4392//===----------------------------------------------------------------------===//
4393// cloneImpl() implementations
4394//===----------------------------------------------------------------------===//
4395
4396// Define these methods here so vtables don't get emitted into every translation
4397// unit that uses these classes.
4398
4399GetElementPtrInst *GetElementPtrInst::cloneImpl() const {
4401 return new (AllocMarker) GetElementPtrInst(*this, AllocMarker);
4402}
4403
4407
4409 auto *I = static_cast<FPUnaryOperator *>(Create(getOpcode(), Op<0>()));
4410 I->FMF = FMF;
4411 return I;
4412}
4413
4416 "Should call FPBinaryOperator::cloneImpl!");
4417 return Create(getOpcode(), Op<0>(), Op<1>());
4418}
4419
4421 auto *I =
4422 static_cast<FPBinaryOperator *>(Create(getOpcode(), Op<0>(), Op<1>()));
4423 I->FMF = FMF;
4424 return I;
4425}
4426
4428 auto *I = new FCmpInst(getPredicate(), Op<0>(), Op<1>());
4429 I->FMF = FMF;
4430 return I;
4431}
4432
4434 auto *Result = new ICmpInst(getPredicate(), Op<0>(), Op<1>());
4435 Result->setSameSign(hasSameSign());
4436 return Result;
4437}
4438
4439ExtractValueInst *ExtractValueInst::cloneImpl() const {
4440 return new ExtractValueInst(*this);
4441}
4442
4443InsertValueInst *InsertValueInst::cloneImpl() const {
4444 return new InsertValueInst(*this);
4445}
4446
4449 getOperand(0), getAlign());
4450 Result->setUsedWithInAlloca(isUsedWithInAlloca());
4451 Result->setSwiftError(isSwiftError());
4452 return Result;
4453}
4454
4456 return new LoadInst(getType(), getOperand(0), Twine(), isVolatile(),
4458}
4459
4464
4469 Result->setVolatile(isVolatile());
4470 Result->setWeak(isWeak());
4471 return Result;
4472}
4473
4475 AtomicRMWInst *Result = new AtomicRMWInst(
4478 Result->setVolatile(isVolatile());
4479 return Result;
4480}
4481
4485
4487 return new TruncInst(getOperand(0), getType());
4488}
4489
4491 return new ZExtInst(getOperand(0), getType());
4492}
4493
4495 return new SExtInst(getOperand(0), getType());
4496}
4497
4499 auto *I = new FPTruncInst(getOperand(0), getType());
4500 I->FMF = FMF;
4501 return I;
4502}
4503
4505 auto *I = new FPExtInst(getOperand(0), getType());
4506 I->FMF = FMF;
4507 return I;
4508}
4509
4511 auto *Result = new UIToFPInst(getOperand(0), getType());
4512 Result->FMF = FMF;
4513 return Result;
4514}
4515
4517 auto *Result = new SIToFPInst(getOperand(0), getType());
4518 Result->FMF = FMF;
4519 return Result;
4520}
4521
4523 return new FPToUIInst(getOperand(0), getType());
4524}
4525
4527 return new FPToSIInst(getOperand(0), getType());
4528}
4529
4531 return new PtrToIntInst(getOperand(0), getType());
4532}
4533
4537
4539 return new IntToPtrInst(getOperand(0), getType());
4540}
4541
4543 return new BitCastInst(getOperand(0), getType());
4544}
4545
4549
4550CallInst *CallInst::cloneImpl() const {
4551 if (hasOperandBundles()) {
4555 return new (AllocMarker) CallInst(*this, AllocMarker);
4556 }
4558 return new (AllocMarker) CallInst(*this, AllocMarker);
4559}
4560
4561SelectInst *SelectInst::cloneImpl() const {
4563 I->FMF = FMF;
4564 return I;
4565}
4566
4568 return new VAArgInst(getOperand(0), getType());
4569}
4570
4571ExtractElementInst *ExtractElementInst::cloneImpl() const {
4573}
4574
4575InsertElementInst *InsertElementInst::cloneImpl() const {
4577}
4578
4582
4583PHINode *PHINode::cloneImpl() const { return new (AllocMarker) PHINode(*this); }
4584
4585LandingPadInst *LandingPadInst::cloneImpl() const {
4586 return new LandingPadInst(*this);
4587}
4588
4589ReturnInst *ReturnInst::cloneImpl() const {
4591 return new (AllocMarker) ReturnInst(*this, AllocMarker);
4592}
4593
4594UncondBrInst *UncondBrInst::cloneImpl() const {
4595 return new (AllocMarker) UncondBrInst(*this);
4596}
4597
4598CondBrInst *CondBrInst::cloneImpl() const {
4599 return new (AllocMarker) CondBrInst(*this);
4600}
4601
4602SwitchInst *SwitchInst::cloneImpl() const { return new SwitchInst(*this); }
4603
4604IndirectBrInst *IndirectBrInst::cloneImpl() const {
4605 return new IndirectBrInst(*this);
4606}
4607
4608InvokeInst *InvokeInst::cloneImpl() const {
4609 if (hasOperandBundles()) {
4613 return new (AllocMarker) InvokeInst(*this, AllocMarker);
4614 }
4616 return new (AllocMarker) InvokeInst(*this, AllocMarker);
4617}
4618
4619CallBrInst *CallBrInst::cloneImpl() const {
4620 if (hasOperandBundles()) {
4624 return new (AllocMarker) CallBrInst(*this, AllocMarker);
4625 }
4627 return new (AllocMarker) CallBrInst(*this, AllocMarker);
4628}
4629
4630ResumeInst *ResumeInst::cloneImpl() const {
4631 return new (AllocMarker) ResumeInst(*this);
4632}
4633
4634CleanupReturnInst *CleanupReturnInst::cloneImpl() const {
4636 return new (AllocMarker) CleanupReturnInst(*this, AllocMarker);
4637}
4638
4639CatchReturnInst *CatchReturnInst::cloneImpl() const {
4640 return new (AllocMarker) CatchReturnInst(*this);
4641}
4642
4643CatchSwitchInst *CatchSwitchInst::cloneImpl() const {
4644 return new CatchSwitchInst(*this);
4645}
4646
4647FuncletPadInst *FuncletPadInst::cloneImpl() const {
4649 return new (AllocMarker) FuncletPadInst(*this, AllocMarker);
4650}
4651
4653 LLVMContext &Context = getContext();
4654 return new UnreachableInst(Context);
4655}
4656
4657bool UnreachableInst::shouldLowerToTrap(bool TrapUnreachable,
4658 bool NoTrapAfterNoreturn) const {
4659 if (!TrapUnreachable)
4660 return false;
4661
4662 // We may be able to ignore unreachable behind a noreturn call.
4664 Call && Call->doesNotReturn()) {
4665 if (NoTrapAfterNoreturn)
4666 return false;
4667 // Do not emit an additional trap instruction.
4668 if (Call->isNonContinuableTrap())
4669 return false;
4670 }
4671
4672 if (getFunction()->hasFnAttribute(Attribute::Naked))
4673 return false;
4674
4675 return true;
4676}
4677
4679 return new FreezeInst(getOperand(0));
4680}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
constexpr LLT S1
Rewrite undef for PHI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
@ FnAttr
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_PUSH
Definition Compiler.h:271
#define LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_POP
Definition Compiler.h:272
#define LLVM_ABI
Definition Compiler.h:215
This file contains the declarations for the subclasses of Constant, which represent the different fla...
@ Default
static bool isSigned(unsigned Opcode)
#define op(i)
Module.h This file contains the declarations for the Module class.
static Align computeLoadStoreDefaultAlign(Type *Ty, InsertPosition Pos)
static bool isImpliedFalseByMatchingCmp(CmpPredicate Pred1, CmpPredicate Pred2)
static Value * createPlaceholderForShuffleVector(Value *V)
static Align computeAllocaDefaultAlign(Type *Ty, InsertPosition Pos)
static cl::opt< bool > DisableI2pP2iOpt("disable-i2p-p2i-opt", cl::init(false), cl::desc("Disables inttoptr/ptrtoint roundtrip optimization"))
static bool hasNonZeroFPOperands(const CmpInst *Cmp)
static int matchShuffleAsBitRotate(ArrayRef< int > Mask, int NumSubElts)
Try to lower a vector shuffle as a bit rotation.
static Type * getIndexedTypeInternal(Type *Ty, ArrayRef< IndexTy > IdxList)
static bool isReplicationMaskWithParams(ArrayRef< int > Mask, int ReplicationFactor, int VF)
static bool isIdentityMaskImpl(ArrayRef< int > Mask, int NumOpElts)
static bool isSingleSourceMaskImpl(ArrayRef< int > Mask, int NumOpElts)
static bool isImpliedTrueByMatchingCmp(CmpPredicate Pred1, CmpPredicate Pred2)
static LLVM_SUPPRESS_DEPRECATED_DECLARATIONS_POP Value * getAISize(LLVMContext &Context, Value *Amt)
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
This file contains the declarations for metadata subclasses.
#define T
MachineInstr unsigned OpIdx
uint64_t IntrinsicInst * II
#define P(N)
PowerPC Reduce CR logical Operation
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
This file implements the SmallBitVector class.
This file defines the SmallVector class.
#define LLVM_DEBUG(...)
Definition Debug.h:119
static SymbolRef::Type getType(const Symbol *Sym)
Definition TapiFile.cpp:39
Value * RHS
Value * LHS
cmpResult
IEEE-754R 5.11: Floating Point Comparison Relations.
Definition APFloat.h:335
LLVM_ABI float convertToFloat() const
Converts this APFloat to host float value.
Definition APFloat.cpp:6007
Class for arbitrary precision integers.
Definition APInt.h:78
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
Definition APInt.h:1355
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Definition APInt.h:381
unsigned countr_zero() const
Count the number of trailing zero bits.
Definition APInt.h:1664
unsigned countl_zero() const
The APInt version of std::countl_zero.
Definition APInt.h:1623
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
Definition APInt.h:201
This class represents a conversion between pointers from one address space to another.
LLVM_ABI AddrSpaceCastInst * cloneImpl() const
Clone an identical AddrSpaceCastInst.
LLVM_ABI AddrSpaceCastInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI std::optional< TypeSize > getAllocationSizeInBits(const DataLayout &DL) const
Get allocation size in bits.
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
LLVM_ABI bool isStaticAlloca() const
Return true if this alloca is in the entry block of the function and is a constant size.
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
LLVM_ABI AllocaInst * cloneImpl() const
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
bool isUsedWithInAlloca() const
Return true if this alloca is used as an inalloca argument to a call.
unsigned getAddressSpace() const
Return the address space for the allocation.
LLVM_ABI std::optional< TypeSize > getAllocationSize(const DataLayout &DL) const
Get allocation size in bytes.
LLVM_ABI bool isArrayAllocation() const
Return true if there is an allocation size parameter to the allocation instruction that is not 1.
void setAlignment(Align Align)
const Value * getArraySize() const
Get the number of elements allocated.
LLVM_ABI AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize, const Twine &Name, InsertPosition InsertBefore)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
iterator end() const
Definition ArrayRef.h:130
size_t size() const
Get the array size.
Definition ArrayRef.h:141
iterator begin() const
Definition ArrayRef.h:129
bool empty() const
Check if the array is empty.
Definition ArrayRef.h:136
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Definition ArrayRef.h:185
Class to represent array types.
void setSyncScopeID(SyncScope::ID SSID)
Sets the synchronization scope ID of this cmpxchg instruction.
bool isVolatile() const
Return true if this is a cmpxchg from a volatile memory location.
void setFailureOrdering(AtomicOrdering Ordering)
Sets the failure ordering constraint of this cmpxchg instruction.
AtomicOrdering getFailureOrdering() const
Returns the failure ordering constraint of this cmpxchg instruction.
void setSuccessOrdering(AtomicOrdering Ordering)
Sets the success ordering constraint of this cmpxchg instruction.
LLVM_ABI AtomicCmpXchgInst * cloneImpl() const
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
bool isWeak() const
Return true if this cmpxchg may spuriously fail.
void setAlignment(Align Align)
AtomicOrdering getSuccessOrdering() const
Returns the success ordering constraint of this cmpxchg instruction.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this cmpxchg instruction.
LLVM_ABI AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, Align Alignment, AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering, SyncScope::ID SSID, InsertPosition InsertBefore=nullptr)
bool isElementwise() const
Return true if this RMW has elementwise vector semantics.
Align getAlign() const
Return the alignment of the memory that is being allocated by the instruction.
LLVM_ABI AtomicRMWInst * cloneImpl() const
bool isVolatile() const
Return true if this is a RMW on a volatile memory location.
LLVM_ABI AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, Align Alignment, AtomicOrdering Ordering, SyncScope::ID SSID, bool Elementwise=false, InsertPosition InsertBefore=nullptr)
BinOp
This enumeration lists the possible modifications atomicrmw can make.
@ Add
*p = old + v
@ FAdd
*p = old + v
@ USubCond
Subtract only if no unsigned overflow.
@ FMinimum
*p = minimum(old, v) minimum matches the behavior of llvm.minimum.
@ Min
*p = old <signed v ? old : v
@ Sub
*p = old - v
@ And
*p = old & v
@ Xor
*p = old ^ v
@ USubSat
*p = usub.sat(old, v) usub.sat matches the behavior of llvm.usub.sat.
@ FMaximum
*p = maximum(old, v) maximum matches the behavior of llvm.maximum.
@ FSub
*p = old - v
@ UIncWrap
Increment one up to a maximum value.
@ Max
*p = old >signed v ? old : v
@ UMin
*p = old <unsigned v ? old : v
@ FMin
*p = minnum(old, v) minnum matches the behavior of llvm.minnum.
@ UMax
*p = old >unsigned v ? old : v
@ FMaximumNum
*p = maximumnum(old, v) maximumnum matches the behavior of llvm.maximumnum.
@ FMax
*p = maxnum(old, v) maxnum matches the behavior of llvm.maxnum.
@ UDecWrap
Decrement one until a minimum value or zero.
@ FMinimumNum
*p = minimumnum(old, v) minimumnum matches the behavior of llvm.minimumnum.
@ Nand
*p = ~(old & v)
void setSyncScopeID(SyncScope::ID SSID)
Sets the synchronization scope ID of this rmw instruction.
void setOrdering(AtomicOrdering Ordering)
Sets the ordering constraint of this rmw instruction.
void setOperation(BinOp Operation)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
BinOp getOperation() const
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this rmw instruction.
void setAlignment(Align Align)
void setElementwise(bool V)
Specify whether this RMW has elementwise vector semantics.
static LLVM_ABI StringRef getOperationName(BinOp Op)
AtomicOrdering getOrdering() const
Returns the ordering constraint of this rmw instruction.
LLVM_ABI CaptureInfo getCaptureInfo() const
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:105
LLVM_ABI const ConstantRange & getRange() const
Returns the value of the range attribute.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition Attributes.h:124
static LLVM_ABI Attribute getWithMemoryEffects(LLVMContext &Context, MemoryEffects ME)
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:261
LLVM Basic Block Representation.
Definition BasicBlock.h:62
const Function * getParent() const
Return the enclosing method, or null if none.
Definition BasicBlock.h:213
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
static LLVM_ABI BinaryOperator * CreateNeg(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Helper functions to construct and inspect unary operations (NEG and NOT) via binary operators SUB and...
BinaryOps getOpcode() const
Definition InstrTypes.h:409
LLVM_ABI bool swapOperands()
Exchange the two operands to this instruction.
static LLVM_ABI BinaryOperator * CreateNot(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition InstrTypes.h:216
static LLVM_ABI BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a binary instruction, given the opcode and the two operands.
LLVM_ABI BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, InsertPosition InsertBefore)
static LLVM_ABI BinaryOperator * CreateNSWNeg(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
LLVM_ABI BinaryOperator * cloneImpl() const
This class represents a no-op cast from one type to another.
LLVM_ABI BitCastInst * cloneImpl() const
Clone an identical BitCastInst.
LLVM_ABI BitCastInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
LLVM_ABI FPClassTest getParamNoFPClass(unsigned i) const
Extract a test mask for disallowed floating-point value classes for the parameter.
bool isInlineAsm() const
Check if this call is an inline asm statement.
LLVM_ABI BundleOpInfo & getBundleOpInfoForOperand(unsigned OpIdx)
Return the BundleOpInfo for the operand at index OpIdx.
void setCallingConv(CallingConv::ID CC)
LLVM_ABI FPClassTest getRetNoFPClass() const
Extract a test mask for disallowed floating-point value classes for the return value.
bundle_op_iterator bundle_op_info_begin()
Return the start of the list of BundleOpInfo instances associated with this OperandBundleUser.
LLVM_ABI bool paramHasNonNullAttr(unsigned ArgNo, bool AllowUndefOrPoison) const
Return true if this argument has the nonnull attribute on either the CallBase instruction or the call...
LLVM_ABI MemoryEffects getMemoryEffects() const
void addFnAttr(Attribute::AttrKind Kind)
Adds the attribute to the function.
LLVM_ABI bool doesNotAccessMemory() const
Determine if the call does not access memory.
LLVM_ABI void getOperandBundlesAsDefs(SmallVectorImpl< OperandBundleDef > &Defs) const
Return the list of operand bundles attached to this instruction as a vector of OperandBundleDefs.
LLVM_ABI void setOnlyAccessesArgMemory()
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
OperandBundleUse operandBundleFromBundleOpInfo(const BundleOpInfo &BOI) const
Simple helper function to map a BundleOpInfo to an OperandBundleUse.
LLVM_ABI void setOnlyAccessesInaccessibleMemOrArgMem()
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
LLVM_ABI void setDoesNotAccessMemory()
AttributeSet getParamAttributes(unsigned ArgNo) const
Return the param attributes for this call.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
LLVM_ABI bool onlyAccessesInaccessibleMemory() const
Determine if the function may only access memory that is inaccessible from the IR.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
bundle_op_iterator bundle_op_info_end()
Return the end of the list of BundleOpInfo instances associated with this OperandBundleUser.
LLVM_ABI unsigned getNumSubclassExtraOperandsDynamic() const
Get the number of extra operands for instructions that don't have a fixed number of extra operands.
BundleOpInfo * bundle_op_iterator
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
User::op_iterator arg_begin()
Return the iterator pointing to the beginning of the argument list.
LLVM_ABI bool isMustTailCall() const
Tests if this call site must be tail call optimized.
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
LLVM_ABI bool onlyReadsMemory() const
Determine if the call does not access or only reads memory.
bool isByValArgument(unsigned ArgNo) const
Determine whether this argument is passed by value.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
LLVM_ABI void setOnlyReadsMemory()
static LLVM_ABI CallBase * addOperandBundle(CallBase *CB, uint32_t ID, OperandBundleDef OB, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle OB added.
LLVM_ABI bool onlyAccessesInaccessibleMemOrArgMem() const
Determine if the function may only access memory that is either inaccessible from the IR or pointed t...
static LLVM_ABI CallBase * removeOperandBundleAt(CallBase *CB, size_t Offset, InsertPosition InsertPtr=nullptr)
LLVM_ABI CaptureInfo getCaptureInfo(unsigned OpNo) const
Return which pointer components this operand may capture.
LLVM_ABI bool hasArgumentWithAdditionalReturnCaptureComponents() const
Returns whether the call has an argument that has an attribute like captures(ret: address,...
CallBase(AttributeList const &A, FunctionType *FT, ArgsTy &&... Args)
Value * getCalledOperand() const
LLVM_ABI void setOnlyWritesMemory()
LLVM_ABI op_iterator populateBundleOperandInfos(ArrayRef< OperandBundleDef > Bundles, const unsigned BeginIndex)
Populate the BundleOpInfo instances and the Use& vector from Bundles.
AttributeList Attrs
parameter attributes for callable
bool hasOperandBundlesOtherThan(ArrayRef< uint32_t > IDs) const
Return true if this operand bundle user contains operand bundles with tags other than those specified...
LLVM_ABI std::optional< ConstantRange > getRange() const
If this return value has a range attribute, return the value range of the argument.
LLVM_ABI bool isReturnNonNull() const
Return true if the return value is known to be not null.
Value * getArgOperand(unsigned i) const
FunctionType * FTy
uint64_t getRetDereferenceableBytes() const
Extract the number of dereferenceable bytes for a call or parameter (0=unknown).
User::op_iterator arg_end()
Return the iterator pointing to the end of the argument list.
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
static unsigned CountBundleInputs(ArrayRef< OperandBundleDef > Bundles)
Return the total number of values used in Bundles.
LLVM_ABI Value * getArgOperandWithAttribute(Attribute::AttrKind Kind) const
If one of the arguments has the specified attribute, returns its operand value.
LLVM_ABI void setOnlyAccessesInaccessibleMemory()
static LLVM_ABI CallBase * Create(CallBase *CB, ArrayRef< OperandBundleDef > Bundles, InsertPosition InsertPt=nullptr)
Create a clone of CB with a different set of operand bundles and insert it before InsertPt.
LLVM_ABI bool onlyWritesMemory() const
Determine if the call does not access or only writes memory.
LLVM_ABI bool hasClobberingOperandBundles() const
Return true if this operand bundle user has operand bundles that may write to the heap.
void setCalledOperand(Value *V)
static LLVM_ABI CallBase * removeOperandBundle(CallBase *CB, uint32_t ID, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle ID removed.
LLVM_ABI bool hasReadingOperandBundles() const
Return true if this operand bundle user has operand bundles that may read from the heap.
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
LLVM_ABI void setMemoryEffects(MemoryEffects ME)
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI bool isTailCall() const
Tests if this call site is marked as a tail call.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
SmallVector< BasicBlock *, 16 > getIndirectDests() const
void setDefaultDest(BasicBlock *B)
void setIndirectDest(unsigned i, BasicBlock *B)
BasicBlock * getDefaultDest() const
static CallBrInst * Create(FunctionType *Ty, Value *Func, BasicBlock *DefaultDest, ArrayRef< BasicBlock * > IndirectDests, ArrayRef< Value * > Args, const Twine &NameStr, InsertPosition InsertBefore=nullptr)
LLVM_ABI CallBrInst * cloneImpl() const
This class represents a function call, abstracting a target machine's calling convention.
LLVM_ABI void updateProfWeight(uint64_t S, uint64_t T)
Updates profile metadata by scaling it by S / T.
TailCallKind getTailCallKind() const
LLVM_ABI CallInst * cloneImpl() const
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Represents which components of the pointer may be captured in which location.
Definition ModRef.h:414
CaptureComponents getOtherComponents() const
Get components potentially captured through locations other than the return value.
Definition ModRef.h:446
static CaptureInfo none()
Create CaptureInfo that does not capture any components of the pointer.
Definition ModRef.h:427
static CaptureInfo all()
Create CaptureInfo that may capture all components of the pointer.
Definition ModRef.h:430
CaptureComponents getRetComponents() const
Get components potentially captured by the return value.
Definition ModRef.h:442
static LLVM_ABI Instruction::CastOps getCastOpcode(const Value *Val, bool SrcIsSigned, Type *Ty, bool DstIsSigned)
Returns the opcode necessary to cast Val into Ty using usual casting rules.
static LLVM_ABI CastInst * CreatePointerBitCastOrAddrSpaceCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast or an AddrSpaceCast cast instruction.
Instruction::CastOps getOpcode() const
Return the opcode of this CastInst.
Definition InstrTypes.h:674
static LLVM_ABI unsigned isEliminableCastPair(Instruction::CastOps firstOpcode, Instruction::CastOps secondOpcode, Type *SrcTy, Type *MidTy, Type *DstTy, const DataLayout *DL)
Determine how a pair of casts can be eliminated, if they can be at all.
static LLVM_ABI CastInst * CreateIntegerCast(Value *S, Type *Ty, bool isSigned, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a ZExt, BitCast, or Trunc for int -> int casts.
static LLVM_ABI CastInst * CreateFPCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create an FPExt, BitCast, or FPTrunc for fp -> fp casts.
CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics for subclasses.
Definition InstrTypes.h:515
static LLVM_ABI bool isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy, const DataLayout &DL)
Check whether a bitcast, inttoptr, or ptrtoint cast between these types is valid and a no-op.
static LLVM_ABI bool isBitCastable(Type *SrcTy, Type *DestTy)
Check whether a bitcast between these types is valid.
static LLVM_ABI CastInst * CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a Trunc or BitCast cast instruction.
static LLVM_ABI CastInst * CreatePointerCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast, AddrSpaceCast or a PtrToInt cast instruction.
static LLVM_ABI CastInst * CreateBitOrPointerCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast, a PtrToInt, or an IntToPTr cast instruction.
static LLVM_ABI bool isNoopCast(Instruction::CastOps Opcode, Type *SrcTy, Type *DstTy, const DataLayout &DL)
A no-op cast is one that can be effected without changing any bits.
static LLVM_ABI CastInst * CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a ZExt or BitCast cast instruction.
static LLVM_ABI CastInst * Create(Instruction::CastOps, Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Provides a way to construct any of the CastInst subclasses using an opcode instead of the subclass's ...
LLVM_ABI bool isIntegerCast() const
There are several places where we need to know if a cast instruction only deals with integer source a...
static LLVM_ABI CastInst * CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a SExt or BitCast cast instruction.
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
LLVM_ABI CatchReturnInst * cloneImpl() const
void setUnwindDest(BasicBlock *UnwindDest)
LLVM_ABI void addHandler(BasicBlock *Dest)
Add an entry to the switch instruction... Note: This action invalidates handler_end().
LLVM_ABI CatchSwitchInst * cloneImpl() const
mapped_iterator< op_iterator, DerefFnTy > handler_iterator
Value * getParentPad() const
void setParentPad(Value *ParentPad)
BasicBlock * getUnwindDest() const
LLVM_ABI void removeHandler(handler_iterator HI)
LLVM_ABI CleanupReturnInst * cloneImpl() const
This class is the base class for the comparison instructions.
Definition InstrTypes.h:728
Predicate getStrictPredicate() const
For example, SGE -> SGT, SLE -> SLT, ULE -> ULT, UGE -> UGT.
Definition InstrTypes.h:921
bool isEquality() const
Determine if this is an equals/not equals predicate.
Definition InstrTypes.h:978
void setPredicate(Predicate P)
Set the predicate for this instruction to the specified value.
Definition InstrTypes.h:831
bool isFalseWhenEqual() const
This is just a convenience.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition InstrTypes.h:740
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
Definition InstrTypes.h:743
@ FCMP_TRUE
1 1 1 1 Always true (always folded)
Definition InstrTypes.h:757
@ ICMP_SLT
signed less than
Definition InstrTypes.h:769
@ ICMP_SLE
signed less or equal
Definition InstrTypes.h:770
@ FCMP_OLT
0 1 0 0 True if ordered and less than
Definition InstrTypes.h:746
@ FCMP_ULE
1 1 0 1 True if unordered, less than, or equal
Definition InstrTypes.h:755
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
Definition InstrTypes.h:744
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
Definition InstrTypes.h:745
@ ICMP_UGE
unsigned greater or equal
Definition InstrTypes.h:764
@ ICMP_UGT
unsigned greater than
Definition InstrTypes.h:763
@ ICMP_SGT
signed greater than
Definition InstrTypes.h:767
@ FCMP_ULT
1 1 0 0 True if unordered or less than
Definition InstrTypes.h:754
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
Definition InstrTypes.h:748
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
Definition InstrTypes.h:751
@ ICMP_ULT
unsigned less than
Definition InstrTypes.h:765
@ FCMP_UGT
1 0 1 0 True if unordered or greater than
Definition InstrTypes.h:752
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
Definition InstrTypes.h:747
@ FCMP_ORD
0 1 1 1 True if ordered (no nans)
Definition InstrTypes.h:749
@ ICMP_NE
not equal
Definition InstrTypes.h:762
@ ICMP_SGE
signed greater or equal
Definition InstrTypes.h:768
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
Definition InstrTypes.h:756
@ ICMP_ULE
unsigned less or equal
Definition InstrTypes.h:766
@ FCMP_UGE
1 0 1 1 True if unordered, greater than, or equal
Definition InstrTypes.h:753
@ FCMP_FALSE
0 0 0 0 Always false (always folded)
Definition InstrTypes.h:742
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
Definition InstrTypes.h:750
LLVM_ABI bool isEquivalence(bool Invert=false) const
Determine if one operand of this compare can always be replaced by the other operand,...
bool isSigned() const
Definition InstrTypes.h:993
static LLVM_ABI bool isEquality(Predicate pred)
Determine if this is an equals/not equals predicate.
Predicate getSwappedPredicate() const
For example, EQ->EQ, SLE->SGE, ULT->UGT, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
Definition InstrTypes.h:890
bool isTrueWhenEqual() const
This is just a convenience.
static LLVM_ABI CmpInst * Create(OtherOps Op, Predicate Pred, Value *S1, Value *S2, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Construct a compare instruction, given the opcode, the predicate and the two operands.
static bool isFPPredicate(Predicate P)
Definition InstrTypes.h:833
Predicate getNonStrictPredicate() const
For example, SGT -> SGE, SLT -> SLE, ULT -> ULE, UGT -> UGE.
Definition InstrTypes.h:934
static LLVM_ABI CmpInst * CreateWithCopiedFlags(OtherOps Op, Predicate Pred, Value *S1, Value *S2, const Instruction *FlagsSource, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Construct a compare instruction, given the opcode, the predicate, the two operands and the instructio...
LLVM_ABI CmpInst(Type *ty, Instruction::OtherOps op, Predicate pred, Value *LHS, Value *RHS, const Twine &Name="", InsertPosition InsertBefore=nullptr)
bool isNonStrictPredicate() const
Definition InstrTypes.h:915
LLVM_ABI void swapOperands()
This is just a convenience that dispatches to the subclasses.
static bool isRelational(Predicate P)
Return true if the predicate is relational (not EQ or NE).
Definition InstrTypes.h:986
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
Definition InstrTypes.h:852
static LLVM_ABI StringRef getPredicateName(Predicate P)
Predicate getPredicate() const
Return the predicate for this instruction.
Definition InstrTypes.h:828
bool isStrictPredicate() const
Definition InstrTypes.h:906
static LLVM_ABI bool isUnordered(Predicate predicate)
Determine if the predicate is an unordered operation.
Predicate getFlippedStrictnessPredicate() const
For predicate of kind "is X or equal to 0" returns the predicate "is X".
Definition InstrTypes.h:956
static bool isIntPredicate(Predicate P)
Definition InstrTypes.h:839
static LLVM_ABI bool isOrdered(Predicate predicate)
Determine if the predicate is an ordered operation.
bool isUnsigned() const
Definition InstrTypes.h:999
LLVM_ABI bool isCommutative() const
This is just a convenience that dispatches to the subclasses.
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static LLVM_ABI std::optional< CmpPredicate > getMatching(CmpPredicate A, CmpPredicate B)
Compares two CmpPredicates taking samesign into account and returns the canonicalized CmpPredicate if...
static LLVM_ABI CmpPredicate getInverse(CmpPredicate P)
Get the inverse predicate of a CmpPredicate.
CmpPredicate()
Default constructor.
static LLVM_ABI CmpPredicate get(const CmpInst *Cmp)
Do a ICmpInst::getCmpPredicate() or CmpInst::getPredicate(), as appropriate.
LLVM_ABI CmpInst::Predicate getPreferredSignedPredicate() const
Attempts to return a signed CmpInst::Predicate from the CmpPredicate.
bool hasSameSign() const
Query samesign information, for optimizations.
static LLVM_ABI CmpPredicate getSwapped(CmpPredicate P)
Get the swapped predicate of a CmpPredicate.
Conditional Branch instruction.
LLVM_ABI void swapSuccessors()
Swap the successors of this branch instruction.
LLVM_ABI CondBrInst * cloneImpl() const
Value * getCondition() const
ConstantFP - Floating Point Values [float, double].
Definition Constants.h:420
const APFloat & getValueAPF() const
Definition Constants.h:463
This is the shared class of boolean and integer constants.
Definition Constants.h:87
LLVM_ABI ConstantRange intersectWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the intersection of this range with another range.
static LLVM_ABI Constant * get(ArrayRef< Constant * > V)
This is an important base class in LLVM.
Definition Constant.h:43
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
static constexpr ElementCount getFixed(ScalarTy MinVal)
Definition TypeSize.h:309
LLVM_ABI ExtractElementInst * cloneImpl() const
static ExtractElementInst * Create(Value *Vec, Value *Idx, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI bool isValidOperands(const Value *Vec, const Value *Idx)
Return true if an extractelement instruction can be formed with the specified operands.
This instruction extracts a struct member or array element value from an aggregate value.
static LLVM_ABI Type * getIndexedType(Type *Agg, ArrayRef< unsigned > Idxs)
Returns the type of the element that would be extracted with an extractvalue instruction with the spe...
LLVM_ABI ExtractValueInst * cloneImpl() const
This instruction compares its operands according to the predicate given to the constructor.
bool isEquality() const
static LLVM_ABI bool compare(const APFloat &LHS, const APFloat &RHS, FCmpInst::Predicate Pred)
Return result of LHS Pred RHS comparison.
LLVM_ABI FCmpInst * cloneImpl() const
Clone an identical FCmpInst.
FCmpInst(InsertPosition InsertBefore, Predicate pred, Value *LHS, Value *RHS, const Twine &NameStr="")
Constructor with insertion semantics.
Binary operators support fast-math flags, users should not use this class directly,...
Definition InstrTypes.h:476
This class represents an extension of floating point types.
LLVM_ABI FPExtInst * cloneImpl() const
Clone an identical FPExtInst.
LLVM_ABI FPExtInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI float getFPAccuracy() const
Get the maximum error permitted by this operation in ULPs.
This class represents a cast from floating point to signed integer.
LLVM_ABI FPToSIInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI FPToSIInst * cloneImpl() const
Clone an identical FPToSIInst.
This class represents a cast from floating point to unsigned integer.
LLVM_ABI FPToUIInst * cloneImpl() const
Clone an identical FPToUIInst.
LLVM_ABI FPToUIInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
This class represents a truncation of floating point types.
LLVM_ABI FPTruncInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI FPTruncInst * cloneImpl() const
Clone an identical FPTruncInst.
Unary operators support fast-math flags, users should not use this class directly,...
Definition InstrTypes.h:179
LLVM_ABI FenceInst(LLVMContext &C, AtomicOrdering Ordering, SyncScope::ID SSID=SyncScope::System, InsertPosition InsertBefore=nullptr)
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this fence instruction.
void setSyncScopeID(SyncScope::ID SSID)
Sets the synchronization scope ID of this fence instruction.
LLVM_ABI FenceInst * cloneImpl() const
friend class Instruction
Iterator for Instructions in a `BasicBlock.
void setOrdering(AtomicOrdering Ordering)
Sets the ordering constraint of this fence instruction.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
Class to represent fixed width SIMD vectors.
LLVM_ABI FreezeInst(Value *S, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
LLVM_ABI FreezeInst * cloneImpl() const
Clone an identical FreezeInst.
void setParentPad(Value *ParentPad)
Value * getParentPad() const
Convenience accessors.
LLVM_ABI FuncletPadInst * cloneImpl() const
Class to represent function types.
unsigned getNumParams() const
Return the number of fixed parameters this function type requires.
Type * getParamType(unsigned i) const
Parameter type accessors.
bool isVarArg() const
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags inBounds()
GEPNoWrapFlags withoutInBounds() const
unsigned getRaw() const
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
LLVM_ABI bool isInBounds() const
Determine whether the GEP has the inbounds flag.
LLVM_ABI bool hasNoUnsignedSignedWrap() const
Determine whether the GEP has the nusw flag.
static LLVM_ABI Type * getTypeAtIndex(Type *Ty, Value *Idx)
Return the type of the element at the given index of an indexable type.
LLVM_ABI bool hasAllZeroIndices() const
Return true if all of the indices of this GEP are zeros.
LLVM_ABI bool hasNoUnsignedWrap() const
Determine whether the GEP has the nuw flag.
LLVM_ABI bool hasAllConstantIndices() const
Return true if all of the indices of this GEP are constant integers.
LLVM_ABI void setIsInBounds(bool b=true)
Set or clear the inbounds flag on this GEP instruction.
static LLVM_ABI Type * getIndexedType(Type *Ty, ArrayRef< Value * > IdxList)
Returns the result type of a getelementptr with the given source element type and indexes.
LLVM_ABI bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset) const
Accumulate the constant address offset of this GEP if possible.
LLVM_ABI GetElementPtrInst * cloneImpl() const
LLVM_ABI bool collectOffset(const DataLayout &DL, unsigned BitWidth, SmallMapVector< Value *, APInt, 4 > &VariableOffsets, APInt &ConstantOffset) const
LLVM_ABI void setNoWrapFlags(GEPNoWrapFlags NW)
Set nowrap flags for GEP instruction.
LLVM_ABI GEPNoWrapFlags getNoWrapFlags() const
Get the nowrap flags for the GEP instruction.
Module * getParent()
Get the module that this global value is contained inside of...
This instruction compares its operands according to the predicate given to the constructor.
bool hasSameSign() const
An icmp instruction, which can be marked as "samesign", indicating that the two operands have the sam...
ICmpInst(InsertPosition InsertBefore, Predicate pred, Value *LHS, Value *RHS, const Twine &NameStr="")
Constructor with insertion semantics.
static LLVM_ABI bool compare(const APInt &LHS, const APInt &RHS, ICmpInst::Predicate Pred)
Return result of LHS Pred RHS comparison.
LLVM_ABI ICmpInst * cloneImpl() const
Clone an identical ICmpInst.
Predicate getFlippedSignednessPredicate() const
For example, SLT->ULT, ULT->SLT, SLE->ULE, ULE->SLE, EQ->EQ.
Predicate getSignedPredicate() const
For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
static CmpPredicate getInverseCmpPredicate(CmpPredicate Pred)
bool isEquality() const
Return true if this predicate is either EQ or NE.
static LLVM_ABI Predicate getFlippedSignednessPredicate(Predicate Pred)
For example, SLT->ULT, ULT->SLT, SLE->ULE, ULE->SLE, EQ->EQ.
static LLVM_ABI std::optional< bool > isImpliedByMatchingCmp(CmpPredicate Pred1, CmpPredicate Pred2)
Determine if Pred1 implies Pred2 is true, false, or if nothing can be inferred about the implication,...
Predicate getUnsignedPredicate() const
For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
Indirect Branch Instruction.
LLVM_ABI void addDestination(BasicBlock *Dest)
Add a destination.
LLVM_ABI void removeDestination(unsigned i)
This method removes the specified successor from the indirectbr instruction.
LLVM_ABI IndirectBrInst * cloneImpl() const
LLVM_ABI InsertElementInst * cloneImpl() const
static InsertElementInst * Create(Value *Vec, Value *NewElt, Value *Idx, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI bool isValidOperands(const Value *Vec, const Value *NewElt, const Value *Idx)
Return true if an insertelement instruction can be formed with the specified operands.
bool isValid() const
Definition Instruction.h:63
BasicBlock * getBasicBlock()
Definition Instruction.h:64
This instruction inserts a struct field of array element value into an aggregate value.
LLVM_ABI InsertValueInst * cloneImpl() const
BitfieldElement::Type getSubclassData() const
LLVM_ABI bool hasNoNaNs() const LLVM_READONLY
Determine whether the no-NaNs flag is set.
LLVM_ABI void copyIRFlags(const Value *V, bool IncludeWrapFlags=true)
Convenience method to copy supported exact, fast-math, and (optionally) wrapping flags from V to this...
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI bool isCommutative() const LLVM_READONLY
Return true if the instruction is commutative:
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI bool isVolatile() const LLVM_READONLY
Return true if this instruction has a volatile memory access.
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
Bitfield::Element< uint16_t, 0, 16 > OpaqueField
Instruction(const Instruction &)=delete
friend class Value
friend class BasicBlock
Various leaf nodes.
void setSubclassData(typename BitfieldElement::Type Value)
This class represents a cast from an integer to a pointer.
LLVM_ABI IntToPtrInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI IntToPtrInst * cloneImpl() const
Clone an identical IntToPtrInst.
Invoke instruction.
BasicBlock * getUnwindDest() const
void setNormalDest(BasicBlock *B)
LLVM_ABI InvokeInst * cloneImpl() const
LLVM_ABI LandingPadInst * getLandingPadInst() const
Get the landingpad instruction from the landing pad block (the unwind destination).
void setUnwindDest(BasicBlock *B)
LLVM_ABI void updateProfWeight(uint64_t S, uint64_t T)
Updates profile metadata by scaling it by S / T.
static InvokeInst * Create(FunctionType *Ty, Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef< Value * > Args, const Twine &NameStr, InsertPosition InsertBefore=nullptr)
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LLVMContextImpl *const pImpl
Definition LLVMContext.h:70
The landingpad instruction holds all of the information necessary to generate correct exception handl...
bool isCleanup() const
Return 'true' if this landingpad instruction is a cleanup.
LLVM_ABI LandingPadInst * cloneImpl() const
static LLVM_ABI LandingPadInst * Create(Type *RetTy, unsigned NumReservedClauses, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedClauses is a hint for the number of incoming clauses that this landingpad w...
LLVM_ABI void addClause(Constant *ClauseVal)
Add a catch or filter clause to the landing pad.
void setCleanup(bool V)
Indicate that this landingpad instruction is a cleanup.
void setAlignment(Align Align)
bool isVolatile() const
Return true if this is a load from a volatile memory location.
void setAtomic(AtomicOrdering Ordering, SyncScope::ID SSID=SyncScope::System)
Sets the ordering constraint and the synchronization scope ID of this load instruction.
LLVM_ABI LoadInst * cloneImpl() const
AtomicOrdering getOrdering() const
Returns the ordering constraint of this load instruction.
void setVolatile(bool V)
Specify whether this is a volatile load or not.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this load instruction.
LLVM_ABI LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, InsertPosition InsertBefore)
Align getAlign() const
Return the alignment of the access that is being performed.
Metadata node.
Definition Metadata.h:1069
const MDOperand & getOperand(unsigned I) const
Definition Metadata.h:1426
static MemoryEffectsBase readOnly()
Definition ModRef.h:133
bool onlyWritesMemory() const
Whether this function only (at most) writes memory.
Definition ModRef.h:252
bool doesNotAccessMemory() const
Whether this function accesses no memory.
Definition ModRef.h:246
static MemoryEffectsBase argMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:143
static MemoryEffectsBase inaccessibleMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:149
bool onlyAccessesInaccessibleMem() const
Whether this function only (at most) accesses inaccessible memory.
Definition ModRef.h:265
bool onlyAccessesArgPointees() const
Whether this function only (at most) accesses argument memory.
Definition ModRef.h:255
bool onlyReadsMemory() const
Whether this function only (at most) reads memory.
Definition ModRef.h:249
static MemoryEffectsBase writeOnly()
Definition ModRef.h:138
static MemoryEffectsBase inaccessibleOrArgMemOnly(ModRefInfo MR=ModRefInfo::ModRef)
Definition ModRef.h:166
static MemoryEffectsBase none()
Definition ModRef.h:128
bool onlyAccessesInaccessibleOrArgMem() const
Whether this function only (at most) accesses argument and inaccessible memory.
Definition ModRef.h:305
StringRef getTag() const
void allocHungoffUses(unsigned N)
const_block_iterator block_begin() const
LLVM_ABI void removeIncomingValueIf(function_ref< bool(unsigned)> Predicate, bool DeletePHIIfEmpty=true)
Remove all incoming values for which the predicate returns true.
void setIncomingBlock(unsigned i, BasicBlock *BB)
LLVM_ABI Value * removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty=true)
Remove an incoming value.
LLVM_ABI bool hasConstantOrUndefValue() const
Whether the specified PHI node always merges together the same value, assuming undefs are equal to a ...
void setIncomingValue(unsigned i, Value *V)
const_block_iterator block_end() const
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
LLVM_ABI Value * hasConstantValue() const
If the specified PHI node always merges together the same value, return the value,...
LLVM_ABI PHINode * cloneImpl() const
unsigned getNumIncomingValues() const
Return the number of incoming edges.
Class to represent pointers.
unsigned getAddressSpace() const
Return the address space of the Pointer type.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
This class represents a cast from a pointer to an address (non-capturing ptrtoint).
LLVM_ABI PtrToAddrInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI PtrToAddrInst * cloneImpl() const
Clone an identical PtrToAddrInst.
This class represents a cast from a pointer to an integer.
LLVM_ABI PtrToIntInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI PtrToIntInst * cloneImpl() const
Clone an identical PtrToIntInst.
Resume the propagation of an exception.
LLVM_ABI ResumeInst * cloneImpl() const
Return a value (possibly void), from a function.
LLVM_ABI ReturnInst * cloneImpl() const
This class represents a sign extension of integer types.
LLVM_ABI SExtInst * cloneImpl() const
Clone an identical SExtInst.
LLVM_ABI SExtInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
This class represents a cast from signed integer to floating point.
LLVM_ABI SIToFPInst * cloneImpl() const
Clone an identical SIToFPInst.
LLVM_ABI SIToFPInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
Class to represent scalable SIMD vectors.
LLVM_ABI SelectInst * cloneImpl() const
static LLVM_ABI const char * areInvalidOperands(Value *Cond, Value *True, Value *False)
Return a string if the specified operands are invalid for a select operation, otherwise return null.
static SelectInst * Create(Value *C, Value *S1, Value *S2, const Twine &NameStr="", InsertPosition InsertBefore=nullptr, const Instruction *MDFrom=nullptr)
static LLVM_ABI bool isZeroEltSplatMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses all elements with the same value as the first element of exa...
ArrayRef< int > getShuffleMask() const
static LLVM_ABI bool isSpliceMask(ArrayRef< int > Mask, int NumSrcElts, int &Index)
Return true if this shuffle mask is a splice mask, concatenating the two inputs together and then ext...
int getMaskValue(unsigned Elt) const
Return the shuffle mask value of this instruction for the given element index.
LLVM_ABI ShuffleVectorInst(Value *V1, Value *Mask, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static LLVM_ABI bool isSelectMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses elements from its source vectors without lane crossings.
static LLVM_ABI bool isBitRotateMask(ArrayRef< int > Mask, unsigned EltSizeInBits, unsigned MinSubElts, unsigned MaxSubElts, unsigned &NumSubElts, unsigned &RotateAmt)
Checks if the shuffle is a bit rotation of the first operand across multiple subelements,...
VectorType * getType() const
Overload to return most specific vector type.
LLVM_ABI bool isIdentityWithExtract() const
Return true if this shuffle extracts the first N elements of exactly one source vector.
static LLVM_ABI bool isOneUseSingleSourceMask(ArrayRef< int > Mask, int VF)
Return true if this shuffle mask represents "clustered" mask of size VF, i.e.
LLVM_ABI bool isIdentityWithPadding() const
Return true if this shuffle lengthens exactly one source vector with undefs in the high elements.
static LLVM_ABI bool isSingleSourceMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses elements from exactly one source vector.
LLVM_ABI bool isConcat() const
Return true if this shuffle concatenates its 2 source vectors.
static LLVM_ABI bool isDeInterleaveMaskOfFactor(ArrayRef< int > Mask, unsigned Factor, unsigned &Index)
Check if the mask is a DE-interleave mask of the given factor Factor like: <Index,...
LLVM_ABI ShuffleVectorInst * cloneImpl() const
static LLVM_ABI bool isIdentityMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses elements from exactly one source vector without lane crossin...
static LLVM_ABI bool isExtractSubvectorMask(ArrayRef< int > Mask, int NumSrcElts, int &Index)
Return true if this shuffle mask is an extract subvector mask.
LLVM_ABI void setShuffleMask(ArrayRef< int > Mask)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
LLVM_ABI bool isInterleave(unsigned Factor)
Return if this shuffle interleaves its two input vectors together.
static LLVM_ABI bool isReverseMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask swaps the order of elements from exactly one source vector.
static LLVM_ABI bool isTransposeMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask is a transpose mask.
LLVM_ABI void commute()
Swap the operands and adjust the mask to preserve the semantics of the instruction.
static LLVM_ABI bool isInsertSubvectorMask(ArrayRef< int > Mask, int NumSrcElts, int &NumSubElts, int &Index)
Return true if this shuffle mask is an insert subvector mask.
static LLVM_ABI Constant * convertShuffleMaskForBitcode(ArrayRef< int > Mask, Type *ResultTy)
static LLVM_ABI bool isReplicationMask(ArrayRef< int > Mask, int &ReplicationFactor, int &VF)
Return true if this shuffle mask replicates each of the VF elements in a vector ReplicationFactor tim...
static LLVM_ABI bool isInterleaveMask(ArrayRef< int > Mask, unsigned Factor, unsigned NumInputElts, SmallVectorImpl< unsigned > &StartIndexes)
Return true if the mask interleaves one or more input vectors together.
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is ...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void resize(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
AtomicOrdering getOrdering() const
Returns the ordering constraint of this store instruction.
Align getAlign() const
void setVolatile(bool V)
Specify whether this is a volatile store or not.
void setAlignment(Align Align)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
LLVM_ABI StoreInst * cloneImpl() const
LLVM_ABI StoreInst(Value *Val, Value *Ptr, InsertPosition InsertBefore)
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this store instruction.
bool isVolatile() const
Return true if this is a store to a volatile memory location.
void setAtomic(AtomicOrdering Ordering, SyncScope::ID SSID=SyncScope::System)
Sets the ordering constraint and the synchronization scope ID of this store instruction.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Class to represent struct types.
LLVM_ABI void setSuccessorWeight(unsigned idx, CaseWeightOpt W)
LLVM_ABI Instruction::InstListType::iterator eraseFromParent()
Delegate the call to the underlying SwitchInst::eraseFromParent() and mark this object to not touch t...
LLVM_ABI void addCase(ConstantInt *OnVal, BasicBlock *Dest, CaseWeightOpt W)
Delegate the call to the underlying SwitchInst::addCase() and set the specified branch weight for the...
LLVM_ABI CaseWeightOpt getSuccessorWeight(unsigned idx)
LLVM_ABI void replaceDefaultDest(SwitchInst::CaseIt I)
Replace the default destination by given case.
std::optional< uint32_t > CaseWeightOpt
LLVM_ABI SwitchInst::CaseIt removeCase(SwitchInst::CaseIt I)
Delegate the call to the underlying SwitchInst::removeCase() and remove correspondent branch weight.
void setValue(ConstantInt *V) const
Sets the new value for current case.
void setSuccessor(BasicBlock *S) const
Sets the new successor for current case.
Multiway switch.
void allocHungoffUses(unsigned N)
LLVM_ABI SwitchInst * cloneImpl() const
LLVM_ABI void addCase(ConstantInt *OnVal, BasicBlock *Dest)
Add an entry to the switch instruction.
CaseIteratorImpl< CaseHandle > CaseIt
ConstantInt *const * case_values() const
unsigned getNumCases() const
Return the number of 'cases' in this switch instruction, excluding the default case.
LLVM_ABI CaseIt removeCase(CaseIt I)
This method removes the specified case and its successor from the switch instruction.
Target - Wrapper for Target specific information.
This class represents a truncation of integer types.
LLVM_ABI TruncInst * cloneImpl() const
Clone an identical TruncInst.
LLVM_ABI TruncInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static constexpr TypeSize getFixed(ScalarTy ExactSize)
Definition TypeSize.h:343
static constexpr TypeSize get(ScalarTy Quantity, bool Scalable)
Definition TypeSize.h:340
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
bool isByteTy() const
True if this is an instance of ByteType.
Definition Type.h:242
bool isVectorTy() const
True if this is an instance of VectorType.
Definition Type.h:288
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
Definition Type.cpp:309
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition Type.h:263
bool isPointerTy() const
True if this is an instance of PointerType.
Definition Type.h:282
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
LLVM_ABI bool isFirstClassType() const
Return true if the type is "first class", meaning it is a valid type for a Value.
Definition Type.cpp:251
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition Type.h:368
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
Definition Type.cpp:197
bool isByteOrByteVectorTy() const
Return true if this is a byte type or a vector of byte types.
Definition Type.h:248
bool isAggregateType() const
Return true if the type is an aggregate type.
Definition Type.h:319
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition Type.h:130
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
Definition Type.cpp:232
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
Definition Type.cpp:306
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition Type.h:186
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
Definition Type.h:285
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition Type.h:257
bool isTokenTy() const
Return true if this is 'token'.
Definition Type.h:236
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Definition Type.h:227
This class represents a cast unsigned integer to floating point.
LLVM_ABI UIToFPInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI UIToFPInst * cloneImpl() const
Clone an identical UIToFPInst.
UnaryInstruction(Type *Ty, unsigned iType, Value *V, InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:71
static LLVM_ABI UnaryOperator * Create(UnaryOps Op, Value *S, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a unary instruction, given the opcode and an operand.
LLVM_ABI UnaryOperator(UnaryOps iType, Value *S, Type *Ty, const Twine &Name, InsertPosition InsertBefore)
LLVM_ABI UnaryOperator * cloneImpl() const
UnaryOps getOpcode() const
Definition InstrTypes.h:163
Unconditional Branch instruction.
LLVM_ABI UncondBrInst * cloneImpl() const
LLVM_ABI UnreachableInst(LLVMContext &C, InsertPosition InsertBefore=nullptr)
LLVM_ABI bool shouldLowerToTrap(bool TrapUnreachable, bool NoTrapAfterNoreturn) const
friend class Instruction
Iterator for Instructions in a `BasicBlock.
LLVM_ABI UnreachableInst * cloneImpl() const
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
LLVM_ABI void set(Value *Val)
Definition Value.h:874
Use * op_iterator
Definition User.h:254
const Use * getOperandList() const
Definition User.h:200
op_iterator op_begin()
Definition User.h:259
LLVM_ABI void allocHungoffUses(unsigned N, bool WithExtraValues=false)
Allocate the array of Uses, followed by a pointer (with bottom bit set) to the User.
Definition User.cpp:54
const Use & getOperandUse(unsigned i) const
Definition User.h:220
void setNumHungOffUseOperands(unsigned NumOps)
Subclasses with hung off uses need to manage the operand count themselves.
Definition User.h:240
Use & Op()
Definition User.h:171
LLVM_ABI void growHungoffUses(unsigned N, bool WithExtraValues=false)
Grow the number of hung off uses.
Definition User.cpp:71
Value * getOperand(unsigned i) const
Definition User.h:207
unsigned getNumOperands() const
Definition User.h:229
op_iterator op_end()
Definition User.h:261
VAArgInst(Value *List, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
LLVM_ABI VAArgInst * cloneImpl() const
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
unsigned char SubclassOptionalData
Hold arbitary subclass data.
Definition Value.h:85
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
Definition Value.cpp:394
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition Value.cpp:553
LLVMContext & getContext() const
All values hold a context through their type.
Definition Value.h:258
unsigned NumUserOperands
Definition Value.h:109
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:319
Base class of all SIMD vector types.
ElementCount getElementCount() const
Return an ElementCount instance to represent the (possibly scalable) number of elements in the vector...
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
This class represents zero extension of integer types.
LLVM_ABI ZExtInst(Value *S, Type *Ty, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics.
LLVM_ABI ZExtInst * cloneImpl() const
Clone an identical ZExtInst.
constexpr ScalarTy getFixedValue() const
Definition TypeSize.h:200
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
Definition TypeSize.h:165
An efficient, type-erasing, non-owning reference to a callable.
typename base_list_type::iterator iterator
Definition ilist.h:121
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
bool match(Val *V, const Pattern &P)
cstfp_pred_ty< is_non_zero_not_denormal_fp > m_NonZeroNotDenormalFP()
Match a floating-point non-zero that is not a denormal.
initializer< Ty > init(const Ty &Val)
@ Switch
The "resume-switch" lowering, where there are separate resume and destroy functions that are shared b...
Definition CoroShape.h:31
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
Definition Metadata.h:668
NodeAddr< UseNode * > Use
Definition RDFGraph.h:387
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:573
auto seq_inclusive(T Begin, T End)
Iterate over an integral type from Begin to End inclusive.
Definition Sequence.h:325
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
Definition STLExtras.h:1669
unsigned getPointerAddressSpace(const Type *T)
Definition SPIRVUtils.h:386
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI MDNode * getBranchWeightMDNode(const Instruction &I)
Get the branch weights metadata node.
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:356
constexpr auto equal_to(T &&Arg)
Functor variant of std::equal_to that can be used as a UnaryPredicate in functional algorithms like a...
Definition STLExtras.h:2173
std::enable_if_t< std::is_unsigned_v< T >, std::optional< T > > checkedMulUnsigned(T LHS, T RHS)
Multiply two unsigned integers LHS and RHS.
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
LLVM_ABI MDNode * getValidBranchWeightMDNode(const Instruction &I)
Get the valid branch weights metadata node.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:279
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
bool isPointerTy(const Type *T)
Definition SPIRVUtils.h:374
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
constexpr int PoisonMaskElem
LLVM_ABI unsigned getNumBranchWeights(const MDNode &ProfileData)
AtomicOrdering
Atomic ordering for LLVM's memory model.
LLVM_ABI void extractFromBranchWeightMD32(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Faster version of extractBranchWeights() that skips checks and must only be called with "branch_weigh...
OperandBundleDefT< Value * > OperandBundleDef
Definition AutoUpgrade.h:34
@ Mul
Product of integers.
@ FSub
Subtraction of floats.
@ Xor
Bitwise or logical XOR of integers.
@ FMul
Product of floats.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
@ FAdd
Sum of floats.
DWARFExpression::Operation Op
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
OutputIt copy(R &&Range, OutputIt Out)
Definition STLExtras.h:1885
constexpr unsigned BitWidth
LLVM_ABI bool extractBranchWeights(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Extract branch weights from MD_prof metadata.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1947
bool capturesAnything(CaptureComponents CC)
Definition ModRef.h:379
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
Definition STLExtras.h:2166
auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
Definition Sequence.h:305
@ Default
The result value is uniform if and only if all operands are uniform.
Definition Uniformity.h:20
LLVM_ABI void scaleProfData(Instruction &I, uint64_t S, uint64_t T)
Scaling the profile data attached to 'I' using the ratio of S/T.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Summary of memprof metadata on allocations.
Used to keep track of an operand bundle.
uint32_t End
The index in the Use& vector where operands for this operand bundle ends.
uint32_t Begin
The index in the Use& vector where operands for this operand bundle starts.
static LLVM_ABI std::optional< bool > eq(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_EQ result.
static LLVM_ABI std::optional< bool > ne(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_NE result.
static LLVM_ABI std::optional< bool > sge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGE result.
static LLVM_ABI std::optional< bool > ugt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGT result.
static LLVM_ABI std::optional< bool > slt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLT result.
static LLVM_ABI std::optional< bool > ult(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_ULT result.
static LLVM_ABI std::optional< bool > ule(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_ULE result.
static LLVM_ABI std::optional< bool > sle(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLE result.
static LLVM_ABI std::optional< bool > sgt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGT result.
static LLVM_ABI std::optional< bool > uge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGE result.
A structure representing the properties of a load or store instruction.
Matching combinators.
A MapVector that performs no allocations if smaller than a certain size.
Definition MapVector.h:342
Indicates this User has operands co-allocated.
Definition User.h:60
Indicates this User has operands and a descriptor co-allocated .
Definition User.h:66