| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 364 Metadata *CountNode; 369 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound, 371 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound), 374 : CountNode(N->getRawCountNode()), LowerBound(N->getRawLowerBound()), 393 return BoundsEqual(CountNode, RHS->getRawCountNode()) && 400 if (CountNode) 401 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode)) 404 return hash_combine(CountNode, LowerBound, UpperBound, Stride); 409 Metadata *CountNode; 414 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound, [all …]
|
| H A D | DIBuilder.cpp | 703 auto *CountNode = ConstantAsMetadata::get( in getOrCreateSubrange() local 705 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange() 708 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument 711 return DISubrange::get(VMContext, CountNode, LB, nullptr, nullptr); in getOrCreateSubrange() 714 DISubrange *DIBuilder::getOrCreateSubrange(Metadata *CountNode, Metadata *LB, in getOrCreateSubrange() argument 716 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange() 720 DIGenericSubrange::BoundType CountNode, DIGenericSubrange::BoundType LB, in getOrCreateGenericSubrange() argument 726 return DIGenericSubrange::get(VMContext, ConvToMetadata(CountNode), in getOrCreateGenericSubrange()
|
| H A D | DebugInfoMetadata.cpp | 385 auto *CountNode = ConstantAsMetadata::get( in getImpl() local 389 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 393 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 398 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 402 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 405 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl() 406 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() 499 Metadata *CountNode, Metadata *LB, in getImpl() argument 503 DEFINE_GETIMPL_LOOKUP(DIGenericSubrange, (CountNode, LB, UB, Stride)); in getImpl() 504 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 843 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 844 if (!CountNode) in expandRxSBG() 847 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG() 888 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 889 if (!CountNode) in expandRxSBG() 892 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG() 915 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 916 if (!CountNode) in expandRxSBG() 919 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 349 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 353 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 367 DEFINE_MDNODE_GET(DISubrange, (Metadata * CountNode, int64_t LowerBound = 0), 368 (CountNode, LowerBound)) 371 (Metadata * CountNode, Metadata *LowerBound, 373 (CountNode, LowerBound, UpperBound, Stride)) 409 static DIGenericSubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 421 (Metadata * CountNode, Metadata *LowerBound, 423 (CountNode, LowerBound, UpperBound, Stride))
|
| H A D | DIBuilder.h | 653 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 3014 auto *CountNode = in CreateType() local 3018 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType() 3110 auto *CountNode = in CreateType() local 3114 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, in CreateType()
|