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

  /external/llvm/lib/DebugInfo/
DWARFContext.h 29 SmallVector<DWARFCompileUnit, 1> CUs;
41 /// Read compile units from the debug_info section and store them in CUs.
54 if (CUs.empty())
56 return CUs.size();
68 if (CUs.empty())
70 return &CUs[index];
DWARFContext.cpp 185 // which isn't specified in DWARF in general. It's only specified for CUs, but
224 CUs.push_back(DWARFCompileUnit(getDebugAbbrev(), getInfoSection(),
230 if (!CUs.back().extract(DIData, &offset)) {
231 CUs.pop_back();
235 offset = CUs.back().getNextCompileUnitOffset();
277 if (CUs.empty())
280 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset,
282 if (CU != CUs.end())
  /external/llvm/include/llvm/
DebugInfo.h 769 /// addCompileUnit - Add compile unit into CUs.
783 iterator compile_unit_begin() const { return CUs.begin(); }
784 iterator compile_unit_end() const { return CUs.end(); }
792 unsigned compile_unit_count() const { return CUs.size(); }
798 SmallVector<MDNode *, 8> CUs; // Compile Units
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 215 SmallVector<CompileUnit *, 1> CUs;
243 /// \brief Add a unit to the list of CUs.
244 void addUnit(CompileUnit *CU) { CUs.push_back(CU); }
403 // Counter for assigning globally unique IDs for CUs.
424 // The CUs left in the original object file for separated debug info.
DwarfDebug.cpp     [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 961 /// addCompileUnit - Add compile unit into CUs.
969 CUs.push_back(CU);
    [all...]

Completed in 351 milliseconds