Home
last modified time | relevance | path

Searched refs:Subrange (Results 1 – 6 of 6) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h125 Subrange, // --attribute=subrange enumerator
355 ATTRIBUTE_OPTION(Subrange);
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1001 if (auto *Subrange = dyn_cast<DISubrange>(El)) { in dependencies()
1002 if (auto Count = Subrange->getCount()) in dependencies()
1005 if (auto LB = Subrange->getLowerBound()) in dependencies()
1008 if (auto UB = Subrange->getUpperBound()) in dependencies()
1011 if (auto ST = Subrange->getStride()) in dependencies()
986 if (auto *Subrange = dyn_cast<DISubrange>(El)) { dependencies() local
H A DDwarfUnit.cpp1498 const auto Subrange = cast<DISubrange>(Elements[0]); in constructArrayTypeDIE()
1500 Subrange->getCount() in constructArrayTypeDIE()
1501 ? cast<ConstantInt *>(Subrange->getCount())->getSExtValue() in constructArrayTypeDIE()
1465 const auto Subrange = cast<DISubrange>(Elements[0]); hasVectorBeenPadded() local
H A DCodeViewDebug.cpp1743 const DISubrange *Subrange = cast<DISubrange>(Element); in lowerTypeArray() local
1750 if (auto *CI = dyn_cast_if_present<ConstantInt *>(Subrange->getCount())) in lowerTypeArray()
1753 Subrange->getUpperBound())) { in lowerTypeArray()
1756 auto *LI = dyn_cast_if_present<ConstantInt *>(Subrange->getLowerBound()); in lowerTypeArray()
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1848 LVType *Subrange = Reader->createTypeSubrange(); in visitKnownRecord() local
1849 Subrange->setTag(dwarf::DW_TAG_subrange_type); in visitKnownRecord()
1850 Subrange->setType(getElement(StreamTPI, AR.getIndexType())); in visitKnownRecord()
1851 Subrange->setCount(AR.getSize()); in visitKnownRecord()
1852 Subrange->setOffset( in visitKnownRecord()
1856 Array->addElement(Subrange); in visitKnownRecord()
1859 if (int64_t Count = Subrange->getCount()) in visitKnownRecord()
1861 PrevSubrange = Subrange; in visitKnownRecord()
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DOptions.cpp119 clEnumValN(LVAttributeKind::Subrange, "subrange",