Home
last modified time | relevance | path

Searched refs:CURanges (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAranges.cpp56 Expected<DWARFAddressRangesVector> CURanges = CU->collectAddressRanges(); in generate() local
57 if (!CURanges) in generate()
58 WithColor::error() << toString(CURanges.takeError()) << '\n'; in generate()
60 for (const auto &R : *CURanges) in generate()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAranges.cpp62 Expected<DWARFAddressRangesVector> CURanges = CU->collectAddressRanges(); in generate() local
63 if (!CURanges) in generate()
64 CTX->getRecoverableErrorHandler()(CURanges.takeError()); in generate()
66 for (const auto &R : *CURanges) in generate()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAranges.cpp53 DWARFAddressRangesVector CURanges; in generate() local
54 CU->collectAddressRanges(CURanges); in generate()
55 for (const auto &R : CURanges) { in generate()
DDWARFUnit.cpp334 void DWARFUnit::collectAddressRanges(DWARFAddressRangesVector &CURanges) { in collectAddressRanges() argument
341 CURanges.insert(CURanges.end(), CUDIERanges.begin(), CUDIERanges.end()); in collectAddressRanges()
352 DieArray[0].collectChildrenAddressRanges(this, CURanges); in collectAddressRanges()
357 DWO->getUnit()->collectAddressRanges(CURanges); in collectAddressRanges()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.h68 SmallVector<RangeSpan, 2> CURanges; variable
256 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } in getRanges()
257 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); } in takeRanges()
DDwarfCompileUnit.cpp238 if (CURanges.empty() || !SameAsPrevCU || in addRange()
239 (&CURanges.back().getEnd()->getSection() != in addRange()
241 CURanges.push_back(Range); in addRange()
245 CURanges.back().setEnd(Range.getEnd()); in addRange()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.h77 SmallVector<RangeSpan, 2> CURanges; variable
356 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } in getRanges()
357 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); } in takeRanges()
DDwarfCompileUnit.cpp332 if (CURanges.empty() || !SameAsPrevCU || in addRange()
333 (&CURanges.back().End->getSection() != in addRange()
335 CURanges.push_back(Range); in addRange()
339 CURanges.back().End = Range.End; in addRange()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.h75 SmallVector<RangeSpan, 2> CURanges; variable
352 const SmallVectorImpl<RangeSpan> &getRanges() const { return CURanges; } in getRanges()
353 SmallVector<RangeSpan, 2> takeRanges() { return std::move(CURanges); } in takeRanges()
DDwarfCompileUnit.cpp337 if (CURanges.empty() || !SameAsPrevCU || in addRange()
338 (&CURanges.back().End->getSection() != in addRange()
340 CURanges.push_back(Range); in addRange()
344 CURanges.back().End = Range.End; in addRange()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFUnit.h212 void collectAddressRanges(DWARFAddressRangesVector &CURanges);