Searched refs:CountNode (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 327 Metadata *CountNode; 330 MDNodeKeyImpl(Metadata *CountNode, int64_t LowerBound) 331 : CountNode(CountNode), LowerBound(LowerBound) {} 333 : CountNode(N->getRawCountNode()), 341 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode)) 346 return CountNode == RHS->getRawCountNode(); 350 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode)) 353 return hash_combine(CountNode, LowerBound);
|
| H A D | DebugInfoMetadata.cpp | 315 auto *CountNode = ConstantAsMetadata::get( in getImpl() local 317 return getImpl(Context, CountNode, Lo, Storage, ShouldCreate); in getImpl() 320 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 323 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, Lo)); in getImpl() 324 Metadata *Ops[] = { CountNode }; in getImpl() 325 DEFINE_GETIMPL_STORE(DISubrange, (CountNode, Lo), Ops); in getImpl()
|
| H A D | DIBuilder.cpp | 627 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument 628 return DISubrange::get(VMContext, CountNode, Lo); in getOrCreateSubrange()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 825 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 826 if (!CountNode) in expandRxSBG() 829 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG() 870 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 871 if (!CountNode) in expandRxSBG() 874 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG() 897 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 898 if (!CountNode) in expandRxSBG() 901 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 567 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
|
| H A D | DebugInfoMetadata.h | 351 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 363 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0), 364 (CountNode, LowerBound))
|