Searched refs:CountNode (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
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);
|
D | DebugInfoMetadata.cpp | 322 auto *CountNode = ConstantAsMetadata::get( in getImpl() local 324 return getImpl(Context, CountNode, Lo, Storage, ShouldCreate); in getImpl() 327 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument 330 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, Lo)); in getImpl() 331 Metadata *Ops[] = { CountNode }; in getImpl() 332 DEFINE_GETIMPL_STORE(DISubrange, (CountNode, Lo), Ops); in getImpl()
|
D | DIBuilder.cpp | 628 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument 629 return DISubrange::get(VMContext, CountNode, Lo); in getOrCreateSubrange()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 836 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 837 if (!CountNode) in expandRxSBG() 840 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG() 881 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 882 if (!CountNode) in expandRxSBG() 885 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG() 908 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local 909 if (!CountNode) in expandRxSBG() 912 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DIBuilder.h | 568 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
|
D | DebugInfoMetadata.h | 303 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode, 315 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0), 316 (CountNode, LowerBound))
|