/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 365 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 D | DIBuilder.cpp | 716 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 D | DebugInfoMetadata.cpp | 456 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 D | SystemZISelDAGToDAG.cpp | 864 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 D | DebugInfoMetadata.h | 360 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 D | DIBuilder.h | 694 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDebugInfo.cpp | 3285 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()
|