Searched refs:CURanges (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAranges.cpp56 Expected<DWARFAddressRangesVector> CURanges = CU->collectAddressRanges(); local
57 if (!CURanges)
58 WithColor::error() << toString(CURanges.takeError()) << '\n';
60 for (const auto &R : *CURanges)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h75 SmallVector<RangeSpan, 2> CURanges; member in class:llvm::final
352 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
353 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); }
H A DDwarfCompileUnit.cpp337 if (CURanges.empty() || !SameAsPrevCU ||
338 (&CURanges.back().End->getSection() !=
340 CURanges.push_back(Range);
344 CURanges.back().End = Range.End;

Completed in 178 milliseconds