Searched defs:die_offset (Results 1 - 10 of 10) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp33 NameToDIE::Insert (const ConstString& name, uint32_t die_offset) argument
35 m_map.Append(name.GetCString(), die_offset);
59 const uint32_t die_offset = m_map.GetValueAtIndexUnchecked(i); local
60 if (cu_offset < die_offset && die_offset < cu_end_offset)
61 info_array.push_back (die_offset);
78 NameToDIE::ForEach (std::function <bool(const char *name, uint32_t die_offset)> const &callback) const
H A DDWARFDebugPubnamesSet.h29 uint32_t die_offset; // compile unit .debug_info offset member in struct:DWARFDebugPubnamesSet::Header
34 die_offset(DW_INVALID_OFFSET),
H A DDWARFFormValue.cpp393 uint64_t die_offset = m_value.value.uval; local
401 die_offset += (cu ? cu->GetOffset() : 0);
408 return die_offset;
414 uint64_t die_offset = m_value.value.uval; local
422 die_offset += base_offset;
429 return die_offset;
H A DDWARFDebugInfoEntry.h68 dw_offset_t DIEOffsetAtIndex(uint32_t i) const { return m_infos[i].die_offset; }
84 dw_offset_t die_offset; member in struct:DWARFDebugInfoEntry::Attributes::Info
236 const dw_offset_t die_offset,
242 const dw_offset_t die_offset,
H A DDWARFDebugInfo.cpp241 DWARFDebugInfo::GetCompileUnitContainingDIE(dw_offset_t die_offset) argument
244 if (die_offset != DW_INVALID_OFFSET)
255 if (cu_start_offset <= die_offset && die_offset < cu_end_offset)
280 DWARFDebugInfo::GetDIEPtr(dw_offset_t die_offset, DWARFCompileUnitSP* cu_sp_ptr) argument
282 DWARFCompileUnitSP cu_sp(GetCompileUnitContainingDIE(die_offset));
286 return cu_sp->GetDIEPtr(die_offset);
291 DWARFDebugInfo::GetDIEPtrWithCompileUnitHint (dw_offset_t die_offset, DWARFCompileUnit**cu_handle) argument
296 die = (*cu_handle)->GetDIEPtr(die_offset);
300 DWARFCompileUnitSP cu_sp (GetCompileUnitContainingDIE(die_offset));
314 GetDIEPtrContainingOffset(dw_offset_t die_offset, DWARFCompileUnitSP* cu_sp_ptr) argument
465 const uint32_t die_offset; member in struct:DumpInfo
650 Dump( Stream *s, SymbolFileDWARF* dwarf2Data, const uint32_t die_offset, const uint32_t recurse_depth ) argument
688 Dump(Stream *s, const uint32_t die_offset, const uint32_t recurse_depth) argument
[all...]
H A DDWARFCompileUnit.cpp513 DWARFCompileUnit::GetDIEPtr(dw_offset_t die_offset) argument
515 if (die_offset != DW_INVALID_OFFSET)
519 compare_die.SetOffset(die_offset);
524 if (die_offset == (*pos).GetOffset())
538 DWARFCompileUnit::GetDIEPtrContainingOffset(dw_offset_t die_offset) argument
540 if (die_offset != DW_INVALID_OFFSET)
544 compare_die.SetOffset(die_offset);
549 if (die_offset >= (*pos).GetOffset())
554 if (die_offset < (*next).GetOffset())
H A DSymbolFileDWARF.cpp250 const dw_offset_t die_offset = die->GetOffset(); local
252 if (die_offset >= max_die_offset)
255 if (die_offset >= min_die_offset)
385 // m_type_index.ForEach([this, &type_set, type_mask](const char *name, uint32_t die_offset) -> bool {
391 // const DWARFDebugInfoEntry *die = DebugInfo()->GetDIEPtr(die_offset, NULL);
401 // Type *type = ResolveTypeUID(die_offset);
2490 const dw_offset_t die_offset = method_die_offsets[i]; local
2491 DWARFDebugInfoEntry *method_die = debug_info->GetDIEPtrWithCompileUnitHint (die_offset, &method_cu);
2500 die_offset, class_str.c_str());
3151 const dw_offset_t die_offset local
3264 const dw_offset_t die_offset = die_offsets[i]; local
3293 ResolveFunction(dw_offset_t die_offset, DWARFCompileUnit *&dwarf_cu, SymbolContextList& sc_list) argument
3407 const dw_offset_t die_offset = die_offsets[i]; local
3592 const dw_offset_t die_offset = die_offsets[i]; local
3627 const dw_offset_t die_offset = die_offsets[i]; local
3664 const dw_offset_t die_offset = die_offsets[i]; local
3963 const dw_offset_t die_offset = die_offsets[i]; local
4069 const dw_offset_t die_offset = die_offsets[i]; local
4509 GetClangDeclContextContainingDIEOffset(dw_offset_t die_offset) argument
4521 GetClangDeclContextForDIEOffset(const SymbolContext &sc, dw_offset_t die_offset) argument
4693 dw_offset_t die_offset = die->GetAttributeValueAsReference(this, cu, DW_AT_specification, DW_INVALID_OFFSET); local
4811 const dw_offset_t die_offset = die_offsets[i]; local
5057 const dw_offset_t die_offset = die_offsets[i]; local
5228 const dw_offset_t die_offset = die_offsets[i]; local
7190 const dw_offset_t die_offset = die_offsets[i]; local
7829 const dw_offset_t die_offset = die_offsets[i]; local
[all...]
/external/elfutils/0.153/libdw/
H A Dlibdw.h177 Dwarf_Off die_offset; member in struct:__anon21182
/external/elfutils/elfutils/
H A Dlibdw.h177 Dwarf_Off die_offset; member in struct:__anon21326
/external/lldb/include/lldb/Core/
H A DMappedHash.h274 const uint32_t die_offset = m_entries[i].die_offset; local
275 hash_buckets[bucket_idx][hash][strp_offset].push_back(die_offset);

Completed in 1540 milliseconds