Home
last modified time | relevance | path

Searched refs:CountNode (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp811 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
812 if (!CountNode) in expandRxSBG()
815 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG()
849 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
850 if (!CountNode) in expandRxSBG()
853 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
876 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
877 if (!CountNode) in expandRxSBG()
880 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DLLVMContextImpl.h324 Metadata *CountNode;
327 MDNodeKeyImpl(Metadata *CountNode, int64_t LowerBound)
328 : CountNode(CountNode), LowerBound(LowerBound) {}
330 : CountNode(N->getRawCountNode()),
338 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
343 return CountNode == RHS->getRawCountNode();
347 if (auto *MD = dyn_cast<ConstantAsMetadata>(CountNode))
350 return hash_combine(CountNode, LowerBound);
DDebugInfoMetadata.cpp252 auto *CountNode = ConstantAsMetadata::get( in getImpl() local
254 return getImpl(Context, CountNode, Lo, Storage, ShouldCreate); in getImpl()
257 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() argument
260 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, Lo)); in getImpl()
261 Metadata *Ops[] = { CountNode }; in getImpl()
262 DEFINE_GETIMPL_STORE(DISubrange, (CountNode, Lo), Ops); in getImpl()
DDIBuilder.cpp627 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, Metadata *CountNode) { in getOrCreateSubrange() argument
628 return DISubrange::get(VMContext, CountNode, Lo); in getOrCreateSubrange()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp828 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
829 if (!CountNode) in expandRxSBG()
832 RxSBG.Rotate = (RxSBG.Rotate + CountNode->getZExtValue()) & 63; in expandRxSBG()
873 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
874 if (!CountNode) in expandRxSBG()
877 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
900 auto *CountNode = dyn_cast<ConstantSDNode>(N.getOperand(1).getNode()); in expandRxSBG() local
901 if (!CountNode) in expandRxSBG()
904 uint64_t Count = CountNode->getZExtValue(); in expandRxSBG()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDIBuilder.h563 DISubrange *getOrCreateSubrange(int64_t Lo, Metadata *CountNode);
DDebugInfoMetadata.h351 static DISubrange *getImpl(LLVMContext &Context, Metadata *CountNode,
363 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0),
364 (CountNode, LowerBound))