Home
last modified time | relevance | path

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/
DLLVMContextImpl.h327 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);
DDebugInfoMetadata.cpp322 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()
DDIBuilder.cpp628 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/
DSystemZISelDAGToDAG.cpp836 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/
DDIBuilder.h568 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
DDebugInfoMetadata.h303 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
315 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0),
316 (CountNode, LowerBound))