Home
last modified time | relevance | path

Searched refs:CountNode (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h394 Metadata *CountNode;
399 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound,
401 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound),
404 : CountNode(N->getRawCountNode()), LowerBound(N->getRawLowerBound()),
423 return BoundsEqual(CountNode, RHS->getRawCountNode()) &&
430 if (CountNode)
431 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
434 return hash_combine(CountNode, LowerBound, UpperBound, Stride);
439 Metadata *CountNode;
444 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound,
[all …]
H A DDIBuilder.cpp824 auto *CountNode = ConstantAsMetadata::get( in getOrCreateSubrange() local
826 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange()
829 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument
832 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange()
835 DISubrange *DIBuilder::getOrCreateSubrange(Metadata *CountNode, Metadata *LB, in getOrCreateSubrange() argument
837 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange()
841 DIGenericSubrange::BoundType CountNode, DIGenericSubrange::BoundType LB, in getOrCreateGenericSubrange() argument
847 return DIGenericSubrange::get(VMContext, ConvToMetadata(CountNode), in getOrCreateGenericSubrange()
H A DDebugInfoMetadata.cpp636 auto *CountNode = ConstantAsMetadata::get( in getImpl() local
640 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl()
644 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument
649 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl()
653 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument
656 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl()
657 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl()
750 Metadata *CountNode, Metadata *LB, in getImpl() argument
754 DEFINE_GETIMPL_LOOKUP(DIGenericSubrange, (CountNode, LB, UB, Stride)); in getImpl()
755 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp864 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
865 if (!CountNode) in expandRxSBG()
868 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG()
909 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
910 if (!CountNode) in expandRxSBG()
913 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
936 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
937 if (!CountNode) in expandRxSBG()
940 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h362 LLVM_ABI static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
366 LLVM_ABI static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
381 DEFINE_MDNODE_GET(DISubrange, (Metadata * CountNode, int64_t LowerBound = 0),
382 (CountNode, LowerBound))
385 (Metadata * CountNode, Metadata *LowerBound,
387 (CountNode, LowerBound, UpperBound, Stride))
424 getImpl(LLVMContext &Context, Metadata *CountNode, Metadata *LowerBound,
435 (Metadata * CountNode, Metadata *LowerBound,
437 (CountNode, LowerBound, UpperBound, Stride))
H A DDIBuilder.h845 LLVM_ABI DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3509 auto *CountNode = in CreateType() local
3513 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()
3605 auto *CountNode = in CreateType() local
3609 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()