| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 363 Metadata *CountNode; 370 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound), 392 return BoundsEqual(CountNode, RHS->getRawCountNode()) && 399 if (CountNode) 400 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode)) 403 return hash_combine(CountNode, LowerBound, UpperBound, Stride); 408 Metadata *CountNode; 415 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound), 422 return (CountNode == RHS->getRawCountNode()) && 429 auto *MD = dyn_cast_or_null<ConstantAsMetadata>(CountNode); [all …]
|
| H A D | DIBuilder.cpp | 689 auto *CountNode = ConstantAsMetadata::get( in getOrCreateSubrange() local 691 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange() 694 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument 697 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange() 700 DISubrange *DIBuilder::getOrCreateSubrange(Metadata *CountNode, Metadata *LB, in getOrCreateSubrange() argument 702 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange() 706 DIGenericSubrange::BoundType CountNode, DIGenericSubrange::BoundType LB, in getOrCreateGenericSubrange() argument 712 return DIGenericSubrange::get(VMContext, ConvToMetadata(CountNode), in getOrCreateGenericSubrange()
|
| H A D | DebugInfoMetadata.cpp | 452 auto *CountNode = ConstantAsMetadata::get( in getImpl() local 456 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 460 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 465 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 469 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 472 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl() 473 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() 566 Metadata *CountNode, Metadata *LB, in getImpl() argument 570 DEFINE_GETIMPL_LOOKUP(DIGenericSubrange, (CountNode, LB, UB, Stride)); in getImpl() 571 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 849 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 850 if (!CountNode) in expandRxSBG() 853 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG() 894 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 895 if (!CountNode) in expandRxSBG() 898 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG() 921 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 922 if (!CountNode) in expandRxSBG() 925 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 359 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 363 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 377 DEFINE_MDNODE_GET(DISubrange, (Metadata * CountNode, int64_t LowerBound = 0), 378 (CountNode, LowerBound)) 381 (Metadata * CountNode, Metadata *LowerBound, 383 (CountNode, LowerBound, UpperBound, Stride)) 419 static DIGenericSubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 431 (Metadata * CountNode, Metadata *LowerBound, 433 (CountNode, LowerBound, UpperBound, Stride))
|
| H A D | DIBuilder.h | 660 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 3159 auto *CountNode = in CreateType() local 3163 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType() 3255 auto *CountNode = in CreateType() local 3259 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()
|