19#define DEBUG_TYPE "assume-queries"
24STATISTIC(NumAssumeQueries,
"Number of Queries into an assume assume bundles");
26 NumUsefullAssumeQueries,
27 "Number of Queries into an assume assume bundles that were satisfied");
30 "Controls which assumes gets created");
46 "this attribute doesn't exist");
49 "requested value for an attribute that has no argument");
54 if (BOI.Tag->getKey() != AttrName)
56 if (IsOn && (BOI.End - BOI.Begin <=
ABA_WasOn ||
72 std::pair<Value *, Attribute::AttrKind> Key{
80 Result[Key][&Assume] = {0, 0};
83 auto *CI = dyn_cast<ConstantInt>(
88 auto Lookup = Result.find(Key);
89 if (
Lookup == Result.end() || !
Lookup->second.count(&Assume)) {
90 Result[Key][&Assume] = {Val, Val};
93 Lookup->second[&Assume].Min = std::min(Val,
Lookup->second[&Assume].Min);
94 Lookup->second[&Assume].Max = std::max(Val,
Lookup->second[&Assume].Max);
109 if (
auto *ConstInt = dyn_cast<ConstantInt>(
111 return ConstInt->getZExtValue();
115 Result.ArgValue = GetArgOr1(0);
116 if (Result.AttrKind == Attribute::Alignment)
118 Result.ArgValue =
MinAlign(Result.ArgValue, GetArgOr1(1));
131 return BOI.Tag->getKey() != IgnoreBundleTag;
136 if (!
match(U->getUser(),
139 auto *
Intr = cast<IntrinsicInst>(U->getUser());
140 return &
Intr->getBundleOpInfoForOperand(U->getOperandNo());
166 auto *
II = cast_or_null<AssumeInst>(Elem.Assume);
170 *
II,
II->bundle_op_info_begin()[Elem.Index])) {
174 Filter(RK,
II, &
II->bundle_op_info_begin()[Elem.Index])) {
175 NumUsefullAssumeQueries++;
182 for (
const auto &U : V->uses()) {
189 Filter(RK, cast<Instruction>(U.getUser()), Bundle)) {
190 NumUsefullAssumeQueries++;
static CallInst::BundleOpInfo * getBundleFromUse(const Use *U)
static Value * getValueFromBundleOpInfo(AssumeInst &Assume, const CallBase::BundleOpInfo &BOI, unsigned Idx)
static bool bundleHasArgument(const CallBase::BundleOpInfo &BOI, unsigned Idx)
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This file provides an implementation of debug counters.
#define DEBUG_COUNTER(VARNAME, COUNTERNAME, DESC)
uint64_t IntrinsicInst * II
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static int Lookup(ArrayRef< TableEntry > Table, unsigned Opcode)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
This represents the llvm.assume intrinsic.
A cache of @llvm.assume calls within a function.
MutableArrayRef< ResultElem > assumptionsFor(const Value *V)
Access the list of assumptions which affect this value.
static Attribute::AttrKind getAttrKindFromName(StringRef AttrName)
static bool isExistingAttribute(StringRef Name)
Return true if the provided string matches the IR name of an attribute.
@ None
No attributes have been set.
static bool isIntAttrKind(AttrKind Kind)
BundleOpInfo & getBundleOpInfoForOperand(unsigned OpIdx)
Return the BundleOpInfo for the operand at index OpIdx.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
static bool shouldExecute(unsigned CounterName)
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
StringRef - Represent a constant reference to a string, i.e.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
An efficient, type-erasing, non-owning reference to a callable.
bool match(Val *V, const Pattern &P)
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
match_unless< Ty > m_Unless(const Ty &M)
Match if the inner matcher does NOT match.
This is an optimization pass for GlobalISel generic memory operations.
bool isValidAssumeForContext(const Instruction *I, const Instruction *CxtI, const DominatorTree *DT=nullptr, bool AllowEphemerals=false)
Return true if it is valid to use the assumptions provided by an assume intrinsic,...
RetainedKnowledge getKnowledgeFromOperandInAssume(AssumeInst &Assume, unsigned Idx)
Retreive the information help by Assume on the operand at index Idx.
bool isAssumeWithEmptyBundle(const AssumeInst &Assume)
Return true iff the operand bundles of the provided llvm.assume doesn't contain any valuable informat...
constexpr T MinAlign(U A, V B)
A and B are either alignments or offsets.
RetainedKnowledge getKnowledgeValidInContext(const Value *V, ArrayRef< Attribute::AttrKind > AttrKinds, const Instruction *CtxI, const DominatorTree *DT=nullptr, AssumptionCache *AC=nullptr)
Return a valid Knowledge associated to the Value V if its Attribute kind is in AttrKinds and the know...
RetainedKnowledge getKnowledgeForValue(const Value *V, ArrayRef< Attribute::AttrKind > AttrKinds, AssumptionCache *AC=nullptr, function_ref< bool(RetainedKnowledge, Instruction *, const CallBase::BundleOpInfo *)> Filter=[](auto...) { return true;})
Return a valid Knowledge associated to the Value V if its Attribute kind is in AttrKinds and it match...
RetainedKnowledge getKnowledgeFromBundle(AssumeInst &Assume, const CallBase::BundleOpInfo &BOI)
This extracts the Knowledge from an element of an operand bundle.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
RetainedKnowledge getKnowledgeFromUse(const Use *U, ArrayRef< Attribute::AttrKind > AttrKinds)
Return a valid Knowledge associated to the Use U if its Attribute kind is in AttrKinds.
bool hasAttributeInAssume(AssumeInst &Assume, Value *IsOn, StringRef AttrName, uint64_t *ArgVal=nullptr)
Query the operand bundle of an llvm.assume to find a single attribute of the specified kind applied o...
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
void fillMapFromAssume(AssumeInst &Assume, RetainedKnowledgeMap &Result)
Insert into the map all the informations contained in the operand bundles of the llvm....
Used to keep track of an operand bundle.
StringMapEntry< uint32_t > * Tag
The operand bundle tag, interned by LLVMContextImpl::getOrInsertBundleTag.
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.
Represent one information held inside an operand bundle of an llvm.assume.
Attribute::AttrKind AttrKind
static RetainedKnowledge none()