OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CUs
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/DebugInfo/
DWARFContext.h
30
SmallVector<DWARFCompileUnit, 1>
CUs
;
43
/// Read compile units from the debug_info section and store them in
CUs
.
61
if (
CUs
.empty())
63
return
CUs
.size();
75
if (
CUs
.empty())
77
return &
CUs
[index];
DWARFContext.cpp
213
// which isn't specified in DWARF in general. It's only specified for
CUs
, but
252
CUs
.push_back(DWARFCompileUnit(getDebugAbbrev(), getInfoSection(),
258
if (!
CUs
.back().extract(DIData, &offset)) {
259
CUs
.pop_back();
263
offset =
CUs
.back().getNextCompileUnitOffset();
305
if (
CUs
.empty())
308
DWARFCompileUnit *CU = std::lower_bound(
CUs
.begin(),
CUs
.end(), Offset,
310
if (CU !=
CUs
.end())
/external/llvm/include/llvm/
DebugInfo.h
725
/// used by the
CUs
.
753
/// addCompileUnit - Add compile unit into
CUs
.
769
iterator compile_unit_begin() const { return
CUs
.begin(); }
770
iterator compile_unit_end() const { return
CUs
.end(); }
780
unsigned compile_unit_count() const { return
CUs
.size(); }
787
SmallVector<MDNode *, 8>
CUs
; // Compile Units
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h
226
SmallVector<CompileUnit *, 1>
CUs
;
261
/// \brief Add a unit to the list of
CUs
.
262
void addUnit(CompileUnit *CU) {
CUs
.push_back(CU); }
414
// Counter for assigning globally unique IDs for
CUs
.
445
// The
CUs
left in the original object file for separated debug info.
DwarfDebug.cpp
[
all
...]
/external/llvm/lib/IR/
DebugInfo.cpp
876
CUs
.clear();
1032
/// addCompileUnit - Add compile unit into
CUs
.
1039
CUs
.push_back(CU);
[
all
...]
Completed in 116 milliseconds