HomeSort by relevance Sort by last modified time
    Searched refs:CUs (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 45 SmallVector<std::unique_ptr<DwarfUnit>, 1> CUs;
54 const SmallVectorImpl<std::unique_ptr<DwarfUnit>> &getUnits() { return CUs; }
65 /// \brief Add a unit to the list of CUs.
DwarfFile.cpp 46 CUs.push_back(std::move(U));
52 for (const auto &TheU : CUs) {
77 for (const auto &TheU : CUs) {
DwarfDebug.cpp 633 // LTO with assembly output shares a single line table amongst multiple CUs.
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.h 34 CUVector CUs;
51 /// and store them in CUs.
86 return cu_iterator_range(CUs.begin(), CUs.end());
110 return CUs.size();
134 return CUs[index].get();
DWARFContext.cpp 280 // which isn't specified in DWARF in general. It's only specified for CUs, but
315 if (!CUs.empty())
328 CUs.push_back(std::move(CU));
329 offset = CUs.back()->getNextUnitOffset();
414 std::lower_bound(CUs.begin(), CUs.end(), Offset, OffsetComparator());
415 if (CU != CUs.end()) {
  /external/llvm/include/llvm/IR/
DebugInfo.h 848 /// used by the CUs.
879 /// addCompileUnit - Add compile unit into CUs.
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 987 CUs.clear();
    [all...]

Completed in 2721 milliseconds