HomeSort by: relevance | last modified time | path
    Searched refs:CURanges (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAranges.cpp 61 Expected<DWARFAddressRangesVector> CURanges = CU->collectAddressRanges();
62 if (!CURanges)
63 CTX->getRecoverableErrorHandler()(CURanges.takeError());
65 for (const auto &R : *CURanges)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 77 SmallVector<RangeSpan, 2> CURanges;
356 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; }
357 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); }
DwarfCompileUnit.cpp 360 if (CURanges.empty() || !SameAsPrevCU ||
361 (&CURanges.back().End->getSection() !=
363 CURanges.push_back(Range);
367 CURanges.back().End = Range.End;

Completed in 18 milliseconds