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.h365 Metadata *CountNode;
370 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound,
372 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound),
375 : CountNode(N->getRawCountNode()), LowerBound(N->getRawLowerBound()),
394 return BoundsEqual(CountNode, RHS->getRawCountNode()) &&
401 if (CountNode)
402 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
405 return hash_combine(CountNode, LowerBound, UpperBound, Stride);
410 Metadata *CountNode;
415 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound,
[all …]
H A DDIBuilder.cpp716 auto *CountNode = ConstantAsMetadata::get( in getOrCreateSubrange() local
718 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange()
721 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument
724 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange()
727 DISubrange *DIBuilder::getOrCreateSubrange(Metadata *CountNode, Metadata *LB, in getOrCreateSubrange() argument
729 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange()
733 DIGenericSubrange::BoundType CountNode, DIGenericSubrange::BoundType LB, in getOrCreateGenericSubrange() argument
739 return DIGenericSubrange::get(VMContext, ConvToMetadata(CountNode), in getOrCreateGenericSubrange()
H A DDebugInfoMetadata.cpp456 auto *CountNode = ConstantAsMetadata::get( in getImpl() local
460 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl()
464 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument
469 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl()
473 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument
476 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl()
477 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl()
570 Metadata *CountNode, Metadata *LB, in getImpl() argument
574 DEFINE_GETIMPL_LOOKUP(DIGenericSubrange, (CountNode, LB, UB, Stride)); in getImpl()
575 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.h360 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
364 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
378 DEFINE_MDNODE_GET(DISubrange, (Metadata * CountNode, int64_t LowerBound = 0),
379 (CountNode, LowerBound))
382 (Metadata * CountNode, Metadata *LowerBound,
384 (CountNode, LowerBound, UpperBound, Stride))
420 static DIGenericSubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
432 (Metadata * CountNode, Metadata *LowerBound,
434 (CountNode, LowerBound, UpperBound, Stride))
H A DDIBuilder.h694 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3285 auto *CountNode = in CreateType() local
3289 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()
3381 auto *CountNode = in CreateType() local
3385 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()