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

/freebsd-10.2-release/contrib/llvm/lib/DebugInfo/
H A DDWARFContext.h31 SmallVector<DWARFCompileUnit *, 1> CUs; member in class:llvm::DWARFContext
45 /// Read compile units from the debug_info section and store them in CUs.
48 /// Read type units from the debug_types sections and store them in CUs.
72 if (CUs.empty())
74 return CUs.size();
93 if (CUs.empty())
95 return CUs[index];
H A DDWARFContext.cpp27 DeleteContainerPointers(CUs);
246 // which isn't specified in DWARF in general. It's only specified for CUs, but
292 CUs.push_back(CU.take());
293 offset = CUs.back()->getNextUnitOffset();
353 if (CUs.empty())
357 std::lower_bound(CUs.begin(), CUs.end(), Offset, OffsetComparator());
358 if (CU != CUs.end()) {
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h232 SmallVector<CompileUnit *, 1> CUs; member in class:llvm::DwarfUnits
267 /// \brief Add a unit to the list of CUs.
268 void addUnit(CompileUnit *CU) { CUs.push_back(CU); }
336 /// be shared across CUs, that is why we keep the map here instead
431 // Counter for assigning globally unique IDs for CUs.
463 // The CUs left in the original object file for separated debug info.
H A DDwarfDebug.cpp848 // program is defined in multiple CUs we could end up calling it out of
849 // beginModule as we walk the CUs.
1998 for (SmallVectorImpl<CompileUnit *>::iterator I = CUs.begin(),
1999 E = CUs.end(); I != E; ++I) {
2183 for (SmallVectorImpl<CompileUnit *>::iterator I = CUs.begin(),
2184 E = CUs.end(); I != E; ++I) {
2866 // Build a list of CUs used.
2867 std::vector<CompileUnit *> CUs; local
2870 CUs.push_back(CU);
2874 std::sort(CUs
[all...]
/freebsd-10.2-release/contrib/llvm/include/llvm/
H A DDebugInfo.h770 /// used by the CUs.
804 /// addCompileUnit - Add compile unit into CUs.
820 iterator compile_unit_begin() const { return CUs.begin(); }
821 iterator compile_unit_end() const { return CUs.end(); }
831 unsigned compile_unit_count() const { return CUs.size(); }
838 SmallVector<MDNode *, 8> CUs; // Compile Units member in class:llvm::DebugInfoFinder
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DDebugInfo.cpp947 CUs.clear();
1142 /// addCompileUnit - Add compile unit into CUs.
1149 CUs.push_back(CU);

Completed in 117 milliseconds