Home
last modified time | relevance | path

Searched refs:GetDIE (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDIE.cpp52 if (m_seen.insert(die.GetDIE()).second) in Next()
118 DWARFDIE::GetDIE(dw_offset_t die_offset) const { in GetDIE() function in DWARFDIE
120 return m_cu->GetDIE(die_offset); in GetDIE()
221 if (GetDIE()->IsNULL()) { in GetName()
225 const char *name = GetDIE()->GetAttributeValueAsString(GetCU(), DW_AT_name, nullptr, true); in GetName()
239 if (GetDIE()->IsNULL()) { in AppendTypeName()
368 while (parent.IsValid() && parent.GetDIE() != GetDIE()) { in GetDeclContextDIEs()
DSymbolFileDWARFDwo.cpp139 SymbolFileDWARFDwo::GetDIE(const DIERef &die_ref) { in GetDIE() function in SymbolFileDWARFDwo
141 return DebugInfo().GetDIE(die_ref); in GetDIE()
142 return GetBaseSymbolFile().GetDIE(die_ref); in GetDIE()
DSymbolFileDWARF.cpp737 if (!GetDWOName(dwarf_cu, *cu_die.GetDIE())) in ParseCompileUnit()
841 if (die.GetDIE()->GetAttributeAddressRanges(die.GetCU(), ranges, in ParseFunction()
1443 SymbolFileDWARF::GetDIE(lldb::user_id_t uid) { in GetDIE() function in SymbolFileDWARF
1451 return decoded->dwarf.GetDIE(decoded->ref); in GetDIE()
1463 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID()
1476 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID()
1487 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID()
1497 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID()
1506 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID()
1513 return ResolveType(GetDIE(die_ref), true); in ResolveTypeUID()
[all …]
DDWARFASTParserClang.cpp206 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeFromClangModule()
435 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseTypeFromDWARF()
441 dwarf->GetDIEToType()[die.GetDIE()] = DIE_IS_BEING_PARSED; in ParseTypeFromDWARF()
448 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeFromDWARF()
739 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseTypeModifier()
793 dwarf->GetDIEToType()[die.GetDIE()] = type_sp.get(); in ParseEnum()
795 GetCachedClangDeclContextForDIE(dwarf->GetDIE(type_sp->GetID())); in ParseEnum()
808 dwarf->GetForwardDeclDieToClangType().lookup(die.GetDIE())); in ParseEnum()
1033 DWARFDIE class_type_die = dwarf->GetDIE(class_type->GetID()); in ParseSubroutine()
1046 Type *type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseSubroutine()
[all …]
DDWARFDIE.h61 GetDIE(dw_offset_t die_offset) const;
62 using DWARFBaseDIE::GetDIE;
DDWARFIndex.cpp29 DWARFDIE die = dwarf.GetDIE(ref); in ProcessFunctionDIE()
96 if (DWARFDIE die = m_dwarf.GetDIE(ref)) in operator ()()
DDWARFDebugInfoEntry.cpp399 die.GetDIE()->GetDIENamesAndRanges(die.GetCU(), name, mangled, ranges, in GetDIENamesAndRanges()
451 spec_die.GetDIE()->GetAttributes(spec_die.GetCU(), attributes, in GetAttributes()
506 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
516 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
742 if (!parent_decl_ctx_die || parent_decl_ctx_die.GetDIE() == die) in GetDWARFDeclContextStatic()
747 die = parent_decl_ctx_die.GetDIE(); in GetDWARFDeclContextStatic()
772 if (die.GetDIE() != this) { in GetParentDeclContextDIE()
DDWARFBaseDIE.cpp124 return lhs.GetDIE() == rhs.GetDIE() && lhs.GetCU() == rhs.GetCU(); in operator ==()
DDWARFDebugInfo.cpp188 DWARFDebugInfo::GetDIE(const DIERef &die_ref) { in GetDIE() function in DWARFDebugInfo
191 return cu->GetNonSkeletonUnit().GetDIE(die_ref.die_offset()); in GetDIE()
DDebugNamesDWARFIndex.cpp71 DWARFDIE die = dwarf.GetDIE(*ref); in ProcessEntry()
179 DWARFDIE die = m_debug_info.GetDIE(*ref); in GetCompleteObjCClass()
256 if (!seen.insert(die.GetDIE()).second) in GetFunctions()
DDWARFFormValue.cpp519 return const_cast<DWARFUnit *>(m_unit)->GetDIE(value); in Reference()
530 return ref_cu->GetDIE(value); in Reference()
538 return tu->GetDIE(tu->GetTypeOffset()); in Reference()
DDWARFDebugInfo.h46 DWARFDIE GetDIE(const DIERef &die_ref);
DSymbolFileDWARFDwo.h42 GetDIE(const DIERef &die_ref) override;
DDWARFCompileUnit.cpp108 return GetDIE(func_aranges.FindAddress(address)); in LookupAddress()
DDWARFBaseDIE.h57 DWARFDebugInfoEntry *GetDIE() const { return m_die; } in GetDIE() function
DSymbolFileDWARF.h264 virtual DWARFDIE GetDIE(const DIERef &die_ref);
266 DWARFDIE GetDIE(lldb::user_id_t uid);
DDWARFUnit.h182 DWARFDIE GetDIE(dw_offset_t die_offset);
DDWARFUnit.cpp641 DWARFUnit::GetDIE(dw_offset_t die_offset) { in GetDIE() function in DWARFUnit
/openbsd/src/gnu/llvm/lldb/source/Expression/
DDWARFExpression.cpp2408 DWARFDIE die = const_cast<DWARFUnit *>(dwarf_cu)->GetDIE(abs_die_offset); in Evaluate()