Searched refs:CUs (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.h45 SmallVector<std::unique_ptr<DwarfUnit>, 1> CUs; member in class:llvm::DwarfFile
54 const SmallVectorImpl<std::unique_ptr<DwarfUnit>> &getUnits() { return CUs; }
65 /// \brief Add a unit to the list of CUs.
H A DDwarfFile.cpp46 CUs.push_back(std::move(U));
52 for (const auto &TheU : CUs) {
77 for (const auto &TheU : CUs) {
H A DDwarfDebug.cpp633 // LTO with assembly output shares a single line table amongst multiple CUs.
2159 // Build a list of CUs used.
2160 std::vector<DwarfCompileUnit *> CUs; local
2163 CUs.push_back(CU);
2167 std::sort(CUs.begin(), CUs.end(), [](const DwarfUnit *A, const DwarfUnit *B) {
2172 for (DwarfCompileUnit *CU : CUs) {
/external/llvm/lib/DebugInfo/
H A DDWARFContext.h34 CUVector CUs; member in class:llvm::DWARFContext
51 /// and store them in CUs.
86 return cu_iterator_range(CUs.begin(), CUs.end());
110 return CUs.size();
134 return CUs[index].get();
H A DDWARFContext.cpp280 // 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/
H A DDebugInfo.h848 /// used by the CUs.
879 /// addCompileUnit - Add compile unit into CUs.
901 return iterator_range<compile_unit_iterator>(CUs.begin(), CUs.end());
920 unsigned compile_unit_count() const { return CUs.size(); }
927 SmallVector<DICompileUnit, 8> CUs; // Compile Units member in class:llvm::DebugInfoFinder
/external/llvm/lib/IR/
H A DDebugInfo.cpp987 CUs.clear();
1170 /// addCompileUnit - Add compile unit into CUs.
1177 CUs.push_back(CU);

Completed in 110 milliseconds