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

  /external/llvm/lib/DebugInfo/
DWARFContext.h 29 SmallVector<DWARFCompileUnit, 1> CUs;
37 /// Read compile units from the debug_info section and store them in CUs.
45 if (CUs.empty())
47 return CUs.size();
51 if (CUs.empty())
53 return &CUs[index];
DWARFContext.cpp 107 CUs.push_back(DWARFCompileUnit(*this));
108 if (!CUs.back().extract(debug_info_data, &offset)) {
109 CUs.pop_back();
113 offset = CUs.back().getNextCompileUnitOffset();
133 if (CUs.empty())
136 DWARFCompileUnit *i = std::lower_bound(CUs.begin(), CUs.end(), offset,
138 if (i != CUs.end())
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 813 /// addCompileUnit - Add compile unit into CUs.
827 iterator compile_unit_begin() const { return CUs.begin(); }
828 iterator compile_unit_end() const { return CUs.end(); }
836 unsigned compile_unit_count() const { return CUs.size(); }
842 SmallVector<MDNode *, 8> CUs; // Compile Units
  /external/llvm/lib/Analysis/
DebugInfo.cpp 1090 /// addCompileUnit - Add compile unit into CUs.
1098 CUs.push_back(CU);
    [all...]

Completed in 92 milliseconds