14#ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
15#define LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
58 Type *AccessType)
const {
82 return SI.getNumCases();
160 virtual std::pair<KnownBits, KnownBits>
164 "expected pointer or pointer vector type");
167 if (
DL.isNonIntegralAddressSpace(FromAS))
168 return std::pair(
KnownBits(
DL.getPointerSizeInBits(FromAS)),
174 CastI->getDestAddressSpace(), *CastI->getPointerOperand());
175 FromPtrBits = KB.second;
183 return {FromPtrBits, ToPtrBits};
189 unsigned ToASBitSize =
DL.getPointerSizeInBits(ToAS);
191 if (
DL.isNonIntegralAddressSpace(FromAS))
201 unsigned DstAS)
const {
202 return {
DL.getPointerSizeInBits(SrcAS), 0};
212 virtual std::pair<const Value *, unsigned>
214 return std::make_pair(
nullptr, -1);
224 assert(
F &&
"A concrete function must be provided to this routine.");
231 if (
F->isIntrinsic())
234 if (
F->hasLocalLinkage() || !
F->hasName())
241 if (Name ==
"copysign" || Name ==
"copysignf" || Name ==
"copysignl" ||
242 Name ==
"fabs" || Name ==
"fabsf" || Name ==
"fabsl" ||
243 Name ==
"fmin" || Name ==
"fminf" || Name ==
"fminl" ||
244 Name ==
"fmax" || Name ==
"fmaxf" || Name ==
"fmaxl" ||
245 Name ==
"sin" || Name ==
"sinf" || Name ==
"sinl" ||
246 Name ==
"cos" || Name ==
"cosf" || Name ==
"cosl" ||
247 Name ==
"tan" || Name ==
"tanf" || Name ==
"tanl" ||
248 Name ==
"asin" || Name ==
"asinf" || Name ==
"asinl" ||
249 Name ==
"acos" || Name ==
"acosf" || Name ==
"acosl" ||
250 Name ==
"atan" || Name ==
"atanf" || Name ==
"atanl" ||
251 Name ==
"atan2" || Name ==
"atan2f" || Name ==
"atan2l"||
252 Name ==
"sinh" || Name ==
"sinhf" || Name ==
"sinhl" ||
253 Name ==
"cosh" || Name ==
"coshf" || Name ==
"coshl" ||
254 Name ==
"tanh" || Name ==
"tanhf" || Name ==
"tanhl" ||
255 Name ==
"sqrt" || Name ==
"sqrtf" || Name ==
"sqrtl" ||
256 Name ==
"exp10" || Name ==
"exp10l" || Name ==
"exp10f")
260 if (Name ==
"pow" || Name ==
"powf" || Name ==
"powl" || Name ==
"exp2" ||
261 Name ==
"exp2l" || Name ==
"exp2f" || Name ==
"floor" ||
262 Name ==
"floorf" || Name ==
"ceil" || Name ==
"round" ||
263 Name ==
"ffs" || Name ==
"ffsl" || Name ==
"abs" || Name ==
"labs" ||
287 virtual std::optional<Instruction *>
292 virtual std::optional<Value *>
295 bool &KnownBitsComputed)
const {
303 SimplifyAndSetOp)
const {
321 int64_t BaseOffset,
bool HasBaseReg,
322 int64_t Scale,
unsigned AddrSpace,
324 int64_t ScalableOffset = 0)
const {
327 return !BaseGV && BaseOffset == 0 && (Scale == 0 || Scale == 1);
374 unsigned DataSize =
DL.getTypeStoreSize(DataType);
381 unsigned DataSize =
DL.getTypeStoreSize(DataType);
399 Align Alignment)
const {
404 Align Alignment)
const {
409 Align Alignment)
const {
429 unsigned AddrSpace)
const {
434 Type *DataType)
const {
452 bool HasBaseReg, int64_t Scale,
453 unsigned AddrSpace)
const {
456 Scale, AddrSpace,
nullptr,
468 virtual bool useAA()
const {
return false; }
489 unsigned ScalarOpdIdx)
const {
564 unsigned *
Fast)
const {
622 Type *Ty =
nullptr)
const {
629 return "Generic::Unknown Register Class";
631 return "Generic::ScalarRC";
633 return "Generic::VectorRC";
669 virtual unsigned getMaximumVF(
unsigned ElemWidth,
unsigned Opcode)
const {
678 const Instruction &
I,
bool &AllowPromotionWithoutCommonHeader)
const {
679 AllowPromotionWithoutCommonHeader =
false;
684 virtual std::optional<unsigned>
695 virtual std::optional<unsigned>
711 unsigned NumStridedMemAccesses,
712 unsigned NumPrefetches,
713 bool HasCall)
const {
721 unsigned Opcode,
Type *InputTypeA,
Type *InputTypeB,
Type *AccumType,
729 bool HasUnorderedReductions)
const {
739 auto IsWidenableCondition = [](
const Value *V) {
741 if (
II->getIntrinsicID() == Intrinsic::experimental_widenable_condition)
750 case Instruction::FDiv:
751 case Instruction::FRem:
752 case Instruction::SDiv:
753 case Instruction::SRem:
754 case Instruction::UDiv:
755 case Instruction::URem:
758 case Instruction::And:
759 case Instruction::Or:
760 if (
any_of(Args, IsWidenableCondition))
767 if (Ty->getScalarType()->isFloatingPointTy())
796 case Instruction::IntToPtr: {
797 unsigned SrcSize = Src->getScalarSizeInBits();
798 if (
DL.isLegalInteger(SrcSize) &&
799 SrcSize <=
DL.getPointerTypeSizeInBits(Dst))
803 case Instruction::PtrToAddr: {
804 unsigned DstSize = Dst->getScalarSizeInBits();
805 assert(DstSize ==
DL.getAddressSizeInBits(Src));
806 if (
DL.isLegalInteger(DstSize))
810 case Instruction::PtrToInt: {
811 unsigned DstSize = Dst->getScalarSizeInBits();
812 if (
DL.isLegalInteger(DstSize) &&
813 DstSize >=
DL.getPointerTypeSizeInBits(Src))
817 case Instruction::BitCast:
818 if (Dst == Src || (Dst->isPointerTy() && Src->isPointerTy()))
822 case Instruction::Trunc: {
871 ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
886 unsigned Index)
const {
892 const APInt &DemandedDstElts,
903 if (Opcode == Instruction::InsertValue &&
919 bool UseMaskForCond,
bool UseMaskForGaps)
const {
926 switch (ICA.
getID()) {
929 case Intrinsic::allow_runtime_check:
930 case Intrinsic::allow_ubsan_check:
931 case Intrinsic::annotation:
932 case Intrinsic::assume:
933 case Intrinsic::sideeffect:
934 case Intrinsic::pseudoprobe:
935 case Intrinsic::arithmetic_fence:
936 case Intrinsic::dbg_assign:
937 case Intrinsic::dbg_declare:
938 case Intrinsic::dbg_value:
939 case Intrinsic::dbg_label:
940 case Intrinsic::invariant_start:
941 case Intrinsic::invariant_end:
942 case Intrinsic::launder_invariant_group:
943 case Intrinsic::is_constant:
944 case Intrinsic::lifetime_start:
945 case Intrinsic::lifetime_end:
946 case Intrinsic::experimental_noalias_scope_decl:
947 case Intrinsic::objectsize:
948 case Intrinsic::ptr_annotation:
949 case Intrinsic::var_annotation:
950 case Intrinsic::experimental_gc_result:
951 case Intrinsic::experimental_gc_relocate:
952 case Intrinsic::coro_alloc:
953 case Intrinsic::coro_begin:
954 case Intrinsic::coro_begin_custom_abi:
955 case Intrinsic::coro_dead:
956 case Intrinsic::coro_id:
957 case Intrinsic::coro_id_async:
958 case Intrinsic::coro_id_retcon:
959 case Intrinsic::coro_id_retcon_once:
960 case Intrinsic::coro_noop:
961 case Intrinsic::coro_free:
962 case Intrinsic::coro_end:
963 case Intrinsic::coro_frame:
964 case Intrinsic::coro_size:
965 case Intrinsic::coro_align:
966 case Intrinsic::coro_suspend:
967 case Intrinsic::coro_subfn_addr:
968 case Intrinsic::threadlocal_address:
969 case Intrinsic::experimental_widenable_condition:
970 case Intrinsic::ssa_copy:
973 case Intrinsic::bswap:
984 switch (MICA.
getID()) {
985 case Intrinsic::masked_scatter:
986 case Intrinsic::masked_gather:
987 case Intrinsic::masked_load:
988 case Intrinsic::masked_store:
989 case Intrinsic::vp_scatter:
990 case Intrinsic::vp_gather:
991 case Intrinsic::masked_compressstore:
992 case Intrinsic::masked_expandload:
1016 std::optional<FastMathFlags> FMF,
1029 VectorType *Ty, std::optional<FastMathFlags> FMF,
1061 bool CanCreate =
true)
const {
1067 unsigned SrcAddrSpace,
unsigned DestAddrSpace,
1069 std::optional<uint32_t> AtomicElementSize)
const {
1070 return AtomicElementSize ?
Type::getIntNTy(Context, *AtomicElementSize * 8)
1076 unsigned RemainingBytes,
unsigned SrcAddrSpace,
unsigned DestAddrSpace,
1078 std::optional<uint32_t> AtomicCpySize)
const {
1079 unsigned OpSizeInBytes = AtomicCpySize.value_or(1);
1081 for (
unsigned i = 0; i != RemainingBytes; i += OpSizeInBytes)
1087 return (Caller->getFnAttribute(
"target-cpu") ==
1088 Callee->getFnAttribute(
"target-cpu")) &&
1089 (Caller->getFnAttribute(
"target-features") ==
1090 Callee->getFnAttribute(
"target-features"));
1094 unsigned DefaultCallPenalty)
const {
1095 return DefaultCallPenalty;
1108 return (Caller->getFnAttribute(
"target-cpu") ==
1109 Callee->getFnAttribute(
"target-cpu")) &&
1110 (Caller->getFnAttribute(
"target-features") ==
1111 Callee->getFnAttribute(
"target-features"));
1132 unsigned AddrSpace)
const {
1138 unsigned AddrSpace)
const {
1151 GatherUseOps)
const {
1152 return TargetTransformInfo::VectorInstrContext::None;
1160 unsigned ChainSizeInBytes,
1166 unsigned ChainSizeInBytes,
1270 unsigned MaxRequiredSize =
1271 VT->getElementType()->getPrimitiveSizeInBits().getFixedValue();
1273 unsigned MinRequiredSize = 0;
1274 for (
unsigned i = 0, e = VT->getNumElements(); i < e; ++i) {
1275 if (
auto *IntElement =
1277 bool signedElement = IntElement->getValue().isNegative();
1279 unsigned ElementMinRequiredSize =
1280 IntElement->getValue().getSignificantBits() - 1;
1284 MinRequiredSize = std::max(MinRequiredSize, ElementMinRequiredSize);
1287 return MaxRequiredSize;
1290 return MinRequiredSize;
1294 isSigned = CI->getValue().isNegative();
1295 return CI->getValue().getSignificantBits() - 1;
1300 return Cast->getSrcTy()->getScalarSizeInBits() - 1;
1305 return Cast->getSrcTy()->getScalarSizeInBits();
1317 const SCEV *Ptr)
const {
1325 int64_t MergeDistance)
const {
1339template <
typename T>
1351 Type *AccessType)
const override {
1352 assert(PointeeType && Ptr &&
"can't get GEPCost of nullptr");
1354 bool HasBaseReg = (BaseGV ==
nullptr);
1356 auto PtrSizeBits =
DL.getPointerTypeSizeInBits(Ptr->
getType());
1357 APInt BaseOffset(PtrSizeBits, 0);
1361 Type *TargetType =
nullptr;
1369 TargetType = GTI.getIndexedType();
1376 if (
StructType *STy = GTI.getStructTypeOrNull()) {
1378 assert(ConstIdx &&
"Unexpected GEP index");
1380 BaseOffset +=
DL.getStructLayout(STy)->getElementOffset(
Field);
1384 if (TargetType->isScalableTy())
1386 int64_t ElementSize =
1387 GTI.getSequentialElementStride(
DL).getFixedValue();
1396 Scale = ElementSize;
1411 AccessType = TargetType;
1442 for (
const Value *V : Ptrs) {
1446 if (Info.isSameBase() && V !=
Base) {
1447 if (
GEP->hasAllConstantIndices())
1451 {TTI::OK_AnyValue, TTI::OP_None}, {TTI::OK_AnyValue, TTI::OP_None},
1456 GEP->getSourceElementType(),
GEP->getPointerOperand(), Indices,
1468 auto *TargetTTI =
static_cast<const T *
>(
this);
1473 if (
const Function *
F = CB->getCalledFunction()) {
1474 if (!TargetTTI->isLoweredToCall(
F))
1483 Type *Ty = U->getType();
1489 case Instruction::Call: {
1493 return TargetTTI->getIntrinsicInstrCost(CostAttrs,
CostKind);
1495 case Instruction::UncondBr:
1496 case Instruction::CondBr:
1497 case Instruction::Ret:
1498 case Instruction::PHI:
1499 case Instruction::Switch:
1500 return TargetTTI->getCFInstrCost(Opcode,
CostKind,
I);
1501 case Instruction::Freeze:
1503 case Instruction::ExtractValue:
1504 case Instruction::InsertValue:
1505 return TargetTTI->getInsertExtractValueCost(Opcode,
CostKind);
1506 case Instruction::Alloca:
1510 case Instruction::GetElementPtr: {
1512 Type *AccessType =
nullptr;
1515 if (
GEP->hasOneUser() &&
I)
1516 AccessType =
I->user_back()->getAccessType();
1518 return TargetTTI->getGEPCost(
GEP->getSourceElementType(),
1522 case Instruction::Add:
1523 case Instruction::FAdd:
1524 case Instruction::Sub:
1525 case Instruction::FSub:
1526 case Instruction::Mul:
1527 case Instruction::FMul:
1528 case Instruction::UDiv:
1529 case Instruction::SDiv:
1530 case Instruction::FDiv:
1531 case Instruction::URem:
1532 case Instruction::SRem:
1533 case Instruction::FRem:
1534 case Instruction::Shl:
1535 case Instruction::LShr:
1536 case Instruction::AShr:
1537 case Instruction::And:
1538 case Instruction::Or:
1539 case Instruction::Xor:
1540 case Instruction::FNeg: {
1543 if (Opcode != Instruction::FNeg)
1545 return TargetTTI->getArithmeticInstrCost(Opcode, Ty,
CostKind, Op1Info,
1548 case Instruction::IntToPtr:
1549 case Instruction::PtrToAddr:
1550 case Instruction::PtrToInt:
1551 case Instruction::SIToFP:
1552 case Instruction::UIToFP:
1553 case Instruction::FPToUI:
1554 case Instruction::FPToSI:
1555 case Instruction::Trunc:
1556 case Instruction::FPTrunc:
1557 case Instruction::BitCast:
1558 case Instruction::FPExt:
1559 case Instruction::SExt:
1560 case Instruction::ZExt:
1561 case Instruction::AddrSpaceCast: {
1563 return TargetTTI->getCastInstrCost(
1566 case Instruction::Store: {
1570 return TargetTTI->getMemoryOpCost(Opcode, ValTy,
SI->getAlign(),
1574 case Instruction::Load: {
1576 Type *LoadType = U->getType();
1587 LoadType = TI->getDestTy();
1589 return TargetTTI->getMemoryOpCost(Opcode, LoadType, LI->getAlign(),
1591 {TTI::OK_AnyValue, TTI::OP_None},
I);
1593 case Instruction::Select: {
1594 const Value *Op0, *Op1;
1605 return TargetTTI->getArithmeticInstrCost(
1612 return TargetTTI->getCmpSelInstrCost(Opcode, U->getType(), CondTy,
1616 case Instruction::ICmp:
1617 case Instruction::FCmp: {
1622 return TargetTTI->getCmpSelInstrCost(Opcode, ValTy, U->getType(),
1627 case Instruction::InsertElement: {
1633 if (CI->getValue().getActiveBits() <= 32)
1634 Idx = CI->getZExtValue();
1635 return TargetTTI->getVectorInstrCost(*IE, Ty,
CostKind, Idx,
1638 case Instruction::ShuffleVector: {
1646 int NumSubElts, SubIndex;
1649 if (
all_of(Mask, [](
int M) {
return M < 0; }))
1653 if (Shuffle->changesLength()) {
1655 if (Shuffle->increasesLength() && Shuffle->isIdentityWithPadding())
1658 if (Shuffle->isExtractSubvectorMask(SubIndex))
1660 VecSrcTy,
CostKind, Mask, SubIndex,
1663 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex))
1664 return TargetTTI->getShuffleCost(
1670 int ReplicationFactor, VF;
1671 if (Shuffle->isReplicationMask(ReplicationFactor, VF)) {
1675 DemandedDstElts.
setBit(
I.index());
1677 return TargetTTI->getReplicationShuffleCost(
1678 VecSrcTy->getElementType(), ReplicationFactor, VF,
1683 NumSubElts = VecSrcTy->getElementCount().getKnownMinValue();
1689 if (Shuffle->increasesLength()) {
1690 for (
int &M : AdjustMask)
1691 M = M >= NumSubElts ? (M + (Mask.size() - NumSubElts)) : M;
1693 return TargetTTI->getShuffleCost(
1710 std::iota(ExtractMask.
begin(), ExtractMask.
end(), 0);
1711 return ShuffleCost + TargetTTI->getShuffleCost(
1713 CostKind, ExtractMask, 0, VecTy, {}, Shuffle);
1716 if (Shuffle->isIdentity())
1719 if (Shuffle->isReverse())
1724 if (Shuffle->isTranspose())
1729 if (Shuffle->isZeroEltSplat())
1734 if (Shuffle->isSingleSource())
1736 VecSrcTy,
CostKind, Mask, 0,
nullptr,
1739 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex))
1740 return TargetTTI->getShuffleCost(
1745 if (Shuffle->isSelect())
1746 return TargetTTI->getShuffleCost(
TTI::SK_Select, VecTy, VecSrcTy,
1750 if (Shuffle->isSplice(SubIndex))
1751 return TargetTTI->getShuffleCost(
TTI::SK_Splice, VecTy, VecSrcTy,
1759 case Instruction::ExtractElement: {
1765 if (CI->getValue().getActiveBits() <= 32)
1766 Idx = CI->getZExtValue();
1768 return TargetTTI->getVectorInstrCost(*EEI, DstTy,
CostKind, Idx);
1777 auto *TargetTTI =
static_cast<const T *
>(
this);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
static bool isSigned(unsigned Opcode)
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
uint64_t IntrinsicInst * II
OptimizedStructLayoutField Field
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
static SymbolRef::Type getType(const Symbol *Sym)
static void computeKnownBits(const Value *V, const APInt &DemandedElts, KnownBits &Known, const SimplifyQuery &Q, unsigned Depth)
Determine which bits of V are known to be either zero or one and return them in the Known bit set.
Class for arbitrary precision integers.
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
unsigned getBitWidth() const
Return the number of bits in the APInt.
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
int64_t getSExtValue() const
Get sign extended value.
This class represents a conversion between pointers from one address space to another.
an instruction to allocate memory on the stack
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Class to represent array types.
A cache of @llvm.assume calls within a function.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Conditional Branch instruction.
This is the shared class of boolean and integer constants.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
const APInt & getValue() const
Return the constant as an APInt value reference.
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
Convenience struct for specifying and reasoning about fast-math flags.
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
The core instruction combiner logic.
static InstructionCost getInvalid(CostType Val=0)
Class to represent integer types.
Type * getReturnType() const
Intrinsic::ID getID() const
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Represents a single loop in the control flow graph.
Information for memory intrinsic cost model.
Intrinsic::ID getID() const
unsigned getOpcode() const
Return the opcode for this Instruction or ConstantExpr.
Analysis providing profile information.
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
This node represents a polynomial recurrence on the trip count of the specified loop.
SCEVUse getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
This class represents a constant integer value.
const APInt & getAPInt() const
This class represents an analyzed expression in the program.
The main scalar evolution driver.
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...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StackOffset holds a fixed and a scalable offset in bytes.
static StackOffset getScalable(int64_t Scalable)
static StackOffset getFixed(int64_t Fixed)
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
Class to represent struct types.
Provides information about what library functions are available for the current target.
This class represents a truncation of integer types.
static constexpr TypeSize get(ScalarTy Quantity, bool Scalable)
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
This is the common base class for vector predication intrinsics.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
Base class of all SIMD vector types.
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
An efficient, type-erasing, non-owning reference to a callable.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
LogicalOp_match< LHS, RHS, Instruction::And > m_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R either in the form of L & R or L ?
bool match(Val *V, const Pattern &P)
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
auto m_Value()
Match an arbitrary value and ignore it.
auto m_Constant()
Match an arbitrary Constant and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
LogicalOp_match< LHS, RHS, Instruction::Or > m_LogicalOr(const LHS &L, const RHS &R)
Matches L || R either in the form of L | R or L ?
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
@ Known
Known to have no common set bits.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
LLVM_ABI Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
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...
constexpr int PoisonMaskElem
RecurKind
These are the kinds of recurrences that we support.
@ Fast
Assign the register banks as fast as possible (default).
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
gep_type_iterator gep_type_begin(const User *GEP)
@ DataWithoutLaneMask
Same as Data, but avoids using the get.active.lane.mask intrinsic to calculate the mask and instead i...
ValueUniformity
Enum describing how values behave with respect to uniformity and divergence, to answer the question: ...
@ Default
The result value is uniform if and only if all operands are uniform.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Attributes of a target dependent hardware loop.
KnownBits anyextOrTrunc(unsigned BitWidth) const
Return known bits for an "any" extension or truncation of the value we're tracking.
Information about a load/store intrinsic defined by the target.