Searched refs:CountNode (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h327 Metadata *CountNode; member in struct:llvm::MDNodeKeyImpl
330 MDNodeKeyImpl(Metadata *CountNode, int64_t LowerBound) argument
331 : CountNode(CountNode), LowerBound(LowerBound) {}
333 : CountNode(N->getRawCountNode()),
341 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
346 return CountNode == RHS->getRawCountNode();
350 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
353 return hash_combine(CountNode, LowerBound);
H A DDebugInfoMetadata.cpp322 auto *CountNode = ConstantAsMetadata::get( local
324 return getImpl(Context, CountNode, Lo, Storage, ShouldCreate);
327 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, argument
330 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, Lo));
331 Metadata *Ops[] = { CountNode };
332 DEFINE_GETIMPL_STORE(DISubrange, (CountNode, Lo), Ops);
H A DDIBuilder.cpp628 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { argument
629 return DISubrange::get(VMContext, CountNode, Lo);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp836 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode());
837 if (!CountNode)
840 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63;
881 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); local
882 if (!CountNode)
885 uint64_t Count = CountNode->getZExtValue();
908 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); local
909 if (!CountNode)
912 uint64_t Count = CountNode->getZExtValue();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h568 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
H A DDebugInfoMetadata.h303 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
315 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0),
316 (CountNode, LowerBound))

Completed in 123 milliseconds