Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/IR/
H A DLLVMContextImpl.h325 : CountNode(N->getRawCountNode()), LowerBound(N->getRawLowerBound()),
344 return BoundsEqual(CountNode, RHS->getRawCountNode()) &&
370 : CountNode(N->getRawCountNode()), LowerBound(N->getRawLowerBound()),
374 return (CountNode == RHS->getRawCountNode()) &&
H A DVerifier.cpp1006 CheckDI(HasAssumedSizedArraySupport || N.getRawCountNode() || in visitDISubrange()
1009 CheckDI(!N.getRawCountNode() || !N.getRawUpperBound(), in visitDISubrange()
1011 auto *CBound = N.getRawCountNode(); in visitDISubrange()
1037 CheckDI(N.getRawCountNode() || N.getRawUpperBound(), in visitDIGenericSubrange()
1039 CheckDI(!N.getRawCountNode() || !N.getRawUpperBound(), in visitDIGenericSubrange()
1041 auto *CBound = N.getRawCountNode(); in visitDIGenericSubrange()
H A DDebugInfoMetadata.cpp379 Metadata *CB = getRawCountNode(); in getCount()
477 Metadata *CB = getRawCountNode(); in getCount()
H A DAsmWriter.cpp1865 auto *Count = N->getRawCountNode(); in writeDISubrange()
1921 auto *Count = N->getRawCountNode(); in writeDIGenericSubrange()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h322 return getTemporary(getContext(), getRawCountNode(), getRawLowerBound(), in cloneImpl()
340 Metadata *getRawCountNode() const { return getOperand(0).get(); } in getRawCountNode() function
378 return getTemporary(getContext(), getRawCountNode(), getRawLowerBound(), in cloneImpl()
390 Metadata *getRawCountNode() const { return getOperand(0).get(); } in getRawCountNode() function
/llvm-project-15.0.7/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1612 Record.push_back(VE.getMetadataOrNullID(N->getRawCountNode())); in writeDISubrange()
1625 Record.push_back(VE.getMetadataOrNullID(N->getRawCountNode())); in writeDIGenericSubrange()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DMetadataTest.cpp1242 ASSERT_TRUE(isa<DIVariable>(N->getRawCountNode())); in TEST_F()